[
  {
    "path": ".github/dependabot.yml",
    "content": "# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where the package manifests are located.\n# Please see the documentation for all configuration options:\n# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates\n\nversion: 2\nupdates:\n  - package-ecosystem: github-actions\n    directory: /\n    commit-message:\n      prefix: ⬆️\n    schedule:\n      interval: monthly\n  - package-ecosystem: pip\n    directory: /\n    commit-message:\n      prefix: ⬆️\n    schedule:\n      interval: monthly\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: continuous-integration\n\non:\n  push:\n    branches: [main]\n    tags:\n      - 'v*'\n  pull_request:\n\njobs:\n\n  pre-commit:\n\n    runs-on: ubuntu-latest\n\n    steps:\n    - uses: actions/checkout@v4\n    - name: Set up Python\n      uses: actions/setup-python@v5\n      with:\n        python-version: \"3.11\"\n    - uses: pre-commit/action@v3.0.1\n\n  tests:\n\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ubuntu-latest]\n        python-version: [\"3.11\", \"3.12\", \"3.13\", \"3.14\"]\n        sphinx-version: [\"~=7.0\", \"~=8.0\", \"~=9.0\"]\n        extras: [\"testing\"]\n        include:\n        - os: windows-latest\n          python-version: \"3.11\"\n          sphinx-version: \"~=7.0\"\n          extras: \"testing\"\n        - os: windows-latest\n          python-version: \"3.13\"\n          sphinx-version: \"~=8.0\"\n          extras: \"testing\"\n        - os: windows-latest\n          python-version: \"3.14\"\n          sphinx-version: \"~=9.0\"\n          extras: \"testing\"\n\n    runs-on: ${{ matrix.os }}\n\n    name: Tests (py${{ matrix.python-version }}, Sphinx${{ matrix.sphinx-version }}, on ${{ matrix.os }})\n\n    steps:\n    - uses: actions/checkout@v4\n    - name: Set up Python ${{ matrix.python-version }}\n      uses: actions/setup-python@v5\n      with:\n        python-version: ${{ matrix.python-version }}\n        cache: pip\n    - name: Install dependencies\n      run: |\n        python -m pip install --upgrade pip\n        pip install --upgrade \"sphinx${{ matrix.sphinx-version }}\" -e .[${{ matrix.extras}}]\n    - name: Run pytest\n      run: |\n        pytest --cov=sphinx_design --cov-report=xml --cov-report=term-missing\n    - name: Upload to Codecov\n      if: github.event.pull_request.head.repo.full_name == github.repository && matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest'\n      uses: codecov/codecov-action@v3\n      with:\n        token: ${{ secrets.CODECOV_TOKEN }}\n        name: pytests\n        flags: pytests\n        file: ./coverage.xml\n        fail_ci_if_error: true\n\n  docs-build-format:\n\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        format: [html, latex, man]\n\n    steps:\n    - uses: actions/checkout@v4\n    - name: Set up Python\n      uses: actions/setup-python@v5\n      with:\n        python-version: \"3.11\"\n        cache: pip\n    - name: Install dependencies\n      run: |\n        python -m pip install --upgrade pip\n        pip install -e .[rtd]\n    - name: Build documentation\n      run: sphinx-build -nW --keep-going -b ${{ matrix.format }} docs/ docs/_build/${{ matrix.format }}\n\n  # https://github.com/marketplace/actions/alls-green#why\n  check:  # This job does nothing and is only used for the branch protection\n\n    if: always()\n\n    needs:\n    - pre-commit\n    - tests\n    - docs-build-format\n\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Decide whether the needed jobs succeeded or failed\n      uses: re-actors/alls-green@release/v1\n      with:\n        jobs: ${{ toJSON(needs) }}\n\n  publish:\n\n    name: Publish to PyPi\n    needs: [pre-commit, tests]\n    if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')\n    runs-on: ubuntu-latest\n    steps:\n    - name: Checkout source\n      uses: actions/checkout@v4\n    - name: Set up Python\n      uses: actions/setup-python@v5\n      with:\n        python-version: \"3.11\"\n    - name: install flit\n      run: |\n        pip install flit~=3.4\n    - name: Build and publish\n      run: |\n        flit publish\n      env:\n        FLIT_USERNAME: __token__\n        FLIT_PASSWORD: ${{ secrets.PYPI_KEY }}\n"
  },
  {
    "path": ".github/workflows/copilot-setup-steps.yml",
    "content": "name: Copilot Setup Steps\n\n# Automatically run the setup steps when they are changed to allow for easy validation, and\n# allow manual testing through the repository's \"Actions\" tab\non:\n  workflow_dispatch:\n  push:\n    paths:\n      - .github/workflows/copilot-setup-steps.yml\n  pull_request:\n    paths:\n      - .github/workflows/copilot-setup-steps.yml\n\njobs:\n  # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.\n  copilot-setup-steps:\n    runs-on: ubuntu-latest\n\n    # Set the permissions to the lowest permissions possible needed for your steps.\n    # Copilot will be given its own token for its operations.\n    permissions:\n      contents: read\n\n    # You can define any steps you want, and they will run before the agent starts.\n    # If you do not check out your code, Copilot will do this for you.\n    steps:\n    - name: Checkout code\n      uses: actions/checkout@v4\n\n    - name: Set up Python\n      uses: actions/setup-python@v5\n      with:\n        python-version: \"3.11\"\n        cache: pip\n\n    - name: Set up Node.js\n      uses: actions/setup-node@v4\n      with:\n        node-version: \"20\"\n        cache: npm\n\n    - name: Install uv\n      run: pip install uv\n\n    - name: Install pre-commit and pre-commit-uv\n      run: pip install pre-commit pre-commit-uv\n\n    - name: Install tox and tox-uv\n      run: pip install tox tox-uv\n\n    - name: Install Node.js dependencies\n      run: npm install\n"
  },
  {
    "path": ".gitignore",
    "content": "# OS files\n.DS_Store\n\n# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\ncover/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\n.pybuilder/\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n#   For a library or package, you might want to ignore these files since the code is\n#   intended to run in multiple environments; otherwise, check them in:\n# .python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n\n# pytype static type analyzer\n.pytype/\n\n# Cython debug symbols\ncython_debug/\n\n.vscode/\nnode_modules/\n"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "# Install pre-commit hooks via\n# pre-commit install\n\nexclude: >\n    (?x)^(\n      \\.vscode/settings\\.json|\n      tests/.*xml|\n      tests/.*txt|\n    )$\n\nrepos:\n\n  - repo: https://github.com/pre-commit/pre-commit-hooks\n    rev: v6.0.0\n    hooks:\n    - id: check-json\n    - id: check-yaml\n    - id: end-of-file-fixer\n    - id: trailing-whitespace\n\n  - repo: https://github.com/astral-sh/ruff-pre-commit\n    rev: v0.14.13\n    hooks:\n    - id: ruff\n      args: [--fix]\n    - id: ruff-format\n\n  - repo: https://github.com/pre-commit/mirrors-mypy\n    rev: v1.19.1\n    hooks:\n    - id: mypy\n      additional_dependencies: []\n\n  - repo: local\n    hooks:\n    - id: css\n      name: css\n      description: Compile the SCSS/SASS files to CSS inside the python package\n      files: \\.(scss|sass)$\n      language: node\n      additional_dependencies: ['sass@1.35.2']\n      # entry: sass\n      entry: npm run css\n      require_serial: true\n      pass_filenames: false\n      # args: [--style=compressed, --no-source-map, style/index.scss, sphinx_design/compiled/style.min.css]\n\n    - id: tsc\n      name: tsc (jsdoc)\n      entry: tsc\n      language: node\n      files: \\.(js)$\n      types_or: [javascript]\n      args: [--allowJs, --noEmit, --strict]\n      additional_dependencies:\n      - typescript\n"
  },
  {
    "path": ".readthedocs.yml",
    "content": "version: 2\n\nbuild:\n  os: ubuntu-22.04\n  tools:\n    python: \"3.11\"\n\npython:\n  install:\n      - method: pip\n        path: .\n        extra_requirements:\n          - rtd\n\nsphinx:\n  configuration: docs/conf.py\n  builder: html\n  fail_on_warning: true\n"
  },
  {
    "path": "AGENTS.md",
    "content": "# AGENTS.md\n\nThis file provides guidance for AI coding agents working on the **sphinx-design** repository.\n\n## Project Overview\n\nsphinx-design is a Sphinx extension for designing beautiful, view size responsive web components. It provides:\n\n- Grids, cards, dropdowns, tabs, badges, buttons, and icons\n- Responsive design inspired by [Bootstrap](https://getbootstrap.com/) (v5), [Material Design](https://material.io), and [Material-UI](https://material-ui.com/)\n- Support for both reStructuredText and [MyST Markdown](https://myst-parser.readthedocs.io/) (via integration with myst-parser)\n\nThe extension works with multiple Sphinx themes including alabaster, sphinx-rtd-theme, pydata-sphinx-theme, sphinx-book-theme, furo, and sphinx-immaterial.\n\n## Repository Structure\n\n```\npyproject.toml          # Project configuration and dependencies\ntox.ini                 # Tox test environment configuration\npackage.json            # Node.js config for SASS compilation\n\nsphinx_design/          # Main source code\n├── __init__.py         # Package init with setup() entry point\n├── _compat.py          # Compatibility utilities\n├── extension.py        # Main Sphinx extension setup\n├── shared.py           # Shared constants and base classes\n├── badges_buttons.py   # Badge and button directives\n├── cards.py            # Card directives\n├── dropdown.py         # Dropdown directive\n├── grids.py            # Grid directives\n├── tabs.py             # Tab directives\n├── icons.py            # Icon roles (Material, FontAwesome, Octicons)\n├── article_info.py     # Article info directive\n└── compiled/           # Compiled static assets (CSS, JS)\n\nstyle/                  # SASS source files\n├── index.scss          # Main SCSS entry point\n├── _variables.scss     # SCSS variables\n├── _grids.scss         # Grid styles\n├── _cards.scss         # Card styles\n├── _tabs.scss          # Tab styles\n├── _dropdown.scss      # Dropdown styles\n└── ...                 # Other component styles\n\ntests/                  # Test suite\n├── conftest.py         # Pytest fixtures\n├── test_snippets.py    # Snippet-based tests\n├── test_misc.py        # Miscellaneous tests\n├── test_snippets/      # Test fixture files for snippets\n└── test_misc/          # Test fixture files for misc tests\n\ndocs/                   # Documentation source (MyST Markdown)\n├── conf.py             # Sphinx configuration\n├── index.md            # Documentation index\n├── get_started.md      # Getting started guide\n├── grids.md            # Grid documentation\n├── cards.md            # Card documentation\n├── tabs.md             # Tab documentation\n├── dropdowns.md        # Dropdown documentation\n├── badges_buttons.md   # Badge and button documentation\n└── snippets/           # Code snippets for docs (myst/, rst/)\n```\n\n## Development Commands\n\nAll commands should be run via [`tox`](https://tox.wiki) for consistency. The project uses `tox-uv` for faster environment creation.\n\n### Testing\n\n```bash\n# Run all tests (default Python version)\ntox\n\n# Run tests with a specific Python version\ntox -e py311\ntox -e py312\n\n# Run a specific test file\ntox -- tests/test_snippets.py\n\n# Run a specific test function\ntox -- tests/test_snippets.py::test_function_name\n\n# Run tests without myst-parser dependency\ntox -e py311-no-myst\n\n# Run with coverage\ntox -- --cov=sphinx_design\n\n# Update regression test fixtures\ntox -- --force-regen\n```\n\n### Documentation\n\n```bash\n# Build docs with different themes\ntox -e docs-alabaster\ntox -e docs-rtd\ntox -e docs-pydata\ntox -e docs-sbt\ntox -e docs-furo\ntox -e docs-im\n\n# Clean build (set CLEAN env var)\nCLEAN=1 tox -e docs-furo\n\n# Build with a different builder (e.g., linkcheck)\nBUILDER=linkcheck tox -e docs-furo\n```\n\n### Code Quality\n\n```bash\n# Type checking with mypy\ntox -e mypy\n\n# Linting with ruff (auto-fix enabled)\ntox -e ruff-check -- --fix\n\n# Formatting with ruff\ntox -e ruff-fmt\n\n# Run pre-commit hooks on all files\npre-commit run --all-files\n\n# Compile SASS to CSS\nnpm run css\n# or via pre-commit\npre-commit run --all css\n```\n\n## Code Style Guidelines\n\n- **Formatter/Linter**: Ruff (configured in `pyproject.toml`)\n- **Type Checking**: Mypy (configured in `pyproject.toml`)\n- **Pre-commit**: Use pre-commit hooks for consistent code style\n\n### Best Practices\n\n- **Type annotations**: Use complete type annotations for all function signatures.\n- **Docstrings**: Use Sphinx-style docstrings (`:param:`, `:return:`, `:raises:`).\n- **Directive classes**: Extend `SdDirective` (from `shared.py`) for new directives.\n- **Warning messages**: Use `WARNING_TYPE = \"design\"` for consistent warning categorization.\n- **Testing**: Write tests for all new functionality. Use `pytest-regressions` for output comparison.\n\n### Docstring Example\n\n```python\ndef create_component(\n    name: str,\n    rawtext: str,\n    *,\n    classes: Sequence[str] = (),\n) -> nodes.container:\n    \"\"\"Create a component container node.\n\n    :param name: The component name.\n    :param rawtext: The raw text content.\n    :param classes: Additional CSS classes to apply.\n    :return: A container node with the component.\n    \"\"\"\n    ...\n```\n\n## Testing Guidelines\n\n### Test Structure\n\n- Tests use `pytest` with fixtures from `conftest.py`\n- Regression testing uses `pytest-regressions` for output comparison\n- The `sphinx_builder` fixture creates temporary Sphinx projects for testing\n\n### Writing Tests\n\n1. Use the `sphinx_builder` fixture to create test Sphinx applications\n2. Add test content as `.txt` files in `tests/test_snippets/` or `tests/test_misc/`\n3. Use `file_regression` or `data_regression` fixtures for comparing output\n\n### Example Test Pattern\n\n`````python\ndef test_grid_basic(sphinx_builder, file_regression):\n    builder = sphinx_builder()\n    builder.src_path.joinpath(\"index.md\").write_text(\n        \"\"\"\n# Test\n\n````{grid} 2\n:gutter: 1\n\n```{grid-item}\nItem 1\n```\n\n```{grid-item}\nItem 2\n```\n````\n\"\"\",\n        encoding=\"utf8\",\n    )\n    builder.build()\n    doctree = builder.get_doctree(\"index\")\n    file_regression.check(doctree.pformat(), extension=\".xml\")\n`````\n\n## Commit Message Format\n\nUse this format:\n\n```\n<EMOJI> <KEYWORD>: Summarize in 72 chars or less (#<PR>)\n\nOptional detailed explanation.\n```\n\nKeywords:\n\n- `✨ NEW:` – New feature\n- `🐛 FIX:` – Bug fix\n- `👌 IMPROVE:` – Improvement (no breaking changes)\n- `‼️ BREAKING:` – Breaking change\n- `📚 DOCS:` – Documentation\n- `🔧 MAINTAIN:` – Maintenance changes only (typos, etc.)\n- `🧪 TEST:` – Tests or CI changes only\n- `♻️ REFACTOR:` – Refactoring\n\nIf the commit only makes changes to a single module,\nconsider including the name in the title.\n\n## PR title and description format\n\nUse the same as for the commit message format,\nbut for the title you can omit the `KEYWORD` and only use `EMOJI`\n\n## Pull Request Requirements\n\nWhen submitting changes:\n\n1. **Description**: Include a meaningful description or link explaining the change\n2. **Tests**: Include test cases for new functionality or bug fixes\n3. **Documentation**: Update docs if behavior changes or new features are added\n4. **Changelog**: Update `CHANGELOG.md` under the appropriate section\n5. **Code Quality**: Ensure `pre-commit run --all-files` passes\n\n## Architecture Overview\n\n### Extension Setup\n\nThe extension follows a modular architecture where each component type has its own module:\n\n```\nsetup() in __init__.py\n    └── setup_extension() in extension.py\n            ├── setup_badges_and_buttons()\n            ├── setup_cards()\n            ├── setup_grids()\n            ├── setup_dropdown()\n            ├── setup_icons()\n            ├── setup_tabs()\n            └── setup_article_info()\n```\n\n### Key Components\n\n#### Base Classes (`sphinx_design/shared.py`)\n\n- `SdDirective`: Base class for sphinx-design directives (extends `SphinxDirective`)\n- `create_component()`: Factory function for creating component nodes\n- `WARNING_TYPE`: Constant for warning categorization\n\n#### Directives\n\nEach component type has its own module with directives:\n\n- **Grids** (`grids.py`): `grid`, `grid-item`, `grid-item-card` directives\n- **Cards** (`cards.py`): `card`, `card-header`, `card-footer`, `card-carousel` directives\n- **Tabs** (`tabs.py`): `tab-set`, `tab-item` directives\n- **Dropdowns** (`dropdown.py`): `dropdown` directive\n- **Badges/Buttons** (`badges_buttons.py`): `button-link`, `button-ref` directives and `bdg-*` roles\n- **Icons** (`icons.py`): Icon roles for Material, FontAwesome, and Octicons\n\n#### Static Assets\n\nCompiled CSS and JS are stored in `sphinx_design/compiled/`:\n\n- CSS is compiled from SASS sources in `style/`\n- JavaScript for tab functionality\n\n### Styling\n\nThe extension uses SASS for styling:\n\n1. SASS source files are in `style/`\n2. Compiled using `npm run css` (requires Node.js)\n3. Output goes to `sphinx_design/compiled/style.min.css`\n4. CSS is automatically copied to build output during Sphinx builds\n\n## Key Files\n\n- `pyproject.toml` - Project configuration, dependencies, and tool settings\n- `sphinx_design/__init__.py` - Package entry point with `setup()` for Sphinx\n- `sphinx_design/extension.py` - Main extension setup, CSS/JS handling\n- `sphinx_design/shared.py` - Base classes and shared utilities\n- `sphinx_design/grids.py` - Grid layout directives\n- `sphinx_design/cards.py` - Card component directives\n- `sphinx_design/tabs.py` - Tab component directives\n\n## Debugging\n\n- Build docs with `-v` flag for verbose output\n- Check `docs/_build/html/<theme>/` for build outputs\n- Use `tox -- -v --tb=long` for verbose test output with full tracebacks\n- Inspect generated HTML to debug styling issues\n\n## Common Patterns\n\n### Adding a New Component\n\n1. Create a new module in `sphinx_design/` (e.g., `my_component.py`)\n2. Define directive class(es) extending `SdDirective`\n3. Create a `setup_my_component(app: Sphinx)` function\n4. Call the setup function from `setup_extension()` in `extension.py`\n5. Add SASS styles in `style/_my_component.scss`\n6. Import the SASS file in `style/index.scss`\n7. Document in `docs/`\n8. Add tests in `tests/`\n\n### Adding a New Directive Option\n\n1. Add the option to the directive's `option_spec` dictionary\n2. Handle the option in the directive's `run()` method\n3. Add appropriate CSS classes or attributes to the output node\n4. Document the new option\n5. Add tests for the new option\n\n### Working with SASS\n\n1. Edit SASS files in `style/`\n2. Run `npm run css` to compile (or `pre-commit run --all css`)\n3. Compiled output goes to `sphinx_design/compiled/style.min.css`\n4. Test with different themes to ensure compatibility\n\n## Reference Documentation\n\n- [Docutils Repository](https://github.com/live-clones/docutils)\n- [Docutils Documentation](https://docutils.sourceforge.io/)\n- [Docutils Nodes](https://docutils.sourceforge.io/docs/ref/doctree.html)\n- [Docutils release log](https://docutils.sourceforge.io/RELEASE-NOTES.html)\n- [Sphinx Repository](https://github.com/sphinx-doc/sphinx)\n- [Sphinx Extension Development](https://www.sphinx-doc.org/en/master/extdev/index.html)\n- [Bootstrap Documentation](https://getbootstrap.com/docs/5.0/)\n- [SASS Documentation](https://sass-lang.com/documentation)\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Change Log\n\n## 0.7.0 - 2025-01-19\n\n### Dependencies\n\n- ⬆️ Drop Python 3.9 & 3.10, support Python 3.14 by {user}`chrisjsewell` in {pr}`250`\n- ⬆️ Drop Sphinx v6, add Sphinx v9 support by {user}`chrisjsewell` in {pr}`250` and {pr}`255`\n- ⬆️ Update Material Design Icons to v4.0.0-116-ge9da21 by {user}`2bndy5` in {pr}`223`\n\n### Docs\n\n- 📚 Document `muted`, `white`, and `black` semantic colors by {user}`agriyakhetarpal` in {pr}`216`\n\n## 0.6.1 - 2024-08-02\n\n- ⬆️ Update sphinx to >=6,<9 by {user}`chrisjsewell` in {pr}`212`\n- 👌 Reduce right-padding of dropdown title by {user}`chrisjsewell` in {pr}`198`\n\n## 0.6.0 - 2024-05-23\n\n### Dependencies\n\n* ⬆️ Python v3.9-3.12 by {user}`chrisjsewell` in {pr}`186`\n* ⬆️ Octicon icons to v19.8.0 by {user}`ffvpor` in {pr}`171`\n\n### New\n\n#### ✨ Create custom directives\n\nYou can use the `sd_custom_directives` configuration option in your `conf.py` to add custom directives, with default option values:\n\n```python\nsd_custom_directives = {\n  \"dropdown-syntax\": {\n    \"inherit\": \"dropdown\",\n    \"argument\": \"Syntax\",\n    \"options\": {\n      \"color\": \"primary\",\n      \"icon\": \"code\",\n    },\n  }\n}\n```\n\nThe key is the new directive name to add, and the value is a dictionary with the following keys:\n\n- `inherit`: The directive to inherit from (e.g. `dropdown`)\n- `argument`: The default argument (optional, only for directives that take a single argument)\n- `options`: A dictionary of default options for the directive (optional)\n\nby {user}`chrisjsewell` in {pr}`194`\n\n#### ✨ sync tabs by URL query parameters\n\nSynchronised tabs can now be selected by adding a query parameter to the URL, for that sync-group, such as `?code=python` for\n\n```restructuredtext\n.. tab-set-code::\n\n    .. literalinclude:: snippet.py\n        :language: python\n\n    .. literalinclude:: snippet.js\n        :language: javascript\n```\n\nThe last selected tab key, per group, is also persisted to `SessionStorage`\n\nby {user}`mikemckiernan` and {user}`chrisjsewell` in {pr}`196`\n\n### Improve\n\n* 👌 Use reference name by default for internal link cards by {user}`gabalafou` in {pr}`183`\n* 👌 Improve specificity of JS function name by {user}`danirus` in {pr}`153`\n* 👌 Remove duplicate CSS hashing for sphinx >= 7.1 by {user}`chrisjsewell` in {pr}`193`\n\n#### 👌 Improve `dropdown` title bar\n\nThere are three visible changes:\n\n1. 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.\nThe old default behaviour can be retained by using the new `:chevron: down-up` directive option.\n2. The prefix icon (optional), title text, and chevron state icon are now all better aligned\n3. The top/bottom padding is now 0.5em instead of 1em\n\nThe PR also introduces three new CSS variables to control font sizes of the dropdown:\n\n```css\n--sd-fontsize-tabs-label: 1rem;\n--sd-fontsize-dropdown-title: 1rem;\n--sd-fontweight-dropdown-title: 700;\n```\n\nInternally, the HTML / CSS is changed, such that the title is now an `inline-flex` box, with three columns arranged with `justify-content: space-between`:\n\n| icon (optional) | text (`flex-grow: 1`) | state chevron |\n| -------------- | -------------------- | -------------- |\n|                |                      |                |\n\nAlso, the state chevron was previously two distinct SVGs (with one hidden), but now is one that get rotated on open/close.\n\nby {user}`chrisjsewell` in {pr}`192`\n\n### Fix\n\n* 🐛 Fix tab-item label with nested syntax by {user}`Praecordi` in {pr}`135`\n* 🐛 Fix do not close `input` tag by {user}`chrisjsewell` in {pr}`195`\n\n### Internal\n\n* 📚 Update theme versions by {user}`chrisjsewell` in {pr}`189`\n* 📚 Make octicon list a table by {user}`chrisjsewell` in {pr}`188`\n* 📚 Add sphinx-immaterial to doc theme builds by {user}`chrisjsewell` in {pr}`190`\n* 📚 Change syntax dropdown color by {user}`chrisjsewell` in {pr}`191`\n\n* 🔧 Add FIPS compliant flag to md5 call by {user}`gabor-varga` in {pr}`162`\n* 🔧 define `build.os` for RTD to fix build by {user}`sciencewhiz` in {pr}`176`\n* 🔧 Move to ruff by {user}`chrisjsewell` in {pr}`185`\n\n**Full Changelog**: <https://github.com/executablebooks/sphinx-design/compare/v0.5.0...v0.6.0>\n\n## 0.5.0 - 2023-07-27\n\n* ⬆️ Drop Python 3.7 support, by {user}`chrisjsewell` in {pr}`146`\n* ⬆️ UPGRADE: sphinx>=5,<8, by {user}`chrisjsewell` in {pr}`148`\n\n**Full Changelog**: <https://github.com/executablebooks/sphinx-design/compare/v0.4.1...v0.5.0>\n\n## v0.4.0 - 2023-04-13\n\n**Full Changelog**: <https://github.com/executablebooks/sphinx-design/compare/v0.3.0...v0.4.0>\n\n### Enhancements made\n\n- Make default blue color a11y friendly. {pr}`124` ({user}`feanil`, {user}`choldgraf`)\n- Make card titles translatable {pr}`113` ({user}`jpmckinney`, {user}`chrisjsewell`)\n\n### Version upgrades\n\n- Sphinx 6.x. {pr}`106`\n- Support for Python 3.11 {pr}`105`\n\n### Contributors to this release\n\nThe following people contributed discussions, new ideas, code and documentation contributions, and review.\nSee [our definition of contributors](https://github-activity.readthedocs.io/en/latest/#how-does-this-tool-define-contributions-in-the-reports).\n\n([GitHub contributors page for this release](https://github.com/executablebooks/sphinx-design/graphs/contributors?from=2022-08-22&to=2023-04-12&type=c))\n\n## v0.3.0 - 2022-08-22\n\n- ⬆️ Update Materials Design Icons to v4.0.0-46-gc9e5528, thanks to {user}`2bndy5` ({pr}`69`)\n- 🐛 FIX: dropdown/tab-item `:name:` options ({pr}`91`)\n- 🐛 FIX: Docs build against non-html formats ({pr}`88`)\n- 👌 IMPROVE: Add card options `class-img-top`/`class-img-bottom` ({pr}`92`)\n- 👌 IMPROVE: Add `link-alt` to fix card link accessibility ({pr}`89`)\n  - 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).\n- 👌 IMPROVE: Make tab ids deterministic ({pr}`93`)\n  - Use increasing indices, rather than UUIDs\n- 🔧 MAINTAIN: Fix docutils `PendingDeprecationWarning` ({pr}`94`)\n- 📚 DOCS: Update font awesome icons ({pr}`64`)\n\n**Full Changelog**: <https://github.com/executablebooks/sphinx-design/compare/v0.2.0...v0.3.0>\n\n## v0.2.0 - 2022-06-14\n\n- ⬆️ Support Sphinx v5, drop v3\n- ⬆️ Add Python 3.10 support\n\n**Full Changelog**: <https://github.com/executablebooks/sphinx-design/compare/v0.1.0...v0.2.0>\n\n## v0.1.0 - 2022-04-21\n\n- ✨ NEW: Add material design icons roles, thanks to {user}`2bndy5` in {pr}`41`\n- ⬆️ UPGRADE: octicons to v16.1.1, thanks to {user}`pocek` in {pr}`43`\n- 🐛 FIX: Links in card titles by {user}`chrisjsewell` in {pr}`59`\n- 🐛 FIX: Exception on missing card link by {user}`chrisjsewell` in {pr}`60`\n- 🔧 MAINTAIN: Move from setuptools to flit for package build by {user}`chrisjsewell` in {pr}`58`\n- 🔧 MAINTAIN: Drop furo-specific stylesheet, thanks to {user}`pradyunsg` in {pr}`22`\n\n**Full Changelog**: <https://github.com/executablebooks/sphinx-design/compare/v0.0.13...v0.1.0>\n\n## v0.0.13 - 2021-10-27\n\n✨ NEW: add icon `far` role ({pr}`35`), thanks to {user}`OriolAbril`\n\n👌 IMPROVE: Styling for tabs ({pr}`21`), thanks to {user}`pradyunsg`\n\n👌 IMPROVE: Properly remove the border on dropdown card body ({pr}`23`), thanks to {user}`pradyunsg`\n\n🐛 FIX: `sd-outline-*` classes color ({pr}`25`)\n\n## v0.0.11 - 2021-09-08\n\n✨ NEW: Add `ref-type` option to `button-ref` directive\n\n## v0.0.10 - 2021-08-08\n\n✨ NEW: Add `grid-item` directive `child-direction` and `child-align` options\n\n✨ NEW: Add `card` directive `img-background` option\n\n## v0.0.9 - 2021-06-08\n\n♻️ REFACTOR: `test_sd_hide_root_title` to `sd_hide_title` front-matter\n\n👌 IMPROVE: dropdown chevrons\n\n## v0.0.8 - 2021-06-08\n\n✨ NEW: Add `test_sd_hide_root_title` config option to hide the root title.\n\n👌 IMPROVE: `sd-card-hover:hover` add scale 101%\n\n📚 DOCS: Update landing page\n\n## v0.0.7 - 2021-05-08\n\n✨ NEW: Add `reverse` option for `grid` directive\n\n✨ NEW: Add animations\n\n## v0.0.6 - 2021-04-08\n\n✨ NEW: Add `card-carousel` directive\n\n## v0.0.5 - 2021-28-07\n\n👌 IMPROVE: Make octicon's size variable\n\n## v0.0.4 - 2021-28-07\n\n👌 IMPROVE: Allow `auto` for grid columns\n\n## v0.0.3 - 2021-26-07\n\n👌 IMPROVE: Add more CSS classes and add documentation 📚\n\n## v0.0.2 - 2021-23-07\n\nImprove documentation 📚\n\n## v0.0.1 - 2021-22-07\n\nInitial release 🎉\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License Copyright (c) 2023 Chris Sewell\n\nPermission is hereby granted, free\nof charge, to any person obtaining a copy of this software and associated\ndocumentation files (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use, copy, modify, merge,\npublish, distribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice\n(including the next paragraph) shall be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO\nEVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# sphinx-design\n\n[![Github-CI][github-ci]][github-link]\n[![Coverage Status][codecov-badge]][codecov-link]\n[![PyPI][pypi-badge]][pypi-link]\n\nA sphinx extension for designing beautiful, view size responsive web components.\n\nCreated with inspiration from [Bootstrap](https://getbootstrap.com/) (v5), [Material Design](https://material.io) and [Material-UI](https://material-ui.com/) design frameworks.\n\n## Usage\n\nSimply pip install `sphinx-design` and add the extension to your `conf.py`:\n\n```python\nextensions = [\"sphinx_design\"]\n```\n\n## Supported browsers\n\n- Chrome >= 60\n- Firefox >= 60\n- Firefox ESR\n- iOS >= 12\n- Safari >= 12\n- Explorer >= 12\n\n(Mirrors: <https://github.com/twbs/bootstrap/blob/v5.0.2/.browserslistrc>)\n\n## Theme support\n\nView the documentation in multiple themes:\n\n- [alabaster](https://sphinx-design.readthedocs.io/en/alabaster-theme)\n- [sphinx-book-theme](https://sphinx-design.readthedocs.io/en/sbt-theme)\n- [pydata-sphinx-theme](https://sphinx-design.readthedocs.io/en/pydata-theme)\n- [sphinx-rtd-theme](https://sphinx-design.readthedocs.io/en/rtd-theme)\n- [furo](https://sphinx-design.readthedocs.io/en/furo-theme)\n\n## Comparison to sphinx-panels\n\nThis package is an iteration on [sphinx-panels](https://github.com/executablebooks/sphinx-panels) and intends to replace it.\nSee [Migrating from sphinx-panels](./docs/get_started.md) for more information.\n\n## Development\n\nIt is recommended to use [tox](https://tox.readthedocs.io/en/latest/) to run the tests and document builds.\nRun `tox -va` to see all the available tox environments.\n\nTo run linting, formatting and SASS compilation, use [pre-commit](https://pre-commit.com/).\n`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,\nor you can directly run `npm run css`.\n\n## TODO\n\n- note design goal; to be flexible, but limit the amount of directive nesting required.\n  This factors in to\n  - card header/footer syntax? (don't really want to have to use separate directives for these, hence `^^^`/`+++` syntax)\n  - auto-wrap `grid-item` and `tab-item`, if not already inside `grid` or `tab-set`?\n\ngrids items cannot contain headers; is this in anyway possible with docutils structure?\n\nnaming of directives/roles: standard prefix?\n\nwhy are cards setup with \"word-wrap: break-word;\"?\n\nhandle latex\n\nUse autoprefixer when compiling SASS (see <https://getbootstrap.com/docs/5.0/getting-started/browsers-devices/#supported-browsers>)\n\nhorizontal card (grid row inside card, picture on left)\n\nsubtitle for card (see <https://material.io/components/cards#anatomy>)\n\n\n[github-ci]: https://github.com/executablebooks/sphinx-design/workflows/continuous-integration/badge.svg?branch=main\n[github-link]: https://github.com/executablebooks/sphinx-design\n[codecov-badge]: https://codecov.io/gh/executablebooks/sphinx-design/branch/main/graph/badge.svg\n[codecov-link]: https://codecov.io/gh/executablebooks/sphinx-design\n[pypi-badge]: https://img.shields.io/pypi/v/sphinx-design.svg\n[pypi-link]: https://pypi.org/project/sphinx-design\n"
  },
  {
    "path": "codecov.yml",
    "content": "coverage:\n  status:\n    project:\n      default:\n        target: 85%\n        threshold: 0.2%\n    patch:\n      default:\n        target: 75%\n        threshold: 0.2%\n"
  },
  {
    "path": "docs/_static/furo.css",
    "content": "body {\n    --sd-fontsize-dropdown: var(--admonition-font-size);\n    --sd-fontsize-dropdown-title: var(--admonition-title-font-size);\n    --sd-fontweight-dropdown-title: 500;\n}\n"
  },
  {
    "path": "docs/_static/sphinx_immaterial.css",
    "content": "body {\n    --sd-fontsize-dropdown: .64rem;\n    --sd-fontsize-dropdown-title: .64rem;\n    --sd-fontweight-dropdown-title: 700;\n}\n\ndetails.sd-dropdown {\n    padding-left: 0;\n    padding-right: 0;\n}\n\nsummary.sd-summary-title::after {\n    display: none;\n    right: 0 !important;\n}\n\nsummary.sd-summary-title::before {\n    display: none;\n    left: 0 !important;\n}\n\nsummary.sd-summary-title {\n    width: 100% !important;\n    margin-left: 0;\n    padding: .5em 1em !important;\n}\n\nsummary.sd-summary-title svg.sd-octicon {\n    max-width: none !important;\n}\n"
  },
  {
    "path": "docs/additional.md",
    "content": "(special)=\n\n# Additional\n\nThese are additional components that are not part of the standard Materials Design or Bootstrap systems.\n\n## `article-info`\n\nThis directive is used to display a block of information about an article,\nnormally positioned just below the title of the article (shown below with non-standard outline).\n\n```{article-info}\n:avatar: images/ebp-logo.png\n:avatar-link: https://executablebooks.org/\n:avatar-outline: muted\n:author: Executable Books\n:date: \"Jul 24, 2021\"\n:read-time: \"5 min read\"\n:class-container: sd-p-2 sd-outline-muted sd-rounded-1\n```\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/article-info.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/article-info.txt\n:language: rst\n```\n````\n`````\n\nThe `author`, `date`, and `read-time` options are parsed as syntax,\nso you can use substitutions like:\n\n- `date`\n  - MyST: `` :date: \"{sub-ref}`today`\" ``\n  - RST: `:data: |today|`\n- `read-time`\n  - MyST: `` :read-time: \"{sub-ref}`wordcount-minutes` min read\" ``\n\n### options\n\navatar\n: A URI (relative file path or URL) to an image for use as the avatar (a user portrait, logo or branded graphic).\n\navatar-alt\n: Alternative text for the avatar.\n\navatar-link\n: A URL to link to if the avatar icon is clicked.\n\navatar-outline\n: A semantic color to use for the outline of the avatar.\n\nauthor\n: Text to display in the author of of the article.\n\ndate\n: Text to display in the date of the article.\n\nread-time\n: Text to indicate the time to read the article.\n\nclass-container\n: Additional CSS classes for the container element.\n\nclass-avatar\n: Additional CSS classes for the avatar element.\n"
  },
  {
    "path": "docs/badges_buttons.md",
    "content": "# Badges, Buttons & Icons {octicon}`rocket`\n\n(badges)=\n\n## Badges\n\nInline badges can be used as a labelling component.\nBadges are available in each semantic color, with filled and outline variants:\n\n- {bdg}`plain badge`\n- {bdg-primary}`primary`, {bdg-primary-line}`primary-line`\n- {bdg-secondary}`secondary`, {bdg-secondary-line}`secondary-line`\n- {bdg-success}`success`, {bdg-success-line}`success-line`\n- {bdg-info}`info`, {bdg-info-line}`info-line`\n- {bdg-warning}`warning`, {bdg-warning-line}`warning-line`\n- {bdg-danger}`danger`, {bdg-danger-line}`danger-line`\n- {bdg-light}`light`, {bdg-light-line}`light-line`\n- {bdg-muted}`muted`, {bdg-muted-line}`muted-line`\n- {bdg-dark}`dark`, {bdg-dark-line}`dark-line`\n- {bdg-white}`white`, {bdg-white-line}`white-line`\n- {bdg-black}`black`, {bdg-black-line}`black-line`\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/badge-basic.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/badge-basic.txt\n:language: rst\n```\n````\n`````\n\n`bdg-link-` and `bdg-ref-` variants are also available for use with links and references.\nThe syntax is the same as for the `ref` role.\n\n{bdg-link-primary}`https://example.com`\n\n{bdg-link-primary-line}`explicit title <https://example.com>`\n\n{bdg-ref-primary}`badges`\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/badge-link.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/badge-link.txt\n:language: rst\n```\n````\n`````\n\nSee [Bootstrap badges](https://getbootstrap.com/docs/5.0/components/badge/) for more information, and related [Material Design chips](https://material.io/components/chip).\n\n(buttons)=\n\n## Buttons\n\nButtons allow users to navigate to external (`button-link`) / internal (`button-ref`) links with a single tap.\n\n```{button-link} https://example.com\n```\n\n```{button-link} https://example.com\nButton text\n```\n\n```{button-link} https://example.com\n:color: primary\n:shadow:\n```\n\n```{button-link} https://example.com\n:color: primary\n:outline:\n```\n\n```{button-link} https://example.com\n:color: secondary\n:expand:\n```\n\n```{button-ref} buttons\n:color: info\n```\n\n```{button-ref} buttons\n:color: info\n\nReference Button text\n```\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/button-link.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/button-link.txt\n:language: rst\n```\n````\n`````\n\nNote that by default sphinx converts the content of references to raw text.\nFor example `**Bold text**` with `ref-type` set to `ref` will be rendered without bold:\n\n```{button-ref} buttons\n:ref-type: ref\n:color: primary\n\n**Bold text**\n```\n\nHowever, if using [myst-parser](https://myst-parser.readthedocs.io/), you can set the `ref-type` to `myst`, and the content will be properly rendered:\n\n```{button-ref} buttons\n:ref-type: myst\n:color: primary\n\n**Bold text**\n```\n\nUse the `click-parent` option to make the button's parent container also clickable.\n\n:::{card} Card with an expanded button\n\n```{button-link} https://example.com\n:color: info\n:expand:\n:click-parent:\n```\n\n:::\n\nSee the [Material Design](https://material.io/components/buttons) and [Bootstrap](https://getbootstrap.com/docs/5.0/components/buttons/) descriptions for further details.\n\n### `button-link` and `button-ref` options\n\nref-type (`button-ref` only)\n: Type of reference to use; `any` (default), `ref`, `doc`, or `myst`\n\ncolor\n: Set the color of the button (background and font).\n  One of the semantic color names: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`, `muted`.\n\noutline\n: Outline color variant\n\nalign\n: Align the button on the page; `left`, `right`, `center` or `justify`\n\nexpand\n: Expand to fit parent width\n\nclick-parent\n: Make parent container also clickable\n\ntooltip\n: Add tooltip on hover\n\nshadow\n: Add shadow CSS\n\nclass\n: Additional CSS classes\n\n(icons)=\n\n## Inline Icons\n\nInline 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.\n\nOcticon icons and Material icons are added as SVG's directly into the page with the `octicon` and `material-<flavor>` roles. See below for the different flavors of Material Design Icons.\n\nBy default the icon will be of height `1em` (i.e. the height of the font).\nA specific height can be set after a semi-colon (`;`) with units of either `px`, `em` or `rem`.\nAdditional CSS classes can also be added to the SVG after a second semi-colon (`;`) delimiter.\n\n### Octicon Icons\n\nA coloured icon: {octicon}`report;1em;sd-text-info`, some more text.\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/icon-octicon.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/icon-octicon.txt\n:language: rst\n```\n````\n\n````{dropdown} All Octicons\n:open:\n\n```{_all-octicon}\n```\n````\n\n### Material Design Icons\n\nMaterial Design icons come as several flavors. Each flavor represents a different role used in sphinx-design. These flavors are:\n\n- `material-regular`\n- `material-outlined`\n- `material-round`\n- `material-sharp`\n- `material-twotone`\n\nNot 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.\n\n- A regular icon: {material-regular}`data_exploration;2em`, some more text\n- A coloured regular icon: {material-regular}`settings;3em;sd-text-success`, some more text.\n- A coloured outline icon: {material-outlined}`settings;3em;sd-text-success`, some more text.\n- A coloured sharp icon: {material-sharp}`settings;3em;sd-text-success`, some more text.\n- A coloured round icon: {material-round}`settings;3em;sd-text-success`, some more text.\n- A coloured two-tone icon: {material-twotone}`settings;3em;sd-text-success`, some more text.\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/icon-material-design.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/icon-material-design.txt\n:language: rst\n```\n````\n\n### FontAwesome Icons\n\nFontAwesome icons are added via the Fontawesome CSS classes.\nIf 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.:\n\n```python\nhtml_css_files = [\n    \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css\"\n]\n```\n\nUse either `fa` (deprecated in font-awesome v5), `fas`, `fab` or `far` for the role name.\nNote that not all regular style icons are free, `far` role only works with free ones.\n\n````{warning}\nSince the FontAwesome icons are fetched directly from their distributed CSS, specifying a height/size to the `fa*` roles is not supported.\nHowever, you can always add your custom CSS class that controls the `font-size` property.\n\nIf a height/size is supplied to a `fa*` role, then it will be interpreted as a CSS class.\nThere can only be a maximum of 1 `;` in the `fa*` roles' arguments\n````\n\n````{tab-set-code}\n```markdown\n- An icon {fas}`spinner;sd-text-primary`, some more text.\n- An icon {fab}`github`, some more text.\n- An icon {fab}`gitkraken;sd-text-success fa-xl`, some more text.\n- An icon {fas}`skull;sd-text-danger`, some more text.\n```\n```rst\n- An icon :fas:`spinner;sd-text-primary`, some more text.\n- An icon :fab:`github`, some more text.\n- An icon :fab:`gitkraken;sd-text-success fa-xl`, some more text.\n- An icon :fas:`skull;sd-text-danger`, some more text.\n```\n````\n\n- An icon {fas}`spinner;sd-text-primary`, some more text.\n- An icon {fab}`github`, some more text.\n- An icon {fab}`gitkraken;sd-text-success fa-xl`, some more text.\n- An icon {fas}`skull;sd-text-danger`, some more text.\n\nBy 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:\n\n```python\nsd_fontawesome_latex = True\n```\n"
  },
  {
    "path": "docs/cards.md",
    "content": "(sd-cards)=\n\n# Cards\n\nCards contain content and actions about a single subject.\nA card is a flexible and extensible content container,\nit can be formatted with components including headers and footers, titles and images.\n\n:::{card} Card Title\n\nCard content\n:::\n\nSee the [Material Design](https://material.io/components/cards) and [Bootstrap card](https://getbootstrap.com/docs/5.0/layout/grid/) descriptions for further details.\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/card-basic.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/card-basic.txt\n:language: rst\n```\n````\n`````\n\nAll content before the first occurrence of three or more `^^^` is considered as a header,\nand all content after the final occurrence of three or more `+++` is considered as a footer:\n\n:::{card} Card Title\nHeader\n^^^\nCard content\n+++\nFooter\n:::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/card-head-foot.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/card-head-foot.txt\n:language: rst\n```\n````\n`````\n\nWhen using cards in grids (see [`grid-item-card`](./grids.md)) footers can be aligned.\n\n::::{grid} 2\n:::{grid-item-card} Card Title\nHeader\n^^^\nCard content\n+++\nFooter\n:::\n:::{grid-item-card} Card Title\nHeader\n^^^\nLonger\n\nCard content\n+++\nFooter\n:::\n::::\n\n## Card images\n\nYou 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:\n\n:::::{grid} 2 3 3 4\n\n::::{grid-item}\n\n:::{card} Title\n:img-background: images/particle_background.jpg\n:class-card: sd-text-black\n:img-alt: your desired alt text\n\nText\n:::\n\n::::\n\n::::{grid-item-card} Title\n:img-top: images/particle_background.jpg\n:img-alt: your desired alt text\n\nHeader\n^^^\nContent\n+++\nFooter\n::::\n\n::::{grid-item-card} Title\n:img-bottom: images/particle_background.jpg\n:img-alt: your desired alt text\n\nHeader\n^^^\nContent\n+++\nFooter\n::::\n\n:::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/card-images.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/card-images.txt\n:language: rst\n```\n````\n`````\n\n(cards-clickable)=\n\n## Clickable cards\n\nUsing the `link` and `link-type` options, you can turn an entire card into a clickable link.\nTry hovering over then clicking on the cards below:\n\n:::{card} Clickable Card (external)\n:link: https://example.com\n:link-alt: example.com\n\nThe entire card can be clicked to navigate to `https://example.com`.\n:::\n\n:::{card} Clickable Card (internal)\n:link: cards-clickable\n:link-type: ref\n\nThe entire card can be clicked to navigate to the `cards-clickable` reference target.\n:::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/card-link.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/card-link.txt\n:language: rst\n```\n````\n`````\n\nThe **external link** created above is equivalent to using `<https://example.com>`\n(<https://example.com>),\nor if the `link-alt` option is provided, `[alt text](https://example.com)`\n([alt text](https://example.com)).\n\n:::{tip}\nUsing URLs as link text makes it harder\nfor disabled people and for search engines to digest your web page,\nso it's best to provide link text via the `link-alt` option.\n:::\n\nThe **internal link** created above is equivalent to using `` {ref}`cards-clickable` ``\n({ref}`cards-clickable`),\nor if the `link-alt` option is provided, `` {ref}`alt text <cards-clickable>` ``\n({ref}`alt text <cards-clickable>`).\n\n:::{note}\nYou cannot add additional links to the clickable card, neither in the card\ntitle nor in the card body. The entire card becomes a single link to the\ndestination you specify, which overrides any other links inside the card.\n:::\n\n\n\n## Aligning cards\n\nYou can use the `text-align` option to align the text in a card,\nand also `auto` margins to align the cards horizontally.\n\n:::{card} Align Center\n:width: 75%\n:margin: 0 2 auto auto\n:text-align: center\n\nContent\n:::\n\n:::{card} Align Right\n:width: 50%\n:margin: 0 2 auto 0\n:text-align: right\n\nContent\n:::\n\n:::{card} Align Left\n:width: 50%\n:margin: 0 2 0 auto\n:text-align: left\n\nContent\n:::\n\n(cards:carousel)=\n\n## Card carousels\n\nThe `card-carousel` directive can be used to create a single row of fixed width, scrollable cards.\nThe argument should be a number between 1 and 12, to denote the number of cards to display.\n\nWhen scrolling a carousel, the scroll will snap to the start of the nearest card:\n\n::::{card-carousel} 2\n\n:::{card} card 1\ncontent\n:::\n:::{card} card 2\nLonger\n\ncontent\n:::\n:::{card} card 3\n:::\n:::{card} card 4\n:::\n:::{card} card 5\n:::\n:::{card} card 6\n:::\n::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/card-carousel.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/card-carousel.txt\n:language: rst\n```\n````\n`````\n\n(cards:options)=\n\n## `card` options\n\nwidth\n: The width that the card should take up (in %): auto, 25%, 50%, 75%, 100%.\n\nmargin\n: Outer margin of grid.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto.\n\ntext-align\n: Default horizontal text alignment: left, right, center or justify\n\nimg-background\n: A URI (relative file path or URL) to an image to be placed below the content.\n\nimg-top\n: A URI (relative file path or URL) to an image to be placed above the content.\n\nimg-bottom\n: A URI (relative file path or URL) to an image to be placed below the content.\n\nimg-alt\n: Alternative text for the image (that will be used by screen-readers).\n\nlink\n: Turn the entire card into a clickable link to an external/internal target.\n\nlink-type\n: Type of link: `url` (default), `ref`, `doc`, `any`.\n\nlink-alt\n: Alternative text for the link (that will be used by screen-readers).\n\nshadow\n: The size of the shadow below the card: `none`, `sm` (default), `md`, `lg`.\n\nclass-card\n: Additional CSS classes for the card container element.\n\nclass-header\n: Additional CSS classes for the header element.\n\nclass-body\n: Additional CSS classes for the body element.\n\nclass-title\n: Additional CSS classes for the title element.\n\nclass-footer\n: Additional CSS classes for the footer element.\n\nclass-img-top\n: Additional CSS classes for the top image (if present).\n\nclass-img-bottom\n: Additional CSS classes for the bottom image (if present).\n"
  },
  {
    "path": "docs/changelog.md",
    "content": "```{include} ../CHANGELOG.md\n```\n"
  },
  {
    "path": "docs/conf.py",
    "content": "\"\"\"Configuration file for the Sphinx documentation builder.\"\"\"\n\nimport os\n\nproject = \"Sphinx Design\"\ncopyright = \"2021, Executable Book Project\"\nauthor = \"Executable Book Project\"\n\nextensions = [\"myst_parser\", \"sphinx_design\", \"sphinx.ext.extlinks\"]\n\nsuppress_warnings = [\"design.fa-build\"]\nsd_fontawesome_latex = True\nsd_custom_directives = {\n    \"dropdown-syntax\": {\n        \"inherit\": \"dropdown\",\n        \"argument\": \"Syntax\",\n        \"options\": {\n            \"color\": \"primary\",\n            \"icon\": \"code\",\n        },\n    }\n}\n\nextlinks = {\n    \"pr\": (\"https://github.com/executablebooks/sphinx-design/pull/%s\", \"PR #%s\"),\n    \"user\": (\"https://github.com/%s\", \"@%s\"),\n}\n\nhtml_theme = os.environ.get(\"SPHINX_THEME\", \"alabaster\")\nhtml_title = f\"Sphinx Design ({html_theme.replace('_', '-')})\"\n\nhtml_static_path = [\"_static\"]\nhtml_logo = \"_static/logo_wide.svg\"\nhtml_favicon = \"_static/logo_square.svg\"\n\nif html_theme not in (\"sphinx_book_theme\", \"pydata_sphinx_theme\"):\n    html_css_files = [\n        \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css\"\n    ]\nif html_theme == \"alabaster\":\n    html_logo = \"\"\n    html_theme_options = {\n        \"logo\": \"logo_wide.svg\",\n        \"logo_name\": False,\n        \"description\": \"(alabaster theme)\",\n        \"github_button\": False,\n        \"github_type\": \"star\",\n        \"github_banner\": False,\n        \"github_user\": \"executablebooks\",\n        \"github_repo\": \"sphinx-design\",\n    }\nif html_theme == \"sphinx_book_theme\":\n    html_theme_options = {\n        \"repository_url\": \"https://github.com/executablebooks/sphinx-design\",\n        \"use_repository_button\": True,\n        \"use_edit_page_button\": True,\n        \"use_issues_button\": True,\n        \"repository_branch\": \"main\",\n        \"path_to_docs\": \"docs\",\n        \"home_page_in_toc\": False,\n    }\nif html_theme == \"furo\":\n    html_css_files = [\n        \"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/fontawesome.min.css\",\n        \"furo.css\",\n    ]\n    html_theme_options = {\n        \"sidebar_hide_name\": True,\n    }\nif html_theme == \"sphinx_rtd_theme\":\n    html_theme_options = {\n        \"logo_only\": True,\n    }\nif html_theme == \"sphinx_immaterial\":\n    extensions.append(\"sphinx_immaterial\")\n    html_css_files = [\"sphinx_immaterial.css\"]\n    html_theme_options = {\n        \"icon\": {\n            \"repo\": \"fontawesome/brands/github\",\n        },\n        \"site_url\": \"https://sphinx-design.readthedocs.io/\",\n        \"repo_url\": \"https://github.com/executablebooks/sphinx-design\",\n        \"repo_name\": \"Sphinx-Design\",\n        \"palette\": [\n            {\n                \"media\": \"(prefers-color-scheme: light)\",\n                \"scheme\": \"default\",\n                \"primary\": \"blue\",\n                \"accent\": \"light-blue\",\n                \"toggle\": {\n                    \"icon\": \"material/weather-night\",\n                    \"name\": \"Switch to dark mode\",\n                },\n            },\n            {\n                \"media\": \"(prefers-color-scheme: dark)\",\n                \"scheme\": \"slate\",\n                \"primary\": \"blue\",\n                \"accent\": \"yellow\",\n                \"toggle\": {\n                    \"icon\": \"material/weather-sunny\",\n                    \"name\": \"Switch to light mode\",\n                },\n            },\n        ],\n    }\n\nexclude_patterns = [\"_build\", \"Thumbs.db\", \".DS_Store\"]\nmyst_enable_extensions = [\n    \"attrs_inline\",\n    \"colon_fence\",\n    \"deflist\",\n    \"substitution\",\n    \"html_image\",\n]\n\nmyst_substitutions = {\n    \"loremipsum\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \"\n    \"Sed iaculis arcu vitae odio gravida congue. Donec porttitor ac risus et condimentum. \"\n    \"Phasellus bibendum ac risus a sollicitudin. \"\n    \"Proin pulvinar risus ac mauris aliquet fermentum et varius nisi. \"\n    \"Etiam sit amet metus ac ipsum placerat congue semper non diam. \"\n    \"Nunc luctus tincidunt ipsum id eleifend. Ut sed faucibus ipsum. \"\n    \"Aliquam maximus dictum posuere. Nunc vitae libero nec enim tempus euismod. \"\n    \"Aliquam sed lectus ac nisl sollicitudin ultricies id at neque. \"\n    \"Aliquam fringilla odio vitae lorem ornare, sit amet scelerisque orci fringilla. \"\n    \"Nam sed arcu dignissim, ultrices quam sit amet, commodo ipsum. \"\n    \"Etiam quis nunc at ligula tincidunt eleifend.\"\n}\n"
  },
  {
    "path": "docs/css_classes.md",
    "content": "# CSS Classes\n\nFor 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.\n\nBut 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.\nAll CSS classes that are part of sphinx-design are prefixed with `sd-`.\n\n:::{div} sd-text-center sd-font-italic sd-text-primary\nSome CSS styled text\n:::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/div-basic.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/div-basic.txt\n:language: rst\n```\n````\n`````\n\nIf you find yourself using a class(es) often, consider opening an issue to request a new role/directive or option!\n\nThe `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.\n\n## Text\n\nClasses are available for styling and alignment:\n\n- Alignment:\n  - `sd-text-justify`\n  - `sd-text-left`\n  - `sd-text-right`\n  - `sd-text-center`\n- Size (size decreases from 1 to 6):\n  - `sd-fs-1`\n  - `sd-fs-2`\n  - `sd-fs-3`\n  - `sd-fs-4`\n  - `sd-fs-5`\n  - `sd-fs-6`\n- Weight:\n  - `sd-font-weight-light`\n  - `sd-font-weight-lighter`\n  - `sd-font-weight-normal`\n  - `sd-font-weight-bold`\n  - `sd-font-weight-bolder`\n- Style\n  - `sd-font-italic`\n  - `sd-text-decoration-none`\n  - `sd-text-lowercase`\n  - `sd-text-uppercase`\n  - `sd-text-capitalize`\n- Wrapping\n  - `sd-text-wrap`\n  - `sd-text-nowrap`\n  - `sd-text-truncate` (requires `display: inline-block` or `display: block`)\n- Color\n  - `sd-text-{semantic color name}` (uses `--sd-color-{semantic color name}` CSS variable)\n  - `sd-bg-text-{semantic color name}` (uses `--sd-color-{semantic color name}-text` CSS variable)\n\n## Display\n\nDefine the layout of an element and its children (see [`display`](https://developer.mozilla.org/en-US/docs/Web/CSS/display)):\n\n- `sd-d-none`\n- `sd-d-inline`\n- `sd-d-inline-block`\n- `sd-d-block`\n- `sd-d-grid`\n- `sd-d-flex-row` (align items horizontally)\n- `sd-d-flex-column` (align items vertically)\n- `sd-d-inline-flex`\n\nVariants are also available for screen-sizes (xs, sm, md, lg), e.g. `sd-d-sm-none`.\n\nItems within a flex box can also be aligned along the major axis or minor axis, dependant on the flex-direction.\nFor example, using `sd-d-flex-column` and `sd-align-major-center` will center the items in the vertical direction.\n\n- `sd-align-major-start`\n- `sd-align-major-end`\n- `sd-align-major-center`\n- `sd-align-major-spaced` (spaced to fill the full axis)\n- `sd-align-major-justify` (spaced to fill the full axis, with the first/last item on the edges of the axis)\n\n- `sd-align-minor-start`\n- `sd-align-minor-end`\n- `sd-align-minor-center`\n\nFor more information, see [this guide to flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/).\n\n## Sizing\n\nSize objects width/height by percentage:\n\n- `sd-width-25`, `sd-height-25`\n- `sd-width-50`, `sd-height-50`\n- `sd-width-75`, `sd-height-75`\n- `sd-width-100`, `sd-height-100`\n- `sd-width-auto`, `sd-height-auto`\n\n## Spacing\n\nPadding (`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).\n\nSpacing are defined on a scale of 0 to 5, for example `sd-px-1` or `sd-mt-5`.\n\nNote, 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}`.\n\n## Colors\n\nColors 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`.\n\n- `sd-bg-{name}`\n- `sd-bg-text-{name}`\n- `sd-text-{name}`\n- `sd-outline-{name}`\n\nAdditional transparent colouring:\n\n- `sd-bg-transparent`\n- `sd-outline-transparent`\n- `sd-text-transparent`\n\n## Borders\n\nBorders can be applied to elements of thickness 0 to 5, for all are a specific side:\n\n- `sd-border-{thickness}`\n- `sd-border-top-{thickness}`\n- `sd-border-bottom-{thickness}`\n- `sd-border-right-{thickness}`\n- `sd-border-left-{thickness}`\n\n````{grid} 1 2 3 3\n:gutter: 1\n\n```{grid-item-card}\n:shadow: none\n:class-card: sd-border-0\n\n`sd-border-0`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-border-1\n\n`sd-border-1`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-border-2\n\n`sd-border-2`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-border-3\n\n`sd-border-3`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-border-4\n\n`sd-border-4`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-border-5\n\n`sd-border-5`\n```\n````\n\nBorder can be rounded by different amounts using:\n\n- `sd-rounded-0`\n- `sd-rounded-1`\n- `sd-rounded-2`\n- `sd-rounded-3`\n- `sd-rounded-pill`\n- `sd-rounded-circle`\n\n````{grid} 1 2 3 3\n:gutter: 1\n\n```{grid-item-card}\n:shadow: none\n:class-card: sd-rounded-0\n\n`sd-rounded-0`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-rounded-1\n\n`sd-rounded-1`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-rounded-2\n\n`sd-rounded-2`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-rounded-3\n\n`sd-rounded-3`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-rounded-pill\n\n`sd-rounded-pill`\n```\n```{grid-item-card}\n:shadow: none\n:class-card: sd-rounded-circle\n\n`sd-rounded-circle`\n```\n````\n\n## Shadows\n\nShadows can be applied to box elements (the color of the shadow is defined using `--sd-color-shadow` CSS variable):\n\n- `sd-shadow-none`\n- `sd-shadow-sm`\n- `sd-shadow-md`\n- `sd-shadow-lg`\n\n````{grid} 1 2 3 4\n:gutter: 3\n\n```{grid-item-card}\n:shadow: none\n\n`sd-shadow-none`\n```\n```{grid-item-card}\n:shadow: sm\n\n`sd-shadow-sm`\n```\n```{grid-item-card}\n:shadow: md\n\n`sd-shadow-md`\n```\n```{grid-item-card}\n:shadow: lg\n\n`sd-shadow-lg`\n```\n````\n\n## Avatars\n\nAvatars 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)).\n\nThese classes center an image, set their size and add a circular crop:\n\n- `sd-avatar-xs`\n- `sd-avatar-sm`\n- `sd-avatar-md`\n- `sd-avatar-lg`\n- `sd-avatar-xl`\n- `sd-avatar-inherit`\n- `sd-avatar-initial`\n\n````{grid} 1 2 3 3\n:gutter: 1\n\n```{grid-item-card} sd-avatar-xs\n<img src=\"images/ebp-logo.png\" class=\"sd-avatar-xs sd-border-1\">\n```\n```{grid-item-card} sd-avatar-sm\n<img src=\"images/ebp-logo.png\" class=\"sd-avatar-sm sd-border-1\">\n```\n```{grid-item-card} sd-avatar-md\n<img src=\"images/ebp-logo.png\" class=\"sd-avatar-md sd-border-1\">\n```\n```{grid-item-card} sd-avatar-lg\n<img src=\"images/ebp-logo.png\" class=\"sd-avatar-lg sd-border-1\">\n```\n```{grid-item-card} sd-avatar-xl\n<img src=\"images/ebp-logo.png\" class=\"sd-avatar-xl sd-border-1\">\n```\n````\n\n## Load Animations\n\nAdd CSS animations when loading elements using the `sd-animate-{name}` classes:\n\n- `sd-animate-slide-from-left`\n- `sd-animate-slide-from-right`\n- `sd-animate-grow100`\n- `sd-animate-grow50`\n- `sd-animate-grow50-rot20`\n\nSee [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.\n"
  },
  {
    "path": "docs/css_variables.md",
    "content": "# CSS Variables\n\nAll colors used by sphinx-design are defined as [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties).\nTherefore 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)):\n\n```python\nhtml_static_path = ['_static']\nhtml_css_files = ['custom.css']\n```\n\nFor colors, there are nine semantic colors that can be defined.\nFor each of these colors you should define:\n\n- `--sd-color-{name}` as the actual color\n- `--sd-color-{name}-highlight` as the color used when the component is highlighted\n  (e.g. if hovering over a button). By default, this is a 15% darker version of the original color.\n- `--sd-color-{name}-text` as the color to use for text displayed on top of the color.\n  By default, this is dark grey for light colors and white for dark colors.\n\nThe defaults are:\n\n```css\n:root {\n    --sd-color-primary: #007bff;\n    --sd-color-secondary: #6c757d;\n    --sd-color-success: #28a745;\n    --sd-color-info: #17a2b8;\n    --sd-color-warning: #f0b37e;\n    --sd-color-danger: #dc3545;\n    --sd-color-light: #f8f9fa;\n    --sd-color-muted: #6c757d;\n    --sd-color-dark: #212529;\n    --sd-color-primary-highlight: #0069d9;\n    --sd-color-secondary-highlight: #5c636a;\n    --sd-color-success-highlight: #228e3b;\n    --sd-color-info-highlight: #148a9c;\n    --sd-color-warning-highlight: #cc986b;\n    --sd-color-danger-highlight: #bb2d3b;\n    --sd-color-light-highlight: #d3d4d5;\n    --sd-color-muted-highlight: #5c636a;\n    --sd-color-dark-highlight: #1c1f23;\n    --sd-color-primary-text: #fff;\n    --sd-color-secondary-text: #fff;\n    --sd-color-success-text: #fff;\n    --sd-color-info-text: #fff;\n    --sd-color-warning-text: #212529;\n    --sd-color-danger-text: #fff;\n    --sd-color-light-text: #212529;\n    --sd-color-muted-text: #fff;\n    --sd-color-dark-text: #fff;\n    --sd-color-shadow: rgba(0, 0, 0, 0.15);\n    --sd-color-card-border: rgba(0, 0, 0, 0.125);\n    --sd-color-card-border-hover: hsla(231, 99%, 66%, 1);\n    --sd-color-card-background: transparent;\n    --sd-color-card-text: inherit;\n    --sd-color-card-header: transparent;\n    --sd-color-card-footer: transparent;\n    --sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);\n    --sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);\n    --sd-color-tabs-label-inactive: hsl(0, 0%, 66%);\n    --sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);\n    --sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);\n    --sd-color-tabs-underline-inactive: transparent;\n    --sd-color-tabs-overline: rgb(222, 222, 222);\n    --sd-color-tabs-underline: rgb(222, 222, 222);\n    --sd-fontsize-tabs-label: 1rem;\n    --sd-fontsize-dropdown-title: 1rem;\n    --sd-fontweight-dropdown-title: 700;\n}\n```\n"
  },
  {
    "path": "docs/dropdowns.md",
    "content": "(sd-dropdowns)=\n\n# Dropdowns\n\nDropdowns can be used to toggle, usually *non-essential*, content and show it only when a user clicks on the header panel.\n\nThe dropdown can have a title, as the directive argument, and the `open` option can be used to initialise the dropdown in the open state.\n\n:::{dropdown}\nDropdown content\n:::\n\n:::{dropdown} Dropdown title\nDropdown content\n:::\n\n:::{dropdown} Open dropdown\n:open:\n\nDropdown content\n:::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/dropdown-basic.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/dropdown-basic.txt\n:language: rst\n```\n````\n`````\n\n## Opening animations\n\nUse `:animate: fade-in` or `:animate: fade-in-slide-down` options to animate the reveal of the hidden content.\n\n:::{dropdown} Dropdown `fade-in`\n:animate: fade-in\n\n{{ loremipsum }}\n:::\n\n:::{dropdown} Dropdown `fade-in-slide-down`\n:animate: fade-in-slide-down\n\n{{ loremipsum }}\n:::\n\n## More examples\n\n:::{dropdown} Dropdown with icon\n:icon: quote\n\nDropdown content\n:::\n\n:::{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*\n:icon: quote\n\nDropdown content\n:::\n\n:::{dropdown} Using option `:chevron: down-up`\n:chevron: down-up\n\nDropdown content\n:::\n\n## Dropdowns in other components\n\nDropdowns can be nested inside other components, such as inside parent dropdowns or within [grid items](./grids.md).\n\n::::{admonition} Here is an admonition with a dropdown\n\nAdmonition content\n\n:::{dropdown} Dropdown inside admonition\n:icon: quote\n\n{{ loremipsum }}\n:::\n::::\n\n::::{dropdown} Parent dropdown title\n:open:\n\n:::{dropdown} Child dropdown title\n:color: warning\n:icon: alert\n\nDropdown content\n:::\n::::\n\n:::::{grid} 1 1 2 2\n:gutter: 1\n\n::::{grid-item}\n:::{dropdown} Dropdown Column 1\nDropdown content\n:::\n::::\n\n::::{grid-item}\n:::{dropdown} Dropdown Column 2\nDropdown content\n:::\n::::\n\n:::::\n\n## `dropdown` options\n\nopen\n: Open the dropdown by default.\n\ncolor\n: Set the color of the dropdown header (background and font).\n  One of the semantic color names: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`, `muted`.\n\nicon\n: Set an [octicon icon](icons) to prefix the dropdown header.\n\nchevron\n: The open-close direction of the chevron.\n  One of: `right-down`, `down-up`.\n\nanimate\n: Animate the dropdown opening (`fade-in` or `fade-in-slide-down`).\n\nmargin\n: Outer margin of grid.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto.\n\nname\n: Set a reference-able name for the dropdown container.\n\nclass-container\n: Additional CSS classes for the container element.\n\nclass-title\n: Additional CSS classes for the title element.\n\nclass-body\n: Additional CSS classes for the body element.\n"
  },
  {
    "path": "docs/get_started.md",
    "content": "# Getting Started\n\n```{article-info}\n:avatar: images/ebp-logo.png\n:avatar-link: https://executablebooks.org\n:author: \"[Chris Sewell](https://github.com/chrisjsewell)\"\n:date: \"{sub-ref}`today`\"\n:read-time: \"1 min read\"\n:class-avatar: sd-animate-grow50-rot20\n```\n\n## Usage\n\nSimply pip install `sphinx-design` and add the extension to your `conf.py`:\n\n```python\nextensions = [\"sphinx_design\"]\n```\n\nFor using with [MyST Parser](https://github.com/executablebooks/myst-parser), for Markdown documentation, it is recommended to use the `colon_fence` syntax extension:\n\n```python\nextensions = [\"myst_parser\", \"sphinx_design\"]\nmyst_enable_extensions = [\"colon_fence\"]\n```\n\n## Configuration\n\nTo hide the title header of a page, add to the top of the page:\n\n::::{tab-set}\n:::{tab-item} MyST Markdown\n```markdown\n---\nsd_hide_title: true\n---\n```\n:::\n:::{tab-item} RestructuredText\n```rst\n:sd_hide_title:\n```\n:::\n::::\n\n### Creating custom directives\n\n:::{versionadded} 0.6.0\n:::\n\nYou can use the `sd_custom_directives` configuration option in your `conf.py` to add custom directives, with default option values:\n\n```python\nsd_custom_directives = {\n    \"dropdown-syntax\": {\n        \"inherit\": \"dropdown\",\n        \"argument\": \"Syntax\",\n        \"options\": {\n            \"color\": \"primary\",\n            \"icon\": \"code\",\n        },\n    }\n}\n```\n\nThe key is the new directive name to add, and the value is a dictionary with the following keys:\n\n- `inherit`: The directive to inherit from (e.g. `dropdown`)\n- `argument`: The default argument (optional, only for directives that take a single argument)\n- `options`: A dictionary of default options for the directive (optional)\n\n## Supported browsers\n\n- Chrome >= 60\n- Firefox >= 60\n- Firefox ESR\n- iOS >= 12\n- Safari >= 12\n- Explorer >= 12\n\n(Mirrors: <https://github.com/twbs/bootstrap/blob/v5.0.2/.browserslistrc>)\n\n## Migrating from sphinx-panels\n\nThis 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.\n\nNotable changes:\n\n### Reduce direct use of CSS classes\n\nThese are replaced by the use of directive options, which are:\n\n- Easier to understand\n- Easier to validate\n- Easier to work with non-HTML outputs\n- Easier to improve/refactor\n\n### `panel` directive replaced\n\nThe `panel` directive is replaced by the use of the top-level `grid` directive,\nthen using `grid-item-card` directive children, rather than delimiting cards by `---`.\n\nIf no card is needed, then the `grid-item` directive can be used instead and `card` can be also used independently of grids.\n\nApproximately, `.. panels::` is equivalent to `.. grid:: 1 2 2 2` with option `:gutter: 2`.\n\n### `tabbed` directive replaced\n\nThe `tabbed` directive is replaced by the use of the top-level `tab-set` directive,\nthen using `tab-item` directive children.\n\nThe `:sync:` option allows to synchronize tab selection across sets.\n\nThe `tab-set-code` directive provides a shorthand for synced code examples.\n\n### `link-button` directive replaced\n\nThe `link-button` directive is replaced by the use of `button-ref`/`button-link`.\n\nDirective options have also been added to replace the use of classes:\n\n- `stretched-link` -> `:click-parent:`\n- `btn-block` -> `:expand:`\n\n### `octicon` icon role\n\nThe default SVGs produced are now sized relative to the surrounding text (i.e. using `1em`).\nThe syntax for specifying a custom size and adding classes is also changed.\n\nThis is similar for favicon icons, where the `,` delimiter is also replaced by `;`, e.g. ``:fa:`name,class` `` -> ``:fa:`name;class` ``.\n\n### Improved CSS\n\nUpdated Bootstrap CSS from v4 -> v5,\nwhich in particular allows top-level grid to define both column numbers and gutter sizes.\n\nAll CSS classes are prefixed with `sd-` (no clash with other theme/extension CSS)\n\nAll colors use CSS variables (customisable)\n"
  },
  {
    "path": "docs/grids.md",
    "content": "(sd-grids)=\n\n# Grids\n\n## Introduction\n\nGrids are based on a 12 column system, which can adapt to the size of the viewing screen.\n\nA `grid` directive can be set with the number of default columns (1 to 12);\neither a single number for all screen sizes, or four numbers for extra-small (<576px), small (768px), medium (992px) and large screens (>1200px),\nthen child `grid-item` directives should be set for each item.\n\nTry re-sizing the screen to see the number of columns change:\n\n::::{grid} 1 2 3 4\n:outline:\n\n:::{grid-item}\nA\n:::\n:::{grid-item}\nB\n:::\n:::{grid-item}\nC\n:::\n:::{grid-item}\nD\n:::\n::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/grid-basic.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/grid-basic.txt\n:language: rst\n```\n````\n`````\n\nYou can also use the `auto` value for the column width(s), to size columns based on the natural width of their content.\n\n::::{grid} auto\n\n:::{grid-item}\n:outline:\n:padding: 2\n\nshort text content\n:::\n:::{grid-item}\n:outline:\n:padding: 2\n\nsome longer text content\n:::\n:::{grid-item}\n:outline:\n:padding: 2\n\nshort text content\n:::\n::::\n\n## Placing a card in a grid\n\nThe `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:\n\n::::{grid} 2\n:::{grid-item-card} Title 1\nA\n:::\n:::{grid-item-card} Title 2\nB\n:::\n::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/grid-card.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/grid-card.txt\n:language: rst\n```\n````\n`````\n\n## Controlling spacing between items\n\nYou can set the spacing between grid items with the `gutter` option.\nLike for grid columns, you can either provide a single number or four for small, medium and large and extra-large screens.\n\n::::{grid} 2\n:gutter: 1\n\n:::{grid-item-card}\nA\n:::\n:::{grid-item-card}\nB\n:::\n::::\n\n::::{grid} 2\n:gutter: 3 3 4 5\n\n:::{grid-item-card}\nA\n:::\n:::{grid-item-card}\nB\n:::\n::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/grid-gutter.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/grid-gutter.txt\n:language: rst\n```\n````\n`````\n\n## Item level column width\n\nYou can override the number of columns a single item takes up by using the `columns` option of the `grid-item` directive.\nGiven the total columns are 12, this means 12 would indicate a single item takes up the entire grid row, or 6 half.\nAlternatively, use `auto` to automatically decide how many columns to use based on the item content.\nLike for grid columns, you can either provide a single number or four for small, medium and large and extra-large screens.\n\n::::{grid} 2\n:::{grid-item-card}\n:columns: auto\n\nA\n:::\n:::{grid-item-card}\n:columns: 12 6 6 6\n\nB\n:::\n:::{grid-item-card}\n:columns: 12\n\nC\n:::\n::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/grid-card-columns.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/grid-card-columns.txt\n:language: rst\n```\n````\n`````\n\n## Reversing the item order\n\nUse the `grid` directive's `reverse` option to reverse the order of the items.\nThis can be useful if you want an item to be on the right side on large screens, but at the top on small screens.\n\n::::{grid} 1 1 2 2\n:reverse:\n\n:::{grid-item}\n```{image} ./images/ebp-logo.png\n:width: 200px\n:class: sd-m-auto\n```\n:::\n\n:::{grid-item-card}\nSome text\n:::\n\n::::\n\n## Nesting grids\n\nGrids can be nested in other grids to create complex, adaptive layouts:\n\n::::::{grid} 1 1 2 2\n:gutter: 1\n\n:::::{grid-item}\n\n::::{grid} 1 1 1 1\n:gutter: 1\n\n:::{grid-item-card} Item 1.1\n\nMulti-line\n\ncontent\n\n:::\n\n:::{grid-item-card} Item 1.2\n\nContent\n\n:::\n\n::::\n\n:::::\n\n:::::{grid-item}\n\n::::{grid} 1 1 1 1\n:gutter: 1\n\n:::{grid-item-card} Item 2.1\n\nContent\n\n:::\n\n:::{grid-item-card} Item 2.2\n\nContent\n\n:::\n\n:::{grid-item-card} Item 2.3\n\nContent\n\n:::\n\n::::\n\n:::::\n\n::::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/grid-nested.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/grid-nested.txt\n:language: rst\n```\n````\n`````\n\nSee the [Bootstrap Grid system](https://getbootstrap.com/docs/5.0/layout/grid/) for further details.\n\n## `grid` options\n\ngutter\n: Spacing between items.\n  One or four integers (for \"xs sm md lg\") between 0 and 5.\n\nmargin\n: Outer margin of grid.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto.\n\npadding\n: Inner padding of grid.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5.\n\noutline\n: Create a border around the grid.\n\nreverse\n: Reverse the order of the grid items.\n\nclass-container\n: Additional CSS classes for the grid container element.\n\nclass-row\n: Additional CSS classes for the grid row element.\n\n## `grid-item` options\n\ncolumns\n: The number of columns (out of 12) a grid-item will take up.\n  One or four integers (for \"xs sm md lg\") between 1 and 12 (or `auto` to adapt to the content).\n\nmargin\n: Outer margin of grid item.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto.\n\npadding\n: Inner padding of grid item.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5.\n\nchild-direction\n: Direction of children in the grid item: `column` (default) or `row`.\n\nchild-align\n: Alignment of children, along the `child-direction`: `start` (default), `end`, `center`, `justify` or `spaced`.\n\noutline\n: Create a border around the grid item.\n\nclass\n: Additional CSS classes for the grid item element.\n\n## `grid-item-card` options\n\ncolumns\n: The number of columns (out of 12) a grid-item will take up.\n  One or four integers (for \"xs sm md lg\") between 1 and 12 (or `auto` to adapt to the content).\n\nmargin\n: Outer margin of grid item.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto.\n\npadding\n: Inner padding of grid item.\n  One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5.\n\nclass-item\n: Additional CSS classes for the grid item element.\n\nPlus all options from [](cards:options).\n"
  },
  {
    "path": "docs/index.md",
    "content": "---\nsd_hide_title: true\n---\n\n# sphinx-design\n\n::::::{div} landing-title\n: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));\"\n\n::::{grid}\n:reverse:\n:gutter: 2 3 3 3\n:margin: 4 4 1 2\n\n:::{grid-item}\n:columns: 12 4 4 4\n\n```{image} ./_static/logo_square.svg\n:width: 200px\n:class: sd-m-auto sd-animate-grow50-rot20\n```\n:::\n\n:::{grid-item}\n:columns: 12 8 8 8\n:child-align: justify\n:class: sd-text-white sd-fs-3\n\nA sphinx extension for designing beautiful, screen-size responsive web-components.\n\n```{button-ref} get_started\n:ref-type: doc\n:outline:\n:color: white\n:class: sd-px-4 sd-fs-5\n\nGet Started\n```\n\n:::\n::::\n\n::::::\n\nConflict free CSS\n: All CSS classes are prefixed, to avoid conflicts with other frameworks.\n\nWorks without JavaScript\n: JavaScript is not required for any \"essential\" functionality.\n\nConfigurable\n: All colors can be configured using CSS variables.\n\nSupports non-HTML output formats\n: Components degrade gracefully for non-HTML formats.\n\n```{toctree}\n:hidden:\n\nget_started\n```\n\n```{toctree}\n:caption: Components\n:hidden:\n\ngrids\ncards\ndropdowns\ntabs\nbadges_buttons\nadditional\n```\n\n```{toctree}\n:caption: Styling\n:hidden:\n\ncss_variables\ncss_classes\n```\n\n```{toctree}\n:caption: Themes\n:hidden:\n\nalabaster <https://sphinx-design.readthedocs.io/en/alabaster-theme>\nsphinx-book-theme <https://sphinx-design.readthedocs.io/en/sbt-theme>\npydata-sphinx-theme <https://sphinx-design.readthedocs.io/en/pydata-theme>\nsphinx-rtd-theme <https://sphinx-design.readthedocs.io/en/rtd-theme>\nfuro <https://sphinx-design.readthedocs.io/en/furo-theme>\n```\n\n\n```{toctree}\n:caption: Development\n:hidden:\n\nchangelog\n```\n\n::::{grid} 1 2 2 3\n:margin: 4 4 0 0\n:gutter: 1\n\n:::{grid-item-card} {octicon}`table` Grids\n:link: grids\n:link-type: doc\n\nScreen size adaptable grid layouts.\n:::\n\n:::{grid-item-card} {octicon}`note` Cards\n:link: cards\n:link-type: doc\n\nFlexible and extensible content containers.\n:::\n\n:::{grid-item-card} {octicon}`chevron-down` Dropdowns\n:link: dropdowns\n:link-type: doc\n\nHide content in expandable containers.\n:::\n\n:::{grid-item-card} {octicon}`duplicate` Tabs\n:link: tabs\n:link-type: doc\n\nSynchronisable, tabbed content sets.\n:::\n\n:::{grid-item-card} {octicon}`plus-circle` Badges, Buttons & Icons\n:link: badges_buttons\n:link-type: doc\n\nRoles and directives for {bdg-primary}`badges` and other components.\n:::\n\n:::{grid-item-card} {octicon}`image` CSS Styling\n:link: css_variables\n:link-type: doc\n\nChange the default colors and other CSS.\n:::\n\n::::\n\n-----------\n\nCreated with inspiration from [Bootstrap](https://getbootstrap.com/) (v5), [Material Design](https://material.io) and [Material-UI](https://material-ui.com/) design frameworks.\n"
  },
  {
    "path": "docs/snippets/myst/article-info.txt",
    "content": "```{article-info}\n:avatar: images/ebp-logo.png\n:avatar-link: https://executablebooks.org/\n:avatar-outline: muted\n:author: Executable Books\n:date: Jul 24, 2021\n:read-time: 5 min read\n:class-container: sd-p-2 sd-outline-muted sd-rounded-1\n```\n"
  },
  {
    "path": "docs/snippets/myst/badge-basic.txt",
    "content": "{bdg}`plain badge`\n\n{bdg-primary}`primary`, {bdg-primary-line}`primary-line`\n\n{bdg-secondary}`secondary`, {bdg-secondary-line}`secondary-line`\n\n{bdg-success}`success`, {bdg-success-line}`success-line`\n\n{bdg-info}`info`, {bdg-info-line}`info-line`\n\n{bdg-warning}`warning`, {bdg-warning-line}`warning-line`\n\n{bdg-danger}`danger`, {bdg-danger-line}`danger-line`\n\n{bdg-light}`light`, {bdg-light-line}`light-line`\n\n{bdg-muted}`muted`, {bdg-muted-line}`muted-line`\n\n{bdg-dark}`dark`, {bdg-dark-line}`dark-line`\n\n{bdg-white}`white`, {bdg-white-line}`white-line`\n\n{bdg-black}`black`, {bdg-black-line}`black-line`\n"
  },
  {
    "path": "docs/snippets/myst/badge-link.txt",
    "content": "{bdg-link-primary}`https://example.com`\n\n{bdg-link-primary-line}`explicit title <https://example.com>`\n"
  },
  {
    "path": "docs/snippets/myst/button-link.txt",
    "content": "```{button-link} https://example.com\n```\n\n```{button-link} https://example.com\nButton text\n```\n\n```{button-link} https://example.com\n:color: primary\n:shadow:\n```\n\n```{button-link} https://example.com\n:color: primary\n:outline:\n```\n\n```{button-link} https://example.com\n:color: secondary\n:expand:\n```\n"
  },
  {
    "path": "docs/snippets/myst/card-basic.txt",
    "content": ":::{card} Card Title\n\nCard content\n:::\n"
  },
  {
    "path": "docs/snippets/myst/card-carousel.txt",
    "content": "::::{card-carousel} 2\n\n:::{card} card 1\ncontent\n:::\n:::{card} card 2\nLonger\n\ncontent\n:::\n:::{card} card 3\n:::\n:::{card} card 4\n:::\n:::{card} card 5\n:::\n:::{card} card 6\n:::\n::::\n"
  },
  {
    "path": "docs/snippets/myst/card-head-foot.txt",
    "content": ":::{card} Card Title\nHeader\n^^^\nCard content\n+++\nFooter\n:::\n"
  },
  {
    "path": "docs/snippets/myst/card-images.txt",
    "content": ":::::{grid} 2 3 3 4\n\n::::{grid-item}\n\n:::{card} Title\n:img-background: images/particle_background.jpg\n:class-card: sd-text-black\n:img-alt: my text\n\nText\n:::\n\n::::\n\n::::{grid-item-card} Title\n:img-top: images/particle_background.jpg\n:img-alt:\n\nHeader\n^^^\nContent\n+++\nFooter\n::::\n\n::::{grid-item-card} Title\n:img-bottom: images/particle_background.jpg\n\nHeader\n^^^\nContent\n+++\nFooter\n::::\n\n:::::\n"
  },
  {
    "path": "docs/snippets/myst/card-link.txt",
    "content": "(cards-clickable)=\n\n## Clickable cards\n\nUsing 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:\n\n:::{card} Clickable Card (external)\n:link: https://example.com\n\nThe entire card can be clicked to navigate to <https://example.com>.\n:::\n\n:::{card} Clickable Card (external)\n:link: https://example.com\n:link-alt: example.com\n\nThe entire card can be clicked to navigate to <https://example.com>.\n:::\n\n:::{card} Clickable Card (internal)\n:link: cards-clickable\n:link-type: ref\n\nThe entire card can be clicked to navigate to the `cards-clickable` reference target.\n:::\n\n:::{card} Clickable Card (internal)\n:link: cards-clickable\n:link-type: ref\n:link-alt: clickable cards\n\nThe entire card can be clicked to navigate to the `cards-clickable` reference target.\n:::\n"
  },
  {
    "path": "docs/snippets/myst/card-title-link.txt",
    "content": "(target)=\n:::{card} Card Title <https://example.com> {ref}`link <target>`\n\nCard content\n:::\n"
  },
  {
    "path": "docs/snippets/myst/div-basic.txt",
    "content": ":::{div} sd-text-center sd-font-italic sd-text-primary\nSome CSS styled text\n:::\n"
  },
  {
    "path": "docs/snippets/myst/dropdown-basic.txt",
    "content": ":::{dropdown}\nDropdown content\n:::\n\n:::{dropdown} Dropdown title\nDropdown content\n:::\n\n:::{dropdown} Open dropdown\n:open:\n\nDropdown content\n:::\n"
  },
  {
    "path": "docs/snippets/myst/dropdown-options.txt",
    "content": ":::{dropdown} Title\n:name: target\n:color: info\n:icon: alert\n:margin: 1\n:class-container: class-container\n:class-title: class-title\n:class-body: class-body\n\nDropdown content\n:::\n\n{ref}`target`, {ref}`text <target>`\n"
  },
  {
    "path": "docs/snippets/myst/grid-basic.txt",
    "content": "::::{grid} 1 2 3 4\n:outline:\n\n:::{grid-item}\nA\n:::\n:::{grid-item}\nB\n:::\n:::{grid-item}\nC\n:::\n:::{grid-item}\nD\n:::\n::::\n"
  },
  {
    "path": "docs/snippets/myst/grid-card-columns.txt",
    "content": "::::{grid} 2\n:::{grid-item-card}\n:columns: auto\n\nA\n:::\n:::{grid-item-card}\n:columns: 12 6 6 6\n\nB\n:::\n:::{grid-item-card}\n:columns: 12\n\nC\n:::\n::::\n"
  },
  {
    "path": "docs/snippets/myst/grid-card.txt",
    "content": "::::{grid} 2\n:::{grid-item-card}  Title 1\nA\n:::\n:::{grid-item-card}  Title 2\nB\n:::\n::::\n"
  },
  {
    "path": "docs/snippets/myst/grid-gutter.txt",
    "content": "::::{grid} 2\n:gutter: 1\n\n:::{grid-item-card}\nA\n:::\n:::{grid-item-card}\nB\n:::\n::::\n\n::::{grid} 2\n:gutter: 3 3 4 5\n\n:::{grid-item-card}\nA\n:::\n:::{grid-item-card}\nB\n:::\n::::\n"
  },
  {
    "path": "docs/snippets/myst/grid-nested.txt",
    "content": "::::::{grid} 1 1 2 2\n:gutter: 1\n\n:::::{grid-item}\n\n::::{grid} 1 1 1 1\n:gutter: 1\n\n:::{grid-item-card} Item 1.1\n\nMulti-line\n\ncontent\n\n:::\n\n:::{grid-item-card} Item 1.2\n\nContent\n\n:::\n\n::::\n\n:::::\n\n:::::{grid-item}\n\n::::{grid} 1 1 1 1\n:gutter: 1\n\n:::{grid-item-card} Item 2.1\n\nContent\n\n:::\n\n:::{grid-item-card} Item 2.2\n\nContent\n\n:::\n\n:::{grid-item-card} Item 2.3\n\nContent\n\n:::\n\n::::\n\n:::::\n\n::::::\n"
  },
  {
    "path": "docs/snippets/myst/icon-fontawesome.txt",
    "content": "An icon {fas}`spinner;sd-bg-primary sd-bg-text-primary`, some more text.\n"
  },
  {
    "path": "docs/snippets/myst/icon-material-design.txt",
    "content": "- A regular icon: {material-regular}`data_exploration;2em`, some more text\n- A coloured regular icon: {material-regular}`settings;3em;sd-text-success`, some more text.\n- A coloured outline icon: {material-outlined}`settings;3em;sd-text-success`, some more text.\n- A coloured sharp icon: {material-sharp}`settings;3em;sd-text-success`, some more text.\n- A coloured round icon: {material-round}`settings;3em;sd-text-success`, some more text.\n- A coloured two-tone icon: {material-twotone}`settings;3em;sd-text-success`, some more text.\n- A fixed size icon: {material-regular}`data_exploration;24px`, some more text.\n"
  },
  {
    "path": "docs/snippets/myst/icon-octicon.txt",
    "content": "A coloured icon: {octicon}`report;1em;sd-text-info`, some more text.\n"
  },
  {
    "path": "docs/snippets/myst/tab-basic.txt",
    "content": "::::{tab-set}\n\n:::{tab-item} Label1\nContent 1\n:::\n\n:::{tab-item} Label2\nContent 2\n:::\n\n::::\n"
  },
  {
    "path": "docs/snippets/myst/tab-code-set.txt",
    "content": "````{tab-set-code}\n\n```{literalinclude} ./snippet.py\n:language: python\n```\n\n```{code-block} javascript\na = 1;\n```\n\n````\n"
  },
  {
    "path": "docs/snippets/myst/tab-options.txt",
    "content": "::::{tab-set}\n:class: class-set\n\n:::{tab-item} **Label**\n:name: target\n:selected:\n:class-container: class-container\n:class-label: class-label\n:class-content: class-content\n\nContent\n:::\n\n::::\n\n{ref}`target`, {ref}`text <target>`\n"
  },
  {
    "path": "docs/snippets/myst/tab-sync.txt",
    "content": "::::{tab-set}\n:sync-group: category\n\n:::{tab-item} Label1\n:sync: key1\n\nContent 1\n:::\n\n:::{tab-item} Label2\n:sync: key2\n\nContent 2\n:::\n\n::::\n\n::::{tab-set}\n:sync-group: category\n\n:::{tab-item} Label1\n:sync: key1\n\nContent 1\n:::\n\n:::{tab-item} Label2\n:sync: key2\n\nContent 2\n:::\n\n::::\n"
  },
  {
    "path": "docs/snippets/rst/article-info.txt",
    "content": ".. article-info::\n    :avatar: images/ebp-logo.png\n    :avatar-link: https://executablebooks.org/\n    :avatar-outline: muted\n    :author: Executable Books\n    :date: Jul 24, 2021\n    :read-time: 5 min read\n    :class-container: sd-p-2 sd-outline-muted sd-rounded-1\n"
  },
  {
    "path": "docs/snippets/rst/badge-basic.txt",
    "content": ":bdg:`plain badge`\n\n:bdg-primary:`primary`, :bdg-primary-line:`primary-line`\n\n:bdg-secondary:`secondary`, :bdg-secondary-line:`secondary-line`\n\n:bdg-success:`success`, :bdg-success-line:`success-line`\n\n:bdg-info:`info`, :bdg-info-line:`info-line`\n\n:bdg-warning:`warning`, :bdg-warning-line:`warning-line`\n\n:bdg-danger:`danger`, :bdg-danger-line:`danger-line`\n\n:bdg-light:`light`, :bdg-light-line:`light-line`\n\n:bdg-muted:`muted`, :bdg-muted-line:`muted-line`\n\n:bdg-dark:`dark`, :bdg-dark-line:`dark-line`\n\n:bdg-white:`white`, :bdg-white-line:`white-line`\n\n:bdg-black:`black`, :bdg-black-line:`black-line`\n"
  },
  {
    "path": "docs/snippets/rst/badge-link.txt",
    "content": ":bdg-link-primary:`https://example.com`\n\n:bdg-link-primary-line:`explicit title <https://example.com>`\n"
  },
  {
    "path": "docs/snippets/rst/button-link.txt",
    "content": ".. button-link:: https://example.com\n\n.. button-link:: https://example.com\n\n    Button text\n\n.. button-link:: https://example.com\n    :color: primary\n    :shadow:\n\n.. button-link:: https://example.com\n    :color: primary\n    :outline:\n\n.. button-link:: https://example.com\n    :color: secondary\n    :expand:\n"
  },
  {
    "path": "docs/snippets/rst/card-basic.txt",
    "content": ".. card:: Card Title\n\n    Card content\n"
  },
  {
    "path": "docs/snippets/rst/card-carousel.txt",
    "content": ".. card-carousel:: 2\n\n    .. card:: card 1\n\n        content\n\n    .. card:: card 2\n\n        Longer\n\n        content\n\n    .. card:: card 3\n\n    .. card:: card 4\n\n    .. card:: card 5\n\n    .. card:: card 6\n"
  },
  {
    "path": "docs/snippets/rst/card-head-foot.txt",
    "content": ".. card:: Card Title\n\n    Header\n    ^^^\n    Card content\n    +++\n    Footer\n"
  },
  {
    "path": "docs/snippets/rst/card-images.txt",
    "content": ".. grid:: 2 3 3 4\n\n    .. grid-item::\n\n        .. card:: Title\n            :img-background: images/particle_background.jpg\n            :class-card: sd-text-black\n            :img-alt: my text\n\n            Text\n\n    .. grid-item-card:: Title\n        :img-top: images/particle_background.jpg\n        :img-alt:\n\n        Header\n        ^^^\n        Content\n        +++\n        Footer\n\n    .. grid-item-card:: Title\n        :img-bottom: images/particle_background.jpg\n\n        Header\n        ^^^\n        Content\n        +++\n        Footer\n"
  },
  {
    "path": "docs/snippets/rst/card-link.txt",
    "content": ".. _cards-clickable:\n\nClickable cards\n...............\n\nUsing 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:\n\n.. card:: Clickable Card (external)\n    :link: https://example.com\n\n    The entire card can be clicked to navigate to https://example.com.\n\n.. card:: Clickable Card (external)\n    :link: https://example.com\n    :link-alt: example.com\n\n    The entire card can be clicked to navigate to https://example.com.\n\n.. card:: Clickable Card (internal)\n    :link: cards-clickable\n    :link-type: ref\n\n    The entire card can be clicked to navigate to the ``cards-clickable`` reference target.\n\n.. card:: Clickable Card (internal)\n    :link: cards-clickable\n    :link-type: ref\n    :link-alt: clickable cards\n\n    The entire card can be clicked to navigate to the ``cards-clickable`` reference target.\n"
  },
  {
    "path": "docs/snippets/rst/card-title-link.txt",
    "content": ".. _target:\n.. card:: Card Title https://example.com :ref:`link <target>`\n\n    Card content\n"
  },
  {
    "path": "docs/snippets/rst/div-basic.txt",
    "content": ".. div:: sd-text-center sd-font-italic sd-text-primary\n\n    Some CSS styled text\n"
  },
  {
    "path": "docs/snippets/rst/dropdown-basic.txt",
    "content": ".. dropdown::\n\n    Dropdown content\n\n.. dropdown:: Dropdown title\n\n    Dropdown content\n\n.. dropdown:: Open dropdown\n    :open:\n\n    Dropdown content\n"
  },
  {
    "path": "docs/snippets/rst/dropdown-options.txt",
    "content": ".. dropdown:: Title\n    :name: target\n    :color: info\n    :icon: alert\n    :margin: 1\n    :class-container: class-container\n    :class-title: class-title\n    :class-body: class-body\n\n    Dropdown content\n\n:ref:`target`, :ref:`text <target>`\n"
  },
  {
    "path": "docs/snippets/rst/grid-basic.txt",
    "content": ".. grid:: 1 2 3 4\n    :outline:\n\n    .. grid-item::\n\n        A\n\n    .. grid-item::\n\n        B\n\n    .. grid-item::\n\n        C\n\n    .. grid-item::\n\n        D\n"
  },
  {
    "path": "docs/snippets/rst/grid-card-columns.txt",
    "content": ".. grid:: 2\n\n    .. grid-item-card::\n        :columns: auto\n\n        A\n\n    .. grid-item-card::\n        :columns: 12 6 6 6\n\n        B\n\n    .. grid-item-card::\n        :columns: 12\n\n        C\n"
  },
  {
    "path": "docs/snippets/rst/grid-card.txt",
    "content": ".. grid:: 2\n\n    .. grid-item-card::  Title 1\n\n        A\n\n    .. grid-item-card::  Title 2\n\n        B\n"
  },
  {
    "path": "docs/snippets/rst/grid-gutter.txt",
    "content": ".. grid:: 2\n    :gutter: 1\n\n    .. grid-item-card::\n\n        A\n\n    .. grid-item-card::\n\n        B\n\n.. grid:: 2\n    :gutter: 3 3 4 5\n\n    .. grid-item-card::\n\n        A\n\n    .. grid-item-card::\n\n        B\n"
  },
  {
    "path": "docs/snippets/rst/grid-nested.txt",
    "content": ".. grid:: 1 1 2 2\n    :gutter: 1\n\n    .. grid-item::\n\n        .. grid:: 1 1 1 1\n            :gutter: 1\n\n            .. grid-item-card:: Item 1.1\n\n                Multi-line\n\n                content\n\n            .. grid-item-card:: Item 1.2\n\n                Content\n\n    .. grid-item::\n\n        .. grid:: 1 1 1 1\n            :gutter: 1\n\n            .. grid-item-card:: Item 2.1\n\n                Content\n\n            .. grid-item-card:: Item 2.2\n\n                Content\n\n            .. grid-item-card:: Item 2.3\n\n                Content\n"
  },
  {
    "path": "docs/snippets/rst/icon-fontawesome.txt",
    "content": "An icon :fas:`spinner;sd-bg-primary sd-bg-text-primary`, some more text.\n"
  },
  {
    "path": "docs/snippets/rst/icon-material-design.txt",
    "content": "- A regular icon: :material-regular:`data_exploration;2em`, some more text\n- A coloured regular icon: :material-regular:`settings;3em;sd-text-success`, some more text.\n- A coloured outline icon: :material-outlined:`settings;3em;sd-text-success`, some more text.\n- A coloured sharp icon: :material-sharp:`settings;3em;sd-text-success`, some more text.\n- A coloured round icon: :material-round:`settings;3em;sd-text-success`, some more text.\n- A coloured two-tone icon: :material-twotone:`settings;3em;sd-text-success`, some more text.\n- A fixed size icon: :material-regular:`data_exploration;24px`, some more text.\n"
  },
  {
    "path": "docs/snippets/rst/icon-octicon.txt",
    "content": "A coloured icon: :octicon:`report;1em;sd-text-info`, some more text.\n"
  },
  {
    "path": "docs/snippets/rst/tab-basic.txt",
    "content": ".. tab-set::\n\n    .. tab-item:: Label1\n\n        Content 1\n\n    .. tab-item:: Label2\n\n        Content 2\n"
  },
  {
    "path": "docs/snippets/rst/tab-code-set.txt",
    "content": ".. tab-set-code::\n\n    .. literalinclude:: ./snippet.py\n        :language: python\n\n    .. code-block:: javascript\n\n        a = 1;\n"
  },
  {
    "path": "docs/snippets/rst/tab-options.txt",
    "content": ".. tab-set::\n    :class: class-set\n\n    .. tab-item:: **Label**\n        :name: target\n        :selected:\n        :class-container: class-container\n        :class-label: class-label\n        :class-content: class-content\n\n        Content\n\n:ref:`target`, :ref:`text <target>`\n"
  },
  {
    "path": "docs/snippets/rst/tab-sync.txt",
    "content": ".. tab-set::\n    :sync-group: category\n\n    .. tab-item:: Label1\n        :sync: key1\n\n        Content 1\n\n    .. tab-item:: Label2\n        :sync: key2\n\n        Content 2\n\n.. tab-set::\n    :sync-group: category\n\n    .. tab-item:: Label1\n        :sync: key1\n\n        Content 1\n\n    .. tab-item:: Label2\n        :sync: key2\n\n        Content 2\n"
  },
  {
    "path": "docs/tabs.md",
    "content": "(sd-tabs)=\n\n# Tabs\n\nTabs organize and allow navigation between groups of content that are related and at the same level of hierarchy.\nEach tab should contain content that is distinct from other tabs in a set.\n\n::::{tab-set}\n\n:::{tab-item} Label1\nContent 1\n:::\n\n:::{tab-item} Label2\nContent 2\n:::\n\n::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/tab-basic.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/tab-basic.txt\n:language: rst\n```\n````\n`````\n\nSee the [Material Design](https://material.io/components/tabs) description for further details.\n\n## Synchronised Tabs\n\nThe Selection of tab items can be synchronised across multiple tab-sets.\nFor a `tab-item` to be synchronisable, add the `sync` option to the `tab-item` directive with a key unique to that set.\nNow when you select a tab in one set, tabs in other sets with the same key will be selected.\n\n:::{note}\nSynchronisation requires that JavaScript is enabled.\n:::\n\n:::{versionadded} 0.6.0\nTo 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`.\n\nYou can also add an [HTML query string](https://en.wikipedia.org/wiki/Query_string) to the end of the page's URL,\nto automatically select a tab with a specific key across all tab-sets of the group, for example:\n\n- [`?category=key1#synchronised-tabs`](?category=key1#synchronised-tabs){.external}\n- [`?category=key2#synchronised-tabs`](?category=key2#synchronised-tabs){.external}\n:::\n\n::::{tab-set}\n:sync-group: category\n\n:::{tab-item} Label1\n:sync: key1\n\nContent 1\n:::\n\n:::{tab-item} Label2\n:sync: key2\n\nContent 2\n:::\n\n::::\n\n::::{tab-set}\n:sync-group: category\n\n:::{tab-item} Label1\n:sync: key1\n\nContent 1\n:::\n\n:::{tab-item} Label2\n:sync: key2\n\nContent 2\n:::\n\n::::\n\n`````{dropdown-syntax}\n\n````{tab-set-code}\n```{literalinclude} ./snippets/myst/tab-sync.txt\n:language: markdown\n```\n```{literalinclude} ./snippets/rst/tab-sync.txt\n:language: rst\n```\n````\n`````\n\n## Tabbed code examples\n\nThe `tab-set-code` directive provides a shorthand for synced code examples.\nYou 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`.\nTabs will be labelled and synchronised by the `language` attribute (in upper-case).\n\n:::{versionadded} 0.6.0\nYou can also add an [HTML query string](https://en.wikipedia.org/wiki/Query_string) to the end of the page's URL,\nto automatically select a tab with a specific code across all tab-sets of the group, for example:\n\n- [`?code=markdown#tabbed-code-examples`](?code=markdown#tabbed-code-examples){.external}\n- [`?code=rst#tabbed-code-examples`](?code=rst#tabbed-code-examples){.external}\n:::\n\n```````{tab-set}\n:sync-group: code\n\n``````{tab-item} Markdown\n:sync: markdown\n\n````{literalinclude} ./snippets/myst/tab-code-set.txt\n:language: markdown\n````\n``````\n\n``````{tab-item} RST\n:sync: rst\n\n````{literalinclude} ./snippets/rst/tab-code-set.txt\n:language: rst\n````\n``````\n\n```````\n\n## Tabs in other components\n\nTabs can be nested inside other components, such as inside [dropdowns](./dropdowns.md) or within [grid items](./grids.md).\n\n:::::{dropdown} Tabs in dropdown\n:open:\n\nParagraph\n\n::::{tab-set}\n\n:::{tab-item} Label1\n:sync: label-1\n\nContent 1\n:::\n\n:::{tab-item} Label2\n:sync: label-2\n\nContent 2\n:::\n\n::::\n:::::\n\n::::::{grid} 1 1 2 2\n\n:::::{grid-item}\n:outline:\n\nInitial paragraph\n\n::::{tab-set}\n\n:::{tab-item} Label1\n:sync: label-1\n\nContent 1\n:::\n\n:::{tab-item} Label2\n:sync: label-2\n\nContent 2\n:::\n\n::::\n\n:::::\n\n:::::{grid-item}\n:outline:\n\n::::{tab-set}\n\n:::{tab-item} Label1\n:sync: label-1\n\nContent 1\n:::\n\n:::{tab-item} Label2\n:sync: label-2\n\nContent 2\n:::\n\n::::\n\nEnding paragraph\n\n:::::\n\n::::::\n\nTab set, within tab set:\n\n::::::{tab-set}\n:::::{tab-item} Label 1\n::::{tab-set}\n:::{tab-item} Label 1a\nContent 1a\n:::\n:::{tab-item} Label 1b\nContent 1b\n:::\n::::\n:::::\n:::::{tab-item} Label 2\nContent 2\n:::::\n::::::\n\n## `tab-set` options\n\nsync-group\n: A group name for synchronised tab sets (default `tab`).\n\nclass\n: Additional CSS classes for the container element.\n\n## `tab-set-code` options\n\nno-sync\n: Disable synchronisation of tabs.\n\nsync-group\n: A group name for synchronised tab sets (default `code`).\n\nclass-set\n: Additional CSS classes for the set container element.\n\nclass-item\n: Additional CSS classes for the item container element.\n\n## `tab-item` options\n\nselected\n: a flag indicating whether the tab should be selected by default.\n\nsync\n: A key that is used to sync the selected tab across multiple tab-sets.\n\nname\n: Set a reference-able name for the dropdown container.\n\nclass-container\n: Additional CSS classes for the container element.\n\nclass-label\n: Additional CSS classes for the label element.\n\nclass-content\n: Additional CSS classes for the content element.\n"
  },
  {
    "path": "git_rebase_theme_branches.sh",
    "content": "#!/bin/sh\n\nset -e\n\nfmt='\ngit checkout %(refname)\ngit rebase main\ngit push origin HEAD:%(refname:strip=3) --force\n'\n\neval \"$(git for-each-ref --shell --format=\"$fmt\" refs/remotes/origin/*-theme)\"\n\ngit checkout main\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"sphinx-design-compiler\",\n  \"version\": \"0.0.1\",\n  \"description\": \"Scripts for compiling the sphinx-design assets\",\n  \"scripts\": {\n    \"css\": \"sass --style=compressed --no-source-map style/index.scss sphinx_design/compiled/style.min.css\"\n  },\n  \"dependencies\": {\n    \"sass\": \"^1.35.2\"\n  }\n}\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[build-system]\nrequires = [\"flit_core >=3.4,<4\"]\nbuild-backend = \"flit_core.buildapi\"\n\n[project]\nname = \"sphinx_design\"\ndynamic = [\"version\"]\ndescription = \"A sphinx extension for designing beautiful, view size responsive web components.\"\nauthors = [{name = \"Chris Sewell\", email = \"chrisj_sewell@hotmail.com\"}]\nreadme = \"README.md\"\nlicense = {file = \"LICENSE\"}\nclassifiers = [\n    \"Development Status :: 4 - Beta\",\n    \"Framework :: Sphinx :: Extension\",\n    \"Intended Audience :: Developers\",\n    \"License :: OSI Approved :: MIT License\",\n    \"Programming Language :: Python :: 3\",\n    \"Programming Language :: Python :: 3.11\",\n    \"Programming Language :: Python :: 3.12\",\n    \"Programming Language :: Python :: 3.13\",\n    \"Programming Language :: Python :: 3.14\",\n    \"Programming Language :: Python :: Implementation :: CPython\",\n    \"Topic :: Software Development :: Libraries :: Python Modules\",\n    \"Topic :: Text Processing :: Markup\",\n    \"Topic :: Text Processing :: Markup :: Markdown\",\n    \"Topic :: Text Processing :: Markup :: reStructuredText\",\n]\nkeywords = [\"sphinx\", \"extension\", \"material design\", \"web components\"]\nrequires-python = \">=3.11\"\ndependencies = [\"sphinx>=7,<10\"]\n\n[project.urls]\nHomepage = \"https://github.com/executablebooks/sphinx-design\"\nDocumentation = \"https://sphinx-design.readthedocs.io\"\n\n[project.optional-dependencies]\ncode-style = [\"pre-commit>=3,<4\"]\nrtd = [\"myst-parser>=4,<6\"]\ntesting = [\n    \"myst-parser>=4,<6\",\n    \"pytest~=8.3\",\n    \"pytest-cov\",\n    \"pytest-regressions\",\n    \"defusedxml\",\n]\ntesting-no-myst = [\n    \"pytest~=8.3\",\n    \"pytest-cov\",\n    \"pytest-regressions\",\n    \"defusedxml\",\n]\n\ntheme-furo = [\"furo~=2024.7.18\"]\ntheme-pydata = [\"pydata-sphinx-theme~=0.15.2\"]\ntheme-rtd = [\"sphinx-rtd-theme~=2.0\"]\ntheme-sbt = [\"sphinx-book-theme~=1.1\"]\ntheme-im = [\"sphinx-immaterial~=0.12.2\"]\n\n[dependency-groups]\nmypy = [\"mypy==1.19.1\"]\nruff = [\"ruff==0.14.11\"]\n\n[tool.flit.sdist]\nexclude = [\n    \"docs/\",\n    \"style/\",\n    \"tests/\",\n]\n\n[tool.ruff.lint]\nextend-select = [\n    \"B\",   # flake8-bugbear\n    \"C4\",  # flake8-comprehensions\n    # \"FURB\",# refurb (modernising code)\n    \"I\",   # isort\n    \"ICN\", # flake8-import-conventions\n    \"ISC\", # flake8-implicit-str-concat\n    \"N\",   # pep8-naming\n    \"PERF\",# perflint (performance anti-patterns)\n    \"PGH\", # pygrep-hooks\n    \"PIE\", # flake8-pie\n    \"PL\",  # pylint\n    \"PTH\", # flake8-use-pathlib\n    \"RUF\", # Ruff-specific rules\n    \"SIM\", # flake8-simplify\n    \"UP\",  # pyupgrade\n    \"T20\", # flake8-print\n]\nextend-ignore = [\n    \"ISC001\",    # implicit-str-concat\n    \"PLR2004\",\n    \"RUF012\",\n]\n\n# [tool.ruff.lint.per-file-ignores]\n# \"...\" = [\"N801\"]\n\n[tool.ruff.lint.isort]\nforce-sort-within-sections = true\n\n[tool.mypy]\nshow_error_codes = true\nwarn_unused_ignores = true\nwarn_redundant_casts = true\nno_implicit_optional = true\nstrict_equality = true\n\n[[tool.mypy.overrides]]\nmodule = [\"docutils.*\"]\nignore_missing_imports = true\n"
  },
  {
    "path": "sphinx_design/__init__.py",
    "content": "\"\"\"A sphinx extension for designing beautiful, view size responsive web components.\"\"\"\n\nfrom typing import TYPE_CHECKING\n\n__version__ = \"0.7.0\"\n\nif TYPE_CHECKING:\n    from sphinx.application import Sphinx\n\n\ndef setup(app: \"Sphinx\") -> dict:\n    from .extension import setup_extension  # noqa: PLC0415\n\n    setup_extension(app)\n    return {\n        \"version\": __version__,\n        \"parallel_read_safe\": True,\n        \"parallel_write_safe\": True,\n    }\n"
  },
  {
    "path": "sphinx_design/_compat.py",
    "content": "\"\"\"Helpers for cross compatibility across dependency versions.\"\"\"\n\nfrom collections.abc import Callable, Iterable\nfrom importlib import resources\n\nfrom docutils.nodes import Element\n\n\ndef findall(node: Element) -> Callable[..., Iterable[Element]]:\n    \"\"\"Iterate through\"\"\"\n    # findall replaces traverse in docutils v0.18\n    # note a difference is that findall is an iterator\n    return getattr(node, \"findall\", node.traverse)\n\n\ndef read_text(module: resources.Package, filename: str) -> str:\n    return resources.files(module).joinpath(filename).read_text()\n"
  },
  {
    "path": "sphinx_design/article_info.py",
    "content": "from docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx.application import Sphinx\n\nfrom .icons import get_octicon\nfrom .shared import SEMANTIC_COLORS, SdDirective, create_component, make_choice\n\n\ndef setup_article_info(app: Sphinx):\n    \"\"\"Setup the article information components.\"\"\"\n    app.add_directive(\"article-info\", ArticleInfoDirective)\n\n\nclass ArticleInfoDirective(SdDirective):\n    \"\"\" \"\"\"\n\n    has_content = False\n    required_arguments = 0\n    optional_arguments = 0\n    option_spec = {\n        \"avatar\": directives.uri,\n        \"avatar-alt\": directives.unchanged,\n        \"avatar-link\": directives.uri,\n        \"avatar-outline\": make_choice(SEMANTIC_COLORS),\n        \"author\": directives.unchanged_required,\n        \"date\": directives.unchanged_required,\n        \"read-time\": directives.unchanged_required,\n        \"class-container\": directives.class_option,\n        \"class-avatar\": directives.class_option,\n    }\n\n    def _parse_text(\n        self, text: str, icon: nodes.Node | None = None, parse: bool = False\n    ) -> nodes.Node:\n        \"\"\"Parse the text.\"\"\"\n        if not parse:\n            output = ([icon] if icon else []) + [nodes.Text(text)]\n        else:\n            text_nodes, _ = self.state.inline_text(text, self.lineno)\n            text_nodes = ([icon] if icon else []) + text_nodes\n            # note certain nodes (like references) need to be nested in a TextElement node\n            # (e.g. a pargraph)\n            para = nodes.paragraph(\"\", \"\", *text_nodes, classes=[\"sd-p-0\", \"sd-m-0\"])\n            self.set_source_info(para)\n            output = [para]\n        return output\n\n    def run_with_defaults(self) -> list[nodes.Node]:  # noqa: PLR0915\n        parse_fields = True  # parse field text\n\n        top_grid = create_component(\n            \"grid-container\",\n            [\n                \"sd-container-fluid\",\n                \"sd-sphinx-override\",\n                \"sd-p-0\",\n                \"sd-mt-2\",\n                \"sd-mb-4\",\n                *self.options.get(\"class-container\", []),\n            ],\n        )\n        self.set_source_info(top_grid)\n\n        top_row = create_component(\n            \"grid-row\",\n            [\"sd-row\", \"sd-row-cols-2\", \"sd-gx-2\", \"sd-gy-1\"],\n        )\n        self.set_source_info(top_row)\n        top_grid += top_row\n\n        avatar_uri = self.options.get(\"avatar\")\n        if avatar_uri:\n            # TODO only in html (hide in latex)\n            avatar_column = create_component(\n                \"grid-item\",\n                [\"sd-col\", \"sd-col-auto\", \"sd-d-flex-row\", \"sd-align-minor-center\"],\n            )\n            self.set_source_info(avatar_column)\n            avatar_classes = [\"sd-avatar-sm\"]\n            if \"avatar-outline\" in self.options:\n                avatar_classes.append(f\"sd-outline-{self.options['avatar-outline']}\")\n            if \"class-avatar\" in self.options:\n                avatar_classes += self.options[\"class-avatar\"]\n            avatar_image = nodes.image(\n                \"\",\n                uri=avatar_uri,\n                alt=self.options.get(\"avatar-alt\", \"\"),\n                classes=avatar_classes,\n            )\n            self.set_source_info(avatar_image)\n            if self.options.get(\"avatar-link\"):\n                avatar_link = nodes.reference(\n                    \"\", \"\", refuri=self.options.get(\"avatar-link\")\n                )\n                avatar_link += avatar_image\n                avatar_image = avatar_link\n            avatar_column += avatar_image\n            top_row += avatar_column\n\n        info_column = create_component(\n            \"grid-item\",\n            [\"sd-col\", \"sd-d-flex-row\", \"sd-align-minor-center\"],\n        )\n        self.set_source_info(info_column)\n        top_row += info_column\n\n        info_grid = create_component(\n            \"grid-container\",\n            [\n                \"sd-container-fluid\",\n                \"sd-sphinx-override\",\n            ],\n        )\n        self.set_source_info(info_grid)\n        info_column += info_grid\n\n        info_row = create_component(\n            \"grid-row\",\n            [\n                \"sd-row\",\n                \"sd-row-cols-2\",\n                \"sd-row-cols-xs-2\",\n                \"sd-row-cols-sm-3\",\n                \"sd-row-cols-md-3\",\n                \"sd-row-cols-lg-3\",\n                \"sd-gx-3\",\n                \"sd-gy-1\",\n            ],\n        )\n        self.set_source_info(info_row)\n        info_grid += info_row\n\n        author_text = self.options.get(\"author\")\n        if author_text:\n            author_column = create_component(\n                \"grid-item\",\n                [\"sd-col\", \"sd-col-auto\", \"sd-d-flex-row\", \"sd-align-minor-center\"],\n            )\n            self.set_source_info(author_column)\n            author_nodes = self._parse_text(author_text, parse=parse_fields)\n            author_column.extend(author_nodes)\n            info_row += author_column\n\n        date_text = self.options.get(\"date\")\n        if date_text:\n            date_column = create_component(\n                \"grid-item\",\n                [\"sd-col\", \"sd-col-auto\", \"sd-d-flex-row\", \"sd-align-minor-center\"],\n            )\n            self.set_source_info(date_column)\n            date_icon = nodes.raw(\n                \"\",\n                nodes.Text(get_octicon(\"calendar\", height=\"16px\")),\n                classes=[\"sd-pr-2\"],\n                format=\"html\",\n            )\n            date_nodes = self._parse_text(date_text, icon=date_icon, parse=parse_fields)\n            date_column.extend(date_nodes)\n            info_row += date_column\n\n        read_time_text = self.options.get(\"read-time\")\n        if read_time_text:\n            read_time_column = create_component(\n                \"grid-item\",\n                [\"sd-col\", \"sd-col-auto\", \"sd-d-flex-row\", \"sd-align-minor-center\"],\n            )\n            self.set_source_info(read_time_column)\n            read_time_icon = nodes.raw(\n                \"\",\n                nodes.Text(get_octicon(\"clock\", height=\"16px\")),\n                classes=[\"sd-pr-2\"],\n                format=\"html\",\n            )\n            read_time_nodes = self._parse_text(\n                read_time_text, icon=read_time_icon, parse=parse_fields\n            )\n            read_time_column.extend(read_time_nodes)\n            info_row += read_time_column\n\n        return [top_grid]\n"
  },
  {
    "path": "sphinx_design/badges_buttons.py",
    "content": "from docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx import addnodes\nfrom sphinx.application import Sphinx\nfrom sphinx.util.docutils import ReferenceRole, SphinxRole\n\nfrom sphinx_design.shared import SEMANTIC_COLORS, SdDirective, make_choice, text_align\n\nROLE_NAME_BADGE_PREFIX = \"bdg\"\nROLE_NAME_LINK_PREFIX = \"bdg-link\"\nROLE_NAME_REF_PREFIX = \"bdg-ref\"\nDIRECTIVE_NAME_BUTTON_LINK = \"button-link\"\nDIRECTIVE_NAME_BUTTON_REF = \"button-ref\"\n\n# TODO defining arbitrary classes for badges\n# (maybe split text right of last `;`, then split that by comma)\n# in particular for rounded-pill class etc\n\n\ndef setup_badges_and_buttons(app: Sphinx) -> None:\n    \"\"\"Setup the badge components.\"\"\"\n    app.add_role(ROLE_NAME_BADGE_PREFIX, BadgeRole())\n    app.add_role(ROLE_NAME_LINK_PREFIX, LinkBadgeRole())\n    app.add_role(ROLE_NAME_REF_PREFIX, XRefBadgeRole())\n    for color in SEMANTIC_COLORS:\n        app.add_role(\"-\".join((ROLE_NAME_BADGE_PREFIX, color)), BadgeRole(color))\n        app.add_role(\n            \"-\".join((ROLE_NAME_BADGE_PREFIX, color, \"line\")),\n            BadgeRole(color, outline=True),\n        )\n        app.add_role(\"-\".join((ROLE_NAME_LINK_PREFIX, color)), LinkBadgeRole(color))\n        app.add_role(\n            \"-\".join((ROLE_NAME_LINK_PREFIX, color, \"line\")),\n            LinkBadgeRole(color, outline=True),\n        )\n        app.add_role(\"-\".join((ROLE_NAME_REF_PREFIX, color)), XRefBadgeRole(color))\n        app.add_role(\n            \"-\".join((ROLE_NAME_REF_PREFIX, color, \"line\")),\n            XRefBadgeRole(color, outline=True),\n        )\n\n    app.add_directive(DIRECTIVE_NAME_BUTTON_LINK, ButtonLinkDirective)\n    app.add_directive(DIRECTIVE_NAME_BUTTON_REF, ButtonRefDirective)\n\n\ndef create_bdg_classes(color: str | None, outline: bool) -> list[str]:\n    \"\"\"Create the badge classes.\"\"\"\n    classes = [\n        \"sd-sphinx-override\",\n        \"sd-badge\",\n    ]\n    if color is None:\n        return classes\n    if outline:\n        classes.extend([f\"sd-outline-{color}\", f\"sd-text-{color}\"])\n    else:\n        classes.extend([f\"sd-bg-{color}\", f\"sd-bg-text-{color}\"])\n    return classes\n\n\nclass BadgeRole(SphinxRole):\n    \"\"\"Role to display a badge.\"\"\"\n\n    def __init__(self, color: str | None = None, *, outline: bool = False) -> None:\n        super().__init__()\n        self.color = color\n        self.outline = outline\n\n    def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]:\n        \"\"\"Run the role.\"\"\"\n        node = nodes.inline(\n            self.rawtext,\n            self.text,\n            classes=create_bdg_classes(self.color, self.outline),\n        )\n        self.set_source_info(node)\n        return [node], []\n\n\nclass LinkBadgeRole(ReferenceRole):\n    \"\"\"Role to display a badge with an external link.\"\"\"\n\n    def __init__(self, color: str | None = None, *, outline: bool = False) -> None:\n        super().__init__()\n        self.color = color\n        self.outline = outline\n\n    def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]:\n        \"\"\"Run the role.\"\"\"\n        node = nodes.reference(\n            self.rawtext,\n            refuri=self.target,\n            classes=create_bdg_classes(self.color, self.outline),\n        )\n        # TODO open in new tab\n        self.set_source_info(node)\n        # if self.target != self.title:\n        #     node[\"reftitle\"] = self.target\n        node += nodes.inline(self.title, self.title)\n        return [node], []\n\n\nclass XRefBadgeRole(ReferenceRole):\n    \"\"\"Role to display a badge with an internal link.\"\"\"\n\n    def __init__(self, color: str | None = None, *, outline: bool = False) -> None:\n        super().__init__()\n        self.color = color\n        self.outline = outline\n\n    def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]:\n        \"\"\"Run the role.\"\"\"\n        options = {\n            \"classes\": create_bdg_classes(self.color, self.outline),\n            \"reftarget\": self.target,\n            \"refdoc\": self.env.docname,\n            \"refdomain\": \"\",\n            \"reftype\": \"any\",\n            \"refexplicit\": self.has_explicit_title,\n            \"refwarn\": True,\n        }\n        node = addnodes.pending_xref(self.rawtext, **options)\n        self.set_source_info(node)\n        node += nodes.inline(self.title, self.title, classes=[\"xref\", \"any\"])\n        return [node], []\n\n\nclass _ButtonDirective(SdDirective):\n    \"\"\"A base button directive.\"\"\"\n\n    required_arguments = 1\n    optional_arguments = 0\n    final_argument_whitespace = True\n    has_content = True\n    option_spec = {\n        \"color\": make_choice(SEMANTIC_COLORS),\n        \"outline\": directives.flag,\n        \"align\": text_align,\n        # expand to fit parent width\n        \"expand\": directives.flag,\n        # make parent also clickable\n        \"click-parent\": directives.flag,\n        \"tooltip\": directives.unchanged_required,\n        \"shadow\": directives.flag,\n        # ref button only\n        \"ref-type\": make_choice([\"any\", \"ref\", \"doc\", \"myst\"]),\n        \"class\": directives.class_option,\n    }\n\n    def create_ref_node(\n        self, rawtext: str, target: str, explicit_title: bool, classes: list[str]\n    ) -> nodes.Node:\n        \"\"\"Create the reference node.\"\"\"\n        raise NotImplementedError\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        rawtext = self.arguments[0]\n        target = directives.uri(rawtext)\n        classes = [\"sd-sphinx-override\", \"sd-btn\", \"sd-text-wrap\"]\n        if \"color\" in self.options:\n            if \"outline\" in self.options:\n                classes.append(f\"sd-btn-outline-{self.options['color']}\")\n            else:\n                classes.append(f\"sd-btn-{self.options['color']}\")\n        if \"click-parent\" in self.options:\n            classes.append(\"sd-stretched-link\")\n        if \"shadow\" in self.options:\n            classes.append(\"sd-shadow-sm\")\n        if \"class\" in self.options:\n            classes.extend(self.options[\"class\"])\n        node = self.create_ref_node(rawtext, target, bool(self.content), classes)\n        # TODO open in new tab\n        self.set_source_info(node)\n        if \"tooltip\" in self.options:\n            node[\"reftitle\"] = self.options[\"tooltip\"]  # TODO escape HTML\n\n        if self.content:\n            textnodes, _ = self.state.inline_text(\n                \"\\n\".join(self.content), self.lineno + self.content_offset\n            )\n            content = nodes.inline(\"\", \"\")\n            content.extend(textnodes)\n        else:\n            content = nodes.inline(target, target)\n        node.append(content)\n\n        if \"expand\" in self.options:\n            grid_container = nodes.inline(classes=[\"sd-d-grid\"])\n            self.set_source_info(grid_container)\n            grid_container += node\n            node = grid_container\n\n        # `visit_reference` requires that a reference be inside a `TextElement` parent\n        container = nodes.paragraph(classes=self.options.get(\"align\", []))\n        self.set_source_info(container)\n        container += node\n\n        return [container]\n\n\nclass ButtonLinkDirective(_ButtonDirective):\n    \"\"\"A button directive with an external link.\"\"\"\n\n    def create_ref_node(\n        self, rawtext: str, target: str, explicit_title: bool, classes: list[str]\n    ) -> nodes.Node:\n        \"\"\"Create the reference node.\"\"\"\n        return nodes.reference(\n            rawtext,\n            refuri=target,\n            classes=classes,\n        )\n\n\nclass ButtonRefDirective(_ButtonDirective):\n    \"\"\"A button directive with an internal link.\"\"\"\n\n    def create_ref_node(\n        self, rawtext: str, target: str, explicit_title: bool, classes: list[str]\n    ) -> nodes.Node:\n        \"\"\"Create the reference node.\"\"\"\n        ref_type = self.options.get(\"ref-type\", \"any\")\n        options = {\n            # TODO the presence of classes raises an error if the link cannot be found\n            \"classes\": classes,\n            \"reftarget\": target,\n            \"refdoc\": self.env.docname,\n            \"refdomain\": \"std\" if ref_type in {\"ref\", \"doc\"} else \"\",\n            \"reftype\": ref_type,\n            \"refexplicit\": explicit_title,\n            \"refwarn\": True,\n        }\n        return addnodes.pending_xref(rawtext, **options)\n"
  },
  {
    "path": "sphinx_design/cards.py",
    "content": "import re\nfrom typing import NamedTuple\n\nfrom docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom docutils.statemachine import StringList\nfrom sphinx import addnodes\nfrom sphinx.application import Sphinx\nfrom sphinx.util.docutils import SphinxDirective\nfrom sphinx.util.logging import getLogger\n\nfrom ._compat import findall\nfrom .shared import (\n    WARNING_TYPE,\n    PassthroughTextElement,\n    SdDirective,\n    create_component,\n    is_component,\n    make_choice,\n    margin_option,\n    text_align,\n)\n\nLOGGER = getLogger(__name__)\n\nDIRECTIVE_NAME_CARD = \"card\"\nDIRECTIVE_NAME_CAROUSEL = \"card-carousel\"\nREGEX_HEADER = re.compile(r\"^\\^{3,}\\s*$\")\nREGEX_FOOTER = re.compile(r\"^\\+{3,}\\s*$\")\n\n\ndef setup_cards(app: Sphinx) -> None:\n    \"\"\"Setup the card components.\"\"\"\n    app.add_directive(DIRECTIVE_NAME_CARD, CardDirective)\n    app.add_directive(DIRECTIVE_NAME_CAROUSEL, CardCarouselDirective)\n\n\nclass CardContent(NamedTuple):\n    \"\"\"Split card into header (optional), body, footer (optional).\n\n    (offset, content)\n    \"\"\"\n\n    body: tuple[int, StringList]\n    header: tuple[int, StringList] | None = None\n    footer: tuple[int, StringList] | None = None\n\n\nclass CardDirective(SdDirective):\n    \"\"\"A card component.\"\"\"\n\n    has_content = True\n    required_arguments = 0\n    optional_arguments = 1  # card title\n    final_argument_whitespace = True\n    option_spec = {\n        \"width\": make_choice([\"auto\", \"25%\", \"50%\", \"75%\", \"100%\"]),\n        \"margin\": margin_option,\n        \"text-align\": text_align,\n        \"img-top\": directives.uri,\n        \"img-bottom\": directives.uri,\n        \"img-background\": directives.uri,\n        \"img-alt\": directives.unchanged,\n        \"link\": directives.uri,\n        \"link-type\": make_choice([\"url\", \"any\", \"ref\", \"doc\"]),\n        \"link-alt\": directives.unchanged,\n        \"shadow\": make_choice([\"none\", \"sm\", \"md\", \"lg\"]),\n        \"class-card\": directives.class_option,\n        \"class-header\": directives.class_option,\n        \"class-body\": directives.class_option,\n        \"class-title\": directives.class_option,\n        \"class-footer\": directives.class_option,\n        \"class-img-top\": directives.class_option,\n        \"class-img-bottom\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        return [self.create_card(self, self.arguments, self.options)]\n\n    @classmethod\n    def create_card(  # noqa: PLR0915\n        cls, inst: SphinxDirective, arguments: list | None, options: dict\n    ) -> nodes.Node:\n        \"\"\"Run the directive.\"\"\"\n        # TODO better degradation for latex\n        card_classes = [\"sd-card\", \"sd-sphinx-override\"]\n        if \"width\" in options:\n            card_classes += [f\"sd-w-{options['width'].rstrip('%')}\"]\n        card_classes += options.get(\"margin\", [\"sd-mb-3\"])\n        card_classes += [f\"sd-shadow-{options.get('shadow', 'sm')}\"]\n        if \"link\" in options:\n            card_classes += [\"sd-card-hover\"]\n        card = create_component(\n            \"card\",\n            card_classes\n            + options.get(\"text-align\", [])\n            + options.get(\"class-card\", []),\n        )\n        inst.set_source_info(card)\n\n        img_alt = options.get(\"img-alt\") or \"\"\n\n        container = card\n        if \"img-background\" in options:\n            card.append(\n                nodes.image(\n                    uri=options[\"img-background\"],\n                    classes=[\"sd-card-img\"],\n                    alt=img_alt,\n                )\n            )\n            overlay = create_component(\"card-overlay\", [\"sd-card-img-overlay\"])\n            inst.set_source_info(overlay)\n            card += overlay\n            container = overlay\n\n        if \"img-top\" in options:\n            image_top = nodes.image(\n                \"\",\n                uri=options[\"img-top\"],\n                alt=img_alt,\n                classes=[\"sd-card-img-top\", *options.get(\"class-img-top\", [])],\n            )\n            container.append(image_top)\n\n        components = cls.split_content(inst.content, inst.content_offset)\n\n        if components.header:\n            container.append(\n                cls._create_component(\n                    inst, \"header\", options, components.header[0], components.header[1]\n                )\n            )\n\n        body = cls._create_component(\n            inst, \"body\", options, components.body[0], components.body[1]\n        )\n        if arguments:\n            title = create_component(\n                \"card-title\",\n                [\n                    \"sd-card-title\",\n                    \"sd-font-weight-bold\",\n                    *options.get(\"class-title\", []),\n                ],\n            )\n            textnodes, _ = inst.state.inline_text(arguments[0], inst.lineno)\n            title_container = PassthroughTextElement()\n            title_container.extend(textnodes)\n            inst.set_source_info(title_container)\n            title.append(title_container)\n            body.insert(0, title)\n        container.append(body)\n\n        if components.footer:\n            container.append(\n                cls._create_component(\n                    inst, \"footer\", options, components.footer[0], components.footer[1]\n                )\n            )\n\n        if \"img-bottom\" in options:\n            image_bottom = nodes.image(\n                \"\",\n                uri=options[\"img-bottom\"],\n                alt=img_alt,\n                classes=[\"sd-card-img-bottom\", *options.get(\"class-img-bottom\", [])],\n            )\n            container.append(image_bottom)\n\n        if \"link\" in options:\n            link_container = PassthroughTextElement()\n            _classes = [\"sd-stretched-link\", \"sd-hide-link-text\"]\n            _rawtext = options.get(\"link-alt\") or options[\"link\"]\n            if options.get(\"link-type\", \"url\") == \"url\":\n                link = nodes.reference(\n                    _rawtext,\n                    \"\",\n                    nodes.inline(_rawtext, _rawtext),\n                    refuri=options[\"link\"],\n                    classes=_classes,\n                )\n            else:\n                options = {\n                    # TODO the presence of classes raises an error if the link cannot be found\n                    \"classes\": _classes,\n                    \"reftarget\": options[\"link\"],\n                    \"refdoc\": inst.env.docname,\n                    \"refdomain\": \"\" if options[\"link-type\"] == \"any\" else \"std\",\n                    \"reftype\": options[\"link-type\"],\n                    \"refexplicit\": \"link-alt\" in options,\n                    \"refwarn\": True,\n                }\n                link = addnodes.pending_xref(\n                    _rawtext, nodes.inline(_rawtext, _rawtext), **options\n                )\n            inst.set_source_info(link)\n            link_container += link\n            container.append(link_container)\n\n        return card\n\n    @staticmethod\n    def split_content(content: StringList, offset: int) -> CardContent:\n        \"\"\"Split the content into header, body and footer.\"\"\"\n        header_index, footer_index, header, footer = None, None, None, None\n        body_offset = offset\n        for index, line in enumerate(content):\n            # match the first occurrence of a header regex\n            if (header_index is None) and REGEX_HEADER.match(line):\n                header_index = index\n            # match the final occurrence of a footer regex\n            if REGEX_FOOTER.match(line):\n                footer_index = index\n        if header_index is not None:\n            header = (offset, content[:header_index])\n            body_offset += header_index + 1\n        if footer_index is not None:\n            footer = (offset + footer_index + 1, content[footer_index + 1 :])\n        body = (\n            body_offset,\n            content[\n                (header_index + 1 if header_index is not None else None) : footer_index\n            ],\n        )\n        return CardContent(body, header, footer)\n\n    @classmethod\n    def _create_component(\n        cls,\n        inst: SphinxDirective,\n        name: str,\n        options: dict,\n        offset: int,\n        content: StringList,\n    ) -> nodes.container:\n        \"\"\"Create the header, body, or footer.\"\"\"\n        component = create_component(\n            f\"card-{name}\", [f\"sd-card-{name}\", *options.get(f\"class-{name}\", [])]\n        )\n        inst.set_source_info(component)  # TODO set proper lines\n        inst.state.nested_parse(content, offset, component)\n        cls.add_card_child_classes(component)\n        return component\n\n    @staticmethod\n    def add_card_child_classes(node):\n        \"\"\"Add classes to specific child nodes.\"\"\"\n        for para in findall(node)(nodes.paragraph):\n            para[\"classes\"] = [*para.get(\"classes\", []), \"sd-card-text\"]\n        # for title in findall(node)(nodes.title):\n        #     title[\"classes\"] = ([] if \"classes\" not in title else title[\"classes\"]) + [\n        #         \"sd-card-title\"\n        #     ]\n\n\nclass CardCarouselDirective(SdDirective):\n    \"\"\"A component, which is a container for cards in a single scrollable row.\"\"\"\n\n    has_content = True\n    required_arguments = 1  # columns\n    optional_arguments = 0\n    option_spec = {\n        \"class\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        self.assert_has_content()\n        try:\n            cols = make_choice([str(i) for i in range(1, 13)])(\n                self.arguments[0].strip()\n            )\n        except ValueError as exc:\n            raise self.error(f\"Invalid directive argument: {exc}\") from exc\n        container = create_component(\n            \"card-carousel\",\n            [\n                \"sd-sphinx-override\",\n                \"sd-cards-carousel\",\n                f\"sd-card-cols-{cols}\",\n                *self.options.get(\"class\", []),\n            ],\n        )\n        self.set_source_info(container)\n        self.state.nested_parse(self.content, self.content_offset, container)\n        for item in container.children:\n            if not is_component(item, \"card\"):\n                LOGGER.warning(\n                    \"All children of a 'card-carousel' \"\n                    f\"should be 'card' [{WARNING_TYPE}.card]\",\n                    location=item,\n                    type=WARNING_TYPE,\n                    subtype=\"card\",\n                )\n                break\n        return [container]\n"
  },
  {
    "path": "sphinx_design/compiled/__init__.py",
    "content": ""
  },
  {
    "path": "sphinx_design/compiled/material-icons_LICENSE",
    "content": "   Copyright 2024 Google\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "sphinx_design/compiled/material-icons_VERSION.txt",
    "content": "using github.com/google/material-design-icons\nv4.0.0-116-ge9da21\ne9da2194e65080a829d670ae39a99c7b5fc09548\n"
  },
  {
    "path": "sphinx_design/compiled/material_outlined.json",
    "content": "{\n  \"auto_delete\": {\n    \"name\": \"auto_delete\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4\\\"></polygon><path d=\\\"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z\\\"></path><polygon points=\\\"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"13,4 11,4 10,3 6,3 5,4 3,4 3,5 13,5\\\"></polygon><path d=\\\"M12.5,8c-0.17,0-0.33,0.03-0.5,0.05V6H4v8c0,0.55,0.45,1,1,1h3.76c0.81,1.21,2.18,2,3.74,2c2.49,0,4.5-2.01,4.5-4.5 S14.99,8,12.5,8z M8.28,14H5V7h6v1.28C9.26,8.9,8,10.54,8,12.5C8,13.03,8.11,13.53,8.28,14z M12.5,16C10.57,16,9,14.43,9,12.5 S10.57,9,12.5,9s3.5,1.57,3.5,3.5S14.43,16,12.5,16z\\\"></path><polygon points=\\\"13,12.42 13,10 12,10 12,13 14.6,14.5 15.1,13.63\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_alert\": {\n    \"name\": \"add_alert\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"warning\": {\n    \"name\": \"warning\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_important\": {\n    \"name\": \"notification_important\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM12 6c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm0-4.5c-.83 0-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5zM11 8h2v4h-2zm0 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"error_outline\": {\n    \"name\": \"error_outline\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"error\": {\n    \"name\": \"error\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"warning_amber\": {\n    \"name\": \"warning_amber\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"recommend\": {\n    \"name\": \"recommend\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path><path d=\\\"M17,10h-4.59l0.58-3.41v-0.2c-0.01-0.26-0.12-0.51-0.3-0.7L12,5l-4.6,5c-0.27,0.26-0.42,0.62-0.4,1v5c0,1.1,0.9,2,2,2h5.5 c0.56,0.03,1.08-0.29,1.3-0.8l2.1-4.9c0.08-0.15,0.12-0.33,0.1-0.5V11C18,10.45,17.55,10,17,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plus_one\": {\n    \"name\": \"plus_one\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z\\\"></path>\"\n      }\n    }\n  },\n  \"mood_bad\": {\n    \"name\": \"mood_bad\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_mma\": {\n    \"name\": \"sports_mma\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z\\\"></path><path d=\\\"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z\\\"></path><rect height=\\\"3\\\" width=\\\"6\\\" x=\\\"8\\\" y=\\\"7\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14,7c-0.55,0-1,0.45-1,1l-0.01-3c0-0.55-0.45-1-1-1H6C5.45,4,5,4.45,5,5v4.57c0.01,0.07,0.01,0.13,0.02,0.2l0.57,2.83 C5.63,12.83,5.84,13,6.08,13h7.85c0.24,0,0.44-0.17,0.49-0.4l0.57-2.83c0.01-0.07,0.01-0.13,0.02-0.2V8C15,7.45,14.55,7,14,7z M13.97,9.73l-0.37,1.87c-0.05,0.23-0.25,0.4-0.49,0.4H6.9c-0.24,0-0.44-0.17-0.49-0.4L6.03,9.73C6.02,9.62,6.01,9.51,6,9.4V5 h5.99L12,8v1h2C14,9,13.99,9.62,13.97,9.73z\\\"></path><path d=\\\"M6,15.5C6,15.78,6.22,16,6.5,16h7c0.28,0,0.5-0.22,0.5-0.5V14H6V15.5z\\\"></path><g><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"compost\": {\n    \"name\": \"compost\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.87,11.81c-0.23-0.38-0.37-0.83-0.37-1.31C12.5,9.12,13.62,8,15,8l1,0c1.51,0,2-1,2-1s0.55,6-3,6 c-0.49,0-0.94-0.14-1.32-0.38c-0.24,0.64-0.59,1.76-0.76,2.96c1.26,0.22,2.28,0.89,2.77,1.77c1.69-1.17,2.81-3.13,2.81-5.35h3 c0,5.24-4.26,9.5-9.5,9.5S2.5,17.24,2.5,12S6.76,2.5,12,2.5V0l4,4l-4,4V5.5c-3.58,0-6.5,2.92-6.5,6.5c0,2.21,1.11,4.17,2.81,5.35 c0.51-0.92,1.63-1.62,2.98-1.8c-0.09-0.69-0.26-1.42-0.49-2.03C10.45,13.82,10,14,9.5,14c-1.1,0-2-0.9-2-2v-0.99 c0-0.56-0.19-1.09-0.5-1.51c0,0,4.45-0.23,4.5,2.5c0,0.29-0.06,0.56-0.17,0.8C10.91,12.48,10.47,12.2,10,12 c0.58,0.43,1.37,1.37,2,2.6c0.67-1.62,1.68-3.27,3-4.6C14.24,10.52,13.53,11.12,12.87,11.81z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.4,10.69c0.07-0.18,0.1-0.37,0.1-0.57C9.5,8,6,8,6,8s0.25,0.27,0.24,1.25l0.01,0.88c0,0.9,0.73,1.62,1.62,1.62 c0.42,0,0.8-0.16,1.09-0.42c0.16,0.4,0.4,1.1,0.42,1.72c-1.06,0.16-1.96,0.73-2.46,1.51C5.46,13.57,4.5,11.9,4.5,10 c0-3.03,2.47-5.5,5.5-5.5h0v2l3.5-3.25L10,0v2h0c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8h-2.5c0,1.9-0.97,3.57-2.43,4.56 c-0.49-0.77-1.36-1.33-2.39-1.5c0.11-0.95,0.33-1.57,0.63-2.38C11.63,10.88,12,11,12.4,11C15,11,15,6.91,15,6c0,0-0.5,1-2,1h-0.6 c-1.1,0-2,0.9-2,2c0,0.38,0.11,0.74,0.29,1.04c0.14-0.15,1.05-1.09,1.81-1.54c-0.48,0.4-1.78,1.93-2.5,3.71 C9.42,11.08,8.51,10.17,8.25,10C8.69,10.17,9.24,10.58,9.4,10.69z\\\"></path></g>\"\n      }\n    }\n  },\n  \"front_hand\": {\n    \"name\": \"front_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,8c-0.17,0-0.34,0.02-0.5,0.05V4.5C18,3.12,16.88,2,15.5,2c-0.19,0-0.37,0.02-0.54,0.06C14.75,0.89,13.73,0,12.5,0 c-1.06,0-1.96,0.66-2.33,1.59C9.96,1.53,9.73,1.5,9.5,1.5C8.12,1.5,7,2.62,7,4v0.55C6.84,4.52,6.67,4.5,6.5,4.5C5.12,4.5,4,5.62,4,7 v8.5c0,4.69,3.81,8.5,8.5,8.5s8.5-3.81,8.5-8.5v-5C21,9.12,19.88,8,18.5,8z M19,15.5c0,3.59-2.91,6.5-6.5,6.5S6,19.09,6,15.5V7 c0-0.28,0.22-0.5,0.5-0.5S7,6.72,7,7v5h2V4c0-0.28,0.22-0.5,0.5-0.5S10,3.72,10,4v7h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V11 h2V4.5C15,4.22,15.22,4,15.5,4S16,4.22,16,4.5v8.92c-1.77,0.77-3,2.53-3,4.58h2c0-1.66,1.34-3,3-3v-4.5c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5V15.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,6.5c-0.17,0-0.34,0.02-0.5,0.06V3.5c0-1.1-0.9-2-2-2c-0.19,0-0.37,0.03-0.55,0.08C12.26,0.67,11.46,0,10.5,0 C9.62,0,8.88,0.56,8.61,1.34C8.42,1.28,8.21,1.25,8,1.25c-1.1,0-2,0.9-2,2v0.81C5.84,4.02,5.67,4,5.5,4c-1.1,0-2,0.9-2,2v7 c0,3.87,3.13,7,7,7s7-3.13,7-7V8.5C17.5,7.4,16.6,6.5,15.5,6.5z M16,13c0,3.04-2.46,5.5-5.5,5.5S5,16.04,5,13V6 c0-0.28,0.22-0.5,0.5-0.5S6,5.72,6,6v4h1.5V3.25c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V9H10V2c0-0.28,0.22-0.5,0.5-0.5 S11,1.72,11,2v7h1.5V3.5C12.5,3.22,12.72,3,13,3s0.5,0.22,0.5,0.5l0,7.79C12.03,11.88,11,13.32,11,15h1.5c0-1.38,1.12-2.5,2.5-2.5 v-4C15,8.22,15.22,8,15.5,8S16,8.22,16,8.5V13z\\\"></path>\"\n      }\n    }\n  },\n  \"safety_divider\": {\n    \"name\": \"safety_divider\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,5h2v14h-2V5z M5,12c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C3,11.1,3.9,12,5,12z M7.78,13.58 C6.93,13.21,5.99,13,5,13s-1.93,0.21-2.78,0.58C1.48,13.9,1,14.62,1,15.43L1,16h8l0-0.57C9,14.62,8.52,13.9,7.78,13.58z M19,12 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C17,11.1,17.9,12,19,12z M21.78,13.58C20.93,13.21,19.99,13,19,13s-1.93,0.21-2.78,0.58 C15.48,13.9,15,14.62,15,15.43L15,16h8l0-0.57C23,14.62,22.52,13.9,21.78,13.58z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_2\": {\n    \"name\": \"groups_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.27,12h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C14.67,7.04,13.44,6,12,6S9.33,7.04,9.09,8.47l-0.3,1.79 C8.64,11.17,9.34,12,10.27,12z M11.06,8.79C11.14,8.33,11.53,8,12,8s0.86,0.33,0.94,0.79l0.2,1.21h-2.28L11.06,8.79z\\\"></path><path d=\\\"M1.66,11.11c-0.13,0.26-0.18,0.57-0.1,0.88c0.16,0.69,0.76,1.03,1.53,1c0,0,1.49,0,1.95,0c0.83,0,1.51-0.58,1.51-1.29 c0-0.14-0.03-0.27-0.07-0.4c-0.01-0.03-0.01-0.05,0.01-0.08c0.09-0.16,0.14-0.34,0.14-0.53c0-0.31-0.14-0.6-0.36-0.82 c-0.03-0.03-0.03-0.06-0.02-0.1c0.07-0.2,0.07-0.43,0.01-0.65C6.1,8.69,5.71,8.4,5.27,8.38c-0.03,0-0.05-0.01-0.07-0.03 C5.03,8.14,4.72,8,4.37,8C4.07,8,3.8,8.1,3.62,8.26C3.59,8.29,3.56,8.29,3.53,8.28c-0.14-0.06-0.3-0.09-0.46-0.09 c-0.65,0-1.18,0.49-1.24,1.12c0,0.02-0.01,0.04-0.03,0.06c-0.29,0.26-0.46,0.65-0.41,1.05c0.03,0.22,0.12,0.43,0.25,0.6 C1.67,11.04,1.67,11.08,1.66,11.11z\\\"></path><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z M8.07,16c0.09-0.23,0.27-0.42,0.49-0.52c1.1-0.49,2.26-0.73,3.43-0.73 c1.18,0,2.33,0.25,3.43,0.73c0.23,0.1,0.4,0.29,0.49,0.52H8.07z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M22,11v-0.5c0-1.1-0.9-2-2-2h-2c-0.42,0-0.65,0.48-0.39,0.81l0.7,0.63C18.12,10.25,18,10.61,18,11c0,1.1,0.9,2,2,2 S22,12.1,22,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8.22,10h3.56c0.63,0,1.1-0.58,0.98-1.2l-0.37-1.84C12.16,5.82,11.16,5,10,5S7.84,5.82,7.61,6.96L7.24,8.8 C7.12,9.42,7.59,10,8.22,10z M9.08,7.26C9.17,6.82,9.55,6.5,10,6.5s0.83,0.32,0.92,0.76l0.25,1.24H8.83L9.08,7.26z\\\"></path><path d=\\\"M1.63,9.49C1.52,9.7,1.49,9.95,1.54,10.2c0.13,0.55,0.61,0.83,1.22,0.8c0,0,1.19,0,1.56,0C5,11,5.54,10.54,5.54,9.97 c0-0.11-0.02-0.22-0.06-0.32c-0.01-0.02-0.01-0.04,0-0.06c0.07-0.13,0.11-0.27,0.11-0.42c0-0.25-0.11-0.48-0.29-0.66 C5.28,8.49,5.28,8.46,5.29,8.43c0.05-0.16,0.06-0.34,0.01-0.52C5.18,7.56,4.86,7.32,4.51,7.3c-0.02,0-0.04-0.01-0.05-0.03 C4.32,7.11,4.08,7,3.8,7c-0.24,0-0.46,0.08-0.6,0.21C3.18,7.23,3.15,7.23,3.12,7.22C3.01,7.18,2.89,7.15,2.76,7.15 c-0.52,0-0.94,0.39-0.99,0.9c0,0.02-0.01,0.03-0.02,0.05C1.51,8.31,1.38,8.62,1.42,8.94c0.02,0.18,0.09,0.34,0.2,0.48 C1.64,9.44,1.64,9.47,1.63,9.49z\\\"></path><path d=\\\"M16.5,11c0.83,0,1.5-0.67,1.5-1.5c0-0.04-0.01-0.07-0.01-0.11H18V9.01c0-0.83-0.68-1.51-1.51-1.51h-1.61 c-0.32,0-0.49,0.37-0.29,0.61l0.65,0.58C15.09,8.93,15,9.2,15,9.5C15,10.33,15.67,11,16.5,11z\\\"></path><path d=\\\"M13.9,11.93C12.87,11.41,11.54,11,10,11c-1.54,0-2.87,0.41-3.9,0.93C5.42,12.26,5,12.96,5,13.72L5,15h10l0-1.28 C15,12.96,14.58,12.26,13.9,11.93z M6.55,13.5c0.04-0.1,0.12-0.18,0.22-0.23C7.47,12.92,8.6,12.5,10,12.5 c1.39,0,2.53,0.42,3.23,0.77c0.1,0.05,0.18,0.13,0.22,0.23H6.55z\\\"></path><path d=\\\"M18.74,12.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,15h4l0-1.13 C20,13.05,19.5,12.31,18.74,12.01z\\\"></path><path d=\\\"M3.5,11.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,12.31,0,13.05,0,13.87L0,15h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,11.65,3.94,11.6,3.5,11.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"groups\": {\n    \"name\": \"groups\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"girl\": {\n    \"name\": \"girl\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,16v4h-4v-4H8l2.38-6.38 C10.63,8.95,11.28,8.5,12,8.5s1.37,0.45,1.62,1.12L16,16H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,6.5c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z M11.5,13v3h-3v-3H7l1.9-4.76 C9.08,7.79,9.52,7.5,10,7.5s0.92,0.29,1.1,0.74L13,13H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"piano\": {\n    \"name\": \"piano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M14,14.5h0.25V19h-4.5v-4.5H10 c0.55,0,1-0.45,1-1V5h2v8.5C13,14.05,13.45,14.5,14,14.5z M5,5h2v8.5c0,0.55,0.45,1,1,1h0.25V19H5V5z M19,19h-3.25v-4.5H16 c0.55,0,1-0.45,1-1V5h2V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7,15.5H4.5v-11H6v7C6,11.78,6.22,12,6.5,12H7V15.5z M12,15.5H8V12h0.5C8.78,12,9,11.78,9,11.5v-7h2v7c0,0.28,0.22,0.5,0.5,0.5H12 V15.5z M15.5,15.5H13V12h0.5c0.28,0,0.5-0.22,0.5-0.5v-7h1.5V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people_outline\": {\n    \"name\": \"people_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"group\": {\n    \"name\": \"group\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_off\": {\n    \"name\": \"notifications_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_objects\": {\n    \"name\": \"emoji_objects\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,17h-4v-1h4V17z M10,19v-1h4v1H10z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"1\\\" x=\\\"11.5\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)\\\" width=\\\"1\\\" x=\\\"10.59\\\" y=\\\"8.79\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)\\\" width=\\\"1\\\" x=\\\"12.41\\\" y=\\\"8.79\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><path d=\\\"M14.91,7.07c-0.01-0.04-0.01-0.08-0.02-0.12c-0.06-0.28-0.15-0.56-0.26-0.82c-0.02-0.05-0.04-0.09-0.06-0.14 c-0.11-0.26-0.25-0.5-0.4-0.74c-0.03-0.04-0.05-0.08-0.08-0.11c-0.16-0.23-0.34-0.46-0.55-0.66c-0.02-0.02-0.03-0.03-0.05-0.05 c-0.2-0.2-0.42-0.38-0.66-0.54c-0.02-0.02-0.04-0.03-0.06-0.05c-0.24-0.16-0.49-0.29-0.75-0.41c-0.04-0.02-0.09-0.04-0.13-0.06 c-0.26-0.11-0.53-0.19-0.81-0.25c-0.05-0.01-0.1-0.02-0.15-0.03C10.64,3.04,10.34,3.01,10.04,3C10.03,3,10.01,3,10,3 C9.9,3,9.79,3.01,9.69,3.02c-0.06,0-0.12,0-0.18,0.01C9.31,3.04,9.12,3.07,8.93,3.11c-1.94,0.4-3.49,2-3.84,3.95 c-0.31,1.72,0.26,3.3,1.33,4.4C6.78,11.84,7,12.34,7,12.87c0,0.77,0,1.6,0,2.14c0,0.55,0.45,1,1,1h0.28l0,0c0.35,0.6,0.98,1,1.72,1 s1.38-0.4,1.72-1l0,0H12c0.55,0,1-0.45,1-1v-2.13c0-0.52,0.21-1.02,0.58-1.4C14.45,10.57,15,9.35,15,8 C15,7.68,14.96,7.37,14.91,7.07z M12,15l-2,0l0,0l0,0l-2,0l0-1h4V15z M12,13H8h0l0-1h4V13z M12.86,10.77 c-0.07,0.07-0.12,0.15-0.19,0.23H7.32c-0.06-0.08-0.12-0.16-0.19-0.24c-0.91-0.94-1.3-2.22-1.06-3.52 c0.29-1.57,1.52-2.83,3.06-3.16C9.42,4.03,9.71,4,10,4c2.21,0,4,1.79,4,4C14,9.04,13.6,10.02,12.86,10.77z\\\"></path><g><g><g><rect height=\\\"2.5\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"8.5\\\"></rect></g></g><g><g><rect height=\\\"2.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9225 8.8839)\\\" width=\\\"1\\\" x=\\\"8.76\\\" y=\\\"6.72\\\"></rect></g></g><g><g><rect height=\\\"2.5\\\" transform=\\\"matrix(-0.7071 -0.7071 0.7071 -0.7071 12.6945 21.1976)\\\" width=\\\"1\\\" x=\\\"10.24\\\" y=\\\"6.72\\\"></rect></g></g></g></g>\"\n      }\n    }\n  },\n  \"edit_notifications\": {\n    \"name\": \"edit_notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25z M20.85,5.81l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.85,0.85 l1.77,1.77l0.85-0.85C21.05,6.32,21.05,6,20.85,5.81z M18,12.2V17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V3.5 C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7c0.82,0.21,1.57,0.59,2.21,1.09l-1.43,1.43C13.64,6.26,12.85,6,12,6 c-2.21,0-4,1.79-4,4v7h8v-2.8L18,12.2z M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,11.03V14h-7V9c0-1.93,1.57-3.5,3.5-3.5c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3 c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1V9.53L13.5,11.03z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3 C8.5,17.33,9.17,18,10,18z M14.32,5.27l1.41,1.41l-3.82,3.82H10.5l0-1.41L14.32,5.27z M14.81,4.77l0.63-0.63 c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L14.81,4.77z\\\"></path>\"\n      }\n    }\n  },\n  \"whatshot\": {\n    \"name\": \"whatshot\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"roller_skating\": {\n    \"name\": \"roller_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,12c0-1.79-1.19-3.34-2.91-3.82l-2.62-0.74C13.62,7.19,13,6.39,13,5.5V1H4v15h16V12z M18,14H6V3h5v1H9.5 C9.22,4,9,4.22,9,4.5C9,4.78,9.22,5,9.5,5H11l0.1,1H9.5C9.22,6,9,6.22,9,6.5C9,6.78,9.22,7,9.5,7h1.81 c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C17.4,10.33,18,11.1,18,12V14z M5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 S6.66,17,5,17z M5,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C6,20.55,5.55,21,5,21z M19,17c-1.66,0-3,1.34-3,3 s1.34,3,3,3s3-1.34,3-3S20.66,17,19,17z M19,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,20.55,19.55,21,19,21z M12,17c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S13.66,17,12,17z M12,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,20.55,12.55,21,12,21z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,10c0-1.35-0.89-2.49-2.2-2.85l-2.2-0.6C11.45,6.37,11,5.78,11,5.1V1H3.5v12.5h13V10z M15,12H5V2.5h4.5v1H8 C7.72,3.5,7.5,3.72,7.5,4c0,0.27,0.22,0.5,0.5,0.5h1.5c0,0.57-0.01,0.76,0.03,1H8C7.72,5.5,7.5,5.72,7.5,6c0,0.27,0.22,0.5,0.5,0.5 h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6C14.55,8.78,15,9.33,15,10V12z M4.25,14.5C3.01,14.5,2,15.51,2,16.75 C2,17.99,3.01,19,4.25,19s2.25-1.01,2.25-2.25C6.5,15.51,5.49,14.5,4.25,14.5z M4.25,17.5c-0.41,0-0.75-0.34-0.75-0.75 C3.5,16.34,3.84,16,4.25,16S5,16.34,5,16.75C5,17.16,4.66,17.5,4.25,17.5z M15.75,14.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25C18,15.51,16.99,14.5,15.75,14.5z M15.75,17.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.5,17.16,16.16,17.5,15.75,17.5z M10,14.5c-1.24,0-2.25,1.01-2.25,2.25 C7.75,17.99,8.76,19,10,19s2.25-1.01,2.25-2.25C12.25,15.51,11.24,14.5,10,14.5z M10,17.5c-0.41,0-0.75-0.34-0.75-0.75 C9.25,16.34,9.59,16,10,16s0.75,0.34,0.75,0.75C10.75,17.16,10.41,17.5,10,17.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"downhill_skiing\": {\n    \"name\": \"downhill_skiing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18.5,3.4,18.5,4.5z M15.78,20.9l0.76,0.27c0.62,0.21,1.27,0.33,1.96,0.33 c0.84,0,1.65-0.18,2.38-0.5L22,22.13C20.95,22.68,19.76,23,18.5,23c-0.86,0-1.68-0.14-2.45-0.41L2,17.47l0.5-1.41l6.9,2.51 l1.72-4.44L7.55,10.4C6.66,9.46,6.88,7.93,8,7.28l3.48-2.01c1.1-0.64,2.52-0.1,2.91,1.11l0.33,1.08c0.44,1.42,1.48,2.57,2.83,3.14 L18.07,9l1.43,0.46l-1.12,3.45c-2.45-0.4-4.48-2.07-5.38-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1-6.44h0l0,0 c0.46,0.18,0.94,0.31,1.44,0.41L15.78,20.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,3.75C12,2.78,12.78,2,13.75,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C12.79,5.5,12,4.72,12,3.75z M6.83,6.38 c-0.89,0.5-1.13,1.7-0.37,2.43l3.1,2.94L8,15.8l-5.66-2.04L2,14.7l10.85,3.9C13.52,18.86,14.24,19,15,19c1.09,0,2.12-0.29,3-0.8 l-0.74-0.74C16.58,17.81,15.81,18,15,18c-0.6,0-1.14-0.1-1.67-0.29l-0.35-0.12l1.9-5.83c-0.34-0.04-0.67-0.11-0.98-0.2l0,0l0,0 l-1.85,5.7l-2.62-0.94l1.91-4.98L8.74,8.74L10.9,7.5c0.65,1.8,2.31,3.12,4.3,3.28L16,8.31L15.05,8l-0.38,1.17 c-1.22-0.34-2.17-1.31-2.47-2.55l-0.24-0.97C11.72,4.67,10.61,4.2,9.75,4.7L6.83,6.38z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_symbols\": {\n    \"name\": \"emoji_symbols\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><polygon points=\\\"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7\\\"></polygon><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)\\\" width=\\\"11\\\" x=\\\"11.5\\\" y=\\\"16\\\"></rect><circle cx=\\\"14.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z\\\"></path><path d=\\\"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M5.21,14.09l-1.06,1.06C4.02,15.27,4,15.42,4,15.5s0.02,0.23,0.15,0.35C4.27,15.98,4.42,16,4.5,16 s0.23-0.02,0.35-0.15l0.35-0.35l0.71-0.71L5.21,14.09z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.71,11.96c0-0.08-0.02-0.23-0.15-0.35s-0.28-0.15-0.35-0.15c-0.08,0-0.23,0.02-0.35,0.15 c-0.13,0.13-0.15,0.28-0.15,0.35c0,0.08,0.02,0.23,0.15,0.35l0.35,0.35l0.35-0.35C5.69,12.19,5.71,12.04,5.71,11.96z\\\" fill=\\\"none\\\"></path><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"4\\\" y=\\\"3\\\"></rect><polygon points=\\\"4,5 4,6 6,6 6,9 6.99,9 6.99,6 9,6 9,5\\\"></polygon><rect height=\\\".99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.8428 13.8943)\\\" width=\\\"7.07\\\" x=\\\"10.31\\\" y=\\\"13.5\\\"></rect><path d=\\\"M12.71,12.71c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41 C11.68,13.1,12.32,13.1,12.71,12.71z\\\"></path><path d=\\\"M16.71,15.29c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 C17.1,16.32,17.1,15.68,16.71,15.29z\\\"></path><path d=\\\"M12.5,9C13.33,9,14,8.33,14,7.5C14,7.47,14,4,14,4h2V3h-3v3.09C12.84,6.04,12.68,6,12.5,6C11.67,6,11,6.67,11,7.5 S11.67,9,12.5,9z\\\"></path><path d=\\\"M8.04,12.67l-1.41,1.41l-0.71-0.71l0.35-0.35c0.59-0.59,0.59-1.54,0-2.12c-0.29-0.29-0.68-0.44-1.06-0.44 c-0.38,0-0.77,0.15-1.06,0.44c-0.59,0.59-0.59,1.54,0,2.12l0.35,0.35l-1.06,1.06c-0.59,0.59-0.59,1.54,0,2.12 C3.73,16.85,4.12,17,4.5,17s0.77-0.15,1.06-0.44l1.06-1.06l1.41,1.41l0.71-0.71l-1.41-1.41v0l1.41-1.41L8.04,12.67z M4.85,12.32 c-0.13-0.13-0.15-0.28-0.15-0.35c0-0.08,0.02-0.23,0.15-0.35c0.13-0.13,0.28-0.15,0.35-0.15c0.08,0,0.23,0.02,0.35,0.15 s0.15,0.28,0.15,0.35c0,0.08-0.02,0.23-0.15,0.35l-0.35,0.35L4.85,12.32z M4.85,15.85C4.73,15.98,4.58,16,4.5,16 s-0.23-0.02-0.35-0.15C4.02,15.73,4,15.58,4,15.5s0.02-0.23,0.15-0.35l1.06-1.06l0.71,0.71L5.21,15.5L4.85,15.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interests\": {\n    \"name\": \"interests\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.02,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.23,13,7.02,13z M7.02,19c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S8.12,19,7.02,19z M13,13v8h8v-8H13z M19,19h-4v-4h4V19z M7,2l-5,9h10L7,2z M7,6.12L8.6,9H5.4L7,6.12z M19.25,2.5 c-1.06,0-1.81,0.56-2.25,1.17c-0.44-0.61-1.19-1.17-2.25-1.17C13.19,2.5,12,3.78,12,5.25c0,2,2.42,3.42,5,5.75 c2.58-2.33,5-3.75,5-5.75C22,3.78,20.81,2.5,19.25,2.5z M17,8.35c-1.45-1.22-3-2.4-3-3.1c0-0.43,0.35-0.75,0.75-0.75 c0.31,0,0.52,0.17,0.73,0.37L17,6.3l1.52-1.43c0.21-0.2,0.42-0.37,0.73-0.37c0.4,0,0.75,0.32,0.75,0.75C20,5.95,18.45,7.13,17,8.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,11c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3S7.65,11,6,11z M6,15.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S6.83,15.5,6,15.5z M11,17h6v-6h-6V17z M12.5,12.5h3v3h-3V12.5z M7.4,7.5H4.6L6,5.03L7.4,7.5z M2.01,9H10L6,2 L2.01,9z M15.72,2.5c-0.81,0-1.39,0.43-1.72,0.89c-0.33-0.47-0.91-0.89-1.72-0.89c-1.19,0-2.1,0.98-2.1,2.1 c0,1.53,1.85,2.61,3.82,4.4c1.98-1.78,3.82-2.87,3.82-4.4C17.82,3.48,16.92,2.5,15.72,2.5z M14,7c-1.12-0.95-2.32-1.87-2.32-2.42 c0-0.33,0.27-0.58,0.58-0.58c0.24,0,0.4,0.13,0.57,0.29L14,5.4l1.18-1.11C15.34,4.14,15.5,4,15.74,4c0.31,0,0.58,0.25,0.58,0.58 C16.33,5.13,15.12,6.05,14,7z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_active\": {\n    \"name\": \"notifications_active\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z\\\"></path>\"\n      }\n    }\n  },\n  \"follow_the_signs\": {\n    \"name\": \"follow_the_signs\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_3\": {\n    \"name\": \"groups_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z M8.07,16c0.09-0.23,0.27-0.42,0.49-0.52c1.1-0.49,2.26-0.73,3.43-0.73 c1.18,0,2.33,0.25,3.43,0.73c0.23,0.1,0.4,0.29,0.49,0.52H8.07z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M12,12c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,7.34,9,9C9,10.66,10.34,12,12,12z M12,8c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,8,12,8z\\\"></path><rect height=\\\"3.54\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.6066 6.0503)\\\" width=\\\"3.54\\\" x=\\\"2.23\\\" y=\\\"9.23\\\"></rect><polygon points=\\\"20,9 17.5,13 22.5,13\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.6317 4.818)\\\" width=\\\"2.83\\\" x=\\\"2.09\\\" y=\\\"6.59\\\"></rect><polygon points=\\\"16.5,6.5 14.5,10 18.5,10\\\"></polygon><path d=\\\"M13.9,10.93C12.87,10.41,11.54,10,10,10c-1.54,0-2.87,0.41-3.9,0.93C5.42,11.26,5,11.96,5,12.72L5,14h10l0-1.28 C15,11.96,14.58,11.26,13.9,10.93z M6.55,12.5c0.04-0.1,0.12-0.18,0.22-0.23C7.47,11.92,8.6,11.5,10,11.5 c1.39,0,2.53,0.42,3.23,0.77c0.1,0.05,0.18,0.13,0.22,0.23H6.55z\\\"></path><path d=\\\"M18.74,11.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,14h4l0-1.13 C20,12.05,19.5,11.31,18.74,11.01z\\\"></path><path d=\\\"M3.5,10.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,11.31,0,12.05,0,12.87L0,14h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,10.65,3.94,10.6,3.5,10.6z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z M10,5.5c0.55,0,1,0.45,1,1 s-0.45,1-1,1s-1-0.45-1-1S9.45,5.5,10,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications\": {\n    \"name\": \"notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_food_beverage\": {\n    \"name\": \"emoji_food_beverage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"2\\\" y=\\\"19\\\"></rect><path d=\\\"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M16,13 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26C7,12.78,7.22,13,7.5,13h4 c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M9.5,7.28l1.5,1.2V12H8V8.48L9.5,7.28z M20,8h-2V5h2V8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><g><path d=\\\"M15,5H5v7c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2V9h1c0.55,0,1-0.45,1-1V6C16,5.45,15.55,5,15,5z M8.5,8.2L9,8.54V10H8V8.54 L8.5,8.2z M13,9v3c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V6h2.25v1.17L7.11,7.93C7.04,7.97,7,8.05,7,8.13v2.62 C7,10.89,7.11,11,7.25,11h2.5C9.89,11,10,10.89,10,10.75V8.13c0-0.08-0.04-0.16-0.11-0.21L8.75,7.17V6H13V9z M15,8h-1V6h1V8z\\\"></path></g><g><rect height=\\\"1\\\" width=\\\"11\\\" x=\\\"4\\\" y=\\\"15\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"domain\": {\n    \"name\": \"domain\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"person_off\": {\n    \"name\": \"person_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,17.17l-3.37-3.38c0.64,0.22,1.23,0.48,1.77,0.76C19.37,15.06,19.98,16.07,20,17.17z M21.19,21.19l-1.41,1.41L17.17,20H4 v-2.78c0-1.12,0.61-2.15,1.61-2.66c1.29-0.66,2.87-1.22,4.67-1.45L1.39,4.22l1.41-1.41L21.19,21.19z M15.17,18l-3-3 c-0.06,0-0.11,0-0.17,0c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18H15.17z M12,6c1.1,0,2,0.9,2,2 c0,0.86-0.54,1.59-1.3,1.87l1.48,1.48C15.28,10.64,16,9.4,16,8c0-2.21-1.79-4-4-4c-1.4,0-2.64,0.72-3.35,1.82l1.48,1.48 C10.41,6.54,11.14,6,12,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.64,9.51C12.46,8.98,13,8.05,13,7c0-1.66-1.34-3-3-3C8.95,4,8.02,4.54,7.49,5.36L8.6,6.47C8.81,5.91,9.36,5.5,10,5.5 c0.83,0,1.5,0.67,1.5,1.5c0,0.64-0.41,1.19-0.97,1.4L11.64,9.51z M15.99,13.87c-0.07-0.62-0.41-1.18-0.95-1.5 c-0.35-0.21-0.72-0.39-1.1-0.56L15.99,13.87z M2.93,2.93L1.87,3.99l7.07,7.07c-1.44,0.15-2.78,0.62-3.97,1.31 C4.36,12.72,4,13.39,4,14.09V16h9.88l2.13,2.13l1.06-1.06L2.93,2.93z M5.5,14.5v-0.41c0-0.18,0.09-0.34,0.22-0.42 C7.02,12.9,8.5,12.5,10,12.5c0.13,0,0.26,0,0.39,0.01l1.99,1.99H5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"assist_walker\": {\n    \"name\": \"assist_walker\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12.5\\\" cy=\\\"4.5\\\" r=\\\"2\\\"></circle><path d=\\\"M19.77,17.72l-0.64-6.37C19.06,10.58,18.41,10,17.64,10H16c-1.5-0.02-2.86-0.54-3.76-1.44l-2-1.98 C10.08,6.42,9.62,6,8.83,6C8.32,6,7.81,6.2,7.42,6.59L4.08,9.91c-0.53,0.68-0.51,1.57-0.21,2.13l1.43,2.8l-3.15,4.05l1.57,1.24 l3.68-4.73l-0.17-1.36L8,14.75V20h2v-6.12l-2.12-2.12l2.36-2.36c0.94,0.94,1.72,1.82,3.59,2.32L13,20h1.5l0.41-3.5h3.18l0.14,1.22 c-0.44,0.26-0.73,0.74-0.73,1.28c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5C20.5,18.46,20.21,17.98,19.77,17.72z M15.09,15 l0.41-3.5h2l0.41,3.5H15.09z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.25,15.05l-0.64-4.92c-0.06-0.5-0.49-0.88-0.99-0.88H12c-0.48-0.16-0.93-0.41-1.3-0.78L8.66,6.44c0,0-0.01,0-0.01-0.01 L8.64,6.42l0,0c-0.59-0.57-1.52-0.57-2.1,0.01l-2.31,2.3c-0.25,0.35-0.34,0.8-0.25,1.22l0.76,3.28l-2.32,3.09l1.22,0.88l2.68-3.59 l-0.19-1.19l1.11,1.08V17h1.5v-4.2l-2.2-2.2l2.08-2.08c1.09,1.09,1.34,1.42,2.23,1.87L10,17h1.01l0.39-3h2.71l0.16,1.26 c-0.31,0.23-0.52,0.57-0.52,0.99c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25C16.25,15.65,15.81,15.17,15.25,15.05z M11.53,13 l0.36-2.75h1.73l0,0L13.97,13H11.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thunderstorm\": {\n    \"name\": \"thunderstorm\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.92,7.02C17.45,4.18,14.97,2,12,2C9.82,2,7.83,3.18,6.78,5.06C4.09,5.41,2,7.74,2,10.5C2,13.53,4.47,16,7.5,16h10 c2.48,0,4.5-2.02,4.5-4.5C22,9.16,20.21,7.23,17.92,7.02z M17.5,14h-10C5.57,14,4,12.43,4,10.5c0-1.74,1.31-3.23,3.04-3.46 l0.99-0.13l0.49-0.87C9.23,4.78,10.56,4,12,4c1.94,0,3.63,1.44,3.95,3.35l0.25,1.52l1.54,0.14C19.01,9.13,20,10.22,20,11.5 C20,12.88,18.88,14,17.5,14z\\\"></path><polygon points=\\\"14.8,17 11.9,20.32 13.9,21.32 11.55,24 14.2,24 17.1,20.68 15.1,19.68 17.45,17\\\"></polygon><polygon points=\\\"8.8,17 5.9,20.32 7.9,21.32 5.55,24 8.2,24 11.1,20.68 9.1,19.68 11.45,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.69,6.01c-0.35-2.23-2.25-3.95-4.58-4C10.07,2,10.04,2,10,2C8.19,2,6.6,3.02,5.8,4.52C3.71,4.74,2.05,6.49,2,8.65 C1.95,11,3.81,12.94,6.15,13l8.35,0c1.93,0,3.5-1.57,3.5-3.5C18,7.63,16.54,6.1,14.69,6.01z M14.5,11.5H6.25 c-1.52,0-2.75-1.23-2.75-2.75C3.5,7.23,4.73,6,6.25,6h0.5l0.29-0.59C7.55,4.28,8.68,3.5,10,3.5c1.62,0,2.96,1.19,3.21,2.74 L13.4,7.5h1.1c1.1,0,2,0.9,2,2C16.5,10.6,15.6,11.5,14.5,11.5z\\\"></path><polygon points=\\\"12.55,14 10.06,16.68 11.84,17.7 9.87,20 11.84,20 14.16,17.3 12.44,16.32 14.6,14\\\"></polygon><polygon points=\\\"7.55,14 5.06,16.68 6.84,17.7 4.87,20 6.84,20 9.16,17.3 7.44,16.32 9.6,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_football\": {\n    \"name\": \"sports_football\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z\\\"></path><rect height=\\\"1.98\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)\\\" width=\\\"7.92\\\" x=\\\"8.04\\\" y=\\\"11.01\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.54,4.46C15.32,4.24,14.25,4,12.84,4c-2.02,0-4.73,0.5-6.53,2.31c-3.06,3.06-2.37,8.71-1.85,9.23 C4.68,15.76,5.75,16,7.16,16c2.02,0,4.73-0.5,6.53-2.31C16.75,10.63,16.07,4.99,15.54,4.46z M12.84,5c0.96,0,1.64,0.12,1.96,0.21 c0.14,0.46,0.26,1.48,0.18,2.69L12.1,5.03C12.38,5.01,12.64,5,12.84,5z M5.2,14.79c-0.14-0.46-0.26-1.48-0.18-2.69l2.87,2.87 C7.62,14.99,7.36,15,7.16,15C6.2,15,5.52,14.88,5.2,14.79z M12.99,12.99c-1.1,1.1-2.58,1.6-3.83,1.83l-3.98-3.98 c0.25-1.36,0.79-2.78,1.83-3.82c1.1-1.1,2.58-1.6,3.83-1.83l3.98,3.98C14.57,10.52,14.03,11.94,12.99,12.99z\\\"></path><rect height=\\\"1\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.1421 10)\\\" width=\\\"6\\\" x=\\\"7\\\" y=\\\"9.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"luggage\": {\n    \"name\": \"luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vaccines\": {\n    \"name\": \"vaccines\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,5.5H8V4h0.5c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1H6v1.5H3c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1V15c0,1.1,0.9,2,2,2h1v4l2,1.5V17h1c1.1,0,2-0.9,2-2V7.5c0.55,0,1-0.45,1-1C12,5.95,11.55,5.5,11,5.5z M9,9H7.25 C6.84,9,6.5,9.34,6.5,9.75c0,0.41,0.34,0.75,0.75,0.75H9V12H7.25c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75H9L9,15H5 V7.5h4V9z M19.5,10.5V10c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-5c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1v0.5c0,0.5-1.5,1.16-1.5,3V20 c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-6.5C21,11.66,19.5,11,19.5,10.5z M16.5,10.5V10h1v0.5c0,1.6,1.5,2,1.5,3V14h-4 c0-0.21,0-0.39,0-0.5C15,12.5,16.5,12.1,16.5,10.5z M19,15.5V17h-4c0-0.51,0-1.02,0-1.5H19z M15,20c0,0,0-0.63,0-1.5h4V20H15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,9V8.5c0.41,0,0.75-0.34,0.75-0.75C16.5,7.34,16.16,7,15.75,7h-4C11.34,7,11,7.34,11,7.75c0,0.41,0.34,0.75,0.75,0.75 V9c0,0-1.25,1-1.25,2.5v5c0,0.83,0.67,1.5,1.5,1.5h3.5c0.83,0,1.5-0.67,1.5-1.5v-5.25C17,10,15.75,9,15.75,9z M15.5,16.5H12V15h3.5 V16.5z M15.5,14H12v-1h3.5V14z M15.5,12H12v-0.5c0-1.13,1.25-1.25,1.25-2.5V8.5h1V9c0,1.25,1.25,1.37,1.25,2.5V12z M6,10.5 C6,10.78,6.22,11,6.5,11H8v1.5H4.5v-6H8V8H6.5C6.22,8,6,8.22,6,8.5C6,8.78,6.22,9,6.5,9H8v1H6.5C6.22,10,6,10.22,6,10.5z M2.25,5.75 C2.25,6.16,2.59,6.5,3,6.5l0,6C3,13.33,3.67,14,4.5,14h1v3L7,18.5V14h1c0.83,0,1.5-0.67,1.5-1.5l0-6c0.41,0,0.75-0.34,0.75-0.75 C10.25,5.34,9.91,5,9.5,5H7V3.5h0.5c0.41,0,0.75-0.34,0.75-0.75C8.25,2.34,7.91,2,7.5,2H5C4.59,2,4.25,2.34,4.25,2.75 C4.25,3.16,4.59,3.5,5,3.5h0.5V5H3C2.59,5,2.25,5.34,2.25,5.75z\\\"></path>\"\n      }\n    }\n  },\n  \"boy\": {\n    \"name\": \"boy\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,20v-5h1v-4.5 c0-1.1-0.9-2-2-2h-2c-1.1,0-2,0.9-2,2V15h1v5H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.5,12.5h-1V16h-3v-3.5h-1V9c0-0.83,0.67-1.5,1.5-1.5h2c0.83,0,1.5,0.67,1.5,1.5V12.5z M10,6.5 c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"landslide\": {\n    \"name\": \"landslide\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11,12L8,8H2v14h20l-6-8L11,12z M12.53,14.77L6,16.95l-2-0.67v-1.89l2,0.67l3.95-1.32L12.53,14.77z M7,10l1.57,2.09 L6,12.95l-2-0.67V10H7z M4,20v-1.61l2,0.67l9.03-3.01L18,20H4z\\\"></path><path d=\\\"M17,6V1l-5-1L9,2v4l3,2L17,6z M11,3.07l1.42-0.95L15,2.64v2.01l-2.77,1.11L11,4.93V3.07z\\\"></path><path d=\\\"M18.5,7L16,9v3l2.5,2l4.5-2V8L18.5,7z M21,10.7l-2.2,0.98L18,11.04V9.96l1-0.8l2,0.44V10.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M9,10L7,7H2v11h16l-5-6L9,10z M10.44,12.4l-5.38,1.79L3.5,13.41v-1.82l1.44,0.72l3.28-1.02L10.44,12.4z M6.2,8.5 l1.02,1.52l-2.15,0.67L3.5,9.91V8.5H6.2z M3.5,16.5v-1.41l1.44,0.72l7.26-2.42l2.59,3.11H3.5z\\\"></path><path d=\\\"M14,5V1l-4-1L7,2v3l3,2L14,5z M8.5,2.8l1.78-1.19l2.22,0.55v1.9l-2.39,1.2L8.5,4.2V2.8z\\\"></path><path d=\\\"M15,6l-2,1.5V10l2,2l4-2V7L15,6z M17.5,9.07l-2.2,1.1l-0.8-0.8V8.25l0.83-0.62l2.17,0.54V9.07z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"back_hand\": {\n    \"name\": \"back_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,7c0-1.38-1.12-2.5-2.5-2.5c-0.17,0-0.34,0.02-0.5,0.05V4c0-1.38-1.12-2.5-2.5-2.5c-0.23,0-0.46,0.03-0.67,0.09 C14.46,0.66,13.56,0,12.5,0c-1.23,0-2.25,0.89-2.46,2.06C9.87,2.02,9.69,2,9.5,2C8.12,2,7,3.12,7,4.5v5.89 c-0.34-0.31-0.76-0.54-1.22-0.66L5.01,9.52c-0.83-0.23-1.7,0.09-2.19,0.83c-0.38,0.57-0.4,1.31-0.15,1.95l2.56,6.43 C6.49,21.91,9.57,24,13,24h0c4.42,0,8-3.58,8-8V7z M19,16c0,3.31-2.69,6-6,6h0c-2.61,0-4.95-1.59-5.91-4.01l-2.6-6.54l0.53,0.14 c0.46,0.12,0.83,0.46,1,0.9L7,15h2V4.5C9,4.22,9.22,4,9.5,4S10,4.22,10,4.5V12h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V12h2V4 c0-0.28,0.22-0.5,0.5-0.5S16,3.72,16,4v8h2V7c0-0.28,0.22-0.5,0.5-0.5S19,6.72,19,7L19,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,4c-0.17,0-0.34,0.02-0.5,0.06V3.25c0-1.1-0.9-2-2-2c-0.21,0-0.42,0.03-0.61,0.09C12.12,0.56,11.38,0,10.5,0 C9.54,0,8.74,0.67,8.55,1.58C8.37,1.53,8.19,1.5,8,1.5c-1.1,0-2,0.9-2,2v5.4C5.79,8.7,5.55,8.55,5.27,8.45L4.24,8.09 C4.07,8.03,3.9,8,3.73,8c-1,0-1.79,1.03-1.39,2.05l2.18,5.54C5.57,18.25,8.14,20,11,20c3.59,0,6.5-2.91,6.5-6.5V6 C17.5,4.9,16.6,4,15.5,4z M16,13.5c0,2.76-2.24,5-5,5c-2.24,0-4.25-1.37-5.07-3.46L3.76,9.51l0.8,0.28c0.27,0.1,0.49,0.31,0.6,0.58 L6,12.5h1.5v-9C7.5,3.22,7.72,3,8,3s0.5,0.22,0.5,0.5V10H10V2c0-0.28,0.22-0.5,0.5-0.5S11,1.72,11,2v8h1.5V3.25 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V10H15V6c0-0.28,0.22-0.5,0.5-0.5S16,5.72,16,6V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"woman_2\": {\n    \"name\": \"woman_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M13.94,8.31C13.62,7.52,12.85,7,12,7s-1.62,0.52-1.94,1.31L7,16h3.5v6h3v-6H17L13.94,8.31z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6,14h3v4h2v-4h3L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"6_ft_apart\": {\n    \"name\": \"6_ft_apart\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fitbit\": {\n    \"name\": \"fitbit\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.89,13.89c1.04,0,1.89-0.85,1.89-1.89s-0.85-1.89-1.89-1.89C18.85,10.11,18,10.96,18,12S18.85,13.89,19.89,13.89z M15.65,13.68c0.93,0,1.68-0.75,1.68-1.68s-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68S14.72,13.68,15.65,13.68z M15.65,9.42 c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68C13.97,8.67,14.72,9.42,15.65,9.42z M15.65,17.93c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68 C13.97,17.17,14.72,17.93,15.65,17.93z M11.41,13.47c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,13.47,11.41,13.47z M11.41,9.21c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,9.21,11.41,9.21z M11.41,17.73c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 C9.93,17.07,10.59,17.73,11.41,17.73z M11.41,22c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47 c-0.81,0-1.47,0.66-1.47,1.47C9.93,21.34,10.59,22,11.41,22z M11.41,4.94c0.81,0,1.47-0.66,1.47-1.47S12.22,2,11.41,2 c-0.81,0-1.47,0.66-1.47,1.47S10.59,4.94,11.41,4.94z M7.16,13.26c0.7,0,1.26-0.57,1.26-1.26s-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26S6.46,13.26,7.16,13.26z M7.16,17.51c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,16.94,6.46,17.51,7.16,17.51z M7.16,9.02c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,8.45,6.46,9.02,7.16,9.02z M3.29,13.05c0.58,0,1.05-0.47,1.05-1.05s-0.47-1.05-1.05-1.05 c-0.58,0-1.05,0.47-1.05,1.05S2.71,13.05,3.29,13.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.31,11.51c0.83,0,1.51-0.68,1.51-1.51s-0.68-1.51-1.51-1.51c-0.83,0-1.51,0.68-1.51,1.51S15.48,11.51,16.31,11.51z M12.92,11.34c0.74,0,1.34-0.6,1.34-1.34s-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34S12.18,11.34,12.92,11.34z M12.92,7.94 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,7.33,12.18,7.94,12.92,7.94z M12.92,14.74 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,14.14,12.18,14.74,12.92,14.74z M9.52,11.18 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,11.18,9.52,11.18z M9.52,7.77 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,7.77,9.52,7.77z M9.52,14.59 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,14.06,8.87,14.59,9.52,14.59z M9.52,18 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,17.47,8.87,18,9.52,18z M9.52,4.36 c0.65,0,1.18-0.53,1.18-1.18S10.17,2,9.52,2C8.87,2,8.35,2.53,8.35,3.18S8.87,4.36,9.52,4.36z M6.13,11.01 c0.56,0,1.01-0.45,1.01-1.01S6.69,8.99,6.13,8.99c-0.56,0-1.01,0.45-1.01,1.01S5.57,11.01,6.13,11.01z M6.13,14.41 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,13.95,5.57,14.41,6.13,14.41z M6.13,7.61 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,7.16,5.57,7.61,6.13,7.61z M3.04,10.84 c0.46,0,0.84-0.38,0.84-0.84S3.5,9.16,3.04,9.16C2.57,9.16,2.2,9.54,2.2,10S2.57,10.84,3.04,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"precision_manufacturing\": {\n    \"name\": \"precision_manufacturing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.5,9C10.78,9,11,8.78,11,8.5V8.43l1.43,1.43c0.15,0.15,0.37,0.19,0.56,0.1l2.72-1.27c0.25-0.12,0.36-0.41,0.24-0.66v0 c-0.12-0.25-0.41-0.36-0.66-0.24l-2.4,1.12L11,7.01V6.99l1.89-1.89l2.4,1.12c0.25,0.12,0.55,0.01,0.66-0.24v0 c0.12-0.25,0.01-0.55-0.24-0.66l-2.72-1.27C12.8,3.96,12.58,4,12.43,4.15L11,5.57V5.5C11,5.22,10.78,5,10.5,5S10,5.22,10,5.5v1 H7.93c-0.26-1-1.27-1.71-2.4-1.45C4.8,5.22,4.21,5.82,4.05,6.54C3.83,7.56,4.37,8.47,5.21,8.84L6.5,14H6c-0.55,0-1,0.45-1,1v1h8v-1 c0-0.55-0.45-1-1-1h-1.14L7.56,8.23C7.73,8.02,7.86,7.77,7.93,7.5H10v1C10,8.78,10.22,9,10.5,9z M6,8C5.45,8,5,7.55,5,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M9.38,14H7.82L6.65,9.28h0.04L9.38,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"king_bed\": {\n    \"name\": \"king_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1 l0.67-2H22V12z M18,10h-5V7h5V10z M6,7h5v3H6V7z M4,12h16v3H4V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect fill=\\\"none\\\" height=\\\"2\\\" width=\\\"4.5\\\" x=\\\"10.5\\\" y=\\\"6\\\"></rect><rect fill=\\\"none\\\" height=\\\"2\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><polygon fill=\\\"none\\\" points=\\\"9.5,9 4,9 4,12 16,12 16,9 10.5,9\\\"></polygon><path d=\\\"M16,8V6c0-0.55-0.45-1-1-1H5C4.45,5,4,5.45,4,6v2C3.45,8,3,8.45,3,9v4h1l0.75,2h0.5L6,13h8l0.75,2h0.5L16,13h1V9 C17,8.45,16.55,8,16,8z M10.5,6H15v2h-4.5V6z M5,6h4.5v2H5V6z M16,12H4V9h12V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"reduce_capacity\": {\n    \"name\": \"reduce_capacity\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z\\\"></path>\"\n      }\n    }\n  },\n  \"face_3\": {\n    \"name\": \"face_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M22.91,11.96C22.39,6.32,17.66,2,12,2S1.61,6.32,1.09,11.96l-0.9,9.86C0.09,22.99,1.01,24,2.19,24h19.62 c1.18,0,2.1-1.01,1.99-2.18L22.91,11.96z M13,4.07c2.26,0.28,4.22,1.51,5.49,3.28C17.91,7.75,17.23,8,16.5,8 C14.57,8,13,6.43,13,4.5V4.07z M11,4.07V4.5C11,6.43,9.43,8,7.5,8C6.77,8,6.09,7.75,5.51,7.35C6.78,5.58,8.74,4.35,11,4.07z M4.54,9.13C5.41,9.68,6.43,10,7.5,10C9.36,10,11,9.07,12,7.65C13,9.07,14.64,10,16.5,10c1.07,0,2.09-0.32,2.96-0.87 C19.8,10.02,20,10.99,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8C4,10.99,4.2,10.02,4.54,9.13z M12,22H2.19l0.56-6.2 C4.25,19.44,7.82,22,12,22s7.75-2.56,9.25-6.2l0.56,6.2H12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M19.81,18.33l-0.93-8.38C18.38,5.42,14.55,2,10,2C5.45,2,1.62,5.42,1.12,9.95l-0.93,8.38C0.09,19.22,0.78,20,1.68,20 h16.65C19.22,20,19.91,19.22,19.81,18.33z M16.5,10c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.78,0.15-1.53,0.4-2.22 C4.61,8.24,5.44,8.5,6.32,8.5C7.85,8.5,9.2,7.72,10,6.53c0.8,1.19,2.15,1.97,3.68,1.97c0.87,0,1.71-0.26,2.42-0.72 C16.35,8.47,16.5,9.22,16.5,10z M10.75,3.55c1.94,0.22,3.63,1.31,4.66,2.86C14.92,6.78,14.32,7,13.68,7 c-1.62,0-2.93-1.32-2.93-2.93V3.55z M9.25,3.55v0.52C9.25,5.68,7.94,7,6.32,7C5.68,7,5.08,6.78,4.59,6.41 C5.62,4.85,7.31,3.77,9.25,3.55z M1.68,18.5l0.68-6.13C3.37,15.63,6.41,18,10,18s6.63-2.37,7.64-5.63l0.68,6.13H1.68z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public\": {\n    \"name\": \"public\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93C7.06 19.43 4 16.07 4 12zm13.89 5.4c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_volleyball\": {\n    \"name\": \"sports_volleyball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.18-0.69,3.33-1.06,3-1.02v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M10.42,19.84 M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78 C16.9,18.75,14.6,20,12,20z M13,11.42V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,4.04 c2.66,0.22,4.84,2.17,5.37,4.73L10.5,5.67V4.04z M7,4.81c0.75-0.43,1.6-0.7,2.5-0.78v5.68L7,11.15V4.81z M4.58,12.55 C4.21,11.78,4,10.91,4,10c0-1.77,0.78-3.35,2-4.45v6.18L4.58,12.55z M5.08,13.42L10,10.58l2.5,1.44l-5.48,3.17 C6.25,14.74,5.58,14.15,5.08,13.42z M10,16c-0.65,0-1.28-0.11-1.87-0.3l5.37-3.1l1.42,0.82C13.84,14.98,12.04,16,10,16z M10.5,9.71V6.82l5.5,3.18c0,0.91-0.21,1.77-0.58,2.55L10.5,9.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kayaking\": {\n    \"name\": \"kayaking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M12,5.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,5.5,12,5.5z M24,17.5c0,0-1.52,0.71-3.93,1.37c-0.82-0.23-1.53-0.75-2.07-1.37c-0.73,0.84-1.8,1.5-3,1.5 s-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5s-2.27-0.66-3-1.5c-0.54,0.61-1.25,1.13-2.07,1.37C1.52,18.21,0,17.5,0,17.5 s2.93-1.36,7.13-2.08l1.35-4.17c0.31-0.95,1.32-1.47,2.27-1.16c0.09,0.03,0.19,0.07,0.27,0.11l0,0l2.47,1.3l2.84-1.5l1.65-3.71 l-0.51-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87,24,17.5,24,17.5z M15.02,12.96l-1.52,0.8l-1.75-0.92 l-0.71,2.17C11.36,15.01,11.68,15,12,15c0.71,0,1.4,0.03,2.07,0.08L15.02,12.96z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,6.25C11.5,7.22,10.72,8,9.75,8S8,7.22,8,6.25S8.78,4.5,9.75,4.5S11.5,5.28,11.5,6.25z M18,17.5h-0.5 c-0.87,0-1.74-0.33-2.5-1h0c-1.52,1.33-3.47,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18L18,17.5z M20,14.5 c0,0-1.43,0.64-3.67,1.19c-0.52-0.27-0.97-0.7-1.33-1.19c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 S5.61,15.34,5,14.5c-0.36,0.49-0.81,0.92-1.33,1.19C1.43,15.14,0,14.5,0,14.5s2.47-1.1,6-1.67l1.07-3.29 c0.26-0.79,1.1-1.22,1.89-0.96C9.05,8.6,9.13,8.64,9.2,8.68l2,1.12l2.44-1.3l1.33-3L14.6,4.51L15.72,2L18,3.02l-1.12,2.51L15.89,5.9 l-3.01,6.77C17,13.16,20,14.5,20,14.5z M12.65,10.72l-1.46,0.8l-1.36-0.77l-0.57,1.77C9.5,12.51,9.75,12.5,10,12.5 c0.63,0,1.24,0.02,1.83,0.07L12.65,10.72z\\\"></path>\"\n      }\n    }\n  },\n  \"man_2\": {\n    \"name\": \"man_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2.5v7h3v-7H16V9C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h2v5h2v-5h2V8.5C13,7.67,12.33,7,11.5,7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"severe_cold\": {\n    \"name\": \"severe_cold\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12,10.41 16,6.41 14.59,5 12,7.59 12,4 10,4 10,7.59 7.41,5 6,6.41 10,10.41 10,12 8.41,12 4.41,8 3,9.41 5.59,12 2,12 2,14 5.59,14 3,16.59 4.41,18 8.41,14 10,14 10,15.59 6,19.59 7.41,21 10,18.41 10,22 12,22 12,18.41 14.59,21 16,19.59 12,15.59 12,14 13.59,14 17.59,18 19,16.59 16.41,14 20,14 20,12 12,12\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"9.75,8.81 13,5.56 11.94,4.5 9.75,6.69 9.75,4 8.25,4 8.25,6.69 6.06,4.5 5,5.56 8.25,8.81 8.25,10.25 6.81,10.25 3.56,7 2.5,8.06 4.69,10.25 2,10.25 2,11.75 4.69,11.75 2.5,13.94 3.56,15 6.81,11.75 8.25,11.75 8.25,13.19 5,16.44 6.06,17.5 8.25,15.31 8.25,18 9.75,18 9.75,15.31 11.94,17.5 13,16.44 9.75,13.19 9.75,11.75 11.19,11.75 14.44,15 15.5,13.94 13.31,11.75 16,11.75 16,10.25 9.75,10.25\\\"></polygon><rect height=\\\"4\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"2\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"location_city\": {\n    \"name\": \"location_city\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_soccer\": {\n    \"name\": \"sports_soccer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,5.45l1.55-1.08 c1.14,0.41,2.11,1.16,2.81,2.12l-0.48,1.67l-0.68,0.23L10.5,6.15V5.45z M13.01,9.13l-1.14,3.37H8.12L6.99,9.13L10,7.02L13.01,9.13 z M7.95,4.37L9.5,5.45v0.7L6.31,8.39L5.63,8.15L5.15,6.49C5.84,5.53,6.82,4.78,7.95,4.37z M6.8,13.55l-1.52,0.13 c-0.79-1-1.26-2.26-1.27-3.63l1.3-0.95L6,9.34l1.19,3.53L6.8,13.55z M11.53,15.8c-0.49,0.13-1,0.2-1.53,0.2s-1.04-0.08-1.53-0.2 l-0.81-1.74l0.32-0.55h4.04l0.32,0.55L11.53,15.8z M14.72,13.69l-1.52-0.13l-0.4-0.68L14,9.34l0.69-0.24l1.3,0.95 C15.98,11.42,15.51,12.68,14.72,13.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ios_share\": {\n    \"name\": \"ios_share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,5l-1.42,1.42l-1.59-1.59V16h-1.98V4.83L9.42,6.42L8,5l4-4L16,5z M20,10v11c0,1.1-0.9,2-2,2H6c-1.11,0-2-0.9-2-2V10 c0-1.11,0.89-2,2-2h3v2H6v11h12V10h-3V8h3C19.1,8,20,8.89,20,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"self_improvement\": {\n    \"name\": \"self_improvement\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,12v-1c-1.67,0-3.28-0.85-4.11-2.16C11.55,8.29,10.91,8,10.27,8H9.73C9.09,8,8.45,8.29,8.11,8.84 C7.28,10.15,5.67,11,4,11v1c2,0,3.51-0.75,4.5-1.96v2.45l-2.77,1.19C5.29,13.88,5,14.31,5,14.79C5,15.46,5.54,16,6.21,16H8 c0,0,0-0.11,0-0.25C8,14.79,8.79,14,9.75,14h2c0.14,0,0.25,0.11,0.25,0.25s-0.11,0.25-0.25,0.25h-2c-0.69,0-1.25,0.56-1.25,1.25 c0,0.05,0,0.25,0,0.25h5.29c0.67,0,1.21-0.54,1.21-1.21c0-0.48-0.29-0.92-0.73-1.11L11.5,12.5v-2.45C12.49,11.25,14,12,16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hive\": {\n    \"name\": \"hive\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.5,9l-2.25-4h-3.31l-1.69-3h-4.5L8.06,5H4.75L2.5,9l1.69,3L2.5,15l2.25,4h3.31l1.69,3h4.5l1.69-3h3.31l2.25-4l-1.69-3 L21.5,9z M19.21,9l-1.12,2h-2.14l-1.12-2l1.12-2h2.14L19.21,9z M10.94,14l-1.12-2l1.12-2h2.12l1.12,2l-1.12,2H10.94z M13.08,4 l1.12,1.98L13.06,8h-2.12L9.8,5.98L10.92,4H13.08z M5.92,7h2.14l1.12,2l-1.12,2H5.92L4.79,9L5.92,7z M4.79,15l1.12-2h2.14l1.12,2 l-1.12,2H5.92L4.79,15z M10.92,20L9.8,18.02L10.94,16h2.12l1.13,2.02L13.08,20H10.92z M18.08,17h-2.14l-1.12-2l1.12-2h2.14l1.12,2 L18.08,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18.08,7.58L16.2,4.42h-2.89L11.88,2H8.12L6.69,4.42H3.8L1.92,7.58L3.36,10l-1.43,2.42l1.88,3.17h2.89L8.12,18h3.75 l1.43-2.42h2.89l1.88-3.17L16.64,10L18.08,7.58z M11.02,11.67H8.98L7.99,10l0.99-1.67h2.04L12.01,10L11.02,11.67z M8.98,3.5h2.04 l0.99,1.67l-0.99,1.67H8.98L7.99,5.17L8.98,3.5z M4.65,5.92h2.04l0.99,1.67L6.69,9.25H4.65L3.67,7.58L4.65,5.92z M3.67,12.42 l0.99-1.67h2.04l0.99,1.67l-0.99,1.67H4.65L3.67,12.42z M11.02,16.5H8.98l-0.99-1.67l0.99-1.67h2.04l0.99,1.67L11.02,16.5z M15.35,14.08h-2.04l-0.99-1.67l0.99-1.67h2.04l0.99,1.67L15.35,14.08z M15.35,9.25h-2.04l-0.99-1.67l0.99-1.67h2.04l0.99,1.67 L15.35,9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"poll\": {\n    \"name\": \"poll\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_injury\": {\n    \"name\": \"personal_injury\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,10c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S8,3.79,8,6C8,8.21,9.79,10,12,10z M12,4c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C10,4.9,10.9,4,12,4z M18.39,12.56C16.71,11.7,14.53,11,12,11c-2.53,0-4.71,0.7-6.39,1.56C4.61,13.07,4,14.1,4,15.22V22 h2v-6.78c0-0.38,0.2-0.72,0.52-0.88C7.71,13.73,9.63,13,12,13c0.76,0,1.47,0.07,2.13,0.2l-1.55,3.3H9.75C8.23,16.5,7,17.73,7,19.25 C7,20.77,8.23,22,9.75,22h2.18H18c1.1,0,2-0.9,2-2v-4.78C20,14.1,19.39,13.07,18.39,12.56z M10.94,20H9.75C9.34,20,9,19.66,9,19.25 c0-0.41,0.34-0.75,0.75-0.75h1.89L10.94,20z M18,20h-4.85l2.94-6.27c0.54,0.2,1.01,0.41,1.4,0.61C17.8,14.5,18,14.84,18,15.22V20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,8c1.66,0,3-1.34,3-3s-1.34-3-3-3S7,3.34,7,5S8.34,8,10,8z M10,3.5c0.83,0,1.5,0.67,1.5,1.5S10.83,6.5,10,6.5 S8.5,5.83,8.5,5S9.17,3.5,10,3.5z M15.03,10.37C13.56,9.5,11.84,9,10,9s-3.56,0.5-5.03,1.37C4.36,10.73,4,11.39,4,12.09V18h1.5 v-5.91c0-0.18,0.09-0.34,0.22-0.42C7.02,10.9,8.5,10.5,10,10.5c0.63,0,1.25,0.07,1.85,0.21l-1.29,2.79H8.73 c-1.24,0-2.25,1.01-2.25,2.25c0,1.24,1.01,2.25,2.25,2.25h5.77c0.83,0,1.5-0.67,1.5-1.5v-4.41C16,11.39,15.64,10.73,15.03,10.37z M9.18,16.5H8.73c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.15L9.18,16.5z M14.5,16.5h-3.66l2.46-5.33 c0.34,0.14,0.67,0.31,0.98,0.49c0.14,0.08,0.22,0.25,0.22,0.42V16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied\": {\n    \"name\": \"sentiment_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_kabaddi\": {\n    \"name\": \"sports_kabaddi\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"16.5\\\" cy=\\\"2.38\\\" r=\\\"2\\\"></circle><path d=\\\"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z\\\"></path><path d=\\\"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z\\\"></path><path d=\\\"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"13.5\\\" cy=\\\"2.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12,10.34c-0.81-0.06-1.53-0.32-2.17-0.78l0,0C9.6,9.4,9.38,9.22,9.17,9.01L7.29,7.12c-0.39-0.39-1.02-0.39-1.41,0 L3.07,9.91c-0.22,0.22-0.32,0.52-0.29,0.82l0.42,3.75l-2.75,2.75l0.71,0.71l3.25-3.25l0.04-2L6,14.03L6,18h1v-4.69l-1.96-2.05 l2.51-2.51l0.9,0.9c1.02,1.02,2.13,1.62,3.56,1.69V10.34z\\\"></path><path d=\\\"M9.5,6.99c0.82,0,1.5-0.68,1.5-1.5c0-0.77-0.59-1.38-1.34-1.47C9.61,4.01,9.56,3.99,9.5,3.99C8.68,3.99,8,4.66,8,5.49 C8,5.67,8.05,5.84,8.11,6C8.32,6.57,8.86,6.99,9.5,6.99z\\\"></path><path d=\\\"M19,9.53V6.18l-3.85-1.53c-0.18-0.08-0.37-0.11-0.56-0.11c-0.5,0-0.96,0.25-1.23,0.68l-0.82,1.32 C12,7.46,11.11,8.15,10.08,8.47c0.24,0.21,0.48,0.39,0.74,0.53c0.06,0.03,0.15,0.08,0.26,0.15c0.73-0.34,1.38-0.82,1.91-1.42 l0.44-0.51l0.67,3.33L12,12.24V18h1v-4.8l2.59-2.16L17.16,18h1.08L15.87,6.09L18,6.81v2.72H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hiking\": {\n    \"name\": \"hiking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M17.5,10.78c-1.23-0.37-2.22-1.17-2.8-2.18l-1-1.6 c-0.41-0.65-1.11-1-1.84-1c-0.78,0-1.59,0.5-1.78,1.44S7,23,7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3c1,1.15,2.41,2.01,4,2.34V23 H19V9h-1.5L17.5,10.78z M7.43,13.13l-2.12-0.41c-0.54-0.11-0.9-0.63-0.79-1.17l0.76-3.93c0.21-1.08,1.26-1.79,2.34-1.58l1.16,0.23 L7.43,13.13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M4.9,10.75l1.64,0.32l0.96-4.91L6.84,6.03C6.03,5.87,5.24,6.4,5.08,7.21l-0.57,2.94C4.46,10.43,4.63,10.69,4.9,10.75z M14,18h1V8 h-1l0,1.41c-2.11-0.42-2.13-2.19-3.11-2.97c-0.21-0.17-0.45-0.29-0.7-0.36c-0.81-0.23-1.7,0.27-1.88,1.16C8.15,8.06,6.2,18,6.2,18 h1.53l1.19-6.01l1.58,1.58V18H12v-5.05l-1.46-1.46l0.49-2.48c0.72,0.95,1.76,1.64,2.97,1.89L14,18z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_none\": {\n    \"name\": \"notifications_none\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clean_hands\": {\n    \"name\": \"clean_hands\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z\\\"></path>\"\n      }\n    }\n  },\n  \"person_remove\": {\n    \"name\": \"person_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\\\"></path><path d=\\\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"10\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\\\"></path><path d=\\\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\\\"></path><rect height=\\\"1\\\" transform=\\\"matrix(-1 4.479249e-11 -4.479249e-11 -1 30 19)\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"female\": {\n    \"name\": \"female\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.5,9.5C17.5,6.46,15.04,4,12,4S6.5,6.46,6.5,9.5c0,2.7,1.94,4.93,4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1 C15.56,14.43,17.5,12.2,17.5,9.5z M8.5,9.5C8.5,7.57,10.07,6,12,6s3.5,1.57,3.5,3.5S13.93,13,12,13S8.5,11.43,8.5,9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.25,8.25C14.25,5.9,12.35,4,10,4S5.75,5.9,5.75,8.25c0,2.09,1.51,3.82,3.5,4.17V14h-1.5v1.5h1.5V17h1.5v-1.5h1.5V14h-1.5 v-1.58C12.74,12.07,14.25,10.34,14.25,8.25z M7.25,8.25C7.25,6.73,8.48,5.5,10,5.5s2.75,1.23,2.75,2.75S11.52,11,10,11 S7.25,9.77,7.25,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_2\": {\n    \"name\": \"diversity_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.1,15.9l1.42-1.42C8.79,12.05,7,10.41,7,8.85C7,7.8,7.8,7,8.85,7c1.11,0,1.54,0.65,2.68,2h0.93 c1.12-1.31,1.53-2,2.68-2c0.87,0,1.55,0.54,1.77,1.32c0.35-0.04,0.68-0.06,1-0.06c0.36,0,0.7,0.03,1.03,0.08 C18.7,6.43,17.13,5,15.15,5c-0.12,0-0.23,0.03-0.35,0.04C14.92,4.71,15,4.37,15,4c0-1.66-1.34-3-3-3S9,2.34,9,4 c0,0.37,0.08,0.71,0.2,1.04C9.08,5.03,8.97,5,8.85,5C6.69,5,5,6.69,5,8.85C5,11.27,7.04,13.16,10.1,15.9z\\\"></path><path d=\\\"M22.5,16.24c-0.32-0.18-0.66-0.29-1-0.35c0.07-0.1,0.15-0.18,0.21-0.28c1.08-1.87,0.46-4.18-1.41-5.26 c-2.09-1.21-4.76-0.39-8.65,0.9l0.52,1.94c3.47-1.14,5.79-1.88,7.14-1.1c0.91,0.53,1.2,1.61,0.68,2.53 c-0.56,0.96-1.33,1-3.07,1.32l-0.47,0.81c0.58,1.62,0.97,2.33,0.39,3.32c-0.53,0.91-1.61,1.2-2.53,0.68 c-0.06-0.03-0.11-0.09-0.17-0.13c-0.3,0.67-0.64,1.24-1.03,1.73c0.07,0.04,0.13,0.09,0.2,0.14c1.87,1.08,4.18,0.46,5.26-1.41 c0.06-0.1,0.09-0.21,0.14-0.32c0.22,0.27,0.48,0.51,0.8,0.69c1.43,0.83,3.27,0.34,4.1-1.1S23.93,17.06,22.5,16.24z\\\"></path><path d=\\\"M12.32,14.01c-0.74,3.58-1.27,5.95-2.62,6.73c-0.91,0.53-2,0.24-2.53-0.68c-0.56-0.96-0.2-1.66,0.39-3.32L7.1,15.93 c-1.7-0.31-2.5-0.33-3.07-1.32c-0.53-0.91-0.24-2,0.68-2.53c0.09-0.05,0.19-0.08,0.29-0.11c-0.35-0.56-0.64-1.17-0.82-1.85 c-0.16,0.07-0.32,0.14-0.48,0.23c-1.87,1.08-2.49,3.39-1.41,5.26c0.06,0.1,0.14,0.18,0.21,0.28c-0.34,0.06-0.68,0.17-1,0.35 c-1.43,0.83-1.93,2.66-1.1,4.1s2.66,1.93,4.1,1.1c0.32-0.18,0.58-0.42,0.8-0.69c0.05,0.11,0.08,0.22,0.14,0.32 c1.08,1.87,3.39,2.49,5.26,1.41c2.09-1.21,2.71-3.93,3.55-7.94L12.32,14.01z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8.53,13.47l1.06-1.06C7.13,10.22,5.5,8.76,5.5,7.3c0-1.03,0.77-1.8,1.8-1.8c1.05,0,1.5,0.66,2.22,1.5h0.97 c1.26-1.48,1.57-1.5,2.22-1.5c0.81,0,1.46,0.49,1.69,1.19c0.27-0.03,0.52-0.05,0.77-0.05c0.27,0,0.53,0.02,0.78,0.05 C15.67,5.15,14.34,4,12.7,4c-0.09,0-0.17,0.02-0.26,0.03c0.04-0.17,0.06-0.35,0.06-0.53C12.5,2.12,11.38,1,10,1 C8.62,1,7.5,2.12,7.5,3.5c0,0.18,0.02,0.36,0.06,0.53C7.47,4.02,7.39,4,7.3,4C5.45,4,4,5.45,4,7.3C4,9.41,5.82,11.06,8.53,13.47z\\\"></path><path d=\\\"M18.75,13.09c-0.16-0.09-0.32-0.16-0.49-0.21c0.05-0.07,0.11-0.13,0.15-0.21c0.92-1.6,0.39-3.58-1.21-4.51 C15.38,7.1,13.04,7.85,9.6,8.99l0.39,1.45c3.13-1.03,5.21-1.71,6.47-0.98c0.89,0.51,1.17,1.57,0.66,2.46 c-0.53,0.91-1.33,0.97-2.41,1.17l-0.48,0.84c0.65,1.83,0.51,2.11,0.19,2.67c-0.51,0.89-1.57,1.17-2.46,0.66 c-0.18-0.11-0.35-0.25-0.5-0.42c-0.23,0.51-0.48,0.97-0.77,1.35c0.16,0.14,0.33,0.27,0.52,0.38c1.6,0.92,3.58,0.39,4.51-1.21 c0.04-0.08,0.07-0.16,0.1-0.24c0.13,0.12,0.27,0.22,0.43,0.32c1.2,0.69,2.72,0.28,3.42-0.92C20.35,15.3,19.95,13.78,18.75,13.09z\\\"></path><path d=\\\"M10.43,11.15c-0.67,3.23-1.12,5.37-2.38,6.1c-0.89,0.51-1.95,0.23-2.46-0.66c-0.53-0.91-0.18-1.63,0.19-2.67l-0.48-0.84 c-1.91-0.35-2.08-0.61-2.41-1.17c-0.51-0.89-0.23-1.95,0.66-2.46C3.31,8.98,3.16,8.5,3.08,8.02c-0.1,0.04-0.2,0.08-0.29,0.13 c-1.6,0.92-2.13,2.91-1.21,4.51c0.04,0.08,0.11,0.14,0.15,0.21c-0.17,0.05-0.33,0.12-0.49,0.21c-1.2,0.69-1.61,2.22-0.92,3.42 c0.69,1.2,2.22,1.61,3.42,0.92c0.16-0.09,0.3-0.2,0.43-0.32c0.04,0.08,0.06,0.16,0.1,0.24c0.92,1.6,2.91,2.13,4.51,1.21 c1.83-1.06,2.35-3.45,3.09-7.01L10.43,11.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications_paused\": {\n    \"name\": \"notifications_paused\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"school\": {\n    \"name\": \"school\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3 1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm6.82 6L12 12.72 5.18 9 12 5.28 18.82 9zM17 15.99l-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72z\\\"></path>\"\n      }\n    }\n  },\n  \"blind\": {\n    \"name\": \"blind\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"11.5\\\" cy=\\\"3.5\\\" r=\\\"2\\\"></circle><path d=\\\"M12.13,7.12c-0.17-0.35-0.44-0.65-0.8-0.85C10.72,5.91,9.99,5.93,9.4,6.24l0-0.01L4,9.3V14h2v-3.54l1.5-0.85 C7.18,10.71,7,11.85,7,13v5.33L4.4,21.8L6,23l3-4l0.22-3.54L11,18v5h2v-6.5l-1.97-2.81c-0.04-0.52-0.14-1.76,0.45-3.4 c0.75,1.14,1.88,1.98,3.2,2.41L20.63,23l0.87-0.5L16.02,13H17v-2c-0.49,0-2.88,0.17-4.08-2.21\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M12.68,10.78L16.85,18l0.65-0.38l-3.86-6.68c0.12,0.01,0.23,0.03,0.36,0.03v-1.5c-3.08,0-3.01-2.16-4.11-3.05 C9.63,6.22,9.32,6.09,9,6.04C8.63,5.97,8.23,6,7.86,6.15L4,7.79v3.21h1.5V8.78L6.86,8.2C6.65,8.96,6.5,9.7,6.5,10.49v4l-2,2.5l1,1 L8,15l0.19-2.62l1.31,1.61V18H11v-5.01l-1.46-1.93c-0.02-0.22-0.12-1.1,0.28-2.34C10.04,9.06,11.01,10.3,12.68,10.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_emotions\": {\n    \"name\": \"emoji_emotions\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z\\\"></path><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M10,14c1.86,0,3.41-1.28,3.86-3H6.14C6.59,12.72,8.14,14,10,14z\\\"></path><path d=\\\"M9.99,3C6.13,3,3,6.14,3,10s3.13,7,6.99,7c3.87,0,7.01-3.14,7.01-7S13.86,3,9.99,3z M9.99,16C6.69,16,4,13.31,4,10 s2.69-6,5.99-6C13.31,4,16,6.69,16,10S13.31,16,9.99,16z\\\"></path><circle cx=\\\"13\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"7\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"waving_hand\": {\n    \"name\": \"waving_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.03,4.95L3.49,8.49c-3.32,3.32-3.32,8.7,0,12.02s8.7,3.32,12.02,0l6.01-6.01c0.97-0.97,0.97-2.56,0-3.54 c-0.12-0.12-0.25-0.23-0.39-0.32l0.39-0.39c0.97-0.97,0.97-2.56,0-3.54c-0.16-0.16-0.35-0.3-0.54-0.41c0.4-0.92,0.23-2.02-0.52-2.77 c-0.87-0.87-2.22-0.96-3.2-0.28c-0.1-0.15-0.21-0.29-0.34-0.42c-0.97-0.97-2.56-0.97-3.54,0l-2.51,2.51 c-0.09-0.14-0.2-0.27-0.32-0.39C9.58,3.98,8,3.98,7.03,4.95z M8.44,6.37c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 l-3.18,3.18c1.17,1.17,1.17,3.07,0,4.24l1.41,1.41c1.45-1.45,1.82-3.57,1.12-5.36l6.3-6.3c0.2-0.2,0.51-0.2,0.71,0s0.2,0.51,0,0.71 l-4.6,4.6l1.41,1.41l6.01-6.01c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-6.01,6.01l1.41,1.41l4.95-4.95 c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-5.66,5.66l1.41,1.41l3.54-3.54c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L14.1,19.1c-2.54,2.54-6.65,2.54-9.19,0s-2.54-6.65,0-9.19L8.44,6.37z M23,17c0,3.31-2.69,6-6,6v-1.5c2.48,0,4.5-2.02,4.5-4.5H23z M1,7c0-3.31,2.69-6,6-6v1.5C4.52,2.5,2.5,4.52,2.5,7H1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.23,3.87L3.05,7.05c-2.73,2.73-2.73,7.17,0,9.9s7.17,2.73,9.9,0L17.9,12c0.78-0.78,0.78-2.05,0-2.83 c-0.12-0.12-0.26-0.23-0.4-0.31l0.57-0.57c0.78-0.78,0.78-2.05,0-2.83c-0.15-0.15-0.32-0.27-0.5-0.36c0.36-0.75,0.23-1.67-0.39-2.29 c-0.68-0.68-1.72-0.77-2.5-0.27c-0.09-0.16-0.2-0.31-0.33-0.44c-0.78-0.78-2.05-0.78-2.83,0L9.37,4.27 c-0.08-0.14-0.19-0.28-0.31-0.4C8.28,3.09,7.01,3.09,6.23,3.87z M7.29,4.93c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L5.17,8.46c0.98,0.98,0.98,2.56,0,3.54l1.06,1.06c1.19-1.19,1.47-2.93,0.86-4.39l5.51-5.51c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71L9.41,7.76l1.06,1.06l4.95-4.95c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95l1.06,1.06 l4.07-4.07c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L12.24,12l1.06,1.06l2.83-2.83c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95c-2.15,2.15-5.63,2.15-7.78,0s-2.15-5.63,0-7.78L7.29,4.93z M1,6c0-2.76,2.24-5,5-5v1 C3.79,2,2,3.79,2,6H1z M19,14c0,2.76-2.24,5-5,5v-1c2.21,0,4-1.79,4-4H19z\\\"></path>\"\n      }\n    }\n  },\n  \"cake\": {\n    \"name\": \"cake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_basketball\": {\n    \"name\": \"sports_basketball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M5.3,6.28C6.22,7.09,6.84,8.22,6.97,9.5 H4.03C4.13,8.29,4.59,7.18,5.3,6.28z M4.03,10.5h2.95c-0.13,1.28-0.75,2.41-1.67,3.22C4.59,12.82,4.13,11.71,4.03,10.5z M9.5,15.97c-1.34-0.11-2.55-0.66-3.5-1.51c1.11-0.99,1.84-2.39,1.97-3.96H9.5V15.97z M9.5,9.5H7.97C7.84,7.93,7.11,6.53,6,5.54 c0.95-0.85,2.16-1.4,3.5-1.51V9.5z M15.97,9.5h-2.95c0.13-1.28,0.75-2.41,1.67-3.22C15.41,7.18,15.87,8.29,15.97,9.5z M10.5,4.03 c1.34,0.11,2.55,0.66,3.5,1.51c-1.11,0.99-1.84,2.39-1.97,3.96H10.5V4.03z M10.5,15.97V10.5h1.53c0.13,1.57,0.86,2.97,1.97,3.96 C13.05,15.31,11.84,15.86,10.5,15.97z M14.7,13.72c-0.91-0.81-1.54-1.94-1.67-3.22h2.95C15.87,11.71,15.41,12.82,14.7,13.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"surfing\": {\n    \"name\": \"surfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M17,1.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S18.1,1.5,17,1.5z M14.43,8.48L12.18,10L16,13v3.84c0.53,0.38,1.03,0.78,1.49,1.17C16.81,18.59,15.94,19,15,19 c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.33,0-0.65-0.05-0.96-0.14C5.19,16.9,3,14.72,3,13.28C3,12.25,4.01,12,4.85,12 c0.98,0,2.28,0.31,3.7,0.83l-0.53-3.1C7.91,9.06,8.2,8.35,8.8,7.94l2.15-1.45l-2-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03 c0.45,0.09,0.93,0.37,1.22,0.89l0.88,1.55C17.01,8.98,18.64,10,20.5,10v2C17.91,12,15.64,10.58,14.43,8.48z M10.3,11.1l0.44,2.65 c0.92,0.42,2.48,1.27,3.26,1.75V14L10.3,11.1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,3.25C15.5,4.22,14.72,5,13.75,5S12,4.22,12,3.25s0.78-1.75,1.75-1.75S15.5,2.28,15.5,3.25z M15,16.5 c-1.52,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5c0.86,0,1.71-0.2,2.5-0.6 c1.57,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5C16.63,17.5,15.76,17.17,15,16.5z M11.9,7.2 L10,8.48L13,11v3.09c0.5,0.35,0.98,0.71,1.41,1.07c-0.54,0.5-1.2,0.84-1.91,0.84c-1,0-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 c-0.19,0-0.37-0.02-0.55-0.07C4.71,14.38,3,12.66,3,11.52c0-0.45,0.28-1.02,1.47-1.02c0.68,0,1.56,0.19,2.53,0.51L6.53,8.28 c-0.1-0.57,0.13-1.16,0.63-1.5l1.72-1.16L7.54,5.38l-2.3,1.56L4.4,5.7l2.8-1.9l4.22,0.69c0.36,0.06,0.69,0.23,0.91,0.51l1.38,2.1 c0.64,0.85,1.66,1.4,2.8,1.4V10c-1.64,0-3.09-0.79-4-2L11.9,7.2z M8.4,9.15l0.35,2.55c0.86,0.37,2.18,1.05,2.74,1.42V11.7L8.4,9.15z\\\"></path>\"\n      }\n    }\n  },\n  \"real_estate_agent\": {\n    \"name\": \"real_estate_agent\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,6.5V14h-2V7.5L14,4L9,7.5V9H7V6.5l7-5L21,6.5z M15.5,7h-1v1h1V7z M13.5,7h-1v1h1V7z M15.5,9h-1v1h1V9z M13.5,9h-1v1h1V9 z M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M3,20v-7h2v7H3z M13.97,20.41 L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79 c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,5.5v6h-1.5V6.26l-4-2.91l-4,2.91V7.5H6v-2l5.5-4L17,5.5z M18,16v0.5l-6.5,2L6,16.82V18H1V9h6l5.59,2 c0.85,0.3,1.41,1.1,1.41,2h1C16.66,13,18,14.34,18,16z M4.5,10.5h-2v6h2v-0.14V10.5z M16.39,15.43c-0.23-0.54-0.76-0.93-1.39-0.93 H9.74l-2-0.8l0.53-1.4l1.87,0.7h2.36c0-0.26-0.17-0.5-0.42-0.59L6.74,10.5H6v4.75l5.5,1.68L16.39,15.43z M12.62,6h-0.75v0.75h0.75V6 z M11.12,6h-0.75v0.75h0.75V6z M12.62,7.5h-0.75v0.75h0.75V7.5z M11.12,7.5h-0.75v0.75h0.75V7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"person_4\": {\n    \"name\": \"person_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z M18,18H6v-0.78c0-0.38,0.2-0.72,0.52-0.88C7.71,15.73,9.63,15,12,15 c2.37,0,4.29,0.73,5.48,1.34C17.8,16.5,18,16.84,18,17.22V18z\\\"></path><path d=\\\"M12,12c2.21,0,4-1.79,4-4c0-1.37,0-3.5,0-3.5C16,3.67,15.33,3,14.5,3c-0.52,0-0.98,0.27-1.25,0.67 C12.98,3.27,12.52,3,12,3s-0.98,0.27-1.25,0.67C10.48,3.27,10.02,3,9.5,3C8.67,3,8,3.67,8,4.5c0,0,0,2.12,0,3.5 C8,10.21,9.79,12,12,12z M10,5.5h4V8c0,1.1-0.9,2-2,2s-2-0.9-2-2V5.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3c0-1.03,0-2.83,0-2.83v0c0-0.62-0.5-1.12-1.12-1.12c-0.4,0-0.74,0.22-0.94,0.54 C10.74,3.26,10.4,3.04,10,3.04c-0.39,0-0.72,0.21-0.92,0.52C8.88,3.23,8.54,3,8.12,3C7.5,3,7,3.5,7,4.12c0,0,0,1.84,0,2.88 C7,8.66,8.34,10,10,10z M8.5,5h3v2c0,0.83-0.67,1.5-1.5,1.5S8.5,7.83,8.5,7V5z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z M14.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C7.02,12.9,8.5,12.5,10,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sanitizer\": {\n    \"name\": \"sanitizer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z\\\"></path>\"\n      }\n    }\n  },\n  \"fireplace\": {\n    \"name\": \"fireplace\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z\\\"></path><path d=\\\"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10.51,10.25c-0.11,0.32-0.11,0.61-0.06,0.96c0.07,0.42,0.24,0.78,0.15,1.2c-0.1,0.44-0.58,1.04-1.15,1.22 c0.96,0.79,2.4,0.28,2.54-0.99C12.12,11.49,10.91,11.16,10.51,10.25z\\\"></path><path d=\\\"M3,3v14h14V3H3z M10,15c-1.66,0-2.97-1.74-3-2.88c0-0.04,0-0.08-0.01-0.14c-0.14-1.8,1.27-3.24,2.87-4.29 c0.23,0.85,0.81,1.85,2.11,2.71c0.72,0.47,1.03,1,1.03,1.75C13,13.72,11.65,15,10,15z M16,16h-2v-1h-1.33 c0.81-0.7,1.33-1.71,1.33-2.85c0-1.45-0.87-2.19-1.48-2.59C10.16,8.01,10.8,6,10.8,6C5.42,8.74,5.99,11.74,6,12.15 C6.03,13.1,6.63,14.21,7.53,15H6v1H4V4h12V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"architecture\": {\n    \"name\": \"architecture\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z\\\"></path><path d=\\\"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z\\\"></path><path d=\\\"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.67,14.89L6.79,16l0.81-0.77l1.92-5.28C9.19,9.9,8.87,9.79,8.58,9.63L6.67,14.89z\\\"></path><path d=\\\"M11.42,9.63c-0.29,0.16-0.61,0.27-0.95,0.32l1.92,5.28L13.21,16l0.13-1.11L11.42,9.63z\\\"></path><path d=\\\"M12,7c0-0.93-0.64-1.71-1.5-1.93V4h-1v1.07C8.64,5.29,8,6.07,8,7c0,1.1,0.9,2,2,2S12,8.1,12,7z M10,8C9.45,8,9,7.55,9,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C11,7.55,10.55,8,10,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"heart_broken\": {\n    \"name\": \"heart_broken\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.5,3c-0.96,0-1.9,0.25-2.73,0.69L12,9h3l-3,10l1-9h-3l1.54-5.39C10.47,3.61,9.01,3,7.5,3C4.42,3,2,5.42,2,8.5 c0,4.13,4.16,7.18,10,12.5c5.47-4.94,10-8.26,10-12.5C22,5.42,19.58,3,16.5,3z M10.24,16.73C6.45,13.34,4,11,4,8.5 C4,6.54,5.54,5,7.5,5c0.59,0,1.19,0.15,1.73,0.42L7.35,12h3.42L10.24,16.73z M15.13,15.53L17.69,7h-2.91l0.61-1.82 C15.75,5.06,16.13,5,16.5,5C18.46,5,20,6.54,20,8.5C20,10.71,17.98,12.93,15.13,15.53z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13.6,3c-0.77,0-1.52,0.2-2.18,0.56L10,8h2.5L10,15.89L11,9H8.5l1.13-4.7C8.77,3.49,7.61,3,6.4,3C3.94,3,2,4.95,2,7.43 c0,3.33,3.33,5.79,8,10.07c4.38-3.98,8-6.65,8-10.07C18,4.95,16.06,3,13.6,3z M8.71,14.31C5.56,11.47,3.5,9.53,3.5,7.43 c0-1.64,1.27-2.93,2.9-2.93c0.53,0,1.07,0.14,1.54,0.41L6.6,10.5h2.67L8.71,14.31z M12.38,13.35l2.17-6.85h-2.5l0.59-1.84 c0.32-0.11,0.64-0.16,0.96-0.16c1.63,0,2.9,1.29,2.9,2.93C16.5,9.3,14.78,11.16,12.38,13.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"emoji_nature\": {\n    \"name\": \"emoji_nature\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z\\\"></path><path d=\\\"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.12,0.12-0.3,0.3-0.5,0.5L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c0.78,0.78,1.8,1.17,2.83,1.17c0.37,0,0.73-0.07,1.09-0.17 c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85 l-0.49-1.3c0.2-0.2,0.38-0.38,0.5-0.5c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M7.58,18.82c-0.15,0.04-0.3,0.06-0.46,0.06c-0.53,0-1.04-0.21-1.41-0.59c-0.38-0.38-0.59-0.88-0.59-1.41 c0-0.16,0.03-0.32,0.06-0.47c0.14,0.01,0.28,0.03,0.42,0.03c0.85,0,1.68-0.2,2.44-0.48C7.72,16.85,7.5,17.83,7.58,18.82z M4.67,14.29c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19 C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57 c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03 c-0.02-0.04-0.04-0.08-0.06-0.12c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09 c-0.03-0.03-0.07-0.05-0.11-0.07c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8 c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59C12.8,12.66,12.84,13.81,12.2,14.6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M16.96,4.8c-0.11-0.33-0.43-0.55-0.79-0.55c-0.02,0-0.04,0-0.06,0H15.5l-0.19-0.6C15.22,3.27,14.88,3,14.5,3h0 c-0.38,0-0.72,0.27-0.81,0.65l-0.19,0.6h-0.61c-0.02,0-0.04,0-0.06,0c-0.36,0-0.68,0.22-0.79,0.55c-0.12,0.35,0.03,0.73,0.35,0.92 l0.54,0.33l-0.24,0.77c-0.14,0.36-0.03,0.78,0.28,1.01C13.12,7.95,13.29,8,13.46,8c0.19,0,0.38-0.07,0.54-0.2l0.51-0.43l0.51,0.43 C15.16,7.93,15.35,8,15.54,8c0.17,0,0.34-0.05,0.49-0.16c0.31-0.23,0.43-0.65,0.28-1.01l-0.24-0.77l0.54-0.33 C16.93,5.53,17.08,5.15,16.96,4.8z M14.5,6C14.22,6,14,5.78,14,5.5C14,5.22,14.22,5,14.5,5S15,5.22,15,5.5C15,5.78,14.78,6,14.5,6 z\\\"></path><path d=\\\"M11.27,8.73c-0.36-0.36-0.8-0.59-1.27-0.68V7H9.5v1C8.86,8,8.22,8.24,7.73,8.73C7.6,8.87,7.41,9.05,7.2,9.26L5.74,8.71 C5.23,8.53,4.67,8.56,4.18,8.79C3.69,9.02,3.32,9.43,3.14,9.95c-0.36,1.01,0.13,2.1,1.09,2.53c-0.41,0.92-0.25,2.04,0.5,2.79 C5.22,15.76,5.86,16,6.5,16c0.35,0,0.71-0.08,1.03-0.23c0.2,0.45,0.54,0.82,0.99,1.04C8.8,16.94,9.1,17,9.4,17 c0.23,0,0.46-0.04,0.68-0.12h0c0.51-0.18,0.92-0.55,1.16-1.04c0.23-0.49,0.26-1.04,0.08-1.56l-0.56-1.49 c0.2-0.2,0.39-0.39,0.52-0.52C11.76,11.78,12,11.14,12,10.5h1V10h-1.05C11.85,9.54,11.63,9.09,11.27,8.73z M7.3,14.77 C7.06,14.92,6.79,15,6.5,15c-0.4,0-0.78-0.16-1.06-0.44c-0.5-0.5-0.55-1.27-0.18-1.85c0.09,0.01,0.18,0.02,0.27,0.02 c0.84,0,1.66-0.27,2.35-0.59C7.52,12.91,7.23,13.84,7.3,14.77z M4.71,11.6c-0.26-0.09-0.47-0.28-0.59-0.53s-0.13-0.53-0.04-0.79 c0.09-0.26,0.28-0.47,0.53-0.59c0.14-0.07,0.29-0.1,0.45-0.1c0.11,0,0.23,0.02,0.34,0.06l2.94,1.11 C7.46,11.31,5.95,12.04,4.71,11.6z M10.33,15.41c-0.12,0.25-0.33,0.44-0.59,0.53c-0.26,0.09-0.54,0.08-0.79-0.04 c-0.25-0.12-0.44-0.33-0.53-0.59c-0.44-1.24,0.29-2.75,0.84-3.63l1.11,2.93C10.46,14.88,10.45,15.16,10.33,15.41z M10.56,11.56 l-0.2,0.2l-0.5-1.31c-0.01-0.03-0.03-0.04-0.05-0.07c-0.02-0.04-0.04-0.07-0.07-0.1c-0.03-0.03-0.06-0.05-0.1-0.07 c-0.02-0.01-0.04-0.04-0.07-0.05L8.23,9.65l0.21-0.21C8.72,9.16,9.1,9,9.5,9c0.4,0,0.78,0.16,1.06,0.44 C11.15,10.02,11.15,10.98,10.56,11.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transgender\": {\n    \"name\": \"transgender\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,8c1.93,0,3.5,1.57,3.5,3.5S13.93,15,12,15s-3.5-1.57-3.5-3.5S10.07,8,12,8z M16.53,8.38l3.97-3.96V7h2V1h-6v2h2.58 l-3.97,3.97C14.23,6.36,13.16,6,12,6c-1.16,0-2.23,0.36-3.11,0.97L8.24,6.32l1.41-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42 l1.91,1.9L3.99,7.74l1.41,1.41l1.41-1.41l0.65,0.65C6.86,9.27,6.5,10.34,6.5,11.5c0,2.7,1.94,4.94,4.5,5.41L11,19H9v2h2v2h2v-2h2v-2 h-2l0-2.09c2.56-0.47,4.5-2.71,4.5-5.41C17.5,10.34,17.14,9.27,16.53,8.38z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,1.5V3h1.94l-3.16,3.16C11.62,5.74,10.84,5.5,10,5.5S8.38,5.74,7.72,6.16l-0.6-0.6L8.18,4.5L7.12,3.44L6.06,4.5L4.56,3 H6.5V1.5H2V6h1.5V4.06L5,5.56L3.94,6.62L5,7.68l1.06-1.06l0.56,0.56C6.07,7.89,5.75,8.78,5.75,9.75c0,2.09,1.51,3.83,3.5,4.18v1.57 h-1.5V17h1.5v1.5h1.5V17h1.5v-1.5h-1.5v-1.57c1.99-0.35,3.5-2.09,3.5-4.18c0-0.97-0.32-1.86-0.87-2.57l3.12-3.12V6H18V1.5H13.5z M10,12.5c-1.52,0-2.75-1.23-2.75-2.75C7.25,8.23,8.48,7,10,7s2.75,1.23,2.75,2.75C12.75,11.27,11.52,12.5,10,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_hockey\": {\n    \"name\": \"sports_hockey\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z\\\"></path><path d=\\\"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z\\\"></path><g><path d=\\\"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z\\\"></path></g><path d=\\\"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M3,14v2h1v-3C3.45,13,3,13.45,3,14z\\\"></path></g><g><polygon points=\\\"12.32,13 11.1,10.34 14,4 11.8,4 10,7.94 8.2,4 6,4 8.9,10.34 10,12.74 11.5,16 15,16 15,13\\\"></polygon></g><g><path d=\\\"M16,13v3h1v-2C17,13.45,16.55,13,16,13z\\\"></path></g><g><polygon points=\\\"7.68,13 5,13 5,16 8.5,16 9.45,13.94 8.35,11.54\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"person_outline\": {\n    \"name\": \"person_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"group_add\": {\n    \"name\": \"group_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"22,9 22,7 20,7 20,9 18,9 18,11 20,11 20,13 22,13 22,11 24,11 24,9\\\"></polygon><path d=\\\"M8,12c2.21,0,4-1.79,4-4s-1.79-4-4-4S4,5.79,4,8S5.79,12,8,12z M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6z\\\"></path><path d=\\\"M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z M14,18H2v-0.99C2.2,16.29,5.3,15,8,15s5.8,1.29,6,2V18z\\\"></path><path d=\\\"M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z\\\"></path><path d=\\\"M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M6,5.5c0.83,0,1.5,0.67,1.5,1.5S6.83,8.5,6,8.5 S4.5,7.83,4.5,7S5.17,5.5,6,5.5z\\\"></path></g><g><path d=\\\"M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z M10.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C3.02,12.9,4.5,12.5,6,12.5 c1.5,0,2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g><g><path d=\\\"M15.03,12.37c-0.92-0.54-1.94-0.92-3.02-1.14c0.92,0.64,1.48,1.71,1.48,2.86V16H16v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3s-1.34-3-3-3C9.79,4,9.58,4.02,9.38,4.06C10.07,4.85,10.5,5.87,10.5,7 c0,1.13-0.43,2.14-1.12,2.93C9.58,9.98,9.79,10,10,10z\\\"></path></g><g><polygon points=\\\"19.5,7.75 17.75,7.75 17.75,6 16.25,6 16.25,7.75 14.5,7.75 14.5,9.25 16.25,9.25 16.25,11 17.75,11 17.75,9.25 19.5,9.25\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"thumb_up_alt\": {\n    \"name\": \"thumb_up_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_handball\": {\n    \"name\": \"sports_handball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z\\\"></path><path d=\\\"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z\\\"></path><path d=\\\"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13.23,8.6l-3.46-2c-1.43-0.83-1.93-2.67-1.1-4.1l0.5-0.87L8.3,1.14L7.8,2C6.7,3.92,7.35,6.36,9.27,7.47l-4.5,7.79 l0.87,0.5l1.5-2.6l1.73,1l-3,5.2l0.87,0.5l6-10.39c1.43,0.83,1.93,2.67,1.1,4.1l-0.5,0.87l0.87,0.5l0.5-0.87 C15.8,12.15,15.14,9.71,13.23,8.6z\\\"></path><circle cx=\\\"11\\\" cy=\\\"2\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"domain_add\": {\n    \"name\": \"domain_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2 V7z M10,19H8v-2h2V19z M10,15H8v-2h2V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24z M18,11h-2v2h2 V11z M18,15h-2v2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M5,15.5H3.5V14H5V15.5z M5,12.33H3.5v-1.5H5V12.33z M5,9.17H3.5v-1.5H5V9.17z M5,6H3.5V4.5H5V6z M8.5,15.5H7V14h1.5V15.5z M8.5,12.33H7v-1.5h1.5V12.33z M8.5,9.17H7v-1.5h1.5V9.17z M7,6V4.5h1.5V6H7z M18,12.5V6h-8V3H2v14h11.5v-1.5H10v-1.67h1.5v-1.5H10 v-1.67h1.5v-1.5H10V7.5h6.5v5H18z M15,9.17h-1.5v1.5H15V9.17z M15,12.33h-1.5v1.5H15V12.33z M18,15.5V14h-1.5v1.5H15V17h1.5v1.5H18 V17h1.5v-1.5H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sports_gymnastics\": {\n    \"name\": \"sports_gymnastics\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M1,9h6l7-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2 l-0.5-10L8,11H1V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M19,5.16L12,10l-0.5,8H10l-0.5-7.7L7,9.5H1V8h5l5.5-4l0.98,1.14L9.2,7.5h2.3L18,4L19,5.16z M4,5.5C4,6.33,4.67,7,5.5,7 S7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_luggage\": {\n    \"name\": \"no_luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"piano_off\": {\n    \"name\": \"piano_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M8.25,19H5V7.83l2,2v3.67 c0,0.55,0.45,1,1,1h0.25V19z M9.75,19v-4.5H10c0.46,0,0.82-0.31,0.94-0.73l3.31,3.31V19H9.75z M11,8.17L5.83,3H19c1.1,0,2,0.9,2,2 v13.17l-2-2V5h-2v8.5c0,0.19-0.07,0.36-0.16,0.51L13,10.17V5h-2V8.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M7,15.5H4.5V6.62 L6,8.12v3.38C6,11.78,6.22,12,6.5,12H7V15.5z M8,15.5V12h0.5C8.78,12,9,11.78,9,11.5v-0.38l3,3v1.38H8z M5.12,3H15.5 C16.33,3,17,3.67,17,4.5v10.38l-1.5-1.5V4.5H14v7c0,0.11-0.04,0.2-0.1,0.28L11,8.88V4.5H9v2.38L5.12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tsunami\": {\n    \"name\": \"tsunami\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.67,17.63c-3.8,2.8-6.12,0.4-6.67,0c-0.66,0.49-2.92,2.76-6.67,0C3.43,19.03,2.65,19,2,19v2c1.16,0,2.3-0.32,3.33-0.93 c2.06,1.22,4.61,1.22,6.67,0c2.06,1.22,4.61,1.22,6.67,0C19.7,20.68,20.84,21,22,21v-2C21.34,19,20.5,18.98,18.67,17.63z\\\"></path><path d=\\\"M19.33,12H22v-2h-2.67C17.5,10,16,8.5,16,6.67c0-1.02,0.38-1.74,1.09-3.34C15.72,3.12,15.09,3,14,3 C7.36,3,2.15,8.03,2.01,14.5c0,0-0.01,2-0.01,2c1.16,0,2.3-0.32,3.33-0.93c2.06,1.22,4.61,1.22,6.67,0c2.06,1.22,4.61,1.22,6.67,0 c1.03,0.61,2.17,0.93,3.33,0.93v-2c-0.66,0-1.5-0.02-3.33-1.37c-3.8,2.8-6.12,0.4-6.67,0c-0.9,0.67-0.54,0.41-0.91,0.63 C10.39,12.82,10,11.7,10,10.5c0-2.58,1.77-4.74,4.21-5.33C14.08,5.68,14,6.19,14,6.67C14,9.61,16.39,12,19.33,12z M5.33,13.13 c-0.62,0.46-0.82,0.63-1.3,0.87c0.27-3.53,2.38-6.48,5.43-7.96C8.54,7.29,8,8.83,8,10.5c0,1.42,0.4,2.77,1.13,3.95 C8.41,14.52,7.34,14.6,5.33,13.13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.33,14.28c-1.95,1.59-3.31,1.65-5.33,0c-1.95,1.59-3.31,1.65-5.33,0C3.17,15.5,2.54,15.5,2,15.5V17 c0.93,0,1.85-0.28,2.67-0.82c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0C16.15,16.72,17.07,17,18,17v-1.5 C17.49,15.5,16.83,15.5,15.33,14.28z\\\"></path><path d=\\\"M16.5,10.5H18V9h-1.5c-1.6,0-2.9-1.3-2.9-2.9c0-0.57,0.18-1.31,0.46-1.91l0.46-0.92C13.44,3.1,12.92,3,12.01,3 C6.3,3,2,7.08,2,12.5V14c0.93,0,1.85-0.28,2.67-0.82c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0 C16.15,13.72,17.07,14,18,14v-1.5c-0.51,0-1.17,0-2.67-1.22c-1.95,1.59-3.31,1.65-5.33,0c-0.16,0.13-0.59,0.47-0.65,0.51 c-0.51-0.77-0.79-1.66-0.79-2.61c0-2.2,1.51-3.92,3.73-4.35c-0.1,0.44-0.17,0.88-0.17,1.27C12.11,8.53,14.08,10.5,16.5,10.5z M7.05,9.18c0,1.16,0.32,2.27,0.91,3.23c-0.52,0.1-1.5,0.33-3.3-1.14c-0.5,0.41-0.67,0.57-1.15,0.82 c0.16-3.27,2.21-5.91,5.21-7.03C7.69,6.14,7.05,7.58,7.05,9.18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports\": {\n    \"name\": \"sports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z\\\"></path></g><g><circle cx=\\\"11\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M9.5,6C8.06,6,6.8,6.68,5.98,7.73C5.99,7.66,6,7.58,6,7.5C6,6.67,5.33,6,4.5,6S3,6.67,3,7.5S3.67,9,4.5,9 c0.33,0,0.62-0.11,0.87-0.28C5.13,9.26,5,9.87,5,10.5C5,12.99,7.01,15,9.5,15s4.5-2.01,4.5-4.5c0-0.08-0.02-0.16-0.02-0.24 c0-0.04,0.01-0.09,0.01-0.12C13.93,9.53,14.37,9,14.97,9H18V6H9.5z M4.5,8C4.22,8,4,7.78,4,7.5C4,7.22,4.22,7,4.5,7S5,7.22,5,7.5 C5,7.78,4.78,8,4.5,8z M11.47,12.02C11.02,12.61,10.31,13,9.5,13C8.12,13,7,11.88,7,10.5c0-1.27,0.95-2.3,2.17-2.47 C9.28,8.02,9.39,8,9.5,8c1.38,0,2.5,1.12,2.5,2.5C12,11.07,11.8,11.6,11.47,12.02z\\\"></path></g><g><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"man\": {\n    \"name\": \"man\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2v7h4v-7h2V9C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h1.5v5h3v-5H13V8.5C13,7.67,12.33,7,11.5,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"tornado\": {\n    \"name\": \"tornado\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23,3H1l11,19L23,3z M19.53,5l-1.74,3H6.21L4.47,5H19.53z M10.26,15h3.48L12,18.01L10.26,15z M14.9,13H9.1l-1.74-3h9.27 L14.9,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M1,3l9,15l9-15H1z M16.35,4.5L14.85,7h-9.7l-1.5-2.5H16.35z M6.05,8.5h7.9l-1.5,2.5h-4.9L6.05,8.5z M8.45,12.5h3.1 L10,15.08L8.45,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"emoji_events\": {\n    \"name\": \"emoji_events\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M15,6h-2V5H7v1H5C4.45,6,4,6.45,4,7v1c0,1.66,1.34,3,3,3h0.18c0.36,1.01,1.24,1.77,2.32,1.95V15H7v1h2.5h1H13v-1h-2.5 v-2.05c1.08-0.18,1.96-0.94,2.32-1.95H13c1.66,0,3-1.34,3-3V7C16,6.45,15.55,6,15,6z M5,8V7h2v3C5.9,10,5,9.1,5,8z M10,12 c-1.1,0-2-0.9-2-2V6h4v4C12,11.1,11.1,12,10,12z M15,8c0,1.1-0.9,2-2,2V7h2V8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"face_2\": {\n    \"name\": \"face_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.97,13.52c0-0.01,0-0.02,0-0.04C23.21,12.38,24,10.78,24,9c0-3.31-2.69-6-6-6c-0.26,0-0.52,0.02-0.78,0.06 C16.19,1.23,14.24,0,12,0S7.81,1.23,6.78,3.06C6.52,3.02,6.26,3,6,3C2.69,3,0,5.69,0,9c0,1.78,0.79,3.38,2.02,4.48 c0,0.01,0,0.02,0,0.04C0.79,14.62,0,16.22,0,18c0,3.31,2.69,6,6,6c1.39,0,2.67-0.48,3.69-1.28C10.43,22.9,11.2,23,12,23 s1.57-0.1,2.31-0.28C15.33,23.52,16.61,24,18,24c3.31,0,6-2.69,6-6C24,16.22,23.21,14.62,21.97,13.52z M22,9 c0,0.55-0.12,1.07-0.32,1.54c-0.57-2.25-1.9-4.19-3.7-5.54c0.01,0,0.01,0,0.02,0C20.21,5,22,6.79,22,9z M12.03,5 c2.73,0.01,5.13,1.39,6.57,3.48c-0.71,0.57-1.6,0.89-2.53,0.89C13.82,9.38,12,7.55,12,5.31C12,5.21,12.02,5.11,12.03,5z M12,2 c1.25,0,2.36,0.59,3.1,1.5C14.12,3.18,13.08,3,12,3S9.88,3.18,8.9,3.5C9.64,2.59,10.75,2,12,2z M6,5c0.01,0,0.01,0,0.02,0 c-1.8,1.35-3.13,3.29-3.7,5.54C2.12,10.07,2,9.55,2,9C2,6.79,3.79,5,6,5z M6,22c-2.21,0-4-1.79-4-4c0-0.69,0.19-1.32,0.5-1.88 c0.8,2.44,2.52,4.47,4.74,5.68C6.85,21.93,6.44,22,6,22z M4,13c0-3.72,2.56-6.85,6-7.74c0,0.02,0,0.03,0,0.05 c0,3.34,2.72,6.06,6.06,6.06c1.26,0,2.45-0.39,3.45-1.09C19.82,11.14,20,12.05,20,13c0,4.41-3.59,8-8,8S4,17.41,4,13z M18,22 c-0.44,0-0.85-0.07-1.25-0.2c2.23-1.21,3.94-3.24,4.74-5.68c0.31,0.56,0.5,1.2,0.5,1.88C22,20.21,20.21,22,18,22z\\\"></path><circle cx=\\\"9\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.12,11.5c1.13-0.87,1.87-2.22,1.87-3.75c0-2.62-2.13-4.75-4.75-4.75c-0.28,0-0.55,0.04-0.81,0.08 C13.75,1.29,12.03,0,10,0C7.97,0,6.25,1.29,5.57,3.08C5.3,3.04,5.03,3,4.75,3C2.13,3,0,5.13,0,7.75c0,1.53,0.74,2.88,1.87,3.75 C0.74,12.37,0,13.72,0,15.25C0,17.87,2.13,20,4.75,20c1.24,0,2.36-0.49,3.2-1.28C8.6,18.9,9.29,19,10,19 c0.71,0,1.39-0.1,2.05-0.27C12.89,19.51,14,20,15.24,20c2.62,0,4.75-2.13,4.75-4.75C19.99,13.72,19.25,12.37,18.12,11.5z M15.24,4.5c1.79,0,3.25,1.46,3.25,3.25c0,0.7-0.24,1.34-0.62,1.87c-0.36-2.07-1.52-3.86-3.14-5.06c0,0,0,0,0-0.01 C14.9,4.52,15.07,4.5,15.24,4.5z M15.26,7.2c-0.43,0.19-0.89,0.3-1.37,0.3c-1.73,0-3.14-1.3-3.35-2.97 C12.48,4.69,14.18,5.71,15.26,7.2z M10,1.5c1.38,0,2.55,0.86,3.02,2.08c-0.01,0-0.01,0.01-0.02,0.01C12.08,3.21,11.06,3,10,3 C8.94,3,7.92,3.21,6.99,3.59c-0.01,0-0.01-0.01-0.01-0.01C7.45,2.37,8.62,1.5,10,1.5z M1.5,7.75c0-1.79,1.46-3.25,3.25-3.25 c0.18,0,0.35,0.02,0.52,0.05c0,0,0,0,0,0.01c-1.63,1.2-2.78,3-3.14,5.07C1.74,9.1,1.5,8.46,1.5,7.75z M4.75,18.5 c-1.79,0-3.25-1.46-3.25-3.25c0-0.81,0.3-1.55,0.8-2.11c0.6,2.15,2.06,3.93,4,4.95C5.83,18.34,5.31,18.5,4.75,18.5z M3.5,11 c0-3.26,2.41-5.96,5.55-6.42C9.29,7.05,11.36,9,13.89,9c0.74,0,1.46-0.17,2.11-0.49c0.32,0.77,0.5,1.61,0.5,2.49 c0,3.58-2.92,6.5-6.5,6.5S3.5,14.58,3.5,11z M15.24,18.5c-0.56,0-1.08-0.16-1.54-0.41c1.94-1.01,3.4-2.8,4-4.94 c0.49,0.57,0.79,1.3,0.79,2.1C18.49,17.04,17.03,18.5,15.24,18.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"man_4\": {\n    \"name\": \"man_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.75,7h-3.5C9.04,7,8.11,8.07,8.27,9.26L10,22h4l1.73-12.74C15.89,8.07,14.96,7,13.75,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M11.75,7h-3.5C7.31,7,6.61,7.85,6.77,8.77L8.5,18h3l1.73-9.23C13.39,7.85,12.69,7,11.75,7z\\\"></path><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sentiment_very_dissatisfied\": {\n    \"name\": \"sentiment_very_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"snowshoeing\": {\n    \"name\": \"snowshoeing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S12.5,4.6,12.5,3.5z M6.32,19.03l-1.14-1.47L4,18.5l2.38,3.04 c0.51,0.65,1.16,1.15,1.88,1.41c0.28,0.1,0.53,0.04,0.72-0.11c0.3-0.23,0.42-0.7,0.12-1.07c-0.08-0.1-0.2-0.17-0.31-0.22 c-0.43-0.18-0.82-0.45-1.14-0.83l-0.08-0.1L11,18.2l0.89-3.22l2.11,2v4.52h-2V23h3.87c0.82,0,1.61-0.21,2.26-0.61 c0.26-0.16,0.37-0.39,0.37-0.64c0-0.38-0.3-0.75-0.77-0.75c-0.13,0-0.26,0.04-0.37,0.1c-0.4,0.23-0.87,0.37-1.36,0.4l0-6.02l-2.11-2 l0.6-3C15.79,11.98,17.8,13,20,13v-2c-1.9,0-3.51-1.02-4.31-2.42l-1-1.58c-0.4-0.6-1-1-1.7-1C12.24,6,11.58,6.34,7,8.28V13h2V9.58 l1.79-0.7L9.2,17L6.32,19.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.25,3.75C10.25,2.78,11.03,2,12,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C11.04,5.5,10.25,4.72,10.25,3.75z M8.16,17.02c-0.4-0.11-0.78-0.35-1.06-0.7l2.29-1.65l0.53-2.69l1.58,1.58V17L10,17v1h3c0.67,0,1.3-0.22,1.8-0.6 c0.14-0.11,0.2-0.25,0.2-0.4c0-0.25-0.19-0.5-0.5-0.5c-0.11,0-0.21,0.04-0.3,0.1C13.87,16.85,13.45,17,13,17v-4.05l-1.46-1.46 l0.49-2.48C12.94,10.21,14.37,11,16,11V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L6,7.79V11h1.5V8.79 l1.65-0.7L8.03,13.8l-1.85,1.34L5.29,14L4.5,14.61l1.82,2.32C6.92,17.71,7.81,18,8.03,18c0.39,0,0.66-0.47,0.39-0.81 C8.35,17.11,8.26,17.05,8.16,17.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scoreboard\": {\n    \"name\": \"scoreboard\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,9h-2.5c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1H18c0.55,0,1-0.45,1-1v-4C19,9.45,18.55,9,18,9z M17.5,13.5H16v-3h1.5 V13.5z M9.5,15H5v-2.5c0-0.55,0.45-1,1-1h2v-1H5V9h3.5c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1h-2v1h3V15z M12.75,11h-1.5V9.5h1.5 V11z M12.75,14.5h-1.5V13h1.5V14.5z M22,6v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h3V2h2v2h6V2h2v2h3 C21.1,4,22,4.9,22,6z M20,18V6h-7.25v1.5h-1.5V6H4v12h7.25v-1.5h1.5V18H20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14.5,8h-2C12.22,8,12,8.22,12,8.5v3c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5v-3C15,8.22,14.78,8,14.5,8z M14,11h-1V9h1V11z M8,12H5v-2c0-0.28,0.22-0.5,0.5-0.5H7V9H5V8h2.5C7.78,8,8,8.22,8,8.5V10c0,0.28-0.22,0.5-0.5,0.5H6V11h2V12z M10.5,9.17h-1v-1h1V9.17z M10.5,11.83h-1v-1h1V11.83z M16.5,4H14V2.5h-1.5V4h-5V2.5H6V4H3.5C2.67,4,2,4.67,2,5.5v9 C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-6v-1h-1v1h-6v-9h6v1h1v-1h6V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"male\": {\n    \"name\": \"male\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,11c1.93,0,3.5,1.57,3.5,3.5S11.43,18,9.5,18S6,16.43,6,14.5S7.57,11,9.5,11z M9.5,9C6.46,9,4,11.46,4,14.5 S6.46,20,9.5,20s5.5-2.46,5.5-5.5c0-1.16-0.36-2.23-0.97-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36,10.66,9,9.5,9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,4h-4.5v1.5h1.94l-2.76,2.76C9.99,7.78,9.15,7.5,8.25,7.5C5.9,7.5,4,9.4,4,11.75C4,14.1,5.9,16,8.25,16 s4.25-1.9,4.25-4.25c0-0.9-0.28-1.74-0.76-2.43l2.76-2.76V8.5H16V4z M8.25,14.5c-1.52,0-2.75-1.23-2.75-2.75S6.73,9,8.25,9 S11,10.23,11,11.75S9.77,14.5,8.25,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flood\": {\n    \"name\": \"flood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.67,19c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1 v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1c1.95,0,2.1-1,3.34-1c1.22,0,1.4,1,3.33,1c1.93,0,2.1-1,3.33-1c1.22,0,1.4,1,3.33,1 v-2C20.76,20,20.62,19,18.67,19z\\\"></path><path d=\\\"M8.68,17.5c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1v-2 c-0.63,0-1-0.28-1.48-0.55l-2.02-7.53l2.09,0.85l0.74-1.86L9.78,2L2,11.61l1.57,1.23l1.39-1.78l0.93,3.48 c-0.18-0.02-0.35-0.05-0.56-0.05c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1C6.54,16.5,6.77,17.5,8.68,17.5z M10.42,4.41 l5.74,2.09l2.15,8.02c-1.54,0.11-1.82,0.89-2.85,0.96l-1.42-5.31l-3.86,1.04l0.91,3.39c-1.12,0.25-1.41,0.9-2.42,0.9 c-0.18,0-0.33-0.02-0.45-0.05L6.5,9.09L10.42,4.41z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.67,16.5c-0.96,0-1.13-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8c-1,0-1.1-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8V18 c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8c1.55,0,1.68-0.8,2.66-0.8 c0.96,0,1.13,0.8,2.66,0.8v-1.5c-1,0-1.1-0.8-2.66-0.8C13.77,15.7,13.67,16.5,12.67,16.5z\\\"></path><path d=\\\"M17.44,13.39L15.62,6.6l1.28,0.51l0.56-1.39L8.17,2L2,9.87l1.18,0.93l0.85-1.08l0.8,3c-0.06,0-0.1-0.01-0.16-0.01 c-1.56,0-1.68,0.8-2.67,0.8V15c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8 c1.55,0,1.68-0.8,2.66-0.8c0.96,0,1.13,0.8,2.66,0.8v-1.5C17.78,13.5,17.6,13.46,17.44,13.39z M6.54,13.28L5.19,8.24l3.47-4.42 l5.22,2.1l1.83,6.82c-1.42-0.14-1.87,0.41-2.41,0.65l-1.24-4.65L8.18,9.76l0.83,3.09c-0.69,0.23-0.96,0.65-1.67,0.65 C7,13.5,6.76,13.4,6.54,13.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kitesurfing\": {\n    \"name\": \"kitesurfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M6,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S6,4.1,6,3z M20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1z M22,23v-2h-1 c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75 c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z M21,13.28c0,1.44-2.19,3.62-5.04,5.58 C15.65,18.95,15.33,19,15,19c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.94,0-1.81-0.41-2.49-0.99 c0.46-0.39,0.96-0.78,1.49-1.17l-1.55-2.97C6.15,13.3,6,12.64,6,12V8c0-1.1,0.9-2,2-2h3c1.38,0,2.63-0.56,3.54-1.46l1.41,1.41 C14.68,7.21,12.93,8,11,8H9.6l0,3.5h2.8l1.69,1.88c1.95-0.84,3.77-1.38,5.06-1.38C19.99,12,21,12.25,21,13.28z M12.2,14.27 l-0.7-0.77L9,13.6l0.83,2.01C10.42,15.23,11.64,14.55,12.2,14.27z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M8.26,3c0,0.97-0.78,1.75-1.75,1.75S4.76,3.97,4.76,3s0.78-1.75,1.75-1.75S8.26,2.03,8.26,3z M16.33,1h-1.41l-2.52,2.51 l0.71,0.71L16.33,1z M15,16.5c-1.53,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5 C16.63,17.5,15.76,17.17,15,16.5z M15.52,10c-1.1,0-2.7,0.49-4.39,1.25L10,10H8V7h1c1.51,0,2.86-0.67,3.78-1.72l-1.07-1.07 C11.07,5,10.09,5.5,9,5.5H6.5C5.67,5.5,5,6.17,5,7v1.46v2.06c0,0.32,0.07,0.63,0.22,0.91l1.28,2.52c-0.42,0.31-0.82,0.63-1.19,0.94 C5.9,15.53,6.66,16,7.5,16c1,0,1.89-0.66,2.5-1.5c0.55,0.76,1.33,1.37,2.22,1.48C14.85,14.3,17,12.3,17,11.02 C17,10.2,16.19,10,15.52,10z M7.88,13L7.3,11.5h2.03l0.39,0.44C9.24,12.19,8.36,12.69,7.88,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sentiment_neutral\": {\n    \"name\": \"sentiment_neutral\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 14h6v1.5H9z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"water_drop\": {\n    \"name\": \"water_drop\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20c-3.35,0-6-2.57-6-6.2 c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z M7.83,14c0.37,0,0.67,0.26,0.74,0.62 c0.41,2.22,2.28,2.98,3.64,2.87c0.43-0.02,0.79,0.32,0.79,0.75c0,0.4-0.32,0.73-0.72,0.75c-2.13,0.13-4.62-1.09-5.19-4.12 C7.01,14.42,7.37,14,7.83,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c0,0-6.5,5.16-6.5,9.5c0,3.59,2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5C16.5,7.16,10,2,10,2z M10,16.5c-2.76,0-5-2.24-5-5 c0-2.47,3.1-5.8,5-7.53c1.9,1.73,5,5.05,5,7.53C15,14.26,12.76,16.5,10,16.5z M7.03,11.93c0.24,1.66,1.79,2.77,3.4,2.54 c0.3-0.04,0.57,0.19,0.57,0.49c0,0.28-0.2,0.47-0.42,0.5c-2.23,0.31-4.22-1.23-4.54-3.39C6,11.77,6.23,11.5,6.54,11.5 C6.79,11.5,7,11.68,7.03,11.93z\\\"></path>\"\n      }\n    }\n  },\n  \"co2\": {\n    \"name\": \"co2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-4C15,9.45,14.55,9,14,9z M13.5,13.5h-2v-3h2V13.5z M8,13v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H6.5v-0.5h-2v3h2V13H8z M20.5,15.5h-2 v1h3V18H17v-2.5c0-0.55,0.45-1,1-1h2v-1h-3V12h3.5c0.55,0,1,0.45,1,1v1.5C21.5,15.05,21.05,15.5,20.5,15.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,8h-2C9.22,8,9,8.22,9,8.5v3C9,11.78,9.22,12,9.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C12,8.22,11.78,8,11.5,8z M11,11h-1 V9h1V11z M17,14h-3v-2c0-0.28,0.22-0.5,0.5-0.5H16V11h-2v-1h2.5c0.28,0,0.5,0.22,0.5,0.5V12c0,0.28-0.22,0.5-0.5,0.5H15V13h2V14z M4,11.34V8.67C4,8.3,4.3,8,4.67,8h1.66C6.7,8,7,8.3,7,8.67v0.66H6V9H5v2h1v-0.34h1v0.67C7,11.7,6.7,12,6.34,12H4.67 C4.3,12,4,11.7,4,11.34z\\\"></path>\"\n      }\n    }\n  },\n  \"sign_language\": {\n    \"name\": \"sign_language\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.49,13l-0.93-1.86c-0.37-0.74-0.07-1.64,0.67-2.01L12.49,9l5.73,5.46c0.5,0.47,0.78,1.13,0.78,1.81v5.23 c0,1.38-1.12,2.5-2.5,2.5h-11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H10v-1H4c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h6v-1H3 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h7v-1H4.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H12.49z M14,13.2V15h-2v7h4 c0.55,0,1-0.45,1-1v-4.53c0-0.27-0.11-0.54-0.31-0.73L14,13.2z M11.78,7.12c-0.84,0.4-1.17,0.62-1.63,1.19l-2.7-2.85 c-0.38-0.4-0.36-1.03,0.04-1.41c0.4-0.38,1.03-0.36,1.41,0.04L11.78,7.12z M9.64,9.21C9.41,9.76,9.35,10.45,9.44,11H8.58L6.31,8.61 C5.93,8.21,5.94,7.58,6.35,7.2c0.4-0.38,1.03-0.36,1.41,0.04L9.64,9.21z M20.33,13.91l0.88-0.83c0.5-0.47,0.79-1.13,0.79-1.82V3.35 l-0.27-0.1c-0.78-0.28-1.64,0.12-1.92,0.9L19.1,6.11l-5.5-5.8c-0.38-0.4-1.01-0.42-1.41-0.04c-0.4,0.38-0.42,1.01-0.04,1.41 l3.79,3.99l-0.73,0.69l-4.82-5.08c-0.38-0.4-1.01-0.42-1.41-0.04c-0.4,0.38-0.42,1.01-0.04,1.41l3.78,3.98L15.38,9l1.93-1.87 l1.38,1.45L20,7.34v3.7c0,0.28-0.11,0.54-0.31,0.73l-0.7,0.66l0.61,0.58C19.89,13.28,20.13,13.58,20.33,13.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.37,10.75l-0.7-1.39c-0.28-0.56-0.05-1.23,0.5-1.51l0.19-0.1l4.51,4.3c0.4,0.38,0.62,0.9,0.62,1.45V17c0,1.1-0.9,2-2,2 H5.12c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75H8.5v-0.75H4c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75h4.5V14.5H3.25c-0.41,0-0.75-0.34-0.75-0.75C2.5,13.34,2.84,13,3.25,13H8.5v-0.75H4.38 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75H10.37z M11.5,10.9v1.35H10v5.25h3.5c0.28,0,0.5-0.22,0.5-0.5v-3.49 c0-0.14-0.06-0.27-0.15-0.36L11.5,10.9z M9.84,6.34C9.21,6.64,8.96,6.8,8.61,7.23L6.59,5.09C6.3,4.79,6.32,4.32,6.62,4.03 c0.3-0.29,0.78-0.27,1.06,0.03L9.84,6.34z M8.23,7.91C8.06,8.32,8.01,8.84,8.08,9.25H7.43l-1.7-1.79C5.45,7.16,5.46,6.68,5.76,6.4 c0.3-0.29,0.78-0.27,1.06,0.03L8.23,7.91z M15.02,7.43L16,6.51v3.23c0,0.14-0.06,0.27-0.16,0.36l-0.6,0.57l0.46,0.44 c0.21,0.2,0.39,0.43,0.55,0.68l0.62-0.58c0.4-0.38,0.63-0.91,0.63-1.46V3.52l-0.2-0.07c-0.58-0.21-1.23,0.09-1.44,0.67l-0.53,1.46 L11.2,1.23c-0.29-0.3-0.76-0.31-1.06-0.03c-0.3,0.29-0.31,0.76-0.03,1.06l2.84,2.99l-0.54,0.52L8.79,1.97 c-0.29-0.3-0.76-0.31-1.06-0.03C7.43,2.22,7.42,2.7,7.7,3l2.83,2.99l2,1.76l1.45-1.4L15.02,7.43z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people\": {\n    \"name\": \"people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 13.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zM9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm7.04 6.81c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"outdoor_grill\": {\n    \"name\": \"outdoor_grill\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z\\\"></path><path d=\\\"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z\\\"></path><path d=\\\"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z\\\"></path><path d=\\\"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.66,13.88c-0.14-0.21-0.33-0.4-0.54-0.54C14.8,13.13,14.41,13,14,13s-0.8,0.13-1.12,0.34 c-0.21,0.14-0.4,0.33-0.54,0.54c-0.03,0.04-0.04,0.08-0.06,0.12H7.72l1.36-2.09C9.38,11.96,9.69,12,10,12s0.62-0.04,0.92-0.09 l0.78,1.2c0.22-0.26,0.47-0.49,0.76-0.66l-0.54-0.83C13.73,10.86,15,9.08,15,7H5c0,2.08,1.27,3.86,3.08,4.62l-3,4.61 C4.93,16.46,5,16.77,5.23,16.92c0.23,0.15,0.54,0.08,0.69-0.15L7.07,15H12c0,1.1,0.9,2,2,2s2-0.9,2-2 C16,14.59,15.87,14.2,15.66,13.88z M6.13,8h7.75c-0.45,1.72-2.01,3-3.87,3C8.14,11,6.57,9.72,6.13,8z M14,16c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C15,15.55,14.55,16,14,16z\\\"></path><path d=\\\"M8.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C8.37,3.92,8.21,3.76,8.34,3h-0.5C7.71,3.67,7.86,4.23,8.37,4.78 C8.51,4.92,8.85,5.18,8.64,6z\\\"></path><path d=\\\"M10.14,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C9.87,3.92,9.71,3.76,9.84,3h-0.5C9.21,3.67,9.36,4.23,9.87,4.78 C10.01,4.92,10.35,5.18,10.14,6z\\\"></path><path d=\\\"M11.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77c-0.25-0.3-0.41-0.47-0.28-1.23h-0.5c-0.13,0.67,0.02,1.23,0.53,1.78 C11.51,4.92,11.85,5.18,11.64,6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"emoji_flags\": {\n    \"name\": \"emoji_flags\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><path d=\\\"M12,8l-1-1H7V5.85C7.29,5.67,7.5,5.37,7.5,5c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V16h1v-3h3l1,1h4V8 H12z M14,13h-2.59l-1-1H7V8h3.59l1,1H14V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snowboarding\": {\n    \"name\": \"snowboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S14,4.1,14,3z M21.4,20.09c-0.23-0.05-0.46,0.02-0.64,0.17 c-0.69,0.6-1.64,0.88-2.6,0.67L17,20.69l-1-6.19l-3.32-2.67l1.8-2.89C15.63,10.78,17.68,12,20,12v-2c-1.85,0-3.44-1.12-4.13-2.72 l-0.52-1.21C15.16,5.64,14.61,5,13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45-0.37,1-0.25,1.52L9.5,16L6,18.35 l-0.47-0.1c-0.96-0.2-1.71-0.85-2.1-1.67c-0.1-0.21-0.28-0.37-0.51-0.42c-0.43-0.09-0.82,0.2-0.9,0.58C1.98,16.88,2,17.05,2.07,17.2 c0.58,1.24,1.71,2.2,3.15,2.51l12.63,2.69c1.44,0.31,2.86-0.11,3.9-1.01c0.13-0.11,0.21-0.26,0.24-0.41 C22.06,20.6,21.83,20.18,21.4,20.09z M8.73,18.93l3.02-2.03l-0.44-3.32l2.84,2.02l0.75,4.64L8.73,18.93z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M12.75,4.5c0.96,0,1.75-0.78,1.75-1.75C14.5,1.78,13.72,1,12.75,1S11,1.78,11,2.75C11,3.72,11.79,4.5,12.75,4.5z M17.6,16.93c-0.14-0.03-0.29,0-0.41,0.09c-0.55,0.4-1.27,0.58-1.99,0.43L14,17.19l-1-4.89l-2.6-2l1.46-2.35 c0.98,1.53,2.69,2.55,4.64,2.55V9c-1.47,0-2.75-0.79-3.45-1.97L12.3,5.76C12.11,5.43,11.68,5,11,5H6.5l-2,3l1.27,0.9L7.3,6.5h1.93 L7.48,9.32c-0.3,0.48-0.38,1.07-0.22,1.61L8,13.5l-2.75,1.83l-0.66-0.14c-0.72-0.15-1.3-0.61-1.65-1.2 c-0.07-0.12-0.19-0.21-0.34-0.24c-0.29-0.06-0.54,0.13-0.59,0.38c-0.03,0.11,0,0.25,0.06,0.36c0.36,0.63,1.09,1.42,2.31,1.68 l8.89,1.89L15,18.42c1.29,0.27,2.3-0.23,2.79-0.59c0.11-0.08,0.17-0.19,0.2-0.31C18.04,17.27,17.9,16.99,17.6,16.93z M7.3,15.76 l2.45-1.62L9.3,11.5l2.34,1.65l0.76,3.7L7.3,15.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wallet\": {\n    \"name\": \"wallet\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,4H6C3.79,4,2,5.79,2,8v8c0,2.21,1.79,4,4,4h12c2.21,0,4-1.79,4-4V8C22,5.79,20.21,4,18,4z M16.14,13.77 c-0.24,0.2-0.57,0.28-0.88,0.2L4.15,11.25C4.45,10.52,5.16,10,6,10h12c0.67,0,1.26,0.34,1.63,0.84L16.14,13.77z M6,6h12 c1.1,0,2,0.9,2,2v0.55C19.41,8.21,18.73,8,18,8H6C5.27,8,4.59,8.21,4,8.55V8C4,6.9,4.9,6,6,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15,4H5C3.34,4,2,5.34,2,7v6c0,1.66,1.34,3,3,3h10c1.66,0,3-1.34,3-3V7C18,5.34,16.66,4,15,4z M13.3,11.33 c-0.18,0.15-0.43,0.21-0.66,0.15L3.69,9.29C3.94,8.82,4.43,8.5,5,8.5h10c0.43,0,0.82,0.19,1.1,0.49L13.3,11.33z M16.5,7.42 C16.06,7.16,15.55,7,15,7H5C4.45,7,3.94,7.16,3.5,7.42V7c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5V7.42z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_3\": {\n    \"name\": \"person_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z M18,18H6v-0.78c0-0.38,0.2-0.72,0.52-0.88C7.71,15.73,9.63,15,12,15 c2.37,0,4.29,0.73,5.48,1.34C17.8,16.5,18,16.84,18,17.22V18z\\\"></path><path d=\\\"M10,12c0.17,0,3.83,0,4,0c1.66,0,3-1.34,3-3c0-0.73-0.27-1.4-0.71-1.92C16.42,6.75,16.5,6.38,16.5,6 c0-1.25-0.77-2.32-1.86-2.77C14,2.48,13.06,2,12,2s-2,0.48-2.64,1.23C8.27,3.68,7.5,4.75,7.5,6c0,0.38,0.08,0.75,0.21,1.08 C7.27,7.6,7,8.27,7,9C7,10.66,8.34,12,10,12z M9.24,8.37C10.11,7.33,9.5,6.37,9.5,6c0-0.41,0.24-0.77,0.62-0.92 c0.29-0.12,0.55-0.31,0.75-0.54C11.04,4.33,11.42,4,12,4s0.96,0.33,1.13,0.53c0.2,0.24,0.46,0.42,0.75,0.54 C14.26,5.23,14.5,5.59,14.5,6c0,0.37-0.61,1.33,0.26,2.37C15.34,9.06,14.8,10,14,10h-4C9.2,10,8.66,9.06,9.24,8.37z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8.4,10c0.14,0,3.06,0,3.2,0c1.33,0,2.4-1.07,2.4-2.4c0-0.59-0.22-1.12-0.57-1.53c0.1-0.27,0.17-0.56,0.17-0.87 c0-1-0.61-1.86-1.49-2.22C11.6,2.39,10.85,2,10,2S8.4,2.39,7.89,2.98C7.01,3.34,6.4,4.2,6.4,5.2c0,0.31,0.06,0.6,0.17,0.87 C6.22,6.48,6,7.01,6,7.6C6,8.93,7.07,10,8.4,10z M7.72,7.03c0.35-0.42,0.45-1,0.25-1.51C7.78,5.03,8.03,4.55,8.46,4.37 c0.22-0.09,0.41-0.23,0.56-0.41C9.17,3.79,9.5,3.5,10,3.5s0.83,0.29,0.98,0.46c0.15,0.18,0.35,0.32,0.56,0.41 c0.43,0.18,0.68,0.66,0.49,1.15c-0.2,0.51-0.1,1.09,0.25,1.51C12.8,7.65,12.33,8.5,11.6,8.5H8.4C7.68,8.5,7.2,7.65,7.72,7.03z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z M14.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C7.02,12.9,8.5,12.5,10,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"construction\": {\n    \"name\": \"construction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8.48\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)\\\" width=\\\"3\\\" x=\\\"16.34\\\" y=\\\"12.87\\\"></rect><path d=\\\"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"5.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.3383 13.8538)\\\" width=\\\"2\\\" x=\\\"13.05\\\" y=\\\"10.62\\\"></rect><path d=\\\"M14.23,8.98c1.38,0,2.5-1.12,2.5-2.5c0-0.51-0.15-0.98-0.42-1.38l-2.08,2.08l-0.71-0.71l2.08-2.08 c-0.4-0.26-0.87-0.42-1.38-0.42c-1.38,0-2.5,1.12-2.5,2.5c0,0.32,0.07,0.63,0.18,0.91L10.69,8.6L9.64,7.54l0.71-0.71L8.93,5.42 L10.34,4C9.56,3.22,8.29,3.22,7.51,4L4.69,6.83l1.06,1.06l-2.13,0L3.27,8.24l2.83,2.83l0.35-0.35L6.46,8.6l1.06,1.06l0.71-0.71 l1.06,1.06l-4.6,4.6l1.41,1.41l7.22-7.22C13.6,8.91,13.91,8.98,14.23,8.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"elderly\": {\n    \"name\": \"elderly\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z\\\"></path>\"\n      }\n    }\n  },\n  \"face_5\": {\n    \"name\": \"face_5\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-1.12,0.23-2.18,0.65-3.15C4.74,8.94,4.86,9,5,9c0.28,0,0.5-0.22,0.5-0.5c0-0.25-0.19-0.45-0.43-0.49 c0.15-0.26,0.32-0.51,0.49-0.75C5.53,7.34,5.5,7.41,5.5,7.5C5.5,7.78,5.72,8,6,8s0.5-0.22,0.5-0.5C6.5,7.22,6.28,7,6,7 C5.87,7,5.75,7.05,5.66,7.13c0.52-0.68,1.15-1.28,1.86-1.76C7.51,5.41,7.5,5.45,7.5,5.5C7.5,5.78,7.72,6,8,6s0.5-0.22,0.5-0.5 c0-0.24-0.17-0.43-0.4-0.48c0.16-0.09,0.32-0.17,0.49-0.25C8.68,4.91,8.83,5,9,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.03-0.01-0.06-0.02-0.09c0.39-0.13,0.79-0.23,1.21-0.3C10.58,4.21,10.5,4.34,10.5,4.5C10.5,4.78,10.72,5,11,5 s0.5-0.22,0.5-0.5c0-0.21-0.13-0.38-0.3-0.46C11.46,4.01,11.73,4,12,4s0.54,0.01,0.8,0.04c-0.18,0.08-0.3,0.25-0.3,0.46 C12.5,4.78,12.72,5,13,5s0.5-0.22,0.5-0.5c0-0.16-0.08-0.29-0.19-0.38c0.41,0.07,0.82,0.17,1.21,0.3 C14.51,4.44,14.5,4.47,14.5,4.5C14.5,4.78,14.72,5,15,5c0.17,0,0.32-0.09,0.41-0.23c0.17,0.08,0.33,0.16,0.49,0.25 c-0.23,0.05-0.4,0.24-0.4,0.48C15.5,5.78,15.72,6,16,6s0.5-0.22,0.5-0.5c0-0.05-0.01-0.09-0.03-0.13 c0.71,0.48,1.34,1.08,1.86,1.76C18.25,7.05,18.13,7,18,7c-0.28,0-0.5,0.22-0.5,0.5C17.5,7.78,17.72,8,18,8s0.5-0.22,0.5-0.5 c0-0.09-0.03-0.16-0.07-0.23c0.18,0.24,0.34,0.49,0.49,0.75C18.69,8.05,18.5,8.25,18.5,8.5C18.5,8.78,18.72,9,19,9 c0.14,0,0.26-0.06,0.35-0.15C19.77,9.82,20,10.88,20,12C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"16\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"11\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.71,0.12-1.39,0.33-2.03C3.88,7.99,3.94,8,4,8c0.28,0,0.5-0.22,0.5-0.5c0-0.2-0.12-0.37-0.29-0.45 C4.3,6.88,4.4,6.71,4.51,6.54C4.53,6.8,4.74,7,5,7c0.28,0,0.5-0.22,0.5-0.5C5.5,6.22,5.28,6,5,6C4.95,6,4.91,6.01,4.87,6.03 c0.22-0.28,0.45-0.54,0.71-0.77C5.53,5.33,5.5,5.41,5.5,5.5C5.5,5.78,5.72,6,6,6s0.5-0.22,0.5-0.5C6.5,5.22,6.28,5,6,5 C5.93,5,5.87,5.01,5.81,5.04c0.22-0.19,0.45-0.35,0.7-0.51C6.52,4.79,6.73,5,7,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.17-0.09-0.31-0.21-0.4c0.15-0.07,0.3-0.13,0.45-0.19C7.81,3.96,7.9,4,8,4c0.21,0,0.39-0.13,0.46-0.31 C8.8,3.61,9.15,3.55,9.51,3.53C9.52,3.79,9.73,4,10,4s0.48-0.21,0.49-0.47c0.36,0.03,0.71,0.08,1.04,0.17C11.61,3.87,11.79,4,12,4 c0.1,0,0.19-0.04,0.26-0.09c0.15,0.06,0.3,0.12,0.45,0.19c-0.13,0.09-0.21,0.23-0.21,0.4C12.5,4.78,12.72,5,13,5 c0.27,0,0.48-0.21,0.49-0.47c0.24,0.16,0.48,0.32,0.7,0.51C14.13,5.01,14.07,5,14,5c-0.28,0-0.5,0.22-0.5,0.5 C13.5,5.78,13.72,6,14,6s0.5-0.22,0.5-0.5c0-0.09-0.03-0.17-0.08-0.25c0.26,0.24,0.49,0.5,0.71,0.77C15.09,6.01,15.05,6,15,6 c-0.28,0-0.5,0.22-0.5,0.5C14.5,6.78,14.72,7,15,7c0.26,0,0.47-0.2,0.49-0.46c0.11,0.17,0.2,0.34,0.29,0.51 C15.62,7.13,15.5,7.3,15.5,7.5C15.5,7.78,15.72,8,16,8c0.06,0,0.12-0.01,0.17-0.03C16.38,8.61,16.5,9.29,16.5,10 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sports_esports\": {\n    \"name\": \"sports_esports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z\\\"></path><polygon points=\\\"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10\\\"></polygon><circle cx=\\\"17\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.82,13.55l-0.62-5.76C15.08,6.77,14.23,6,13.21,6H6.79C5.77,6,4.92,6.77,4.81,7.78l-0.62,5.76 C4.09,14.32,4.69,15,5.46,15c0.34,0,0.67-0.14,0.91-0.38L8,13h4l1.62,1.62c0.24,0.24,0.57,0.38,0.91,0.38 C15.31,15,15.91,14.32,15.82,13.55z M14.76,13.9c-0.03,0.04-0.1,0.1-0.22,0.1c-0.08,0-0.15-0.03-0.21-0.09L12.41,12H7.59 l-1.91,1.91C5.62,13.97,5.54,14,5.46,14c-0.11,0-0.19-0.06-0.22-0.1c-0.03-0.04-0.09-0.12-0.07-0.25L5.8,7.89 C5.86,7.38,6.28,7,6.79,7h6.41c0.51,0,0.94,0.38,0.99,0.89l0.63,5.78C14.84,13.78,14.79,13.86,14.76,13.9z\\\"></path><polygon points=\\\"8,8 7.5,8 7.5,9.25 6.25,9.25 6.25,9.75 7.5,9.75 7.5,11 8,11 8,9.75 9.25,9.75 9.25,9.25 8,9.25\\\"></polygon><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"mood\": {\n    \"name\": \"mood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_baseball\": {\n    \"name\": \"sports_baseball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24C15.63,19.34,13.89,20,12,20 z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12S19.4,15.45,18.39,16.78z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M4,10c0-1.63,0.65-3.11,1.71-4.19 C7.09,6.7,8,8.24,8,10s-0.91,3.3-2.29,4.19C4.65,13.11,4,11.63,4,10z M10,16c-1.31,0-2.51-0.42-3.5-1.14C8.01,13.77,9,12,9,10 S8.01,6.23,6.5,5.14C7.49,4.42,8.69,4,10,4s2.51,0.42,3.5,1.14C11.99,6.23,11,8,11,10s0.99,3.77,2.5,4.86 C12.51,15.58,11.31,16,10,16z M14.29,14.19C12.91,13.3,12,11.76,12,10s0.91-3.3,2.29-4.19C15.35,6.89,16,8.37,16,10 S15.35,13.11,14.29,14.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sick\": {\n    \"name\": \"sick\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z\\\"></path>\"\n      }\n    }\n  },\n  \"nights_stay\": {\n    \"name\": \"nights_stay\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.78 17.51c-2.47 0-6.57-1.33-8.68-5.43-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.61-.26 1.28-.42 1.98-.42 0-3.09 1.73-5.77 4.3-7.1-.5 2.19-.54 5.04 1.04 8.1 1.57 3.04 4.18 4.95 6.8 5.86-1.23.74-2.65 1.15-4.13 1.15-.5 0-1-.05-1.48-.14-.37.7-.94 1.27-1.64 1.64.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-.17.01-.37.02-.57.02z\\\"></path><path d=\\\"M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.46 13.85c-1.73 0-4.6-.93-6.08-3.8-1.63-3.16-.35-5.94.38-7.05C6 3.13 3 6.21 3 9.99c0 .4.04.78.1 1.16.29-.09.59-.15.9-.15.03 0 .06.01.09.01-.05-.33-.09-.67-.09-1.02 0-2.63 1.67-4.85 4.03-5.67-.52 1.53-.79 3.76.46 6.18 1.2 2.33 3.32 3.66 5.31 4.14-1.06.87-2.39 1.36-3.79 1.36-.64 0-1.25-.1-1.83-.29-.18.32-.42.59-.72.81.79.3 1.65.48 2.55.48 2.45 0 4.6-1.26 5.86-3.17-.13.02-.27.02-.41.02z\\\"></path><path d=\\\"M7.5 14.5c0-.83-.67-1.5-1.5-1.5h-.27c-.35-.6-.99-1-1.73-1-1.1 0-2 .9-2 2s.9 2 2 2h2c.83 0 1.5-.67 1.5-1.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_account\": {\n    \"name\": \"switch_account\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M14,11c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C11,9.66,12.34,11,14,11z M14,7c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.45,7,14,7z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C22,2.9,21.1,2,20,2z M10.69,16c0.95-0.63,2.09-1,3.31-1s2.36,0.37,3.31,1H10.69z M20,15.73C18.53,14.06,16.4,13,14,13 s-4.53,1.06-6,2.73V4h12V15.73z\\\"></path></g>\"\n      }\n    }\n  },\n  \"volcano\": {\n    \"name\": \"volcano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,8h-7l-2,5H6l-4,9h20L18,8z M7.3,15H9h1.35l0.5-1.26l1.5-3.74h4.14l2.86,10H5.08L7.3,15z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.9792 14.2929)\\\" width=\\\"4\\\" x=\\\"16.24\\\" y=\\\"3.76\\\"></rect></g><g><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.5061 8.2929)\\\" width=\\\"2\\\" x=\\\"8.76\\\" y=\\\"2.76\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15,7H9l-1,4H5l-3,7h16L15,7z M5.99,12.5H8h1.17l0.28-1.14l0.72-2.86h3.68l2.18,8H4.27L5.99,12.5z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"11.25\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.7627 11.8536)\\\" width=\\\"3\\\" x=\\\"13.69\\\" y=\\\"3.05\\\"></rect></g><g><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1067 7.3403)\\\" width=\\\"1.5\\\" x=\\\"8.06\\\" y=\\\"2.3\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"single_bed\": {\n    \"name\": \"single_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,8V6c0-0.55-0.45-1-1-1H6C5.45,5,5,5.45,5,6v2C4.45,8,4,8.45,4,9v4h1l0.75,2h0.5L7,13h6l0.75,2h0.5L15,13h1V9 C16,8.45,15.55,8,15,8z M10.5,6H14v2h-3.5V6z M6,6h3.5v2H6V6z M15,12H5V9h10V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public_off\": {\n    \"name\": \"public_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"party_mode\": {\n    \"name\": \"party_mode\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z\\\"></path>\"\n      }\n    }\n  },\n  \"person\": {\n    \"name\": \"person\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 10c2.7 0 5.8 1.29 6 2H6c.23-.72 3.31-2 6-2m0-12C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 10c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"ice_skating\": {\n    \"name\": \"ice_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M21,17c0,1.66-1.34,3-3,3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-0.74C12.62,9.19,12,8.39,12,7.5V3H3v15h3v2H2v2h16 c2.76,0,5-2.24,5-5H21z M5,16V5h5v1H8.5C8.22,6,8,6.22,8,6.5C8,6.78,8.22,7,8.5,7H10l0.1,1H8.5C8.22,8,8,8.22,8,8.5 C8,8.78,8.22,9,8.5,9h1.81c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C16.4,12.33,17,13.1,17,14v2H5z M14,20H8v-2h6V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.5,14c0,1.38-1.12,2.5-2.5,2.5h-1.5V15H16v-3.5c0-1.35-0.89-2.49-2.2-2.85l-2.2-0.6c-0.65-0.18-1.1-0.77-1.1-1.45V2.5H3 V15h2.5v1.5H2V18h13c2.21,0,4-1.79,4-4H17.5z M4.5,13.5V4H9v1H7.5C7.22,5,7,5.22,7,5.5C7,5.77,7.22,6,7.5,6H9 c0,0.57-0.01,0.76,0.03,1H7.5C7.22,7,7,7.22,7,7.5C7,7.77,7.22,8,7.5,8h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6 c0.65,0.18,1.1,0.73,1.1,1.4v2H4.5z M12,16.5H7V15h5V16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_golf\": {\n    \"name\": \"sports_golf\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"14\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3C7.24,3,5,5.24,5,8s2.24,5,5,5s5-2.24,5-5S12.76,3,10,3z M10,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.21,12.21,12,10,12z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><path d=\\\"M7,15h1.5c0.55,0,1,0.45,1,1v1h1v-1c0-0.55,0.45-1,1-1H13v-1H7V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"handshake\": {\n    \"name\": \"handshake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.22,19.85c-0.18,0.18-0.5,0.21-0.71,0c-0.18-0.18-0.21-0.5,0-0.71l3.39-3.39l-1.41-1.41l-3.39,3.39 c-0.19,0.2-0.51,0.19-0.71,0c-0.21-0.21-0.18-0.53,0-0.71l3.39-3.39l-1.41-1.41l-3.39,3.39c-0.18,0.18-0.5,0.21-0.71,0 c-0.19-0.19-0.19-0.51,0-0.71l3.39-3.39L9.24,10.1l-3.39,3.39c-0.18,0.18-0.5,0.21-0.71,0c-0.19-0.2-0.19-0.51,0-0.71L9.52,8.4 l1.87,1.86c0.95,0.95,2.59,0.94,3.54,0c0.98-0.98,0.98-2.56,0-3.54l-1.86-1.86l0.28-0.28c0.78-0.78,2.05-0.78,2.83,0l4.24,4.24 c0.78,0.78,0.78,2.05,0,2.83L12.22,19.85z M21.83,13.07c1.56-1.56,1.56-4.09,0-5.66l-4.24-4.24c-1.56-1.56-4.09-1.56-5.66,0 l-0.28,0.28l-0.28-0.28c-1.56-1.56-4.09-1.56-5.66,0L2.17,6.71c-1.42,1.42-1.55,3.63-0.4,5.19l1.45-1.45 C2.83,9.7,2.96,8.75,3.59,8.12l3.54-3.54c0.78-0.78,2.05-0.78,2.83,0l3.56,3.56c0.18,0.18,0.21,0.5,0,0.71 c-0.21,0.21-0.53,0.18-0.71,0L9.52,5.57l-5.8,5.79c-0.98,0.97-0.98,2.56,0,3.54c0.39,0.39,0.89,0.63,1.42,0.7 c0.07,0.52,0.3,1.02,0.7,1.42c0.4,0.4,0.9,0.63,1.42,0.7c0.07,0.52,0.3,1.02,0.7,1.42c0.4,0.4,0.9,0.63,1.42,0.7 c0.07,0.54,0.31,1.03,0.7,1.42c0.47,0.47,1.1,0.73,1.77,0.73c0.67,0,1.3-0.26,1.77-0.73L21.83,13.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M6.12,3.94c0.58-0.58,1.54-0.58,2.12,0l3.11,3.11c0.19,0.19,0.19,0.51,0,0.71c-0.19,0.19-0.51,0.19-0.71,0L7.89,5L3.6,9.28 c-0.78,0.78-0.78,2.05,0,2.83c0.33,0.33,0.76,0.53,1.19,0.57c0.05,0.44,0.24,0.86,0.57,1.19c0.33,0.33,0.76,0.53,1.19,0.57 c0.05,0.44,0.24,0.86,0.57,1.19c0.33,0.33,0.76,0.53,1.19,0.57c0.05,0.44,0.24,0.86,0.57,1.19c0.78,0.78,2.05,0.78,2.83,0l6.39-6.4 c1.17-1.17,1.17-3.07,0-4.24l-3.89-3.89c-1.17-1.17-3.07-1.17-4.24,0L9.65,3.22L9.31,2.88c-1.17-1.17-3.07-1.17-4.24,0L1.88,6.06 C0.83,7.11,0.72,8.75,1.55,9.92l1.09-1.09c-0.26-0.56-0.16-1.24,0.3-1.7L6.12,3.94 M17.06,7.83c0.58,0.58,0.58,1.54,0,2.12 l-6.39,6.4c-0.19,0.19-0.51,0.19-0.71,0s-0.19-0.51,0-0.71l2.47-2.47l-1.06-1.06l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0 s-0.19-0.51,0-0.71l2.47-2.47l-1.06-1.06l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0c-0.19-0.19-0.19-0.51,0-0.71l2.47-2.47L7.85,8.58 l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0c-0.19-0.19-0.19-0.51,0-0.71l3.23-3.23l1.7,1.7c0.78,0.78,2.05,0.78,2.83,0 s0.78-2.05,0-2.83l-1.7-1.7l0.34-0.34c0.58-0.58,1.54-0.58,2.12,0L17.06,7.83\\\"></path></g>\"\n      }\n    }\n  },\n  \"group_off\": {\n    \"name\": \"group_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8c0-1.42-0.5-2.73-1.33-3.76C14.09,4.1,14.53,4,15,4c2.21,0,4,1.79,4,4s-1.79,4-4,4c-0.06,0-0.12,0-0.18,0l-0.77-0.77 C14.65,10.29,15,9.18,15,8z M22.83,20H23v-3c0-2.18-3.58-3.47-6.34-3.87c1.1,0.75,1.95,1.71,2.23,2.94L22.83,20z M9,6 C8.94,6,8.89,6,8.84,6.01l-1.6-1.6C7.77,4.15,8.37,4,9,4c2.21,0,4,1.79,4,4c0,0.63-0.15,1.23-0.41,1.76l-1.6-1.6 C11,8.11,11,8.06,11,8C11,6.9,10.1,6,9,6z M9.17,12C9.11,12,9.06,12,9,12c-2.21,0-4-1.79-4-4c0-0.06,0-0.11,0-0.17L0.69,3.51 L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0-2.66,5.33-4,8-4c0.37,0,0.8,0.03,1.25,0.08L9.17,12z M9,15 c-2.7,0-5.8,1.29-6,2.01V18h12v-0.17l-2.11-2.11C11.76,15.31,10.33,15,9,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.66,5.54C7.77,5.51,7.88,5.5,8,5.5c0.83,0,1.5,0.67,1.5,1.5c0,0.12-0.01,0.23-0.04,0.34l1.15,1.15 C10.86,8.05,11,7.54,11,7c0-1.66-1.34-3-3-3C7.46,4,6.95,4.14,6.51,4.39L7.66,5.54z M11.68,9.56C12.19,8.83,12.5,7.95,12.5,7 c0-1.13-0.43-2.15-1.12-2.94C11.58,4.02,11.79,4,12,4c1.66,0,3,1.34,3,3c0,1.62-1.28,2.94-2.88,3L11.68,9.56z M15.41,13.29 c-0.2-0.83-0.69-1.57-1.39-2.06c1.08,0.22,2.1,0.6,3.02,1.14c0.6,0.36,0.97,1.02,0.97,1.72v1.79L15.41,13.29z M5,7.12L1.16,3.28 l1.06-1.06l15.56,15.56l-1.06,1.06L13.88,16H2v-1.91c0-0.7,0.36-1.36,0.97-1.72C4.44,11.5,6.16,11,8,11c0.31,0,0.62,0.01,0.92,0.04 l0,0L7.88,10C6.32,9.93,5.07,8.68,5,7.12z M10.89,13.01C9.97,12.67,8.99,12.5,8,12.5c-1.5,0-2.98,0.4-4.28,1.16 c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h8.88C12.38,14.5,10.89,13.01,10.89,13.01L10.89,13.01z\\\"></path>\"\n      }\n    }\n  },\n  \"face_6\": {\n    \"name\": \"face_6\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,4c3.68,0,6.78,2.51,7.71,5.9 c-0.6-0.16-1.33-0.37-2.26-2.24C16.94,6.64,15.91,6,14.76,6H9.24C8.09,6,7.06,6.64,6.55,7.66C5.62,9.52,4.97,9.72,4.29,9.9 C5.22,6.51,8.32,4,12,4z M12,20c-4.41,0-8-3.59-8-8c0-0.01,0-0.02,0-0.03c2.31-0.22,3.43-1.59,4.34-3.41C8.51,8.21,8.85,8,9.24,8 h5.53c0.38,0,0.72,0.21,0.89,0.55c0.9,1.8,1.99,3.19,4.34,3.41c0,0.01,0,0.02,0,0.03C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,3.5c2.87,0,5.3,1.87,6.16,4.44 C15.09,7.73,14.78,7.07,14.07,6c-0.42-0.63-1.12-1-1.87-1H7.8C7.05,5,6.35,5.37,5.93,6C4.92,7.52,4.75,7.76,3.84,7.94 C4.7,5.37,7.13,3.5,10,3.5z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5c0-0.17,0.01-0.34,0.03-0.51c2.39-0.08,3.32-2.16,3.65-2.66 C7.32,6.62,7.55,6.5,7.8,6.5h4.39c0.25,0,0.48,0.12,0.62,0.33c0.34,0.51,1.28,2.58,3.65,2.66C16.49,9.66,16.5,9.83,16.5,10 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"add_moderator\": {\n    \"name\": \"add_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,11.09v-4.7l6-2.25l6,2.25v3.69c0.71,0.1,1.38,0.31,2,0.6V5l-8-3L4,5v6.09c0,5.05,3.41,9.76,8,10.91 c0.03-0.01,0.05-0.02,0.08-0.02c-0.79-0.78-1.4-1.76-1.75-2.84C7.76,17.53,6,14.42,6,11.09z\\\"></path><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"catching_pokemon\": {\n    \"name\": \"catching_pokemon\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,12c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5C13.38,9.5,14.5,10.62,14.5,12z M22,12 c0,5.52-4.48,10-10,10C6.48,22,2,17.52,2,12S6.48,2,12,2C17.52,2,22,6.48,22,12z M20,12h-4c0-2.21-1.79-4-4-4c-2.21,0-4,1.79-4,4H4 c0,4.41,3.59,8,8,8C16.41,20,20,16.41,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.25,10c0,1.24-1.01,2.25-2.25,2.25S7.75,11.24,7.75,10S8.76,7.75,10,7.75S12.25,8.76,12.25,10z M18,10c0,4.42-3.58,8-8,8 s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M16.5,10h-3.25c0-1.79-1.46-3.25-3.25-3.25S6.75,8.21,6.75,10H3.5c0,3.58,2.92,6.5,6.5,6.5 S16.5,13.58,16.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_moderator\": {\n    \"name\": \"remove_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4.14l6,2.25v4.7c0,1.19-0.23,2.36-0.64,3.44l1.51,1.51c0.72-1.53,1.13-3.22,1.13-4.95V5l-8-3L6.78,3.96l1.55,1.55 L12,4.14z M2.81,2.81L1.39,4.22L4,6.83v4.26c0,5.05,3.41,9.76,8,10.91c1.72-0.43,3.28-1.36,4.55-2.62l3.23,3.23l1.41-1.41 L2.81,2.81z M12,19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14,9.14C14.24,18.85,13.17,19.54,12,19.92z\\\"></path></g>\"\n      }\n    }\n  },\n  \"health_and_safety\": {\n    \"name\": \"health_and_safety\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13z M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2 z M18,11.09c0,4-2.55,7.7-6,8.83c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_people\": {\n    \"name\": \"emoji_people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><circle cx=\\\"10\\\" cy=\\\"5\\\" r=\\\"1\\\"></circle><path d=\\\"M12.29,7.29C12.11,7.11,11.85,7,11.59,7H8.5C7.12,7,6,5.88,6,4.5V4H5v0.5C5,6.26,6.31,7.75,8,8v4v4h1v-4h2v4h1v-4V8.41 l2.83,2.83l0.71-0.71L12.29,7.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"whatsapp\": {\n    \"name\": \"whatsapp\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19.05,4.91C17.18,3.03,14.69,2,12.04,2c-5.46,0-9.91,4.45-9.91,9.91c0,1.75,0.46,3.45,1.32,4.95L2.05,22l5.25-1.38 c1.45,0.79,3.08,1.21,4.74,1.21h0c0,0,0,0,0,0c5.46,0,9.91-4.45,9.91-9.91C21.95,9.27,20.92,6.78,19.05,4.91z M12.04,20.15 L12.04,20.15c-1.48,0-2.93-0.4-4.2-1.15l-0.3-0.18l-3.12,0.82l0.83-3.04l-0.2-0.31c-0.82-1.31-1.26-2.83-1.26-4.38 c0-4.54,3.7-8.24,8.24-8.24c2.2,0,4.27,0.86,5.82,2.42c1.56,1.56,2.41,3.63,2.41,5.83C20.28,16.46,16.58,20.15,12.04,20.15z M16.56,13.99c-0.25-0.12-1.47-0.72-1.69-0.81c-0.23-0.08-0.39-0.12-0.56,0.12c-0.17,0.25-0.64,0.81-0.78,0.97 c-0.14,0.17-0.29,0.19-0.54,0.06c-0.25-0.12-1.05-0.39-1.99-1.23c-0.74-0.66-1.23-1.47-1.38-1.72c-0.14-0.25-0.02-0.38,0.11-0.51 c0.11-0.11,0.25-0.29,0.37-0.43c0.12-0.14,0.17-0.25,0.25-0.41c0.08-0.17,0.04-0.31-0.02-0.43c-0.06-0.12-0.56-1.34-0.76-1.84 c-0.2-0.48-0.41-0.42-0.56-0.43C8.86,7.33,8.7,7.33,8.53,7.33c-0.17,0-0.43,0.06-0.66,0.31C7.65,7.89,7.01,8.49,7.01,9.71 c0,1.22,0.89,2.4,1.01,2.56c0.12,0.17,1.75,2.67,4.23,3.74c0.59,0.26,1.05,0.41,1.41,0.52c0.59,0.19,1.13,0.16,1.56,0.1 c0.48-0.07,1.47-0.6,1.67-1.18c0.21-0.58,0.21-1.07,0.14-1.18S16.81,14.11,16.56,13.99z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.69,4.23c-1.51-1.51-3.51-2.34-5.65-2.34c-4.4,0-7.98,3.58-7.98,7.98c0,1.41,0.37,2.78,1.07,3.99L2,18l4.23-1.11 c1.17,0.64,2.48,0.97,3.81,0.97h0c4.4,0,7.98-3.58,7.98-7.98C18.03,7.75,17.2,5.74,15.69,4.23z M10.05,16.51L10.05,16.51 c-1.19,0-2.36-0.32-3.38-0.92l-0.24-0.14L3.92,16.1l0.67-2.45L4.43,13.4c-0.66-1.06-1.01-2.28-1.01-3.53 c0-3.66,2.98-6.63,6.64-6.63c1.77,0,3.44,0.69,4.69,1.95c1.25,1.25,1.94,2.92,1.94,4.69C16.68,13.54,13.71,16.51,10.05,16.51z M13.69,11.55c-0.2-0.1-1.18-0.58-1.36-0.65c-0.18-0.07-0.32-0.1-0.45,0.1c-0.13,0.2-0.52,0.65-0.63,0.78 c-0.12,0.13-0.23,0.15-0.43,0.05c-0.2-0.1-0.84-0.31-1.6-0.99C8.62,10.31,8.22,9.66,8.1,9.46S8.09,9.15,8.19,9.05 c0.09-0.09,0.2-0.23,0.3-0.35s0.13-0.2,0.2-0.33c0.07-0.13,0.03-0.25-0.02-0.35c-0.05-0.1-0.45-1.08-0.61-1.48 C7.89,6.15,7.73,6.2,7.61,6.19C7.49,6.19,7.36,6.19,7.22,6.19c-0.13,0-0.35,0.05-0.53,0.25c-0.18,0.2-0.7,0.68-0.7,1.66 c0,0.98,0.71,1.93,0.81,2.06c0.1,0.13,1.41,2.15,3.41,3.01c0.48,0.21,0.85,0.33,1.14,0.42c0.48,0.15,0.91,0.13,1.26,0.08 c0.38-0.06,1.18-0.48,1.35-0.95c0.17-0.47,0.17-0.87,0.12-0.95C14.02,11.69,13.89,11.64,13.69,11.55z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"person_add_alt\": {\n    \"name\": \"person_add_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,9V6h-2v3h-3v2h3v3h2v-3h3V9H20z M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6 c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2S7,9.1,7,8C7,6.9,7.9,6,9,6z M15.39,14.56C13.71,13.7,11.53,13,9,13c-2.53,0-4.71,0.7-6.39,1.56 C1.61,15.07,1,16.1,1,17.22V20h16v-2.78C17,16.1,16.39,15.07,15.39,14.56z M15,18H3v-0.78c0-0.38,0.2-0.72,0.52-0.88 C4.71,15.73,6.63,15,9,15c2.37,0,4.29,0.73,5.48,1.34C14.8,16.5,15,16.84,15,17.22V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,10c1.66,0,3-1.34,3-3S9.66,4,8,4S5,5.34,5,7S6.34,10,8,10z M8,5.5c0.83,0,1.5,0.67,1.5,1.5S8.83,8.5,8,8.5 S6.5,7.83,6.5,7S7.17,5.5,8,5.5z\\\"></path><path d=\\\"M13.03,12.37C11.56,11.5,9.84,11,8,11s-3.56,0.5-5.03,1.37C2.36,12.72,2,13.39,2,14.09V16h12v-1.91 C14,13.39,13.64,12.72,13.03,12.37z M12.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,12.9,6.5,12.5,8,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path><polygon points=\\\"16.25,7.75 16.25,6 14.75,6 14.75,7.75 13,7.75 13,9.25 14.75,9.25 14.75,11 16.25,11 16.25,9.25 18,9.25 18,7.75\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pix\": {\n    \"name\": \"pix\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.45,16.52l-3.01-3.01c-0.11-0.11-0.24-0.13-0.31-0.13s-0.2,0.02-0.31,0.13L8.8,16.53c-0.34,0.34-0.87,0.89-2.64,0.89 l3.71,3.7c1.17,1.17,3.07,1.17,4.24,0l3.72-3.71C16.92,17.41,16.16,17.23,15.45,16.52z\\\"></path><path d=\\\"M8.8,7.47l3.02,3.02c0.08,0.08,0.2,0.13,0.31,0.13s0.23-0.05,0.31-0.13l2.99-2.99c0.71-0.74,1.52-0.91,2.43-0.91 l-3.72-3.71c-1.17-1.17-3.07-1.17-4.24,0l-3.71,3.7C7.95,6.58,8.49,7.16,8.8,7.47z\\\"></path><path d=\\\"M21.11,9.85l-2.25-2.26H17.6c-0.54,0-1.08,0.22-1.45,0.61l-3,3c-0.28,0.28-0.65,0.42-1.02,0.42 c-0.36,0-0.74-0.15-1.02-0.42L8.09,8.17c-0.38-0.38-0.9-0.6-1.45-0.6H5.17l-2.29,2.3c-1.17,1.17-1.17,3.07,0,4.24l2.29,2.3h1.48 c0.54,0,1.06-0.22,1.45-0.6l3.02-3.02c0.28-0.28,0.65-0.42,1.02-0.42c0.37,0,0.74,0.14,1.02,0.42l3.01,3.01 c0.38,0.38,0.9,0.6,1.45,0.6h1.26l2.25-2.26C22.3,12.96,22.3,11.04,21.11,9.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.79,13.58l-2.41-2.41c-0.1-0.1-0.22-0.12-0.28-0.12c-0.06,0-0.18,0.02-0.28,0.12L7.4,13.59 c-0.71,0.71-1.45,0.7-2.13,0.7l3.02,3.01c0.94,0.94,2.46,0.94,3.39,0l3.03-3.02C14,14.28,13.38,14.17,12.79,13.58z\\\"></path><path d=\\\"M7.4,6.41l2.42,2.42C9.9,8.9,10,8.94,10.1,8.94s0.21-0.04,0.28-0.12l2.39-2.39c0.58-0.59,1.21-0.71,1.96-0.71L11.71,2.7 c-0.94-0.94-2.46-0.94-3.39,0L5.29,5.71C6.02,5.71,6.7,5.71,7.4,6.41z\\\"></path><path d=\\\"M17.29,8.28l-1.8-1.81h-1.01c-0.44,0-0.86,0.17-1.16,0.48l-2.4,2.4c-0.22,0.22-0.52,0.34-0.81,0.34 c-0.29,0-0.59-0.12-0.81-0.34L6.87,6.94C6.57,6.63,6.15,6.46,5.72,6.46H4.53L2.7,8.3c-0.94,0.94-0.94,2.46,0,3.39l1.83,1.84h1.18 c0.43,0,0.85-0.17,1.16-0.48l2.42-2.42c0.22-0.22,0.52-0.34,0.81-0.34s0.59,0.11,0.81,0.34l2.41,2.41 c0.08,0.08,0.16,0.15,0.25,0.2c0.27,0.18,0.58,0.28,0.91,0.28h1.01l1.8-1.81c0.36-0.36,0.58-0.8,0.67-1.25 C17.99,10.31,18,10.16,18,10C18,9.38,17.76,8.76,17.29,8.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"scale\": {\n    \"name\": \"scale\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,11V8c4.56-0.58,8-3.1,8-6H2c0,2.9,3.44,5.42,8,6l0,3c-3.68,0.73-8,3.61-8,11h6v-2H4.13c0.93-6.83,6.65-7.2,7.87-7.2 s6.94,0.37,7.87,7.2H16v2h6C22,14.61,17.68,11.73,14,11z M18.87,4C17.5,5.19,15,6.12,12,6.12C9,6.12,6.5,5.19,5.13,4H18.87z M12,22 c-1.1,0-2-0.9-2-2c0-0.55,0.22-1.05,0.59-1.41C11.39,17.79,16,16,16,16s-1.79,4.61-2.59,5.41C13.05,21.78,12.55,22,12,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,18c-0.83,0-1.5-0.67-1.5-1.5c0-0.41,0.17-0.79,0.44-1.06l0,0C9.54,14.84,13,13.5,13,13.5s-1.34,3.46-1.94,4.06 C10.79,17.83,10.41,18,10,18z M18,18h-5v-1.5l3.4,0c-0.77-5.48-5.79-5.65-6.4-5.65c-0.61,0-5.63,0.17-6.4,5.65l3.4,0V18H2 c0-5.88,3.72-7.97,6.5-8.5V7C4.8,6.55,2,4.49,2,2h16c0,2.49-2.8,4.55-6.5,5v2.5C14.28,10.03,18,12.12,18,18z M10,5.6 c2.67,0,4.83-0.95,5.84-2.1H4.16C5.17,4.65,7.33,5.6,10,5.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_reaction\": {\n    \"name\": \"add_reaction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,9.5C7,8.67,7.67,8,8.5,8S10,8.67,10,9.5c0,0.83-0.67,1.5-1.5,1.5S7,10.33,7,9.5z M12,17.5c2.33,0,4.31-1.46,5.11-3.5 H6.89C7.69,16.04,9.67,17.5,12,17.5z M15.5,11c0.83,0,1.5-0.67,1.5-1.5C17,8.67,16.33,8,15.5,8S14,8.67,14,9.5 C14,10.33,14.67,11,15.5,11z M22,1h-2v2h-2v2h2v2h2V5h2V3h-2V1z M20,12c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8 c1.46,0,2.82,0.4,4,1.08V2.84C14.77,2.3,13.42,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12 c0-1.05-0.17-2.05-0.47-3h-2.13C19.78,9.93,20,10.94,20,12z\\\"></path>\"\n      }\n    }\n  },\n  \"18_up_rating\": {\n    \"name\": \"18_up_rating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"8.5,15 10,15 10,9 7,9 7,10.5 8.5,10.5\\\"></polygon><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M12.5,15H15c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1h-2.5c-0.55,0-1,0.45-1,1v4C11.5,14.55,11.95,15,12.5,15z M13,10h1.5 v1.5H13V10z M13,12.5h1.5V14H13V12.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path><polygon points=\\\"8,12 9,12 9,8 7,8 7,9 8,9\\\"></polygon><path d=\\\"M10.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C13,8.22,12.78,8,12.5,8h-2C10.22,8,10,8.22,10,8.5v3C10,11.78,10.22,12,10.5,12z M11,9h1v0.75h-1V9z M11,10.25h1V11h-1V10.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_cricket\": {\n    \"name\": \"sports_cricket\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z\\\"></path><rect height=\\\"6\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)\\\" width=\\\"2\\\" x=\\\"16.17\\\" y=\\\"16.17\\\"></rect><path d=\\\"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.5,3C13.12,3,12,4.12,12,5.5C12,6.88,13.12,8,14.5,8C15.88,8,17,6.88,17,5.5C17,4.12,15.88,3,14.5,3z M14.5,7 C13.67,7,13,6.33,13,5.5S13.67,4,14.5,4S16,4.67,16,5.5S15.33,7,14.5,7z\\\"></path><path d=\\\"M12.34,11.51L5.97,5.15C5.87,5.05,5.75,5,5.62,5C5.49,5,5.36,5.05,5.26,5.15L3.15,7.26c-0.2,0.2-0.2,0.51,0,0.71 l6.36,6.36c0.1,0.1,0.23,0.15,0.35,0.15c0.13,0,0.26-0.05,0.35-0.15l2.12-2.12C12.53,12.02,12.53,11.71,12.34,11.51z M9.86,13.27 L4.21,7.62l1.41-1.41l5.66,5.66L9.86,13.27z\\\"></path><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.9645 13.9853)\\\" width=\\\"1\\\" x=\\\"12.9\\\" y=\\\"13.4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"facebook\": {\n    \"name\": \"facebook\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_martial_arts\": {\n    \"name\": \"sports_martial_arts\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"19.8,2 11.6,8.7 10.39,7.66 13.99,5.58 9.41,1 8,2.41 10.74,5.15 5,8.46 3.81,12.75 6.27,17 8,16 5.97,12.48 6.32,11.18 9.5,13 10,22 12,22 12.5,12 21,3.4\\\"></polygon><circle cx=\\\"5\\\" cy=\\\"5\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"4.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><polygon points=\\\"16.79,2 9.96,7.54 8.27,6.22 11.01,4.64 7.37,1 6.67,1.71 9.38,4.42 4.25,7.38 3.31,10.78 5.13,14 6,13.51 4.39,10.65 4.88,8.87 8.5,11 9,18 10,18 10.5,10 17.5,2.71\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_motorsports\": {\n    \"name\": \"sports_motorsports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M11.16,5C11,5,10.85,5.01,10.69,5.02C3.25,5.6,3,14.07,3,14.07V15c0,0.55,0.45,1,1,1h7.5c3.13,0,5.65-2.62,5.49-5.79 C16.84,7.2,14.14,5,11.16,5z M6.82,7.6L10,8.91c0.51,0.21,0.86,0.64,0.96,1.17c0.11,0.54-0.05,1.07-0.44,1.45 C10.22,11.83,9.82,12,9.39,12H4.32C4.66,10.62,5.37,8.86,6.82,7.6z M14.76,13.6C13.9,14.5,12.74,15,11.5,15H4l0-0.9 c0-0.07,0.02-0.49,0.12-1.1h5.27c0.69,0,1.35-0.27,1.84-0.76c1.32-1.32,0.87-3.55-0.85-4.25L7.77,6.91c0.81-0.47,1.8-0.8,2.99-0.89 C10.9,6.01,11.03,6,11.16,6c2.55,0,4.72,1.91,4.84,4.26C16.06,11.51,15.62,12.7,14.76,13.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"diversity_1\": {\n    \"name\": \"diversity_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"4\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M1.22,17.58C0.48,17.9,0,18.62,0,19.43V21l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,17.04,4.39,17,4,17 C3.01,17,2.07,17.21,1.22,17.58z\\\"></path><circle cx=\\\"20\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M22.78,17.58C21.93,17.21,20.99,17,20,17c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V21l4.5,0v-1.57 C24,18.62,23.52,17.9,22.78,17.58z\\\"></path><path d=\\\"M16.24,16.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,17.13,6,18.21,6,19.39V21h12v-1.61 C18,18.21,17.32,17.13,16.24,16.65z M8.07,19c0.09-0.23,0.27-0.42,0.49-0.52c1.1-0.49,2.26-0.73,3.43-0.73 c1.18,0,2.33,0.25,3.43,0.73c0.23,0.1,0.4,0.29,0.49,0.52H8.07z\\\"></path><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3c0-1.66-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z\\\"></path><path d=\\\"M2.48,10.86C2.17,10.1,2,9.36,2,8.6C2,6.02,4.02,4,6.6,4c2.68,0,3.82,1.74,5.4,3.59C13.57,5.76,14.7,4,17.4,4 C19.98,4,22,6.02,22,8.6c0,0.76-0.17,1.5-0.48,2.26c0.65,0.31,1.18,0.82,1.53,1.44C23.65,11.1,24,9.88,24,8.6 C24,4.9,21.1,2,17.4,2c-2.09,0-4.09,0.97-5.4,2.51C10.69,2.97,8.69,2,6.6,2C2.9,2,0,4.9,0,8.6c0,1.28,0.35,2.5,0.96,3.7 C1.31,11.68,1.84,11.17,2.48,10.86z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"3.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M13.54,14.25c-0.98-0.43-2.18-0.75-3.54-0.75c-1.36,0-2.56,0.32-3.54,0.75C5.57,14.65,5,15.55,5,16.53V18h10v-1.47 C15,15.55,14.43,14.65,13.54,14.25z M6.5,16.5c0.01-0.38,0.23-0.73,0.57-0.87C8.01,15.21,9,15,10,15c1,0,1.99,0.21,2.93,0.63 c0.34,0.15,0.56,0.49,0.57,0.87H6.5z\\\"></path><path d=\\\"M19.15,15.61C18.44,15.27,17.54,15,16.5,15c-0.29,0-0.56,0.02-0.82,0.06c0.21,0.45,0.32,0.95,0.32,1.47V18h4v-1.04 C20,16.39,19.67,15.86,19.15,15.61z\\\"></path><path d=\\\"M0.85,15.61C0.33,15.86,0,16.39,0,16.96V18h4v-1.47c0-0.52,0.11-1.02,0.32-1.47C4.06,15.02,3.79,15,3.5,15 C2.46,15,1.56,15.27,0.85,15.61z\\\"></path><path d=\\\"M7.5,10.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C12.5,9.12,11.38,8,10,8S7.5,9.12,7.5,10.5z M11,10.5 c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S11,9.95,11,10.5z\\\"></path><path d=\\\"M2.33,10.3C1.79,9.36,1.5,8.44,1.5,7.5c0-2.24,1.76-4,4-4c2.53,0,3.77,2.04,4.5,2.9c0.62-0.73,1.91-2.9,4.5-2.9 c2.24,0,4,1.76,4,4c0,0.94-0.29,1.86-0.83,2.8c0.46,0.25,0.84,0.63,1.07,1.1C19.54,10.12,20,8.86,20,7.5C20,4.42,17.58,2,14.5,2 c-1.74,0-3.41,0.81-4.5,2.09C8.91,2.81,7.24,2,5.5,2C2.42,2,0,4.42,0,7.5c0,1.36,0.46,2.62,1.26,3.9 C1.5,10.93,1.87,10.55,2.33,10.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cyclone\": {\n    \"name\": \"cyclone\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4C16,9.79,14.21,8,12,8z M12,14c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M22,7.47V5.35C20.05,4.77,16.56,4,12,4C9.85,4,7.89,4.86,6.46,6.24C6.59,5.39,6.86,3.84,7.47,2H5.35 C4.77,3.95,4,7.44,4,12c0,2.15,0.86,4.11,2.24,5.54c-0.85-0.14-2.4-0.4-4.24-1.01v2.12C3.95,19.23,7.44,20,12,20 c2.15,0,4.11-0.86,5.54-2.24c-0.14,0.85-0.4,2.4-1.01,4.24h2.12C19.23,20.05,20,16.56,20,12c0-2.15-0.86-4.11-2.24-5.54 C18.61,6.59,20.16,6.86,22,7.47z M12,18c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,13.5c1.93,0,3.5-1.57,3.5-3.5S11.93,6.5,10,6.5S6.5,8.07,6.5,10S8.07,13.5,10,13.5z M10,8c1.1,0,2,0.9,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,8.9,8.9,8,10,8z\\\"></path><path d=\\\"M18,5.68V4.09C14.49,3.06,11.23,3,10,3C8,3,6.2,3.84,4.93,5.18C4.93,5.15,5.15,3.71,5.68,2H4.09C3.06,5.51,3,8.77,3,10 c0,2,0.84,3.8,2.18,5.07C5.15,15.07,3.71,14.85,2,14.32v1.59C5.51,16.94,8.77,17,10,17c2,0,3.8-0.84,5.07-2.18 c-0.01,0.03-0.23,1.48-0.76,3.18h1.59c1.03-3.51,1.09-6.77,1.09-8c0-2-0.84-3.8-2.18-5.07C14.85,4.93,16.3,5.15,18,5.68z M15.5,10 c0,3.03-2.47,5.5-5.5,5.5S4.5,13.03,4.5,10S6.97,4.5,10,4.5S15.5,6.97,15.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"deck\": {\n    \"name\": \"deck\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z\\\"></path><polygon points=\\\"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16\\\"></polygon><polygon points=\\\"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"4.37,10 3.38,10.18 4,13.5 4,17 5,17 5,14 7,14 7,17 8,17 8,13 4.92,13\\\"></polygon><polygon points=\\\"15.08,13 12,13 12,17 13,17 13,14 15,14 15,17 16,17 16,13.5 16.62,10.18 15.63,10\\\"></polygon><path d=\\\"M10,3L3,8h6.5v9h1V8H17L10,3z M6.12,7L10,4.23L13.88,7H6.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"history_edu\": {\n    \"name\": \"history_edu\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M7,4v0.73c-0.68-0.32-1.4-0.5-2.13-0.5c-1.28,0-2.56,0.49-3.54,1.46l2.12,2.12h1.41L4.76,9.13 c0.62,0.62,1.42,0.92,2.23,0.92c0,0,0.01,0,0.01,0V12H5v2.5C5,15.33,5.67,16,6.5,16H14c1.1,0,2-0.9,2-2V4H7z M6.99,9.05 c-0.43,0-0.84-0.12-1.19-0.36l0.15-1.87H3.87L2.84,5.79c0.61-0.36,1.31-0.55,2.03-0.55c1.07,0,2.07,0.42,2.83,1.17l1.41,1.41 l-0.6,0.6C8.1,8.82,7.56,9.05,6.99,9.05z M15,14c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2H8V9.87c0.44-0.15,0.86-0.39,1.22-0.74l0.6-0.6 L12.29,11H13v-0.71L8.4,5.7C8.28,5.57,8.14,5.48,8,5.37V5h7V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_transportation\": {\n    \"name\": \"emoji_transportation\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z\\\"></path><polygon points=\\\"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4\\\"></polygon><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><polygon points=\\\"8,5 11,5 11,8 12,8 12,4 7,4 7,7 4,7 4,16 5,16 5,8 8,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"13\\\"></rect><path d=\\\"M15.11,9.34C15.05,9.14,14.85,9,14.64,9H9.36C9.15,9,8.95,9.14,8.89,9.34L8,12v2v0.5V15v0.5C8,15.78,8.22,16,8.5,16 S9,15.78,9,15.5V15h6v0.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V15v-0.5V14v-2L15.11,9.34z M9.72,10h4.56l0.67,2H9.05L9.72,10 z M9.5,14C9.22,14,9,13.78,9,13.5S9.22,13,9.5,13s0.5,0.22,0.5,0.5S9.78,14,9.5,14z M14.5,14c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5S14.78,14,14.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"masks\": {\n    \"name\": \"masks\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_3\": {\n    \"name\": \"diversity_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.32,13.01c0.96,0.02,1.85,0.5,2.45,1.34C9.5,15.38,10.71,16,12,16c1.29,0,2.5-0.62,3.23-1.66 c0.6-0.84,1.49-1.32,2.45-1.34C16.96,11.78,14.08,11,12,11C9.93,11,7.04,11.78,6.32,13.01z\\\"></path><path d=\\\"M4,13L4,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C1,11.66,2.34,13,4,13z\\\"></path><path d=\\\"M20,13L20,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C17,11.66,18.34,13,20,13z\\\"></path><path d=\\\"M12,10c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,5.34,9,7C9,8.66,10.34,10,12,10z\\\"></path><path d=\\\"M21,14h-3.27c-0.77,0-1.35,0.45-1.68,0.92C16.01,14.98,14.69,17,12,17c-1.43,0-3.03-0.64-4.05-2.08 C7.56,14.37,6.95,14,6.27,14H3c-1.1,0-2,0.9-2,2v4h7v-2.26c1.15,0.8,2.54,1.26,4,1.26s2.85-0.46,4-1.26V20h7v-4 C23,14.9,22.1,14,21,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M7.13,11.23c0.65,0.95,1.73,1.52,2.87,1.52s2.22-0.57,2.87-1.52c0.36-0.53,0.93-0.86,1.56-0.94C13.91,9.78,12.01,9,10,9 c-2.02,0-3.91,0.79-4.43,1.29C6.19,10.37,6.76,10.7,7.13,11.23z\\\"></path></g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"3.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.5,11h-2.78c-0.49,0-0.95,0.25-1.23,0.65c-0.81,1.17-2.13,1.85-3.49,1.85c-0.31,0-2.25-0.03-3.49-1.85 C6.27,11.3,5.84,11,5.28,11H2.5C1.67,11,1,11.67,1,12.5V16h6v-1.87C7.89,14.68,8.92,15,10,15s2.11-0.32,3-0.87V16h6v-3.5 C19,11.67,18.33,11,17.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology\": {\n    \"name\": \"psychology\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z\\\"></path><path d=\\\"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.92,7.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C11.12,6.04,11.06,6,11,6h-1C9.94,6,9.89,6.04,9.88,6.11L9.78,6.77C9.63,6.83,9.49,6.92,9.36,7.01L8.74,6.76 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87C8.06,7.74,8.07,7.81,8.12,7.84l0.53,0.41C8.63,8.33,8.62,8.42,8.62,8.5 c0,0.08,0.01,0.17,0.02,0.24L8.12,9.16C8.07,9.19,8.06,9.26,8.08,9.32l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C9.89,10.96,9.94,11,10,11h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C12.93,7.81,12.94,7.74,12.92,7.68z M10.5,9.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S11.05,9.5,10.5,9.5z\\\"></path><path d=\\\"M10.5,4C8.19,4,6.3,5.75,6.05,8l-1.53,2.22C4.3,10.55,4.53,11,4.93,11H6v2c0,0.55,0.45,1,1,1h1v2h5v-3.76 c1.21-0.81,2-2.18,2-3.74C15,6.01,12.99,4,10.5,4z M12,11.65V15H9v-2H7v-3H5.89l1.13-1.64C7.09,6.5,8.61,5,10.5,5 C12.43,5,14,6.57,14,8.5C14,9.89,13.18,11.09,12,11.65z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology_alt\": {\n    \"name\": \"psychology_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.94,9.06C19.5,5.73,16.57,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48C3.74,13.14,4.22,14,5,14h1l0,2c0,1.1,0.9,2,2,2h1 v3h7l0-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5 c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z\\\"></path><path d=\\\"M12.5,12.54c-0.41,0-0.74,0.31-0.74,0.73c0,0.41,0.33,0.74,0.74,0.74c0.42,0,0.73-0.33,0.73-0.74 C13.23,12.85,12.92,12.54,12.5,12.54z\\\"></path><path d=\\\"M12.5,7c-1.03,0-1.74,0.67-2,1.45l0.96,0.4c0.13-0.39,0.43-0.86,1.05-0.86c0.95,0,1.13,0.89,0.8,1.36 c-0.32,0.45-0.86,0.75-1.14,1.26c-0.23,0.4-0.18,0.87-0.18,1.16h1.06c0-0.55,0.04-0.65,0.13-0.82c0.23-0.42,0.65-0.62,1.09-1.27 c0.4-0.59,0.25-1.38-0.01-1.8C13.95,7.39,13.36,7,12.5,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10.5,3C7.88,3,5.68,4.84,5.13,7.3L3.2,10.2C2.68,10.97,3.24,12,4.16,12h0.83v1.5c0,0.83,0.67,1.5,1.5,1.5H8v2h5.5v-3.89 C15,12.12,16,10.43,16,8.5C16,5.46,13.54,3,10.5,3z M12.68,11.85L12,12.29v3.21H9.5v-2H6.49v-3H4.8l1.74-2.6l0.06-0.27 C7,5.81,8.65,4.5,10.5,4.5c2.21,0,4,1.79,4,4C14.5,9.85,13.82,11.11,12.68,11.85z\\\"></path><path d=\\\"M10.25,10.75c-0.35,0-0.63,0.27-0.63,0.62c0,0.35,0.28,0.63,0.63,0.63c0.36,0,0.62-0.28,0.62-0.63 C10.88,11.02,10.61,10.75,10.25,10.75z\\\"></path><path d=\\\"M10.25,6C9.36,6,8.76,6.58,8.53,7.25l0.82,0.34c0.11-0.34,0.37-0.74,0.9-0.74c0.81,0,0.97,0.76,0.68,1.16 C10.67,8.4,10.2,8.66,9.96,9.1C9.77,9.44,9.8,9.84,9.8,10.09h0.91c0-0.47,0.03-0.56,0.11-0.71c0.19-0.36,0.56-0.53,0.93-1.09 c0.34-0.5,0.21-1.18-0.01-1.54C11.49,6.34,10.98,6,10.25,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"elderly_woman\": {\n    \"name\": \"elderly_woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.5,11c-1.56,0-2.92-0.9-3.58-2.21l-0.79-1.67l0,0C14.12,7.1,13.63,6,12.34,6l0,0C8.72,6,6,16.69,6,19h2.5l-2.1,2.8 L8,23l3-4h2v4h2v-4.03L13,13l0.49-2.71c0.81,1.23,2.05,2.14,3.51,2.52v0.69h1v-1c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V23h1 V12.5C20,11.67,19.33,11,18.5,11z\\\"></path><path d=\\\"M11.6,2.91c-0.06,0.19-0.1,0.38-0.1,0.59c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2c-0.21,0-0.4,0.04-0.59,0.1 C12.76,1.25,12.41,1,12,1c-0.55,0-1,0.45-1,1C11,2.41,11.25,2.76,11.6,2.91z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.62,8.99c-0.32,0-0.61,0.14-0.81,0.35c-1.91-0.49-1.98-2.15-2.92-2.91c-0.26-0.21-0.57-0.34-0.89-0.4 C6.85,5.45,5.5,14.26,5.5,15h1.6l-1.6,2l1,1L9,15h1.5v3H12v-3l-1.46-3.93l0.28-2.33l0,0c0,0,0,0,0,0 c0.02,0.03,0.91,1.44,2.68,2.02v0.25h0.75v-0.88c0-0.21,0.17-0.38,0.38-0.38S15,9.91,15,10.12V18h0.75v-7.88 C15.75,9.5,15.25,8.99,14.62,8.99z\\\"></path><path d=\\\"M9.34,3.22C9.29,3.39,9.25,3.56,9.25,3.75c0,0.97,0.79,1.75,1.75,1.75c0.96,0,1.75-0.78,1.75-1.75 C12.75,2.78,11.97,2,11,2c-0.29,0-0.57,0.08-0.81,0.21C10.08,1.94,9.81,1.75,9.5,1.75c-0.41,0-0.75,0.34-0.75,0.75 C8.75,2.86,9.01,3.14,9.34,3.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sentiment_dissatisfied\": {\n    \"name\": \"sentiment_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"paragliding\": {\n    \"name\": \"paragliding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,16.1,13.1,17,12,17z M15.48,17.94C14.68,18.54,14,19,12,19 s-2.68-0.46-3.48-1.06C8.04,17.55,7,16.76,7,14H5c0,2.7,0.93,4.41,2.3,5.5c0.5,0.4,1.1,0.7,1.7,0.9V24h6v-3.6 c0.6-0.2,1.2-0.5,1.7-0.9c1.37-1.09,2.3-2.8,2.3-5.5h-2C17,16.76,15.96,17.55,15.48,17.94z M23,4.25v3.49c0,0.8-0.88,1.26-1.56,0.83 C21.3,8.48,21.16,8.39,21,8.31L19,13h-2l-1.5-6.28C14.4,6.58,13.22,6.5,12,6.5S9.6,6.58,8.5,6.72L7,13H5L3,8.31 C2.84,8.39,2.7,8.48,2.56,8.57C1.88,9,1,8.55,1,7.74V4.25C1,1.9,5.92,0,12,0S23,1.9,23,4.25z M6.9,6.98 C5.97,7.17,5.12,7.41,4.37,7.69l1.51,3.55L6.9,6.98z M19.63,7.69c-0.75-0.28-1.6-0.52-2.53-0.71l1.02,4.25L19.63,7.69z M21,4.31 C20.65,3.63,17.57,2,12,2S3.35,3.63,3,4.31v1.77C5.34,5.07,8.56,4.5,12,4.5s6.66,0.57,9,1.58V4.31z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M10,14.25c-0.97,0-1.75-0.78-1.75-1.75s0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75S10.97,14.25,10,14.25z M10.5,15.5h-1 c-2.21,0-4-1.79-4-4H4c0,2.33,1.45,4.32,3.5,5.12V20h5v-3.38c2.05-0.8,3.5-2.79,3.5-5.12h-1.5C14.5,13.71,12.71,15.5,10.5,15.5z M19,3.48v3.17c0,0.61-0.68,0.95-1.19,0.61c-0.1-0.07-0.2-0.13-0.31-0.19L16,10.5h-1.5L13,5.7c-0.94-0.13-1.95-0.2-3-0.2 S7.94,5.57,7,5.7l-1.5,4.8H4L2.5,7.05C2.39,7.12,2.29,7.18,2.19,7.25C1.68,7.59,1,7.26,1,6.64V3.48C1,1.56,5.03,0,10,0 S19,1.56,19,3.48z M5.84,5.89C4.92,6.08,4.1,6.32,3.4,6.61l1.32,3.03L5.84,5.89z M16.6,6.61c-0.7-0.29-1.52-0.54-2.44-0.72 l1.13,3.75L16.6,6.61z M17.5,3.48C17.34,2.95,14.78,1.5,10,1.5s-7.34,1.45-7.5,2l0,1.87C4.4,4.5,7.1,4,10,4c2.9,0,5.6,0.5,7.5,1.37 V3.48z\\\"></path>\"\n      }\n    }\n  },\n  \"military_tech\": {\n    \"name\": \"military_tech\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13.16,13.29l-2.27-0.19l-0.56-1.31l2.45-1.63C12.92,10.06,13,9.9,13,9.73V3H7v6.73c0,0.17,0.08,0.32,0.22,0.42l2.45,1.63 l-0.56,1.31l-2.27,0.19l1.72,1.49L8.05,17L10,15.82L11.95,17l-0.52-2.22L13.16,13.29z M10.5,4H12v5.46l-1.5,1V4z M9.5,10.46 l-1.5-1V4h1.5V10.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thumb_down_alt\": {\n    \"name\": \"thumb_down_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"group_remove\": {\n    \"name\": \"group_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M24,9v2h-6V9H24z M8,4C5.79,4,4,5.79,4,8s1.79,4,4,4s4-1.79,4-4S10.21,4,8,4z M8,10c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S9.1,10,8,10z M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z M14,18H2v-0.99C2.2,16.29,5.3,15,8,15s5.8,1.29,6,2V18z M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z M16.53,13.83 C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M6,5.5c0.83,0,1.5,0.67,1.5,1.5S6.83,8.5,6,8.5 S4.5,7.83,4.5,7S5.17,5.5,6,5.5z M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z M10.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C3.02,12.9,4.5,12.5,6,12.5s2.98,0.4,4.28,1.16 c0.14,0.08,0.22,0.25,0.22,0.42C10.5,14.08,10.5,14.5,10.5,14.5z M16,14.09V16h-2.5v-1.91c0-1.15-0.56-2.22-1.48-2.86 c1.08,0.22,2.1,0.6,3.02,1.14C15.64,12.72,16,13.39,16,14.09z M9.38,9.93C10.07,9.14,10.5,8.13,10.5,7s-0.43-2.15-1.12-2.94 C9.58,4.02,9.79,4,10,4c1.66,0,3,1.34,3,3s-1.34,3-3,3C9.79,10,9.58,9.98,9.38,9.93z M19.5,9.25h-5v-1.5h5V9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"recycling\": {\n    \"name\": \"recycling\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.77 7.15 7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62-3.43-2.06zm15.95 5.82-1.6-2.66-3.46 2L18.87 16H20c.76 0 1.45-.43 1.79-1.11.14-.28.21-.58.21-.89 0-.36-.1-.71-.28-1.03zM16 21h1.5c.76 0 1.45-.43 1.79-1.11L20.74 17H16v-2l-4 4 4 4v-2zm-6-4H5.7l-.84 1.41c-.3.5-.32 1.12-.06 1.65.28.57.87.94 1.52.94H10v-4zm-3.88-2.65 1.73 1.04L6.48 9.9 1 11.27l1.7 1.02-.41.69c-.35.59-.38 1.31-.07 1.92l1.63 3.26 2.27-3.81zm10.9-9.21-1.3-2.17C15.35 2.37 14.7 2 14 2h-3.53l3.12 5.2-1.72 1.03 5.49 1.37 1.37-5.49-1.71 1.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13 14h3.83l-1.09 2.17c-.25.51-.77.83-1.34.83H13M7.62 7.72l1.8-3-.9-1.49c-.39-.65-1.33-.65-1.72 0L5.05 6.17l2.57 1.55zm8.72.77L13.72 10l1.83 3h.85c.57 0 1.09-.32 1.34-.83.23-.46.21-1-.06-1.44l-1.34-2.24zM4.37 15.08c-.22.37-.24.83-.05 1.22.22.43.66.7 1.14.7H8.5v-3H5.02l-.65 1.08zM13 14v-1.54l-3 3 3 3V17m1.01-12.4-1.13-1.88c-.26-.44-.75-.72-1.28-.72H8.95l2.49 4.15-1.29.77 4.12 1.03 1.03-4.12-1.29.77zM5.3 11.58l1.28.77-1.02-4.12-4.12 1.03 1.29.77-.42.69c-.26.44-.28.98-.06 1.44l1.22 2.44 1.83-3.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scuba_diving\": {\n    \"name\": \"scuba_diving\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,13c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S1,14.1,1,13z M8.89,10.11l4.53-1.21L12.64,6L8.11,7.21 c-0.8,0.21-1.28,1.04-1.06,1.84l0,0C7.27,9.85,8.09,10.33,8.89,10.11z M20.5,5.9L23,3l-1-1l-3,3l-2,4l-9.48,2.87 c-0.82,0.2-1.39,0.89-1.5,1.68L5.24,18L2.4,21.8L4,23l3-4l1.14-3.14L14,14l5-3.5L20.5,5.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M1,11c0,0.83,0.67,1.5,1.5,1.5S4,11.83,4,11S3.33,9.5,2.5,9.5S1,10.17,1,11z M11,11.53l-4.08,1.3l-0.85,2.83L3.45,19 l-1.31-0.98l2.22-2.89l0.67-4.04c0.11-0.55,0.53-1.02,1.11-1.17L14,7.5l1.5-3L18,2l1,1l-2,2l-1.5,4L11,11.53z M6.05,7.59L6.05,7.59 c-0.19-0.63,0.16-1.3,0.8-1.5L10.44,5l0.7,2.3l-3.59,1.1C6.92,8.59,6.25,8.23,6.05,7.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_remove_alt_1\": {\n    \"name\": \"person_remove_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\\\"></path><path d=\\\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"10\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\\\"></path><path d=\\\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\\\"></path><rect height=\\\"1\\\" transform=\\\"matrix(-1 4.479249e-11 -4.479249e-11 -1 30 19)\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"sledding\": {\n    \"name\": \"sledding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,3.4,14,4.5z M22.8,20.24c-0.68,2.1-2.94,3.25-5.04,2.57h0L1,17.36 l0.46-1.43l3.93,1.28l0.46-1.43L1.93,14.5l0.46-1.43L4,13.6V9.5l5.47-2.35c0.39-0.17,0.84-0.21,1.28-0.07 c0.95,0.31,1.46,1.32,1.16,2.27l-1.05,3.24L13,12.25c0.89-0.15,1.76,0.32,2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32-1.08 L14.9,20.3l3.32,1.08l0,0c1.31,0.43,2.72-0.29,3.15-1.61c0.43-1.31-0.29-2.72-1.61-3.15l0.46-1.43 C22.33,15.88,23.49,18.14,22.8,20.24z M6,14.25l1.01,0.33c-0.22-0.42-0.28-0.92-0.12-1.4L7.92,10L6,10.82V14.25z M13.94,18.41 l-6.66-2.16l-0.46,1.43l6.66,2.16L13.94,18.41z M14.63,17.05l-1.18-2.56l-3.97,0.89L14.63,17.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.25,3.75C8.25,2.78,9.03,2,10,2s1.75,0.78,1.75,1.75S10.97,5.5,10,5.5S8.25,4.72,8.25,3.75z M18.85,16.93 c-0.51,1.58-2.21,2.44-3.78,1.93L1,14.28l0.31-0.95l3.13,1.02l0.46-1.43L1.77,11.9l0.31-0.95l1.42,0.46V8l4.4-1.87 c0.32-0.14,0.68-0.17,1.04-0.06c0.79,0.24,1.24,1.08,1,1.87L9.15,10.5l2.09-0.37c0.45-0.08,0.89,0.16,1.08,0.57l1.92,4.2l1.92,0.62 l-0.31,0.95l-2.85-0.93l-0.46,1.43l2.85,0.93c1.05,0.34,2.18-0.24,2.52-1.28c0.34-1.05-0.24-2.18-1.28-2.52l0.31-0.95 C18.5,13.66,19.36,15.35,18.85,16.93z M5,11.9l1.17,0.38c-0.31-0.38-0.43-0.89-0.28-1.39l0.8-2.62L5,9V11.9z M12.04,15.24 l-6.18-2.01l-0.46,1.43l6.18,2.01L12.04,15.24z M12.3,14.27l-1.12-2.46L7.7,12.78L12.3,14.27z\\\"></path>\"\n      }\n    }\n  },\n  \"man_3\": {\n    \"name\": \"man_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2v7h4v-7h2V9C16,7.9,15.1,7,14,7z\\\"></path><rect height=\\\"3.18\\\" transform=\\\"matrix(0.7071 0.7071 -0.7071 0.7071 6.3431 -7.3137)\\\" width=\\\"3.18\\\" x=\\\"10.41\\\" y=\\\"2.41\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h1.5v5h3v-5H13V8.5C13,7.67,12.33,7,11.5,7z\\\"></path><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 0.1005 8.2426)\\\" width=\\\"2.83\\\" x=\\\"8.59\\\" y=\\\"2.59\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"person_2\": {\n    \"name\": \"person_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z M18,18H6v-0.78c0-0.38,0.2-0.72,0.52-0.88C7.71,15.73,9.63,15,12,15 c2.37,0,4.29,0.73,5.48,1.34C17.8,16.5,18,16.84,18,17.22V18z\\\"></path><path d=\\\"M9.78,12h4.44c1.21,0,2.14-1.06,1.98-2.26l-0.32-2.45C15.57,5.39,13.92,4,12,4S8.43,5.39,8.12,7.29L7.8,9.74 C7.64,10.94,8.57,12,9.78,12z M10.1,7.59C10.26,6.67,11.06,6,12,6s1.74,0.67,1.9,1.59L14.22,10H9.78L10.1,7.59z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8.27,10h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C12.67,5.04,11.44,4,10,4S7.33,5.04,7.09,6.47l-0.3,1.79 C6.64,9.17,7.34,10,8.27,10z M8.57,6.71C8.69,6.01,9.29,5.5,10,5.5c0.71,0,1.31,0.51,1.43,1.21l0.3,1.79H8.27L8.57,6.71z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z M14.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C7.02,12.9,8.5,12.5,10,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"people_alt\": {\n    \"name\": \"people_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z\\\"></path><path d=\\\"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z\\\"></path><path d=\\\"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z\\\"></path><path d=\\\"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><g><path d=\\\"M8.5,6C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9S7,8.33,7,7.5S7.67,6,8.5,6 M8.5,5C7.12,5,6,6.12,6,7.5C6,8.88,7.12,10,8.5,10 S11,8.88,11,7.5C11,6.12,9.88,5,8.5,5L8.5,5z\\\"></path></g><g><path d=\\\"M10.99,9.95C11.16,9.98,11.33,10,11.5,10c1.38,0,2.5-1.12,2.5-2.5 C14,6.12,12.88,5,11.5,5c-0.17,0-0.34,0.02-0.51,0.05C11.61,5.68,12,6.55,12,7.5S11.61,9.32,10.99,9.95z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M8.5,12c2.15,0,4.38,0.77,4.5,1.23V14H4l0-0.77C4.12,12.77,6.35,12,8.5,12 M8.5,11C6.66,11,3,11.66,3,13.23V15h11v-1.77 C14,11.66,10.34,11,8.5,11L8.5,11z\\\"></path></g><g><path d=\\\"M13.73,11.23c0.75,0.48,1.27,1.12,1.27,2V15h2v-1.77 C17,12.18,15.36,11.54,13.73,11.23z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"cookie\": {\n    \"name\": \"cookie\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10.5\\\" cy=\\\"8.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"15\\\" r=\\\"1\\\"></circle><path d=\\\"M21.95,10.99c-1.79-0.03-3.7-1.95-2.68-4.22c-2.97,1-5.78-1.59-5.19-4.56C7.11,0.74,2,6.41,2,12c0,5.52,4.48,10,10,10 C17.89,22,22.54,16.92,21.95,10.99z M12,20c-4.41,0-8-3.59-8-8c0-3.31,2.73-8.18,8.08-8.02c0.42,2.54,2.44,4.56,4.99,4.94 c0.07,0.36,0.52,2.55,2.92,3.63C19.7,16.86,16.06,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"8.75\\\" cy=\\\"7.25\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"6.75\\\" cy=\\\"11.25\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"12.5\\\" r=\\\".75\\\"></circle><path d=\\\"M17.96,9.2C16.53,9.17,15,7.64,15.81,5.82c-2.38,0.8-4.62-1.27-4.15-3.65C5.27,0.82,2,6.46,2,10c0,4.42,3.58,8,8,8 C14.71,18,18.43,13.94,17.96,9.2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5c0-3.2,2.69-6.69,6.65-6.51c0.3,2.04,1.93,3.68,3.99,3.96 c0.05,0.3,0.4,2.09,2.35,2.93C16.31,13.67,13.57,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cruelty_free\": {\n    \"name\": \"cruelty_free\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,14c-0.24-0.24-0.44-0.49-0.65-0.75C17.51,11.5,19,8.56,19,5c0-1.95-0.74-3-2-3c-1.54,0-3.96,2.06-5,5.97 C10.96,4.06,8.54,2,7,2C5.74,2,5,3.05,5,5c0,3.56,1.49,6.5,2.65,8.25C7.44,13.51,7.24,13.76,7,14c-0.25,0.25-2,1.39-2,3.5 C5,19.98,7.02,22,9.5,22c1.5,0,2.5-0.5,2.5-0.5s1,0.5,2.5,0.5c2.48,0,4.5-2.02,4.5-4.5C19,15.39,17.25,14.25,17,14z M16.88,4.03 C16.94,4.2,17,4.51,17,5c0,2.84-1.11,5.24-2.07,6.78c-0.38-0.26-0.83-0.48-1.4-0.62C13.77,6.64,15.97,4.33,16.88,4.03z M7,5 c0-0.49,0.06-0.8,0.12-0.97c0.91,0.3,3.11,2.61,3.36,7.13c-0.58,0.14-1.03,0.35-1.4,0.62C8.11,10.24,7,7.84,7,5z M14.5,20 c-1,0-1.8-0.33-2.22-0.56C12.7,19.26,13,18.73,13,18.5c0-0.28-0.45-0.5-1-0.5s-1,0.22-1,0.5c0,0.23,0.3,0.76,0.72,0.94 C11.3,19.67,10.5,20,9.5,20C8.12,20,7,18.88,7,17.5c0-0.7,0.43-1.24,1-1.73c0.44-0.36,0.61-0.52,1.3-1.37 c0.76-0.95,1.09-1.4,2.7-1.4s1.94,0.45,2.7,1.4c0.69,0.85,0.86,1.01,1.3,1.37c0.57,0.49,1,1.03,1,1.73C17,18.88,15.88,20,14.5,20z M14,16c0,0.41-0.22,0.75-0.5,0.75S13,16.41,13,16c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16z M11,16c0,0.41-0.22,0.75-0.5,0.75 S10,16.41,10,16c0-0.41,0.22-0.75,0.5-0.75S11,15.59,11,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M13.93,11.7c-0.21-0.21-0.41-0.43-0.57-0.64c0.93-1.37,2.14-3.69,2.14-6.56C15.5,2.94,15.01,2,14,2 c-1.23,0-3.17,1.65-4,4.78C9.17,3.65,7.23,2,6,2C4.99,2,4.5,2.94,4.5,4.5c0,2.87,1.21,5.19,2.14,6.56 c-0.18,0.22-0.35,0.42-0.57,0.64c-0.2,0.2-1.57,1.1-1.57,2.8C4.5,16.43,6.07,18,8,18c1.18,0,2-0.4,2-0.4s0.82,0.4,2,0.4 c1.93,0,3.5-1.57,3.5-3.5C15.5,12.8,14.13,11.9,13.93,11.7z M13.88,3.53C13.94,3.69,14,4,14,4.5c0,2.32-0.94,4.27-1.73,5.49 c0,0-0.45-0.34-1.16-0.48C11.26,5.49,13.21,3.77,13.88,3.53z M6,4.5C6,4,6.06,3.69,6.12,3.53c0.67,0.24,2.62,1.96,2.77,5.98 C8.18,9.65,7.73,9.99,7.73,9.99C6.94,8.77,6,6.82,6,4.5z M12,16.5c-0.93,0-1.61-0.35-1.87-0.52c0.38-0.09,0.67-0.59,0.67-0.78 c0-0.22-0.36-0.4-0.8-0.4s-0.8,0.18-0.8,0.4c0,0.2,0.29,0.69,0.67,0.78C9.61,16.15,8.93,16.5,8,16.5c-1.1,0-2-0.9-2-2 c0-0.69,0.44-1.15,0.91-1.54c0.27-0.21,0.58-0.58,0.88-0.94C8.41,11.27,8.72,10.9,10,10.9s1.59,0.37,2.21,1.12 c0.3,0.36,0.61,0.73,0.88,0.94C13.56,13.35,14,13.81,14,14.5C14,15.6,13.1,16.5,12,16.5z M11.6,13.2c0,0.33-0.18,0.6-0.4,0.6 s-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6S11.6,12.87,11.6,13.2z M9.2,13.2c0,0.33-0.18,0.6-0.4,0.6s-0.4-0.27-0.4-0.6 c0-0.33,0.18-0.6,0.4-0.6S9.2,12.87,9.2,13.2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_add_alt_1\": {\n    \"name\": \"person_add_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\\\"></path><path d=\\\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\\\"></path><polygon points=\\\"13,9 15,9 15,7 16,7 16,9 18,9 18,10 16,10 16,12 15,12 15,10 13,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"social_distance\": {\n    \"name\": \"social_distance\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S4,6.1,4,5z M8.78,8.58C7.93,8.21,6.99,8,6,8S4.07,8.21,3.22,8.58 C2.48,8.9,2,9.62,2,10.43L2,11h8l0-0.57C10,9.62,9.52,8.9,8.78,8.58z M18,7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C16,6.1,16.9,7,18,7z M20.78,8.58C19.93,8.21,18.99,8,18,8c-0.99,0-1.93,0.21-2.78,0.58C14.48,8.9,14,9.62,14,10.43L14,11h8l0-0.57 C22,9.62,21.52,8.9,20.78,8.58z M18.01,13.01l-1.41,1.41L18.17,16H5.83l1.58-1.59l-1.41-1.41L2,17l3.99,3.99l1.41-1.41L5.83,18 h12.34l-1.58,1.58l1.41,1.41L22,17L18.01,13.01z\\\"></path>\"\n      }\n    }\n  },\n  \"skateboarding\": {\n    \"name\": \"skateboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S13,4.1,13,3z M7.25,22.5c-0.41,0-0.75,0.34-0.75,0.75S6.84,24,7.25,24 S8,23.66,8,23.25S7.66,22.5,7.25,22.5z M15.75,22.5c-0.41,0-0.75,0.34-0.75,0.75S15.34,24,15.75,24s0.75-0.34,0.75-0.75 S16.16,22.5,15.75,22.5z M19.24,19c-0.24,0-0.45,0.11-0.59,0.3c-0.55,0.73-1.42,1.2-2.4,1.2H16v-6l-4.32-2.67l1.8-2.89 C14.63,10.78,16.68,12,19,12v-2c-1.85,0-3.44-1.12-4.13-2.72l-0.52-1.21C14.16,5.64,13.61,5,12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35 l-2.4,3.84c-0.31,0.5-0.39,1.11-0.21,1.67l1.34,4.15l-3.12,3.76c-0.7-0.16-1.3-0.57-1.71-1.12C4.21,19.11,3.99,19,3.75,19 C3.31,19,3,19.36,3,19.75c0,0.15,0.05,0.31,0.15,0.45c0.82,1.1,2.13,1.8,3.6,1.8h9.5c1.47,0,2.78-0.7,3.6-1.8 c0.1-0.14,0.15-0.3,0.15-0.45C20,19.36,19.68,19,19.24,19z M14,20.5H8.6l2.9-3.5l-1-3.3l3.5,2.2V20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M7.49,19.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S7.49,18.84,7.49,19.25z M13.26,18.5 c-0.41,0-0.75,0.34-0.75,0.75S12.85,20,13.26,20c0.41,0,0.75-0.34,0.75-0.75S13.67,18.5,13.26,18.5z M12.25,4.5 C13.21,4.5,14,3.72,14,2.75C14,1.78,13.22,1,12.25,1S10.5,1.78,10.5,2.75C10.5,3.72,11.29,4.5,12.25,4.5z M17,16.5 c0,0.12-0.04,0.24-0.13,0.34C16.46,17.29,15.58,18,14.26,18H5.74c-1.25,0-2.13-0.62-2.61-1.16C3.05,16.75,3,16.62,3,16.5 C3,16.24,3.2,16,3.5,16c0.14,0,0.28,0.06,0.38,0.17C4.34,16.68,5,17,5.74,17H6l2-3l-1.23-3.23C6.6,10.33,6.65,9.84,6.9,9.44 L8.73,6.5H6.8L5.27,8.9L4,8l2-3h4.5c0.68,0,1.11,0.43,1.3,0.76l0.75,1.27C13.25,8.21,14.53,9,16,9v1.5c-1.95,0-3.66-1.02-4.64-2.55 L10,10.13l3.5,2.37V17h0.76c0.74,0,1.4-0.32,1.86-0.83c0.1-0.11,0.23-0.17,0.38-0.17C16.8,16,17,16.24,17,16.5z M12,13.4l-3-1.65 l0.7,2.45L7.8,17H12V13.4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"engineering\": {\n    \"name\": \"engineering\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z\\\"></path><path d=\\\"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z\\\"></path><path d=\\\"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z\\\"></path><path d=\\\"M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M4.82,8H5c0,1.38,1.12,2.5,2.5,2.5S10,9.38,10,8h0.32c0.14,0,0.25-0.11,0.25-0.25S10.45,7.5,10.32,7.5H10 c0-1.02-0.62-1.9-1.5-2.29v0.54C8.5,5.89,8.39,6,8.25,6S8,5.89,8,5.75v-0.7C7.84,5.02,7.67,5,7.5,5S7.16,5.02,7,5.05v0.7 C7,5.89,6.89,6,6.75,6S6.5,5.89,6.5,5.75V5.21C5.62,5.6,5,6.48,5,7.5H4.82c-0.14,0-0.25,0.11-0.25,0.25S4.68,8,4.82,8z M9,8 c0,0.83-0.67,1.5-1.5,1.5S6,8.83,6,8H9z\\\"></path><path d=\\\"M17.27,5.31l0.66-0.59L17.4,3.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L16.04,3h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19L13.6,3.79l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L14.96,8h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C17.28,5.55,17.28,5.43,17.27,5.31z M15.5,6.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C16.39,5.99,15.99,6.39,15.5,6.39z\\\"></path><path d=\\\"M15.3,8.72l-0.59,0.2c-0.07-0.05-0.15-0.1-0.23-0.13l-0.13-0.61H13.6l-0.13,0.61c-0.08,0.04-0.17,0.08-0.24,0.14 l-0.59-0.19l-0.38,0.65l0.46,0.41c-0.01,0.09-0.01,0.18,0,0.26l-0.46,0.42l0.38,0.65l0.6-0.19c0.07,0.05,0.14,0.09,0.22,0.12 l0.14,0.62h0.75l0.13-0.61c0.08-0.04,0.15-0.08,0.22-0.13l0.59,0.19l0.38-0.65l-0.46-0.42c0.01-0.09,0.01-0.17,0-0.26l0.47-0.42 L15.3,8.72z M13.97,10.54c-0.35,0-0.62-0.28-0.62-0.62c0-0.35,0.28-0.62,0.62-0.62c0.35,0,0.62,0.28,0.62,0.62 C14.6,10.26,14.32,10.54,13.97,10.54z\\\"></path><path d=\\\"M7.5,12C5,12,2,13.24,2,15v0.97h11V15C13,13.24,10,12,7.5,12z M3,14.97C3.05,14.1,5.21,13,7.5,13s4.45,1.1,4.5,1.97H3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"no_adult_content\": {\n    \"name\": \"no_adult_content\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.54,1.69-4.9L7.59,9h2.83 L7.1,5.69C8.46,4.63,10.15,4,12,4c4.41,0,8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.9-1.9h-2.83l3.31,3.31 C15.54,19.37,13.85,20,12,20C7.59,20,4,16.41,4,12z\\\"></path><polygon points=\\\"14.25,14 12.75,12 14.25,10 12.75,10 12,11 11.25,10 9.75,10 11.25,12 9.75,14 11.25,14 12,13 12.75,14\\\"></polygon><polygon points=\\\"8,10 7.25,11 6.5,10 5,10 6.5,12 5,14 6.5,14 7.25,13 8,14 9.5,14 8,12 9.5,10\\\"></polygon><polygon points=\\\"16,14 16.75,13 17.5,14 19,14 17.5,12 19,10 17.5,10 16.75,11 16,10 14.5,10 16,12 14.5,14\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.52,0.53-2.92,1.41-4.03L6.44,7.5h2.12 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5c0,1.52-0.53,2.92-1.41,4.03l-1.53-1.53h-2.12l2.59,2.59 c-1.11,0.88-2.51,1.41-4.03,1.41C6.42,16.5,3.5,13.58,3.5,10z\\\"></path><polygon points=\\\"10.5,10 11.5,8.5 10.5,8.5 10,9.25 9.5,8.5 8.5,8.5 9.5,10 8.5,11.5 9.5,11.5 10,10.75 10.5,11.5 11.5,11.5\\\"></polygon><polygon points=\\\"7,8.5 6.5,9.25 6,8.5 5,8.5 6,10 5,11.5 6,11.5 6.5,10.75 7,11.5 8,11.5 7,10 8,8.5\\\"></polygon><polygon points=\\\"13.25,11.5 13.75,10.75 14.25,11.5 15.25,11.5 14.25,10 15.25,8.5 14.25,8.5 13.75,9.25 13.25,8.5 12.25,8.5 13.25,10 12.25,11.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"travel_explore\": {\n    \"name\": \"travel_explore\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.3,16.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S11,12,11,14.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l3.2,3.2 l1.4-1.4L19.3,16.9z M15.5,17c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S16.9,17,15.5,17z M12,20v2 C6.48,22,2,17.52,2,12C2,6.48,6.48,2,12,2c4.84,0,8.87,3.44,9.8,8h-2.07c-0.64-2.46-2.4-4.47-4.73-5.41V5c0,1.1-0.9,2-2,2h-2v2 c0,0.55-0.45,1-1,1H8v2h2v3H9l-4.79-4.79C4.08,10.79,4,11.38,4,12C4,16.41,7.59,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.85,8.5h-1.54c-0.48-2.03-1.93-3.68-3.82-4.48V4.5C12.5,5.33,11.83,6,11,6H9v1c0,0.55-0.45,1-1,1H7v2h1v2H7L3.64,8.64 C3.55,9.08,3.5,9.53,3.5,10c0,3.58,2.92,6.5,6.5,6.5V18c-4.42,0-8-3.58-8-8s3.58-8,8-8C13.91,2,17.15,4.8,17.85,8.5z M18,16.44 l-1.06,1.06l-2.56-2.56c-0.54,0.35-1.19,0.56-1.88,0.56C10.57,15.5,9,13.93,9,12s1.57-3.5,3.5-3.5S16,10.07,16,12 c0,0.69-0.21,1.34-0.56,1.88L18,16.44z M14.5,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14.5,13.1,14.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_tennis\": {\n    \"name\": \"sports_tennis\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z\\\"></path><path d=\\\"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.09,10.28c2.2-2.2,2.55-5.4,0.8-7.16c-1.76-1.76-4.96-1.4-7.16,0.8C6.4,5.24,5.75,6.93,5.82,8.44l0,0 c-0.04,0.82,0.29,2.73-0.98,4.01L2.28,15L3,15.72l2.56-2.56c1.27-1.27,3.19-0.94,4.01-0.98l0,0 C11.07,12.25,12.76,11.6,14.09,10.28z M7.64,10.36C6.27,9,6.63,6.42,8.43,4.62s4.38-2.16,5.75-0.8c1.36,1.36,1.01,3.94-0.8,5.75 S9,11.73,7.64,10.36z\\\"></path><path d=\\\"M16.12,12.88C15.54,12.29,14.77,12,14,12s-1.54,0.29-2.12,0.88c-1.17,1.17-1.17,3.07,0,4.24C12.46,17.71,13.23,18,14,18 s1.54-0.29,2.12-0.88C17.29,15.95,17.29,14.05,16.12,12.88z M15.41,16.41C15.04,16.79,14.53,17,14,17s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C12.96,13.21,13.47,13,14,13s1.04,0.21,1.41,0.59C16.19,14.37,16.19,15.63,15.41,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_add\": {\n    \"name\": \"person_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"coronavirus\": {\n    \"name\": \"coronavirus\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_rugby\": {\n    \"name\": \"sports_rugby\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7c-0.35-0.35-1.34-0.6-2.6-0.6c-1.93,0-4.47,0.6-6.24,2.37 C3.54,9.39,3.81,14.42,4.7,15.3c0.35,0.35,1.34,0.6,2.6,0.6c1.93,0,4.47-0.6,6.24-2.37C16.46,10.61,16.19,5.58,15.3,4.7z M5.55,14.45c0.1-1.05,0.88-3.7,3.04-5.86c2.13-2.13,4.76-2.94,5.86-3.03c-0.1,1.05-0.88,3.7-3.04,5.86 C9.28,13.54,6.66,14.35,5.55,14.45z M7.17,7.17c1.63-1.63,3.86-1.98,5.01-2.06c-1.36,0.52-2.94,1.4-4.3,2.76 c-1.35,1.35-2.24,2.92-2.76,4.28C5.22,10.58,5.75,8.6,7.17,7.17z M12.83,12.83c-1.63,1.63-3.86,1.98-5.01,2.06 c1.36-0.52,2.94-1.4,4.3-2.76c1.35-1.35,2.24-2.92,2.76-4.28C14.78,9.42,14.25,11.4,12.83,12.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"connect_without_contact\": {\n    \"name\": \"connect_without_contact\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"woman\": {\n    \"name\": \"woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.94,8.31C13.62,7.52,12.85,7,12,7s-1.62,0.52-1.94,1.31L7,16h3v6h4v-6h3L13.94,8.31z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6,14h2.5v4h3.01v-4H14L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"science\": {\n    \"name\": \"science\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,11.33L18,18H6l5-6.67V6h2 M15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4C2.71,19.06,3.18,20,4,20h16 c0.82,0,1.29-0.94,0.8-1.6L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4L15.96,4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.5,5.52v3.75L14.96,15l-9.91,0L9.5,9.27V5.52L9.08,5h1.84L10.5,5.52z M11.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81 L8.5,5.87v3.05l-4.24,5.46C3.74,15.04,4.21,16,5.04,16h9.91c0.83,0,1.3-0.96,0.79-1.61L11.5,8.93V5.87l0.85-1.06 C12.61,4.48,12.38,4,11.96,4L11.96,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nordic_walking\": {\n    \"name\": \"nordic_walking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,23h-1.5v-9H19V23z M7.53,14H6l-2,9h1.53L7.53,14z M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M9.8,8.9L7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3C14.8,12,16.8,13,19,13v-2c-1.9,0-3.5-1-4.3-2.4l-1-1.6 c-0.56-0.89-1.68-1.25-2.65-0.84L6,8.3V13h2V9.6L9.8,8.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M15,11 V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L5,7.79V11h1.5V8.78l1.65-0.7L6.2,18h1.53l1.19-6.02l1.58,1.59V18 H12v-5.05l-1.46-1.46l0.49-2.48C11.94,10.21,13.37,11,15,11z M14,18h1v-6h-1V18z M6.03,12H5l-1.4,6h1.03L6.03,12z\\\"></path>\"\n      }\n    }\n  },\n  \"face_4\": {\n    \"name\": \"face_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2c-0.96,0-1.88,0.14-2.75,0.39C8.37,0.96,6.8,0,5,0C2.24,0,0,2.24,0,5c0,1.8,0.96,3.37,2.39,4.25 C2.14,10.12,2,11.04,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,4c2.9,0,5.44,1.56,6.84,3.88 C18.41,7.95,17.96,8,17.5,8c-2.9,0-5.44-1.56-6.84-3.88h0C11.09,4.05,11.54,4,12,4z M4.42,9.47L4.42,9.47 C5.05,7.58,6.37,6,8.08,5.03C7.45,6.92,6.13,8.5,4.42,9.47z M2,5c0-1.65,1.35-3,3-3c0.95,0,1.8,0.46,2.35,1.15 C5.56,4.09,4.09,5.56,3.15,7.35C2.46,6.8,2,5.95,2,5z M12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0.01-0.15 c2.6-0.98,4.68-2.99,5.74-5.55C11.58,8.56,14.37,10,17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12 C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M10,2C9.18,2,8.38,2.12,7.64,2.36C7.01,0.97,5.62,0,4,0C1.79,0,0,1.79,0,4c0,1.62,0.97,3.01,2.36,3.64 C2.12,8.38,2,9.18,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M15.41,6.43c-3.92,0.52-6.1-2.18-6.57-2.82 C12.79,2.9,14.97,5.76,15.41,6.43z M7.11,4.19C6.54,5.77,5.38,7.07,3.89,7.82C4.45,6.23,5.62,4.94,7.11,4.19z M1.5,4 c0-1.38,1.12-2.5,2.5-2.5c1,0,1.85,0.59,2.25,1.43C4.84,3.68,3.68,4.84,2.93,6.25C2.09,5.85,1.5,5,1.5,4z M10,16.5 c-3.58,0-6.5-2.92-6.5-6.5c0-0.14,0.03-0.28,0.04-0.42C5.66,8.87,7.38,7.3,8.29,5.29c2.28,2.44,5.34,3.04,7.84,2.55 c0.24,0.68,0.38,1.4,0.38,2.16C16.5,13.58,13.58,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"workspace_premium\": {\n    \"name\": \"workspace_premium\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.68,13.69L12,11.93l2.31,1.76l-0.88-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69z M20,10 c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,2.03,0.76,3.87,2,5.28V23l6-2l6,2v-7.72C19.24,13.87,20,12.03,20,10z M12,4c3.31,0,6,2.69,6,6 s-2.69,6-6,6s-6-2.69-6-6S8.69,4,12,4z M12,19l-4,1.02v-3.1C9.18,17.6,10.54,18,12,18s2.82-0.4,4-1.08v3.1L12,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2C6.41,2,3.5,4.91,3.5,8.5c0,1.83,0.76,3.48,1.97,4.66V19L10,18l4.5,1v-5.82c1.23-1.18,2-2.84,2-4.68 C16.5,4.91,13.59,2,10,2z M13,17.13l-3-0.67l-3.03,0.67v-2.88C7.88,14.73,8.91,15,10,15c1.08,0,2.1-0.27,3-0.74V17.13z M10,13.5 c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S12.76,13.5,10,13.5z M8.14,11.35L10,9.94l1.85,1.41l-0.7-2.28L13,7.6h-2.27L10,5.35 L9.27,7.6H7l1.85,1.47L8.14,11.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_america\": {\n    \"name\": \"south_america\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M4,12c0-1.95,0.7-3.74,1.87-5.13L9,10 v1c0,1.1,0.9,2,2,2v5.59c0,0.27,0.11,0.52,0.29,0.71L12,20C7.58,20,4,16.42,4,12z M13,19.94V18l3.75-5.62 c0.16-0.25,0.25-0.54,0.25-0.83V10.5c0-0.55-0.45-1-1-1h-1.5l-1.4-1.75C12.72,7.28,12.15,7,11.54,7H8V5.07C9.18,4.39,10.54,4,12,4 c4.41,0,8,3.59,8,8C20,16.07,16.94,19.44,13,19.94z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.54,0.54-2.95,1.43-4.07L7.5,8.5v1 C7.5,10.33,8.17,11,9,11v4.17c0,0.22,0.07,0.43,0.2,0.6l0.55,0.73C6.28,16.36,3.5,13.5,3.5,10z M10.5,16.48V15l3.32-4.74 C13.94,10.09,14,9.89,14,9.68V9c0-0.55-0.45-1-1-1h-1.2l-1.15-1.44C10.37,6.21,9.93,6,9.48,6H6.5V4.52C7.51,3.88,8.71,3.5,10,3.5 c3.58,0,6.5,2.92,6.5,6.5C16.5,13.42,13.85,16.22,10.5,16.48z\\\"></path>\"\n      }\n    }\n  },\n  \"share\": {\n    \"name\": \"share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_add\": {\n    \"name\": \"notification_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M16,14v3H8v-7c0-2.21,1.79-4,4-4c0.85,0,1.64,0.26,2.28,0.72l1.43-1.43c-0.64-0.51-1.39-0.88-2.21-1.09V3.5 C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5v0.7C7.91,4.86,6,7.21,6,10v7H4v2h16v-2h-2v-3H16z M12,22c1.1,0,2-0.9,2-2h-4 C10,21.1,10.9,22,12,22z M24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M20,7.69h-2.25V10h-1.5V7.69H14V6.31h2.25V4h1.5v2.31H20V7.69z M13.5,11v3h-7V9c0-1.93,1.57-3.5,3.5-3.5 c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4 v1.5h12V14h-1v-3H13.5z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z\\\"></path>\"\n      }\n    }\n  },\n  \"pages\": {\n    \"name\": \"pages\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 2h6v6h-3l1-4-4 1V5zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm8 0h-6v-3l4 1-1-4h3v6zm-4.37-4.37L12 13.72l-2.63.91.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_very_satisfied\": {\n    \"name\": \"sentiment_very_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12L13 9.94zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11l1.06-1.06zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_callback\": {\n    \"name\": \"phone_callback\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_individual_suite\": {\n    \"name\": \"airline_seat_individual_suite\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_lock\": {\n    \"name\": \"vpn_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_forwarded\": {\n    \"name\": \"phone_forwarded\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_paused\": {\n    \"name\": \"phone_paused\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5c.06.88.21 1.75.44 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79h1.51m9.86 12.01c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1zM15 3h2v7h-2zm4 0h2v7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi\": {\n    \"name\": \"wifi\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat_angled\": {\n    \"name\": \"airline_seat_flat_angled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 6.5c.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1m6.47 2.11l6.69 2.41c.52.19.93.56 1.15 1.05.22.48.25 1.03.06 1.53l-.01.02-8.59-3.11.7-1.9M10 15.19l4 1.44V17h-4v-1.81M6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5zm5.28 1.55L9.2 11.71l12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15l-8.56-3.09zm-9.09 4.2l-.69 1.89L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86z\\\"></path>\"\n      }\n    }\n  },\n  \"vibration\": {\n    \"name\": \"vibration\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z\\\"></path>\"\n      }\n    }\n  },\n  \"more\": {\n    \"name\": \"more\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z\\\"></path><circle cx=\\\"9\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"19\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"support_agent\": {\n    \"name\": \"support_agent\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,6C9.32,6,6.12,6.51,6.01,9.88c1.72-0.4,3.06-1.77,3.4-3.51c0.53,1.15,1.96,2.8,4.43,2.6C13.39,7.26,11.85,6,10,6z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><path d=\\\"M16,10c0-3.31-2.69-6-6-6s-6,2.69-6,6c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1v-4c0-2.76,2.24-5,5-5s5,2.24,5,5v5H9v1h6 c0.55,0,1-0.45,1-1v-1c0.55,0,1-0.45,1-1v-2C17,10.45,16.55,10,16,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"voice_chat\": {\n    \"name\": \"voice_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_normal\": {\n    \"name\": \"airline_seat_legroom_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_special\": {\n    \"name\": \"folder_special\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z\\\"></path>\"\n      }\n    }\n  },\n  \"ondemand_video\": {\n    \"name\": \"ondemand_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"imagesearch_roller\": {\n    \"name\": \"imagesearch_roller\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,7V3c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v1H4C2.9,4,2,4.9,2,6v4c0,1.1,0.9,2,2,2h8v3h-1c-0.55,0-1,0.45-1,1v6 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-6c0-0.55-0.45-1-1-1h-1v-3c0-1.1-0.9-2-2-2H4V6h2v1c0,0.55,0.45,1,1,1h12 C19.55,8,20,7.55,20,7z M8,4h10v2H8V4z M14,21h-2v-4h2V21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"account_tree\": {\n    \"name\": \"account_tree\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_audio\": {\n    \"name\": \"bluetooth_audio\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card\": {\n    \"name\": \"sd_card\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"time_to_leave\": {\n    \"name\": \"time_to_leave\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_extra\": {\n    \"name\": \"airline_seat_legroom_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z\\\"></path>\"\n      }\n    }\n  },\n  \"power\": {\n    \"name\": \"power\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"live_tv\": {\n    \"name\": \"live_tv\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"sms_failed\": {\n    \"name\": \"sms_failed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_off\": {\n    \"name\": \"do_not_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.94,5.12C9.14,4.41,10.52,4,12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.06l1.46,1.46C21.39,15.93,22,14.04,22,12 c0-5.52-4.48-10-10-10C9.96,2,8.07,2.61,6.49,3.66L7.94,5.12z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06L8.17,11H7v2h3.17l5.88,5.88 C14.86,19.59,13.48,20,12,20z\\\"></path><polygon points=\\\"13.83,11 15.83,13 17,13 17,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"phone_locked\": {\n    \"name\": \"phone_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5V4c0-1.1-0.9-2-2-2s-2,0.9-2,2v1h-1v5h6V5H20z M19,5h-2V4c0-0.55,0.45-1,1-1s1,0.45,1,1V5z\\\"></path><path d=\\\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15C21,15.37,20.66,14.96,20.2,14.87 z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07l1.65-1.63L19,16.67V18.9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.22,12.2l-2.23-0.49c-0.29-0.06-0.65,0-0.92,0.27l-2.08,2c-2.11-1.15-3.85-2.89-5-5l2.04-2.04 C8.27,6.69,8.37,6.34,8.3,6.01L7.8,3.78C7.7,3.33,7.29,3,6.83,3L4,3C3.41,3,2.96,3.51,3,4.1C3.53,10.95,9.04,16.46,15.9,17 c0.41,0.03,1.1-0.25,1.1-1v-2.82C17,12.71,16.67,12.3,16.22,12.2z M4.55,4.5h1.87l0.35,1.57L5.31,7.52C4.94,6.57,4.68,5.55,4.55,4.5 z M15.5,15.45c-1.05-0.13-2.07-0.39-3.02-0.76l1.46-1.46l1.57,0.35V15.45z M16.5,5H16V4c0-0.82-0.67-1.5-1.5-1.5S13,3.18,13,4v1 h-0.5C12.22,5,12,5.22,12,5.5v3C12,8.78,12.22,9,12.5,9h4C16.78,9,17,8.78,17,8.5v-3C17,5.22,16.78,5,16.5,5z M13.75,4 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5V4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb\": {\n    \"name\": \"do_not_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-1.85,0.63-3.55,1.69-4.9L16.9,18.31C15.55,19.37,13.85,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.55,18.31,16.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"phone_in_talk\": {\n    \"name\": \"phone_in_talk\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_off\": {\n    \"name\": \"wifi_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption\": {\n    \"name\": \"no_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\\\"></path>\"\n      }\n    }\n  },\n  \"tv_off\": {\n    \"name\": \"tv_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_eta\": {\n    \"name\": \"drive_eta\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"network_locked\": {\n    \"name\": \"network_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z\\\"></path>\"\n      }\n    }\n  },\n  \"event_note\": {\n    \"name\": \"event_note\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm2 4h10v2H7zm0 4h7v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_missed\": {\n    \"name\": \"phone_missed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z\\\"></path>\"\n      }\n    }\n  },\n  \"priority_high\": {\n    \"name\": \"priority_high\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"19\\\" r=\\\"2\\\"></circle><path d=\\\"M10 3h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_alt\": {\n    \"name\": \"do_not_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M4,12c0-4.4,3.6-8,8-8c1.8,0,3.5,0.6,4.9,1.7L5.7,16.9 C4.6,15.5,4,13.8,4,12z M12,20c-1.8,0-3.5-0.6-4.9-1.7L18.3,7.1C19.4,8.5,20,10.2,20,12C20,16.4,16.4,20,12,20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"confirmation_number\": {\n    \"name\": \"confirmation_number\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_disabled\": {\n    \"name\": \"sync_disabled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wc\": {\n    \"name\": \"wc\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"sms\": {\n    \"name\": \"sms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"tap_and_play\": {\n    \"name\": \"tap_and_play\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_reduced\": {\n    \"name\": \"airline_seat_legroom_reduced\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_problem\": {\n    \"name\": \"sync_problem\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"video_chat\": {\n    \"name\": \"video_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\\\"></path><path d=\\\"M8,14h6c0.55,0,1-0.45,1-1v-1.99L17,13V7l-2,1.99V7c0-0.55-0.45-1-1-1H8C7.45,6,7,6.45,7,7v6C7,13.55,7.45,14,8,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5V18l3-3h11.5c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M16.5,13.5H4.38 L3.5,14.38V3.5h13V13.5z\\\"></path><path d=\\\"M6.5,12h5c0.55,0,1-0.45,1-1V9.2l2,1.8V6l-2,1.8V6c0-0.55-0.45-1-1-1h-5c-0.55,0-1,0.45-1,1v5C5.5,11.55,5.95,12,6.5,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airline_seat_recline_normal\": {\n    \"name\": \"airline_seat_recline_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_off\": {\n    \"name\": \"directions_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"m21.71 11.29-9-9a.996.996 0 00-1.41 0L8.21 5.38l1.41 1.41L12 4.42 19.58 12l-2.38 2.38 1.41 1.41 3.09-3.09c.4-.37.4-1 .01-1.41z\\\"></path><polygon points=\\\"13,7.5 13,10.17 15.17,12.34 16.5,11\\\"></polygon><path d=\\\"m1.39 4.22 3.99 3.99-3.09 3.09a.996.996 0 000 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm6.64 6.63c-.01.05-.04.1-.04.15v4h2v-2.18l4.38 4.38L12 19.58 4.42 12 6.8 9.62l1.23 1.23z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_busy\": {\n    \"name\": \"event_busy\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm3.23 9.41l1.06 1.06 2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44z\\\"></path>\"\n      }\n    }\n  },\n  \"sim_card_alert\": {\n    \"name\": \"sim_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M18,2h-8L4.02,8L4,20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V8.83L10.83,4H18V20z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"8\\\"></rect></g></g></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_alt\": {\n    \"name\": \"do_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_on\": {\n    \"name\": \"do_not_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,11v2h10v-2H7z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_on\": {\n    \"name\": \"do_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"sync\": {\n    \"name\": \"sync\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"network_check\": {\n    \"name\": \"network_check\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z\\\"></path>\"\n      }\n    }\n  },\n  \"event_available\": {\n    \"name\": \"event_available\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zM5 7V5h14v2H5zm5.56 10.46l5.93-5.93-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"adb\": {\n    \"name\": \"adb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_video\": {\n    \"name\": \"personal_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat\": {\n    \"name\": \"airline_seat_flat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"mms\": {\n    \"name\": \"mms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_lock\": {\n    \"name\": \"sync_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73C5.06,16.54,4,14.4,4,12 C4,8.27,6.55,5.15,10,4.26z M20,4h-6v6h2V7.56c1.22,1.1,2,2.67,2,4.44h2c0-2.4-1.06-4.54-2.73-6H20V4z M20,17v-1c0-1.1-0.9-2-2-2 s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C21,17.45,20.55,17,20,17z M19,17h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,14H16v-1c0-0.82-0.67-1.5-1.5-1.5S13,12.18,13,13v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C17,14.22,16.78,14,16.5,14z M13.75,13c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V13z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10 C4,7.21,5.91,4.86,8.5,4.2z M14.5,10c-0.08-1.32-0.59-2.5-1.5-3.32V8h-1.5V4h4v1.5h-1.55C15.2,6.6,16,8.2,16,10H14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_off\": {\n    \"name\": \"do_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z\\\"></path>\"\n      }\n    }\n  },\n  \"do_disturb\": {\n    \"name\": \"do_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_recline_extra\": {\n    \"name\": \"airline_seat_recline_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card_alert\": {\n    \"name\": \"sd_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"disc_full\": {\n    \"name\": \"disc_full\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 7h2v5h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm10-4h2v2h-2zm-10-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_update\": {\n    \"name\": \"system_update\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_bluetooth_speaker\": {\n    \"name\": \"phone_bluetooth_speaker\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption_gmailerrorred\": {\n    \"name\": \"no_encryption_gmailerrorred\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\\\"></path>\"\n      }\n    }\n  },\n  \"running_with_errors\": {\n    \"name\": \"running_with_errors\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10v8h-2v-8H22z M20,20v2h2v-2H20z M18,17.29C16.53,18.95,14.39,20,12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8v9 l7.55-7.55C17.72,3.34,15.02,2,12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c2.25,0,4.33-0.74,6-2V17.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,8v7h-1.5V8H18z M16.5,16.5V18H18v-1.5H16.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5 c2.01,0,3.81-0.92,5-2.35l0,2.1c-1.37,1.1-3.11,1.75-5,1.75c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0c2.46,0,4.67,1.11,6.13,2.87L10,11 V3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_off\": {\n    \"name\": \"power_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"enhanced_encryption\": {\n    \"name\": \"enhanced_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-5-9h-2v3H8v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"turn_slight_right\": {\n    \"name\": \"turn_slight_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.34,6V4H18v5.66h-2V7.41l-5,5V20H9v-7.58c0-0.53,0.21-1.04,0.59-1.41l5-5H12.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M7.5,10.56V16H9v-5.44l4-4l0,1.69h1.5l0-4.25l-4.25,0v1.5l1.69,0l-4,4C7.66,9.78,7.5,10.16,7.5,10.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_crash\": {\n    \"name\": \"no_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.92,9.01C18.72,8.42,18.16,8,17.5,8h-11C5.84,8,5.29,8.42,5.08,9.01L3,15v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,9.01z M6.85,10h10.29l1.04,3H5.81L6.85,10z M19,20H5v-5h14V20z M6,17.5 C6,16.67,6.67,16,7.5,16S9,16.67,9,17.5S8.33,19,7.5,19S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S17.33,19,16.5,19S15,18.33,15,17.5z M12,6.36L9.17,3.54l1.41-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M11.87,1l1.06,1.06L9.4,5.6L7.28,3.47l1.06-1.06L9.4,3.47L11.87,1z M17,12v6.5c0,0.28-0.22,0.5-0.5,0.5h-1 c-0.28,0-0.5-0.22-0.5-0.5v-1H5v1C5,18.78,4.78,19,4.5,19h-1C3.22,19,3,18.78,3,18.5L3,12l1.62-4.06C4.85,7.37,5.4,7,6.02,7h7.97 c0.61,0,1.16,0.37,1.39,0.94L17,12z M6.02,8.5l-1,2.5h9.97l-1-2.5H6.02z M15.5,16v-3.5h-11V16H15.5z M6.5,13.25c-0.55,0-1,0.45-1,1 s0.45,1,1,1c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1 S14.05,13.25,13.5,13.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_location_alt\": {\n    \"name\": \"edit_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M11,11h2.12l6.16-6.16l-2.12-2.12L11,8.88V11z M20.71,2L20,1.29c-0.39-0.39-1.02-0.39-1.41,0l-0.72,0.72l2.12,2.12 l0.72-0.72C21.1,3.02,21.1,2.39,20.71,2z M17.9,9.05C17.96,9.41,18,9.79,18,10.2c0,1.71-1.08,4.64-6,9.14c-4.92-4.49-6-7.43-6-9.14 C6,6.17,9.09,4,12,4c0.32,0,0.65,0.03,0.97,0.08l1.65-1.65C13.78,2.16,12.9,2,12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8 c5.33-4.55,8-8.48,8-11.8c0-1.01-0.16-1.94-0.45-2.8L17.9,9.05z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><polygon points=\\\"9,10 10.41,10 15.44,4.97 14.03,3.56 9,8.59\\\"></polygon></g><g><path d=\\\"M14.91,7.62C14.96,7.91,15,8.2,15,8.5c0,2.47-3.1,5.8-5,7.53C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5 c0.58,0,1.14,0.12,1.66,0.3l1.16-1.16C11.96,2.24,11.01,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s6.5-5.16,6.5-9.5 c0-0.74-0.13-1.45-0.36-2.11L14.91,7.62z\\\"></path></g><g><path d=\\\"M16.85,2.85l-0.71-0.71c-0.2-0.2-0.51-0.2-0.71,0l-0.71,0.71l1.41,1.41l0.71-0.71C17.05,3.37,17.05,3.05,16.85,2.85z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"temple_hindu\": {\n    \"name\": \"temple_hindu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20 11v2h-2L15 3V1h-2v2h-2.03V1h-2v2.12L6 13H4v-2H2v11h9v-5h2v5h9V11h-2zm-4.69 0H8.69l.6-2h5.42l.6 2zm-1.2-4H9.89l.6-2h3.02l.6 2zM20 20h-5v-5H9v5H4v-5h3.49l.6-2h7.82l.6 2H20v5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5 9v2H15l-3-8V1h-1.5v2h-1V1H8v2l-3 8H3.5V9H2v9h7v-4h2v4h7V9h-1.5zm-4.41-1.5.75 2H7.16l.75-2h4.18zM8.48 6l.56-1.5h1.92l.56 1.5H8.48zm8.02 10.5h-4v-4h-5v4h-4v-4h2.54L6.6 11h6.8l.56 1.5h2.54v4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"dinner_dining\": {\n    \"name\": \"dinner_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><polygon points=\\\"2,19 4,21 20,21 22,19\\\"></polygon><path d=\\\"M3,18h16.97c0,0,0,0,0,0c0.29-3.26-2.28-6-5.48-6c-2.35,0-4.35,1.48-5.14,3.55C8.94,15.32,8.48,15.17,8,15.08V9h1.75 C10.99,9,12,7.99,12,6.75h9v-1.5h-9C12,4.01,10.99,3,9.75,3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85,3.22,17.39,3,18z M14.5,14c0.99,0,1.91,0.4,2.58,1.14c0.24,0.26,0.44,0.55,0.58,0.86h-6.32C11.92,14.79,13.15,14,14.5,14z M8,4.5h2v0.75H8V4.5z M8,6.75h2V7.5H8V6.75z M5.5,4.5h1v0.75h-1V4.5z M5.5,6.75h1V7.5h-1V6.75z M5.5,9h1v6.06c-0.35,0.06-0.68,0.17-1,0.3V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,14.5h14c0-2.49-2.01-4.5-4.5-4.5c-2.03,0-3.72,1.35-4.28,3.19C7.86,12.92,7.45,12.73,7,12.61V8h1c1.1,0,2-0.9,2-2h7V5 h-7c0-1.1-0.9-2-2-2H3v1h1v1H3v1h1v1H3v1h1v5.26C3.58,13.59,3.23,14.01,3,14.5z M12.5,11.5c1.11,0,2.08,0.6,2.6,1.5H9.92 C10.45,12.08,11.42,11.5,12.5,11.5z M7,4h1.5v1H7V4z M7,6h1.5v1H7V6z M5,4h1v1H5V4z M5,6h1v1H5V6z M5,8h1v4.51 c-0.35,0.02-0.68,0.08-1,0.19V8z\\\"></path><polygon points=\\\"2,15.5 3.5,17 16.5,17 18,15.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"maps_ugc\": {\n    \"name\": \"maps_ugc\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z\\\"></path></g><polygon fill-rule=\\\"evenodd\\\" points=\\\"13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11\\\"></polygon>\"\n      }\n    }\n  },\n  \"signpost\": {\n    \"name\": \"signpost\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,10h5l3-3l-3-3h-5V2h-2v2H4v6h7v2H6l-3,3l3,3h5v4h2v-4h7v-6h-7V10z M6,6h11.17l1,1l-1,1H6V6z M18,16H6.83l-1-1l1-1H18 V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.75,8H15l2-2.25L15,3.5h-4.25V2h-1.5v1.5H4V8h5.25v1.5H5l-2,2.25L5,14h4.25v4h1.5v-4H16V9.5h-5.25V8z M5.5,6.5V5h8.83 l0.67,0.75L14.33,6.5H5.5z M14.5,11v1.5H5.67l-0.67-0.75L5.67,11H14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_laundry_service\": {\n    \"name\": \"local_laundry_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z\\\"></path><circle cx=\\\"8\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_attributes\": {\n    \"name\": \"edit_attributes\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_of_travel\": {\n    \"name\": \"mode_of_travel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.31,18.9c-0.96,1-2.06,2.03-3.31,3.1c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2c4.19,0,7.99,3.21,8,8.17l2.09-2.09 L23.5,9.5L19,14l-4.5-4.5l1.41-1.41L18,10.17C17.99,6.55,15.34,4,12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 c0.64-0.59,1.23-1.16,1.77-1.71c-0.17-0.34-0.27-0.72-0.27-1.12c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S17.38,19,16,19 C15.76,19,15.53,18.97,15.31,18.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,8.63c0-0.04,0-0.09,0-0.13C16.5,4.91,13.59,2,10,2S3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s1.28-1.01,2.7-2.52 c0.1,0.01,0.2,0.02,0.3,0.02c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2c0,0.44,0.14,0.85,0.38,1.18c-0.49,0.51-0.97,0.97-1.38,1.35 C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5s5,2.24,5,5c0,0.04,0,0.08,0,0.13l-1.69-1.69L12.25,8l3.5,3.5l3.5-3.5l-1.06-1.06 L16.5,8.63z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control_rodent\": {\n    \"name\": \"pest_control_rodent\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"17\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.32,12.38l-1.34-1.21c0.13-2.27-2.05-3.63-3.93-3C10.7,8.07,10.34,8,9.97,8c-2.02,0-3.67,1.52-3.92,3.48 C4.9,11.38,4,10.42,4,9.25C4,8.01,5.01,7,6.25,7H8.5C9.33,7,10,6.33,10,5.5S9.33,4,8.5,4h-1C7.22,4,7,4.22,7,4.5 C7,4.78,7.22,5,7.5,5h1C8.78,5,9,5.22,9,5.5C9,5.78,8.78,6,8.5,6H6.25C4.46,6,3,7.46,3,9.25c0,1.72,1.35,3.12,3.04,3.23 C6.27,14.46,7.93,16,9.97,16h4.95C16.83,16,17.71,13.65,16.32,12.38z M14.92,15H9.97C8.33,15,7,13.67,7,12.03 c0-2.47,2.24-2.98,2.76-3.01c-1.04,1.18-1.01,2.97,0.12,4.1h0l0.71-0.71C9.31,11.14,10.24,9,12,9l0,0c0,0,0,0,0,0 c0.47,0,2.09,0.2,1.96,2.59l1.69,1.53C16.38,13.79,15.9,15,14.92,15z\\\"></path><circle cx=\\\"13.55\\\" cy=\\\"13.45\\\" r=\\\".75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"local_mall\": {\n    \"name\": \"local_mall\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"airlines\": {\n    \"name\": \"airlines\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M17.34,18H5.8l8.25-12h5.54L17.34,18z M13,4L2,20h17l3-16H13z M14.5,9c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5S15.88,9,14.5,9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.01,14.5H5.35l6.19-9h4.15L14.01,14.5z M10.75,4L2.5,16h12.75L17.5,4H10.75z M11.88,8C10.84,8,10,8.84,10,9.88 s0.84,1.88,1.88,1.88s1.88-0.84,1.88-1.88S12.91,8,11.88,8z\\\"></path>\"\n      }\n    }\n  },\n  \"railway_alert\": {\n    \"name\": \"railway_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle></g><g><path d=\\\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.9-0.77,3.28-1.08,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99C2.97,2.67,2,5.02,2,7 v9.5C2,18.43,3.57,20,5.5,20L4,21v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16.5 c0,0.83-0.67,1.5-1.5,1.5h-9C4.67,18,4,17.33,4,16.5V13h12V16.5z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"connecting_airports\": {\n    \"name\": \"connecting_airports\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3l2.6-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1 l-0.75-1H15.4z M5.75,7L5,6H4l0.6,2L4,10h1l0.75-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0,1-0.45,1-1s-0.45-1-1-1h-3L8.4,2.6H7.3L8.6,7 H5.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4,8.5l0.5-1.75L4,5h0.7l0.75,1H7.7L6.6,2.5h0.9L9.6,6h2.15c0.41,0,0.75,0.34,0.75,0.75S12.16,7.5,11.75,7.5H9.6L7.5,11H6.6 l1.1-3.5H5.45l-0.75,1H4z M15.5,13.25L16,11.5h-0.7l-0.75,1H12.3L13.4,9h-0.9l-2.1,3.5H8.25c-0.41,0-0.75,0.34-0.75,0.75 S7.84,14,8.25,14h2.15l2.1,3.5h0.9L12.3,14h2.25l0.75,1H16L15.5,13.25z\\\"></path>\"\n      }\n    }\n  },\n  \"add_business\": {\n    \"name\": \"add_business\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"15\\\" x=\\\"2\\\" y=\\\"4\\\"></rect><path d=\\\"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z\\\"></path><polygon points=\\\"23,18 20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><path d=\\\"M13,14h1v-3h1v-1l-1-4H4l-1,4v1h1v5h6v-5h3V14z M9,15H5v-4h4V15z M4.03,10l0.75-3h8.44l0.75,3H4.03z\\\"></path><polygon points=\\\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"zoom_out_map\": {\n    \"name\": \"zoom_out_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"local_printshop\": {\n    \"name\": \"local_printshop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm2-4v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z\\\"></path><circle cx=\\\"18\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle>\"\n      }\n    }\n  },\n  \"directions_railway\": {\n    \"name\": \"directions_railway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1c-4.42 0-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4zm0 2c6 0 6 1.2 6 2H6c0-.8 0-2 6-2zm6 4v3H6V7h12zm-1.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5zM12 12.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"hvac\": {\n    \"name\": \"hvac\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M15.44,10c0.26,0.45,0.44,0.96,0.51,1.5h-7.9 c0.07-0.54,0.24-1.05,0.51-1.5H15.44z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z M9.38,15h5.24c-0.7,0.61-1.61,1-2.62,1S10.09,15.61,9.38,15z M14.62,9H9.38c0.7-0.61,1.61-1,2.62-1S13.91,8.39,14.62,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\\\"></path><path d=\\\"M10,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4s-4,1.79-4,4C6,12.21,7.79,14,10,14z M12.97,9.74H7.03 c0.04-0.46,0.18-0.88,0.4-1.26h5.15C12.8,8.86,12.93,9.29,12.97,9.74z M12.98,10.24c-0.04,0.46-0.17,0.88-0.39,1.26H7.42 c-0.22-0.38-0.36-0.8-0.39-1.26H12.98z M10,13c-0.88,0-1.67-0.39-2.22-1h4.44C11.67,12.61,10.88,13,10,13z M10,7 c0.88,0,1.66,0.39,2.21,0.99H7.79C8.34,7.39,9.12,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alt_route\": {\n    \"name\": \"alt_route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.38,9.41l-0.71,0.71c-0.47-0.5-0.93-1.1-1.25-1.96L7.4,7.91C7.66,8.54,8,9.01,8.38,9.41z M9.5,6l-3-3l-3,3h2.53 c0.02,0.43,0.07,0.83,0.14,1.19l0.97-0.24C7.08,6.66,7.04,6.34,7.02,6H9.5z M16.5,6l-3-3l-3,3h2.48c-0.12,2.22-1.02,3.11-1.9,3.96 c-0.39,0.37-0.78,0.75-1.08,1.23c-0.26-0.41-0.58-0.75-0.91-1.07l-0.71,0.71C9.03,11.47,9.5,11.99,9.5,13v4h1v-4c0,0,0,0,0,0h0 c0-1.1,0.53-1.61,1.27-2.32c0.94-0.9,2.07-2.03,2.21-4.68H16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_bar\": {\n    \"name\": \"local_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.77 9L12 12.11 9.23 9h5.54M21 3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9V3zM7.43 7L5.66 5h12.69l-1.78 2H7.43z\\\"></path>\"\n      }\n    }\n  },\n  \"taxi_alert\": {\n    \"name\": \"taxi_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><circle cx=\\\"6.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle></g><g><circle cx=\\\"15.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle></g><g><path d=\\\"M18,13v5H4v-5H18c-1.91,0-3.63-0.76-4.89-2H4.81l1.04-3h5.44C11.1,7.37,11,6.7,11,6s0.1-1.37,0.29-2H8v2H5.5 C4.84,6,4.29,6.42,4.08,7.01L2,13v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8 l-0.09-0.27C19.3,12.9,18.66,13,18,13z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"emergency\": {\n    \"name\": \"emergency\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.29,13.9L18,12l3.29-1.9c0.48-0.28,0.64-0.89,0.37-1.37l-2-3.46c-0.28-0.48-0.89-0.64-1.37-0.37L15,6.8V3 c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3.8L5.71,4.9C5.23,4.63,4.62,4.79,4.34,5.27l-2,3.46C2.06,9.21,2.23,9.82,2.71,10.1L6,12 l-3.29,1.9c-0.48,0.28-0.64,0.89-0.37,1.37l2,3.46c0.28,0.48,0.89,0.64,1.37,0.37L9,17.2V21c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1 v-3.8l3.29,1.9c0.48,0.28,1.09,0.11,1.37-0.37l2-3.46C21.94,14.79,21.77,14.18,21.29,13.9z M18.43,16.87l-4.68-2.7 C13.42,13.97,13,14.21,13,14.6V20h-2v-5.4c0-0.38-0.42-0.63-0.75-0.43l-4.68,2.7l-1-1.73l4.68-2.7c0.33-0.19,0.33-0.67,0-0.87 l-4.68-2.7l1-1.73l4.68,2.7C10.58,10.03,11,9.79,11,9.4V4h2v5.4c0,0.38,0.42,0.63,0.75,0.43l4.68-2.7l1,1.73l-4.68,2.7 c-0.33,0.19-0.33,0.67,0,0.87l4.68,2.7L18.43,16.87z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.25,17.75h-2.5c-0.55,0-1-0.45-1-1V13.9l-2.47,1.43c-0.48,0.28-1.09,0.11-1.37-0.37L2.66,12.8 c-0.28-0.48-0.11-1.09,0.37-1.37L5.5,10L3.03,8.57C2.55,8.3,2.39,7.69,2.66,7.21l1.25-2.16C4.19,4.56,4.8,4.4,5.28,4.68L7.75,6.1 V3.25c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1V6.1l2.47-1.43c0.48-0.28,1.09-0.11,1.37,0.37l1.25,2.16 c0.28,0.48,0.11,1.09-0.37,1.37L14.5,10l2.47,1.43c0.48,0.28,0.64,0.89,0.37,1.37l-1.25,2.16c-0.28,0.48-0.89,0.64-1.37,0.37 l-2.47-1.43v2.85C12.25,17.3,11.8,17.75,11.25,17.75z M9.25,16.25h1.5v-4.08c0-0.38,0.42-0.63,0.75-0.43l3.54,2.04l0.75-1.3 l-3.54-2.04c-0.33-0.19-0.33-0.67,0-0.87l3.54-2.04l-0.75-1.3L11.5,8.27c-0.33,0.19-0.75-0.05-0.75-0.43V3.75h-1.5v4.08 c0,0.38-0.42,0.63-0.75,0.43L4.96,6.23l-0.75,1.3l3.54,2.04c0.33,0.19,0.33,0.67,0,0.87l-3.54,2.04l0.75,1.3l3.54-2.04 c0.33-0.19,0.75,0.05,0.75,0.43V16.25z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_car_filled\": {\n    \"name\": \"directions_car_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.92,6.01C18.72,5.42,18.16,5,17.5,5h-11C5.84,5,5.29,5.42,5.08,6.01L3,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,6.01z M6.85,7h10.29l1.04,3H5.81L6.85,7z M19,17H5v-5h14V17z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"park\": {\n    \"name\": \"park\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17,12h2L12,2L5.05,12H7l-3.9,6h6.92v4h3.95v-4H21L17,12z M6.79,16l3.9-6H8.88l3.13-4.5l3.15,4.5h-1.9l4,6H6.79z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.82,10H15l-5-8l-5,8h1.18L3,15h5.5v3h3v-3H17L13.82,10z M5.73,13.5l3.18-5H7.71L10,4.83l2.29,3.67h-1.21l3.18,5H5.73z\\\"></path></g>\"\n      }\n    }\n  },\n  \"temple_buddhist\": {\n    \"name\": \"temple_buddhist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,9.02c0,1.09-0.89,1.98-1.98,1.98H18V8.86c1.72-0.44,3-1.99,3-3.84V5l-2,0.02C19,6.11,18.11,7,17.02,7H16.5L12,1L7.5,7 H6.98C5.89,7,5,6.11,5,5.02H3c0,1.86,1.28,3.4,3,3.84V11H4.98C3.89,11,3,10.11,3,9.02H1c0,1.86,1.28,3.4,3,3.84V22h7v-4 c0-0.55,0.45-1,1-1s1,0.45,1,1v4h7v-9.14c1.72-0.44,3-1.99,3-3.84V9L21,9.02z M12,4.33L14,7h-4L12,4.33z M8,9h8v2H8V9z M18,20h-3 v-2c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v2H6v-7h12V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17.5,7.01C17.5,8.11,16.61,9,15.52,9H15V7.16c1.18-0.56,2-1.75,2-3.14V4l-1.5,0.01c0,0.99-0.73,1.8-1.68,1.95L10,1 L6.18,5.97C5.23,5.82,4.5,5.01,4.5,4.02H3C3,5.41,3.82,6.6,5,7.16V9H4.48C3.39,9,2.5,8.11,2.5,7.01H1c0,1.76,1.31,3.2,3,3.44V18h5 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h5v-7.55c1.69-0.24,3-1.68,3-3.44V7L17.5,7.01z M10,3.46L11.95,6H8.05L10,3.46z M6.5,7.5h7V9h-7 V7.5z M14.5,16.5h-2V15c0-1.38-1.12-2.5-2.5-2.5S7.5,13.62,7.5,15v1.5h-2v-6h9V16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"money\": {\n    \"name\": \"money\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"emergency_share\": {\n    \"name\": \"emergency_share\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4c1.93,0,3.68,0.78,4.95,2.05l-1.41,1.41C14.63,6.56,13.38,6,12,6S9.37,6.56,8.46,7.46L7.05,6.05 C8.32,4.78,10.07,4,12,4z M19.78,3.23l-1.41,1.41C16.74,3.01,14.49,2,12.01,2S7.27,3.01,5.64,4.63L4.22,3.22 C6.22,1.23,8.97,0,12.01,0S17.79,1.23,19.78,3.23z M12,11c1.94,0,4,1.45,4,4.15c0,0.94-0.55,2.93-4,6.17c-3.45-3.24-4-5.23-4-6.17 C8,12.45,10.06,11,12,11z M12,9c-3.15,0-6,2.41-6,6.15c0,2.49,2,5.44,6,8.85c4-3.41,6-6.36,6-8.85C18,11.41,15.15,9,12,9z M13.5,15 c0-0.83-0.67-1.5-1.5-1.5c-0.83,0-1.5,0.67-1.5,1.5c0,0.83,0.67,1.5,1.5,1.5C12.83,16.5,13.5,15.83,13.5,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15.28,12.28C15.28,15.81,10,20,10,20s-5.28-4.19-5.28-7.72C4.72,9.36,7.08,7,10,7S15.28,9.36,15.28,12.28z M16.34,2.66 l-1.06,1.06C13.92,2.35,12.03,1.5,9.95,1.5c-2.06,0-3.92,0.83-5.28,2.18L3.61,2.61C5.24,1,7.48,0,9.95,0 C12.45,0,14.71,1.02,16.34,2.66z M6.09,5.09l1.06,1.06C7.87,5.44,8.86,5,9.95,5c1.11,0,2.12,0.46,2.85,1.2l1.06-1.06 c-1-1.01-2.38-1.63-3.91-1.63C8.45,3.5,7.08,4.11,6.09,5.09z M6.22,12.28c0,1.71,2.05,4.15,3.78,5.74 c1.73-1.59,3.78-4.03,3.78-5.74c0-2.08-1.7-3.78-3.78-3.78S6.22,10.2,6.22,12.28z M10,11c-0.69,0-1.25,0.56-1.25,1.25 c0,0.69,0.56,1.25,1.25,1.25c0.69,0,1.25-0.56,1.25-1.25C11.25,11.56,10.69,11,10,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pin_drop\": {\n    \"name\": \"pin_drop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z\\\"></path><path d=\\\"M12 7c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 100-4zM5 20h14v2H5v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_right\": {\n    \"name\": \"roundabout_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.92,8C13.44,5.16,10.97,3,8,3C4.69,3,2,5.69,2,9c0,2.97,2.16,5.44,5,5.92L7,21h2l0-6.09c0-0.98-0.71-1.8-1.67-1.97 C5.44,12.63,4,10.98,4,9c0-2.21,1.79-4,4-4c1.98,0,3.63,1.44,3.94,3.33C12.11,9.29,12.93,10,13.91,10l4.26,0l-1.59,1.59L18,13l4-4 l-4-4l-1.41,1.41L18.17,8L13.92,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M6.75,3c2.37,0,4.33,1.73,4.69,4l3.69,0l-1.19-1.19L15,4.75l3,3l-3,3l-1.06-1.06l1.19-1.19l-3.69,0 c-0.74,0-1.36-0.54-1.48-1.25C9.72,5.69,8.37,4.5,6.75,4.5l0,0C4.96,4.5,3.5,5.96,3.5,7.75c0,1.62,1.18,2.96,2.73,3.21 c0.72,0.11,1.27,0.67,1.27,1.4l0,4.64H6v-4.56l0,0c-2.27-0.36-4-2.32-4-4.69C2,5.13,4.13,3,6.75,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"synagogue\": {\n    \"name\": \"synagogue\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4c-1.66,0-3,1.34-3,3v0.29L12,3L7,7.29V7c0-1.66-1.34-3-3-3S1,5.34,1,7v14h10v-5c0-0.55,0.45-1,1-1s1,0.45,1,1v5h10V7 C23,5.34,21.66,4,20,4z M20,6c0.55,0,1,0.45,1,1v1h-2V7C19,6.45,19.45,6,20,6z M4,6c0.55,0,1,0.45,1,1v1H3V7C3,6.45,3.45,6,4,6z M3,19v-9h2v9H3z M17,19h-2v-3c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v3H7V9.92l5-4.29l5,4.29V19z M19,19v-9h2v9H19z\\\"></path><circle cx=\\\"12\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"8.25\\\" r=\\\"1.25\\\"></circle><path d=\\\"M16.5,4c-1.38,0-2.5,1.12-2.5,2.5v0.13L10,3L6.01,6.63V6.5C6.01,5.12,4.89,4,3.5,4C2.12,4,1,5.12,1,6.5V17h8v-3 c0-0.55,0.45-1,1-1s1,0.45,1,1v3h8V6.5C19,5.12,17.88,4,16.5,4z M16.5,5.5c0.55,0,1,0.45,1,1v1h-2.01v-1 C15.49,5.95,15.94,5.5,16.5,5.5z M3.5,5.5c0.55,0,1,0.45,1,1v1H2.5v-1C2.5,5.95,2.95,5.5,3.5,5.5z M2.5,15.5V9h2v6.5H2.5z M12.5,15.5V14c0-1.38-1.12-2.5-2.5-2.5S7.5,12.62,7.5,14v1.5H6.01V8.66L10,5.03l3.99,3.63v6.84H12.5z M15.5,15.5V9h2v6.5H15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nightlife\": {\n    \"name\": \"nightlife\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9l0,0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17V5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.74,10.96L12,5H2l4.24,5.94v3.56H5V16h4v-1.5H7.74V10.96z M5.99,8L4.91,6.5h4.17L8.01,8H5.99z\\\"></path><path d=\\\"M13.5,5v6.21c-0.31-0.13-0.64-0.21-1-0.21c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V7h2V5H13.5 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plumbing\": {\n    \"name\": \"plumbing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z\\\"></path><path d=\\\"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z\\\"></path><path d=\\\"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13.29,4.45l2.83,2.83l0,0c0.78-0.78,0.78-2.05,0-2.83l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0L9.75,5.15l1.41,1.41 L13.29,4.45z\\\"></path><path d=\\\"M4.8,11.52L4.8,11.52c0.39,0.39,1.02,0.39,1.41,0L8.34,9.4L6.92,7.98L4.8,10.1C4.41,10.49,4.41,11.13,4.8,11.52z\\\"></path><path d=\\\"M12.58,6.57l-1.41,1.41L8.34,5.15c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L9.75,9.4L9.04,10.1 l-5.3,5.3c-0.59,0.59-0.59,1.54,0,2.12l0,0c0.59,0.59,1.54,0.59,2.12,0l7.42-7.42l0,0c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L12.58,6.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_transit_filled\": {\n    \"name\": \"directions_transit_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"badge\": {\n    \"name\": \"badge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"14\\\" y=\\\"12\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"14\\\" y=\\\"15\\\"></rect><path d=\\\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M11,7V4h2v3v2h-2V7z M20,20H4V9h5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2h5V20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.08,16.18C10.44,15.9,9.74,15.75,9,15.75s-1.44,0.15-2.08,0.43C6.36,16.42,6,16.96,6,17.57V18h6v-0.43 C12,16.96,11.64,16.42,11.08,16.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M16.5,6H12V3.5C12,2.67,11.33,2,10.5,2h-1C8.67,2,8,2.67,8,3.5V6H3.5C2.67,6,2,6.67,2,7.5v9C2,17.33,2.67,18,3.5,18h13 c0.83,0,1.5-0.67,1.5-1.5v-9C18,6.67,17.33,6,16.5,6z M9.5,3.5h1v4h-1V3.5z M16.5,16.5h-13v-9H8C8,8.33,8.67,9,9.5,9h1 C11.33,9,12,8.33,12,7.5h4.5V16.5z\\\"></path></g><g><rect height=\\\"1.5\\\" width=\\\"3\\\" x=\\\"12\\\" y=\\\"10\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"3\\\" x=\\\"12\\\" y=\\\"12.5\\\"></rect></g><g><circle cx=\\\"7.5\\\" cy=\\\"11.25\\\" r=\\\"1.25\\\"></circle></g><g><path d=\\\"M9.24,13.36C8.7,13.13,8.12,13,7.5,13c-0.62,0-1.2,0.13-1.74,0.36C5.3,13.56,5,14.01,5,14.52V15h5v-0.48 C10,14.01,9.7,13.56,9.24,13.36z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"diamond\": {\n    \"name\": \"diamond\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5L2,9l10,12L22,9L19,3z M9.62,8l1.5-3h1.76l1.5,3H9.62z M11,10v6.68L5.44,10H11z M13,10h5.56L13,16.68V10z M19.26,8 h-2.65l-1.5-3h2.65L19.26,8z M6.24,5h2.65l-1.5,3H4.74L6.24,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,3H4L2,8l8,9l8-9L16,3z M8.21,7.25L9.59,4.5h0.82l1.38,2.75H8.21z M9.25,8.75v5.15L4.67,8.75H9.25z M10.75,8.75h4.58 l-4.58,5.15V8.75z M16.08,7.25h-2.62L12.09,4.5h2.9L16.08,7.25z M5.02,4.5h2.9L6.54,7.25H3.92L5.02,4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_sharp_left\": {\n    \"name\": \"turn_sharp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,6.83L4.41,8.41L3,7l4-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0,2,0.9,2,2v6h-2v-6H8c-1.1,0-2-0.9-2-2V6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M5.5,10.5C5.5,11.33,6.17,12,7,12l6,0v5h1.5v-5c0-0.83-0.67-1.5-1.5-1.5l-6,0l0-4.63l1.19,1.19L9.25,6l-3-3l-3,3l1.06,1.06 L5.5,5.87L5.5,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fastfood\": {\n    \"name\": \"fastfood\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_boat\": {\n    \"name\": \"directions_boat\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3v1h-2V3h2m-1 7.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32s-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.79L12 10.11M15 1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1zM6 9.97V6h12v3.97L12 8 6 9.97zm10 9.71c-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32z\\\"></path>\"\n      }\n    }\n  },\n  \"flight\": {\n    \"name\": \"flight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hail\": {\n    \"name\": \"hail\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,6c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,6,12,6z M17,2h2c0,2.7-0.93,4.41-2.3,5.5c-0.5,0.4-1.1,0.7-1.7,0.9V22h-2 v-6h-2v6H9V10.1c-0.3,0.1-0.5,0.2-0.6,0.3C7.87,10.81,7,11.43,7,14H5c0-2.06,0.35-3.78,2.11-5.29C8.21,7.81,10,7,12,7 s2.68-0.46,3.48-1.06C15.96,5.55,17,4.76,17,2z M4,16h3v6H4V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"traffic\": {\n    \"name\": \"traffic\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-5 9H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control\": {\n    \"name\": \"pest_control\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z\\\"></path><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16,12v-1h-2.04c-0.04-0.38-0.11-0.74-0.22-1.08l1.71-0.99l-0.5-0.87L13.33,9c-0.24-0.4-0.54-0.74-0.87-1.03 c0.07-0.39,0.13-1.19-0.48-1.99l1.24-1.24l-0.71-0.71l-1.29,1.29c-0.41-0.23-1.35-0.61-2.43,0L7.49,4.04L6.78,4.74l1.24,1.24 C7.41,6.78,7.47,7.58,7.55,7.97C7.21,8.26,6.91,8.6,6.67,9L5.05,8.07l-0.5,0.87l1.71,0.99c-0.11,0.34-0.18,0.7-0.22,1.08H4v1h2.04 c0.04,0.38,0.11,0.74,0.22,1.08l-1.71,0.99l0.5,0.87L6.67,14c0.72,1.21,1.94,2,3.33,2s2.61-0.8,3.33-2l1.62,0.94l0.5-0.87 l-1.71-0.99c0.11-0.34,0.18-0.7,0.22-1.08H16z M10,6c0.77,0,1.4,0.58,1.48,1.33C11.02,7.12,10.52,7,10,7S8.98,7.12,8.52,7.33 C8.6,6.58,9.23,6,10,6z M10,15c-1.65,0-3-1.57-3-3.5C7,9.57,8.35,8,10,8s3,1.57,3,3.5C13,13.43,11.65,15,10,15z\\\"></path><g><rect height=\\\"4\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"9.5\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"multiple_stop\": {\n    \"name\": \"multiple_stop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"emergency_recording\": {\n    \"name\": \"emergency_recording\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,18 H4V6h12V18z M12,12l3,1.73l-1,1.73l-3-1.73V17H9v-3.27l-3,1.73l-1-1.73L8,12l-3-1.73l1-1.73l3,1.73V7h2v3.27l3-1.73l1,1.73L12,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18,6l-3,3V5.5C15,4.67,14.33,4,13.5,4h-9C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h9c0.83,0,1.5-0.67,1.5-1.5V11l3,3 V6z M13.5,14.5h-9v-9h9V14.5z M10.5,10l2.25,1.3L12,12.6l-2.25-1.3v2.45h-1.5V11.3L6,12.6l-0.75-1.3L7.5,10L5.25,8.7L6,7.4 l2.25,1.3V6.25h1.5V8.7L12,7.4l0.75,1.3L10.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_left\": {\n    \"name\": \"turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.83,11l1.59,1.59L7,14l-4-4l4-4l1.41,1.41L6.83,9L15,9c1.1,0,2,0.9,2,2v9h-2v-9L6.83,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M12,16h1.5V9c0-0.83-0.67-1.5-1.5-1.5l-6.13,0l1.19-1.19L6,5.25l-3,3l3,3l1.06-1.06L5.87,9L12,9V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flight_class\": {\n    \"name\": \"flight_class\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M16,4h-2c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M16,11h-2V6h2V11z M9.5,16H18v2H9.49 c-0.88,0-1.66-0.58-1.92-1.43L5,8V4h2v4L9.5,16z M8,19h10v2H8V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,4h-1.5C10.67,4,10,4.67,10,5.5v3.75c0,0.83,0.67,1.5,1.5,1.5H13c0.83,0,1.5-0.67,1.5-1.5V5.5C14.5,4.67,13.83,4,13,4z M13,9.25h-1.5V5.5H13V9.25z M8.4,13H15v1.5H8.4c-0.66,0-1.24-0.43-1.43-1.06L5,7V4h1.5v3L8.4,13z M7.5,15.5H15V17H7.5V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_road\": {\n    \"name\": \"remove_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><polygon points=\\\"22.5,16.41 21.09,15 19,17.09 16.91,15 15.5,16.41 17.59,18.5 15.5,20.59 16.91,22 19,19.91 21.09,22 22.5,20.59 20.41,18.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13\\\"></rect><polygon points=\\\"18,13.56 16.94,12.5 15.25,14.19 13.56,12.5 12.5,13.56 14.19,15.25 12.5,16.94 13.56,18 15.25,16.31 16.94,18 18,16.94 16.31,15.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_grocery_store\": {\n    \"name\": \"local_grocery_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_road\": {\n    \"name\": \"edit_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,4 16,4 16,11.9 18,9.9\\\"></polygon><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"16\\\"></rect><path d=\\\"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"9\\\"></rect><path d=\\\"M18.07,9.64l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0L11,13.88V16h2.12l4.95-4.95C18.46,10.66,18.46,10.03,18.07,9.64z M12.71,15H12v-0.71l3.24-3.24l0.71,0.71L12.71,15z\\\"></path><polygon points=\\\"14,4 13,4 13,10.46 14,9.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"category\": {\n    \"name\": \"category\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"fork_right\": {\n    \"name\": \"fork_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.59,15.59L16,17l4-4l-4-4l-1.41,1.41L16.17,12c-1.51-0.33-3.73,0.08-5.17,1.36l0-6.53l1.59,1.59L14,7l-4-4L6,7 l1.41,1.41L9,6.83V21l2,0v-4c0.73-2.58,3.07-3.47,5.17-3L14.59,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M9,11.36c1.2-1.05,2.74-1.4,4.13-1.11l-1.19-1.19L13,8l3,3l-3,3l-1.06-1.06l1.19-1.19C11.26,11.32,9.56,12.28,9,14v3H7.5 l0-11.13L6.31,7.06L5.25,6l3-3l3,3l-1.06,1.06L9,5.87L9,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_movies\": {\n    \"name\": \"local_movies\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5v14h-4V5h4m6-2h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3zm-4 6V7h2v2h-2zM6 9V7h2v2H6zm10 4v-2h2v2h-2zM6 13v-2h2v2H6zm10 4v-2h2v2h-2zM6 17v-2h2v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"streetview\": {\n    \"name\": \"streetview\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z\\\"></path><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"5\\\"></circle><path d=\\\"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"soup_kitchen\": {\n    \"name\": \"soup_kitchen\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.4,7C6.06,7.55,6,7.97,6,8.38C6,9.15,7,11,7,12c0,0.95-0.4,1.5-0.4,1.5H5.1c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62 C4.5,7.97,4.56,7.55,4.9,7H6.4z M11.4,7C11.06,7.55,11,7.97,11,8.38C11,9.15,12,11,12,12c0,0.95-0.4,1.5-0.4,1.5h1.5 c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H11.4z M8.15,7c-0.34,0.55-0.4,0.97-0.4,1.38 c0,0.77,1,2.63,1,3.62c0,0.95-0.4,1.5-0.4,1.5h1.5c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H8.15z M18.6,2 c-1.54,0-2.81,1.16-2.98,2.65L14.53,15H4.01c-0.6,0-1.09,0.53-1,1.13C3.53,19.46,6.39,22,9.75,22c3.48,0,6.34-2.73,6.71-6.23 l1.15-10.87C17.66,4.39,18.08,4,18.6,4c0.55,0,1,0.45,1,1c0,0.3-0.1,1.25-0.1,1.25l1.97,0.25c0,0,0.13-1.06,0.13-1.5 C21.6,3.35,20.25,2,18.6,2z M9.75,20c-1.94,0-3.67-1.23-4.43-3h8.78h0.01C13.39,18.78,11.69,20,9.75,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M4.96,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79C4.5,6.74,4.54,6.42,4.81,6h0.98 C5.53,6.42,5.48,6.74,5.48,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H4.96z M8.32,11c0,0,0.31-0.42,0.31-1.15 c0-0.77-0.77-2.19-0.77-2.79C7.86,6.74,7.9,6.42,8.16,6H7.18C6.92,6.42,6.88,6.74,6.88,7.06c0,0.59,0.77,2.02,0.77,2.79 c0,0.73-0.31,1.15-0.31,1.15H8.32z M10.69,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79c0-0.31,0.04-0.64,0.31-1.06H9.56 C9.29,6.42,9.25,6.74,9.25,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H10.69z M15.5,2c-1.16,0-2.11,0.88-2.24,2 l-0.94,8.4H3.5c-0.28,0-0.53,0.24-0.5,0.52C3.25,15.77,5.59,18,8.4,18c2.78,0,5.07-2.18,5.36-4.99l0.99-8.84 c0.04-0.38,0.36-0.67,0.75-0.67c0.41,0,0.75,0.34,0.75,0.75S16.2,5.3,16.2,5.3l1.48,0.19c0,0,0.07-0.47,0.07-1.24 C17.75,3.01,16.74,2,15.5,2z M8.4,16.5c-1.63,0-3.07-1.08-3.65-2.6h7.28C11.46,15.44,10.04,16.5,8.4,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"castle\": {\n    \"name\": \"castle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9V9H21z M21,19h-5v-1 c0-2.21-1.79-4-4-4s-4,1.79-4,4v1H3v-6h4V7h10v6h4V19z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"7.5\\\" y=\\\"7\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M17.5,7v2H16V2h-1.5v2h-2V2H11v2H9V2H7.5v2h-2V2H4v7H2.5V7H1v10h7v-2c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7V7H17.5z M17.5,15.5 h-4V15c0-1.93-1.57-3.5-3.5-3.5S6.5,13.07,6.5,15v0.5h-4v-5h3v-5h9v5h3V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hardware\": {\n    \"name\": \"hardware\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v12c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8l3,3h2V3H18z M13,19h-2v-6h2V19z M11,11V6 H6.77C7.32,5.39,8.11,5,9,5h4v6H11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M14.5,3L12,5.5V3H8C5.79,3,4,4.79,4,7h3.5v9c0,0.55,0.45,1,1,1H11c0.55,0,1-0.45,1-1V6.5L14.5,9H16V3H14.5z M10.5,15.5H9 v-4.75h1.5V15.5z M10.5,9.25H9V5.5H6c0.46-0.61,1.18-1,2-1h2.5V9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trip_origin\": {\n    \"name\": \"trip_origin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"pedal_bike\": {\n    \"name\": \"pedal_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14.82,9l-1.58-4.34C13.1,4.26,12.72,4,12.3,4H10v1h2.3l1.46,4H8.75L8.38,8H10V7H6v1h1.32l1.46,4H7.95 C7.7,10.19,6.13,8.86,4.2,9.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,14.25,2.41,16,4.5,16c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,10.75,17.59,9,15.5,9H14.82z M9.11,10h3.92 c-0.53,0.52-0.88,1.22-0.98,2H9.84L9.11,10z M4.5,15C3.1,15,2,13.9,2,12.5S3.1,10,4.5,10c1.23,0,2.23,0.85,2.45,2H4v1h2.95 C6.73,14.15,5.73,15,4.5,15z M15.5,15c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8 C15.3,10.02,15.4,10,15.5,10c1.4,0,2.5,1.1,2.5,2.5S16.9,15,15.5,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"store_mall_directory\": {\n    \"name\": \"store_mall_directory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"local_hotel\": {\n    \"name\": \"local_hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant_menu\": {\n    \"name\": \"restaurant_menu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"train\": {\n    \"name\": \"train\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z\\\"></path>\"\n      }\n    }\n  },\n  \"moving\": {\n    \"name\": \"moving\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,9.42V12h2V6h-6v2h2.58l-4.46,4.46c-0.39,0.39-1.02,0.39-1.41,0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24,0L2,16.59L3.41,18 l5.29-5.29c0.39-0.39,1.02-0.39,1.41,0l1.17,1.17c1.17,1.17,3.07,1.17,4.24,0L20,9.42z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,7.56l-3.7,3.7c-0.98,0.98-2.56,0.98-3.54,0l-0.7-0.7c-0.39-0.39-1.02-0.39-1.41,0l-4.09,4.09L2,13.59L6.08,9.5 c0.98-0.98,2.56-0.98,3.54,0l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0l3.7-3.7H13V5h5v5h-1.5V7.56z\\\"></path>\"\n      }\n    }\n  },\n  \"local_police\": {\n    \"name\": \"local_police\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z\\\"></path>\"\n      }\n    }\n  },\n  \"my_location\": {\n    \"name\": \"my_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"car_crash\": {\n    \"name\": \"car_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,7h-1V3h1V7z M18.5,8v1h-1V8H18.5z M6,13.5 C6,12.67,6.67,12,7.5,12S9,12.67,9,13.5S8.33,15,7.5,15S6,14.33,6,13.5z M19,12.93c0.65-0.09,1.34-0.28,2-0.6h0V19 c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1v-1H6v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-8l2.08-5.99C5.29,4.42,5.84,4,6.5,4 l4.79,0C11.1,4.63,11,5.31,11,6H6.85L5.81,9h5.86v0c0.36,0.75,0.84,1.43,1.43,2L5,11v5h14L19,12.93z M17.91,13 c-0.89-0.01-1.74-0.19-2.53-0.51C15.15,12.76,15,13.11,15,13.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 C18,13.32,17.97,13.16,17.91,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,5c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S19,2.79,19,5z M15.5,6.5C15.5,6.22,15.28,6,15,6s-0.5,0.22-0.5,0.5 S14.72,7,15,7S15.5,6.78,15.5,6.5z M15.5,3h-1v2h1V3z M6.5,12.25c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1 S7.05,12.25,6.5,12.25z M15.5,10.48l0,2.52h-11V9.5l7.34,0c-0.57-0.4-1.07-0.91-1.45-1.5H5.02l1-2.5h3.51 C9.47,4.99,9.51,4.39,9.59,4H6.02C5.4,4,4.85,4.37,4.62,4.94L3,9l0,6.5C3,15.78,3.22,16,3.5,16h1C4.78,16,5,15.78,5,15.5v-1h10v1 c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-5.38C16.53,10.31,16.02,10.43,15.5,10.48z M13.5,10.25c-0.55,0-1,0.45-1,1 s0.45,1,1,1c0.55,0,1-0.45,1-1S14.05,10.25,13.5,10.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"u_turn_left\": {\n    \"name\": \"u_turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,9v12h-2V9c0-2.21-1.79-4-4-4S8,6.79,8,9v4.17l1.59-1.59L11,13l-4,4l-4-4l1.41-1.41L6,13.17V9c0-3.31,2.69-6,6-6 S18,5.69,18,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M5.5,7.5C5.5,5.01,7.51,3,10,3s4.5,2.01,4.5,4.5V16H13V7.5c0-1.66-1.34-3-3-3s-3,1.34-3,3l0,2.63l1.19-1.19L9.25,10l-3,3 l-3-3l1.06-1.06l1.19,1.19L5.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"run_circle\": {\n    \"name\": \"run_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path><path d=\\\"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"7\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\\\"></path><path d=\\\"M11.39,8.15c-0.23-0.43-0.76-0.6-1.22-0.44L7.5,8.67v1.95h1V9.37l0.92-0.33L8.8,12.16l-2.19-0.45l-0.2,0.98l3.17,0.65 L10,11.21l1,0.99V15h1v-3.21l-1.39-1.38l0.21-1.19c0.81,1.03,2.08,1.4,2.67,1.4v-1C13.16,9.62,12.09,9.46,11.39,8.15z\\\"></path><circle cx=\\\"11\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"electric_bike\": {\n    \"name\": \"electric_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,7h-0.68l-1.58-4.34C13.1,2.26,12.72,2,12.3,2H10v1h2.3l1.46,4H8.75L8.38,6H10V5H6v1h1.32l1.46,4H7.95 C7.7,8.19,6.13,6.86,4.2,7.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,12.25,2.41,14,4.5,14c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,8.75,17.59,7,15.5,7z M6.95,11c-0.23,1.15-1.22,2-2.45,2 C3.1,13,2,11.9,2,10.5S3.1,8,4.5,8c1.23,0,2.23,0.85,2.45,2H4v1H6.95z M12.05,10H9.84L9.11,8h3.92C12.5,8.52,12.16,9.22,12.05,10z M15.5,13c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,8.02,15.4,8,15.5,8 c1.4,0,2.5,1.1,2.5,2.5S16.9,13,15.5,13z\\\"></path><polygon points=\\\"9.5,16 7,16 10.5,18 10.5,17 13,17 9.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_hospital\": {\n    \"name\": \"local_hospital\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tire_repair\": {\n    \"name\": \"tire_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,8c-0.55,0-1-0.45-1-1c0-0.28,0.11-0.53,0.29-0.71c0.4-0.4,2.46-1.04,2.46-1.04s-0.64,2.06-1.04,2.46 C19.53,7.89,19.28,8,19,8z M20,13v5c0,1.65-1.35,3-3,3s-3-1.35-3-3v-2c0-0.55-0.45-1-1-1s-1,0.45-1,1v3c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2v8.17c0.31-0.11,0.65-0.17,1-0.17c1.65,0,3,1.35,3,3v2c0,0.55,0.45,1,1,1 s1-0.45,1-1v-5h-1l0-1.42c-1.77-0.77-3-2.53-3-4.58c0-2.76,2.24-5,5-5s5,2.24,5,5c0,2.05-1.23,3.81-3,4.58L21,13H20z M22,7 c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3S22,8.66,22,7z M10,7L8,9V6.17L9.17,5H4.83L6,6.17V9L4,7v2.17l2,2V14l-2-2v2.17l2,2V19 l-2-2v2h6v-2l-2,2v-2.83l2-2V12l-2,2v-2.83l2-2V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14.75,8c-1.24,0-2.25-1.01-2.25-2.25c0-1.24,1.01-2.25,2.25-2.25S17,4.51,17,5.75C17,6.99,15.99,8,14.75,8z M14.75,6.5 C14.34,6.5,14,6.16,14,5.75c0-0.21,0.08-0.39,0.22-0.53C14.52,4.92,16,4.5,16,4.5s-0.42,1.48-0.72,1.78 C15.14,6.42,14.96,6.5,14.75,6.5z M3.5,15.5V14L5,15.5v-2.12l-1.5-1.5v-1.63l1.5,1.5V9.62l-1.5-1.5V6.5L5,8V5.88L3.62,4.5h4.26 L6.5,5.88V8L8,6.5v1.63l-1.5,1.5v2.12l1.5-1.5v1.63l-1.5,1.5v2.12L8,14v1.5H3.5z M15.5,10h1l0-0.93c1.19-0.63,2-1.88,2-3.32 C18.5,3.68,16.82,2,14.75,2S11,3.68,11,5.75c0,1.44,0.81,2.69,2,3.32L13,10h1v4.75c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.24-1.01-2.25-2.25-2.25c-0.26,0-0.52,0.05-0.75,0.13l0-4.1l0-2.52C9.5,3.67,8.83,3,8,3H3.5 C2.67,3,2,3.67,2,4.5v11C2,16.33,2.67,17,3.5,17H8c0.83,0,1.5-0.67,1.5-1.5v-2.25c0-0.41,0.34-0.75,0.75-0.75S11,12.84,11,13.25 v1.5c0,1.24,1.01,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"egg\": {\n    \"name\": \"egg\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3C8.5,3,5,9.33,5,14c0,3.87,3.13,7,7,7c3.87,0,7-3.13,7-7C19,9.33,15.5,3,12,3z M12,19c-2.76,0-5-2.24-5-5 c0-4.09,3.07-9,5-9s5,4.91,5,9C17,16.76,14.76,19,12,19z\\\"></path><path d=\\\"M13,16c-0.58,0-3-0.08-3-3c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,3,1.99,5,5,5c0.55,0,1-0.45,1-1S13.55,16,13,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-2.75,0-5.5,4.93-5.5,8.56C4.5,14.56,6.96,17,10,17c3.04,0,5.5-2.44,5.5-5.44C15.5,7.93,12.75,3,10,3z M10,15.5 c-2.21,0-4-1.77-4-3.94c0-3.2,2.46-7.06,4-7.06c1.54,0,4,3.85,4,7.06C14,13.73,12.21,15.5,10,15.5z\\\"></path><path d=\\\"M10.25,13c-1.21,0-1.75-1.13-1.75-2.25C8.5,10.34,8.16,10,7.75,10S7,10.34,7,10.75c0,2.17,1.37,3.75,3.25,3.75 c0.41,0,0.75-0.34,0.75-0.75S10.66,13,10.25,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_pizza\": {\n    \"name\": \"local_pizza\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"liquor\": {\n    \"name\": \"liquor\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z M5,13h2v1 c0,0.55-0.45,1-1,1s-1-0.45-1-1V13z\\\"></path><path d=\\\"M20.64,8.54l-0.96-0.32C19.27,8.08,19,7.7,19,7.27V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.27,0.81-0.68,0.95l-0.96,0.32C11.55,8.83,11,9.59,11,10.45V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.64,8.54z M16,4h1v1h-1V4z M20,20h-7v-2h7V20z M20,16h-7v-2h7V16z M20,12h-7v-1.56l0.95-0.32 C15.18,9.72,16,8.57,16,7.28V7h1v0.28c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,10.5v1c0,0.43-0.28,0.81-0.7,0.94l-0.3,0.09l-0.3-0.09c-0.42-0.13-0.7-0.51-0.7-0.94v-1H6.5 M8,5H3v6.5 c0,1.12,0.74,2.05,1.75,2.37v2.63H3V18h5v-1.5H6.25v-2.63C7.26,13.55,8,12.62,8,11.5V5L8,5z M4.5,9V6.5h2V9H4.5L4.5,9z\\\"></path><path d=\\\"M16.5,11.5v2h-6l0-2H16.5 M14.5,2h-2c-0.55,0-1,0.45-1,1v2.98c0,0.61-0.37,1.17-0.94,1.39L9.94,7.62 C9.37,7.85,9,8.4,9,9.02v7.48c0,0.83,0.67,1.5,1.5,1.5h6c0.83,0,1.5-0.67,1.5-1.5V9.02c0-0.61-0.37-1.17-0.94-1.39l-0.61-0.25 C15.87,7.15,15.5,6.6,15.5,5.98V3C15.5,2.45,15.05,2,14.5,2L14.5,2z M13,4.5v-1h1v1H13L13,4.5z M10.5,10V9.02l0.61-0.25 C12.25,8.31,12.99,7.23,13,6h1c0.01,1.23,0.74,2.31,1.88,2.77l0.61,0.25V10H10.5L10.5,10z M10.5,16.5V15h6v1.5H10.5L10.5,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_taxi\": {\n    \"name\": \"local_taxi\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"fire_truck\": {\n    \"name\": \"fire_truck\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22.9,10.69l-1.44-4.32C21.18,5.55,20.42,5,19.56,5H19V4c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v1h-2c-1.1,0-2,0.9-2,2 v4H1v5c0,1.1,0.9,2,2,2h1c0,1.66,1.34,3,3,3s3-1.34,3-3h4c0,1.66,1.34,3,3,3s3-1.34,3-3h3v-6.68C23,11.11,22.97,10.9,22.9,10.69z M14,7h5.56l1.33,4H14V7z M7,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,19,7,19z M12,16H9.22C8.67,15.39,7.89,15,7,15 s-1.67,0.39-2.22,1H3v-3h9V16z M17,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,19,17,19z M19.22,16 c-0.55-0.61-1.34-1-2.22-1s-1.67,0.39-2.22,1H14v-3h7v3H19.22z\\\"></path><path d=\\\"M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5z M8.5,8.5H6.75v-2H8.5V8.5z M3.5,6.5h1.75v2H3.5V6.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,9.35c0-0.23-0.05-0.46-0.16-0.67l-1.43-2.85C17.16,5.32,16.64,5,16.07,5H15.5V3.5C15.5,3.22,15.28,3,15,3h-1.5 C13.22,3,13,3.22,13,3.5V5h-1.5C10.67,5,10,5.67,10,6.5v3H1v4C1,14.33,1.67,15,2.5,15h0.55c0.23,1.14,1.24,2,2.45,2 c1.21,0,2.22-0.86,2.45-2h4.1c0.23,1.14,1.24,2,2.45,2c1.21,0,2.22-0.86,2.45-2H19V9.35z M11.5,6.5h4.57h0l1.43,2.85V9.5h-6V6.5z M6.5,14.5c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S6.5,13.95,6.5,14.5z M10,13.5H7.79C7.4,12.62,6.52,12,5.5,12 c-1.02,0-1.9,0.62-2.29,1.5H2.5V11H10V13.5z M15.5,14.5c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S15.5,13.95,15.5,14.5z M16.79,13.5C16.4,12.62,15.52,12,14.5,12c-1.02,0-1.9,0.62-2.29,1.5H11.5V11h6v2.5H16.79z\\\"></path><path d=\\\"M9,7.5H8V6h1V5H1v1h1v1.5H1v1h8V7.5z M7,7.5H5.5V6H7V7.5z M3,6h1.5v1.5H3V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_car\": {\n    \"name\": \"directions_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"ramp_right\": {\n    \"name\": \"ramp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,21h2V6.83l1.59,1.59L16,7l-4-4L8,7l1.41,1.41L11,6.83V9c0,4.27-4.03,7.13-6,8.27l1.46,1.46 C8.37,17.56,9.9,16.19,11,14.7L11,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M9.25,5.87L8.06,7.06L7,6l3-3l3,3l-1.06,1.06l-1.19-1.19l0,11.13h-1.5l0-4.99l0-0.01c-1.02,1.39-2.35,2.43-3.39,3.09 L4.77,14c1.6-0.96,4.48-3.18,4.48-6.3L9.25,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mosque\": {\n    \"name\": \"mosque\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M24,7c0-1.1-2-3-2-3s-2,1.9-2,3c0,0.74,0.4,1.38,1,1.72V13h-2v-2c0-0.95-0.66-1.74-1.55-1.94C17.79,8.48,18,7.81,18,7.09 c0-1.31-0.65-2.53-1.74-3.25L12,1L7.74,3.84C6.65,4.56,6,5.78,6,7.09c0,0.72,0.21,1.39,0.55,1.96C5.66,9.26,5,10.05,5,11v2H3V8.72 C3.6,8.38,4,7.74,4,7c0-1.1-2-3-2-3S0,5.9,0,7c0,0.74,0.4,1.38,1,1.72V21h10v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4h10V8.72 C23.6,8.38,24,7.74,24,7z M8.85,5.5L12,3.4l3.15,2.1C15.68,5.86,16,6.45,16,7.09C16,8.14,15.14,9,14.09,9H9.91 C8.86,9,8,8.14,8,7.09C8,6.45,8.32,5.86,8.85,5.5z M21,19h-6v-2c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v2H3v-4h4v-4h10v4h4V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18.25,3c0,0-1.5,1.67-1.5,2.5c0,0.55,0.3,1.03,0.75,1.29V11H16V9.5C16,8.67,15.33,8,14.5,8h-0.14 C14.76,7.43,15,6.74,15,5.99c0-1.23-0.65-2.38-1.71-3.01L10,1L6.71,2.98C5.65,3.61,5,4.76,5,5.99C5,6.74,5.24,7.43,5.64,8H5.5 C4.67,8,4,8.67,4,9.5V11H2.5V6.79C2.95,6.53,3.25,6.05,3.25,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5 c0,0.55,0.3,1.03,0.75,1.29V17h8v-3.5c0-0.55,0.45-1,1-1s1,0.45,1,1V17h8V6.79c0.45-0.26,0.75-0.74,0.75-1.29 C19.75,4.67,18.25,3,18.25,3z M7.48,4.26L10,2.75l2.52,1.51c0.6,0.36,0.98,1.02,0.98,1.73c0,1.1-0.88,1.99-1.97,2.01H8.48 C7.38,7.98,6.5,7.09,6.5,5.99C6.5,5.29,6.87,4.62,7.48,4.26z M17.5,15.5h-5v-2c0-1.38-1.12-2.5-2.5-2.5s-2.5,1.12-2.5,2.5v2h-5v-3 h3v-3h9v3h3V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"electrical_services\": {\n    \"name\": \"electrical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z\\\"></path><path d=\\\"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z\\\"></path><path d=\\\"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z\\\"></path><path d=\\\"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16,11.5c0-0.28-0.22-0.5-0.5-0.5H14v1h1.5C15.78,12,16,11.78,16,11.5z\\\"></path><path d=\\\"M15.5,14H14v1h1.5c0.28,0,0.5-0.22,0.5-0.5C16,14.22,15.78,14,15.5,14z\\\"></path><path d=\\\"M9,11v1H8v2h1l0,1c0,0.55,0.45,1,1,1h3v-6h-3C9.45,10,9,10.45,9,11z\\\"></path><path d=\\\"M6.75,9H7.5C8.88,9,10,7.88,10,6.5C10,5.12,8.88,4,7.5,4h-2C5.22,4,5,4.22,5,4.5C5,4.78,5.22,5,5.5,5h2 C8.33,5,9,5.67,9,6.5S8.33,8,7.5,8H6.75C5.23,8,4,9.23,4,10.75s1.23,2.75,2.75,2.75H7v-1H6.75C5.78,12.5,5,11.72,5,10.75 S5.78,9,6.75,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"satellite\": {\n    \"name\": \"satellite\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.71c0 2.36-1.92 4.29-4.29 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_transit\": {\n    \"name\": \"directions_transit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"directions_bike\": {\n    \"name\": \"directions_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"transit_enterexit\": {\n    \"name\": \"transit_enterexit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_hydrant_alt\": {\n    \"name\": \"fire_hydrant_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,10.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.93,10.5,12,10.5z M12,15.5 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,15.5,12,15.5z\\\"></path><path d=\\\"M19,11h-1V8h2V6h-2.35C16.83,3.67,14.61,2,12,2S7.17,3.67,6.35,6H4v2h2v3H5c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v3H4v2 h16v-2h-2v-3h1c1.1,0,2-0.9,2-2v-2C21,11.9,20.1,11,19,11z M12,4c1.47,0,2.75,0.81,3.44,2H8.56C9.25,4.81,10.53,4,12,4z M19,15h-3 v5H8v-5H5v-2h3V8h8v5h3V15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,8.75c-1.52,0-2.75,1.23-2.75,2.75s1.23,2.75,2.75,2.75s2.75-1.23,2.75-2.75S11.52,8.75,10,8.75z M10,12.75 c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S10.69,12.75,10,12.75z\\\"></path><path d=\\\"M15.5,9H15V7h1V5.5h-1.25C14.11,3.48,12.24,2,10,2S5.89,3.48,5.25,5.5H4V7h1v2H4.5C3.67,9,3,9.67,3,10.5v2 C3,13.33,3.67,14,4.5,14H5v2.5H4V18h12v-1.5h-1V14h0.5c0.83,0,1.5-0.67,1.5-1.5v-2C17,9.67,16.33,9,15.5,9z M10,3.5 c1.39,0,2.59,0.82,3.15,2h-6.3C7.41,4.32,8.61,3.5,10,3.5z M15.5,12.5h-2v4h-7v-4h-2v-2h2V7h7v3.5h2V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"minor_crash\": {\n    \"name\": \"minor_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.92,9.01C18.72,8.42,18.16,8,17.5,8h-11C5.84,8,5.29,8.42,5.08,9.01L3,15v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,9.01z M6.85,10h10.29l1.04,3H5.81L6.85,10z M19,20H5v-5h14V20z M6,17.5 C6,16.67,6.67,16,7.5,16S9,16.67,9,17.5S8.33,19,7.5,19S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S17.33,19,16.5,19S15,18.33,15,17.5z M9.41,5L8,6.41l-3-3L6.41,2L9.41,5z M16,6.41L14.59,5l3-3L19,3.41L16,6.41z M13,5h-2V0h2V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17,12v6.5c0,0.28-0.22,0.5-0.5,0.5h-1c-0.28,0-0.5-0.22-0.5-0.5v-1H5v1C5,18.78,4.78,19,4.5,19h-1C3.22,19,3,18.78,3,18.5 L3,12l1.62-4.06C4.85,7.37,5.4,7,6.02,7h7.97c0.61,0,1.16,0.37,1.39,0.94L17,12z M6.02,8.5l-1,2.5h9.97l-1-2.5H6.02z M15.5,16v-3.5 h-11V16H15.5z M6.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1 s0.45,1,1,1c0.55,0,1-0.45,1-1S14.05,13.25,13.5,13.25z M6.95,5.75L8,4.7L5.65,2.35L4.6,3.4L6.95,5.75z M15.4,3.4l-1.05-1.05 L12,4.7l1.05,1.05L15.4,3.4z M10.75,4.7h-1.5V1h1.5V4.7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_library\": {\n    \"name\": \"local_library\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 9c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zm7 5.58c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.95c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95z\\\"></path>\"\n      }\n    }\n  },\n  \"local_parking\": {\n    \"name\": \"local_parking\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"factory\": {\n    \"name\": \"factory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,22H2V10l7-3v2l5-2l0,3h3l1-8h3l1,8V22z M12,9.95l-5,2V10l-3,1.32V20h16v-8h-8L12,9.95z M11,18h2v-4h-2V18z M7,18h2v-4 H7V18z M17,14h-2v4h2V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,10v6.5h-13V9.47L6,8.33v1.71l4-1.75V10H16.5z M15,2l-1,6.5h-2.5V6l-4,1.75V6L2,8.5V18h16V8.5L17,2H15z M14,11.5h-1.5 V15H14V11.5z M7.5,11.5H6V15h1.5V11.5z M10.75,11.5h-1.5V15h1.5V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_pin_circle\": {\n    \"name\": \"person_pin_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"volunteer_activism\": {\n    \"name\": \"volunteer_activism\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M16,13c3.09-2.81,6-5.44,6-7.7C22,3.45,20.55,2,18.7,2c-1.04,0-2.05,0.49-2.7,1.25C15.34,2.49,14.34,2,13.3,2 C11.45,2,10,3.45,10,5.3C10,7.56,12.91,10.19,16,13z M13.3,4c0.44,0,0.89,0.21,1.18,0.55L16,6.34l1.52-1.79 C17.81,4.21,18.26,4,18.7,4C19.44,4,20,4.56,20,5.3c0,1.12-2.04,3.17-4,4.99c-1.96-1.82-4-3.88-4-4.99C12,4.56,12.56,4,13.3,4z\\\"></path><path d=\\\"M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M3,20v-7h2v7H3z M13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79 c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\\\"></path></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.25,10.5C15.7,8.28,18,6.41,18,4.61C18,3.15,16.85,2,15.39,2c-0.82,0-1.62,0.39-2.14,0.99C12.74,2.39,11.94,2,11.11,2 C9.65,2,8.5,3.15,8.5,4.61C8.5,6.4,10.8,8.28,13.25,10.5z M11.11,3.5c0.36,0,0.76,0.18,1,0.46l1.14,1.33l1.14-1.33 c0.24-0.28,0.63-0.46,1-0.46c0.63,0,1.11,0.48,1.11,1.11c0,0.9-1.67,2.45-3.25,3.87C11.67,7.06,10,5.5,10,4.61 C10,3.98,10.48,3.5,11.11,3.5z\\\"></path><path d=\\\"M15,13h-1c0-0.9-0.57-1.7-1.41-2L7,9H1v9h5v-1.18l5.5,1.68l6.5-2V16C18,14.34,16.66,13,15,13z M4.5,16.36v0.14h-2v-6h2 V16.36z M11.5,16.93L6,15.25V10.5h0.74l5.34,1.91c0.25,0.09,0.42,0.33,0.42,0.59h-2.36l-1.87-0.7l-0.53,1.4l2,0.8H15 c0.62,0,1.16,0.38,1.39,0.93L11.5,16.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bakery_dining\": {\n    \"name\": \"bakery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20.5,10.94c0.13-0.32,0.1-0.23,0.15-0.39c0.3-1.21-0.34-2.47-1.5-2.93l-2.01-0.8c-0.46-0.18-0.95-0.21-1.41-0.12 c-0.11-0.33-0.29-0.63-0.52-0.89C14.73,5.29,14.06,5,13.36,5h-2.71C9.94,5,9.27,5.29,8.8,5.81C8.56,6.07,8.38,6.37,8.27,6.69 C7.81,6.6,7.32,6.63,6.86,6.81l-2.01,0.8c-1.16,0.46-1.8,1.72-1.5,2.93l0.15,0.38C1.1,15.55,1,15.55,1,16.38 c0,0.91,0.46,1.74,1.24,2.22c1.42,0.88,2.49,0.14,4-0.61h11.53c1.52,0.76,1.86,1.01,2.63,1.01c1,0,2.61-0.77,2.61-2.61 C23,15.54,22.88,15.51,20.5,10.94z M20.12,16.93l-1.68-0.84l1.08-2.7l1.41,2.71C21.21,16.63,20.64,17.19,20.12,16.93z M15.09,15.99l0.62-6.9c0.03-0.33,0.37-0.54,0.68-0.42l2.01,0.8c0.22,0.09,0.34,0.31,0.31,0.54l-2.4,5.98H15.09z M7.68,15.99 l-2.4-5.98C5.25,9.78,5.37,9.56,5.59,9.47l2.01-0.8c0.31-0.12,0.65,0.08,0.68,0.42l0.62,6.9H7.68z M3.07,16.1l1.41-2.72l1.08,2.71 l-1.68,0.84C3.36,17.19,2.79,16.63,3.07,16.1z M10.15,7.54c-0.03-0.31,0.23-0.54,0.5-0.54h2.71c0.27,0,0.53,0.23,0.5,0.54 l-0.77,8.45h-2.17L10.15,7.54z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.93,9.12c0.12-0.3,0.09-0.23,0.13-0.35c0.24-0.96-0.27-1.97-1.19-2.34l-1.66-0.67c-0.39-0.16-0.8-0.18-1.2-0.08 c-0.09-0.29-0.23-0.56-0.44-0.78c-0.38-0.41-0.91-0.64-1.46-0.64H8.88c-0.55,0-1.09,0.23-1.46,0.64c-0.21,0.23-0.35,0.5-0.44,0.79 C6.59,5.58,6.17,5.6,5.78,5.76L4.12,6.43C3.21,6.8,2.7,7.81,2.94,8.77l0.14,0.35C1.06,13.03,1,13,1,13.66 c0,1.58,1.65,2.56,3.01,1.87l1.22-0.61h9.54l1.22,0.61c1.38,0.7,3.01-0.31,3.01-1.87C19,12.99,18.93,13.01,16.93,9.12z M3.34,14.19c-0.49,0.25-0.84-0.22-0.84-0.53c0-0.2-0.05-0.05,1.31-2.69l0.98,2.48L3.34,14.19z M6.38,13.41l-2-5.04 c-0.04-0.23,0.09-0.46,0.3-0.55l1.66-0.67c0.31-0.12,0.64,0.09,0.66,0.42l0.52,5.84H6.38z M10.96,13.41H9.04L8.39,6.29 C8.37,5.98,8.61,5.75,8.88,5.75h2.24c0.27,0,0.51,0.23,0.49,0.54L10.96,13.41z M13.62,13.41h-1.15l0.52-5.84 c0.03-0.33,0.36-0.54,0.66-0.42l1.66,0.67c0.22,0.09,0.34,0.32,0.3,0.55L13.62,13.41z M16.66,14.19l-1.45-0.73l0.98-2.48l1.24,2.4 C17.7,13.89,17.17,14.44,16.66,14.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_road\": {\n    \"name\": \"add_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\\\"></polygon><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"7\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"14\\\"></rect><polygon points=\\\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\\\"></polygon><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"electric_scooter\": {\n    \"name\": \"electric_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z\\\"></path><path d=\\\"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,13,15,13z\\\"></path><path d=\\\"M12,11.99C12,10.34,13.34,9,14.99,9l0.24,0l-1.2-5.22C13.93,3.32,13.52,3,13.05,3H10v1h3.05l0.95,4.14 c-1.57,0.4-2.75,1.72-2.96,3.36H6.93c-0.26-1.01-1.29-1.72-2.44-1.44c-0.71,0.18-1.29,0.78-1.44,1.5C2.77,12.86,3.75,14,5,14 c0.93,0,1.71-0.64,1.93-1.5H12V11.99z M5,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,13,5,13z\\\"></path><polygon points=\\\"9.5,15 7,15 10.5,17 10.5,16 13,16 9.5,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"u_turn_right\": {\n    \"name\": \"u_turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,9v12h2V9c0-2.21,1.79-4,4-4s4,1.79,4,4v4.17l-1.59-1.59L13,13l4,4l4-4l-1.41-1.41L18,13.17V9c0-3.31-2.69-6-6-6 S6,5.69,6,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14.5,7.5C14.5,5.01,12.49,3,10,3S5.5,5.01,5.5,7.5V16H7l0-8.5c0-1.66,1.34-3,3-3s3,1.34,3,3l0,2.63l-1.19-1.19L10.75,10 l3,3l3-3l-1.06-1.06l-1.19,1.19L14.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"beenhere\": {\n    \"name\": \"beenhere\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"forest\": {\n    \"name\": \"forest\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M24,18l-3.86-6H22L15,2l-3,4.29L9,2L2,12h1.86L0,18h7v4h4v-4h2v4h4v-4H24z M15,5.49L18.16,10h-1.68l3.86,6h-3.62l-2.57-4 H16l-2.78-3.97L15,5.49z M3.66,16l3.86-6H5.84L9,5.49L12.16,10h-1.68l3.86,6H3.66z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.82,10H17l-5-8l-2,3.2L8,2l-5,8h1.18L1,15h5.5v3h3v-3h1v3h3v-3H19L15.82,10z M3.73,13.5l3.18-5H5.71L8,4.83l2.29,3.67 H9.09l3.18,5H3.73z M14.05,13.5L11.82,10H13l-2.12-3.38L12,4.83l2.29,3.67h-1.21l3.18,5H14.05z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_railway_filled\": {\n    \"name\": \"directions_railway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g enable-background=\\\"new\\\"><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43C7.03,4.48,8.48,4,12,4z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9C6.67,17,6,16.33,6,15.5V12h12 V15.5z M18,10H6V7h12V10z\\\"></path><circle cx=\\\"12\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"icecream\": {\n    \"name\": \"icecream\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.38,6.24C17.79,3.24,15.14,1,12,1S6.21,3.24,5.62,6.24C4.08,6.81,3,8.29,3,10c0,2.21,1.79,4,4,4 c0.12,0,0.23-0.02,0.34-0.02L12.07,23l4.61-9.03C16.79,13.98,16.89,14,17,14c2.21,0,4-1.79,4-4C21,8.29,19.92,6.81,18.38,6.24z M12.05,18.63l-2.73-5.21C10.15,13.79,11.06,14,12,14c0.95,0,1.88-0.21,2.72-0.6L12.05,18.63z M17,12c-0.52,0-1.01-0.2-1.39-0.56 l-0.56-0.54l-0.66,0.42C13.68,11.76,12.86,12,12,12s-1.68-0.24-2.39-0.69L8.95,10.9l-0.56,0.54C8.01,11.79,7.52,12,7,12 c-1.1,0-2-0.89-2-2c0-0.98,0.72-1.82,1.68-1.97L7.45,7.9l0.06-0.78C7.71,4.8,9.66,3,12,3s4.29,1.8,4.48,4.12l0.06,0.78l0.77,0.12 C18.28,8.18,19,9.01,19,10C19,11.1,18.1,12,17,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.92,5.16C14.51,2.8,12.47,1,10,1S5.49,2.8,5.08,5.16C3.88,5.55,3,6.66,3,8c0,1.66,1.34,3,3,3c0.02,0,0.03,0,0.04,0 L10,19l3.96-8c0.01,0,0.03,0,0.04,0c1.66,0,3-1.34,3-3C17,6.66,16.12,5.55,14.92,5.16z M10,15.61l-2.49-5.04 c0.16-0.1,0.07-0.08,0.37-0.08C8.53,10.81,9.24,11,10,11s1.47-0.19,2.12-0.5c0.3,0,0.21-0.02,0.37,0.08L10,15.61z M14,9.5 c-0.39,0-0.69-0.15-0.87-0.28l-0.74-0.53C11.45,9.17,10.92,9.5,10,9.5c-0.92,0-1.49-0.35-2.39-0.81L6.87,9.22 C6.69,9.35,6.39,9.5,6,9.5C5.17,9.5,4.5,8.83,4.5,8c0-0.64,0.42-1.21,1.05-1.42l0.87-0.28l0.15-0.9C6.85,3.72,8.3,2.5,10,2.5 s3.15,1.22,3.44,2.91l0.15,0.9l0.87,0.28C15.08,6.79,15.5,7.36,15.5,8C15.5,8.83,14.83,9.5,14,9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_airport\": {\n    \"name\": \"local_airport\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tram\": {\n    \"name\": \"tram\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z\\\"></path>\"\n      }\n    }\n  },\n  \"stadium\": {\n    \"name\": \"stadium\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,5L3,7V3L7,5z M18,3v4l4-2L18,3z M11,2v4l4-2L11,2z M13,18h-2l0,4c-5.05-0.15-9-1.44-9-3v-9c0-1.66,4.48-3,10-3 s10,1.34,10,3v9c0,1.56-3.95,2.85-9,3L13,18z M5,10.04C6.38,10.53,8.77,11,12,11s5.62-0.47,7-0.96C19,9.86,16.22,9,12,9 S5,9.86,5,10.04z M20,11.8c-1.82,0.73-4.73,1.2-8,1.2s-6.18-0.47-8-1.2v6.78c0.61,0.41,2.36,1.01,5,1.28V16h6v3.86 c2.64-0.27,4.39-0.87,5-1.28V11.8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M6,4.5L3,6V3L6,4.5z M15,3v3l3-1.5L15,3z M9,2v3l3-1.5L9,2z M18,8.25c0,0,0,5.87,0,7.25c0,1.27-3.05,2.35-7,2.5v-3.5H9V18 c-3.95-0.15-7-1.23-7-2.5c0-0.99,0-7.25,0-7.25C2,7.01,5.58,6,10,6S18,7.01,18,8.25z M4.4,8.3C5.51,8.65,7.42,9,10,9 s4.49-0.35,5.6-0.7c0-0.21-2.38-0.8-5.6-0.8S4.4,8.09,4.4,8.3z M16.5,9.56c-1.45,0.57-3.82,0.94-6.5,0.94 c-2.68,0-5.05-0.37-6.5-0.94v5.7c0.43,0.35,1.82,0.88,4,1.13V13h5v3.39c2.18-0.24,3.57-0.78,4-1.13V9.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"breakfast_dining\": {\n    \"name\": \"breakfast_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45 C22,4.79,20.21,3,18,3z M19,8.72L18,9.3V19H6V9.31L5.01,8.73C4.38,8.35,4,7.71,4,7c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2 C20,7.71,19.62,8.36,19,8.72z\\\"></path><path d=\\\"M12.71,9.29C12.51,9.1,12.26,9,12,9s-0.51,0.1-0.71,0.29l-3,3c-0.39,0.39-0.39,1.02,0,1.41l3,3C11.49,16.9,11.74,17,12,17 s0.51-0.1,0.71-0.29l3-3c0.39-0.39,0.39-1.02,0-1.41L12.71,9.29z M12,14.58L10.41,13L12,11.41L13.59,13L12,14.58z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,6c0-1.66-1.34-3-3-3H5C3.34,3,2,4.34,2,6c0,1.3,0.84,2.4,2,2.82v6.68C4,16.33,4.67,17,5.5,17h9 c0.83,0,1.5-0.67,1.5-1.5l0-6.68C17.16,8.4,18,7.3,18,6z M15.5,7.4l-1,0.35l0,7.74h-9V7.76l-1-0.35c-0.6-0.21-1-0.78-1-1.4 c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5C16.5,6.63,16.1,7.19,15.5,7.4z\\\"></path><path d=\\\"M10.71,8.29C10.51,8.1,10.26,8,10,8S9.49,8.1,9.29,8.29l-2,2c-0.39,0.39-0.39,1.02,0,1.41l2,2C9.49,13.9,9.74,14,10,14 c0.26,0,0.51-0.1,0.71-0.29l2-2c0.39-0.39,0.39-1.02,0-1.41L10.71,8.29z M10,12.29L8.71,11L10,9.71L11.29,11L10,12.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"takeout_dining\": {\n    \"name\": \"takeout_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7.79,18l-0.51-7h9.46l-0.51,7H7.79z M9.83,5h4.33l2.8,2.73L16.87,9H7.12L7.03,7.73L9.83,5z M22,7.46l-1.41-1.41L19,7.63 l0.03-0.56L14.98,3H9.02L4.97,7.07L5,7.57L3.41,6.01L2,7.44l3.23,3.11L5.93,20h12.14l0.7-9.44L22,7.46z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.5,6.56L16.44,5.5l-1.49,1.49L15,6l-3-3H8L5,6l0.05,0.99L3.56,5.5L2.5,6.56l2.66,2.66L5.5,16h9l0.34-6.78L17.5,6.56z M8.62,4.5h2.76l2.09,2.09L13.42,7.5H6.58L6.53,6.59L8.62,4.5z M6.93,14.5L6.65,9h6.7l-0.28,5.5H6.93z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_location\": {\n    \"name\": \"edit_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.17 4.91L17.1 3.84l-5.55 5.55v1.08h1.08l5.54-5.56zM16 2.74l1.29-1.29a1.49 1.49 0 0 1 2.12 0l1.15 1.15c.59.59.59 1.54 0 2.12l-.68.68-.02.02-.58.58-6 6H10V8.74l6-6zm-2.28-.55l-.55.55-1.27 1.27c-3.3.05-5.9 2.6-5.9 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14v-.1l1.8-1.8c.13.6.2 1.24.2 1.9 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2.58 0 1.16.06 1.72.18z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_subway_filled\": {\n    \"name\": \"directions_subway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"local_activity\": {\n    \"name\": \"local_activity\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\\\"></path>\"\n      }\n    }\n  },\n  \"layers\": {\n    \"name\": \"layers\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16zm0-11.47L17.74 9 12 13.47 6.26 9 12 4.53z\\\"></path>\"\n      }\n    }\n  },\n  \"directions\": {\n    \"name\": \"directions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m22.43 10.59-9.01-9.01c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.79-.76.8-2.02.03-2.82zm-10.42 10.4-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"add_location_alt\": {\n    \"name\": \"add_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm1-9.94v2.02A6.53 6.53 0 0 0 12 5c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.79 6-9.14V11h2v.2c0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.34 0 .67.02 1 .06z\\\"></path>\"\n      }\n    }\n  },\n  \"handyman\": {\n    \"name\": \"handyman\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z\\\"></path></g><g><path d=\\\"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.71,14.59l-3.54-3.54h-1.41l-0.34-0.34l-0.71,0.71l0.34,0.34v1.41l3.54,3.54c0.39,0.39,1.02,0.39,1.41,0L16.71,16 C17.1,15.61,17.1,14.98,16.71,14.59z M15.29,16l-3.18-3.18l0.71-0.71L16,15.29L15.29,16z\\\"></path><path d=\\\"M12.57,8.14L12.57,8.14l0.88,0.88l1.06-1.06l1.41,1.41c0.78-0.78,0.78-2.05,0-2.83l-2.47-2.47l-0.74,0.74l0-1.49 l-0.49-0.49L9.74,5.31l0.49,0.49l1.49,0l-0.74,0.74l0.88,0.88L10,9.29L7.51,6.81l0.15-1.26L5.36,3.23L3.23,5.36l2.31,2.31 l1.26-0.15L9.29,10l-1.05,1.05H6.83l-3.54,3.54c-0.39,0.39-0.39,1.02,0,1.41L4,16.71c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54v-1.41 L12.57,8.14z M4.71,16L4,15.29l3.18-3.18l0.71,0.71L4.71,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"attractions\": {\n    \"name\": \"attractions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M20.15,14.42c0.23-0.77,0.35-1.58,0.35-2.42s-0.12-1.65-0.35-2.42c0.78-0.6,1.02-1.7,0.51-2.58s-1.58-1.23-2.49-0.85 c-1.11-1.17-2.56-2.03-4.18-2.42C13.85,2.75,13.01,2,12,2s-1.85,0.75-1.98,1.73C8.39,4.12,6.95,4.98,5.83,6.15 C4.92,5.77,3.85,6.12,3.34,7S3.07,8.98,3.85,9.58C3.62,10.35,3.5,11.16,3.5,12s0.12,1.65,0.35,2.42c-0.78,0.6-1.02,1.7-0.51,2.58 s1.58,1.23,2.49,0.85c0.4,0.42,0.83,0.79,1.3,1.12L5.78,22h1.88l0.98-2.19c0.44,0.19,0.9,0.34,1.38,0.46 C10.15,21.25,10.99,22,12,22s1.85-0.75,1.98-1.73c0.46-0.11,0.91-0.26,1.34-0.44L16.3,22h1.88l-1.34-3 c0.48-0.34,0.93-0.72,1.34-1.15c0.91,0.38,1.99,0.03,2.49-0.85C21.17,16.12,20.93,15.02,20.15,14.42z M13.56,18.75 C13.19,18.29,12.63,18,12,18s-1.2,0.29-1.57,0.75c-0.4-0.09-0.79-0.21-1.16-0.37l1.43-3.19c0.4,0.16,0.84,0.25,1.3,0.25 c0.44,0,0.87-0.08,1.26-0.23l1.42,3.18C14.32,18.54,13.95,18.66,13.56,18.75z M10.48,12.02c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S10.48,12.85,10.48,12.02z M18.71,14.01c-0.61,0.07-1.18,0.41-1.52,0.99 c-0.32,0.56-0.34,1.2-0.12,1.75c-0.28,0.29-0.58,0.55-0.9,0.79l-1.5-3.35c0.49-0.59,0.78-1.34,0.78-2.16 c0-1.89-1.55-3.41-3.46-3.41s-3.46,1.53-3.46,3.41c0,0.8,0.28,1.54,0.75,2.13l0,0l-1.52,3.39c-0.31-0.23-0.6-0.48-0.87-0.76 C7.15,16.23,7.13,15.57,6.8,15c-0.34-0.59-0.93-0.94-1.56-0.99c-0.22-0.68-0.33-1.4-0.33-2.15c0-0.64,0.09-1.26,0.25-1.85 c0.66-0.03,1.3-0.38,1.65-1c0.37-0.63,0.35-1.38,0.01-1.98C7.74,6.05,8.93,5.34,10.27,5c0.34,0.59,0.99,1,1.73,1s1.39-0.4,1.73-1 c1.34,0.34,2.53,1.07,3.44,2.05C16.85,7.64,16.84,8.38,17.2,9c0.35,0.6,0.96,0.95,1.6,1c0.16,0.59,0.25,1.21,0.25,1.86 C19.05,12.61,18.93,13.33,18.71,14.01z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M17,10c0-0.68-0.1-1.34-0.29-1.97c0.49-0.55,0.6-1.36,0.21-2.03c-0.39-0.67-1.15-0.98-1.87-0.83 c-0.91-0.95-2.08-1.64-3.4-1.96C11.42,2.51,10.77,2,10,2S8.58,2.51,8.35,3.21c-1.32,0.32-2.49,1.01-3.4,1.96 C4.22,5.02,3.46,5.33,3.07,6C2.68,6.67,2.8,7.48,3.29,8.03C3.1,8.66,3,9.32,3,10s0.1,1.34,0.29,1.97C2.8,12.52,2.68,13.33,3.07,14 c0.39,0.67,1.15,0.98,1.87,0.83c0.33,0.35,0.69,0.66,1.09,0.93L4.99,18h1.66l0.71-1.52c0.32,0.13,0.65,0.23,0.99,0.32 C8.58,17.49,9.23,18,10,18s1.42-0.51,1.65-1.21c0.34-0.08,0.67-0.19,0.99-0.32L13.36,18h1.66l-1.04-2.24 c0.4-0.27,0.76-0.59,1.09-0.93c0.72,0.15,1.48-0.16,1.87-0.83c0.39-0.67,0.27-1.48-0.21-2.03C16.9,11.34,17,10.68,17,10z M11.46,15.3c-0.31-0.48-0.85-0.8-1.46-0.8s-1.15,0.32-1.46,0.8c-0.19-0.05-0.37-0.11-0.55-0.18l1.06-2.28 C9.35,12.93,9.67,13,10,13s0.65-0.07,0.95-0.17l1.06,2.28C11.83,15.18,11.65,15.24,11.46,15.3z M8.5,10c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M15.32,11.38c-0.57,0.03-1.11,0.34-1.42,0.87 c-0.31,0.53-0.3,1.16-0.04,1.67c-0.17,0.16-0.35,0.32-0.53,0.46l-1.1-2.37C12.7,11.47,13,10.78,13,10c0-1.66-1.34-3-3-3 s-3,1.34-3,3c0,0.78,0.3,1.47,0.78,2.01l-1.1,2.37c-0.19-0.14-0.37-0.29-0.53-0.46c0.26-0.51,0.26-1.14-0.04-1.67 c-0.31-0.53-0.85-0.84-1.42-0.87C4.57,10.94,4.5,10.48,4.5,10s0.07-0.94,0.18-1.38C5.25,8.59,5.8,8.28,6.1,7.75 c0.31-0.53,0.3-1.16,0.04-1.67C6.8,5.44,7.62,4.96,8.54,4.7C8.85,5.18,9.39,5.5,10,5.5s1.15-0.32,1.46-0.8 c0.91,0.25,1.73,0.73,2.39,1.38c-0.26,0.51-0.26,1.14,0.04,1.67c0.31,0.53,0.85,0.84,1.42,0.87c0.11,0.44,0.18,0.9,0.18,1.38 S15.43,10.94,15.32,11.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"egg_alt\": {\n    \"name\": \"egg_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,9C17,7,15.99,2,9.97,2C4.95,2,1.94,6,2,11.52C2.06,17.04,6.96,19,9.97,19c2.01,0,2.01,3,6.02,3C19,22,22,19,22,15.02 C22,12,21.01,11,19,9z M15.99,20c-1.49,0-1.96-0.5-2.68-1.26C12.66,18.05,11.66,17,9.97,17C8.33,17,4.05,16.01,4,11.5 C3.97,8.99,4.68,6.88,5.99,5.55C7.01,4.52,8.35,4,9.97,4c3.34,0,4.51,1.86,5.86,4.02c0.55,0.88,1.07,1.71,1.76,2.39 c1.9,1.89,2.41,2.4,2.41,4.61C20,17.87,17.88,20,15.99,20z\\\"></path></g><g><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3.5\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.6,7.6C14,6,13.19,2,8.38,2C4.36,2,1.95,5.2,2,9.62S5.97,16,8.38,16c1.61,0,1.61,2,4.82,2C15.6,18,18,15.6,18,12.42 C18,10,17.21,9.2,15.6,7.6z M13.19,16c-1.13,0-1.45-0.28-1.98-0.76C10.65,14.75,9.8,14,8.38,14C7.22,14,4.04,12.96,4,9.6 c-0.02-1.9,0.51-3.49,1.48-4.47C6.22,4.38,7.19,4,8.38,4c2.33,0,3.17,1.15,4.35,3.03c0.43,0.69,0.88,1.41,1.46,1.99 c1.5,1.49,1.81,1.8,1.81,3.4C16,14.47,14.52,16,13.19,16z\\\"></path></g><g><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"2.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"map\": {\n    \"name\": \"map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.84z\\\"></path>\"\n      }\n    }\n  },\n  \"local_phone\": {\n    \"name\": \"local_phone\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"snowmobile\": {\n    \"name\": \"snowmobile\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,17c0,0.55-0.45,1-1,1h-0.17l-2.2-2.2C20.58,15.37,22,14.4,22,13c0-1-8-8-8-8h-3v2h2.25l0.8,0.72L11,10L2,9l-2,4 l4.54,1.36l-3.49,1.88C-0.77,17.22-0.07,20,2,20h6c2.21,0,4-1.79,4-4h4l2,2h-3v2h6c1.66,0,3-1.34,3-3H22z M8,18H2l5.25-2.83L10,16 C10,17.1,9.11,18,8,18z M17,14h-6.7l-7.45-2.23l0.31-0.62L11.6,12l3.93-2.94c0,0,3.77,3.44,4.27,4.14C19.8,13.2,18.7,14,17,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18.5,14.5c0,0.55-0.45,1-1,1l-2.22-2.19C16.87,12.96,18,12.17,18,11c0-0.5-6.5-6.5-6.5-6.5H9V6h1.91l0.84,0.78L9,8.5L1.5,8 L0,11l4.32,1.27l-3.53,1.91C-0.58,14.92-0.06,17,1.5,17h5c1.93,0,3.5-1.57,3.5-3.5h3.33l2.05,2H12.5V17h5c1.38,0,2.5-1.12,2.5-2.5 H18.5z M6.5,15.5h-5l4.87-2.63L8.5,13.5C8.5,14.6,7.6,15.5,6.5,15.5z M13,12H8.7l-6.56-1.93L2.4,9.56L9.35,10l3.52-2.16 c0,0,3.38,3.22,3.38,3.32C16.25,11.16,16.07,12,13,12z\\\"></path>\"\n      }\n    }\n  },\n  \"subway\": {\n    \"name\": \"subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z\\\"></path>\"\n      }\n    }\n  },\n  \"local_car_wash\": {\n    \"name\": \"local_car_wash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"local_cafe\": {\n    \"name\": \"local_cafe\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 5v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10m4-2H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-2 5V5h2v3h-2zm2 11H2v2h18v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"two_wheeler\": {\n    \"name\": \"two_wheeler\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M14.5,9c-0.16,0-0.31,0.02-0.45,0.05L13,8h1.5V6.5l-2,1L11,6H9.01v1h1.58l1,1H9.5L7,9L6,8H3v1h2.5C4.12,9,3,10.12,3,11.5 C3,12.88,4.12,14,5.5,14c1.23,0,2.24-0.88,2.45-2.05L9,13h1.5l2.03-4.06l0.52,0.52C12.42,9.92,12,10.66,12,11.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,10.12,15.88,9,14.5,9z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10 S7,10.67,7,11.5S6.33,13,5.5,13z M14.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.33,13,14.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"straight\": {\n    \"name\": \"straight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"11,6.83 9.41,8.41 8,7 12,3 16,7 14.59,8.41 13,6.83 13,21 11,21\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"9.25,17 10.75,17 10.75,5.87 11.94,7.06 13,6 10,3 7,6 8.06,7.06 9.25,5.87\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"directions_subway\": {\n    \"name\": \"directions_subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm5.66 3H6.43c.61-.52 2.06-1 5.57-1 3.71 0 5.12.46 5.66 1zM11 7v3H6V7h5zm2 0h5v3h-5V7zm3.5 10h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5c0 .83-.67 1.5-1.5 1.5z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"directions_bus_filled\": {\n    \"name\": \"directions_bus_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g enable-background=\\\"new\\\"><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43 C7.03,4.48,8.48,4,12,4z M18,15c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2v-3h12V15z M18,10H6V7h12V10z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"route\": {\n    \"name\": \"route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,15.18V7c0-2.21-1.79-4-4-4s-4,1.79-4,4v10c0,1.1-0.9,2-2,2s-2-0.9-2-2V8.82C8.16,8.4,9,7.3,9,6c0-1.66-1.34-3-3-3 S3,4.34,3,6c0,1.3,0.84,2.4,2,2.82V17c0,2.21,1.79,4,4,4s4-1.79,4-4V7c0-1.1,0.9-2,2-2s2,0.9,2,2v8.18c-1.16,0.41-2,1.51-2,2.82 c0,1.66,1.34,3,3,3s3-1.34,3-3C21,16.7,20.16,15.6,19,15.18z M6,7C5.45,7,5,6.55,5,6s0.45-1,1-1s1,0.45,1,1S6.55,7,6,7z M18,19 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S18.55,19,18,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.25,12.13V6c0-1.65-1.35-3-3-3s-3,1.35-3,3v8c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5V7.87C7.26,7.55,8,6.62,8,5.5 C8,4.12,6.88,3,5.5,3C5.33,3,5.16,3.02,5,3.05C4.67,3.12,4.37,3.25,4.1,3.43C3.44,3.88,3,4.64,3,5.5c0,0.86,0.44,1.62,1.1,2.07 C4.37,7.75,4.67,7.88,5,7.95C4.91,7.93,4.83,7.9,4.75,7.87V14c0,1.65,1.35,3,3,3s3-1.35,3-3V6c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5v6.13c0.08-0.03,0.16-0.06,0.25-0.08c-0.33,0.07-0.63,0.2-0.89,0.38c-0.67,0.45-1.1,1.21-1.1,2.07 c0,0.86,0.44,1.62,1.1,2.07c0.27,0.18,0.57,0.31,0.89,0.38c0.16,0.03,0.33,0.05,0.5,0.05c1.38,0,2.5-1.12,2.5-2.5 C17,13.38,16.26,12.45,15.25,12.13z M4.5,5.5c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S4.5,6.05,4.5,5.5z M14.5,15.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.05,15.5,14.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation_alt\": {\n    \"name\": \"screen_rotation_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7.59l5-5c0.78-0.78,2.05-0.78,2.83,0L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59z M20,19h2v-6h-6v2h2.59l-4.99,5 l-7.01-7H3.76l8.41,8.41c0.78,0.78,2.05,0.78,2.83,0l5-5V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M4.56,7.5H6.5V9H2V4.5h1.5v1.94l4-4c0.59-0.59,1.54-0.59,2.12,0L16.18,9h-2.12l-5.5-5.5L4.56,7.5z M15.44,12.5H13.5V11H18 v4.5h-1.5v-1.94l-4,4c-0.59,0.59-1.54,0.59-2.12,0L3.82,11h2.12l5.5,5.5L15.44,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"zoom_in_map\": {\n    \"name\": \"zoom_in_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,9l0-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9z M21,9V7l-2.59,0l3.09-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9z M3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0-6L3,15z M15,15l0,6h2v-2.59l3.09,3.09l1.41-1.41L18.41,17H21v-2L15,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M5.44,6.5L3,4.06L4.06,3L6.5,5.44V4H8v4H4V6.5H5.44z M16,8V6.5h-1.44L17,4.06L15.94,3L13.5,5.44V4H12v4H16z M4.06,17 l2.44-2.44V16H8v-4H4v1.5h1.44L3,15.94L4.06,17z M13.5,14.56L15.94,17L17,15.94l-2.44-2.44H16V12h-4v4h1.5V14.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"safety_check\": {\n    \"name\": \"safety_check\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7z M13.65,14.35 l-2.15-2.15V9h1v2.79l1.85,1.85L13.65,14.35z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M15,9.27c0,3.26-2.13,6.27-5,7.17 c-2.87-0.9-5-3.91-5-7.17V5.53l5-1.92l5,1.92V9.27z M10,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C14,7.79,12.21,6,10,6z M11.15,11.85L9.5,10.21V8h1v1.79l1.35,1.35L11.15,11.85z\\\"></path></g>\"\n      }\n    }\n  },\n  \"departure_board\": {\n    \"name\": \"departure_board\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"5.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant\": {\n    \"name\": \"restaurant\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel\": {\n    \"name\": \"hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"dry_cleaning\": {\n    \"name\": \"dry_cleaning\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M15,20H9v-5h6V20z M18.58,14H17v-1H7v1H5.42c-0.46,0-0.58-0.65-0.17-0.81l6.75-3l6.75,3C19.17,13.38,19.03,14,18.58,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M16.97,10.87c-0.11-0.62-0.55-1.12-1.13-1.37l-5.09-2.18V6.25c0-0.41-0.34-0.75-0.75-0.75c-0.62,0-1-0.56-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1h1.5C12.5,3.12,11.38,2,10,2C9.82,2,9.64,2.02,9.45,2.06C8.5,2.26,7.73,3.05,7.55,4.01 c-0.25,1.33,0.55,2.5,1.7,2.86v0.45L4.16,9.5c-0.57,0.25-1.02,0.75-1.13,1.37C2.83,12.01,3.7,13,4.81,13H6v5h8v-5h1.19 C16.3,13,17.17,12.01,16.97,10.87z M12.5,16.5h-5v-4h5V16.5z M15.19,11.5H14V11H6v0.5H4.81c-0.17,0-0.31-0.14-0.31-0.31 c0-0.12,0.07-0.23,0.19-0.28L10,8.63l5.31,2.28c0.11,0.05,0.19,0.16,0.19,0.28C15.5,11.36,15.36,11.5,15.19,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fork_left\": {\n    \"name\": \"fork_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.41,15.59L8,17l-4-4l4-4l1.41,1.41L7.83,12c1.51-0.33,3.73,0.08,5.17,1.36l0-6.53l-1.59,1.59L10,7l4-4l4,4l-1.41,1.41 L15,6.83V21l-2,0v-4c-0.73-2.58-3.07-3.47-5.17-3L9.41,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M11,11.36c-1.2-1.05-2.74-1.4-4.13-1.11l1.19-1.19L7,8l-3,3l3,3l1.06-1.06l-1.19-1.19C8.74,11.32,10.44,12.28,11,14v3h1.5 l0-11.13l1.19,1.19L14.75,6l-3-3l-3,3l1.06,1.06L11,5.87L11,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turn_right\": {\n    \"name\": \"turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.17,11l-1.59,1.59L17,14l4-4l-4-4l-1.41,1.41L17.17,9L9,9c-1.1,0-2,0.9-2,2v9h2v-9L17.17,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M8,16H6.5l0-7c0-0.83,0.67-1.5,1.5-1.5l6.13,0l-1.19-1.19L14,5.25l3,3l-3,3l-1.06-1.06L14.13,9L8,9V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bike_scooter\": {\n    \"name\": \"bike_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z\\\"></path><path d=\\\"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z\\\"></path><path d=\\\"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M9,13c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,13,9,13z M9,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,16,9,16z\\\"></path><path d=\\\"M9.24,12L7.82,5.78C7.72,5.32,7.31,5,6.84,5H4.01v1h2.84l1.17,5.14c-1.57,0.4-2.75,1.72-2.96,3.36H1v1h5.01v-0.51 C6.01,13.34,7.35,12,9,12L9.24,12z\\\"></path><path d=\\\"M15.5,8h-0.68l-1.58-4.34C13.1,3.26,12.72,3,12.3,3H10v1h2.3l1.46,4h-4.4l0.23,1h3.45c-0.53,0.52-0.88,1.22-0.98,2h-2.01 l0.23,1h1.79c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,9.75,17.59,8,15.5,8z M15.5,14 c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,9.02,15.4,9,15.5,9c1.4,0,2.5,1.1,2.5,2.5 S16.9,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"theater_comedy\": {\n    \"name\": \"theater_comedy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"19\\\" cy=\\\"6.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"6.5\\\" r=\\\"1\\\"></circle><path d=\\\"M16.99,9c-1.38,0-2.5,0.84-2.5,1.88h5C19.49,9.84,18.37,9,16.99,9z\\\"></path><path d=\\\"M1,16c0,3.31,2.69,6,6,6s6-2.69,6-6V9H1V16z M3,11h8v5c0,2.21-1.79,4-4,4s-4-1.79-4-4V11z\\\"></path><path d=\\\"M11,2v5.5h2V4h8v5c0,2.21-1.79,4-4,4c-0.95,0-1.81-0.35-2.5-0.9v2.35C15.26,14.8,16.11,15,17,15c3.31,0,6-2.69,6-6V2H11z\\\"></path><circle cx=\\\"5\\\" cy=\\\"13.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"9\\\" cy=\\\"13.5\\\" r=\\\"1\\\"></circle><path d=\\\"M7,17.88c1.38,0,2.5-0.84,2.5-1.88h-5C4.5,17.04,5.62,17.88,7,17.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"12.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><path d=\\\"M9,2v4h1.5V3.5h7V8c0,1.93-1.57,3.5-3.5,3.5c-0.74,0-1.43-0.24-2-0.64v1.71c0.61,0.27,1.29,0.42,2,0.42c2.76,0,5-2.24,5-5 V2H9z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><path d=\\\"M1,13c0,0.69,0.14,1.35,0.39,1.95c0.51,1.2,1.46,2.15,2.66,2.66C4.65,17.86,5.31,18,6,18s1.35-0.14,1.95-0.39 c1.2-0.51,2.15-1.46,2.66-2.66C10.86,14.35,11,13.69,11,13V7H1V13z M2.5,8.5h7V13c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5V8.5z\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"10.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\".75\\\"></circle><path d=\\\"M6,14.51c1.11,0,2-0.67,2-1.51H4C4,13.83,4.89,14.51,6,14.51z\\\"></path><path d=\\\"M14,8c-1.11,0-2,0.67-2,1.51h4C16,8.67,15.11,8,14,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_dining\": {\n    \"name\": \"local_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"medical_information\": {\n    \"name\": \"medical_information\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M11,4h2v5h-2V4z M20,20H4V9h5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2h5V20z M11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16z M13,14.5V13h6v1.5H13z M13,17.5V16h4v1.5H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M9.25,13.25H7.5V15H6v-1.75H4.25v-1.5H6V10h1.5v1.75h1.75V13.25z M14,14.5v-1h-3.25v1H14z M15.75,12v-1h-5v1H15.75z M18,7.5v9c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,18,2,17.33,2,16.5v-9C2,6.67,2.67,6,3.5,6h4.25V3.5c0-0.83,0.67-1.5,1.5-1.5h1.5 c0.83,0,1.5,0.67,1.5,1.5V6h4.25C17.33,6,18,6.67,18,7.5z M9.25,7.5h1.5v-4h-1.5V7.5z M16.5,7.5h-4.25c0,0.83-0.67,1.5-1.5,1.5 h-1.5c-0.83,0-1.5-0.67-1.5-1.5H3.5v9h13V7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_bus\": {\n    \"name\": \"directions_bus\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4zm5.66 2.99H6.34C6.89 4.46 8.31 4 12 4s5.11.46 5.66.99zm.34 2V10H6V6.99h12zm-.34 9.74l-.29.27H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"layers_clear\": {\n    \"name\": \"layers_clear\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_left\": {\n    \"name\": \"ramp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,21h-2V6.83L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83V9c0,4.27,4.03,7.13,6,8.27l-1.46,1.46 c-1.91-1.16-3.44-2.53-4.54-4.02L13,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.75,5.87l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19l0,11.13h1.5l0-4.99l0-0.01c1.02,1.39,2.35,2.43,3.39,3.09 L15.23,14c-1.6-0.96-4.48-3.18-4.48-6.3L10.75,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"electric_rickshaw\": {\n    \"name\": \"electric_rickshaw\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3 h4V11.17z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17 C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z\\\"></path></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"9,17 6,17 11,19.5 11,17.5 14,17.5 9,15\\\"></polygon><path d=\\\"M17,10.05V8.53c0-0.34-0.12-0.67-0.33-0.94l-3.22-4.03C13.17,3.21,12.73,3,12.28,3H2.5C1.67,3,1,3.67,1,4.5V11 c0,0.83,0.67,1.5,1.5,1.5H3C3,13.88,4.12,15,5.5,15S8,13.88,8,12.5h6c0,1.38,1.12,2.5,2.5,2.5c1.5,0,2.2-1.12,2.39-1.73 C19.34,11.74,18.38,10.33,17,10.05z M2.5,4.5h3.75V8H2.5V4.5z M3.5,11h-1V9.5h3.75v0.61C6.01,10.04,5.76,10,5.5,10 C4.68,10,3.96,10.39,3.5,11z M5.5,13.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,13.5,5.5,13.5z M11.5,11H7.75V9.5H10V8 H7.75V4.5h3.75V11z M13,5.4L15.08,8H13V5.4z M14.5,11H13V9.5h2.5v0.71C15.1,10.38,14.76,10.66,14.5,11z M16.5,13.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.05,13.5,16.5,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_location\": {\n    \"name\": \"add_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\\\"></path></g></g></g></g>\"\n      }\n    }\n  },\n  \"delivery_dining\": {\n    \"name\": \"delivery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35 V7z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 C20,16.55,19.55,17,19,17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"5.5\\\"></rect><path d=\\\"M15.5,6.5C15.5,5.67,14.83,5,14,5h-2.5v1.5H14v1.41l-3,3.59H8V8H5c-1.66,0-3,1.34-3,3v2h1.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5h3.2l3.8-4.54V6.5z M3.5,11.5V11c0-0.83,0.67-1.5,1.5-1.5h1.5v2H3.5z M6,14c-0.55,0-1-0.45-1-1h2 C7,13.55,6.55,14,6,14z\\\"></path><path d=\\\"M15.5,10.5c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5S18,14.38,18,13S16.88,10.5,15.5,10.5z M15.5,14c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S16.05,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"car_rental\": {\n    \"name\": \"car_rental\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><circle cx=\\\"9\\\" cy=\\\"16.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"16.5\\\" r=\\\"1\\\"></circle><path d=\\\"M17.25,9.6c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,9.01,16.28,9,16.28,9H7.72c0,0-0.54,0.01-0.92,0.54 C6.78,9.56,6.77,9.58,6.75,9.6C6.68,9.71,6.61,9.84,6.56,10C6.34,10.66,5.82,12.22,5,14.69v6.5C5,21.64,5.35,22,5.78,22h0.44 C6.65,22,7,21.64,7,21.19V20h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c-0.82-2.46-1.34-4.03-1.56-4.69C17.39,9.84,17.32,9.71,17.25,9.6z M8.33,11h7.34l0.23,0.69L16.33,13H7.67L8.33,11z M17,18H7 v-2.99V15h10v0.01V18z\\\"></path><path d=\\\"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.84,8H7.19C6.78,8,6.4,8.26,6.26,8.65L5,12v4.5C5,16.78,5.22,17,5.5,17H6c0.28,0,0.5-0.22,0.5-0.5V16h7v0.5 c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V12l-1.22-3.34C13.64,8.26,13.26,8,12.84,8z M7.54,9.5h4.95l0.55,1.5H6.98 L7.54,9.5z M13.5,14.5h-7v-2h7V14.5z\\\"></path><circle cx=\\\"7.75\\\" cy=\\\"13.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.25\\\" cy=\\\"13.5\\\" r=\\\".75\\\"></circle><path d=\\\"M9.37,2.75C9.05,1.74,8.11,1,7,1C5.62,1,4.5,2.12,4.5,3.5S5.62,6,7,6c1.11,0,2.05-0.74,2.37-1.75h3.13V6H14V4.25h1v-1.5 H9.37z M7,4.5c-0.54,0-1-0.46-1-1s0.46-1,1-1s1,0.46,1,1S7.54,4.5,7,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crisis_alert\": {\n    \"name\": \"crisis_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.5,2.5c0,1.5-1.5,6-1.5,6h-2c0,0-1.5-4.5-1.5-6C9.5,1.12,10.62,0,12,0S14.5,1.12,14.5,2.5z M12,10c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M16.08,5.11c0.18-0.75,0.33-1.47,0.39-2.06C19.75,4.69,22,8.08,22,12c0,5.52-4.48,10-10,10 S2,17.52,2,12c0-3.92,2.25-7.31,5.53-8.95C7.6,3.64,7.74,4.37,7.92,5.11C5.58,6.51,4,9.07,4,12c0,4.42,3.58,8,8,8s8-3.58,8-8 C20,9.07,18.42,6.51,16.08,5.11z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6c0-2,0.98-3.77,2.48-4.86c0.23,0.81,0.65,2.07,0.65,2.07 C8.43,9.93,8,10.92,8,12c0,2.21,1.79,4,4,4s4-1.79,4-4c0-1.08-0.43-2.07-1.13-2.79c0,0,0.41-1.22,0.65-2.07C17.02,8.23,18,10,18,12 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M12,2c0,1.2-1.2,5-1.2,5H9.2C9.2,7,8,3.2,8,2c0-1.1,0.9-2,2-2S12,0.9,12,2z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z M13.12,4.3c2.01,1.1,3.38,3.24,3.38,5.7c0,3.59-2.91,6.5-6.5,6.5 S3.5,13.59,3.5,10c0-2.46,1.37-4.6,3.38-5.7C6.75,3.76,6.64,3.23,6.57,2.77C3.87,4.06,2,6.81,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8 c0-3.19-1.87-5.94-4.57-7.23C13.36,3.23,13.25,3.76,13.12,4.3z M13.5,10c0,1.93-1.57,3.5-3.5,3.5S6.5,11.93,6.5,10 c0-1.07,0.48-2.02,1.23-2.67c-0.11-0.35-0.28-0.9-0.46-1.53C5.91,6.7,5,8.24,5,10c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-1.76-0.91-3.3-2.28-4.19c-0.18,0.63-0.35,1.18-0.46,1.53C13.02,7.98,13.5,8.93,13.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"menu_book\": {\n    \"name\": \"menu_book\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z\\\"></path><g><path d=\\\"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z\\\"></path><path d=\\\"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z\\\"></path><path d=\\\"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"fort\": {\n    \"name\": \"fort\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3v2h-2V3h-2v2h-2V3h-2v4l2,2v1H9V9l2-2V3H9v2H7V3H5v2H3V3H1v4l2,2v6l-2,2v4h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9v-4 l-2-2V9l2-2V3H21z M21,19h-5v-1c0-2.21-1.79-4-4-4s-4,1.79-4,4v1H3v-1.17l2-2V8.17L3.83,7h4.34L7,8.17V12h10V8.17L15.83,7h4.34 L19,8.17v7.66l2,2V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17.5,3v1.5h-1.75V3h-1.5v1.5H12.5V3H11v3l2,2v1H7V8l2-2V3H7.5v1.5H5.75V3h-1.5v1.5H2.5V3H1v3l2,2v4l-2,2v3h7v-2 c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7v-3l-2-2V8l2-2V3H17.5z M17.5,14.62v0.88h-4V15c0-1.93-1.57-3.5-3.5-3.5S6.5,13.07,6.5,15v0.5h-4 v-0.88l2-2V7.38L3.13,6h3.75L5.5,7.38v3.12h9V7.38L13.13,6h3.75L15.5,7.38v5.24L17.5,14.62z\\\"></path></g>\"\n      }\n    }\n  },\n  \"electric_car\": {\n    \"name\": \"electric_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"13\\\" cy=\\\"9.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"7\\\" cy=\\\"9.5\\\" r=\\\"1\\\"></circle><path d=\\\"M14.28,3.55C14.11,3.21,13.76,3,13.38,3H6.62C6.24,3,5.89,3.21,5.72,3.55L4,7v5.5C4,12.78,4.22,13,4.5,13h1 C5.78,13,6,12.78,6,12.5V12h8v0.5c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5V7L14.28,3.55z M6.62,4h6.76l1.5,3H5.12 L6.62,4z M15,11H5V8h10V11z\\\"></path></g><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"brunch_dining\": {\n    \"name\": \"brunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M2,21.5C2,21.78,2.22,22,2.49,22h13.02c0.27,0,0.49-0.22,0.49-0.5V20H2V21.5z\\\"></path><path d=\\\"M15.5,16H11v-2H7v2H2.5C2.22,16,2,16.22,2,16.5V18h14v-1.5C16,16.22,15.78,16,15.5,16z\\\"></path><path d=\\\"M20.47,15.45c0.99-1.07,1.53-2.48,1.53-3.94V2h-6v9.47c0,1.48,0.58,2.92,1.6,4l0.4,0.42V22h4v-2h-2v-4.03L20.47,15.45z M18,4h2v4h-2V4z M19.03,14.07c-0.65-0.71-1.03-1.65-1.03-2.6V10h2v1.51C20,12.46,19.66,13.36,19.03,14.07z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"11\\\" x=\\\"2\\\" y=\\\"16.5\\\"></rect><path d=\\\"M12.5,13.5H9V12H6v1.5H2.5C2.22,13.5,2,13.72,2,14v1h11v-1C13,13.72,12.78,13.5,12.5,13.5z\\\"></path><path d=\\\"M18,9.76V2h-5v7.76c0,1.27,0.67,2.44,1.75,3.09V18H18v-1.5h-1.75v-3.65C17.33,12.2,18,11.04,18,9.76z M14.5,3.5h2V7h-2 V3.5z M15.5,11.55c-0.63-0.39-1-1.06-1-1.79V8.5h2v1.26C16.5,10.49,16.13,11.16,15.5,11.55z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"celebration\": {\n    \"name\": \"celebration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M2,22l14-5L7,8L2,22z M12.35,16.18L5.3,18.7l2.52-7.05L12.35,16.18z\\\"></path><path d=\\\"M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z\\\"></path><path d=\\\"M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z\\\"></path><path d=\\\"M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z\\\"></path><path d=\\\"M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M2,18l11.49-4.07L6.07,6.51L2,18z M10.75,13.31l-6.29,2.22l2.22-6.29L10.75,13.31z\\\"></path><path d=\\\"M12.25,5.63L9.78,8.1l0.71,0.71l2.47-2.47c0.78-0.78,0.78-2.05,0-2.83l-1.41-1.41L10.84,2.8l1.41,1.41 C12.64,4.6,12.64,5.24,12.25,5.63z\\\"></path><path d=\\\"M8.36,6.69l0.71,0.71l0.71-0.71c0.78-0.78,0.78-2.05,0-2.83L9.07,3.15L8.36,3.86l0.71,0.71c0.39,0.39,0.39,1.02,0,1.41 L8.36,6.69z\\\"></path><path d=\\\"M15.79,8.58c-0.51,0-1.02,0.2-1.41,0.59l-1.77,1.77l0.71,0.71l1.77-1.77c0.2-0.2,0.45-0.29,0.71-0.29s0.51,0.1,0.71,0.29 l1.41,1.41l0.71-0.71L17.2,9.16C16.81,8.77,16.3,8.58,15.79,8.58z\\\"></path><path d=\\\"M18.62,4.92c-0.39-0.39-0.9-0.59-1.41-0.59s-1.02,0.2-1.41,0.59l-4.6,4.6l0.71,0.71l4.6-4.6c0.2-0.2,0.45-0.29,0.71-0.29 s0.51,0.1,0.71,0.29l0.71,0.71l0.71-0.71L18.62,4.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_play\": {\n    \"name\": \"local_play\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 10V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\\\"></path>\"\n      }\n    }\n  },\n  \"local_pharmacy\": {\n    \"name\": \"local_pharmacy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-3.9 8.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63zM13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"design_services\": {\n    \"name\": \"design_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20.97,7.27c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63 c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89 c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89L20.97,7.27z M5.04,6.94l1.89-1.9c0,0,0,0,0,0 l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M16.27,14.38l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27 l-1.9,1.9l-3.89-3.89l1.9-1.9L16.27,14.38z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.02,6.56l1.41-1.41 l1.41,1.41l-1.41,1.41L16.02,6.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M15.71,13.21l-3.46-3.46l1.33-1.33l-2-2l-1.33,1.33L6.79,4.29C6.4,3.9,5.76,3.9,5.37,4.29L4.29,5.37 C3.9,5.76,3.9,6.4,4.29,6.79l3.46,3.46L4,14v2h2l3.75-3.75l3.46,3.46c0.39,0.39,1.02,0.39,1.41,0l1.08-1.08 C16.1,14.24,16.1,13.6,15.71,13.21z M5,6.08L6.08,5c0,0,0,0,0,0l0.69,0.69L6.23,6.23L6.89,6.9l0.54-0.54l1.06,1.06L7.95,7.96 l0.67,0.67l0.54-0.54l0.38,0.38L8.46,9.54L5,6.08z M5.59,15H5v-0.59l6.58-6.58l0.59,0.59L5.59,15z M13.92,15l-3.46-3.46l1.08-1.08 l0.4,0.4L11.4,11.4l0.67,0.67l0.54-0.54l1.06,1.06l-0.54,0.54l0.67,0.67l0.54-0.54L15,13.92L13.92,15z\\\"></path><path d=\\\"M15.62,6.38c0.2-0.2,0.2-0.51,0-0.71l-1.29-1.29c-0.2-0.2-0.51-0.2-0.71,0l-1.34,1.34l2,2L15.62,6.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_post_office\": {\n    \"name\": \"local_post_office\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"local_see\": {\n    \"name\": \"local_see\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z\\\"></path>\"\n      }\n    }\n  },\n  \"person_pin\": {\n    \"name\": \"person_pin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z\\\"></path>\"\n      }\n    }\n  },\n  \"electric_moped\": {\n    \"name\": \"electric_moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z\\\"></path></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,5.5C15,4.67,14.33,4,13.5,4H12v1h1.5C13.78,5,14,5.22,14,5.5v1.29L10.79,10H9V6H6C4.34,6,3,7.34,3,9v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,7.21V5.5z M4,10V9c0-1.1,0.9-2,2-2h2v3H4z M7,12c-0.55,0-1-0.45-1-1h2C8,11.55,7.55,12,7,12z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M15,9c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,9.9,16.1,9,15,9z M15,12c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,11.55,15.55,12,15,12z\\\"></path></g><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"local_convenience_store\": {\n    \"name\": \"local_convenience_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm1 11h-4v-4H8v4H4V9h3V6h10v3h3v9zM8 8h2v1H8v3h3v-1H9v-1h2V7H8zm7 1h-1V7h-1v3h2v2h1V7h-1z\\\"></path>\"\n      }\n    }\n  },\n  \"place\": {\n    \"name\": \"place\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-1.8C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"agriculture\": {\n    \"name\": \"agriculture\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z\\\"></path><path d=\\\"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3.5,8H8c0-0.55-0.45-1-1-1H3.5C3.22,7,3,7.22,3,7.5C3,7.78,3.22,8,3.5,8z\\\"></path><path d=\\\"M17,11.51V7c0-0.55-0.45-1-1-1h-4.47l-0.8-0.8l1.06-1.06l-0.53-0.53L8.61,6.27L9.14,6.8l1.06-1.06l0.8,0.8V9 c0,0.55-0.45,1-1,1H7.93C7.66,9.74,7.36,9.52,7.02,9.36L6.83,9.8L6.48,9.66l0.19-0.44C6.3,9.08,5.91,9,5.5,9 C5.1,9,4.71,9.08,4.35,9.21l0.18,0.44L4.19,9.8L4,9.35c-0.72,0.34-1.3,0.92-1.65,1.64l0.45,0.19l-0.14,0.35l-0.44-0.19 C2.08,11.7,2,12.09,2,12.5c0,0.4,0.08,0.79,0.21,1.15l0.44-0.18l0.14,0.35L2.35,14c0.34,0.72,0.92,1.3,1.64,1.65l0.19-0.45 l0.35,0.14l-0.19,0.44C4.7,15.92,5.09,16,5.5,16c0.4,0,0.79-0.08,1.15-0.21l-0.18-0.44l0.35-0.14L7,15.65 c0.72-0.34,1.3-0.92,1.65-1.64L8.2,13.83l0.14-0.35l0.44,0.19c0.08-0.22,0.13-0.44,0.17-0.67h4.1C13.02,13.16,13,13.33,13,13.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C18,12.68,17.6,11.97,17,11.51z M5.5,15C4.12,15,3,13.88,3,12.5C3,11.12,4.12,10,5.5,10 S8,11.12,8,12.5C8,13.88,6.88,15,5.5,15z M13.51,12H8.95c-0.04-0.22-0.09-0.44-0.16-0.65l-0.44,0.18L8.2,11.19 c0,0,0.45-0.19,0.45-0.19H10c1.1,0,2-0.9,2-2V7h4v4.05C15.84,11.02,15.67,11,15.5,11C14.68,11,13.97,11.4,13.51,12z M15.5,15 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,15,15.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"museum\": {\n    \"name\": \"museum\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z\\\"></path><polygon points=\\\"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3.03L3,8h0.02v1H5v7H3.02v1h13.97v-1H15V9h1.98V8H17L10,3.03z M14,16H6V8h8V16z\\\"></path><polygon points=\\\"8,11.33 10,14 12,11.33 12,15 13,15 13,9 12,9 10,12 8,9 7,9 7,15 8,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"warehouse\": {\n    \"name\": \"warehouse\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,8.35V19h-2v-8H6v8H4V8.35l8-3.2L20,8.35z M22,21V7L12,3L2,7v14h6v-8h8v8H22z M11,19H9v2h2V19z M13,16h-2v2h2V16z M15,19h-2v2h2V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13.5,17H18V6l-8-3L2,6v11h4.5v-6.5h7V17z M16.5,7.04v8.46H15V9H5v6.5H3.5V7.04L10,4.6L16.5,7.04z M9.25,17h-1.5v-1.5h1.5 V17z M10.75,14.5h-1.5V13h1.5V14.5z M12.25,17h-1.5v-1.5h1.5V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_fire_department\": {\n    \"name\": \"local_fire_department\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,6l-0.44,0.55c-0.42,0.52-0.98,0.75-1.54,0.75C13,7.3,12,6.52,12,5.3V2c0,0-8,4-8,11c0,4.42,3.58,8,8,8s8-3.58,8-8 C20,10.04,18.39,7.38,16,6z M12,19c-1.1,0-2-0.87-2-1.94c0-0.51,0.2-0.99,0.58-1.36l1.42-1.4l1.43,1.4 C13.8,16.07,14,16.55,14,17.06C14,18.13,13.1,19,12,19z M15.96,17.5L15.96,17.5c0.04-0.36,0.22-1.89-1.13-3.22l0,0L12,11.5 l-2.83,2.78l0,0c-1.36,1.34-1.17,2.88-1.13,3.22C6.79,16.4,6,14.79,6,13c0-3.16,2.13-5.65,4.03-7.25c0.23,1.99,1.93,3.55,3.99,3.55 c0.78,0,1.54-0.23,2.18-0.66C17.34,9.78,18,11.35,18,13C18,14.79,17.21,16.4,15.96,17.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,11c0.01-2.39-1.2-4.96-3-6l-0.33,0.41c-0.31,0.39-0.74,0.57-1.16,0.57c-0.77,0-1.51-0.59-1.51-1.5V2c0,0-6,3.75-6,9 c0,3.31,2.69,6,6,6S16,14.31,16,11L16,11z M10,15.5c-0.73,0-1.5-0.58-1.5-1.5c0-0.47,0.21-0.8,0.39-1L10,11.75L11.11,13 c0.18,0.2,0.39,0.53,0.39,1C11.5,14.83,10.83,15.5,10,15.5z M12.96,14.37L12.96,14.37c0.03-0.25,0.19-1.35-0.73-2.37L10,9.5 L7.77,12c-0.92,1.02-0.76,2.12-0.73,2.36C6.1,13.53,5.5,12.34,5.5,11c0-2.41,1.62-4.52,3.06-5.92c0.28,1.37,1.5,2.39,2.95,2.39 c0.57,0,1.11-0.16,1.58-0.46c0.85,0.99,1.41,2.55,1.41,3.98C14.5,12.34,13.9,13.55,12.96,14.37z\\\"></path></g>\"\n      }\n    }\n  },\n  \"lunch_dining\": {\n    \"name\": \"lunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,19c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3H2V19z M4,18h16v1H4V18z\\\"></path><path d=\\\"M18.66,11.5c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.32,1l-0.01-1.98C20.38,12.19,20.37,11.5,18.66,11.5z\\\"></path><path d=\\\"M22,9c0.02-4-4.28-6-10-6C6.29,3,2,5,2,9v1h20L22,9L22,9z M4.18,8C5.01,5.81,8.61,5,12,5c3.31,0,5.93,0.73,7.19,1.99 C19.49,7.3,19.71,7.63,19.84,8H4.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.99,8c0.26-2.73-3.42-5-7.99-5C5.44,3,1.76,5.27,2.01,8H17.99z M10,4.5c2.5,0,4.83,0.78,5.94,2H4.07 C5.18,5.29,7.51,4.5,10,4.5z\\\"></path><path d=\\\"M2,15.5C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V13H2V15.5z M3.5,14.5h13v1h-13V14.5z\\\"></path><path d=\\\"M18,11.75c-1.58,0-1.72-1-2.66-1c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1 c-1.58,0-1.72-1-2.67-1c-0.95,0-1.09,1-2.67,1v-1.5c0.95,0,1.09-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.66,1V11.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wrong_location\": {\n    \"name\": \"wrong_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z\\\"></path><circle cx=\\\"12\\\" cy=\\\"11\\\" r=\\\"2\\\"></circle><polygon points=\\\"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.53,9c0.03,0.24,0.07,0.48,0.07,0.74c0,1.88-1.55,4.21-4.6,6.94c-3.05-2.73-4.6-5.06-4.6-6.94C5.4,6.66,7.77,5,10,5 c0.33,0,0.67,0.05,1,0.12V4.09C10.67,4.03,10.34,4,10,4C7.06,4,4.4,6.25,4.4,9.74c0,2.32,1.87,5.08,5.6,8.26 c3.73-3.18,5.6-5.94,5.6-8.26c0-0.25-0.02-0.5-0.05-0.74H14.53z\\\"></path><circle cx=\\\"10\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><polygon points=\\\"17.47,3.23 16.77,2.53 15,4.29 13.23,2.53 12.53,3.23 14.29,5 12.53,6.77 13.23,7.47 15,5.71 16.77,7.47 17.47,6.77 15.71,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"bus_alert\": {\n    \"name\": \"bus_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><circle cx=\\\"6.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle></g><g><circle cx=\\\"13.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle></g><g><path d=\\\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.83-0.71,2.98-1.09,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99 C2.97,2.67,2,5.02,2,7v9.5c0,0.95,0.38,1.81,1,2.44V21c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-3 h12V16z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_gas_station\": {\n    \"name\": \"local_gas_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 13.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_run\": {\n    \"name\": \"directions_run\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"sailing\": {\n    \"name\": \"sailing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,13.5V2L3,13.5H11z M9,11.5H6.83L9,8.38V11.5z M21,13.5C21,6.5,14.5,1,12.5,1c0,0,1,3,1,6.5s-1,6-1,6H21z M15.38,5.24 c1.42,1.52,2.88,3.72,3.41,6.26h-3.68c0.21-1.1,0.39-2.46,0.39-4C15.5,6.71,15.45,5.95,15.38,5.24z M22,15H2 c0.31,1.53,1.16,2.84,2.33,3.73C4.98,18.46,5.55,18.01,6,17.5C6.73,18.34,7.8,19,9,19s2.27-0.66,3-1.5c0.73,0.84,1.8,1.5,3,1.5 s2.26-0.66,3-1.5c0.45,0.51,1.02,0.96,1.67,1.23C20.84,17.84,21.69,16.53,22,15z M22,23v-2h-1c-1.04,0-2.08-0.35-3-1 c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75c1.89,1,4.11,1,6,0 c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.5,11.5V2L3,11.5H9.5z M8,10H5.84L8,6.85V10z M17,11.5C17,5.5,12.03,1,10.5,1c0,0,0.8,2.5,0.8,5.5s-0.8,5-0.8,5H17z M12.68,4.35c1.15,1.34,2.33,3.32,2.7,5.65h-2.92c0.18-0.92,0.34-2.12,0.34-3.5C12.8,5.74,12.75,5.02,12.68,4.35z M17.5,17.5H18 l0,1.5h-0.5c-0.86,0-1.71-0.2-2.5-0.6c-1.58,0.8-3.43,0.8-5,0c-1.58,0.8-3.42,0.8-5,0C4.21,18.8,3.36,19,2.5,19H2v-1.5h0.5 c0.87,0,1.74-0.33,2.5-1c1.53,1.33,3.47,1.33,5,0c1.53,1.33,3.48,1.33,5,0C15.76,17.17,16.63,17.5,17.5,17.5z M16.08,15.55 c-0.41-0.27-0.78-0.64-1.08-1.05c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16S5.61,15.34,5,14.5 c-0.3,0.41-0.67,0.78-1.08,1.05C2.94,14.83,2.24,13.76,2,12.5h16C17.76,13.76,17.06,14.83,16.08,15.55z\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_left\": {\n    \"name\": \"roundabout_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.08,8c0.48-2.84,2.94-5,5.92-5c3.31,0,6,2.69,6,6c0,2.97-2.16,5.44-5,5.92L17,21h-2l0-6.09c0-0.98,0.71-1.8,1.67-1.97 C18.56,12.63,20,10.98,20,9c0-2.21-1.79-4-4-4c-1.98,0-3.63,1.44-3.94,3.33C11.89,9.29,11.07,10,10.09,10l-4.26,0l1.59,1.59L6,13 L2,9l4-4l1.41,1.41L5.83,8L10.08,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13.25,3c-2.37,0-4.33,1.73-4.69,4L4.87,7l1.19-1.19L5,4.75l-3,3l3,3l1.06-1.06L4.87,8.5l3.69,0 c0.74,0,1.36-0.54,1.48-1.25c0.24-1.56,1.59-2.75,3.21-2.75l0,0c1.79,0,3.25,1.46,3.25,3.25c0,1.62-1.18,2.96-2.73,3.21 c-0.72,0.11-1.27,0.67-1.27,1.4l0,4.64H14v-4.56l0,0c2.27-0.36,4-2.32,4-4.69C18,5.13,15.87,3,13.25,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_transfer\": {\n    \"name\": \"no_transfer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M19.78,22.61l-1.64-1.64 C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16 V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73 L6.63,17H14.17z M12,4c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6 c0-3.5-3.58-4-8-4C9.48,2,7.24,2.16,5.78,2.95l1.53,1.53C8.17,4.2,9.6,4,12,4z\\\"></path>\"\n      }\n    }\n  },\n  \"church\": {\n    \"name\": \"church\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h9v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4h9v-8L18,12.22z M20,20h-5v-2.04c0-1.69-1.35-3.06-3-3.06c-1.65,0-3,1.37-3,3.06V20H4v-4.79l4-1.81v-3.35L12,8l4,2.04v3.35l4,1.81V20z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,11V8l-4.25-2.55v-1.2h1.75v-1.5h-1.75V1h-1.5v1.75H7.5v1.5h1.75v1.2L5,8v3l-3,1v6h7v-3c0-0.55,0.45-1,1-1s1,0.45,1,1 v3h7v-6L15,11z M16.5,16.5h-4V15c0-1.38-1.12-2.5-2.5-2.5S7.5,13.62,7.5,15v1.5h-4v-3.42l3-1V8.85l3.5-2.1l3.5,2.1v3.23l3,1V16.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"local_offer\": {\n    \"name\": \"local_offer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"not_listed_location\": {\n    \"name\": \"not_listed_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 16c-.27 0-.52-.1-.71-.29-.2-.2-.29-.43-.29-.71-.01-.55.43-.99.98-1h.02c.28 0 .51.1.71.29.18.19.28.43.28.7s-.1.51-.29.71-.43.3-.7.3zm-.88-3.66c0-.45.1-.84.29-1.16.19-.33.53-.7 1-1.12.28-.25.48-.47.61-.66s.19-.4.19-.64c0-.29-.11-.53-.32-.74-.21-.2-.5-.3-.85-.3-.37 0-.74.1-.96.3-.21.2-.4.45-.4.98H9c0-1.01.46-1.73.97-2.21C10.53 6.28 11.25 6 12 6c.59 0 1.11.12 1.57.35s.79.55 1.05.96.38.86.38 1.35-.1.9-.31 1.25-.48.71-.89 1.09c-.32.3-.53.56-.65.77s-.18.49-.18.81V13h-1.85v-.66h.01zM18 10.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"navigation\": {\n    \"name\": \"navigation\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"local_drink\": {\n    \"name\": \"local_drink\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm14 18l-10 .01L5.89 10H18.1L17 20zm1.33-12H5.67l-.44-4h13.53l-.43 4zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z\\\"></path>\"\n      }\n    }\n  },\n  \"360\": {\n    \"name\": \"360\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z\\\"></path>\"\n      }\n    }\n  },\n  \"moped\": {\n    \"name\": \"moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M4,14v-1c0-1.1,0.9-2,2-2h2v3H4z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,7.5C15,6.67,14.33,6,13.5,6H12v1h1.5C13.78,7,14,7.22,14,7.5v1.29L10.79,12H9V8H6c-1.66,0-3,1.34-3,3v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V7.5z M4,12v-1c0-1.1,0.9-2,2-2h2v3H4z M7,14c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_florist\": {\n    \"name\": \"local_florist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zM12 13c-.62 0-1.12-.49-1.14-1.1l.12-1.09c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1zm3.34-1.93c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm2.44-2.44c.71-1.9 2.22-3.42 4.12-4.12-.71 1.9-2.22 3.41-4.12 4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z\\\"></path>\"\n      }\n    }\n  },\n  \"local_atm\": {\n    \"name\": \"local_atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"atm\": {\n    \"name\": \"atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"local_shipping\": {\n    \"name\": \"local_shipping\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zm-.5 1.5l1.96 2.5H17V9.5h2.5zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.22-3c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9H8.22zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"wine_bar\": {\n    \"name\": \"wine_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z\\\"></path>\"\n      }\n    }\n  },\n  \"transfer_within_a_station\": {\n    \"name\": \"transfer_within_a_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75\\\"></path>\"\n      }\n    }\n  },\n  \"ramen_dining\": {\n    \"name\": \"ramen_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.89V20h-4v-1.11l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M22,2 L4,3.99V12H2c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51V2L22,2z M8,6.5V5.06 l1-0.11V6.5H8L8,6.5z M5.5,6.5V5.34l1-0.11V6.5H5.5L5.5,6.5z M8,12V8h1v4H8L8,12z M5.5,12V8h1v4H5.5L5.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,3.01V2L4,3.54V9H2c0,3.36,2.07,6.23,5,7.41V18h6v-1.59c2.93-1.19,5-4.06,5-7.41H9V7h9V6H9V3.99L18,3.01z M7,4.21L8,4.1 V6H7V4.21z M7,7h1v2H7V7z M5,4.43l1-0.11V6H5V4.43z M5,7h1v2H5V7z M16.33,10.5c-0.48,2.02-1.9,3.72-3.89,4.52L11.5,15.4v1.01v0.09 h-3v-0.09V15.4l-0.94-0.38c-1.99-0.81-3.41-2.5-3.89-4.52H16.33z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cleaning_services\": {\n    \"name\": \"cleaning_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13,9h-1V4c0-0.55-0.45-1-1-1H9C8.45,3,8,3.45,8,4v5H7c-1.66,0-3,1.34-3,3v5c6.51,0,12,0,12,0v-5C16,10.34,14.66,9,13,9z M9,4h2v5H9V4z M15,16h-2v-1.5c0-0.28-0.22-0.5-0.5-0.5S12,14.22,12,14.5V16h-1.5v-1.5c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5 V16H8v-1.5C8,14.22,7.78,14,7.5,14S7,14.22,7,14.5V16H5v-4c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sos\": {\n    \"name\": \"sos\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,7h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V9C15.5,7.9,14.6,7,13.5,7z M13.5,15h-3V9h3V15z M1,15h4 v-2H3c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h4v2H3v2h2c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2H1V15z M17,15h4v-2h-2c-1.1,0-2-0.9-2-2V9 c0-1.1,0.9-2,2-2h4v2h-4v2h2c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M7.38,12c0,0.82,0.68,1.5,1.5,1.5h2.25c0.82,0,1.5-0.68,1.5-1.5V8c0-0.82-0.68-1.5-1.5-1.5H8.88c-0.82,0-1.5,0.68-1.5,1.5 V12z M11.12,12H8.88V8h2.25V12z M1.5,12h3v-1.25H3c-0.83,0-1.5-0.67-1.5-1.5V8c0-0.83,0.67-1.5,1.5-1.5h3V8H3v1.25h1.5 c0.83,0,1.5,0.67,1.5,1.5V12c0,0.83-0.67,1.5-1.5,1.5h-3V12z M14,12h3v-1.25h-1.5c-0.83,0-1.5-0.67-1.5-1.5V8 c0-0.83,0.67-1.5,1.5-1.5h3V8h-3v1.25H17c0.83,0,1.5,0.67,1.5,1.5V12c0,0.83-0.67,1.5-1.5,1.5h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_sharp_right\": {\n    \"name\": \"turn_sharp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,6.83l1.59,1.59L21,7l-4-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0-2,0.9-2,2v6h2v-6h8c1.1,0,2-0.9,2-2V6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14.5,10.5c0,0.83-0.67,1.5-1.5,1.5l-6,0v5H5.5v-5c0-0.83,0.67-1.5,1.5-1.5l6,0l0-4.63l-1.19,1.19L10.75,6l3-3l3,3 l-1.06,1.06L14.5,5.87L14.5,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_boat_filled\": {\n    \"name\": \"directions_boat_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.77,12.66l-1.12,3.97c-0.78-0.43-1.07-0.86-2.65-2.67C14.4,15.78,13.57,17,12,17c-1.53,0-2.34-1.15-4-3.04 c-1.6,1.82-1.87,2.21-2.65,2.65l-1.13-3.96L12,10.11L19.77,12.66z M15,1H9v3H6C4.9,4,4,4.9,4,6v4.62l-1.29,0.42 c-0.63,0.19-0.81,0.84-0.66,1.28L3.95,19H4c1.6,0,3.02-0.88,4-2c0.98,1.12,2.4,2,4,2s3.02-0.88,4-2c0.98,1.12,2.4,2,4,2h0.05 l1.91-6.68c0.11-0.37,0.04-1.06-0.66-1.28L20,10.62V6c0-1.1-0.9-2-2-2h-3V1L15,1z M6,9.97V6h12v3.97L12,8L6,9.97L6,9.97z M16,19.68 c-1.22,0.85-2.61,1.28-4,1.28s-2.78-0.43-4-1.28C6.78,20.53,5.39,21,4,21H2v2h2c1.38,0,2.74-0.35,4-0.99c1.26,0.64,2.63,0.97,4,0.97 s2.74-0.32,4-0.97c1.26,0.65,2.62,0.99,4,0.99h2v-2h-2C18.61,21,17.22,20.53,16,19.68L16,19.68z\\\"></path>\"\n      }\n    }\n  },\n  \"rate_review\": {\n    \"name\": \"rate_review\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z\\\"></path>\"\n      }\n    }\n  },\n  \"set_meal\": {\n    \"name\": \"set_meal\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z\\\"></path>\"\n      }\n    }\n  },\n  \"terrain\": {\n    \"name\": \"terrain\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\\\"></path>\"\n      }\n    }\n  },\n  \"festival\": {\n    \"name\": \"festival\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M23,11V9c-6-2-11-7-11-7S7,7,1,9v2c0,1.49,0.93,2.75,2.24,3.26C3.2,16.76,2.92,19.69,2,22h20 c-0.92-2.31-1.2-5.24-1.24-7.74C22.07,13.75,23,12.49,23,11z M12,4.71c1.33,1.14,3.49,2.84,6.11,4.29H5.89 C8.51,7.55,10.67,5.85,12,4.71z M13,11h3c0,0.83-0.67,1.5-1.5,1.5S13,11.83,13,11z M9.5,12.5C8.67,12.5,8,11.83,8,11h3 C11,11.83,10.33,12.5,9.5,12.5z M6,11c0,0.83-0.67,1.5-1.5,1.5S3,11.83,3,11H6z M4.66,20c0.39-1.86,0.54-3.82,0.57-5.58 c0.68-0.15,1.29-0.49,1.76-0.98c0.25,0.25,0.54,0.45,0.85,0.62c-0.1,1.87-0.26,4-0.52,5.93H4.66z M9.35,20 c0.24-1.83,0.39-3.78,0.48-5.53c0.84-0.08,1.61-0.45,2.17-1.02c0.56,0.57,1.32,0.94,2.17,1.02c0.1,1.75,0.24,3.7,0.48,5.53H9.35z M16.67,20c-0.27-1.94-0.43-4.07-0.52-5.93c0.31-0.17,0.61-0.37,0.85-0.62c0.47,0.48,1.08,0.83,1.76,0.98 c0.03,1.76,0.18,3.72,0.57,5.58H16.67z M19.5,12.5c-0.83,0-1.5-0.67-1.5-1.5h3C21,11.83,20.33,12.5,19.5,12.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M10,2c0,0-5,5-9,5.5V9c0,1.23,0.79,2.26,1.89,2.64C2.77,14.11,2.53,16.95,2,18h16c-0.06-0.12-0.68-1.27-0.91-6.35 C18.2,11.27,19,10.24,19,9V7.5C15,7,10,2,10,2z M9.25,9c0,0.72-0.59,1.31-1.31,1.31S6.63,9.72,6.63,9H9.25z M8.23,11.78 c0.7-0.08,1.32-0.39,1.77-0.88c0.45,0.49,1.07,0.81,1.77,0.88c0.03,0.95,0.13,2.67,0.4,4.72H7.83C8.11,14.45,8.2,12.73,8.23,11.78z M12.06,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C13.37,9.72,12.79,10.31,12.06,10.31z M10,4.05c1.07,0.95,2.79,2.37,4.72,3.45H5.28 C7.21,6.42,8.93,5.01,10,4.05z M2.5,9h2.62c0,0.72-0.59,1.31-1.31,1.31S2.5,9.72,2.5,9z M4.39,11.75c0.58-0.12,1.09-0.43,1.48-0.85 c0.24,0.27,0.54,0.48,0.87,0.64c-0.03,0.88-0.11,2.76-0.43,4.97H3.95C4.18,15.17,4.31,13.37,4.39,11.75z M13.69,16.5 c-0.31-2.21-0.4-4.09-0.43-4.97c0.33-0.16,0.62-0.37,0.87-0.64c0.39,0.42,0.9,0.73,1.48,0.85c0.08,1.62,0.21,3.42,0.44,4.75H13.69z M16.19,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C17.5,9.72,16.91,10.31,16.19,10.31z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_slight_left\": {\n    \"name\": \"turn_slight_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.66,6V4H6v5.66h2V7.41l5,5V20h2v-7.58c0-0.53-0.21-1.04-0.59-1.41l-5-5H11.66z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M12.5,10.56V16H11v-5.44l-4-4l0,1.69H5.5L5.5,4l4.25,0v1.5l-1.69,0l4,4C12.34,9.78,12.5,10.16,12.5,10.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"medical_services\": {\n    \"name\": \"medical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z\\\"></path><polygon points=\\\"13,10 11,10 11,13 8,13 8,15 11,15 11,18 13,18 13,15 16,15 16,13 13,13\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16,6h-3V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v2H4C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V7 C17,6.45,16.55,6,16,6z M8,4h4v2H8V4z M16,16H4V7h12V16z\\\"></path><polygon points=\\\"10.5,9 9.5,9 9.5,11 7.5,11 7.5,12 9.5,12 9.5,14 10.5,14 10.5,12 12.5,12 12.5,11 10.5,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"directions_walk\": {\n    \"name\": \"directions_walk\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7\\\"></path>\"\n      }\n    }\n  },\n  \"kebab_dining\": {\n    \"name\": \"kebab_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.75,7h0.75C19.88,7,21,5.88,21,4.5C21,3.12,19.88,2,18.5,2h-0.75V1h-1.5v1H15.5C14.12,2,13,3.12,13,4.5 C13,5.88,14.12,7,15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5h0.75v4h1.5v-4h0.75 c1.38,0,2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5h-0.75v-1H21V8h-3.25V7z M15.5,5C15.22,5,15,4.78,15,4.5S15.22,4,15.5,4h3 C18.78,4,19,4.22,19,4.5S18.78,5,18.5,5H15.5z M18.5,16c0.28,0,0.5,0.22,0.5,0.5S18.78,17,18.5,17h-3c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5H18.5z M19,10v1h-4v-1H19z M7.75,7H8.5C9.88,7,11,5.88,11,4.5C11,3.12,9.88,2,8.5,2H7.75V1h-1.5v1H5.5 C4.12,2,3,3.12,3,4.5C3,5.88,4.12,7,5.5,7h0.75v1H3v5h3.25v1H5.5C4.12,14,3,15.12,3,16.5C3,17.88,4.12,19,5.5,19h0.75v4h1.5v-4H8.5 c1.38,0,2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5H7.75v-1H11V8H7.75V7z M5.5,5C5.22,5,5,4.78,5,4.5S5.22,4,5.5,4h3 C8.78,4,9,4.22,9,4.5S8.78,5,8.5,5H5.5z M8.5,16C8.78,16,9,16.22,9,16.5S8.78,17,8.5,17h-3C5.22,17,5,16.78,5,16.5S5.22,16,5.5,16 H8.5z M9,10v1H5v-1H9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.5,6H7c1.1,0,2-0.9,2-2S8.1,2,7,2H6.5V1h-1v1H5C3.9,2,3,2.9,3,4s0.9,2,2,2h0.5v1H3v4h2.5v1H5c-1.1,0-2,0.9-2,2s0.9,2,2,2 h0.5v3h1v-3H7c1.1,0,2-0.9,2-2s-0.9-2-2-2H6.5v-1H9V7H6.5V6z M5,4.5C4.72,4.5,4.5,4.28,4.5,4S4.72,3.5,5,3.5h2 c0.28,0,0.5,0.22,0.5,0.5S7.28,4.5,7,4.5H5z M7,13.5c0.28,0,0.5,0.22,0.5,0.5S7.28,14.5,7,14.5H5c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5H7z M7.5,8.5v1h-3v-1H7.5z M14.5,6H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5V1h-1v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5 v1H11v4h2.5v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5v3h1v-3H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5v-1H17V7h-2.5V6z M13,4.5 c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5S15.28,4.5,15,4.5H13z M15,13.5c0.28,0,0.5,0.22,0.5,0.5 s-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5H15z M15.5,8.5v1h-3v-1H15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"ev_station\": {\n    \"name\": \"ev_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 11v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me_disabled\": {\n    \"name\": \"near_me_disabled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z\\\"></path>\"\n      }\n    }\n  },\n  \"car_repair\": {\n    \"name\": \"car_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><circle cx=\\\"9\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M5.78,16h0.44C6.65,16,7,15.64,7,15.19V14h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c0,0-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,3.01,16.28,3,16.28,3H7.72 c0,0-0.54,0.01-0.92,0.54C6.78,3.56,6.77,3.58,6.75,3.6C6.68,3.71,6.61,3.84,6.56,4C6.34,4.66,5,8.69,5,8.69v6.5 C5,15.64,5.35,16,5.78,16z M8.33,5h7.34l0.23,0.69L16.33,7H7.67L8.33,5z M7,9.01V9h10v0.01V12H7V9.01z\\\"></path><polygon points=\\\"4,17.01 4,19 11,19 11,22 13,22 13,19 20,19 20,17.01\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><polygon points=\\\"4,13 4,14.5 9.25,14.5 9.25,17 10.75,17 10.75,14.5 16,14.5 16,13\\\"></polygon><path d=\\\"M5.5,12H6c0.28,0,0.5-0.22,0.5-0.5V11h7v0.5c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V7l-1.22-3.34 C13.64,3.26,13.26,3,12.84,3H7.19C6.78,3,6.4,3.26,6.26,3.65L5,7v4.5C5,11.78,5.22,12,5.5,12z M7.54,4.5h4.95L13.04,6H6.98 L7.54,4.5z M6.5,7.5h7v2h-7V7.5z\\\"></path><circle cx=\\\"7.75\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.25\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"merge\": {\n    \"name\": \"merge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.41,21L5,19.59l4.83-4.83c0.75-0.75,1.17-1.77,1.17-2.83v-5.1L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83v5.1 c0,1.06,0.42,2.08,1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M9.25,10.45c0,0.8-0.32,1.56-0.88,2.12L5,15.94L6.06,17L10,13.06L13.94,17L15,15.94l-3.37-3.37 c-0.56-0.56-0.88-1.33-0.88-2.12l0-4.58l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19L9.25,10.45z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meals\": {\n    \"name\": \"no_meals\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z\\\"></path>\"\n      }\n    }\n  },\n  \"miscellaneous_services\": {\n    \"name\": \"miscellaneous_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z\\\"></path><path d=\\\"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M11.69,11.36l1-1.73c0.06-0.11,0.04-0.24-0.06-0.32l-1.06-0.83C11.6,8.33,11.61,8.16,11.61,8c0-0.16-0.01-0.33-0.04-0.49 l1.06-0.83c0.09-0.08,0.12-0.21,0.06-0.32l-1-1.73c-0.06-0.11-0.19-0.15-0.31-0.11l-1.24,0.5C9.88,4.82,9.6,4.66,9.3,4.53 L9.11,3.21C9.09,3.09,8.98,3,8.86,3h-2C6.74,3,6.63,3.09,6.61,3.21L6.42,4.54c-0.3,0.13-0.59,0.29-0.84,0.49l-1.24-0.5 c-0.11-0.04-0.24,0-0.31,0.11l-1,1.73C2.97,6.47,3,6.61,3.09,6.69l1.06,0.83C4.12,7.67,4.11,7.84,4.11,8 c0,0.16,0.01,0.33,0.04,0.49L3.09,9.32C3,9.4,2.97,9.54,3.03,9.64l1,1.73c0.06,0.11,0.19,0.15,0.31,0.11l1.24-0.5 c0.26,0.2,0.54,0.36,0.84,0.49l0.19,1.32C6.63,12.91,6.74,13,6.86,13h2c0.12,0,0.23-0.09,0.25-0.21l0.19-1.32 c0.3-0.13,0.59-0.29,0.84-0.49l1.24,0.5C11.5,11.51,11.62,11.47,11.69,11.36z M7.86,9.5c-0.83,0-1.5-0.68-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5c0.82,0,1.5,0.67,1.5,1.5C9.36,8.82,8.68,9.5,7.86,9.5z\\\"></path><path d=\\\"M16.81,14.79l-0.64-0.5c0.01-0.1,0.02-0.19,0.02-0.29c0-0.1-0.01-0.2-0.02-0.29l0.64-0.5c0.05-0.05,0.07-0.13,0.04-0.19 l-0.6-1.04c-0.04-0.07-0.11-0.09-0.19-0.07l-0.74,0.3c-0.16-0.12-0.32-0.22-0.51-0.29l-0.11-0.79C14.68,11.05,14.61,11,14.54,11 h-1.2c-0.07,0-0.14,0.05-0.15,0.13l-0.11,0.79c-0.18,0.08-0.35,0.17-0.51,0.29l-0.74-0.3c-0.07-0.02-0.14,0-0.19,0.07l-0.6,1.04 c-0.04,0.07-0.02,0.14,0.04,0.19l0.64,0.5c-0.01,0.1-0.02,0.19-0.02,0.29c0,0.1,0.01,0.2,0.02,0.29l-0.64,0.5 c-0.05,0.05-0.07,0.13-0.04,0.19l0.6,1.04c0.04,0.07,0.11,0.09,0.19,0.07l0.74-0.3c0.16,0.12,0.32,0.22,0.51,0.29l0.11,0.79 C13.2,16.95,13.26,17,13.34,17h1.2c0.07,0,0.14-0.05,0.15-0.13l0.11-0.79c0.18-0.08,0.35-0.17,0.5-0.29l0.75,0.3 c0.07,0.02,0.14,0,0.19-0.07l0.6-1.04C16.88,14.92,16.86,14.84,16.81,14.79z M14,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1C15,14.55,14.55,15,14,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compass_calibration\": {\n    \"name\": \"compass_calibration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-17C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3zm4.84 6.47c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me\": {\n    \"name\": \"near_me\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.27 6.73l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z\\\"></path>\"\n      }\n    }\n  },\n  \"home_repair_service\": {\n    \"name\": \"home_repair_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18H4 v-3h2v1h2v-1h8v1h2v-1h2V18z M18,13v-1h-2v1H8v-1H6v1H4v-3h3h10h3v3H18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M16,7h-3V5c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5v2H4C3.45,7,3,7.45,3,8v8h14V8C17,7.45,16.55,7,16,7z M8,5h4v2H8V5z M16,15H4v-3h2v1h1v-1h6v1h1v-1h2V15z M14,11v-1h-1v1H7v-1H6v1H4V8h3h6h3v3H14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"airline_stops\": {\n    \"name\": \"airline_stops\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,8.7c-2.46,1.5-5.5,4.17-6,8.3h2v2H9v-2h2c-0.5-4.5-4.37-8-9-8V7c4.39,0,8.22,2.55,10,6.3c1.38-2.97,3.86-5.03,5.96-6.31 L14,7V5h7v7h-2V8.7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,14C9.25,10.41,6,7.5,2,7.5V6c3.56,0,6.64,1.96,8,4.76c0.86-1.78,2.45-3.39,4.72-4.76L11.5,6V4.5H17V10h-1.5l0-2.72 c-1.82,1.09-4.75,3.32-4.75,6.72h1.5v1.5h-4.5V14H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"bedroom_baby\": {\n    \"name\": \"bedroom_baby\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17.94,14.04c-0.34,0.34-0.71,0.64-1.1,0.92L16,13.5V11h1v-1h-5.62L9.65,7H6l1,0.76L5.5,9.5l0.95,1L8,9.51v3.99l-0.84,1.46 c-0.39-0.27-0.76-0.58-1.1-0.92L5,15.1c1.87,1.87,4.36,2.9,7,2.9s5.13-1.03,7-2.9L17.94,14.04z M8.45,15.71l0.03-0.06l0.81-1.41 c1.74,0.65,3.66,0.65,5.4,0l0.81,1.41l0.03,0.06c-1.1,0.51-2.3,0.79-3.55,0.79S9.55,16.23,8.45,15.71z M20,4v16H4V4H20 M20,2H4 C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"garage\": {\n    \"name\": \"garage\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M5.78,18.5h0.44C6.65,18.5,7,18.14,7,17.69V16.5h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81 v-6.5c-0.82-2.46-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07 c-0.38-0.52-0.92-0.53-0.92-0.53H7.72c0,0-0.54,0.01-0.92,0.54C6.78,6.06,6.77,6.08,6.75,6.1C6.68,6.21,6.61,6.34,6.56,6.5 C6.34,7.16,5.82,8.72,5,11.19v6.5C5,18.14,5.35,18.5,5.78,18.5z M8.33,7.5h7.34l0.23,0.69l0.43,1.31H7.67L8.33,7.5z M7,11.51V11.5 h10v0.01v2.99H7V11.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feed\": {\n    \"name\": \"feed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8L16,3z M19,19H5V5h10v4h4V19z M7,17h10v-2H7V17z M12,7H7 v2h5V7z M7,13h10v-2H7V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flatware\": {\n    \"name\": \"flatware\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,7.08c0,1.77-0.84,3.25-2,3.82V21h-2V10.9c-1.16-0.57-2-2.05-2-3.82C10.01,4.83,11.35,3,13,3C14.66,3,16,4.83,16,7.08z M17,3v18h2v-8h2V7C21,5.24,19.76,3,17,3z M8.28,3c-0.4,0-0.72,0.32-0.72,0.72V7H6.72V3.72C6.72,3.32,6.4,3,6,3 S5.28,3.32,5.28,3.72V7H4.44V3.72C4.44,3.32,4.12,3,3.72,3S3,3.32,3,3.72V9c0,1.1,0.9,2,2,2v10h2V11c1.1,0,2-0.9,2-2V3.72 C9,3.32,8.68,3,8.28,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bathroom\": {\n    \"name\": \"bathroom\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M8,14c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S8,14.55,8,14z M12,15c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1 S11.45,15,12,15z M15,15c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S14.45,15,15,15z M12,7.5c-1.76,0-3.22,1.31-3.46,3h6.93 C15.22,8.81,13.76,7.5,12,7.5 M12,6c2.76,0,5,2.24,5,5v1H7v-1C7,8.24,9.24,6,12,6z M9,18c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S8.45,18,9,18z M12,18c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S11.45,18,12,18z M15,18c0.55,0,1-0.45,1-1 s-0.45-1-1-1s-1,0.45-1,1S14.45,18,15,18z M20,4H4v16h16V4 M20,2c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4 c0-1.1,0.9-2,2-2H20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair_alt\": {\n    \"name\": \"chair_alt\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,10c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v3c0,1.1,0.9,2,2,2h1v2H7c-1.1,0-2,0.9-2,2v7h2v-3h10v3h2v-7 c0-1.1-0.9-2-2-2h-1v-2H17z M7,8V5h10v3H7z M17,16H7v-2h10V16z M14,12h-4v-2h4V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee\": {\n    \"name\": \"coffee\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18.5,3H6C4.9,3,4,3.9,4,5v5.71c0,3.83,2.95,7.18,6.78,7.29c3.96,0.12,7.22-3.06,7.22-7v-1h0.5c1.93,0,3.5-1.57,3.5-3.5 S20.43,3,18.5,3z M16,5v3H6V5H16z M16,10v1c0,2.76-2.24,5-5,5s-5-2.24-5-5v-1 M18.5,8H18V5h0.5C19.33,5,20,5.67,20,6.5 S19.33,8,18.5,8z M4,19h16v2H4V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee_maker\": {\n    \"name\": \"coffee_maker\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,6V4h2V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h14v-2h-4.03C17.2,19.09,18,17.64,18,16v-5H8v5c0,1.64,0.81,3.09,2.03,4 H6V4h2v2c0,0.55,0.45,1,1,1h8C17.55,7,18,6.55,18,6z M10,16v-3h6v3c0,1.65-1.35,3-3,3S10,17.65,10,16z\\\"></path><circle cx=\\\"13\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"bedroom_parent\": {\n    \"name\": \"bedroom_parent\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18.35,11.45V9c0-1.1-0.9-2-2-2H13c-0.37,0-0.72,0.12-1,0.32C11.72,7.12,11.37,7,11,7H7.65c-1.1,0-2,0.9-2,2v2.45 C5.25,11.91,5,12.51,5,13.17V17h1.5v-1.5h11V17H19v-3.83C19,12.51,18.75,11.91,18.35,11.45z M16.75,10.5h-4v-2h4V10.5z M7.25,8.5h4 v2h-4V8.5z M17.5,14h-11v-1c0-0.55,0.45-1,1-1h9c0.55,0,1,0.45,1,1V14z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"window\": {\n    \"name\": \"window\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 8h-6V5h6v6zm-8-6v6H5V5h6zm-6 8h6v6H5v-6zm8 6v-6h6v6h-6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5 3h-11C3.67 3 3 3.67 3 4.5v11c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5zm0 6.25h-4.75V4.5h4.75v4.75zM9.25 4.5v4.75H4.5V4.5h4.75zM4.5 10.75h4.75v4.75H4.5v-4.75zm6.25 4.75v-4.75h4.75v4.75h-4.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"living\": {\n    \"name\": \"living\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17.75,10.35V9c0-1.66-1.34-3-3-3h-5.5c-1.66,0-3,1.34-3,3v1.35C5.51,10.78,5,11.58,5,12.5V16c0,1.1,0.9,2,2,2h10 c1.1,0,2-0.9,2-2v-3.5C19,11.58,18.49,10.78,17.75,10.35z M9.25,7.5h5.5c0.83,0,1.5,0.67,1.5,1.5v1.03C14.99,10.15,14,11.2,14,12.5 V13h-4v-0.5c0-1.3-0.99-2.35-2.25-2.47V9C7.75,8.17,8.42,7.5,9.25,7.5z M17.5,16c0,0.28-0.22,0.5-0.5,0.5H7 c-0.28,0-0.5-0.22-0.5-0.5v-3.5c0-0.55,0.45-1,1-1s1,0.45,1,1v2h7v-2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V16z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"dining\": {\n    \"name\": \"dining\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14.75,6c-1.37,0-2.5,1.52-2.5,3.4c0,1.48,0.7,2.71,1.67,3.18L14,12.62V19h1.5v-6.38l0.08-0.03 c0.97-0.47,1.67-1.7,1.67-3.18C17.25,7.53,16.13,6,14.75,6 M6.5,9.96 M10.5,6C10.23,6,10,6.22,10,6.5V9H9.25V6.5 c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5V9H7.5V6.5C7.5,6.22,7.28,6,7,6S6.5,6.22,6.5,6.5v3.8c0,0.93,0.64,1.71,1.5,1.93V19h1.5 v-6.77c0.86-0.22,1.5-1,1.5-1.93V6.5C11,6.22,10.78,6,10.5,6z M20,4H4v16h16V4 M20,2c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2H20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair\": {\n    \"name\": \"chair\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,8V6c0-1.65-1.35-3-3-3H7C5.35,3,4,4.35,4,6v2c-1.65,0-3,1.35-3,3v5c0,1.65,1.35,3,3,3v1c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1c1.65,0,3-1.35,3-3v-5C23,9.35,21.65,8,20,8z M6,6 c0-0.55,0.45-1,1-1h10c0.55,0,1,0.45,1,1v2.78c-0.61,0.55-1,1.34-1,2.22v2H7v-2c0-0.88-0.39-1.67-1-2.22V6z M21,16 c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-5c0-0.55,0.45-1,1-1s1,0.45,1,1v4h14v-4c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_bar\": {\n    \"name\": \"table_bar\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,7.5C22,5.57,17.52,4,12,4S2,5.57,2,7.5c0,1.81,3.95,3.31,9,3.48V15H9.35c-0.82,0-1.55,0.5-1.86,1.26L6,20h2l1.2-3h5.6 l1.2,3h2l-1.5-3.74C16.2,15.5,15.46,15,14.65,15H13v-4.02C18.05,10.81,22,9.31,22,7.5z M12,6c4.05,0,6.74,0.86,7.72,1.5 C18.74,8.14,16.05,9,12,9S5.26,8.14,4.28,7.5C5.26,6.86,7.95,6,12,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18,6.5C18,5.12,14.42,4,10,4S2,5.12,2,6.5c0,1.3,3.18,2.37,7.25,2.49v3.51H7.61c-0.58,0-1.11,0.33-1.35,0.86L5,16h1.5l1-2 h5l1,2H15l-1.26-2.64c-0.25-0.52-0.78-0.86-1.35-0.86h-1.64V8.99C14.82,8.87,18,7.8,18,6.5z M10,5.5c3.04,0,5.16,0.55,6.1,1 c-0.94,0.45-3.06,1-6.1,1s-5.16-0.55-6.1-1C4.84,6.05,6.96,5.5,10,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"camera_indoor\": {\n    \"name\": \"camera_indoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,13v-1c0-0.55-0.45-1-1-1H9c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L14,13z M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"door_back\": {\n    \"name\": \"door_back\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"11\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"bedroom_child\": {\n    \"name\": \"bedroom_child\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M16.5,10.67V9 c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v1.67c-0.88,0.35-1.5,1.2-1.5,2.2V17h1.5v-1.5h9V17H18v-4.13C18,11.87,17.38,11.02,16.5,10.67 z M15,8.5v2H9v-2H15z M7.5,12.87C7.5,12.39,7.89,12,8.37,12h7.27c0.48,0,0.87,0.39,0.87,0.87V14h-9v-1.13H7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"door_front\": {\n    \"name\": \"door_front\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z M13,11h2v2h-2V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shower\": {\n    \"name\": \"shower\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M9,17c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,16.45,9,17z M12,16c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S12.55,16,12,16z M16,16c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S16.55,16,16,16z M19,12v2H5v-2c0-3.53,2.61-6.43,6-6.92 V3h2v2.08C16.39,5.57,19,8.47,19,12z M17,12c0-2.76-2.24-5-5-5s-5,2.24-5,5H17z M8,19c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S8.55,19,8,19z M12,19c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S12.55,19,12,19z M16,19c-0.55,0-1,0.45-1,1s0.45,1,1,1 c0.55,0,1-0.45,1-1S16.55,19,16,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"door_sliding\": {\n    \"name\": \"door_sliding\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M10,13H8v-2h2V13z M16,11h-2v2h2V11z M21,19v2H3v-2h1V5c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2v14H21z M11,5H6v14h5V5z M18,5 h-5v14h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"light\": {\n    \"name\": \"light\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,6.06V3h-2v3.06c-4.5,0.5-8,4.31-8,8.93C3,16.1,3.9,17,5.01,17H8c0,2.21,1.79,4,4,4s4-1.79,4-4h2.99 C20.1,17,21,16.1,21,14.99C21,10.37,17.5,6.56,13,6.06z M12,19c-1.1,0-2-0.9-2-2h2h2C14,18.1,13.1,19,12,19z M12,15H5 c0-3.86,3.14-7,7-7s7,3.14,7,7H12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"table_restaurant\": {\n    \"name\": \"table_restaurant\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.96,9.73l-1.43-5C20.41,4.3,20.02,4,19.57,4H4.43C3.98,4,3.59,4.3,3.47,4.73l-1.43,5C1.86,10.36,2.34,11,3,11h2.2L4,20 h2l0.67-5h10.67L18,20h2l-1.2-9H21C21.66,11,22.14,10.36,21.96,9.73z M6.93,13l0.27-2h9.6l0.27,2H6.93z M4.33,9l0.86-3h13.63 l0.86,3H4.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17.93,7.63l-1.2-3C16.58,4.25,16.21,4,15.8,4H4.2C3.79,4,3.42,4.25,3.27,4.63l-1.2,3C1.81,8.29,2.29,9,3,9h1.27L3,16h1.5 l0.73-4h9.32l0.73,4h1.5L15.5,9H17C17.71,9,18.19,8.29,17.93,7.63z M5.5,10.5L5.77,9H14l0.27,1.5H5.5z M3.74,7.5l0.8-2h10.92l0.8,2 H3.74z\\\"></path></g>\"\n      }\n    }\n  },\n  \"podcasts\": {\n    \"name\": \"podcasts\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,12c0,0.74-0.4,1.38-1,1.72V22h-2v-8.28c-0.6-0.35-1-0.98-1-1.72c0-1.1,0.9-2,2-2S14,10.9,14,12z M12,6 c-3.31,0-6,2.69-6,6c0,1.74,0.75,3.31,1.94,4.4l1.42-1.42C8.53,14.25,8,13.19,8,12c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.19-0.53,2.25-1.36,2.98l1.42,1.42C17.25,15.31,18,13.74,18,12C18,8.69,15.31,6,12,6z M12,2C6.48,2,2,6.48,2,12 c0,2.85,1.2,5.41,3.11,7.24l1.42-1.42C4.98,16.36,4,14.29,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8c0,2.29-0.98,4.36-2.53,5.82l1.42,1.42 C20.8,17.41,22,14.85,22,12C22,6.48,17.52,2,12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"manage_search\": {\n    \"name\": \"manage_search\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M7,9H2V7h5V9z M7,12H2v2h5V12z M20.59,19l-3.83-3.83C15.96,15.69,15.02,16,14,16c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 c0,1.02-0.31,1.96-0.83,2.75L22,17.59L20.59,19z M17,11c0-1.65-1.35-3-3-3s-3,1.35-3,3s1.35,3,3,3S17,12.65,17,11z M2,19h10v-2H2 V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bed\": {\n    \"name\": \"bed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"doorbell\": {\n    \"name\": \"doorbell\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11,16.5h2c0,0.55-0.45,1-1,1S11,17.05,11,16.5z M15,15v-2.34c0-1.54-0.81-2.82-2.25-3.16V9.25c0-0.41-0.34-0.75-0.75-0.75 s-0.75,0.34-0.75,0.75V9.5C9.82,9.84,9,11.12,9,12.66V15H8v1h8v-1H15z M12,5.5L6,10v9h12v-9L12,5.5 M12,3l8,6v12H4V9L12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"camera_outdoor\": {\n    \"name\": \"camera_outdoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,13c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L18,14V13z M12,3 L4,9v12h16v-2H6v-9l6-4.5l6,4.5v1h2V9L12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"yard\": {\n    \"name\": \"yard\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,13c-3.31,0-6,2.69-6,6C15.31,19,18,16.31,18,13z M6,13c0,3.31,2.69,6,6,6C12,15.69,9.31,13,6,13z M8,11.03 c0,0.86,0.7,1.56,1.56,1.56c0.33,0,0.63-0.1,0.89-0.28l-0.01,0.12c0,0.86,0.7,1.56,1.56,1.56s1.56-0.7,1.56-1.56l-0.01-0.12 c0.25,0.17,0.56,0.28,0.89,0.28c0.86,0,1.56-0.7,1.56-1.56c0-0.62-0.37-1.16-0.89-1.41C15.63,9.38,16,8.84,16,8.22 c0-0.86-0.7-1.56-1.56-1.56c-0.33,0-0.63,0.1-0.89,0.28l0.01-0.12c0-0.86-0.7-1.56-1.56-1.56s-1.56,0.7-1.56,1.56l0.01,0.12 C10.2,6.76,9.89,6.66,9.56,6.66C8.7,6.66,8,7.36,8,8.22c0,0.62,0.37,1.16,0.89,1.41C8.37,9.87,8,10.41,8,11.03z M12,8.06 c0.86,0,1.56,0.7,1.56,1.56s-0.7,1.56-1.56,1.56s-1.56-0.7-1.56-1.56S11.14,8.06,12,8.06z M20,4v16H4V4H20 M20,2H4C2.9,2,2,2.9,2,4 v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"blender\": {\n    \"name\": \"blender\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h2.23l0.64,4.13C6.74,16.05,6,17.43,6,19v1 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-1C18,17.43,17.26,16.05,16.13,15.13z M5,9V5h1.31l0.62,4H5z M15.67,5l-1.38,9H9.72L8.33,5 H15.67z M16,20H8v-1c0-1.65,1.35-3,3-3h2c1.65,0,3,1.35,3,3V20z\\\"></path><circle cx=\\\"12\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sim_card\": {\n    \"name\": \"sim_card\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds\": {\n    \"name\": \"earbuds\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,3c-2.76,0-5,2.24-5,5v8c0,1.66-1.34,3-3,3s-3-1.34-3-3V9h0.83C7.44,9,8.89,7.82,9,6.21c0.12-1.69-1.16-3.1-2.8-3.21 C4.44,2.89,3,4.42,3,6.19V16c0,2.76,2.24,5,5,5s5-2.24,5-5V8c0-1.66,1.34-3,3-3s3,1.34,3,3v7h-0.83c-1.61,0-3.06,1.18-3.17,2.79 c-0.12,1.69,1.16,3.1,2.8,3.21c1.76,0.12,3.2-1.42,3.2-3.18V8C21,5.24,18.76,3,16,3z M5,6c0-0.55,0.45-1,1-1s1,0.45,1,1S6.55,7,6,7 H5V6z M19,18c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1h1V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_toy\": {\n    \"name\": \"smart_toy\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,9V7c0-1.1-0.9-2-2-2h-3c0-1.66-1.34-3-3-3S9,3.34,9,5H6C4.9,5,4,5.9,4,7v2c-1.66,0-3,1.34-3,3s1.34,3,3,3v4 c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4c1.66,0,3-1.34,3-3S21.66,9,20,9z M18,19L6,19V7h12V19z M9,13c-0.83,0-1.5-0.67-1.5-1.5 S8.17,10,9,10s1.5,0.67,1.5,1.5S9.83,13,9,13z M16.5,11.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S14.17,10,15,10 S16.5,10.67,16.5,11.5z M8,15h8v2H8V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"videogame_asset\": {\n    \"name\": \"videogame_asset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"18.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"smartphone\": {\n    \"name\": \"smartphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_for_education\": {\n    \"name\": \"cast_for_education\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_screen\": {\n    \"name\": \"smart_screen\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"12.5\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"10\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"7.5\\\" y=\\\"11.25\\\"></rect><path d=\\\"M21,5H3C1.9,5,1,5.9,1,7v10c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V7C23,5.9,22.1,5,21,5z M4,17H3V7h1V17z M18,17H6V7h12V17z M21,17h-1V7h1V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"tablet\": {\n    \"name\": \"tablet\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z\\\"></path>\"\n      }\n    }\n  },\n  \"security\": {\n    \"name\": \"security\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z\\\"></path>\"\n      }\n    }\n  },\n  \"laptop_windows\": {\n    \"name\": \"laptop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z\\\"></path>\"\n      }\n    }\n  },\n  \"cast\": {\n    \"name\": \"cast\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"device_unknown\": {\n    \"name\": \"device_unknown\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_mic\": {\n    \"name\": \"headset_mic\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 14v4h-2v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_option_key\": {\n    \"name\": \"keyboard_option_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><polygon points=\\\"9,5 3,5 3,7 7.85,7 14.77,19 21,19 21,17 15.93,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"8,5 3,5 3,6.5 7.13,6.5 12.04,15 17,15 17,13.5 12.91,13.5\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"12\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"developer_board_off\": {\n    \"name\": \"developer_board_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-0.9-2-2-2H5.83L7.83,5z M12,9.17V7h4v3h-3.17L12,9.17z M9.83,7H11v1.17L9.83,7z M13.83,11H16v2.17L13.83,11z M18,21c0.06,0,0.11,0,0.16-0.01l2.32,2.32l1.41-1.41L2.1,2.1L0.69,3.51 l1.32,1.32C2,4.89,2,4.94,2,5v14c0,1.1,0.9,2,2,2H18z M4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.12,14H18v-1.5h-2v-1.75h2v-1.5h-2V7.5h2V6h-2V4.5C16,3.67,15.33,3,14.5,3H5.12l1.5,1.5h7.88v7.88L16.12,14z M8.12,6H9 v0.88L8.12,6z M13,8h-2.88L10,7.88V6h3V8z M11.12,9H13v1.88L11.12,9z M2.22,2.22L1.16,3.28l0.88,0.88C2.01,4.27,2,4.38,2,4.5v11 C2,16.33,2.67,17,3.5,17h11c0.12,0,0.23-0.01,0.34-0.04l1.88,1.88l1.06-1.06L2.22,2.22z M3.5,15.5V5.62L5,7.12V10h2.88l1,1H5v3h4 v-2.88l1,1V14h1.88l1.5,1.5H3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_right\": {\n    \"name\": \"keyboard_double_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.41,6 5,7.41 9.58,12 5,16.59 6.41,18 12.41,12\\\"></polygon><polygon points=\\\"13,6 11.59,7.41 16.17,12 11.59,16.59 13,18 19,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"5.06,5 4,6.06 7.94,10 4,13.94 5.06,15 10.06,10\\\"></polygon><polygon points=\\\"11,5 9.94,6.06 13.88,10 9.94,13.94 11,15 16,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_down\": {\n    \"name\": \"keyboard_double_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,6.41 16.59,5 12,9.58 7.41,5 6,6.41 12,12.41\\\"></polygon><polygon points=\\\"18,13 16.59,11.59 12,16.17 7.41,11.59 6,13 12,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"15,5.06 13.94,4 10,7.94 6.06,4 5,5.06 10,10.06\\\"></polygon><polygon points=\\\"15,11 13.94,9.94 10,13.88 6.06,9.94 5,11 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_backspace\": {\n    \"name\": \"keyboard_backspace\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_mac\": {\n    \"name\": \"tablet_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z\\\"></path>\"\n      }\n    }\n  },\n  \"videogame_asset_off\": {\n    \"name\": \"videogame_asset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M17.5,9c0.83,0,1.5,0.67,1.5,1.5S18.33,12,17.5,12S16,11.33,16,10.5S16.67,9,17.5,9z M10.83,8H20v8h-1.17l1.87,1.87 C21.45,17.58,22,16.85,22,16V8c0-1.1-0.9-2-2-2H8.83L10.83,8z M19.78,22.61L15.17,18H4c-1.1,0-2-0.9-2-2V8 c0-0.85,0.55-1.58,1.3-1.87L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M13.17,16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M13.25,9c0-0.69,0.56-1.25,1.25-1.25S15.75,8.31,15.75,9s-0.56,1.25-1.25,1.25S13.25,9.69,13.25,9z M8.62,6.5h7.88v7h-0.88 l1.4,1.4c0.57-0.21,0.97-0.76,0.97-1.4v-7C18,5.68,17.33,5,16.5,5H7.12L8.62,6.5z M16.01,18.13L12.88,15H3.5C2.67,15,2,14.32,2,13.5 v-7c0-0.64,0.41-1.19,0.97-1.4L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M11.38,13.5l-2.75-2.75H7.55v1.75h-1.5v-1.75H4.3v-1.5 h1.75V8.17L4.38,6.5H3.5v7H11.38z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_android\": {\n    \"name\": \"tablet_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_off\": {\n    \"name\": \"watch_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7c2.76,0,5,2.24,5,5c0,0.64-0.13,1.25-0.35,1.82l1.5,1.5C18.69,14.33,19,13.2,19,12c0-2.22-1.03-4.19-2.64-5.47L15,2 H9L8.04,5.21l2.14,2.14C10.75,7.13,11.36,7,12,7z M10.49,4h3.02l0.38,1.27c-0.55-0.16-1.97-0.51-3.78,0L10.49,4z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67,5,10.8,5,12c0,2.22,1.03,4.19,2.64,5.47L9,22h6l0.96-3.21l3.82,3.82l1.41-1.41 L2.81,2.81z M13.51,20h-3.02l-0.38-1.27c0.55,0.15,1.97,0.51,3.78,0L13.51,20z M12,17c-2.76,0-5-2.24-5-5 c0-0.64,0.13-1.25,0.35-1.82l6.47,6.47C13.25,16.87,12.64,17,12,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,6.5c1.93,0,3.5,1.57,3.5,3.5c0,0.41-0.08,0.8-0.21,1.16l1.14,1.14C14.79,11.62,15,10.83,15,10 c0-1.65-0.81-3.1-2.04-4.01L12,2H8L7.25,5.13l1.59,1.59C9.2,6.58,9.59,6.5,10,6.5z M9.18,3.5h1.63l0.4,1.67 C10.83,5.07,10.42,5,10,5S9.17,5.07,8.78,5.17L9.18,3.5z\\\"></path><path d=\\\"M1.87,3.99l3.7,3.7C5.21,8.38,5,9.17,5,10c0,1.64,0.8,3.07,2.01,3.99L8,18h4l0.77-3.11l3.24,3.24l1.06-1.06L2.93,2.93 L1.87,3.99z M10.83,16.5H9.17l-0.41-1.67C9.16,14.93,9.57,15,10,15s0.84-0.07,1.24-0.17L10.83,16.5z M6.71,8.84l4.45,4.45 C10.8,13.42,10.41,13.5,10,13.5c-1.93,0-3.5-1.57-3.5-3.5C6.5,9.59,6.58,9.2,6.71,8.84z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_hide\": {\n    \"name\": \"keyboard_hide\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17 4-4H8z\\\"></path>\"\n      }\n    }\n  },\n  \"home_max\": {\n    \"name\": \"home_max\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M19,5H5C2.79,5,1,6.79,1,9v5c0,2.21,1.79,4,4,4h2v1h10v-1h2c2.21,0,4-1.79,4-4V9C23,6.79,21.21,5,19,5z M21,14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_return\": {\n    \"name\": \"keyboard_return\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"computer\": {\n    \"name\": \"computer\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"memory\": {\n    \"name\": \"memory\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_capslock\": {\n    \"name\": \"keyboard_capslock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"tv\": {\n    \"name\": \"tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"adf_scanner\": {\n    \"name\": \"adf_scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,12h-1V4H6v8H5c-1.66,0-3,1.34-3,3v5h20v-5C22,13.34,20.66,12,19,12z M8,6h8v6H8V6z M20,18H4v-3c0-0.55,0.45-1,1-1h14 c0.55,0,1,0.45,1,1V18z\\\"></path><circle cx=\\\"18\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M16,9.5h-1V4H5v5.5H4c-1.1,0-2,0.9-2,2V16h16v-4.5C18,10.4,17.1,9.5,16,9.5z M6.5,5.5h7v4h-7V5.5z M16.5,14.5h-13V11h13 V14.5z\\\"></path></g><g><circle cx=\\\"14.75\\\" cy=\\\"12.75\\\" r=\\\".75\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"laptop\": {\n    \"name\": \"laptop\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"laptop_chromebook\": {\n    \"name\": \"laptop_chromebook\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_group\": {\n    \"name\": \"speaker_group\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_iphone\": {\n    \"name\": \"phone_iphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard\": {\n    \"name\": \"keyboard\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 7v10H4V7h16m0-2H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker\": {\n    \"name\": \"speaker\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-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>\"\n      }\n    }\n  },\n  \"gamepad\": {\n    \"name\": \"gamepad\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_up\": {\n    \"name\": \"keyboard_double_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6,17.59 7.41,19 12,14.42 16.59,19 18,17.59 12,11.59\\\"></polygon><polygon points=\\\"6,11 7.41,12.41 12,7.83 16.59,12.41 18,11 12,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"5,14.94 6.06,16 10,12.06 13.94,16 15,14.94 10,9.94\\\"></polygon><polygon points=\\\"5,9 6.06,10.06 10,6.12 13.94,10.06 15,9 10,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"watch\": {\n    \"name\": \"watch\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.31 2l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2h4.61m.41 17.52L14.31 22H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48M16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27L16 0zm-4 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_not_supported\": {\n    \"name\": \"browser_not_supported\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z\\\"></path><path d=\\\"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,5v8.59l1,1V5c0-0.55-0.45-1-1-1H5.41l1,1H15z\\\"></path><path d=\\\"M3.64,3.64L2.93,4.34L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.07,1.07l0.71-0.71L3.64,3.64z M5,15V6.41L13.59,15H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dock\": {\n    \"name\": \"dock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"device_hub\": {\n    \"name\": \"device_hub\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds_battery\": {\n    \"name\": \"earbuds_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z M14,9.38C14,7.51,12.49,6,10.62,6S7.25,7.51,7.25,9.38v5.25c0,1.04-0.84,1.88-1.88,1.88S3.5,15.66,3.5,14.62v-4.7 C3.66,9.97,3.83,10,4,10c1.1,0,2-0.9,2-2S5.1,6,4,6S2,6.9,2,8c0,0.04,0,6.62,0,6.62C2,16.49,3.51,18,5.38,18s3.38-1.51,3.38-3.38 V9.38c0-1.04,0.84-1.88,1.88-1.88s1.88,0.84,1.88,1.88v4.7C12.34,14.03,12.17,14,12,14c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 C14,15.96,14,9.38,14,9.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headphones\": {\n    \"name\": \"headphones\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,3c-4.97,0-9,4.03-9,9v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-3.87,3.13-7,7-7s7,3.13,7,7v1h-4v8h4c1.1,0,2-0.9,2-2v-7 C21,7.03,16.97,3,12,3z M7,15v4H5v-4H7z M19,19h-2v-4h2V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"headphones_battery\": {\n    \"name\": \"headphones_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z\\\"></path><path d=\\\"M8,6c-3.31,0-6,2.69-6,6v4c0,1.1,0.9,2,2,2h2v-5H3.5v-1c0-2.48,2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5v1H10v5h2 c1.1,0,2-0.9,2-2v-4C14,8.69,11.31,6,8,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"start\": {\n    \"name\": \"start\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6-6l-6-6L14.59,7.41z M2,6v12h2V6H2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M2.5,5v10H4V5H2.5z M17.5,10l-4,4l-1.06-1.06l2.19-2.19H5.5v-1.5h9.13l-2.19-2.19L13.5,6L17.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_windows\": {\n    \"name\": \"desktop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"toys\": {\n    \"name\": \"toys\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.75,10.08L17.4,6.05C17,4.82,15.85,4,14.56,4H9.44C8.15,4,7,4.82,6.6,6.05L5.81,8.4L4.41,7l0.29-0.29 c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2,2c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L3,8.41 l1.79,1.79C3.18,10.72,2,12.22,2,14c0,1.49,0.83,2.78,2.05,3.47C4.27,18.9,5.51,20,7,20c1.3,0,2.4-0.84,2.82-2h4.37 c0.41,1.16,1.51,2,2.82,2c1.49,0,2.73-1.1,2.95-2.53C21.17,16.78,22,15.49,22,14C22,12.05,20.6,10.43,18.75,10.08z M13,6h1.56 c0.43,0,0.81,0.27,0.95,0.68L16.61,10H13V6z M8.49,6.68C8.63,6.27,9.01,6,9.44,6H11v4H7.41L7.39,9.98L8.49,6.68z M7,18 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,18,7,18z M17,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,18,17,18z M19.49,15.32C18.95,14.53,18.03,14,17,14c-1.3,0-2.4,0.84-2.82,2H9.82C9.4,14.84,8.3,14,7,14c-1.03,0-1.95,0.53-2.49,1.32 C4.2,14.97,4,14.51,4,14c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2C20,14.51,19.8,14.97,19.49,15.32z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.55,8.53l-0.83-2.49c-0.31-0.92-1.17-1.54-2.13-1.54H8.41c-0.97,0-1.83,0.62-2.13,1.54L5.73,7.67l-1-1l0.15-0.15 c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L2.47,6.82c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.14-0.14 l0.99,0.99C3.69,9.15,3,10.12,3,11.25c0,0.98,0.51,1.83,1.28,2.32c0.16,1.09,1.09,1.93,2.22,1.93c0.98,0,1.8-0.63,2.11-1.5h2.78 c0.31,0.87,1.14,1.5,2.11,1.5c1.13,0,2.06-0.84,2.22-1.93c0.77-0.49,1.28-1.34,1.28-2.32C17,9.84,15.92,8.68,14.55,8.53z M10.75,6 h0.84c0.32,0,0.61,0.21,0.71,0.51l0.66,1.99h-2.21V6z M7.7,6.51C7.81,6.21,8.09,6,8.41,6h0.84v2.5H7.04L7.7,6.51z M6.5,14 c-0.41,0-0.75-0.34-0.75-0.75S6.09,12.5,6.5,12.5s0.75,0.34,0.75,0.75S6.91,14,6.5,14z M13.5,14c-0.41,0-0.75-0.34-0.75-0.75 s0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75S13.91,14,13.5,14z M15.29,11.9c-0.41-0.54-1.06-0.9-1.79-0.9c-0.98,0-1.8,0.63-2.11,1.5 H8.61C8.3,11.63,7.48,11,6.5,11c-0.73,0-1.38,0.36-1.79,0.9c-0.12-0.19-0.21-0.41-0.21-0.65C4.5,10.56,5.06,10,5.75,10h8.5 c0.69,0,1.25,0.56,1.25,1.25C15.5,11.49,15.41,11.71,15.29,11.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_board\": {\n    \"name\": \"developer_board\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"home_mini\": {\n    \"name\": \"home_mini\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,5C4.19,5,2,9.48,2,12c0,3.86,3.13,7,6.99,7h6.02c2.69,0,6.99-2.08,6.99-7C22,12,22,5,12,5z M12,7c7.64,0,7.99,4.51,8,5 H4C4,11.8,4.09,7,12,7z M14.86,17H9.14c-2.1,0-3.92-1.24-4.71-3h15.15C18.78,15.76,16.96,17,14.86,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_control_key\": {\n    \"name\": \"keyboard_control_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"5,12 6.41,13.41 12,7.83 17.59,13.41 19,12 12,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"5,10 6.06,11.06 10,7.12 13.94,11.06 15,10 10,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"connected_tv\": {\n    \"name\": \"connected_tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4c1.1,0,1.99-0.9,1.99-2L22,5C22,3.9,21.1,3,20,3z M20,17H4V5h16V17 z M5,14v2h2C7,14.89,6.11,14,5,14z M5,11v1.43c1.97,0,3.57,1.6,3.57,3.57H10C10,13.24,7.76,11,5,11z M5,8v1.45 c3.61,0,6.55,2.93,6.55,6.55H13C13,11.58,9.41,8,5,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_down\": {\n    \"name\": \"keyboard_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_connected\": {\n    \"name\": \"cast_connected\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v2h12v6h-3v2h5V7z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_mac\": {\n    \"name\": \"desktop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_display\": {\n    \"name\": \"smart_display\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><polygon points=\\\"9.5,7.5 9.5,16.5 16.5,12\\\"></polygon><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18.01H4V5.99h16V18.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"point_of_sale\": {\n    \"name\": \"point_of_sale\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,3H6C5.45,3,5,3.45,5,4v1c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V4C15,3.45,14.55,3,14,3z M14,5H6V4h8V5z M16,17H4 c-0.55,0-1-0.45-1-1l0,0l0-1h14v1l0,0C17,16.55,16.55,17,16,17z M14.26,7.61C14.1,7.24,13.74,7,13.34,7H6.66 C6.26,7,5.9,7.24,5.74,7.61L3,14h14L14.26,7.61z M7.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,12.78,8.03,13,7.75,13z M7.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5S6.97,10,7.25,10h0.5 c0.28,0,0.5,0.22,0.5,0.5S8.03,11,7.75,11z M7.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,8.78,8.03,9,7.75,9z M10.25,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,12,9.75,12h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,13,10.25,13z M10.25,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C10.75,10.78,10.53,11,10.25,11z M10.25,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,8,9.75,8h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,9,10.25,9z M12.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,13,12.75,13z M12.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 C13.25,10.78,13.03,11,12.75,11z M12.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S11.97,8,12.25,8h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,9,12.75,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"scanner\": {\n    \"name\": \"scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_off\": {\n    \"name\": \"phonelink_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6V4H7.39l2 2zm2 13V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM2.06 1.51L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z\\\"></path>\"\n      }\n    }\n  },\n  \"power_input\": {\n    \"name\": \"power_input\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_android\": {\n    \"name\": \"phone_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm1 17H7V4h10v14zm-3 3h-4v-1h4v1z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_updated\": {\n    \"name\": \"browser_updated\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M22,13v3c0,1.1-0.9,2-2,2h-3l1,1v2H6v-2l1-1H4c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2l8,0v2L4,5v11h16v-3H22z M15,15l-5-5 l1.41-1.41L14,11.17V3h2v8.17l2.59-2.58L20,10L15,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M18,10.5v3c0,0.83-0.67,1.5-1.5,1.5H13l1,1v1H6v-1l1-1H3.5C2.67,15,2,14.33,2,13.5v-9C2,3.67,2.67,3,3.5,3h6.75v1.5H3.5v9 h13v-3H18z M16.5,9l-1.06-1.06l-2.19,2.19V3h-1.5v7.13L9.56,7.94L8.5,9l4,4L16.5,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_alt\": {\n    \"name\": \"keyboard_alt\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M21,4H3C1.9,4,1,4.9,1,6v13c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M21,19H3V6h18V19z M9,8h2v2H9V8z M5,8h2v2H5V8z M8,16h8v1H8V16z M13,8h2v2h-2V8z M9,12h2v2H9V12z M5,12h2v2H5V12z M13,12h2v2h-2V12z M17,8h2v2h-2V8z M17,12h2v2 h-2V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headset\": {\n    \"name\": \"headset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 14v3c0 .55-.45 1-1 1h-1v-4h2M7 14v4H6c-.55 0-1-.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_voice\": {\n    \"name\": \"keyboard_voice\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\\\"></path>\"\n      }\n    }\n  },\n  \"mouse\": {\n    \"name\": \"mouse\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-2 0h-5V3.16c2.81.47 4.96 2.9 5 5.84zm-7-5.84V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_tab\": {\n    \"name\": \"keyboard_tab\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_command_key\": {\n    \"name\": \"keyboard_command_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.5,3C15.57,3,14,4.57,14,6.5V8h-4V6.5C10,4.57,8.43,3,6.5,3S3,4.57,3,6.5S4.57,10,6.5,10H8v4H6.5 C4.57,14,3,15.57,3,17.5S4.57,21,6.5,21s3.5-1.57,3.5-3.5V16h4v1.5c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S19.43,14,17.5,14H16 v-4h1.5c1.93,0,3.5-1.57,3.5-3.5S19.43,3,17.5,3L17.5,3z M16,8V6.5C16,5.67,16.67,5,17.5,5S19,5.67,19,6.5S18.33,8,17.5,8H16L16,8 z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5V8H6.5L6.5,8z M10,14v-4h4v4H10L10,14z M17.5,19c-0.83,0-1.5-0.67-1.5-1.5 V16h1.5c0.83,0,1.5,0.67,1.5,1.5S18.33,19,17.5,19L17.5,19z M6.5,19C5.67,19,5,18.33,5,17.5S5.67,16,6.5,16H8v1.5 C8,18.33,7.33,19,6.5,19L6.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14.25,11.5H13v-3h1.25C15.77,8.5,17,7.27,17,5.75S15.77,3,14.25,3S11.5,4.23,11.5,5.75V7h-3V5.75C8.5,4.23,7.27,3,5.75,3 S3,4.23,3,5.75S4.23,8.5,5.75,8.5H7v3H5.75C4.23,11.5,3,12.73,3,14.25S4.23,17,5.75,17s2.75-1.23,2.75-2.75V13h3v1.25 c0,1.52,1.23,2.75,2.75,2.75S17,15.77,17,14.25S15.77,11.5,14.25,11.5z M13,5.75c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S14.94,7,14.25,7H13V5.75z M5.75,7C5.06,7,4.5,6.44,4.5,5.75S5.06,4.5,5.75,4.5S7,5.06,7,5.75V7H5.75z M7,14.25 c0,0.69-0.56,1.25-1.25,1.25c-0.69,0-1.25-0.56-1.25-1.25S5.06,13,5.75,13H7h0V14.25z M8.5,11.5L8.5,11.5l0-3h3v3H8.5z M14.25,15.5 c-0.69,0-1.25-0.56-1.25-1.25V13h1.25c0.69,0,1.25,0.56,1.25,1.25S14.94,15.5,14.25,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop_mac\": {\n    \"name\": \"laptop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"router\": {\n    \"name\": \"router\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_off\": {\n    \"name\": \"headset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,4c3.87,0,7,3.13,7,7v1h-4v0.17L16.83,14H19v2.17l2,2V11c0-4.97-4.03-9-9-9C9.98,2,8.12,2.67,6.62,3.8l1.43,1.43 C9.17,4.45,10.53,4,12,4z\\\"></path><path d=\\\"M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09,3,9.5,3,11v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-0.94,0.19-1.83,0.52-2.65L15,17.83V20 h2.17l1,1H12v2h7c0.34,0,0.65-0.09,0.93-0.24l0.55,0.55l1.41-1.41L2.1,2.1z M7,14v4H5v-4H7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"monitor\": {\n    \"name\": \"monitor\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v11c0,1.1,0.9,2,2,2h3l-1,1v2h12v-2l-1-1h3c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,16H4V5h16 V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"devices_other\": {\n    \"name\": \"devices_other\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_up\": {\n    \"name\": \"keyboard_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_left\": {\n    \"name\": \"keyboard_double_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.59,18 19,16.59 14.42,12 19,7.41 17.59,6 11.59,12\\\"></polygon><polygon points=\\\"11,18 12.41,16.59 7.83,12 12.41,7.41 11,6 5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"14.94,15 16,13.94 12.06,10 16,6.06 14.94,5 9.94,10\\\"></polygon><polygon points=\\\"9,15 10.06,13.94 6.12,10 10.06,6.06 9,5 4,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_right\": {\n    \"name\": \"keyboard_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink\": {\n    \"name\": \"phonelink\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_left\": {\n    \"name\": \"keyboard_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3_select\": {\n    \"name\": \"timer_3_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,11v2h-4v1h2.5c0.83,0,1.5,0.68,1.5,1.5v2c0,0.83-0.67,1.5-1.5,1.5H15v-2h4v-1h-2.5c-0.82,0-1.5-0.68-1.5-1.5v-2 c0-0.82,0.68-1.5,1.5-1.5H21z M4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1 V8c0-1.66-1.34-3-3-3H4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_no_sim\": {\n    \"name\": \"signal_cellular_no_sim\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z\\\"></path>\"\n      }\n    }\n  },\n  \"data_usage\": {\n    \"name\": \"data_usage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"mobiledata_off\": {\n    \"name\": \"mobiledata_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"16,6.82 17.59,8.41 19,7 15,3 11,7 12.41,8.41 14,6.82 14,11.17 16,13.17\\\"></polygon><polygon points=\\\"1.39,4.22 8,10.83 8,17.18 6.41,15.59 5,17 9,21 13,17 11.59,15.59 10,17.18 10,12.83 19.78,22.61 21.19,21.19 2.81,2.81\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"battery_full\": {\n    \"name\": \"battery_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_0_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M18,20v2H2L22,2v6h-2V6.83L6.83,20H18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,9v6H18V9H16.5z M2,18h13v-1.5H5.62L16.5,5.62V7.5H18V2L2,18z M18,18h-1.5v-1.5H18V18z\\\"></path>\"\n      }\n    }\n  },\n  \"graphic_eq\": {\n    \"name\": \"graphic_eq\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_friendly\": {\n    \"name\": \"mobile_friendly\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_off\": {\n    \"name\": \"media_bluetooth_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,6.17V3h6v4h-4v1.17L9,6.17z M19.42,15L22,17.57l-0.8,0.8l-6.78-6.78l0.8-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15z M19.17,13.55l1.13-1.13l-1.13-1.13V13.55z M21.19,21.19l-1.41,1.41l-3.98-3.98l-0.58,0.58l-0.85-0.85l0.58-0.58L11,13.83V17 c0,2.21-1.78,4-3.99,4S3,19.21,3,17s1.79-4,4.01-4c0.73,0,1.41,0.21,2,0.55v-1.72L1.39,4.22L2.8,2.81L21.19,21.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_2_bar\": {\n    \"name\": \"network_wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M16.78,13.38C15.4,12.5,13.76,12,12,12 c-1.76,0-3.4,0.5-4.78,1.38l-4.3-4.3C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L16.78,13.38z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M6.36,11.25L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5 c2.83,0,5.54,0.91,7.79,2.6l-4.15,4.15C12.58,10.43,11.33,10,10,10C8.67,10,7.42,10.43,6.36,11.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bloodtype\": {\n    \"name\": \"bloodtype\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"16\\\"></rect><polygon points=\\\"13,9 11,9 11,11 9,11 9,13 11,13 11,15 13,15 13,13 15,13 15,11 13,11\\\"></polygon><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20 c-3.35,0-6-2.57-6-6.2c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"medication_liquid\": {\n    \"name\": \"medication_liquid\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><path d=\\\"M2,21h14V6H2V21z M5,12h2.5V9.5h3V12H13v3h-2.5v2.5h-3V15H5V12z\\\"></path><path d=\\\"M20,6c-1.68,0-3,1.76-3,4c0,1.77,0.83,3.22,2,3.76V21h2v-7.24c1.17-0.54,2-1.99,2-3.76C23,7.76,21.68,6,20,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><path d=\\\"M2,17h11V5.5H2V17z M4.5,10h2V8h2v2h2v2h-2v2h-2v-2h-2V10z\\\"></path><path d=\\\"M16.5,5.5c-1.38,0-2.5,1.46-2.5,3.25c0,1.45,0.74,2.67,1.75,3.08V17h1.5v-5.17C18.26,11.42,19,10.2,19,8.75 C19,6.96,17.88,5.5,16.5,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dark_mode\": {\n    \"name\": \"dark_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27C17.45,17.19,14.93,19,12,19 c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36 c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.04,4.86C7.88,5.39,7.8,5.94,7.8,6.5c0,3.14,2.56,5.7,5.7,5.7c0.56,0,1.11-0.08,1.64-0.24c-0.79,2.07-2.8,3.54-5.14,3.54 c-3.03,0-5.5-2.47-5.5-5.5C4.5,7.66,5.97,5.65,8.04,4.86z M10,3c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7 c0-0.36-0.03-0.72-0.08-1.06C16.16,10,14.91,10.7,13.5,10.7c-2.32,0-4.2-1.88-4.2-4.2c0-1.41,0.7-2.66,1.76-3.42 C10.72,3.03,10.36,3,10,3L10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"reset_tv\": {\n    \"name\": \"reset_tv\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,8V5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4c1.1,0,1.99-0.9,1.99-2v-5H22c0-1.1-0.9-2-2-2 h-7.17l1.83-1.83l-1.41-1.41C9.69,10.31,10.88,9.12,9,11c2.06,2.06,0.9,0.9,4.24,4.24l1.41-1.41L12.83,12H20v5H4V5h16v3H22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_1_bar\": {\n    \"name\": \"signal_cellular_alt_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,14h3v6H5V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M5,16h2v-5H5V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airplane_ticket\": {\n    \"name\": \"airplane_ticket\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20.19,4H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6 C22,4.9,21.19,4,20.19,4z M20,18H4v-2.54c1.19-0.69,2-1.99,2-3.46c0-1.48-0.8-2.77-1.99-3.46L4,6h16V18z M8.87,15.66l-1.66-2.88 l0.93-0.25l1.26,0.99l2.39-0.64l-2.4-4.16l1.4-0.38l4.01,3.74l2.44-0.65c0.51-0.14,1.04,0.17,1.18,0.68 c0.13,0.51-0.17,1.04-0.69,1.19L8.87,15.66z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth\": {\n    \"name\": \"bluetooth\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_nodata\": {\n    \"name\": \"signal_cellular_nodata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,13h-9v9H2L22,2V13z M21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21 L21,19.59l-2.08-2.09L21,15.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_inactive\": {\n    \"name\": \"airplanemode_inactive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M13.12,11.71L9,7.59V4c0-0.55,0.45-1,1-1s1,0.45,1,1v4l6,4v1L13.12,11.71z M17.07,17.07L2.93,2.93L2.22,3.64l5.33,5.33 L3,12v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-2.59l5.36,5.36L17.07,17.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_auto\": {\n    \"name\": \"brightness_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z\\\"></path>\"\n      }\n    }\n  },\n  \"device_thermostat\": {\n    \"name\": \"device_thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,13V5c0-1.66-1.34-3-3-3S9,3.34,9,5v8c-1.21,0.91-2,2.37-2,4c0,2.76,2.24,5,5,5s5-2.24,5-5C17,15.37,16.21,13.91,15,13 z M11,11V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-1v1h1v1v1h-1v1h1v1H11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_lock_rotation\": {\n    \"name\": \"screen_lock_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"dvr\": {\n    \"name\": \"dvr\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_disabled\": {\n    \"name\": \"bluetooth_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"h_mobiledata\": {\n    \"name\": \"h_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_system_daydream\": {\n    \"name\": \"settings_system_daydream\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 17H9c-2.21 0-4-1.79-4-4 0-1.93 1.36-3.56 3.22-3.92C9.04 7.8 10.47 7 12 7c1.95 0 3.66 1.28 4.26 3.09 1.58.36 2.74 1.75 2.74 3.41 0 1.93-1.57 3.5-3.5 3.5zm-6.76-5.98C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_charging_full\": {\n    \"name\": \"battery_charging_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z\\\"></path>\"\n      }\n    }\n  },\n  \"flourescent\": {\n    \"name\": \"flourescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M5,15h14V9H5V15z M7,11h10v2H7V11z\\\"></path><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"light_mode\": {\n    \"name\": \"light_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,7.5c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5S7.5,11.38,7.5,10S8.62,7.5,10,7.5z M10,6c-2.21,0-4,1.79-4,4s1.79,4,4,4 s4-1.79,4-4S12.21,6,10,6L10,6z M3.75,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2C1.34,9.25,1,9.59,1,10 s0.34,0.75,0.75,0.75H3.75z M18.25,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2c-0.41,0-0.75,0.34-0.75,0.75 s0.34,0.75,0.75,0.75H18.25z M9.25,3.75C9.25,4.16,9.59,4.5,10,4.5c0.41,0,0.75-0.34,0.75-0.75v-2C10.75,1.34,10.41,1,10,1 S9.25,1.34,9.25,1.75V3.75z M13.89,5.05c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L13.89,5.05z M3.99,14.95c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06 c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L3.99,14.95z M5.05,6.11c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 L5.05,3.99c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06L5.05,6.11z M14.95,16.01c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06L14.95,16.01z M9.25,18.25C9.25,18.66,9.59,19,10,19 c0.41,0,0.75-0.34,0.75-0.75v-2c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V18.25z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_1_bar\": {\n    \"name\": \"battery_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v12h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v9.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_password\": {\n    \"name\": \"wifi_password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M24,8.98l-2.12,2.13C19.35,8.57,15.85,7,12,7s-7.35,1.57-9.88,4.11L0,8.98C3.07,5.9,7.31,4,12,4S20.93,5.9,24,8.98z M4.24,13.22l2.12,2.12C7.8,13.9,9.8,13,12,13c2.2,0,4.2,0.9,5.64,2.35l2.12-2.12C17.78,11.23,15.03,10,12,10 C8.97,10,6.22,11.23,4.24,13.22z M24,20v3c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1v-1c0-1.1,0.9-2,2-2 s2,0.9,2,2v1C23.55,19,24,19.45,24,20z M22,18c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h2V18z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21 l3.53-3.54C14.63,16.56,13.38,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,7.01l-1.42,1.42C16.34,6.31,13.32,5,10,5S3.66,6.31,1.42,8.43L0,7.01C2.6,4.53,6.12,3,10,3C13.88,3,17.4,4.53,20,7.01 z M3.54,10.54l1.42,1.42C6.29,10.75,8.06,10,10,10c1.94,0,3.71,0.75,5.04,1.96l1.42-1.42C14.76,8.97,12.5,8,10,8 S5.24,8.97,3.54,10.54z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z M16.75,16h1.5v-1 c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V16z M20,19c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-2c0-0.55,0.45-1,1-1v-1 c0-0.82,0.67-1.5,1.5-1.5S19,14.18,19,15v1c0.55,0,1,0.45,1,1V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarm\": {\n    \"name\": \"access_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_channel\": {\n    \"name\": \"wifi_channel\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,3c-2.51,0-3.77,5.61-4.4,10.57C10.79,10.66,9.61,8,8,8C4.43,8,3,21,3,21h2.01c0.61-5.27,2-9.82,2.99-10.87 c0.98,1.05,2.38,5.61,2.99,10.87H13c0.5-2.53,2-6,3-6s2.5,3.53,3,6h2C21,21,20.5,3,16,3z M16,13c-0.99,0-1.82,0.62-2.5,1.5 c0.57-4.77,1.54-8.62,2.5-9.44c0.97,0.81,1.91,4.67,2.49,9.43C17.81,13.62,16.98,13,16,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13.12,3c-1.96,0-2.94,4.51-3.42,8.41C9.08,9.12,8.15,7,6.88,7C4.1,7,3,17,3,17h1.5C5,12.83,6.11,9.28,6.88,8.57 C7.64,9.28,8.75,12.83,9.25,17h1.5c0.39-1.97,1.59-4.5,2.38-4.5c0.77,0,1.99,2.58,2.38,4.5H17C17,17,16.58,3,13.12,3z M13.12,11 c-0.81,0-1.49,0.54-2.04,1.28c0.47-4.11,1.31-7.16,2.04-7.74c0.73,0.58,1.57,3.63,2.04,7.74C14.62,11.54,13.94,11,13.12,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth_drive\": {\n    \"name\": \"bluetooth_drive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"6.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M18,17H4v-5h11v-2H4.81l1.04-3H15V5H5.5C4.84,5,4.29,5.42,4.08,6.01L2,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8h-2V17z\\\"></path><path d=\\\"M22,3.85L19.15,1h-0.5v3.79l-2.3-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3-2.3V11h0.5L22,8.14L19.85,6L22,3.85z M19.65,2.91l0.94,0.94l-0.94,0.94V2.91z M20.59,8.14l-0.94,0.94V7.2L20.59,8.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edgesensor_high\": {\n    \"name\": \"edgesensor_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7h2v7H3V7z M0,10h2v7H0V10z M22,7h2v7h-2V7z M19,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8 c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M8,5V4h8v1H8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_0_bar\": {\n    \"name\": \"signal_wifi_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"note_alt\": {\n    \"name\": \"note_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5 V5h14V19z\\\"></path><polygon points=\\\"15.08,11.03 12.96,8.91 7,14.86 7,17 9.1,17\\\"></polygon><path d=\\\"M16.85,9.27c0.2-0.2,0.2-0.51,0-0.71l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12L16.85,9.27z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_maybe\": {\n    \"name\": \"gpp_maybe\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"14\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"devices_fold\": {\n    \"name\": \"devices_fold\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3h-3c0-1.44-1.47-2.4-2.79-1.84l-3,1.29C10.48,2.76,10,3.49,10,4.29V19c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M15,16.68l-3,1.29V4.29L15,3V16.68z M20,19h-5.33l1.12-0.48C16.52,18.2,17,17.48,17,16.68V5h3V19z\\\"></path><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"19\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"15\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"11\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"19\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"6.12\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"12.38\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"15.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"15.5\\\"></rect><path d=\\\"M16.5,3h-3V2.5c0-1.13-1.21-1.87-2.22-1.32l-2.5,1.36C8.3,2.81,8,3.32,8,3.87V15.5C8,16.33,8.67,17,9.5,17h7 c0.83,0,1.5-0.67,1.5-1.5v-11C18,3.67,17.33,3,16.5,3z M12,13.11l-2.5,1.36V4.5V3.87L12,2.5V13.11z M16.5,15.5h-5.75l1.97-1.07 c0.48-0.26,0.78-0.77,0.78-1.32V4.5h3V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_saver\": {\n    \"name\": \"battery_saver\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,4h-2V2h-4v2H8C7.45,4,7,4.45,7,5v16c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M15,14h-2v2h-2 v-2H9v-2h2v-2h2v2h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_4_bar\": {\n    \"name\": \"battery_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v6h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v5 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water\": {\n    \"name\": \"water\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,14H22H21.98z M5.35,13c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c1.19,0,1.4,0.98,3.31,1v-2c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1 c-1.19,0-1.42-1-3.33-1C3.38,11,3.24,12,2,12v2C3.9,14,4.17,13,5.35,13z M18.67,15c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1 c1.95,0,2.1-1,3.34-1c1.19,0,1.42,1,3.33,1c1.94,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1v-2C20.76,16,20.62,15,18.67,15z M5.35,9 c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1V8 c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1C10.04,7,9.9,8,8.66,8C7.47,8,7.24,7,5.33,7 C3.38,7,3.24,8,2,8v2C3.9,10,4.17,9,5.35,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thermostat\": {\n    \"name\": \"thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_4x4\": {\n    \"name\": \"grid_4x4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22z M7,7h4v4 H7V7z M7,17v-4h4v4H7z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt\": {\n    \"name\": \"signal_cellular_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_on_select\": {\n    \"name\": \"hdr_on_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M12,4c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4 S9.79,4,12,4 M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_null\": {\n    \"name\": \"signal_wifi_statusbar_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 c3.33,0,6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_disabled\": {\n    \"name\": \"location_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_0_bar\": {\n    \"name\": \"battery_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v14h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v11.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_2_bar\": {\n    \"name\": \"battery_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v10h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v8 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_3x3\": {\n    \"name\": \"grid_3x3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phishing\": {\n    \"name\": \"phishing\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,6.18V2h-2v4.18C13.84,6.6,13,7.7,13,9s0.84,2.4,2,2.82V15c0,2.21-1.79,4-4,4s-4-1.79-4-4v-1.17l1.59,1.59L10,14L5,9v6 c0,3.31,2.69,6,6,6s6-2.69,6-6v-3.18c1.16-0.41,2-1.51,2-2.82S18.16,6.6,17,6.18z M16,10c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S16.55,10,16,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13,5.39V2h-1.5v3.39C10.63,5.7,10,6.52,10,7.5c0,0.98,0.63,1.8,1.5,2.11V13c0,1.38-1.12,2.5-2.5,2.5S6.5,14.38,6.5,13 v-1.38L7.94,13L9,11.94L5,8v5c0,2.21,1.79,4,4,4s4-1.79,4-4V9.61c0.87-0.31,1.5-1.13,1.5-2.11C14.5,6.52,13.87,5.7,13,5.39z M12.25,8.25c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75C12.66,6.75,13,7.09,13,7.5C13,7.91,12.66,8.25,12.25,8.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_4_bar\": {\n    \"name\": \"signal_cellular_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 22h20V2L2 22z\\\"></path>\"\n      }\n    }\n  },\n  \"devices\": {\n    \"name\": \"devices\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error_rounded\": {\n    \"name\": \"wifi_tethering_error_rounded\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_not_disturb_on_total_silence\": {\n    \"name\": \"do_not_disturb_on_total_silence\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.4,6,12,6z M15,13H9v-2h6V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_connected\": {\n    \"name\": \"bluetooth_connected\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_security_update\": {\n    \"name\": \"system_security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M7,4V3h10v1H7z M16,12l-4,4l-4-4l1.41-1.41L11,12.17V8h2v4.17l1.59-1.59L16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mobile_off\": {\n    \"name\": \"mobile_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z\\\"></path>\"\n      }\n    }\n  },\n  \"network_wifi_3_bar\": {\n    \"name\": \"network_wifi_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-2.85,2.86C16.46,10.71,14.31,10,12,10c-2.31,0-4.46,0.71-6.23,1.93L2.92,9.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M14.71,10.18C13.35,9.08,11.73,8.5,10,8.5 c-1.73,0-3.35,0.58-4.71,1.68L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L14.71,10.18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_standby\": {\n    \"name\": \"mode_standby\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,10.34,15,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_bad\": {\n    \"name\": \"signal_wifi_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"discount\": {\n    \"name\": \"discount\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12.79,21L3,11.21v2c0,0.53,0.21,1.04,0.59,1.41l7.79,7.79c0.78,0.78,2.05,0.78,2.83,0l6.21-6.21 c0.78-0.78,0.78-2.05,0-2.83L12.79,21z\\\"></path><path d=\\\"M11.38,17.41c0.39,0.39,0.9,0.59,1.41,0.59c0.51,0,1.02-0.2,1.41-0.59l6.21-6.21c0.78-0.78,0.78-2.05,0-2.83l-7.79-7.79 C12.25,0.21,11.74,0,11.21,0H5C3.9,0,3,0.9,3,2v6.21c0,0.53,0.21,1.04,0.59,1.41L11.38,17.41z M5,2h6.21L19,9.79L12.79,16L5,8.21 V2z\\\"></path><circle cx=\\\"7.25\\\" cy=\\\"4.25\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.56,11.53l-5.97,5.97L3,9.91v1.5c0,0.4,0.16,0.78,0.44,1.06l6.09,6.09C9.82,18.85,10.21,19,10.59,19 c0.38,0,0.77-0.15,1.06-0.44l4.91-4.91C17.15,13.07,17.15,12.12,16.56,11.53L16.56,11.53z\\\"></path><path d=\\\"M9.53,14.56C9.82,14.85,10.21,15,10.59,15c0.38,0,0.77-0.15,1.06-0.44l4.91-4.91c0.59-0.59,0.59-1.54,0-2.12l-6.09-6.09 C10.19,1.16,9.81,1,9.41,1H4.5C3.67,1,3,1.67,3,2.5v4.91c0,0.4,0.16,0.78,0.44,1.06L9.53,14.56z M4.5,2.5h4.91l6.09,6.09 l-4.91,4.91L4.5,7.41V2.5z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"4.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"battery_std\": {\n    \"name\": \"battery_std\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"widgets\": {\n    \"name\": \"widgets\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.66 4.52l2.83 2.83-2.83 2.83-2.83-2.83 2.83-2.83M9 5v4H5V5h4m10 10v4h-4v-4h4M9 15v4H5v-4h4m7.66-13.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65zM11 3H3v8h8V3zm10 10h-8v8h8v-8zm-10 0H3v8h8v-8z\\\"></path>\"\n      }\n    }\n  },\n  \"flashlight_off\": {\n    \"name\": \"flashlight_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41-1.41L2.81,2.81z M14,20h-4v-7.17l4,4V20z\\\"></path><polygon points=\\\"16,4 16,5 7.83,5 9.83,7 16,7 16,7.39 14,10.4 14,11.17 16,13.17 16,11 18,8 18,2 6,2 6,3.17 6.83,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_warning\": {\n    \"name\": \"system_security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"task\": {\n    \"name\": \"task\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z M8.82,13.05 L7.4,14.46L10.94,18l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,13.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"share_location\": {\n    \"name\": \"share_location\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.02,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.42-1.43C15.81,19.17,14.48,19.75,13.02,19.93z\\\"></path><path d=\\\"M4.03,12c0-4.05,3.03-7.41,6.95-7.93V2.05C5.95,2.58,2.03,6.84,2.03,12c0,5.16,3.92,9.42,8.95,9.95v-2.02 C7.06,19.41,4.03,16.05,4.03,12z\\\"></path><path d=\\\"M19.95,11h2.02c-0.2-2.01-1-3.84-2.21-5.32l-1.43,1.43C19.19,8.21,19.77,9.54,19.95,11z\\\"></path><path d=\\\"M18.34,4.26c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.34,4.26z\\\"></path><path d=\\\"M18.33,16.9l1.43,1.42c1.21-1.48,2.01-3.31,2.21-5.32h-2.02C19.77,14.46,19.19,15.79,18.33,16.9z\\\"></path><path d=\\\"M16,11.1C16,8.61,14.1,7,12,7s-4,1.61-4,4.1c0,1.66,1.33,3.63,4,5.9C14.67,14.73,16,12.76,16,11.1z M12,12 c-0.59,0-1.07-0.48-1.07-1.07c0-0.59,0.48-1.07,1.07-1.07s1.07,0.48,1.07,1.07C13.07,11.52,12.59,12,12,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"password\": {\n    \"name\": \"password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,17h20v2H2V17z M3.15,12.95L4,11.47l0.85,1.48l1.3-0.75L5.3,10.72H7v-1.5H5.3l0.85-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75 L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95z M9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H15v-1.5h-1.7l0.85-1.47 L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2z M23,9.22h-1.7l0.85-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75 l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H23V9.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update\": {\n    \"name\": \"security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M7,4V3h10v1H7z M16,12l-4,4l-4-4l1.41-1.41L11,12.17V8h2v4.17l1.59-1.59L16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_mode\": {\n    \"name\": \"developer_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"screenshot\": {\n    \"name\": \"screenshot\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M9.5,8.5H12V7H8v4h1.5V8.5z M12,17h4v-4h-1.5v2.5H12V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_2_bar\": {\n    \"name\": \"signal_cellular_alt_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,14h3v6H5V14z M11,9h3v11h-3V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M9,8h2v8H9V8z M5,16h2v-5H5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dataset\": {\n    \"name\": \"dataset\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"13\\\"></rect></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"7\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"11\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"11\\\"></rect></g><g><path d=\\\"M3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"6\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"sports_score\": {\n    \"name\": \"sports_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,6H9V4h2V6z M15,4h-2v2h2V4z M9,14h2v-2H9V14z M19,10V8h-2v2H19z M19,14v-2h-2v2H19z M13,14h2v-2h-2V14z M19,4h-2v2h2 V4z M13,8V6h-2v2H13z M7,10V8h2V6H7V4H5v16h2v-8h2v-2H7z M15,12h2v-2h-2V12z M11,10v2h2v-2H11z M9,8v2h2V8H9z M13,10h2V8h-2V10z M15,6v2h2V6H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation\": {\n    \"name\": \"screen_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto\": {\n    \"name\": \"hdr_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z M11.01,6L6.88,17h1.9l1-2.81h4.44L15.21,17h1.9L12.98,6H11.01z M10.35,12.59l1.6-4.55h0.09 l1.6,4.55H10.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flashlight_on\": {\n    \"name\": \"flashlight_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,2H6v6l2,3v11h8V11l2-3V2z M16,4v1H8V4H16z M14,10.4V20h-4v-9.61l-2-3V7h8v0.39L14,10.4z\\\"></path><circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"gps_fixed\": {\n    \"name\": \"gps_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error\": {\n    \"name\": \"wifi_tethering_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><circle cx=\\\"10\\\" cy=\\\"11\\\" r=\\\"1.5\\\"></circle><path d=\\\"M10,6c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,12.84,6.5,11.96,6.5,11c0-1.93,1.57-3.5,3.5-3.5 s3.5,1.57,3.5,3.5c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,13.63,15,12.38,15,11C15,8.24,12.76,6,10,6z\\\"></path><path d=\\\"M10,3c-4.42,0-8,3.58-8,8c0,2.21,0.9,4.21,2.34,5.66l1.06-1.06C4.23,14.42,3.5,12.79,3.5,11c0-3.58,2.92-6.5,6.5-6.5 c2.3,0,4.31,1.2,5.47,3h1.72C15.89,4.84,13.16,3,10,3z\\\"></path><rect height=\\\"5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_off\": {\n    \"name\": \"signal_cellular_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_lock_portrait\": {\n    \"name\": \"screen_lock_portrait\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"pin\": {\n    \"name\": \"pin\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><polygon points=\\\"6.49,10.5 6.49,15 7.64,15 7.64,9 6.77,9 5.01,10.27 5.59,11.16\\\"></polygon><path d=\\\"M11.47,10.05c0.5,0,0.81,0.32,0.81,0.72c0,0.37-0.14,0.64-0.54,1.06c-0.36,0.38-1.06,1.08-2.13,2.15V15h3.89v-0.99h-2.37 l-0.03-0.05c0.68-0.68,1.15-1.14,1.4-1.39c0.61-0.6,0.92-1.22,0.92-1.86c0-0.24-0.05-1.04-0.91-1.48C12.04,9,11.25,8.87,10.56,9.2 c-0.82,0.39-0.99,1.13-1,1.15l1.01,0.42C10.67,10.44,10.95,10.05,11.47,10.05z\\\"></path><path d=\\\"M16.99,13.94c-0.83,0-0.99-0.76-1.02-0.86l-1.03,0.41c0.45,1.59,2.01,1.51,2.05,1.51c1.2,0,1.68-0.72,1.76-0.85 c0.32-0.49,0.36-1.24-0.01-1.76c-0.17-0.24-0.4-0.41-0.68-0.52V11.8c0.2-0.1,0.37-0.26,0.52-0.48c0.26-0.41,0.31-1.07-0.02-1.57 C18.48,9.64,18.03,9,16.94,9c-1.26,0-1.74,0.9-1.85,1.24l0.99,0.41c0.11-0.32,0.35-0.64,0.85-0.64c0.44,0,0.75,0.26,0.75,0.65 c0,0.58-0.55,0.72-0.88,0.72h-0.46v1h0.5c0.56,0,1.04,0.24,1.04,0.79C17.88,13.66,17.4,13.94,16.99,13.94z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"4g_mobiledata\": {\n    \"name\": \"4g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7z M17,11v2h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5 c1.1,0,2-0.9,2-2v-4H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_to_home_screen\": {\n    \"name\": \"add_to_home_screen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z\\\"></path>\"\n      }\n    }\n  },\n  \"usb_off\": {\n    \"name\": \"usb_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8h4v4h-1v2c0,0.34-0.08,0.66-0.23,0.94L16,13.17V12h-1V8z M11,8.17l2,2V6h2l-3-4L9,6h2V8.17z M13,16v2.28 c0.6,0.34,1,0.98,1,1.72c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.74,0.4-1.37,1-1.72V16H8c-1.11,0-2-0.89-2-2v-2.28C5.4,11.38,5,10.74,5,10 c0-0.59,0.26-1.13,0.68-1.49L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L13.17,16H13z M11,14v-0.17l-2.51-2.51 c-0.14,0.16-0.31,0.29-0.49,0.4V14H11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,5H7.5L10,2l2.5,3h-1.75v3.63l-1.5-1.5V5z M12.5,10h0.75v1.13l1.23,1.23c0.17-0.24,0.27-0.54,0.27-0.86V10h0.75V7h-3 V10z M10.75,13v2.21c0.45,0.26,0.75,0.74,0.75,1.29c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.55,0.3-1.03,0.75-1.29V13h-2.5 c-0.83,0-1.5-0.67-1.5-1.5V9.79C4.8,9.53,4.5,9.05,4.5,8.5c0-0.51,0.26-0.96,0.65-1.23L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06 L10.88,13H10.75z M9.25,11.5v-0.13L7.23,9.35C7.1,9.53,6.94,9.68,6.75,9.79v1.71H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_1_bar\": {\n    \"name\": \"wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.53,17.46L12,21l-3.53-3.54C9.37,16.56,10.62,16,12,16S14.63,16.56,15.53,17.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,13c1.12,0,2.12,0.42,2.91,1.09L10,17l-2.91-2.91C7.88,13.42,8.88,13,10,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"summarize\": {\n    \"name\": \"summarize\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,3H5C3.9,3,3.01,3.9,3.01,5L3,19c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V9L15,3z M5,19V5h9v5h5v9H5z M9,8 c0,0.55-0.45,1-1,1S7,8.55,7,8s0.45-1,1-1S9,7.45,9,8z M9,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,11.45,9,12z M9,16 c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S9,15.45,9,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_medium\": {\n    \"name\": \"brightness_medium\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"add_alarm\": {\n    \"name\": \"add_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off_select\": {\n    \"name\": \"hdr_off_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M10.98,4.15L9.42,2.59c5.1-2.42,10.41,2.89,7.99,7.99 l-1.56-1.56C16.66,6.06,13.94,3.34,10.98,4.15z M6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1,2.89,10.41,7.99,7.99l1.66,1.66 l1.41-1.41L6.34,2.34z M8.15,6.98l4.87,4.87C10.06,12.66,7.34,9.94,8.15,6.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"send_to_mobile\": {\n    \"name\": \"send_to_mobile\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,8l4,4l-4,4l-1.41-1.41L18.17,13H13v-2h5.17l-1.59-1.59L18,8z M7,1.01L17,1c1.1,0,2,0.9,2,2v4h-2V6H7v12h10v-1h2v4 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1.01,7,1.01z M7,21h10v-1H7V21z M7,4h10V3H7V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dataset_linked\": {\n    \"name\": \"dataset_linked\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7,17h1.09c0.28-1.67,1.24-3.1,2.6-4H7V17z\\\"></path></g><g><path d=\\\"M5,19V5h14v7h1c0.34,0,0.67,0.04,1,0.09V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h3.81 c-0.35-0.61-0.6-1.28-0.72-2H5z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"7\\\"></rect></g><path d=\\\"M16,20h-2c-1.1,0-2-0.9-2-2s0.9-2,2-2h2v-2h-2c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2V20z\\\"></path><path d=\\\"M20,14h-2v2h2c1.1,0,2,0.9,2,2s-0.9,2-2,2h-2v2h2c2.21,0,4-1.79,4-4C24,15.79,22.21,14,20,14z\\\"></path><polygon points=\\\"20,19 20,17 17,17 14,17 14,19 19,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M6,11v3h0.75c0.38-1.19,1.18-2.19,2.25-2.81V11H6z\\\"></path></g><g><path d=\\\"M4.5,15.5v-11h11v6h1c0.17,0,0.33,0.03,0.5,0.05V4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v11 C3,16.33,3.67,17,4.5,17h2.25C6.6,16.52,6.5,16.03,6.5,15.5H4.5z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"6\\\"></rect></g><path d=\\\"M9.5,15.5c0-1.1,0.9-2,2-2h1.75V12H11.5C9.57,12,8,13.57,8,15.5S9.57,19,11.5,19h1.75v-1.5H11.5 C10.4,17.5,9.5,16.6,9.5,15.5z\\\"></path><path d=\\\"M16.5,12h-1.75v1.5h1.75c1.1,0,2,0.9,2,2s-0.9,2-2,2h-1.75V19h1.75c1.93,0,3.5-1.57,3.5-3.5S18.43,12,16.5,12z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4.5\\\" x=\\\"11.75\\\" y=\\\"14.75\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mode_night\": {\n    \"name\": \"mode_night\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9.5,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-0.34,0-0.68-0.02-1.01-0.07c1.91-2.16,3.01-4.98,3.01-7.93s-1.1-5.77-3.01-7.93 C8.82,4.02,9.16,4,9.5,4 M9.5,2c-1.82,0-3.53,0.5-5,1.35c2.99,1.73,5,4.95,5,8.65s-2.01,6.92-5,8.65C5.97,21.5,7.68,22,9.5,22 c5.52,0,10-4.48,10-10S15.02,2,9.5,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_4_bar\": {\n    \"name\": \"signal_wifi_statusbar_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_high\": {\n    \"name\": \"brightness_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"ad_units\": {\n    \"name\": \"ad_units\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z\\\"></path></g><g><polygon points=\\\"16,7 8,7 8,9 16,9 16,7\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"4g_plus_mobiledata\": {\n    \"name\": \"4g_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,11v2h2v2h-4V9h6c0-1.1-0.9-2-2-2h-4C9.9,7,9,7.9,9,9v6c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-4H13z M24,11h-2V9h-2v2h-2 v2h2v2h2v-2h2V11z M7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"r_mobiledata\": {\n    \"name\": \"r_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0,2,0.87,2,2v1.33C9,6.13,8.47,6.87,7.8,7.2z M7,4H4v1.33h3V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sell\": {\n    \"name\": \"sell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.41,11.41l-8.83-8.83C12.21,2.21,11.7,2,11.17,2H4C2.9,2,2,2.9,2,4v7.17c0,0.53,0.21,1.04,0.59,1.41l8.83,8.83 c0.78,0.78,2.05,0.78,2.83,0l7.17-7.17C22.2,13.46,22.2,12.2,21.41,11.41z M12.83,20L4,11.17V4h7.17L20,12.83L12.83,20z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"play_lesson\": {\n    \"name\": \"play_lesson\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,20V4h2v7l2.5-1.5L12,11V4h5v7.08c0.33-0.05,0.66-0.08,1-0.08s0.67,0.03,1,0.08V4c0-1.1-0.9-2-2-2H5C3.9,2,3,2.9,3,4v16 c0,1.1,0.9,2,2,2h7.26c-0.42-0.6-0.75-1.28-0.97-2H5z M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M16.75,20.5v-5l4,2.5L16.75,20.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_2_bar\": {\n    \"name\": \"wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,10c3.03,0,5.78,1.23,7.76,3.22l-2.12,2.12C16.2,13.9,14.2,13,12,13c-2.2,0-4.2,0.9-5.64,2.35l-2.12-2.12 C6.22,11.23,8.97,10,12,10z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21l3.53-3.54C14.63,16.56,13.38,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,8c2.5,0,4.76,0.97,6.46,2.54l-1.42,1.42C13.71,10.75,11.94,10,10,10c-1.94,0-3.71,0.75-5.04,1.96l-1.42-1.42 C5.24,8.97,7.5,8,10,8z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_null\": {\n    \"name\": \"signal_cellular_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling_3\": {\n    \"name\": \"wifi_calling_3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.49,4.5c1.79,0,3.42,0.73,4.59,1.91l1.06-1.06C20.7,3.9,18.7,3,16.49,3c-2.21,0-4.21,0.9-5.66,2.34l1.06,1.06 C13.08,5.23,14.7,4.5,16.49,4.5z\\\"></path><path d=\\\"M16.49,6c-1.38,0-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03s1.84,0.39,2.47,1.03l1.06-1.06 C19.12,6.56,17.87,6,16.49,6z\\\"></path><path d=\\\"M16.49,9c-0.55,0-1.05,0.22-1.41,0.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9z\\\"></path><path d=\\\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15C21,15.37,20.66,14.96,20.2,14.87 z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07l1.65-1.63L19,16.67V18.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pattern\": {\n    \"name\": \"pattern\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,8 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M18,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S19.1,10,18,10z M17.98,16 c-0.74,0-1.37,0.4-1.72,1h-2.54c-0.34-0.6-0.98-1-1.72-1s-1.37,0.4-1.72,1H8.41l3.07-3.07C11.65,13.97,11.82,14,12,14 c1.1,0,2-0.9,2-2c0-0.18-0.03-0.35-0.07-0.51l3.56-3.56C17.65,7.97,17.82,8,18,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56C12.35,10.03,12.18,10,12,10c-1.1,0-2,0.9-2,2c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56 C6.35,16.03,6.18,16,6,16c-1.1,0-2,0.9-2,2s0.9,2,2,2c0.74,0,1.37-0.4,1.72-1h2.57c0.34,0.6,0.98,1,1.72,1s1.37-0.4,1.72-1h2.55 c0.34,0.6,0.98,1,1.72,1c1.1,0,2-0.9,2-2C19.98,16.9,19.08,16,17.98,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"reviews\": {\n    \"name\": \"reviews\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\\\"></path><polygon points=\\\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"security_update_good\": {\n    \"name\": \"security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"quiz\": {\n    \"name\": \"quiz\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M13.51,10.16c0.41-0.73,1.18-1.16,1.63-1.8c0.48-0.68,0.21-1.94-1.14-1.94 c-0.88,0-1.32,0.67-1.5,1.23l-1.37-0.57C11.51,5.96,12.52,5,13.99,5c1.23,0,2.08,0.56,2.51,1.26c0.37,0.6,0.58,1.73,0.01,2.57 c-0.63,0.93-1.23,1.21-1.56,1.81c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52C13.26,11.41,13.19,10.74,13.51,10.16z M12.95,13.95 c0-0.59,0.47-1.04,1.05-1.04c0.59,0,1.04,0.45,1.04,1.04c0,0.58-0.44,1.05-1.04,1.05C13.42,15,12.95,14.53,12.95,13.95z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airplanemode_active\": {\n    \"name\": \"airplanemode_active\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_off\": {\n    \"name\": \"nearby_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.41,13.42L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58-2.58c0.78-0.78,2.05-0.78,2.83,0l8,8 C22.2,11.37,22.2,12.63,21.41,13.42z M21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78-2.05,0.78-2.83,0l-8-8 c-0.78-0.78-0.78-2.05,0-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19z M14.19,17.02l-1.39-1.39l-0.8,0.8L7.58,12l0.8-0.8 l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update_warning\": {\n    \"name\": \"security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_low\": {\n    \"name\": \"brightness_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nfc\": {\n    \"name\": \"nfc\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto_select\": {\n    \"name\": \"hdr_auto_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path><polygon points=\\\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\\\"></polygon><polygon points=\\\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\\\"></polygon><path d=\\\"M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1c0.5-0.3,0.9-0.8,0.9-1.4v-1C18,16.7,17.3,16,16.5,16z M16.5,18.5h-2v-1h2 V18.5z\\\"></path><polygon points=\\\"11.97,5.3 10.95,8.19 13.05,8.19 12.03,5.3\\\"></polygon><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14.04,11l-0.63-1.79h-2.83L9.96,11H8.74l2.63-7h1.25 l2.63,7H14.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_bad\": {\n    \"name\": \"gpp_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z M9.91,8.5L8.5,9.91L10.59,12L8.5,14.09l1.41,1.41L12,13.42l2.09,2.08 l1.41-1.41L13.42,12l2.08-2.09L14.09,8.5L12,10.59L9.91,8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"storm\": {\n    \"name\": \"storm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18.93,8C16.72,4.18,11.82,2.87,8,5.07c-1.41,0.82-2.48,2-3.16,3.37C4.71,6.24,5.06,4.04,5.86,2H3.74 C2.2,6.49,2.52,11.58,5.07,16c1.1,1.91,2.88,3.19,4.86,3.72c1.98,0.53,4.16,0.31,6.07-0.79c1.41-0.82,2.48-2,3.16-3.37 c0.13,2.2-0.21,4.4-1.01,6.44h2.11C21.79,17.51,21.48,12.42,18.93,8z M15,17.2c-2.87,1.65-6.54,0.67-8.2-2.2 c-0.11-0.2-0.21-0.4-0.3-0.6C5.3,11.64,6.33,8.34,9,6.8c2.86-1.65,6.54-0.67,8.2,2.2c0.11,0.2,0.21,0.4,0.3,0.6 C18.7,12.36,17.67,15.66,15,17.2z M12,10c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,10,12,10 M12,8c-2.21,0-4,1.79-4,4 s1.79,4,4,4s4-1.79,4-4S14.21,8,12,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_searching\": {\n    \"name\": \"bluetooth_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_on\": {\n    \"name\": \"media_bluetooth_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,3l0.01,10.55c-0.6-0.34-1.28-0.55-2-0.55C4.79,13,3,14.79,3,17s1.79,4,4.01,4S11,19.21,11,17V7h4V3H9z M21,12.43 L17.57,9h-0.6v4.55l-2.75-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75-2.75V21h0.6L21,17.57L18.42,15L21,12.43z M18.17,11.3l1.13,1.13l-1.13,1.13V11.3z M19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wallpaper\": {\n    \"name\": \"wallpaper\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z\\\"></path>\"\n      }\n    }\n  },\n  \"edgesensor_low\": {\n    \"name\": \"edgesensor_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,7h2v7H2V7z M20,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4 C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M8,5V4h8v1H8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"restart_alt\": {\n    \"name\": \"restart_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z M20,13c0-4.42-3.58-8-8-8c-0.06,0-0.12,0.01-0.18,0.01l1.09-1.09L11.5,2.5L8,6l3.5,3.5l1.41-1.41 l-1.08-1.08C11.89,7.01,11.95,7,12,7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02C16.95,20.44,20,17.08,20,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"credit_score\": {\n    \"name\": \"credit_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h5v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M14.93,19.17l-2.83-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41-1.41L14.93,19.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_find\": {\n    \"name\": \"wifi_find\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,6c4.14,0,7.88,1.68,10.59,4.39L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21l1.41-1.42L2.93,9.08 C5.45,7.16,8.59,6,12,6z\\\"></path></g><g><path d=\\\"M21,14c0-2.24-1.76-4-4-4s-4,1.76-4,4c0,2.24,1.76,4,4,4c0.75,0,1.44-0.21,2.03-0.56L21.59,20L23,18.59l-2.56-2.56 C20.79,15.44,21,14.75,21,14z M17,16c-1.12,0-2-0.88-2-2c0-1.12,0.88-2,2-2s2,0.88,2,2C19,15.12,18.12,16,17,16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M10,14.88L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6l-0.67,0.67c0.37,0.35,0.66,0.77,0.89,1.23 L20,7.01C17.4,4.53,13.88,3,10,3C6.12,3,2.6,4.53,0,7.01L10,17l1.99-1.99c-0.46-0.23-0.88-0.53-1.23-0.89L10,14.88z\\\"></path></g><g><path d=\\\"M17,11c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.56,0,1.07-0.16,1.52-0.42L17.94,16L19,14.94l-2.42-2.42 C16.84,12.07,17,11.56,17,11z M12.5,11c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S12.5,11.83,12.5,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"punch_clock\": {\n    \"name\": \"punch_clock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,6h-1V1H6v5H5C3.9,6,3,6.9,3,8v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M8,3h8v3H8V3z M19,20H5V8 h14V20z\\\"></path><path d=\\\"M12,9c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S14.76,9,12,9z M12,17.5c-1.93,0-3.5-1.57-3.5-3.5 s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.93,17.5,12,17.5z\\\"></path><polygon points=\\\"12.5,11.5 11.5,11.5 11.5,14.21 13.14,15.85 13.85,15.14 12.5,13.79\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,5H15V1H5v4H4.5C3.67,5,3,5.67,3,6.5v10C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5v-10 C17,5.67,16.33,5,15.5,5z M6.5,2.5h7V5h-7V2.5z M15.5,16.5h-11v-10h11V16.5z\\\"></path><path d=\\\"M10,7.5c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C14,9.29,12.21,7.5,10,7.5z M10,14.5c-1.65,0-3-1.35-3-3 c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3C13,13.15,11.65,14.5,10,14.5z\\\"></path><polygon points=\\\"10.5,9.5 9.5,9.5 9.5,11.71 11.15,13.35 11.85,12.65 10.5,11.29\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"storage\": {\n    \"name\": \"storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"network_cell\": {\n    \"name\": \"network_cell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fluorescent\": {\n    \"name\": \"fluorescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M5,15h14V9H5V15z M7,11h10v2H7V11z\\\"></path><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"sim_card_download\": {\n    \"name\": \"sim_card_download\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,2h-8L4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v16H6V8.83L10.83,4H18z\\\"></path><path d=\\\"M16,13l-4,4l-4-4l1.41-1.41L11,13.17V9.02L13,9v4.17l1.59-1.59L16,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"macro_off\": {\n    \"name\": \"macro_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.66,4.93C8.9,4.93,9.12,5,9.3,5.13l0.81,0.56C9.82,5.93,9.57,6.23,9.39,6.56l1.66,1.66C11.03,8.14,11,8.08,11,8 c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1c-0.08,0-0.14-0.03-0.22-0.04l4.06,4.06c1.49-0.24,2.63-1.53,2.63-3.09 c0-0.71-0.25-1.39-0.67-1.93c0.43-0.54,0.67-1.22,0.67-1.93c0-1.73-1.41-3.14-3.14-3.14c-0.15,0-0.29,0.01-0.43,0.03 C14.44,1.81,13.31,1,12,1S9.56,1.81,9.09,2.96C8.95,2.94,8.8,2.93,8.66,2.93c-0.8,0-1.53,0.31-2.09,0.81l1.42,1.42 C8.19,5.03,8.41,4.93,8.66,4.93z M15.34,11.07c-0.24,0-0.46-0.07-0.64-0.2l-0.81-0.57c0.55-0.45,0.94-1.09,1.06-1.83l0.88,0.42 c0.4,0.19,0.66,0.59,0.66,1.03C16.49,10.56,15.97,11.07,15.34,11.07z M14.69,5.13c0.2-0.13,0.42-0.2,0.65-0.2 c0.63,0,1.14,0.51,1.14,1.14c0,0.44-0.25,0.83-0.66,1.03l-0.88,0.42c-0.12-0.74-0.51-1.38-1.07-1.83L14.69,5.13z M12,3 c0.62,0,1.12,0.49,1.14,1.1l-0.11,1.09C12.71,5.07,12.36,5,12,5s-0.7,0.07-1.02,0.19L10.86,4.1C10.88,3.49,11.38,3,12,3z\\\"></path><path d=\\\"M19.98,17.15C20.63,15.91,21,14.5,21,13c-1.5,0-2.91,0.37-4.15,1.02L19.98,17.15z\\\"></path><path d=\\\"M3,13c0,4.97,4.03,9,9,9C12,17.03,7.97,13,3,13z M5.44,15.44c1.9,0.71,3.42,2.22,4.12,4.12 C7.66,18.85,6.15,17.34,5.44,15.44z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.42,4.42c-0.19,0.4-0.3,0.84-0.3,1.29c0,1.73,1.41,3.14,3.15,3.14c0.15,0,0.29-0.01,0.43-0.03 C9.56,14.19,10.69,15,12,15c0.05,0,0.11-0.01,0.16-0.01l1.64,1.64C12.67,18.12,12,19.98,12,22c2.02,0,3.88-0.67,5.38-1.8l2.4,2.4 l1.41-1.41L2.81,2.81z M14.44,19.56c0.2-0.54,0.47-1.04,0.79-1.5l0.72,0.72C15.48,19.09,14.98,19.36,14.44,19.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M7.9,4.13C8.07,4.23,8.24,4.4,8.4,4.58c-0.31,0.26-0.56,0.6-0.71,0.99L9.22,7.1C9.09,6.93,9,6.73,9,6.5c0-0.55,0.45-1,1-1 s1,0.45,1,1s-0.45,1-1,1c-0.23,0-0.43-0.09-0.6-0.22l3.19,3.19c1.49,0.02,2.14-1.16,2.18-1.22c0.52-0.89,0.42-1.97-0.17-2.75 c0.58-0.78,0.68-1.86,0.17-2.75c-0.03-0.06-0.75-1.41-2.46-1.21C11.93,1.63,11.04,1,10,1S8.07,1.63,7.69,2.54 C6.54,2.4,5.85,2.98,5.5,3.38l1.07,1.07C6.87,4.02,7.44,3.87,7.9,4.13z M13.46,8.5c-0.28,0.48-0.89,0.64-1.37,0.37 c-0.16-0.09-0.34-0.27-0.5-0.45c0.45-0.37,0.76-0.9,0.86-1.49c0.24,0.05,0.47,0.11,0.64,0.21C13.58,7.41,13.74,8.02,13.46,8.5z M12.1,4.13c0.48-0.28,1.09-0.11,1.37,0.37s0.11,1.09-0.37,1.37c-0.16,0.09-0.4,0.16-0.64,0.21c-0.1-0.6-0.41-1.12-0.86-1.49 C11.76,4.4,11.93,4.23,12.1,4.13z M10,2.5c0.55,0,1,0.45,1,1c0,0.19-0.06,0.43-0.14,0.66C10.59,4.06,10.3,4,10,4 C9.7,4,9.41,4.06,9.14,4.16C9.06,3.93,9,3.69,9,3.5C9,2.95,9.45,2.5,10,2.5z\\\"></path><path d=\\\"M3,11c0,3.86,3.15,7,7,7C10,14.14,6.85,11,3,11z M4.81,12.81c1.57,0.55,2.82,1.8,3.37,3.37 C6.61,15.63,5.37,14.39,4.81,12.81z\\\"></path><path d=\\\"M16.25,14.13c0.47-0.94,0.75-2,0.75-3.13c-1.12,0-2.19,0.27-3.13,0.75L16.25,14.13z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99l3.18,3.18C4.81,7.83,4.86,8.59,5.24,9.25c0.03,0.06,0.75,1.41,2.46,1.21 c0.36,0.86,1.19,1.48,2.18,1.53l1.66,1.66C10.58,14.84,10,16.35,10,18c1.64,0,3.15-0.57,4.35-1.53l1.66,1.66l1.06-1.06L2.93,2.93z M11.81,16.19c0.19-0.53,0.46-1.02,0.79-1.46l0.68,0.68C12.83,15.73,12.34,16,11.81,16.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_0_bar\": {\n    \"name\": \"signal_cellular_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,22h20V2L2,22z M20,20H6.83L20,6.83V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tungsten\": {\n    \"name\": \"tungsten\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"19\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.6665 17.8014)\\\" width=\\\"1.99\\\" x=\\\"16.66\\\" y=\\\"16.66\\\"></rect><rect height=\\\"1.99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -10.9791 9.8041)\\\" width=\\\"3\\\" x=\\\"4.85\\\" y=\\\"17.16\\\"></rect><path d=\\\"M15,8.02V3H9v5.02C7.79,8.94,7,10.37,7,12c0,2.76,2.24,5,5,5s5-2.24,5-5C17,10.37,16.21,8.94,15,8.02z M11,5h2v2.1 C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5z M12,15c-1.65,0-3-1.35-3-3s1.35-3,3-3c1.65,0,3,1.35,3,3S13.65,15,12,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"1x_mobiledata\": {\n    \"name\": \"1x_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,7h4v10H6V9H4V7z M15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2-3.34l2,3.34H19 L15.83,11.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_good\": {\n    \"name\": \"fmd_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,12c-1.1,0-2-0.9-2-2s0.9-2,2-2c1.1,0,2,0.9,2,2S13.1,12,12,12z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2 c0,2.34,1.95,5.44,6,9.14C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_searching\": {\n    \"name\": \"location_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight\": {\n    \"name\": \"nightlight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M14,4c0.34,0,0.68,0.02,1.01,0.07C13.1,6.23,12,9.05,12,12s1.1,5.77,3.01,7.93C14.68,19.98,14.34,20,14,20 c-4.41,0-8-3.59-8-8S9.59,4,14,4 M14,2C8.48,2,4,6.48,4,12s4.48,10,10,10c1.82,0,3.53-0.5,5-1.35c-2.99-1.73-5-4.95-5-8.65 s2.01-6.92,5-8.65C17.53,2.5,15.82,2,14,2L14,2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"30fps\": {\n    \"name\": \"30fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8 c0-1.66-1.34-3-3-3H2z M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8 C22,6.34,20.66,5,19,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_bad\": {\n    \"name\": \"fmd_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M12,19.33 c-4.05-3.7-6-6.79-6-9.14C6,6.57,8.65,4,12,4s6,2.57,6,6.2C18,12.54,16.05,15.64,12,19.33z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"13\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_off\": {\n    \"name\": \"signal_wifi_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_weight\": {\n    \"name\": \"monitor_weight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M12,6 c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S13.66,6,12,6z M11,9.5h-1v-1h1V9.5z M12.5,9.5h-1v-1h1V9.5z M14,9.5h-1v-1h1V9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screenshot_monitor\": {\n    \"name\": \"screenshot_monitor\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2V5C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><polygon points=\\\"6.5,7.5 9,7.5 9,6 5,6 5,10 6.5,10\\\"></polygon><polygon points=\\\"19,12 17.5,12 17.5,14.5 15,14.5 15,16 19,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5v-9 C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><polygon points=\\\"5.5,6.5 7.5,6.5 7.5,5.5 4.5,5.5 4.5,8.5 5.5,8.5\\\"></polygon><polygon points=\\\"15.5,9.5 14.5,9.5 14.5,11.5 12.5,11.5 12.5,12.5 15.5,12.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lte_mobiledata\": {\n    \"name\": \"lte_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,14h3v2H4V8h2V14z M9,10h2v6h2v-6h2V8H9V10z M21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_1_bar\": {\n    \"name\": \"network_wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M15.32,14.84C14.34,14.3,13.2,14,12,14 c-1.2,0-2.34,0.3-3.32,0.84L2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L15.32,14.84z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M12.56,12.32c-1.53-1.07-3.6-1.07-5.13,0L2.21,7.1 C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L12.56,12.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"g_mobiledata\": {\n    \"name\": \"g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11v2h2v2H9V9h7c0-1.1-0.9-2-2-2H9C7.9,7,7,7.9,7,9v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4H12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"timer_10_select\": {\n    \"name\": \"timer_10_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,8v8h-3V8H13 M13,5h-3C8.34,5,7,6.34,7,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3V8C16,6.34,14.66,5,13,5z M1,8h2v11h3 V5H1V8z M18.5,11c-0.83,0-1.5,0.68-1.5,1.5v2c0,0.82,0.67,1.5,1.5,1.5H21v1h-4v2h4.5c0.83,0,1.5-0.67,1.5-1.5v-2 c0-0.83-0.67-1.5-1.5-1.5H19v-1h4v-2H18.5z\\\"></path>\"\n      }\n    }\n  },\n  \"3g_mobiledata\": {\n    \"name\": \"3g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_unknown\": {\n    \"name\": \"battery_unknown\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_suggest\": {\n    \"name\": \"settings_suggest\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,13c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.45,13,10,13 M10,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 S11.66,11,10,11L10,11z M18.5,9l1.09-2.41L22,5.5l-2.41-1.09L18.5,2l-1.09,2.41L15,5.5l2.41,1.09L18.5,9z M21.28,12.72L20.5,11 l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78-1.72L23,13.5L21.28,12.72z M16.25,14c0-0.12,0-0.25-0.01-0.37l1.94-1.47l-2.5-4.33 l-2.24,0.94c-0.2-0.13-0.42-0.26-0.64-0.37L12.5,6h-5L7.2,8.41C6.98,8.52,6.77,8.65,6.56,8.78L4.32,7.83l-2.5,4.33l1.94,1.47 C3.75,13.75,3.75,13.88,3.75,14s0,0.25,0.01,0.37l-1.94,1.47l2.5,4.33l2.24-0.94c0.2,0.13,0.42,0.26,0.64,0.37L7.5,22h5l0.3-2.41 c0.22-0.11,0.43-0.23,0.64-0.37l2.24,0.94l2.5-4.33l-1.94-1.47C16.25,14.25,16.25,14.12,16.25,14z M14.83,17.64l-1.73-0.73 c-0.56,0.6-1.3,1.04-2.13,1.23L10.73,20H9.27l-0.23-1.86c-0.83-0.19-1.57-0.63-2.13-1.23l-1.73,0.73l-0.73-1.27l1.49-1.13 c-0.12-0.39-0.18-0.8-0.18-1.23c0-0.43,0.06-0.84,0.18-1.23l-1.49-1.13l0.73-1.27l1.73,0.73c0.56-0.6,1.3-1.04,2.13-1.23L9.27,8 h1.47l0.23,1.86c0.83,0.19,1.57,0.63,2.13,1.23l1.73-0.73l0.73,1.27l-1.49,1.13c0.12,0.39,0.18,0.8,0.18,1.23 c0,0.43-0.06,0.84-0.18,1.23l1.49,1.13L14.83,17.64z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_5_bar\": {\n    \"name\": \"battery_5_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v4h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v3.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gps_off\": {\n    \"name\": \"gps_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z\\\"></path>\"\n      }\n    }\n  },\n  \"shortcut\": {\n    \"name\": \"shortcut\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M15,5l-1.41,1.41L15,7.83L17.17,10H8c-2.76,0-5,2.24-5,5v4h2v-4c0-1.65,1.35-3,3-3h9.17L15,14.17l-1.41,1.41L15,17l6-6 L15,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_6_bar\": {\n    \"name\": \"battery_6_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v2h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v2 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"data_saver_on\": {\n    \"name\": \"data_saver_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11z M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53 C21.68,14.83,22,13.45,22,12C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05 C5.94,2.55,2,6.81,2,12c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_time\": {\n    \"name\": \"access_time\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_3_bar\": {\n    \"name\": \"battery_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v8h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v6.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar\": {\n    \"name\": \"signal_wifi_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"splitscreen\": {\n    \"name\": \"splitscreen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,4v5H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,15v5H6v-5H18 M18,13H6c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-5C20,13.9,19.1,13,18,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21l5-5.01V8h5.92C19.97,5.51,16.16,4,12,4z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l5-5V7.5h4.51L20,7.01C17.4,4.53,13.88,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"h_plus_mobiledata\": {\n    \"name\": \"h_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11z M22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rsvp\": {\n    \"name\": \"rsvp\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9z M5.1,12.9L6,15H4.5l-0.85-2H2.5v2H1V9h3.5C5.35,9,6,9.65,6,10.5v1 C6,12.1,5.6,12.65,5.1,12.9z M4.5,10.5h-2v1h2V10.5z M21.5,13h-2v2H18V9h3.5c0.83,0,1.5,0.67,1.5,1.5v1C23,12.33,22.33,13,21.5,13 z M21.5,10.5h-2v1h2V10.5z M11.5,9v1.5h-3v0.75h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7v-1.5h3v-0.75H7.75 C7.34,12.75,7,12.41,7,12v-2c0-0.55,0.45-1,1-1H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lte_plus_mobiledata\": {\n    \"name\": \"lte_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,14h3v2H1V8h2V14z M5,10h2v6h2v-6h2V8H5V10z M12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2 V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarms\": {\n    \"name\": \"access_alarms\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_heart\": {\n    \"name\": \"monitor_heart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v3h2V6h16v3h2V6C22,4.9,21.1,4,20,4z\\\"></path><path d=\\\"M20,18H4v-3H2v3c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3h-2V18z\\\"></path><path d=\\\"M14.89,7.55c-0.34-0.68-1.45-0.68-1.79,0L10,13.76l-1.11-2.21C8.72,11.21,8.38,11,8,11H2v2h5.38l1.72,3.45 C9.28,16.79,9.62,17,10,17s0.72-0.21,0.89-0.55L14,10.24l1.11,2.21C15.28,12.79,15.62,13,16,13h6v-2h-5.38L14.89,7.55z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.4,4H3.6C2.72,4,2,4.72,2,5.6V8h1.5V5.6h13V8H18V5.6C18,4.72,17.28,4,16.4,4z\\\"></path><path d=\\\"M16.5,14.4h-13V12H2v2.4C2,15.28,2.72,16,3.6,16h12.8c0.88,0,1.6-0.72,1.6-1.6V12h-1.5V14.4z\\\"></path><path d=\\\"M12.16,6.89c-0.26-0.48-1.05-0.48-1.32,0L8.5,11.18L7.66,9.64C7.53,9.4,7.27,9.25,7,9.25H2v1.5h4.55l1.29,2.36 c0.13,0.24,0.38,0.39,0.66,0.39s0.53-0.15,0.66-0.39l2.34-4.29l0.84,1.54c0.13,0.24,0.38,0.39,0.66,0.39h5v-1.5h-4.55L12.16,6.89z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ssid_chart\": {\n    \"name\": \"ssid_chart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47z M21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8-2 l6.2,6l5-4h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M17,4.86L10,10L6.5,6.5L3,9V7.16l3.66-2.62l3.49,3.49L17,3L17,4.86z M17,12.5h-3.5l-3.36,2.52L5.5,10.3L3,12.14L3,14 l2.3-1.69L10,17l4-3h3V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"data_saver_off\": {\n    \"name\": \"data_saver_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12 C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_not_fixed\": {\n    \"name\": \"gps_not_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_storage\": {\n    \"name\": \"sd_storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4v16H6V8.83L10.83 4H18m0-2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"lens_blur\": {\n    \"name\": \"lens_blur\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,13,6,13z M6,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S6.55,17,6,17z M6,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,9,6,9z M3,9.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5S3.28,9.5,3,9.5z M6,5C5.45,5,5,5.45,5,6s0.45,1,1,1s1-0.45,1-1S6.55,5,6,5z M21,10.5c0.28,0,0.5-0.22,0.5-0.5 S21.28,9.5,21,9.5s-0.5,0.22-0.5,0.5S20.72,10.5,21,10.5z M14,7c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S13.45,7,14,7z M14,3.5 c0.28,0,0.5-0.22,0.5-0.5S14.28,2.5,14,2.5S13.5,2.72,13.5,3S13.72,3.5,14,3.5z M3,13.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S3.28,13.5,3,13.5z M10,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S10.28,20.5,10,20.5z M10,3.5c0.28,0,0.5-0.22,0.5-0.5S10.28,2.5,10,2.5S9.5,2.72,9.5,3S9.72,3.5,10,3.5z M10,7c0.55,0,1-0.45,1-1 s-0.45-1-1-1S9,5.45,9,6S9.45,7,10,7z M10,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,12.5,10,12.5z M18,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,13,18,13z M18,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,17,18,17z M18,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,9,18,9z M18,5c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,5,18,5z M21,13.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S21.28,13.5,21,13.5z M14,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S14.55,17,14,17z M14,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S14.28,20.5,14,20.5z M10,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,8.5,10,8.5z M10,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S10.55,17,10,17z M14,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S14.83,12.5,14,12.5z M14,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S14.83,8.5,14,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cable\": {\n    \"name\": \"cable\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,5V4c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v1h-1v4c0,0.55,0.45,1,1,1h1v7c0,1.1-0.9,2-2,2s-2-0.9-2-2V7 c0-2.21-1.79-4-4-4S5,4.79,5,7v7H4c-0.55,0-1,0.45-1,1v4h1v1c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h1v-4c0-0.55-0.45-1-1-1H7 V7c0-1.1,0.9-2,2-2s2,0.9,2,2v10c0,2.21,1.79,4,4,4s4-1.79,4-4v-7h1c0.55,0,1-0.45,1-1V5H20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"e_mobiledata\": {\n    \"name\": \"e_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lan\": {\n    \"name\": \"lan\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22z M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M11,18h6v-5h-2.25V9.25h-4V7H13V2H7v5h2.25v2.25h-4V13H3v5h6v-5H6.75v-2.25h6.5V13H11V18z M15.5,14.5v2h-3v-2H15.5z M8.5,5.5v-2h3v2H8.5z M7.5,14.5v2h-3v-2H7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"screen_lock_landscape\": {\n    \"name\": \"screen_lock_landscape\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_search_desktop\": {\n    \"name\": \"screen_search_desktop\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,18h16c1.1,0,1.99-0.9,1.99-2L22,5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v11C2,17.1,2.9,18,4,18z M4,5h16v11H4V5z\\\"></path><rect height=\\\"2\\\" width=\\\"22\\\" x=\\\"1\\\" y=\\\"19\\\"></rect><path d=\\\"M13.97,7.53c-1.37-1.37-3.58-1.37-4.95,0s-1.37,3.58,0,4.95c1.18,1.18,3,1.34,4.36,0.47l2.09,2.09l1.06-1.06l-2.09-2.09 C15.31,10.53,15.16,8.71,13.97,7.53z M12.91,11.41c-0.78,0.78-2.05,0.78-2.83,0c-0.78-0.78-0.78-2.05,0-2.83s2.05-0.78,2.83,0 C13.69,9.37,13.69,10.63,12.91,11.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar_lock\": {\n    \"name\": \"signal_wifi_4_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_error\": {\n    \"name\": \"nearby_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7.57l4.42,4.42L12,16.41l-4.42-4.42L12,7.57z M12,19.19l-7.2-7.2l7.2-7.2l6,6V7.16l-4.58-4.58 c-0.78-0.78-2.05-0.78-2.83,0l-8.01,8c-0.78,0.78-0.78,2.05,0,2.83l8.01,8c0.78,0.78,2.05,0.78,2.83,0L18,16.82v-3.63L12,19.19z M20,20h2v2h-2V20z M22,10h-2v8h2V10\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_check\": {\n    \"name\": \"price_check\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,13V9c0-0.55-0.45-1-1-1H6V6h5V4H8.5V3h-2v1H5C4.45,4,4,4.45,4,5v4c0,0.55,0.45,1,1,1h4v2H4v2h2.5v1h2v-1H10 C10.55,14,11,13.55,11,13z\\\"></path><polygon points=\\\"19.59,12.52 13.93,18.17 11.1,15.34 9.69,16.76 13.93,21 21,13.93\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_4_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M2,22h16V8h4V2L2,22z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><polygon points=\\\"2,18 15,18 15,7.5 18,7.5 18,2\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering_off\": {\n    \"name\": \"wifi_tethering_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6,2,10.71,2,13c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13 c0-1.75,0.57-3.35,1.51-4.66l1.43,1.43C6.35,10.7,6,11.81,6,13c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13 c0-0.63,0.15-1.23,0.41-1.76l1.61,1.61c0,0.05-0.02,0.1-0.02,0.15c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15 c0.05,0,0.1-0.01,0.16-0.02l7.62,7.62l1.41-1.41L2.81,2.81z M17.7,14.87C17.89,14.28,18,13.65,18,13c0-3.31-2.69-6-6-6 c-0.65,0-1.28,0.1-1.87,0.3l1.71,1.71C11.89,9,11.95,9,12,9c2.21,0,4,1.79,4,4c0,0.05,0,0.11-0.01,0.16L17.7,14.87z M12,5 c4.42,0,8,3.58,8,8c0,1.22-0.27,2.37-0.77,3.4l1.49,1.49C21.53,16.45,22,14.78,22,13c0-5.52-4.48-10-10-10 c-1.78,0-3.44,0.46-4.89,1.28l1.48,1.48C9.63,5.27,10.78,5,12,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"medication\": {\n    \"name\": \"medication\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10.5,15H8v-3h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15z M19,8v11c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V8c0-1.1,0.9-2,2-2h10 C18.1,6,19,6.9,19,8z M17,8H7v11h10V8z M18,3H6v2h12V3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_lock\": {\n    \"name\": \"wifi_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radar\": {\n    \"name\": \"radar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.74,18.33C21.15,16.6,22,14.4,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12s4.48,10,10,10c2.4,0,4.6-0.85,6.33-2.26 c0.27-0.22,0.53-0.46,0.78-0.71c0.03-0.03,0.05-0.06,0.07-0.08C19.38,18.75,19.57,18.54,19.74,18.33z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.43-1.43c0.69-0.98,1.1-2.17,1.1-3.46c0-3.31-2.69-6-6-6s-6,2.69-6,6 s2.69,6,6,6c1.3,0,2.51-0.42,3.49-1.13l1.42,1.42C15.54,19.37,13.85,20,12,20z M13.92,12.51c0.17-0.66,0.02-1.38-0.49-1.9 l-0.02-0.02c-0.77-0.77-2-0.78-2.78-0.04c-0.01,0.01-0.03,0.02-0.05,0.04c-0.78,0.78-0.78,2.05,0,2.83l0.02,0.02 c0.52,0.51,1.25,0.67,1.91,0.49l1.51,1.51c-0.6,0.36-1.29,0.58-2.04,0.58c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 c0,0.73-0.21,1.41-0.56,2L13.92,12.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi\": {\n    \"name\": \"network_wifi\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M12,8c-2.86,0-5.5,0.94-7.65,2.51L2.92,9.07 C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cameraswitch\": {\n    \"name\": \"cameraswitch\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,7h-1l-1-1h-4L9,7H8C6.9,7,6,7.9,6,9v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V9C18,7.9,17.1,7,16,7z M16,15H8V9h1.83l1-1 h2.34l1,1H16V15z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><path d=\\\"M8.57,0.52L13.05,5l1.41-1.41l-1.54-1.54C17.7,2.46,21.53,6.24,22,11h2C23.36,3.3,15.79-1.67,8.57,0.52z\\\"></path><path d=\\\"M9.54,20.41l1.54,1.54C6.3,21.54,2.47,17.76,2,13H0c0.64,7.7,8.21,12.67,15.43,10.48L10.95,19L9.54,20.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"aod\": {\n    \"name\": \"aod\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M8,10h8v1.5H8V10z M9,13h6v1.5H9V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_good\": {\n    \"name\": \"gpp_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12l6,2.12V11.09z M8.82,10.59L7.4,12l3.54,3.54l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,10.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"60fps\": {\n    \"name\": \"60fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z M10,8V5H5 C3.34,5,2,6.34,2,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3v-3c0-1.66-1.34-3-3-3H5V8H10z M8,13v3H5v-3H8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_goldenratio\": {\n    \"name\": \"grid_goldenratio\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22z M13,13h-2v-2h2V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_good\": {\n    \"name\": \"system_security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"remember_me\": {\n    \"name\": \"remember_me\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,21H7v-1h10V21z M17,18H7v-0.48 C8.47,16.53,10.22,16,12,16s3.53,0.53,5,1.52V18z M17,15.21C15.5,14.44,13.8,14,12,14s-3.5,0.44-5,1.21V6h10V15.21z M17,4H7V3h10 V4z\\\"></path><path d=\\\"M12,13c1.66,0,3-1.34,3-3s-1.34-3-3-3s-3,1.34-3,3S10.34,13,12,13z M12,9c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,9,12,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering\": {\n    \"name\": \"wifi_tethering\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_alert\": {\n    \"name\": \"battery_alert\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z\\\"></path>\"\n      }\n    }\n  },\n  \"usb\": {\n    \"name\": \"usb\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"access_time_filled\": {\n    \"name\": \"access_time_filled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M15.29,16.71L11,12.41V7h2v4.59 l3.71,3.71L15.29,16.71z\\\"></path></g>\"\n      }\n    }\n  },\n  \"air\": {\n    \"name\": \"air\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3h2c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1H2v-2h9.5 C13.15,14,14.5,15.35,14.5,17z M19,6.5C19,4.57,17.43,3,15.5,3S12,4.57,12,6.5h2C14,5.67,14.67,5,15.5,5S17,5.67,17,6.5 S16.33,8,15.5,8H2v2h13.5C17.43,10,19,8.43,19,6.5z M18.5,11H2v2h16.5c0.83,0,1.5,0.67,1.5,1.5S19.33,16,18.5,16v2 c1.93,0,3.5-1.57,3.5-3.5S20.43,11,18.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_change\": {\n    \"name\": \"price_change\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M8,17h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1H8v-1h4V8h-2V7H8v1H7C6.45,8,6,8.45,6,9v3c0,0.55,0.45,1,1,1h3v1H6v2 h2V17z M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M20,18H4V6h16V18z M14,10l2-2l2,2 M18,14.25l-2,2l-2-2\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cloud_done\": {\n    \"name\": \"cloud_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"difference\": {\n    \"name\": \"difference\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,23H4c-1.1,0-2-0.9-2-2V7h2v14h14V23z M14.5,7V5h-2v2h-2v2h2v2h2V9h2V7H14.5z M16.5,13h-6v2h6V13z M15,1H8 C6.9,1,6.01,1.9,6.01,3L6,17c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V7L15,1z M19,17H8V3h6.17L19,7.83V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M3.5,17.5H13V19H3.5C2.67,19,2,18.33,2,17.5V6h1.5V17.5z M17,5v9.5c0,0.83-0.67,1.5-1.5,1.5h-9C5.67,16,5,15.33,5,14.5v-12 C5,1.67,5.67,1,6.5,1H13L17,5z M15.5,5.62L12.38,2.5H6.5v12h9V5.62z M11.75,6.5V5h-1.5v1.5h-1.5V8h1.5v1.5h1.5V8h1.5V6.5H11.75z M13.25,11h-4.5v1.5h4.5V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_queue\": {\n    \"name\": \"cloud_queue\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"approval\": {\n    \"name\": \"approval\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,16v6h16v-6c0-1.1-0.9-2-2-2H6C4.9,14,4,14.9,4,16z M18,18H6v-2h12V18z M12,2C9.24,2,7,4.24,7,7l5,7l5-7 C17,4.24,14.76,2,12,2z M12,11L9,7c0-1.66,1.34-3,3-3s3,1.34,3,3L12,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_for_offline\": {\n    \"name\": \"download_for_offline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M14.59,8.59L16,10l-4,4l-4-4l1.41-1.41L11,10.17V6h2v4.17L14.59,8.59z M17,17H7v-2h10V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_snippet\": {\n    \"name\": \"text_snippet\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud\": {\n    \"name\": \"cloud\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6m0-2C9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_delete\": {\n    \"name\": \"folder_delete\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.5,10V9h-2v1H12v1.5h1v4c0,0.83,0.67,1.5,1.5,1.5h2c0.83,0,1.5-0.67,1.5-1.5v-4h1V10H16.5z M16.5,15.5h-2v-4h2V15.5z M20,6h-8l-2-2H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V8C22,6.89,21.11,6,20,6z M20,18H4V6h5.17 l2,2H20V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M7.38,5.5l2,2h7.12v7h-13v-9H7.38z M3.5,4C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7 C18,6.67,17.33,6,16.5,6H10L8,4H3.5z M14,9V8.5h-1.5V9H11v1h0.5v2.5c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V10h0.5V9H14z M14,12.5 h-1.5V10H14V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snippet_folder\": {\n    \"name\": \"snippet_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M13,9v8l6,0v-5.5L16.5,9H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"topic\": {\n    \"name\": \"topic\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_download\": {\n    \"name\": \"cloud_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_sync\": {\n    \"name\": \"cloud_sync\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.5,14.98c-0.02,0-0.03,0-0.05,0.01C21.2,13.3,19.76,12,18,12c-1.4,0-2.6,0.83-3.16,2.02C13.26,14.1,12,15.4,12,17 c0,1.66,1.34,3,3,3l6.5-0.02c1.38,0,2.5-1.12,2.5-2.5S22.88,14.98,21.5,14.98z M21.51,18L21.51,18L15,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1h1.25v-0.25c0-0.97,0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75V17c0,0,1.75,0,1.76,0c0.28,0,0.5,0.22,0.5,0.5 C22,17.77,21.78,18,21.51,18z M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73 C5.06,16.54,4,14.4,4,12C4,8.27,6.55,5.15,10,4.26z M20,6h-2.73c1.43,1.26,2.41,3.01,2.66,5l-2.02,0 C17.68,9.64,16.98,8.45,16,7.56V10h-2V4h6V6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.18,12.25C18.01,10.98,16.92,10,15.6,10c-1.06,0-1.97,0.64-2.35,1.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25h4.88c1.04,0,1.88-0.84,1.88-1.88C20,13.11,19.19,12.28,18.18,12.25z M18.12,14.5h-4.88 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.25v-0.4c0-0.61,0.49-1.1,1.1-1.1c0.61,0,1.1,0.49,1.1,1.1v1.15h1.42 c0.21,0,0.38,0.17,0.38,0.38S18.33,14.5,18.12,14.5z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4 h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10C4,7.21,5.91,4.86,8.5,4.2z M15.92,9l-1.53,0C14.17,8.09,13.68,7.29,13,6.68V8h-1.5V4h4v1.5 h-1.55C14.96,6.39,15.68,7.61,15.92,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cloud_circle\": {\n    \"name\": \"cloud_circle\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_file_move_rtl\": {\n    \"name\": \"drive_file_move_rtl\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l2,2H20V18z M13.41,15.59L12,17l-4-4l4-4l1.41,1.41L11.83,12H16v2h-4.17L13.41,15.59z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.87,10.25H13v1.5H9.87l1.19,1.19L10,14l-3-3l3-3l1.06,1.06L9.87,10.25z M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9 C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M16.5,14.5h-13v-9h3.88l2,2h7.12V14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_upload\": {\n    \"name\": \"cloud_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_open\": {\n    \"name\": \"folder_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"format_overline\": {\n    \"name\": \"format_overline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3v2H5V3H19z M12,7c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C19,10.13,15.87,7,12,7z M12,18.5 c-2.49,0-4.5-2.01-4.5-4.5S9.51,9.5,12,9.5s4.5,2.01,4.5,4.5S14.49,18.5,12,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15,3v1.5H5V3H15z M15.5,11.5c0,3.04-2.46,5.5-5.5,5.5s-5.5-2.46-5.5-5.5C4.5,8.46,6.96,6,10,6S15.5,8.46,15.5,11.5z M13.5,11.5C13.5,9.57,11.93,8,10,8s-3.5,1.57-3.5,3.5S8.07,15,10,15S13.5,13.43,13.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attach_email\": {\n    \"name\": \"attach_email\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z\\\"></path><path d=\\\"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,5.18l6,3.75l6-3.75V8h1V4c0-0.55-0.45-1-1-1H3C2.45,3,2,3.45,2,4v10c0,0.55,0.45,1,1,1h9v-1H3V5.18z M15,4L9,7.75L3,4 H15z\\\"></path><path d=\\\"M17,11v3.5c0,0.83-0.67,1.5-1.5,1.5S14,15.33,14,14.5v-4c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V14h1v-3.5 C16,9.67,15.33,9,14.5,9S13,9.67,13,10.5v4c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V11H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"folder_off\": {\n    \"name\": \"folder_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6h-8l-2-2H7.17l4,4H20v9.17l1.76,1.76C21.91,18.65,22,18.34,22,18V8C22,6.9,21.1,6,20,6z\\\"></path><path d=\\\"M2.1,2.1L0.69,3.51l1.56,1.56C2.1,5.35,2.01,5.66,2.01,6L2,18c0,1.1,0.9,2,2,2h13.17l3.31,3.31l1.41-1.41L2.1,2.1z M4,18 V6.83L15.17,18H4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,6H10L8,4H6.12l3.5,3.5h6.88v6.88l1.12,1.12C17.85,15.23,18,14.88,18,14.5v-7C18,6.67,17.33,6,16.5,6z\\\"></path><path d=\\\"M2.22,2.22L1.16,3.28l1.22,1.22C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84l1.06-1.06L2.22,2.22z M3.5,14.5V5.62l8.88,8.88H3.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_view\": {\n    \"name\": \"grid_view\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,3v8h8V3H3z M9,9H5V5h4V9z M3,13v8h8v-8H3z M9,19H5v-4h4V19z M13,3v8h8V3H13z M19,9h-4V5h4V9z M13,13v8h8v-8H13z M19,19h-4v-4h4V19z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"downloading\": {\n    \"name\": \"downloading\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.32,4.26C16.84,3.05,15.01,2.25,13,2.05v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.32,4.26z M19.93,11h2.02 c-0.2-2.01-1-3.84-2.21-5.32L18.31,7.1C19.17,8.21,19.75,9.54,19.93,11z M18.31,16.9l1.43,1.43c1.21-1.48,2.01-3.32,2.21-5.32 h-2.02C19.75,14.46,19.17,15.79,18.31,16.9z M13,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.43-1.43 C15.79,19.17,14.46,19.75,13,19.93z M15.59,10.59L13,13.17V7h-2v6.17l-2.59-2.59L7,12l5,5l5-5L15.59,10.59z M11,19.93v2.02 c-5.05-0.5-9-4.76-9-9.95s3.95-9.45,9-9.95v2.02C7.05,4.56,4,7.92,4,12S7.05,19.44,11,19.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upload_file\": {\n    \"name\": \"upload_file\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z M8,15.01 l1.41,1.41L11,14.84V19h2v-4.16l1.59,1.59L16,15.01L12.01,11L8,15.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"folder_copy\": {\n    \"name\": \"folder_copy\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,19h17v2H3c-1.1,0-2-0.9-2-2V6h2V19z M23,6v9c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2L5.01,4C5.01,2.9,5.9,2,7,2h5l2,2h7 C22.1,4,23,4.9,23,6z M7,15h14V6h-7.83l-2-2H7V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M2.5,5H1v10.5C1,16.33,1.67,17,2.5,17h13.18v-1.5H2.5V5z\\\"></path><path d=\\\"M16.5,4H11L9,2H5.5C4.67,2,4,2.67,4,3.5v9C4,13.33,4.67,14,5.5,14h11c0.83,0,1.5-0.67,1.5-1.5v-7C18,4.67,17.33,4,16.5,4z M16.5,12.5h-11v-9h2.88l2,2h6.12V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_done\": {\n    \"name\": \"download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"folder\": {\n    \"name\": \"folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.17 6l2 2H20v10H4V6h5.17M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_upload\": {\n    \"name\": \"file_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M7,9l1.41,1.41L11,7.83V16h2V7.83l2.59,2.58L17,9l-5-5L7,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"newspaper\": {\n    \"name\": \"newspaper\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16 c0,1.1,0.9,2,2,2l16,0c1.1,0,2-0.9,2-2V3z M11,19H4v-6h7V19z M20,19h-7v-2h7V19z M20,15h-7v-2h7V15z M20,11H4V8h16V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.67,4.33L15.33,3L14,4.33L12.67,3l-1.33,1.33L10,3L8.67,4.33L7.33,3L6,4.33L4.67,3L3.33,4.33L2,3v12.5 C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V3L16.67,4.33z M16.5,9.5h-13v-3h13V9.5z M10.75,11h5.75v1.5h-5.75V11z M3.5,11 h5.75v4.5H3.5V11z M10.75,15.5V14h5.75v1.5H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"drive_file_rename_outline\": {\n    \"name\": \"drive_file_rename_outline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,16 11,20 21,20 21,16\\\"></polygon><path d=\\\"M12.06,7.19L3,16.25V20h3.75l9.06-9.06L12.06,7.19z M5.92,18H5v-0.92l7.06-7.06l0.92,0.92L5.92,18z\\\"></path><path d=\\\"M18.71,8.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C16.17,4.09,15.92,4,15.66,4c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L18.71,8.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"drive_file_move\": {\n    \"name\": \"drive_file_move\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l1.41,1.41 L11.17,8H20V18z M12.16,12H8v2h4.16l-1.59,1.59L11.99,17L16,13.01L11.99,9l-1.41,1.41L12.16,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"file_download\": {\n    \"name\": \"file_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M17,11l-1.41-1.41L13,12.17V4h-2v8.17L8.41,9.59L7,11l5,5 L17,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"folder_zip\": {\n    \"name\": \"folder_zip\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M16,16h2v-2h-2v-2 h2v-2h-2V8h4v10h-4V16z M16,16h-2v2H4V6h5.17l2,2H14v2h2v2h-2v2h2V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M3.5,14.5v-9h3.88l2,2h4.12V9H12v1.5h1.5V12H12v1.5h1.5V12H15v-1.5h-1.5V9H15V7.5h1.5v7H3.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"download\": {\n    \"name\": \"download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"rule_folder\": {\n    \"name\": \"rule_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upload\": {\n    \"name\": \"upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h6v-6h4l-7-7-7 7h4v6zm3-10.17L14.17 8H13v6h-2V8H9.83L12 5.83zM5 18h14v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_shared\": {\n    \"name\": \"folder_shared\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 4h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_off\": {\n    \"name\": \"cloud_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_folder_upload\": {\n    \"name\": \"drive_folder_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M9.41,14.42L11,12.84V17h2v-4.16l1.59,1.59L16,13.01L12.01,9L8,13.01L9.41,14.42z\\\"></path></g>\"\n      }\n    }\n  },\n  \"workspaces\": {\n    \"name\": \"workspaces\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,15c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,15,6,15 M6,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S8.2,13,6,13z M12,5 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,5,12,5 M12,3C9.8,3,8,4.8,8,7s1.8,4,4,4s4-1.8,4-4S14.2,3,12,3z M18,15 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S16.9,15,18,15 M18,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S20.2,13,18,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C8,12.35,6.65,11,5,11z M5,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S5.83,15.5,5,15.5z\\\"></path><path d=\\\"M13,6c0-1.65-1.35-3-3-3S7,4.35,7,6c0,1.65,1.35,3,3,3S13,7.65,13,6z M10,7.5C9.17,7.5,8.5,6.83,8.5,6S9.17,4.5,10,4.5 s1.5,0.67,1.5,1.5S10.83,7.5,10,7.5z\\\"></path><path d=\\\"M15,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C18,12.35,16.65,11,15,11z M15,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.83,15.5,15,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"create_new_folder\": {\n    \"name\": \"create_new_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_off\": {\n    \"name\": \"file_download_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,15.17V15h2v2.17L18,15.17z M15.41,12.59L17,11l-1.41-1.41L14,11.17L15.41,12.59z M13,10.17V4h-2v4.17L13,10.17z M21.19,21.19l-1.78-1.78L2.81,2.81L1.39,4.22l6.19,6.19L7,11l5,5l0.59-0.59L15.17,18H6v-3H4v3c0,1.1,0.9,2,2,2h11.17l2.61,2.61 L21.19,21.19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,8.63l-1.5-1.5V3h1.5V8.63z M14,9l-1.06-1.06L11.5,9.38l1.06,1.06L14,9z M17.07,17.07L2.93,2.93L1.87,3.99l4.57,4.57 L6,9l4,4l0.44-0.44l1.94,1.94H5.5V13H4v1.5C4,15.33,4.67,16,5.5,16h8.38l2.13,2.13L17.07,17.07z M16,13h-0.88L16,13.88V13z\\\"></path>\"\n      }\n    }\n  },\n  \"file_open\": {\n    \"name\": \"file_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,22H6c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2h8l6,6v6h-2V9h-5V4H6v16h9V22z M19,21.66l0-2.24l2.95,2.95l1.41-1.41L20.41,18 h2.24v-2H17v5.66H19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14,17.74V13.5h4.24V15h-1.68l2.21,2.21l-1.06,1.06l-2.21-2.21v1.68H14z M12.5,16.5h-7v-13H11V7h3.5v5H16V6l-4-4H5.5 C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h7V16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attachment\": {\n    \"name\": \"attachment\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_done\": {\n    \"name\": \"file_download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20.13,5.41 18.72,4 9.53,13.19 5.28,8.95 3.87,10.36 9.53,16.02\\\"></polygon><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"18\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"request_quote\": {\n    \"name\": \"request_quote\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"paid\": {\n    \"name\": \"paid\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39 c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67c-0.15-0.44-0.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6,0.56-2.62,2.85-2.62,2.96 c0,2.27,2.25,2.91,3.35,3.31c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75 c0.63,2.19,2.28,2.78,3.02,2.96V19h1.75v-1.24c0.52-0.09,3.02-0.59,3.02-3.22C15.9,13.15,15.29,11.93,12.89,11.1z\\\"></path></g>\"\n      }\n    }\n  },\n  \"toc\": {\n    \"name\": \"toc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"gif_box\": {\n    \"name\": \"gif_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,19H5V5h14V19z M5,3C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5z M11.5,14h1v-4h-1V14z M13.5,14h1v-1.5H16v-1h-1.5V11h2v-1h-3V14z M9.5,12v1h-1v-2h2c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-1H9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,4.5v11h-11v-11H15.5z M4.5,3C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11 C17,3.67,16.33,3,15.5,3H4.5z M9.5,12h1V8h-1V12z M11.5,12h1v-1.5H14v-1h-1.5V9h2V8h-3V12z M7.5,10v1h-1V9h2c0-0.55-0.45-1-1-1h-1 c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1H7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_bag\": {\n    \"name\": \"shopping_bag\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6-2c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm6 16H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"webhook\": {\n    \"name\": \"webhook\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,15l5.88,0c0.27-0.31,0.67-0.5,1.12-0.5c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5c-0.44,0-0.84-0.19-1.12-0.5 l-3.98,0c-0.46,2.28-2.48,4-4.9,4c-2.76,0-5-2.24-5-5c0-2.42,1.72-4.44,4-4.9l0,2.07C4.84,13.58,4,14.7,4,16c0,1.65,1.35,3,3,3 s3-1.35,3-3V15z M12.5,4c1.65,0,3,1.35,3,3h2c0-2.76-2.24-5-5-5l0,0c-2.76,0-5,2.24-5,5c0,1.43,0.6,2.71,1.55,3.62l-2.35,3.9 C6.02,14.66,5.5,15.27,5.5,16c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.16-0.02-0.31-0.07-0.45l3.38-5.63 C10.49,9.61,9.5,8.42,9.5,7C9.5,5.35,10.85,4,12.5,4z M17,13c-0.64,0-1.23,0.2-1.72,0.54l-3.05-5.07C11.53,8.35,11,7.74,11,7 c0-0.83,0.67-1.5,1.5-1.5S14,6.17,14,7c0,0.15-0.02,0.29-0.06,0.43l2.19,3.65C16.41,11.03,16.7,11,17,11l0,0c2.76,0,5,2.24,5,5 c0,2.76-2.24,5-5,5c-1.85,0-3.47-1.01-4.33-2.5l2.67,0C15.82,18.82,16.39,19,17,19c1.65,0,3-1.35,3-3S18.65,13,17,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.5,3.5C9.12,3.5,8,4.62,8,6c0,1.17,0.81,2.15,1.89,2.43L7,12.92c0,0.03,0,0.05,0,0.08c0,0.55-0.45,1-1,1s-1-0.45-1-1 c0-0.43,0.27-0.8,0.66-0.94l2.05-3.19C6.96,8.14,6.5,7.12,6.5,6c0-2.21,1.79-4,4-4l0,0c2.21,0,4,1.79,4,4H13 C13,4.62,11.88,3.5,10.5,3.5z M8.5,12.25h4.84C13.51,12.09,13.75,12,14,12c0.55,0,1,0.45,1,1s-0.45,1-1,1 c-0.25,0-0.49-0.09-0.66-0.25l-3.41,0C9.58,15.6,7.95,17,6,17c-2.21,0-4-1.79-4-4c0-1.86,1.27-3.43,3-3.87l0,1.58 C4.12,11.1,3.5,11.98,3.5,13c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V12.25z M14,10.5c1.38,0,2.5,1.12,2.5,2.5 c0,1.38-1.12,2.5-2.5,2.5c-0.56,0-1.08-0.19-1.5-0.5l-1.97,0c0.69,1.2,1.98,2,3.46,2c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4l0,0 c-0.36,0-0.71,0.05-1.04,0.14l-1.47-2.95c0.01-0.06,0.02-0.12,0.02-0.18c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.39,0.23,0.73,0.56,0.9 l2.17,4.33C12.68,10.78,13.31,10.5,14,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"preview\": {\n    \"name\": \"preview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"work\": {\n    \"name\": \"work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors\": {\n    \"name\": \"sensors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.41,14.59l-1.06,1.06C2.9,14.21,2,12.21,2,10c0-2.21,0.9-4.21,2.34-5.66l1.06,1.06C4.23,6.58,3.5,8.21,3.5,10 S4.23,13.42,5.41,14.59z M16.5,10c0,1.79-0.73,3.42-1.91,4.59l1.06,1.06C17.1,14.21,18,12.21,18,10c0-2.21-0.9-4.21-2.34-5.66 l-1.06,1.06C15.77,6.58,16.5,8.21,16.5,10z M13.5,10c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,12.63,15,11.38,15,10 c0-1.38-0.56-2.63-1.46-3.54l-1.06,1.06C13.11,8.16,13.5,9.04,13.5,10z M6.5,10c0-0.96,0.39-1.84,1.03-2.47L6.46,6.46 C5.56,7.37,5,8.62,5,10c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,11.84,6.5,10.96,6.5,10z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"launch\": {\n    \"name\": \"launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_accessibility\": {\n    \"name\": \"settings_accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,4c-2.61,0.7-5.67,1-8.5,1S6.11,4.7,3.5,4L3,6c1.86,0.5,4,0.83,6,1v12h2v-6h2v6h2V7c2-0.17,4.14-0.5,6-1L20.5,4z M12,4c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,4,12,4z M7,24h2v-2H7V24z M11,24h2v-2h-2V24z M15,24h2v-2h-2V24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"install_mobile\": {\n    \"name\": \"install_mobile\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,18H7V6h7V4H7V3h7V1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-5h-2V18z M17,21H7v-1h10V21z\\\"></path><polygon points=\\\"18,14 23,9 21.59,7.59 19,10.17 19,3 17,3 17,10.17 14.41,7.59 13,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.5,15h-9V5H12V3.5H5.5v-1H12V1H5.5C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5V13h-1.5 V15z M14.5,17.5h-9v-1h9V17.5z\\\"></path><polygon points=\\\"15.23,11 18.75,7.48 17.69,6.42 16,8.11 16,3 14.5,3 14.5,8.14 12.81,6.45 11.75,7.52\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pan_tool_alt\": {\n    \"name\": \"pan_tool_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.89,11.77l-3.8-1.67C14.96,10.04,14.81,10,14.65,10H14V5.5C14,4.12,12.88,3,11.5,3S9,4.12,9,5.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,15.22l5.12,5.19C9.49,20.79,10,21,10.53,21h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,13.03,19.68,12.17,18.89,11.77z M17.08,19h-6.55l-3.7-3.78L11,16.11V5.5C11,5.22,11.22,5,11.5,5S12,5.22,12,5.5v6.18h1.76 L18,13.56L17.08,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15.39,9.36L12.5,8h-1V5c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,12l4.56,4.56 C8.34,16.84,8.72,17,9.12,17h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,10.57,16.16,9.74,15.39,9.36z M14.38,15.5H9.12 L5.62,12l0.34-0.34L9,12.42V5c0-0.28,0.22-0.5,0.5-0.5S10,4.72,10,5v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_button\": {\n    \"name\": \"smart_button\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"credit_card\": {\n    \"name\": \"credit_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down\": {\n    \"name\": \"thumb_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_balance\": {\n    \"name\": \"account_balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-6.74L16.71 6H6.29l5.21-2.74m0-2.26L2 6v2h19V6l-9.5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"shop\": {\n    \"name\": \"shop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"display_settings\": {\n    \"name\": \"display_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2V5C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"8.25\\\"></rect><polygon points=\\\"16.5,9.75 18,9.75 18,8.25 16.5,8.25 16.5,7 15,7 15,11 16.5,11\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"10\\\" y=\\\"12.25\\\"></rect><polygon points=\\\"7.5,15 9,15 9,11 7.5,11 7.5,12.25 6,12.25 6,13.75 7.5,13.75\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5v-9 C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><polygon points=\\\"14,8 15,8 15,7 14,7 14,6 13,6 13,9 14,9\\\"></polygon><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><polygon points=\\\"6,12 7,12 7,9 6,9 6,10 5,10 5,11 6,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"next_plan\": {\n    \"name\": \"next_plan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path><path d=\\\"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\\\"></path><path d=\\\"M10,8.5c-1.83,0-3.41,1.1-4.11,2.68l0.96,0.32C7.42,10.32,8.61,9.5,10,9.5c0.84,0,1.59,0.31,2.19,0.81l-1.19,1.19H14V8.5 l-1.09,1.09C12.13,8.91,11.12,8.5,10,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_balance_wallet\": {\n    \"name\": \"account_balance_wallet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z\\\"></path><circle cx=\\\"16\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"view_stream\": {\n    \"name\": \"view_stream\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2H5C3.9,5,3,5.9,3,7z M19,17H5v-4h14V17z M5,11V7h14v4H5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5h-11C3.67,5,3,5.67,3,6.5z M15.5,6.5 v2.75h-11V6.5H15.5z M4.5,13.5v-2.75h11v2.75H4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up\": {\n    \"name\": \"swipe_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25c-0.56-1.26-2.04-1.83-3.3-1.27 s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67c0.49,0.19,1.05,0.18,1.53-0.04 l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88 l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z M2.06,5.56L1,4.5 L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76,5,5.62,5,6.5c0,2.42,0.82,4.65,2.2,6.43L6.13,14C4.49,11.95,3.5,9.34,3.5,6.5 c0-0.92,0.1-1.82,0.3-2.68L2.06,5.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M4,5.5c0,2.03,0.75,3.88,2,5.29L5.29,11.5C3.87,9.91,3,7.81,3,5.5c0-0.93,0.14-1.82,0.4-2.66L1.71,4.53L1,3.83L3.83,1 l2.83,2.83L5.94,4.53L4.4,2.99C4.14,3.78,4,4.62,4,5.5z M16.79,8.07L13.6,8l-0.91,0.41l-1.22-2.74C11.02,4.65,9.84,4.2,8.83,4.64 C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3L13,17.63 c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13c0.68-0.3,1.04-1.06,0.84-1.78l-1.18-4.17C18.39,8.69,17.65,8.11,16.79,8.07z M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25 l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flip_to_front\": {\n    \"name\": \"flip_to_front\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z\\\"></path>\"\n      }\n    }\n  },\n  \"update_disabled\": {\n    \"name\": \"update_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M20.94,13c-0.15,1.38-0.62,2.67-1.33,3.79l-1.47-1.47c0.38-0.71,0.65-1.49,0.77-2.32H20.94z M8.67,5.84 C9.66,5.31,10.8,5,12,5c2.37,0,4.47,1.19,5.74,3H15v2h6V4h-2v2.36C17.35,4.32,14.83,3,12,3c-1.76,0-3.4,0.51-4.78,1.39L8.67,5.84z M11,7v1.17l2,2V7H11z M19.78,22.61l-3-3C15.39,20.48,13.76,21,12,21c-4.97,0-9-4.03-9-9c0-1.76,0.51-3.4,1.39-4.78L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M15.32,18.15L5.84,8.67C5.31,9.66,5,10.8,5,12c0,3.86,3.14,7,7,7 C13.2,19,14.34,18.69,15.32,18.15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,6v2.63l-1.5-1.5V6H10.75z M15.9,13.77c0.7-1.09,1.1-2.38,1.1-3.77h-1.5c0,0.97-0.25,1.89-0.7,2.68L15.9,13.77z M2.93,2.93L1.87,3.99L4.1,6.23C3.41,7.31,3,8.61,3,10c0,3.87,3.13,7,7,7c1.39,0,2.69-0.41,3.77-1.1l2.24,2.24l1.06-1.06L2.93,2.93z M10,15.5c-3.03,0-5.5-2.47-5.5-5.5c0-0.97,0.25-1.89,0.7-2.68l7.48,7.48C11.89,15.25,10.97,15.5,10,15.5z M10,4.5 c1.7,0,3.22,0.78,4.22,2H12V8h5V3h-1.5v2.71C14.22,4.07,12.24,3,10,3C8.61,3,7.31,3.41,6.23,4.1L7.32,5.2C8.11,4.75,9.03,4.5,10,4.5 z\\\"></path>\"\n      }\n    }\n  },\n  \"delete\": {\n    \"name\": \"delete\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horizontal_circle\": {\n    \"name\": \"swap_horizontal_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"polymer\": {\n    \"name\": \"polymer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_composite\": {\n    \"name\": \"settings_input_composite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_split\": {\n    \"name\": \"horizontal_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"free_cancellation\": {\n    \"name\": \"free_cancellation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.21,20H5V10h14v4.38l2-2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h8.21 L11.21,20z M5,6h14v2H5V6z M16.54,22.5L13,18.96l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,22.5z M10.41,14L12,15.59L10.59,17 L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.21,16.5H4.5V9h11v3.09l1.5-1.5V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11 C3,17.32,3.67,18,4.5,18h6.21L9.21,16.5z M4.5,5.5h11v2h-11V5.5z M13.33,16.38l3.54-3.54l1.06,1.06l-4.6,4.6l-2.83-2.83l1.06-1.06 L13.33,16.38z M8.81,12.25L10,13.44L8.94,14.5l-1.19-1.19L6.56,14.5L5.5,13.44l1.19-1.19L5.5,11.06L6.56,10l1.19,1.19L8.94,10 L10,11.06L8.81,12.25z\\\"></path>\"\n      }\n    }\n  },\n  \"theaters\": {\n    \"name\": \"theaters\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket\": {\n    \"name\": \"rocket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M14,11c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14,12.1,14,11z M7.98,18.25c-0.29-0.9-0.57-1.94-0.76-3L6,16.07v2.98 L7.98,18.25z M12,2c0,0,5,2,5,11l2.11,1.41c0.56,0.37,0.89,1,0.89,1.66V22l-5-2H9l-5,2v-5.93c0-0.67,0.33-1.29,0.89-1.66L7,13 C7,4,12,2,12,2z M12,4.36c0,0-3,2.02-3,8.64c0,2.25,1,5,1,5h4c0,0,1-2.75,1-5C15,6.38,12,4.36,12,4.36z M18,19.05v-2.98 l-1.22-0.81c-0.19,1.05-0.47,2.1-0.76,3L18,19.05z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13.75,10.5l1.67,1.3c0.37,0.28,0.58,0.72,0.58,1.18V18l-4-2H8l-4,2v-5.02c0-0.46,0.21-0.9,0.58-1.18l1.67-1.3 C6.25,3.75,10,2,10,2C10,2,13.75,3.75,13.75,10.5z M7.75,10.5c0,1.45,0.43,3.03,0.75,4h3c0.32-0.97,0.75-2.55,0.75-4 c0-3.95-1.39-5.86-2.25-6.66C9.14,4.64,7.75,6.55,7.75,10.5z M11.5,9c0-0.82-0.67-1.5-1.5-1.5C9.18,7.5,8.5,8.18,8.5,9 c0,0.83,0.68,1.5,1.5,1.5C10.83,10.5,11.5,9.83,11.5,9z M6.41,12.28l-0.91,0.7v2.59l1.52-0.76C6.81,14.14,6.56,13.24,6.41,12.28z M12.98,14.81l1.52,0.76v-2.59l-0.91-0.7C13.44,13.24,13.19,14.14,12.98,14.81z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"css\": {\n    \"name\": \"css\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.5,14v-1H11v0.5h2v-1h-2.5c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H13v-0.5h-2v1h2.5 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C9.95,15,9.5,14.55,9.5,14z M17,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1h-2.5v-1 h2V11H21v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2.5v1h-2V13H16v1C16,14.55,16.45,15,17,15z M8,10 c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1H6.5v0.5h-2v-3h2V11H8V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M8.5,11.5v-0.75h1V11h1v-0.75H9c-0.28,0-0.5-0.22-0.5-0.5V8.5C8.5,8.22,8.72,8,9,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1V9h-1 v0.75H11c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5H9C8.72,12,8.5,11.78,8.5,11.5z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5 v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5 H15V11h-1v-0.25h-1v0.75C13,11.78,13.22,12,13.5,12z M6.5,12C6.77,12,7,11.78,7,11.5v-0.75H6V11H5V9h1v0.25h1L7,8.5 C7,8.22,6.78,8,6.5,8h-2C4.22,8,4,8.22,4,8.5v3C4,11.78,4.22,12,4.5,12H6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"saved_search\": {\n    \"name\": \"saved_search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.73,13.31C15.52,12.24,16,10.93,16,9.5C16,5.91,13.09,3,9.5,3S3,5.91,3,9.5C3,13.09,5.91,16,9.5,16 c1.43,0,2.74-0.48,3.81-1.27L19.59,21L21,19.59L14.73,13.31z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5 S11.99,14,9.5,14z\\\"></path><polygon points=\\\"10.29,8.44 9.5,6 8.71,8.44 6.25,8.44 8.26,10.03 7.49,12.5 9.5,10.97 11.51,12.5 10.74,10.03 12.75,8.44\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"satellite_alt\": {\n    \"name\": \"satellite_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,14l2,0c0,4.97-4.03,9-9,9l0-2C17.87,21,21,17.87,21,14z M14,17l0,2c2.76,0,5-2.24,5-5l-2,0C17,15.66,15.66,17,14,17z M18.26,0.59l3.54,3.54c0.78,0.78,0.78,2.05,0,2.83l-3.18,3.18c-0.78,0.78-2.05,0.78-2.83,0l-1.24-1.24L13.84,9.6l1.24,1.24 c0.78,0.78,0.78,2.05,0,2.83l-1.41,1.41c-0.78,0.78-2.05,0.78-2.83,0L9.6,13.84l-0.71,0.71l1.24,1.24c0.78,0.78,0.78,2.05,0,2.83 L6.95,21.8c-0.78,0.78-2.05,0.78-2.83,0l-3.54-3.54c-0.78-0.78-0.78-2.05,0-2.83l3.18-3.18c0.78-0.78,2.05-0.78,2.83,0l1.24,1.24 l0.71-0.71L7.3,11.55c-0.78-0.78-0.78-2.05,0-2.83L8.72,7.3c0.78-0.78,2.05-0.78,2.83,0l1.24,1.24l0.71-0.71L12.25,6.6 c-0.78-0.78-0.78-2.05,0-2.83l3.18-3.18C16.22-0.2,17.48-0.2,18.26,0.59z M3.06,15.79L2,16.85l3.54,3.54l1.06-1.06L3.06,15.79z M5.18,13.67l-1.06,1.06l3.54,3.54l1.06-1.06L5.18,13.67z M10.13,8.72l-1.41,1.41l3.54,3.54l1.41-1.41L10.13,8.72z M14.73,4.12 l-1.06,1.06l3.54,3.54l1.06-1.06L14.73,4.12z M16.85,2l-1.06,1.06l3.54,3.54l1.06-1.06L16.85,2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17.5,12H19c0,3.87-3.13,7-7,7v-1.5C15.03,17.5,17.5,15.03,17.5,12z M12,14.5V16c2.21,0,4-1.79,4-4h-1.5 C14.5,13.38,13.38,14.5,12,14.5z M15.29,0.44l3.18,3.18c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0 l-1.24-1.24l-0.71,0.71l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-1.41,1.41c-0.59,0.59-1.54,0.59-2.12,0l-1.24-1.24l-0.71,0.71 l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-3.18-3.18c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83 c0.59-0.59,1.54-0.59,2.12,0l1.24,1.24l0.71-0.71L6.1,9.63c-0.59-0.59-0.59-1.54,0-2.12L7.51,6.1c0.59-0.59,1.54-0.59,2.12,0 l1.24,1.24l0.71-0.71l-1.24-1.24c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83C13.75-0.15,14.7-0.15,15.29,0.44z M2.56,13.17L1.5,14.23 l3.18,3.18l1.06-1.06L2.56,13.17z M4.33,11.4l-1.06,1.06l3.18,3.18l1.06-1.06L4.33,11.4z M8.57,7.16L7.16,8.57l3.18,3.18l1.41-1.41 L8.57,7.16z M12.46,3.27L11.4,4.33l3.18,3.18l1.06-1.06L12.46,3.27z M14.23,1.5l-1.06,1.06l3.18,3.18l1.06-1.06L14.23,1.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"eject\": {\n    \"name\": \"eject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z\\\"></path>\"\n      }\n    }\n  },\n  \"minimize\": {\n    \"name\": \"minimize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h12v2H6v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"print\": {\n    \"name\": \"print\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12v2H8v-4h8v2zm2-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4h-2z\\\"></path><circle cx=\\\"18\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle>\"\n      }\n    }\n  },\n  \"data_thresholding\": {\n    \"name\": \"data_thresholding\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19h-1.73L19,17.27V19z M19,16 h-0.85l-3,3h-1.62l3-3h-2.12l-3,3H9.8l3-3h-2.12l-3,3H5.84l3-3H6.72L5,17.72V5h14V16z\\\"></path><polygon points=\\\"10.67,11 12.67,13 17.75,7.91 16.34,6.5 12.67,10.17 10.67,8.17 6.25,12.59 7.66,14\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-1.08l1.08-1.08V15.5z M15.5,13L15.5,13L13,15.5h-1.07l2.5-2.5h-1.41l-2.5,2.5H9.46l2.5-2.5h-1.41l-2.5,2.5H6.98 l2.5-2.5H8.07l-2.5,2.5H4.5L7,13H5.59L4.5,14.09V4.5h11V13z\\\"></path><g><polygon points=\\\"10.69,10.62 14.25,7.06 13.19,6 10.69,8.5 9.19,7 5.75,10.44 6.81,11.5 9.19,9.12\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"tour\": {\n    \"name\": \"tour\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M17.14,9.74l0.9,2.26H12h-1H7V6h5h1h5.05l-0.9,2.26L16.85,9L17.14,9.74z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,7.9,14,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_today\": {\n    \"name\": \"calendar_today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_cart_checkout\": {\n    \"name\": \"shopping_cart_checkout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2 S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44 C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z M12,2l4,4l-4,4l-1.41-1.41L12.17,7L8,7l0-2l4.17,0l-1.59-1.59L12,2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M7,16.5C7,17.33,6.33,18,5.5,18S4,17.33,4,16.5S4.67,15,5.5,15S7,15.67,7,16.5z M14.5,15c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S15.33,15,14.5,15z M6.6,11h6.67c0.6,0,1.14-0.36,1.38-0.91L17,4.59L15.62,4l-2.35,5.5H6.99 L3.77,2H1v1.5h1.79l2.73,6.37l-1.08,1.88c-0.58,1,0.14,2.25,1.3,2.25H16v-1.5H5.73L6.6,11z M8.94,3.06l1.19,1.19H7v1.5h3.13 L8.94,6.94L10,8l3-3l-3-3L8.94,3.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"book\": {\n    \"name\": \"book\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"report_problem\": {\n    \"name\": \"report_problem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_calendar\": {\n    \"name\": \"edit_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,10h14v2h2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h7v-2H5V10z M5,6h14v2H5 V6z M22.84,16.28l-0.71,0.71l-2.12-2.12l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71C23.23,15.26,23.23,15.89,22.84,16.28z M19.3,15.58l2.12,2.12l-5.3,5.3H14v-2.12L19.3,15.58z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,9h11v1H17V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h5v-1.5 h-5V9z M4.5,5.5h11v2h-11V5.5z M18.42,13.34l-0.65,0.65l-1.77-1.77l0.65-0.65c0.29-0.29,0.77-0.29,1.06,0l0.71,0.71 C18.72,12.58,18.72,13.05,18.42,13.34z M15.42,12.81l1.77,1.77L12.77,19H11v-1.77L15.42,12.81z\\\"></path>\"\n      }\n    }\n  },\n  \"book_online\": {\n    \"name\": \"book_online\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tab\": {\n    \"name\": \"tab\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"eco\": {\n    \"name\": \"eco\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M5.54,7.04c-2.05,2.05-2.05,5.37,0,7.42C6.56,15.49,7.91,16,9.25,16c1.34,0,2.69-0.51,3.71-1.54C15.57,11.85,16,4,16,4 S8.15,4.43,5.54,7.04z M12.26,13.76c-0.8,0.8-1.87,1.24-3.01,1.24c-0.71,0-1.39-0.19-2.01-0.52c0.65-2.36,1.99-4.44,3.8-5.98 c-2.13,1.1-3.89,2.86-5.04,4.97c-1.4-1.67-1.33-4.16,0.23-5.72c1.63-1.63,6.09-2.39,8.66-2.65C14.65,7.66,13.89,12.12,12.26,13.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"system_update_alt\": {\n    \"name\": \"system_update_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"add_shopping_cart\": {\n    \"name\": \"add_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_later\": {\n    \"name\": \"watch_later\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"assessment\": {\n    \"name\": \"assessment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"fit_screen\": {\n    \"name\": \"fit_screen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M6,16h12V8H6V16z M8,10h8v4H8V10z M4,15H2v3c0,1.1,0.9,2,2,2h3v-2H4V15z M4,6h3V4H4C2.9,4,2,4.9,2,6v3h2V6z M20,4h-3v2h3v3 h2V6C22,4.9,21.1,4,20,4z M20,18h-3v2h3c1.1,0,2-0.9,2-2v-3h-2V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hls_off\": {\n    \"name\": \"hls_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.83,15h1.67c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1H19v1h-2V13h-1.17L17.83,15z M8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41-1.41l18.38,18.38 l-1.41,1.41L12.17,15H10v-2.17L8,10.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,12c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2 C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.13L14.12,12H15.5z\\\"></path><polygon points=\\\"2.93,2.93 1.87,3.99 6,8.12 6,9.5 5,9.5 5,8 4,8 4,12 5,12 5,10.5 6,10.5 6,12 7,12 7,9.12 9,11.12 9,12 9.88,12 16.01,18.13 17.07,17.07\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"view_kanban\": {\n    \"name\": \"view_kanban\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"10\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"7\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"8\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"7\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"8\\\" width=\\\"1.5\\\" x=\\\"6\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"12.5\\\" y=\\\"6\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"settings_input_component\": {\n    \"name\": \"settings_input_component\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zM4 17c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4H3zM13 2c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm-1 15c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2zm10-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm-1 11c-.55 0-1-.45-1-1v-2h2v2c0 .55-.45 1-1 1zm-1-5V8h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"commute\": {\n    \"name\": \"commute\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angleup\": {\n    \"name\": \"text_rotation_angleup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z\\\"></path>\"\n      }\n    }\n  },\n  \"chrome_reader_mode\": {\n    \"name\": \"chrome_reader_mode\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 19V6h8v13H3zm18 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"view_cozy\": {\n    \"name\": \"view_cozy\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.25\\\" y=\\\"7.25\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.75\\\" y=\\\"7.25\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.25\\\" y=\\\"12.75\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.75\\\" y=\\\"12.75\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.25\\\" y=\\\"6.25\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.75\\\" y=\\\"6.25\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.25\\\" y=\\\"10.75\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.75\\\" y=\\\"10.75\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"token\": {\n    \"name\": \"token\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M21,7l-9-5L3,7v10l9,5l9-5L21,7z M12,4.29l5.91,3.28L14.9,9.24C14.17,8.48,13.14,8,12,8S9.83,8.48,9.1,9.24L6.09,7.57 L12,4.29z M11,19.16l-6-3.33V9.26l3.13,1.74C8.04,11.31,8,11.65,8,12c0,1.86,1.27,3.43,3,3.87V19.16z M10,12c0-1.1,0.9-2,2-2 s2,0.9,2,2s-0.9,2-2,2S10,13.1,10,12z M13,19.16v-3.28c1.73-0.44,3-2.01,3-3.87c0-0.35-0.04-0.69-0.13-1.01L19,9.26l0,6.57L13,19.16 z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M16.75,6.25L10,2.5L3.25,6.25v7.5L10,17.5l6.75-3.75L16.75,6.25z M10,4.22l4.43,2.46l-2.26,1.25C11.63,7.36,10.86,7,10,7 S8.37,7.36,7.83,7.93L5.57,6.68L10,4.22z M9.25,15.37l-4.5-2.5V7.94l2.35,1.3C7.03,9.49,7,9.74,7,10c0,1.4,0.96,2.57,2.25,2.91 V15.37z M8.5,10c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M10.75,15.37v-2.46 C12.04,12.57,13,11.4,13,10c0-0.26-0.03-0.51-0.1-0.76l2.35-1.3l0,4.93L10.75,15.37z\\\"></path>\"\n      }\n    }\n  },\n  \"opacity\": {\n    \"name\": \"opacity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z\\\"></path>\"\n      }\n    }\n  },\n  \"spellcheck\": {\n    \"name\": \"spellcheck\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_visible\": {\n    \"name\": \"disabled_visible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,15c1.95,0,3.76,0.98,4.75,2.5C20.76,19.02,18.95,20,17,20s-3.76-0.98-4.75-2.5C13.24,15.98,15.05,15,17,15z M17,13 c-3.18,0-5.9,1.87-7,4.5c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,19c-0.83,0-1.5-0.67-1.5-1.5 S16.17,16,17,16s1.5,0.67,1.5,1.5S17.83,19,17,19z M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12 c0,5.17,3.93,9.43,8.96,9.95c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66 c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.25,12.5c1.67,0,3.21,0.78,4.04,2c-0.83,1.22-2.37,2-4.04,2s-3.21-0.78-4.04-2C11.04,13.28,12.58,12.5,14.25,12.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,15.75 c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S14.94,15.75,14.25,15.75z M17.99,10.38 C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98c-0.73-0.53-1.35-1.18-1.83-1.93 C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73L5.97,4.91 C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z\\\"></path>\"\n      }\n    }\n  },\n  \"power_settings_new\": {\n    \"name\": \"power_settings_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_hdmi\": {\n    \"name\": \"settings_input_hdmi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z\\\"></path>\"\n      }\n    }\n  },\n  \"label_off\": {\n    \"name\": \"label_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel_class\": {\n    \"name\": \"hotel_class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"m11 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L11 14.79l-2.42 1.84.93-3.01L7.24 12h2.82L11 8.89zM8.58 10H1l6.17 4.41L4.83 22 11 17.31 17.18 22l-2.35-7.59L21 10h-7.58L11 2l-2.42 8zm12.78 12-1.86-6.01L23.68 13h-3.44l-3.08 2.2 1.46 4.72L21.36 22zM17 8l-1.82-6-1.04 3.45.77 2.55H17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"m9 6.88.85 2.62h2.86l-2.38 1.89.8 2.58L9 12.36l-2.12 1.61.8-2.58L5.3 9.5h2.86L9 6.88zM7.06 8H1l4.94 3.93L4.06 18 9 14.25 13.94 18l-1.88-6.07L17 8h-6.06L9 2 7.06 8zm4.3-3.56.67 2.06h1.58L12.15 2l-.79 2.44zM16.9 10l-3.1 2.47 1.23 3.97L17.08 18l-1.55-5 3.77-3h-2.4z\\\"></path>\"\n      }\n    }\n  },\n  \"expand\": {\n    \"name\": \"expand\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"2\\\"></rect><polygon points=\\\"9.41,13.59 8,15 12,19 16,15 14.59,13.59 13,15.17 13,8.83 14.59,10.41 16,9 12,5 8,9 9.41,10.41 11,8.83 11,15.17\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"visibility_off\": {\n    \"name\": \"visibility_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_access_shortcut\": {\n    \"name\": \"switch_access_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M12,12c0-3.09,1.38-5.94,3.44-8 L12,4V2h7v7h-2l0-3.72c-1.8,1.74-3,4.2-3,6.72c0,3.32,2.1,6.36,5,7.82L19,22C14.91,20.41,12,16.35,12,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.55,1.12-4.89,2.89-6.5L10,3.5V2h5.5v5.5H14l0-2.97c-1.52,1.33-2.5,3.31-2.5,5.47 c0,2.81,1.64,5.23,4,6.37L15.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"find_in_page\": {\n    \"name\": \"find_in_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 4h7l5 5v8.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_in\": {\n    \"name\": \"zoom_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"done\": {\n    \"name\": \"done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark\": {\n    \"name\": \"bookmark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"subtitles_off\": {\n    \"name\": \"subtitles_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z\\\"></path><polygon points=\\\"18,10 12.83,10 14.83,12 18,12\\\"></polygon><path d=\\\"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><polygon points=\\\"15,12 15,11 12.41,11 13.41,12\\\"></polygon><path d=\\\"M16,5v9.59l0.87,0.87C16.95,15.32,17,15.17,17,15V5c0-0.55-0.45-1-1-1H5.41l1,1H16z\\\"></path><path d=\\\"M2.93,2.93L2.22,3.64l0.9,0.9C3.05,4.68,3,4.83,3,5v10c0,0.55,0.45,1,1,1h10.59l1.78,1.78l0.71-0.71L2.93,2.93z M4,15 V5.41L9.59,11H8v1h2.59l1,1H5v1h7v-0.59L13.59,15H4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"verified\": {\n    \"name\": \"verified\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z\\\"></path><polygon points=\\\"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,10l-1.77-2.03l0.25-2.69l-2.63-0.6l-1.37-2.32L10,3.43L7.53,2.36L6.15,4.68L3.53,5.28l0.25,2.69L2,10l1.77,2.03 l-0.25,2.69l2.63,0.6l1.37,2.32L10,16.56l2.47,1.07l1.37-2.32l2.63-0.6l-0.25-2.69L18,10z M15.23,12.12l0.17,1.81l-1.77,0.4 l-0.42,0.1l-0.22,0.37l-0.93,1.56l-1.66-0.72L10,15.47l-0.4,0.17l-1.66,0.72l-0.93-1.56l-0.22-0.37l-0.42-0.1l-1.77-0.4l0.17-1.82 l0.04-0.43l-0.28-0.32L3.33,10l1.2-1.38l0.28-0.32L4.77,7.87L4.6,6.06l1.77-0.4l0.42-0.09l0.22-0.37l0.93-1.56L9.6,4.35L10,4.52 l0.4-0.17l1.66-0.72l0.93,1.56l0.22,0.37l0.42,0.1l1.77,0.4l-0.17,1.81L15.19,8.3l0.28,0.32l1.2,1.37l-1.2,1.37l-0.28,0.32 L15.23,12.12z\\\"></path><polygon points=\\\"8.59,11.65 7.17,10.24 6.46,10.95 8.59,13.07 13.54,8.12 12.83,7.41\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"arrow_circle_left\": {\n    \"name\": \"arrow_circle_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10S17.52,2,12,2C6.48,2,2,6.48,2,12z M20,12c0,4.42-3.58,8-8,8 c-4.42,0-8-3.58-8-8s3.58-8,8-8C16.42,4,20,7.58,20,12z M8,12l4-4l1.41,1.41L11.83,11H16v2h-4.17l1.59,1.59L12,16L8,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,13l-3-3l3-3l1.06,1.06L9.87,9.25H13v1.5H9.87l1.19,1.19L10,13z M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8 S2,5.58,2,10z M16.5,10c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10S6.42,3.5,10,3.5S16.5,6.42,16.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"addchart\": {\n    \"name\": \"addchart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"delete_outline\": {\n    \"name\": \"delete_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"redeem\": {\n    \"name\": \"redeem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_svideo\": {\n    \"name\": \"settings_input_svideo\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_ind\": {\n    \"name\": \"assignment_ind\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zM12 6c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-6 6.47V18h12v-1.53c0-2.5-3.97-3.58-6-3.58s-6 1.07-6 3.58zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z\\\"></path>\"\n      }\n    }\n  },\n  \"abc\": {\n    \"name\": \"abc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V11z M8,10v5H6.5v-1.5h-2V15H3v-5c0-0.55,0.45-1,1-1h3C7.55,9,8,9.45,8,10z M6.5,10.5h-2V12h2V10.5z M13.5,12c0.55,0,1,0.45,1,1v1 c0,0.55-0.45,1-1,1h-4V9h4c0.55,0,1,0.45,1,1v1C14.5,11.55,14.05,12,13.5,12z M11,10.5v0.75h2V10.5H11z M13,12.75h-2v0.75h2V12.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13,8.5C13,8.22,13.22,8,13.5,8h2C15.78,8,16,8.22,16,8.5v0.75h-1V9h-1v2h1v-0.25l1-0.01v0.76c0,0.28-0.22,0.5-0.5,0.5h-2 c-0.28,0-0.5-0.22-0.5-0.5V8.5z M7,8.5V12H6v-1H5v1H4V8.5C4,8.22,4.22,8,4.5,8h2C6.78,8,7,8.22,7,8.5z M6,9H5v1h1V9z M11,10 c0.28,0,0.5,0.22,0.5,0.5v1c0,0.27-0.22,0.5-0.5,0.5H8.5V8H11c0.28,0,0.5,0.22,0.5,0.5v1C11.5,9.77,11.28,10,11,10z M9.5,9v0.5h1V9 H9.5z M10.5,11v-0.5h-1V11H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"unfold_more_double\": {\n    \"name\": \"unfold_more_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,7.83L15.17,11l1.41-1.41L12,5L7.41,9.59L8.83,11L12,7.83z M12,2.83L15.17,6l1.41-1.41L12,0L7.41,4.59L8.83,6L12,2.83 z M12,21.17L8.83,18l-1.41,1.41L12,24l4.59-4.59L15.17,18L12,21.17z M12,16.17L8.83,13l-1.41,1.41L12,19l4.59-4.59L15.17,13 L12,16.17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"6.63,7.37 7.69,8.43 10,6.12 12.31,8.43 13.37,7.37 10,4\\\"></polygon><polygon points=\\\"6.63,3.37 7.69,4.43 10,2.12 12.31,4.43 13.37,3.37 10,0\\\"></polygon><polygon points=\\\"13.37,16.63 12.31,15.57 10,17.88 7.69,15.57 6.63,16.63 10,20\\\"></polygon><polygon points=\\\"13.37,12.63 12.31,11.57 10,13.88 7.69,11.57 6.63,12.63 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"youtube_searched_for\": {\n    \"name\": \"youtube_searched_for\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z\\\"></path>\"\n      }\n    }\n  },\n  \"compress\": {\n    \"name\": \"compress\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4,9v2h16V9H4z M16,4l-1.41-1.41L13,4.17V1h-2v3.19L9.39,2.61L8,4l4,4L16,4z M4,14h16v-2H4V14z M8,19l1.39,1.39L11,18.81 V22h2v-3.17l1.59,1.59L16,19l-4-4L8,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"room\": {\n    \"name\": \"room\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\\\"></path><circle cx=\\\"12\\\" cy=\\\"9\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"lightbulb_circle\": {\n    \"name\": \"lightbulb_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path><path d=\\\"M12,19c0.83,0,1.5-0.67,1.5-1.5h-3C10.5,18.33,11.17,19,12,19z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"15\\\"></rect><path d=\\\"M12,5c-2.76,0-5,2.24-5,5c0,1.64,0.8,3.09,2.03,4h5.95C16.2,13.09,17,11.64,17,10C17,7.24,14.76,5,12,5z M14.43,12.5H9.57 C8.89,11.84,8.5,10.95,8.5,10c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5C15.5,10.95,15.11,11.84,14.43,12.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"12.75\\\"></rect><path d=\\\"M10,15.5c0.55,0,1-0.45,1-1H9C9,15.05,9.45,15.5,10,15.5z\\\"></path><path d=\\\"M10,5C7.79,5,6,6.79,6,9c0,1.2,0.54,2.27,1.38,3h5.24C13.46,11.27,14,10.2,14,9C14,6.79,12.21,5,10,5z M12.22,11H7.78 C7.28,10.45,7,9.75,7,9c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3C13,9.75,12.72,10.45,12.22,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"open_in_browser\": {\n    \"name\": \"open_in_browser\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"question_answer\": {\n    \"name\": \"question_answer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"card_membership\": {\n    \"name\": \"card_membership\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_full\": {\n    \"name\": \"open_in_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71\\\"></polygon>\"\n      }\n    }\n  },\n  \"schedule\": {\n    \"name\": \"schedule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_add\": {\n    \"name\": \"bookmark_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,9v5.78l-3.5-1.4l-3.5,1.4V4.5H11V3H6.5C5.67,3,5,3.67,5,4.5V17l5-2l5,2V9H13.5z M15.75,4.25v-1.5h-1.5v1.5h-1.5v1.5 h1.5v1.5h1.5v-1.5h1.5v-1.5H15.75z\\\"></path>\"\n      }\n    }\n  },\n  \"repartition\": {\n    \"name\": \"repartition\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,21h18v-6H3V21z M10.33,19v-2h3.33v2H10.33z M19,19h-3.33v-2H19V19z M5,17h3.33v2H5V17z\\\"></path><path d=\\\"M6,10l1.42-1.42L5.83,7H17c1.1,0,2,0.9,2,2s-0.9,2-2,2H3v2h14c2.21,0,4-1.79,4-4s-1.79-4-4-4H5.83l1.59-1.59L6,2L2,6L6,10 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M5,8.25l1.06-1.06L4.87,6H14c0.83,0,1.5,0.67,1.5,1.5S14.83,9,14,9H3v1.5h11c1.65,0,3-1.35,3-3s-1.35-3-3-3H4.87 l1.19-1.19L5,2.25l-3,3L5,8.25z\\\"></path><path d=\\\"M3,17h14v-5H3V17z M12.83,13.5h2.67v2h-2.67V13.5z M8.67,13.5h2.67v2H8.67V13.5z M4.5,13.5h2.67v2H4.5V13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hourglass_disabled\": {\n    \"name\": \"hourglass_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17\\\"></polygon><path d=\\\"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"7,4 13,4 13,6.59 10.5,9.09 11.21,9.79 14,7 14,7 14,3 6,3 6,4.59 7,5.59\\\"></polygon><path d=\\\"M2.93,2.93L2.22,3.64l6.57,6.57L6,13h0v4h8v-1.59l2.36,2.36l0.71-0.71L2.93,2.93z M13,16H7l0-2.59l2.5-2.5l3.5,3.5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hls\": {\n    \"name\": \"hls\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9z M16.5,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1 c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1H19v1h-2V13h-1.5v1C15.5,14.55,15.95,15,16.5,15z M14,15v-1.5h-2.5 V9H10v6H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M6,8h1v4H6v-1.5H5V12H4V8h1v1.5h1V8z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5 C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.75 C13,11.78,13.22,12,13.5,12z M11.5,11H10V8H9v4l2.5,0V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"language\": {\n    \"name\": \"language\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z\\\"></path>\"\n      }\n    }\n  },\n  \"store\": {\n    \"name\": \"store\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.36 9l.6 3H5.04l.6-3h12.72M20 4H4v2h16V4zm0 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zM6 18v-4h6v4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"privacy_tip\": {\n    \"name\": \"privacy_tip\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.6l5,2.25v3.5c0,3.18-2.22,6.32-5,7.12c-2.78-0.8-5-3.94-5-7.12v-3.5L10,3.6 M10,2.5L4,5.2v4.15 c0,3.63,2.56,7.33,6,8.15c3.44-0.82,6-4.52,6-8.15V5.2L10,2.5L10,2.5z M10.5,9h-1v4h1V9z M10.5,7h-1v1h1V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_flat\": {\n    \"name\": \"trending_flat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12l-4-4v3H3v2h15v3l4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_alt\": {\n    \"name\": \"filter_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24 M24,24H0\\\" fill=\\\"none\\\"></path><path d=\\\"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_cell\": {\n    \"name\": \"settings_cell\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_view_month\": {\n    \"name\": \"calendar_view_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,11H4V6h4V11z M14,11h-4V6h4V11z M20,11h-4V6h4V11z M8,18H4v-5h4V18z M14,18h-4v-5h4V18z M20,18h-4v-5h4V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_support\": {\n    \"name\": \"contact_support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 23.59v-3.6c-5.01-.26-9-4.42-9-9.49C2 5.26 6.26 1 11.5 1S21 5.26 21 10.5c0 4.95-3.44 9.93-8.57 12.4l-1.43.69zM11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm-1 11.5h2v2h-2zm2-1.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\\\"></path>\"\n      }\n    }\n  },\n  \"voice_over_off\": {\n    \"name\": \"voice_over_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z\\\"></path>\"\n      }\n    }\n  },\n  \"dynamic_form\": {\n    \"name\": \"dynamic_form\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"123\": {\n    \"name\": \"123\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,15H5.5v-4.5H4V9h3V15z M13.5,13.5h-3v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H9v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15 h4.5V13.5z M19.5,14v-4c0-0.55-0.45-1-1-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15,19.5,14.55,19.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M6,12H5V9H4V8h2V12z M11,11H9v-0.5h1.5c0.28,0,0.5-0.22,0.5-0.5V8.5C11,8.22,10.78,8,10.5,8H8v1h2v0.5H8.5 C8.22,9.5,8,9.72,8,10v2h3V11z M15.5,11.5v-3C15.5,8.22,15.28,8,15,8h-2.5v1h2v0.5h-1v1h1V11h-2v1H15 C15.28,12,15.5,11.78,15.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_up\": {\n    \"name\": \"trending_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"wysiwyg\": {\n    \"name\": \"wysiwyg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"search\": {\n    \"name\": \"search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_tracking\": {\n    \"name\": \"spatial_tracking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C8,7.9,8.9,7,10,7z\\\"></path><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z M16,19H4v-0.78c0-0.38,0.2-0.72,0.52-0.88C5.71,16.73,7.63,16,10,16 c2.37,0,4.29,0.73,5.48,1.34C15.8,17.5,16,17.84,16,18.22V19z\\\"></path><path d=\\\"M20.05,2.41L18.64,1c-3.51,3.51-3.51,9.21,0,12.73l1.41-1.41C17.32,9.58,17.32,5.14,20.05,2.41z\\\"></path><path d=\\\"M22.88,5.24l-1.41-1.41c-1.95,1.95-1.95,5.12,0,7.07l1.41-1.41C21.71,8.32,21.71,6.41,22.88,5.24z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path><path d=\\\"M16.4,2.06L15.34,1c-3.12,3.12-3.12,8.19,0,11.31l1.06-1.06C13.87,8.72,13.87,4.59,16.4,2.06z\\\"></path><path d=\\\"M18.53,4.18l-1.06-1.06c-1.95,1.95-1.95,5.12,0,7.07l1.06-1.06C17.16,7.77,17.16,5.55,18.53,4.18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"html\": {\n    \"name\": \"html\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9z M17.5,9H13c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1V14H16v-3.51h1V15h1.5v-5 C18.5,9.45,18.05,9,17.5,9z M11,9H6v1.5h1.75V15h1.5v-4.5H11V9z M24,15v-1.5h-2.5V9H20v6H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M4,8h1v4H4v-1.5H3V12H2V8h1v1.5h1V8z M6,9h1v3h1V9h1V8H6V9z M18.5,11H17V8h-1v4l2.5,0V11z M14.5,8h-4 C10.22,8,10,8.22,10,8.5V12h1V9h1v2h1V9h1v3h1V8.5C15,8.22,14.78,8,14.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_backup_restore\": {\n    \"name\": \"settings_backup_restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"admin_panel_settings\": {\n    \"name\": \"admin_panel_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"17\\\" cy=\\\"15.5\\\" fill-rule=\\\"evenodd\\\" r=\\\"1.12\\\"></circle><path d=\\\"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17 s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82 c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17 c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51 C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C21,19.21,19.21,21,17,21z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"13\\\" cy=\\\"11.88\\\" fill-rule=\\\"evenodd\\\" r=\\\".84\\\"></circle><path d=\\\"M13,13.38c-0.55,0-1.64,0.27-1.68,0.81c0.38,0.53,0.99,0.87,1.68,0.87 s1.31-0.35,1.68-0.87C14.64,13.64,13.55,13.38,13,13.38z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M14,9.14V6.18L9,4L4,6.18v3.27c0,3.03,2.13,5.86,5,6.55 c0.35-0.08,0.7-0.2,1.02-0.35C10.76,16.47,11.81,17,13,17c2.21,0,4-1.79,4-4C17,11.14,15.72,9.59,14,9.14z M9,14.97 c-2.3-0.67-4-3-4-5.51V6.84l4-1.75l4,1.75V9c-2.21,0-4,1.79-4,4c0,0.65,0.17,1.25,0.44,1.79C9.29,14.85,9.15,14.92,9,14.97z M13,16c-1.66,0-3-1.34-3-3c0-1.66,1.34-3,3-3s3,1.34,3,3C16,14.66,14.66,16,13,16z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"accessible_forward\": {\n    \"name\": \"accessible_forward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"18\\\" cy=\\\"4.54\\\" r=\\\"2\\\"></circle><path d=\\\"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle\": {\n    \"name\": \"check_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"face\": {\n    \"name\": \"face\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"grading\": {\n    \"name\": \"grading\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"12.25\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"6.75\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"9.5\\\"></rect><polygon points=\\\"12.17,14.59 11.46,13.88 10.76,14.59 12.17,16 15,13.17 14.29,12.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"contactless\": {\n    \"name\": \"contactless\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path><path d=\\\"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z\\\"></path><path d=\\\"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z\\\"></path><path d=\\\"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\\\"></path><path d=\\\"M6.72,8.71C6.9,9.11,6.99,9.53,7,9.98c0.01,0.44-0.09,0.88-0.28,1.31l0.91,0.41C7.88,11.14,8.01,10.56,8,9.97 C7.99,9.38,7.87,8.82,7.63,8.29L6.72,8.71z\\\"></path><path d=\\\"M11.17,6.72C11.72,7.83,12,8.93,12,9.99c0,1.06-0.28,2.17-0.83,3.3l0.9,0.44C12.69,12.46,13,11.2,13,9.99 c0-1.22-0.31-2.46-0.93-3.71L11.17,6.72z\\\"></path><path d=\\\"M8.94,7.69C9.31,8.44,9.5,9.25,9.5,10.08c0,0.83-0.19,1.57-0.55,2.22l0.87,0.49c0.45-0.8,0.68-1.71,0.68-2.71 c0-0.99-0.23-1.95-0.67-2.84L8.94,7.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"all_inbox\": {\n    \"name\": \"all_inbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-2 7h-3v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-4zM5 17h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z\\\"></path>\"\n      }\n    }\n  },\n  \"help\": {\n    \"name\": \"help\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"offline_pin\": {\n    \"name\": \"offline_pin\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"highlight_off\": {\n    \"name\": \"highlight_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_scan_wifi\": {\n    \"name\": \"perm_scan_wifi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"alarm_off\": {\n    \"name\": \"alarm_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"work_history\": {\n    \"name\": \"work_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,19V8h16v3.29c0.72,0.22,1.4,0.54,2,0.97V8c0-1.11-0.89-2-2-2h-4V4c0-1.11-0.89-2-2-2h-4C8.89,2,8,2.89,8,4v2H4 C2.89,6,2.01,6.89,2.01,8L2,19c0,1.11,0.89,2,2,2h7.68c-0.3-0.62-0.5-1.29-0.6-2H4z M10,4h4v2h-4V4z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,5H13V3.5C13,2.67,12.33,2,11.5,2h-3C7.67,2,7,2.67,7,3.5V5H3.5C2.67,5,2,5.67,2,6.5v9C2,16.33,2.67,17,3.5,17h5.38 c-0.18-0.47-0.31-0.97-0.36-1.5H3.5v-9h13v3.61c0.56,0.29,1.07,0.67,1.5,1.13V6.5C18,5.67,17.33,5,16.5,5z M11.5,5h-3V3.5h3V5z\\\"></path><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.15,16.85l-1.65-1.65V13h1v1.79 l1.35,1.35L15.15,16.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_enhance\": {\n    \"name\": \"camera_enhance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"accessible\": {\n    \"name\": \"accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-9 7c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07c-.41 1.16-1.52 2-2.83 2z\\\"></path>\"\n      }\n    }\n  },\n  \"pregnant_woman\": {\n    \"name\": \"pregnant_woman\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"http\": {\n    \"name\": \"http\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"info\": {\n    \"name\": \"info\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"view_day\": {\n    \"name\": \"view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 18H2v2h19v-2zm-2-8v4H4v-4h15m1-2H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm1-4H2v2h19V4z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture\": {\n    \"name\": \"picture_in_picture\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7h-8v6h8V7zm-2 4h-4V9h4v2zm4-8H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angledown\": {\n    \"name\": \"text_rotation_angledown\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z\\\"></path>\"\n      }\n    }\n  },\n  \"login\": {\n    \"name\": \"login\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,4v1h6v10h-6v1h6c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1H10z\\\"></path><polygon points=\\\"9.5,6.5 8.79,7.21 11.09,9.5 3,9.5 3,10.5 11.09,10.5 8.79,12.79 9.5,13.5 13,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"text_rotate_up\": {\n    \"name\": \"text_rotate_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_audio_off\": {\n    \"name\": \"spatial_audio_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C8,7.9,8.9,7,10,7z\\\"></path><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z M16,19H4v-0.78c0-0.38,0.2-0.72,0.52-0.88C5.71,16.73,7.63,16,10,16 c2.37,0,4.29,0.73,5.48,1.34C15.8,17.5,16,17.84,16,18.22V19z\\\"></path><path d=\\\"M20.36,1l-1.41,1.41c2.73,2.73,2.73,7.17,0,9.9l1.41,1.41C23.88,10.21,23.88,4.51,20.36,1z\\\"></path><path d=\\\"M17.54,10.9c1.95-1.95,1.95-5.12,0-7.07l-1.41,1.41c1.17,1.17,1.17,3.07,0,4.24L17.54,10.9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path><path d=\\\"M16.66,1L15.6,2.06c2.53,2.53,2.53,6.66,0,9.19l1.06,1.06C19.78,9.19,19.78,4.12,16.66,1z\\\"></path><path d=\\\"M14.54,3.12l-1.06,1.06c1.36,1.36,1.36,3.59,0,4.95l1.06,1.06C16.49,8.24,16.49,5.07,14.54,3.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_vertical\": {\n    \"name\": \"swipe_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,2h3.5H6v1.5V7H4.5V4.09c-1.86,2.11-3,4.88-3,7.91s1.14,5.79,3,7.91V17H6v3.5V22H4.5H1v-1.5h2.02 C1.13,18.18,0,15.22,0,12s1.13-6.18,3.02-8.5H1V2z M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25 c-0.56-1.26-2.04-1.83-3.3-1.27s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67 c0.49,0.19,1.05,0.18,1.53-0.04l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34 L15.5,20l-4.92-1.96l4.18-0.88l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12 L21.49,17.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M19.8,13.69l-1.18-4.17c-0.23-0.83-0.97-1.41-1.83-1.45L13.6,8l-0.91,0.41l-1.22-2.74C11.02,4.65,9.84,4.2,8.83,4.64 C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3L13,17.62 c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13C19.65,15.16,20,14.41,19.8,13.69z M13.54,16.23l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68 c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36l1.18,4.17 L13.54,16.23z M1,10c0,2.69,1.2,5.05,3,6.37V14h1v4H1v-1h2.18C1.26,15.47,0,12.91,0,10s1.26-5.47,3.18-7H1V2h4v4H4V3.63 C2.2,4.95,1,7.31,1,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gavel\": {\n    \"name\": \"gavel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_from_trash\": {\n    \"name\": \"restore_from_trash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm2 4h4v-4h2l-4-4-4 4h2z\\\"></path>\"\n      }\n    }\n  },\n  \"support\": {\n    \"name\": \"support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M12.16,4.41c1.57,0.61,2.82,1.85,3.43,3.42 l-2.78,1.15c-0.3-0.83-0.96-1.49-1.79-1.79L12.16,4.41z M7.84,4.41L9,7.18c-0.85,0.3-1.51,0.96-1.82,1.81v0L4.41,7.84 C5.02,6.27,6.27,5.02,7.84,4.41z M7.83,15.59c-1.57-0.61-2.82-1.86-3.43-3.43l2.78-1.15v0c0.3,0.84,0.97,1.51,1.81,1.81L7.83,15.59 z M8,10c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S8,11.1,8,10z M12.17,15.59l-1.15-2.78c0.84-0.3,1.5-0.97,1.79-1.81l2.77,1.16 C14.98,13.74,13.74,14.98,12.17,15.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"find_replace\": {\n    \"name\": \"find_replace\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z\\\"></path>\"\n      }\n    }\n  },\n  \"anchor\": {\n    \"name\": \"anchor\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"supervised_user_circle\": {\n    \"name\": \"supervised_user_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"data_exploration\": {\n    \"name\": \"data_exploration\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M12,20c-2.89,0-5.43-1.54-6.83-3.84 l2.95-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5l-3.69,3.7C4.11,13.5,4,12.76,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.05,20.5,19.5,20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16.75,16 c0,0.41-0.34,0.75-0.75,0.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75C16.41,15.25,16.75,15.59,16.75,16z M10,16.5 c-2.27,0-4.28-1.17-5.44-2.94l2.45-2.45l2.49,2.44l4-4V11H15V7h-4v1.5h1.43l-2.94,2.94L7,9l-3.14,3.14C3.63,11.47,3.5,10.75,3.5,10 c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"timeline\": {\n    \"name\": \"timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_card\": {\n    \"name\": \"add_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h10v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M24,17v2 h-3v3h-2v-3h-3v-2h3v-3h2v3H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16H12v-1.5H3.5V10H18V5.5C18,4.67,17.33,4,16.5,4z M16.5,7h-13V5.5 h13V7z M20,15.5h-2.5V18H16v-2.5h-2.5V14H16v-2.5h1.5V14H20V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"model_training\": {\n    \"name\": \"model_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,16h1.5v-1h-1.5V16z M10,8L10,8L10,8C10,8,10,8,10,8c-1.38,0-2.5,1.12-2.5,2.5C7.5,12,9.25,13,9.25,14 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,9.12,11.38,8,10,8z M6.47,13.53l-0.71,0.71C4.67,13.16,4,11.66,4,10 c0-3.31,2.69-6,6-6V2l2.5,2.5L10,7V5c-2.76,0-5,2.24-5,5C5,11.38,5.56,12.63,6.47,13.53z M14.24,14.24l-0.71-0.71 C14.44,12.63,15,11.38,15,10s-0.56-2.63-1.47-3.53l0.71-0.71C15.33,6.84,16,8.34,16,10S15.33,13.16,14.24,14.24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_week\": {\n    \"name\": \"calendar_view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M13,6h2.5v12H13V6z M11,18H8.5V6H11 V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_week\": {\n    \"name\": \"view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,18H4V6h4V18z M14,18h-4V6h4V18z M20,18h-4V6h4V18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M11.67,5.5v9H8.33v-9H11.67z M3.5,5.5h3.33v9H3.5V5.5z M16.5,14.5h-3.33v-9h3.33V14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_takeoff\": {\n    \"name\": \"flight_takeoff\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_left_alt\": {\n    \"name\": \"swipe_left_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.1,13c0.46,2.28,2.48,4,4.9,4c2.76,0,5-2.24,5-5s-2.24-5-5-5c-2.42,0-4.44,1.72-4.9,4H5.83l1.59-1.59L6,8l-4,4l4,4 l1.41-1.41L5.83,13H10.1z M15,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S16.66,15,15,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M8.07,10.75C8.42,12.6,10.05,14,12,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-1.95,0-3.58,1.4-3.93,3.25l-3.2,0l1.19-1.19 L5,7l-3,3l3,3l1.06-1.06l-1.19-1.19L8.07,10.75z M12,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C14.5,11.38,13.38,12.5,12,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history_toggle_off\": {\n    \"name\": \"history_toggle_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.45,4.58l-0.5-0.87C7.73,3.33,8.59,3.09,9.5,3.03v1C8.77,4.09,8.08,4.28,7.45,4.58z M15.97,9.5h1 c-0.06-0.91-0.3-1.77-0.69-2.55l-0.87,0.5C15.72,8.08,15.91,8.77,15.97,9.5z M12.55,4.58l0.5-0.87c-0.78-0.38-1.64-0.62-2.55-0.69 v1C11.23,4.09,11.92,4.28,12.55,4.58z M6.58,5.08l-0.5-0.87c-0.74,0.5-1.37,1.14-1.87,1.87l0.87,0.5C5.48,5.99,5.99,5.48,6.58,5.08 z M14.92,6.58l0.87-0.5c-0.5-0.74-1.14-1.37-1.87-1.87l-0.5,0.87C14.01,5.49,14.52,5.99,14.92,6.58z M7.45,15.42l-0.5,0.87 c0.78,0.38,1.64,0.62,2.55,0.69v-1C8.77,15.91,8.08,15.72,7.45,15.42z M4.03,10.5h-1c0.06,0.91,0.3,1.77,0.69,2.55l0.87-0.5 C4.28,11.92,4.09,11.23,4.03,10.5z M10.5,15.97v1c0.91-0.06,1.77-0.3,2.55-0.69l-0.5-0.87C11.92,15.72,11.23,15.91,10.5,15.97z M5.08,13.42l-0.87,0.5c0.5,0.74,1.14,1.37,1.87,1.87l0.5-0.87C5.99,14.52,5.48,14.01,5.08,13.42z M4.58,7.45l-0.87-0.5 C3.33,7.73,3.09,8.59,3.03,9.5h1C4.09,8.77,4.28,8.08,4.58,7.45z M15.97,10.5c-0.06,0.73-0.25,1.42-0.55,2.05l0.87,0.5 c0.38-0.78,0.62-1.64,0.69-2.55H15.97z M13.42,14.92l0.5,0.87c0.74-0.5,1.37-1.14,1.87-1.87l-0.87-0.5 C14.52,14.01,14.01,14.51,13.42,14.92z M10.5,7.05h-1v4l3.17,1.9l0.5-0.82l-2.67-1.58V7.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label_important\": {\n    \"name\": \"label_important\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99z\\\"></path>\"\n      }\n    }\n  },\n  \"published_with_changes\": {\n    \"name\": \"published_with_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.6,19.5H21v2h-6v-6h2v2.73c1.83-1.47,3-3.71,3-6.23c0-4.07-3.06-7.44-7-7.93V2.05c5.05,0.5,9,4.76,9,9.95 C22,14.99,20.68,17.67,18.6,19.5z M4,12c0-2.52,1.17-4.77,3-6.23V8.5h2v-6H3v2h2.4C3.32,6.33,2,9.01,2,12c0,5.19,3.95,9.45,9,9.95 v-2.02C7.06,19.44,4,16.07,4,12z M16.24,8.11l-5.66,5.66l-2.83-2.83l-1.41,1.41l4.24,4.24l7.07-7.07L16.24,8.11z\\\"></path>\"\n      }\n    }\n  },\n  \"flutter_dash\": {\n    \"name\": \"flutter_dash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M11.07,11.7c0.29-0.39,0.81-0.56,1.27-0.37c0.17,0.07,0.32,0.18,0.43,0.33c0.22,0.28,0.25,0.59,0.22,0.85 c-0.05,0.33-0.25,0.63-0.54,0.79c0,0-4.87,2.95-5.07,2.69S11.07,11.7,11.07,11.7z M22,10c0,2.5-1,3-1.5,3 c-0.23,0-0.44-0.1-0.62-0.26c-0.48,3.32-2.36,5.31-5.33,5.99c0.11,0.44,0.48,0.77,0.95,0.77l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C15.18,22.07,15,21.71,15,21.26c0-0.3,0.04-0.57,0.09-0.8c-0.78-0.16-1.39-0.78-1.55-1.56c-0.49,0.06-1,0.1-1.54,0.1 c-0.88,0-1.7-0.09-2.45-0.25C9.53,18.83,9.5,18.91,9.5,19c0,0.55,0.45,1,1,1l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C10.18,22.57,10,22.21,10,21.76c0-0.3,0.04-0.57,0.09-0.8C9.19,20.77,8.5,19.96,8.5,19c0-0.18,0.03-0.36,0.08-0.53 c-2.46-0.86-4.03-2.78-4.46-5.74C3.94,12.9,3.74,13,3.5,13C3,13,2,12.5,2,10c0-2.27,1.7-4.5,3-4.5c0.43,0,0.49,0.49,0.5,0.85 c1.28-1.78,3.26-3.02,5.55-3.29C11.25,2.1,12.13,1.5,13,1.5v1c0,0,0.33-0.5,1-0.5c0.67,0,1,0.5,1,0.5c-0.49,0-0.85,0.35-0.96,0.77 c1.82,0.48,3.39,1.59,4.46,3.08C18.51,5.99,18.57,5.5,19,5.5C20.3,5.5,22,7.73,22,10z M5,11c0,0.81,0.1,1.53,0.25,2.21 c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6c0.96,0,1.84,0.37,2.5,0.97 C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54c0.37,0.59,0.66,1.24,0.84,1.94 C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z M17.98,15.29c0-0.1,0.02-0.19,0.02-0.29 c0-1.01-0.26-1.95-0.7-2.78c-0.69,0.78-1.68,1.28-2.8,1.28c-0.27,0-0.54-0.03-0.79-0.09c0.14-0.23,0.23-0.49,0.27-0.77 c0.01-0.07,0.01-0.13,0.02-0.19c0.17,0.03,0.33,0.05,0.5,0.05c1.52,0,2.75-1.23,2.75-2.75S16.02,7,14.5,7 c-0.67,0-1.32,0.25-1.83,0.72L12,8.32l-0.67-0.6C10.82,7.25,10.17,7,9.5,7C7.98,7,6.75,8.23,6.75,9.75c0,1.34,0.96,2.46,2.23,2.7 l-0.76,0.83c-0.6-0.22-1.12-0.59-1.53-1.05C6.26,13.06,6,14,6,15c0,0.08,0.01,0.15,0.01,0.24C7.13,17.06,9.14,18,12,18 C14.88,18,16.88,17.09,17.98,15.29z M16,9.75c0,0.97-0.67,1.75-1.5,1.75S13,10.72,13,9.75S13.67,8,14.5,8S16,8.78,16,9.75z M15.25,8.88c0-0.21-0.17-0.38-0.38-0.38S14.5,8.67,14.5,8.88s0.17,0.38,0.38,0.38S15.25,9.08,15.25,8.88z M11,9.75 c0,0.97-0.67,1.75-1.5,1.75S8,10.72,8,9.75S8.67,8,9.5,8S11,8.78,11,9.75z M10.25,8.88c0-0.21-0.17-0.38-0.38-0.38 S9.5,8.67,9.5,8.88s0.17,0.38,0.38,0.38S10.25,9.08,10.25,8.88z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.26,9.56c0.23-0.32,0.65-0.45,1.01-0.3c0.14,0.06,0.26,0.15,0.35,0.26c0.18,0.22,0.2,0.47,0.17,0.68 c-0.04,0.27-0.2,0.5-0.43,0.63c0,0-3.89,2.36-4.06,2.15C6.14,12.78,9.26,9.56,9.26,9.56z M18,8.2c0,2-0.8,2.4-1.2,2.4 c-0.19,0-0.35-0.08-0.5-0.21c-0.38,2.65-1.89,4.25-4.26,4.79c0.08,0.35,0.39,0.62,0.76,0.62l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 c-0.11-0.17-0.26-0.45-0.26-0.82c0-0.24,0.03-0.45,0.08-0.64c-0.62-0.13-1.11-0.62-1.24-1.25c-0.39,0.05-0.8,0.08-1.23,0.08 c-0.71,0-1.36-0.07-1.96-0.2C8.02,15.26,8,15.33,8,15.4c0,0.44,0.36,0.8,0.8,0.8l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 C8.54,18.25,8.4,17.97,8.4,17.6c0-0.24,0.03-0.45,0.08-0.64c-0.73-0.15-1.28-0.8-1.28-1.57c0-0.15,0.03-0.29,0.06-0.42 c-1.97-0.69-3.22-2.22-3.57-4.59c-0.15,0.13-0.31,0.21-0.5,0.21C2.8,10.6,2,10.2,2,8.2c0-1.81,1.36-3.6,2.4-3.6 c0.34,0,0.39,0.39,0.4,0.68c1.02-1.43,2.61-2.41,4.44-2.63C9.4,1.88,10.1,1.4,10.8,1.4v0.8c0,0,0.26-0.4,0.8-0.4 c0.54,0,0.8,0.4,0.8,0.4c-0.39,0-0.68,0.28-0.76,0.62c1.46,0.39,2.71,1.27,3.57,2.46c0.01-0.29,0.06-0.68,0.4-0.68 C16.64,4.6,18,6.39,18,8.2z M4.4,9c0,0.65,0.08,1.23,0.2,1.77c0.15-0.55,0.37-1.07,0.67-1.54C5.1,8.85,5,8.44,5,8 c0-1.66,1.34-3,3-3c0.77,0,1.47,0.3,2,0.78C10.53,5.3,11.23,5,12,5c1.66,0,3,1.34,3,3c0,0.44-0.1,0.85-0.27,1.23 c0.3,0.47,0.53,0.99,0.67,1.55c0.12-0.54,0.2-1.12,0.2-1.78c0-3.09-2.51-5.6-5.6-5.6C6.91,3.4,4.4,5.91,4.4,9z M14.78,12.44 c0-0.08,0.02-0.15,0.02-0.24c0-0.8-0.21-1.56-0.56-2.22C13.69,10.6,12.9,11,12,11c-0.22,0-0.43-0.02-0.63-0.07 c0.11-0.19,0.18-0.4,0.21-0.62c0.01-0.05,0.01-0.1,0.01-0.16c0.13,0.03,0.27,0.04,0.4,0.04c1.21,0,2.2-0.99,2.2-2.2 S13.21,5.8,12,5.8c-0.53,0-1.05,0.2-1.46,0.57L10,6.86L9.46,6.37C9.05,6,8.53,5.8,8,5.8C6.79,5.8,5.8,6.79,5.8,8 c0,1.07,0.77,1.97,1.79,2.16l-0.61,0.66c-0.48-0.17-0.89-0.47-1.22-0.84C5.41,10.65,5.2,11.4,5.2,12.2c0,0.07,0.01,0.12,0.01,0.19 C6.1,13.85,7.71,14.6,10,14.6C12.3,14.6,13.9,13.87,14.78,12.44z M13.2,8c0,0.77-0.54,1.4-1.2,1.4S10.8,8.77,10.8,8 s0.54-1.4,1.2-1.4S13.2,7.23,13.2,8z M12.6,7.3c0-0.17-0.13-0.3-0.3-0.3C12.13,7,12,7.13,12,7.3s0.13,0.3,0.3,0.3 C12.47,7.6,12.6,7.47,12.6,7.3z M9.2,8c0,0.77-0.54,1.4-1.2,1.4S6.8,8.77,6.8,8S7.34,6.6,8,6.6S9.2,7.23,9.2,8z M8.6,7.3 C8.6,7.13,8.47,7,8.3,7C8.13,7,8,7.13,8,7.3s0.13,0.3,0.3,0.3C8.47,7.6,8.6,7.47,8.6,7.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gif\": {\n    \"name\": \"gif\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z\\\"></path>\"\n      }\n    }\n  },\n  \"event\": {\n    \"name\": \"event\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes\": {\n    \"name\": \"speaker_notes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_remote\": {\n    \"name\": \"settings_remote\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z\\\"></path><circle cx=\\\"12\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z\\\"></path>\"\n      }\n    }\n  },\n  \"view_timeline\": {\n    \"name\": \"view_timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"6\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"12\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"11\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"11\\\" y=\\\"6\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"9.25\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rowing\": {\n    \"name\": \"rowing\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility_new\": {\n    \"name\": \"accessibility_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_out\": {\n    \"name\": \"zoom_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_down\": {\n    \"name\": \"text_rotation_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z\\\"></path>\"\n      }\n    }\n  },\n  \"outlet\": {\n    \"name\": \"outlet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_aware\": {\n    \"name\": \"noise_aware\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,15h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61l-1.36-1.36 C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02c-0.25-2.25-2.16-4-4.47-4C9.02,6,7,8.02,7,10.5 c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82C10.56,17.17,11.71,18,13,18C14.65,18,16,16.65,16,15z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M3.6,6.58l1.58,1.26c0.35-0.57,0.77-1.1,1.24-1.57L4.85,5.02C4.38,5.49,3.97,6.02,3.6,6.58z\\\"></path><path d=\\\"M9.46,4.42L8.59,2.61c-0.63,0.23-1.24,0.52-1.8,0.87l0.87,1.81C8.22,4.93,8.82,4.64,9.46,4.42z\\\"></path><path d=\\\"M4.49,9.26L2.53,8.81c-0.21,0.63-0.36,1.28-0.44,1.95l1.96,0.45C4.11,10.53,4.27,9.88,4.49,9.26z\\\"></path><path d=\\\"M20.4,6.58c-0.36-0.56-0.78-1.09-1.25-1.56l-1.58,1.26c0.48,0.47,0.89,0.99,1.24,1.57L20.4,6.58z\\\"></path><path d=\\\"M4.04,12.79l-1.96,0.45c0.08,0.67,0.23,1.33,0.44,1.95l1.97-0.45C4.27,14.12,4.11,13.47,4.04,12.79z\\\"></path><path d=\\\"M17.21,3.48c-0.57-0.35-1.17-0.64-1.8-0.87l-0.87,1.81c0.64,0.22,1.24,0.51,1.8,0.87L17.21,3.48z\\\"></path><path d=\\\"M13,4.07V2.05C12.67,2.02,12.34,2,12,2s-0.67,0.02-1,0.05v2.02C11.33,4.03,11.66,4,12,4S12.67,4.03,13,4.07z\\\"></path><path d=\\\"M11,19.93v2.02c0.33,0.03,0.66,0.05,1,0.05s0.67-0.02,1-0.05v-2.02C12.67,19.97,12.34,20,12,20S11.33,19.97,11,19.93z\\\"></path><path d=\\\"M19.51,14.74l1.97,0.45c0.21-0.63,0.36-1.28,0.44-1.95l-1.96-0.45C19.89,13.47,19.73,14.12,19.51,14.74z\\\"></path><path d=\\\"M19.96,11.21l1.96-0.45c-0.08-0.67-0.23-1.33-0.44-1.95l-1.97,0.45C19.73,9.88,19.89,10.53,19.96,11.21z\\\"></path><path d=\\\"M17.58,17.73l1.58,1.26c0.47-0.48,0.88-1,1.25-1.56l-1.58-1.26C18.47,16.73,18.05,17.26,17.58,17.73z\\\"></path><path d=\\\"M6.79,20.52c0.57,0.35,1.17,0.64,1.8,0.87l0.87-1.81c-0.64-0.22-1.24-0.51-1.8-0.87L6.79,20.52z\\\"></path><path d=\\\"M14.54,19.58l0.87,1.81c0.63-0.23,1.24-0.52,1.8-0.87l-0.87-1.81C15.78,19.07,15.18,19.36,14.54,19.58z\\\"></path><path d=\\\"M3.6,17.42c0.36,0.56,0.78,1.09,1.25,1.56l1.58-1.26c-0.48-0.47-0.89-0.99-1.24-1.57L3.6,17.42z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M13,12.75h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58c-0.22-0.9-0.77-1.7-1.69-2.44 c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56c-0.35-1.71-1.86-3-3.67-3 C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62C8.8,14.22,9.63,15,10.75,15 C11.99,15,13,13.99,13,12.75z\\\"></path><path d=\\\"M3.88,7.83L2.41,7.5C2.25,7.97,2.14,8.46,2.08,8.96L3.54,9.3C3.59,8.79,3.71,8.3,3.88,7.83z\\\"></path><path d=\\\"M7.88,3.86L7.22,2.51C6.75,2.68,6.3,2.9,5.87,3.16l0.65,1.36C6.95,4.25,7.4,4.03,7.88,3.86z\\\"></path><path d=\\\"M5.42,5.39L4.25,4.45C3.9,4.81,3.59,5.21,3.31,5.62l1.18,0.94C4.76,6.14,5.07,5.74,5.42,5.39z\\\"></path><path d=\\\"M10.75,3.55V2.04C10.5,2.01,10.25,2,10,2S9.5,2.01,9.25,2.04v1.51C9.5,3.52,9.75,3.5,10,3.5S10.5,3.52,10.75,3.55z\\\"></path><path d=\\\"M16.46,9.29l1.46-0.33c-0.07-0.5-0.18-0.99-0.33-1.46l-1.47,0.34C16.29,8.3,16.4,8.79,16.46,9.29z\\\"></path><path d=\\\"M14.13,3.16c-0.43-0.26-0.88-0.48-1.35-0.65l-0.65,1.36c0.48,0.17,0.93,0.39,1.35,0.65L14.13,3.16z\\\"></path><path d=\\\"M16.69,5.62c-0.28-0.42-0.59-0.81-0.94-1.17l-1.17,0.94c0.36,0.35,0.67,0.75,0.93,1.18L16.69,5.62z\\\"></path><path d=\\\"M16.46,10.7c-0.05,0.51-0.17,1-0.34,1.46l1.47,0.34c0.16-0.47,0.27-0.96,0.33-1.46L16.46,10.7z\\\"></path><path d=\\\"M12.12,16.14l0.65,1.36c0.47-0.18,0.92-0.39,1.35-0.65l-0.65-1.36C13.05,15.75,12.6,15.97,12.12,16.14z\\\"></path><path d=\\\"M9.25,16.45v1.51C9.5,17.99,9.75,18,10,18s0.5-0.01,0.75-0.04v-1.51c-0.25,0.03-0.5,0.05-0.75,0.05S9.5,16.48,9.25,16.45z\\\"></path><path d=\\\"M14.58,14.61l1.18,0.94c0.35-0.36,0.66-0.75,0.94-1.17l-1.18-0.94C15.24,13.86,14.93,14.26,14.58,14.61z\\\"></path><path d=\\\"M3.54,10.71l-1.46,0.33c0.07,0.5,0.18,0.99,0.33,1.46l1.47-0.34C3.71,11.7,3.6,11.21,3.54,10.71z\\\"></path><path d=\\\"M3.31,14.38c0.28,0.42,0.59,0.81,0.94,1.17l1.17-0.94c-0.36-0.35-0.67-0.75-0.93-1.18L3.31,14.38z\\\"></path><path d=\\\"M5.87,16.84c0.43,0.26,0.88,0.48,1.35,0.65l0.65-1.36c-0.48-0.17-0.93-0.39-1.35-0.65L5.87,16.84z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"leaderboard\": {\n    \"name\": \"leaderboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"close_fullscreen\": {\n    \"name\": \"close_fullscreen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z\\\"></path>\"\n      }\n    }\n  },\n  \"tips_and_updates\": {\n    \"name\": \"tips_and_updates\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,19h8v-2H5V19z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27 C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M14.5,9.5C14.5,6.47,12.03,4,9,4S3.5,6.47,3.5,9.5 c0,2.47,1.49,3.89,2.35,4.5h6.3C13.01,13.39,14.5,11.97,14.5,9.5z M21.37,7.37L20,8l1.37,0.63L22,10l0.63-1.37L24,8l-1.37-0.63L22,6 L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,14h6v1.5h-6V14z M13.5,8c0,2.09-1.07,3.93-2.69,5H4.19C2.57,11.93,1.5,10.09,1.5,8c0-3.31,2.69-6,6-6S13.5,4.69,13.5,8 z M12,8c0-2.48-2.02-4.5-4.5-4.5S3,5.52,3,8c0,1.37,0.62,2.65,1.67,3.5h5.65C11.38,10.65,12,9.37,12,8z M7.5,18 C8.33,18,9,17.33,9,16.5H6C6,17.33,6.67,18,7.5,18z M18.5,8l0.47-1.03L20,6.5l-1.03-0.47L18.5,5l-0.47,1.03L17,6.5l1.03,0.47L18.5,8 z M15.5,5l0.78-1.72L18,2.5l-1.72-0.78L15.5,0l-0.78,1.72L13,2.5l1.72,0.78L15.5,5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_antenna\": {\n    \"name\": \"settings_input_antenna\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_person\": {\n    \"name\": \"lock_person\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,20V10h12v1c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26c-0.42-0.6-0.75-1.28-0.97-2H6z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M18,15c0.83,0,1.5,0.67,1.5,1.5S18.83,18,18,18 s-1.5-0.67-1.5-1.5S17.17,15,18,15z M18,21c-1.03,0-1.94-0.52-2.48-1.32C16.25,19.26,17.09,19,18,19s1.75,0.26,2.48,0.68 C19.94,20.48,19.03,21,18,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M5.5,16.5v-8h9v1.03C14.66,9.51,14.83,9.5,15,9.5c0.34,0,0.68,0.04,1,0.1V8.5C16,7.67,15.33,7,14.5,7H14V5 c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5C4.67,7,4,7.67,4,8.5v8C4,17.33,4.67,18,5.5,18h4.89c-0.3-0.46-0.53-0.96-0.68-1.5H5.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M15,11c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S17.21,11,15,11z M15,12c0.83,0,1.5,0.67,1.5,1.5S15.83,15,15,15 c-0.83,0-1.5-0.67-1.5-1.5S14.17,12,15,12z M15,18c-1.09,0-2.03-0.58-2.56-1.45c0.73-0.5,1.61-0.8,2.56-0.8s1.83,0.3,2.56,0.8 C17.03,17.42,16.09,18,15,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"toll\": {\n    \"name\": \"toll\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmarks\": {\n    \"name\": \"bookmarks\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7v12.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10m4-6H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"outbond\": {\n    \"name\": \"outbond\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path>\"\n      }\n    }\n  },\n  \"view_quilt\": {\n    \"name\": \"view_quilt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33v-4h3.33V17z M19,17h-3.33v-4H19V17z M19,11h-8.67V7H19V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-2.75h2.67V13.5z M15.5,13.5h-2.67v-2.75h2.67V13.5z M15.5,9.25H8.67V6.5h6.83V9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_day\": {\n    \"name\": \"calendar_view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"shop_two\": {\n    \"name\": \"shop_two\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z\\\"></path>\"\n      }\n    }\n  },\n  \"done_all\": {\n    \"name\": \"done_all\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z\\\"></path>\"\n      }\n    }\n  },\n  \"percent\": {\n    \"name\": \"percent\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7.5,4C5.57,4,4,5.57,4,7.5S5.57,11,7.5,11S11,9.43,11,7.5S9.43,4,7.5,4z M7.5,9C6.67,9,6,8.33,6,7.5S6.67,6,7.5,6 S9,6.67,9,7.5S8.33,9,7.5,9z M16.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S18.43,13,16.5,13z M16.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,18,16.5,18z M5.41,20L4,18.59L18.59,4L20,5.41L5.41,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,4C5.12,4,4,5.12,4,6.5C4,7.88,5.12,9,6.5,9S9,7.88,9,6.5C9,5.12,7.88,4,6.5,4z M6.5,7.5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,7.05,7.05,7.5,6.5,7.5z M13.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5C16,12.12,14.88,11,13.5,11z M13.5,14.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C14.5,14.05,14.05,14.5,13.5,14.5z M5.06,16L4,14.94L14.94,4L16,5.06L5.06,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_phone\": {\n    \"name\": \"settings_phone\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"note_add\": {\n    \"name\": \"note_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy_alt\": {\n    \"name\": \"view_comfy_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"13\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_box\": {\n    \"name\": \"account_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,19H7v-0.24 C8.42,17.62,10.16,17,12,17s3.58,0.62,5,1.76V19z M19,17.86C17.2,16.09,14.73,15,12,15s-5.2,1.09-7,2.86V5h14V17.86z M12,13 c1.93,0,3.5-1.57,3.5-3.5S13.93,6,12,6c-1.93,0-3.5,1.57-3.5,3.5S10.07,13,12,13z M12,8c0.83,0,1.5,0.67,1.5,1.5S12.83,11,12,11 s-1.5-0.67-1.5-1.5S11.17,8,12,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M5.52,15.5C6.77,14.56,8.32,14,10,14s3.23,0.56,4.48,1.5H5.52z M15.5,14.39c-1.52-1.18-3.43-1.89-5.5-1.89s-3.98,0.71-5.5,1.89 V4.5h11V14.39z\\\"></path><path d=\\\"M10,11.5c1.66,0,3-1.34,3-3s-1.34-3-3-3s-3,1.34-3,3S8.34,11.5,10,11.5z M10,7c0.83,0,1.5,0.67,1.5,1.5S10.83,10,10,10 S8.5,9.33,8.5,8.5S9.17,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alarm_on\": {\n    \"name\": \"alarm_on\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"flaky\": {\n    \"name\": \"flaky\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6,6.71L6.71,6l1.06,1.06L8.83,6l0.71,0.71L8.47,7.77l1.06,1.06L8.83,9.54L7.77,8.47L6.71,9.54L6,8.83l1.06-1.06L6,6.71z M10,16 c-1.65,0-3.15-0.67-4.24-1.76l8.48-8.48C15.33,6.85,16,8.35,16,10C16,13.31,13.31,16,10,16z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><polygon fill-rule=\\\"evenodd\\\" points=\\\"11.41,12.59 10.41,11.59 9.71,12.29 11.41,14 14.21,11.21 13.5,10.5\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"outbox\": {\n    \"name\": \"outbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"11,9.83 11,14 13,14 13,9.83 14.59,11.41 16,10 12,6 8,10 9.41,11.41\\\"></polygon><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5v-3h3.02 c0.91,1.21,2.35,2,3.98,2s3.06-0.79,3.98-2H19V19z M19,14h-4.18c-0.41,1.16-1.51,2-2.82,2s-2.4-0.84-2.82-2H5V5h14V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-3h2.34c0.56,1.18,1.77,2,3.16,2s2.6-0.82,3.16-2h2.34V15.5z M15.5,11H12c0,1.1-0.9,2-2,2s-2-0.9-2-2H4.5V4.5h11 V11z\\\"></path><polygon points=\\\"9.25,8.37 9.25,11 10.75,11 10.75,8.37 11.94,9.56 13,8.5 10,5.5 7,8.5 8.06,9.56\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"verified_user\": {\n    \"name\": \"verified_user\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_turned_in\": {\n    \"name\": \"assignment_turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"extension_off\": {\n    \"name\": \"extension_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.39,4.22l1.62,1.62c0,0.05-0.01,0.1-0.01,0.16v3.8C5.7,9.8,6,11.96,6,12.5c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8 c0-2.71,2.16-3,2.7-3c0.54,0,2.7,0.29,2.7,3H18c0.06,0,0.11,0,0.16-0.01l1.61,1.61l1.41-1.41L2.81,2.81L1.39,4.22z M11.5,16 c-1.5,0-3.57,0.83-4.37,3H5v-2.13c2.17-0.8,3-2.87,3-4.37c0-0.69-0.18-1.5-0.58-2.25l6.33,6.33C13,16.18,12.19,16,11.5,16z M8.83,6 l-2-2H9c0-1.38,1.12-2.5,2.5-2.5S14,2.62,14,4h4c1.1,0,2,0.9,2,2v4c1.38,0,2.5,1.12,2.5,2.5S21.38,15,20,15v2.17l-2-2V13h2 c0.28,0,0.5-0.22,0.5-0.5S20.28,12,20,12h-2V6h-6V4c0-0.28-0.22-0.5-0.5-0.5S11,3.72,11,4v2H8.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V8c1.1,0,2,0.9,2,2s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h2.88l1.13,1.13L17.07,17.07z M10,13.5c-1.39,0-2.6,0.82-3.16,2H4.5v-2.34c1.18-0.56,2-1.77,2-3.16 c0-0.76-0.24-1.46-0.66-2.03l6.19,6.19C11.46,13.74,10.76,13.5,10,13.5z M19,10c0,1.1-0.9,2-2,2v2.88l-1.5-1.5V10.5H17 c0.28,0,0.5-0.22,0.5-0.5S17.28,9.5,17,9.5h-1.5v-5h-5V3c0-0.28-0.22-0.5-0.5-0.5S9.5,2.72,9.5,3v1.5H6.62L5.12,3H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h3.5C16.33,3,17,3.67,17,4.5V8C18.1,8,19,8.9,19,10z\\\"></path>\"\n      }\n    }\n  },\n  \"join_left\": {\n    \"name\": \"join_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path></g><g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_access_shortcut_add\": {\n    \"name\": \"switch_access_shortcut_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M12,12c0-3.09,1.38-5.94,3.44-8 L12,4V2h7v7h-2l0-3.72c-1.8,1.74-3,4.2-3,6.72c0,3.32,2.1,6.36,5,7.82L19,22C14.91,20.41,12,16.35,12,12z M24,14h-2v-2h-2v2h-2v2h2 v2h2v-2h2V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.55,1.12-4.89,2.89-6.5L10,3.5V2h5.5v5.5H14l0-2.97c-1.52,1.33-2.5,3.31-2.5,5.47 c0,2.81,1.64,5.23,4,6.37L15.5,18z M20,11.5h-1.5V10H17v1.5h-1.5V13H17v1.5h1.5V13H20V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_by_default\": {\n    \"name\": \"disabled_by_default\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread_mailbox\": {\n    \"name\": \"markunread_mailbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"ads_click\": {\n    \"name\": \"ads_click\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26L22,15l-10-3l3,10l1.26-3.77l4.27,4.27l1.98-1.98L18.23,16.26z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.09,18.5l-3.47-3.47L12.5,18L10,10l8,2.5l-2.97,1.11l3.47,3.47L17.09,18.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5 s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0 c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45C16.5,6.42,13.58,3.5,10,3.5 M10,6.5 c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0 c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\\\"></path>\"\n      }\n    }\n  },\n  \"favorite\": {\n    \"name\": \"favorite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z\\\"></path>\"\n      }\n    }\n  },\n  \"width_wide\": {\n    \"name\": \"width_wide\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h2v12H4z M8,18V6h8v12H8z M20,18h-2V6h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,14.5v-9H5v9H3.5z M6.5,14.5v-9h7v9H6.5z M16.5,14.5H15v-9h1.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_off\": {\n    \"name\": \"edit_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14.06,9.02l0.92,0.92l-1.11,1.11l1.41,1.41l2.52-2.52l-3.75-3.75l-2.52,2.52l1.41,1.41L14.06,9.02z M20.71,7.04 c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C18.17,3.09,17.92,3,17.66,3s-0.51,0.1-0.7,0.29l-1.83,1.83l3.75,3.75L20.71,7.04z M2.81,2.81L1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71-5.71l7.32,7.32l1.41-1.41L2.81,2.81z M5.92,19H5v-0.92l5.13-5.13l0.92,0.92 L5.92,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"javascript\": {\n    \"name\": \"javascript\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,14v-1h1.5v0.5h2v-1H13c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1H16 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C12.45,15,12,14.55,12,14z M9,9v4.5H7.5v-1H6v1C6,14.33,6.67,15,7.5,15H9 c0.83,0,1.5-0.67,1.5-1.5V9C10.5,9,9.83,9,9,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.5,11.5v-0.75h1V11h1v-0.75H11c-0.28,0-0.5-0.22-0.5-0.5V8.5C10.5,8.22,10.72,8,11,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1 V9h-1v0.75H13c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5h-2C10.72,12,10.5,11.78,10.5,11.5z M8,8v3H7v-1H6v1.5 C6,11.78,6.22,12,6.5,12h2C8.78,12,9,11.78,9,11.5V8H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"class\": {\n    \"name\": \"class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_power\": {\n    \"name\": \"settings_power\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"fax\": {\n    \"name\": \"fax\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,9h-1V4H8v5H7.22C6.67,8.39,5.89,8,5,8c-1.66,0-3,1.34-3,3v7c0,1.66,1.34,3,3,3c0.89,0,1.67-0.39,2.22-1H22v-8 C22,10.34,20.66,9,19,9z M6,18c0,0.55-0.45,1-1,1s-1-0.45-1-1v-7c0-0.55,0.45-1,1-1s1,0.45,1,1V18z M10,6h6v3h-6V6z M20,18H8v-7 h11c0.55,0,1,0.45,1,1V18z\\\"></path><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><g><rect height=\\\"5\\\" width=\\\"4\\\" x=\\\"9\\\" y=\\\"12\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,9.5c0-1.1-0.9-2-2-2h-1.4V4H7v3.5H6.49c-0.46-0.6-1.17-1-1.99-1C3.12,6.5,2,7.62,2,9v5.5C2,15.88,3.12,17,4.5,17 c0.82,0,1.53-0.4,1.99-1H18V9.5z M8.5,5.5h4.6v2H8.5V5.5z M3.5,14.5V9c0-0.55,0.45-1,1-1s1,0.45,1,1v5.5c0,0.55-0.45,1-1,1 S3.5,15.05,3.5,14.5z M16.5,14.5H7V9h9c0.28,0,0.5,0.22,0.5,0.5V14.5z\\\"></path><g><circle cx=\\\"12.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle></g><g><circle cx=\\\"12.5\\\" cy=\\\"12.75\\\" r=\\\".75\\\"></circle></g><g><circle cx=\\\"14.75\\\" cy=\\\"12.75\\\" r=\\\".75\\\"></circle></g><g><circle cx=\\\"14.75\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle></g><rect height=\\\"3.5\\\" width=\\\"3\\\" x=\\\"8\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"filter_alt_off\": {\n    \"name\": \"filter_alt_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.95,6l-3.57,4.55l1.43,1.43c1.03-1.31,4.98-6.37,4.98-6.37C20.3,4.95,19.83,4,19,4H6.83l2,2H16.95z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22L10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-2.17l5.78,5.78l1.41-1.41L2.81,2.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13.39,5.5l-2.6,3.17l1.07,1.07l4.03-4.92C16.15,4.49,15.92,4,15.5,4H6.12l1.5,1.5H13.39z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99L9,11.12v4.38C9,15.78,9.22,16,9.5,16h1c0.28,0,0.5-0.22,0.5-0.5v-2.38l5.01,5.01l1.06-1.06 L2.93,2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"spatial_audio\": {\n    \"name\": \"spatial_audio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C8,7.9,8.9,7,10,7z\\\"></path><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z M16,19H4v-0.78c0-0.38,0.2-0.72,0.52-0.88C5.71,16.73,7.63,16,10,16 c2.37,0,4.29,0.73,5.48,1.34C15.8,17.5,16,17.84,16,18.22V19z\\\"></path><path d=\\\"M16,1h-2c0,4.97,4.03,9,9,9V8C19.14,8,16,4.86,16,1z\\\"></path><path d=\\\"M20,1h-2c0,2.76,2.24,5,5,5V4C21.35,4,20,2.65,20,1z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path><path d=\\\"M12.5,1H11c0,4.42,3.58,8,8,8V7.5C15.42,7.5,12.5,4.58,12.5,1z\\\"></path><path d=\\\"M15.5,1H14c0,2.76,2.24,5,5,5V4.5C17.07,4.5,15.5,2.93,15.5,1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"density_small\": {\n    \"name\": \"density_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"11.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"7\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"2.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"16\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"rounded_corner\": {\n    \"name\": \"rounded_corner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z\\\"></path>\"\n      }\n    }\n  },\n  \"favorite_border\": {\n    \"name\": \"favorite_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less_double\": {\n    \"name\": \"unfold_less_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.58,1.41 15.16,0 11.99,3.17 8.82,0 7.41,1.41 11.99,6\\\"></polygon><polygon points=\\\"16.58,6.41 15.16,5 11.99,8.17 8.82,5 7.41,6.41 11.99,11\\\"></polygon><polygon points=\\\"7.42,17.59 8.84,19 12.01,15.83 15.18,19 16.59,17.59 12.01,13\\\"></polygon><polygon points=\\\"7.42,22.59 8.84,24 12.01,20.83 15.18,24 16.59,22.59 12.01,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"13.37,1.06 12.31,0 10,2.31 7.69,0 6.63,1.06 10,4.43\\\"></polygon><polygon points=\\\"13.37,5.06 12.31,4 10,6.31 7.69,4 6.63,5.06 10,8.43\\\"></polygon><polygon points=\\\"6.63,14.94 7.69,16 10,13.69 12.31,16 13.37,14.94 10,11.57\\\"></polygon><polygon points=\\\"6.63,18.94 7.69,20 10,17.69 12.31,20 13.37,18.94 10,15.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"settings_applications\": {\n    \"name\": \"settings_applications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"backup_table\": {\n    \"name\": \"backup_table\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z\\\"></path><path d=\\\"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M16,6v10H6v1h10c0.55,0,1-0.45,1-1V6H16z\\\"></path></g><g><path d=\\\"M14,13V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v9c0,0.55,0.45,1,1,1h9C13.55,14,14,13.55,14,13z M4,4h9v4H4V4z M8,13H4 V9h4V13z M9,9h4v4H9V9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"swipe_right_alt\": {\n    \"name\": \"swipe_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.9,11C13.44,8.72,11.42,7,9,7c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h4.27l-1.59,1.59L18,16l4-4l-4-4 l-1.41,1.41L18.17,11H13.9z M9,9c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S7.34,9,9,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M11.93,9.25C11.58,7.4,9.95,6,8,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c1.95,0,3.58-1.4,3.93-3.25l3.2,0l-1.19,1.19L15,13 l3-3l-3-3l-1.06,1.06l1.19,1.19L11.93,9.25z M8,7.5c1.38,0,2.5,1.12,2.5,2.5c0,1.38-1.12,2.5-2.5,2.5S5.5,11.38,5.5,10 C5.5,8.62,6.62,7.5,8,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"update\": {\n    \"name\": \"update\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"join_full\": {\n    \"name\": \"join_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c2.8,2.34,3.03,5.53,3.03,6.5c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19 c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10c0,0.89-0.23,3.08-2.15,4.81 c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turned_in\": {\n    \"name\": \"turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"lock\": {\n    \"name\": \"lock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_reset\": {\n    \"name\": \"lock_reset\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c-4.97,0-9,4.03-9,9c0,0.06,0.01,0.12,0.01,0.19l-1.84-1.84l-1.41,1.41L5,16l4.24-4.24l-1.41-1.41l-1.82,1.82 C6.01,12.11,6,12.06,6,12c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7c-1.9,0-3.62-0.76-4.88-1.99L6.7,18.42 C8.32,20.01,10.55,21,13,21c4.97,0,9-4.03,9-9S17.97,3,13,3z M15,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C16,11.45,15.55,11,15,11z M14,11h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,10c0,3.87-3.13,7-7,7c-2.22,0-4.2-1.04-5.48-2.65l1.07-1.07c1,1.35,2.6,2.22,4.41,2.22c3.03,0,5.5-2.47,5.5-5.5 S13.03,4.5,10,4.5c-3.04,0-5.56,2.49-5.49,5.62l1.18-1.18L6.75,10l-3,3l-3-3l1.06-1.06l1.2,1.2C2.93,6.11,6.18,3,10,3 C13.87,3,17,6.13,17,10z M12.25,10v2.25c0,0.41-0.34,0.75-0.75,0.75h-3c-0.41,0-0.75-0.34-0.75-0.75V10c0-0.41,0.34-0.75,0.75-0.75 V8.5C8.5,7.67,9.17,7,10,7s1.5,0.67,1.5,1.5v0.75C11.91,9.25,12.25,9.59,12.25,10z M10.75,8.5c0-0.41-0.34-0.75-0.75-0.75 S9.25,8.09,9.25,8.5v0.75h1.5V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"online_prediction\": {\n    \"name\": \"online_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,14h1.5v1h-1.5V14z M10,7L10,7L10,7C10,7,10,7,10,7C8.62,7,7.5,8.12,7.5,9.5C7.5,11,9.25,12,9.25,13 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,8.12,11.38,7,10,7z M4,10c0-1.65,0.67-3.15,1.76-4.24L5.05,5.05 C3.78,6.32,3,8.07,3,10c0,1.93,0.78,3.68,2.05,4.95l0.71-0.71C4.67,13.15,4,11.65,4,10z M17,10c0-1.93-0.78-3.68-2.05-4.95 l-0.71,0.71C15.33,6.85,16,8.35,16,10c0,1.65-0.67,3.15-1.76,4.24l0.71,0.71C16.22,13.68,17,11.93,17,10z M6.46,13.54l0.71-0.71 C6.45,12.1,6,11.1,6,10c0-1.1,0.45-2.1,1.17-2.83L6.46,6.46C5.56,7.37,5,8.62,5,10C5,11.38,5.56,12.63,6.46,13.54z M14,10 c0,1.1-0.45,2.1-1.17,2.83l0.71,0.71C14.44,12.63,15,11.38,15,10c0-1.38-0.56-2.63-1.46-3.54l-0.71,0.71C13.55,7.9,14,8.9,14,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_view\": {\n    \"name\": \"table_view\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_weight\": {\n    \"name\": \"line_weight\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z\\\"></path>\"\n      }\n    }\n  },\n  \"g_translate\": {\n    \"name\": \"g_translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment\": {\n    \"name\": \"assignment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"build\": {\n    \"name\": \"build\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.61 18.99l-9.08-9.08c.93-2.34.45-5.1-1.44-7C9.79.61 6.21.4 3.66 2.26L7.5 6.11 6.08 7.52 2.25 3.69C.39 6.23.6 9.82 2.9 12.11c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.01 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25C3.37 9.76 2.93 8.5 3 7.26l3.09 3.09 4.24-4.24-3.09-3.09c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.71-.42 1.37-.88 1.96l9.45 9.45-.88.89z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_shopping_cart\": {\n    \"name\": \"remove_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zM20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pin_invoke\": {\n    \"name\": \"pin_invoke\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12v6c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10l0,2H4v12h16v-6H22z M22,7c0-1.66-1.34-3-3-3 c-1.66,0-3,1.34-3,3s1.34,3,3,3C20.66,10,22,8.66,22,7z M9.34,12h2.24l-2.95,2.95l1.41,1.41L13,13.42v2.24h2V10H9.34V12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10v4.5c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4H12c0,0,0.01,1.48,0,1.5H3.5v9h13V10 H18z M18,6.25C18,5.01,16.99,4,15.75,4C14.5,4,13.5,5.01,13.5,6.25s1.01,2.25,2.25,2.25S18,7.49,18,6.25z M7.76,10h1.68l-2.21,2.21 l1.06,1.06l2.21-2.21v1.68H12V8.5H7.76V10z\\\"></path>\"\n      }\n    }\n  },\n  \"dashboard\": {\n    \"name\": \"dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v2h-4V5h4M9 5v6H5V5h4m10 8v6h-4v-6h4M9 17v2H5v-2h4M21 3h-8v6h8V3zM11 3H3v10h8V3zm10 8h-8v10h8V11zm-10 4H3v6h8v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"track_changes\": {\n    \"name\": \"track_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z\\\"></path>\"\n      }\n    }\n  },\n  \"join_right\": {\n    \"name\": \"join_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M16.5,12c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7s-3.14-7-7-7c-0.9,0-1.75,0.19-2.53,0.5 C16.27,7.84,16.5,11.03,16.5,12z\\\"></path></g><g><path d=\\\"M8,19c0.9,0,1.75-0.19,2.53-0.5c-0.61-0.51-1.1-1.07-1.49-1.63C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 c0.36,0,0.71,0.05,1.04,0.13c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7S4.14,19,8,19z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,14.24c1.73-1.43,2-3.32,2-4.24c0-0.91-0.27-2.81-2-4.24C8.27,7.19,8,9.09,8,10C8,10.92,8.27,12.81,10,14.24z\\\"></path><path d=\\\"M10.85,14.81c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5c0-3.04-2.46-5.5-5.5-5.5 c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10C13,10.89,12.77,13.08,10.85,14.81z\\\"></path><path d=\\\"M6.5,15.5c0.96,0,1.86-0.25,2.65-0.69c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14c-2.21,0-4-1.79-4-4 s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10 C1,13.04,3.46,15.5,6.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compare_arrows\": {\n    \"name\": \"compare_arrows\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight_round\": {\n    \"name\": \"nightlight_round\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,22c1.05,0,2.05-0.16,3-0.46c-4.06-1.27-7-5.06-7-9.54s2.94-8.27,7-9.54C17.55,2.16,16.55,2,15.5,2 c-5.52,0-10,4.48-10,10S9.98,22,15.5,22L15.5,22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stars\": {\n    \"name\": \"stars\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zm-5.07 6.26L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06l1.09 2.56 2.78.24-2.11 1.83.64 2.73zm-2.86-11.4l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.13 16.7 4 14.48 4 12zm3.84 6.82L12 16.31l4.16 2.5c-1.22.75-2.64 1.19-4.17 1.19-1.52 0-2.94-.44-4.15-1.18zm9.25-.65l-1.11-4.75 3.79-3.28c.14.59.23 1.22.23 1.86 0 2.48-1.14 4.7-2.91 6.17z\\\"></path>\"\n      }\n    }\n  },\n  \"help_center\": {\n    \"name\": \"help_center\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"dashboard_customize\": {\n    \"name\": \"dashboard_customize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,11h8V3H3V11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\\\"></path><path d=\\\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\\\"></path><polygon points=\\\"18,13 16,13 16,16 13,16 13,18 16,18 16,21 18,21 18,18 21,18 21,16 18,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"comment_bank\": {\n    \"name\": \"comment_bank\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,14 18,6 13,6 13,14 15.5,12.5\\\"></polygon><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"15,11 15,5 11,5 11,11 13,9.69\\\"></polygon><path d=\\\"M16,3H4C3.45,3,3,3.45,3,4v13l3-3h10c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M16,13H5.59L4,14.59V4h12V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thumbs_up_down\": {\n    \"name\": \"thumbs_up_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z\\\"></path>\"\n      }\n    }\n  },\n  \"receipt\": {\n    \"name\": \"receipt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"question_mark\": {\n    \"name\": \"question_mark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.07,12.85c0.77-1.39,2.25-2.21,3.11-3.44c0.91-1.29,0.4-3.7-2.18-3.7c-1.69,0-2.52,1.28-2.87,2.34L6.54,6.96 C7.25,4.83,9.18,3,11.99,3c2.35,0,3.96,1.07,4.78,2.41c0.7,1.15,1.11,3.3,0.03,4.9c-1.2,1.77-2.35,2.31-2.97,3.45 c-0.25,0.46-0.35,0.76-0.35,2.24h-2.89C10.58,15.22,10.46,13.95,11.07,12.85z M14,20c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2 S14,18.9,14,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M9.29,10.58c0.6-1.07,1.73-1.7,2.39-2.65c0.7-0.99,0.31-2.85-1.67-2.85c-1.3,0-1.94,0.98-2.2,1.8l-2-0.84 C6.35,4.41,7.83,3,9.99,3c1.81,0,3.05,0.82,3.68,1.85c0.54,0.88,0.86,2.54,0.02,3.77c-0.92,1.36-1.81,1.78-2.28,2.65 c-0.19,0.35-0.27,0.58-0.27,1.72H8.91C8.91,12.4,8.82,11.42,9.29,10.58z M11.5,16c0,0.83-0.67,1.5-1.5,1.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5C10.83,14.5,11.5,15.17,11.5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_page\": {\n    \"name\": \"contact_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z\\\"></path>\"\n      }\n    }\n  },\n  \"mediation\": {\n    \"name\": \"mediation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"swipe\": {\n    \"name\": \"swipe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M20.5,2v2.02C18.18,2.13,15.22,1,12,1S5.82,2.13,3.5,4.02V2H2v3.5V7h1.5H7V5.5H4.09c2.11-1.86,4.88-3,7.91-3 s5.79,1.14,7.91,3H17V7h3.5H22V5.5V2H20.5z\\\"></path><g><path d=\\\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14l0-4.37c0-1.32-0.96-2.5-2.27-2.62C10.25,4.88,9,6.05,9,7.5 v8.15l-1.87-0.4c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67 l0.92-5.44C20.12,15.03,19.68,14.17,18.89,13.77z M18,15.56L17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7 S12,7.22,12,7.5v6.18h1.76L18,15.56z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,2v1.48C14.86,1.95,12.56,1,10,1S5.14,1.95,3.5,3.48V2H2v4h4V4.5H4.91C6.23,3.39,8.02,2.7,10,2.7s3.77,0.69,5.09,1.8 H14V6h4V2H16.5z\\\"></path><path d=\\\"M9,6.5c0.28,0,0.5,0.22,0.5,0.5v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52l-0.61,4.29H8.62L5.12,14l0.34-0.34 l3.04,0.76V7C8.5,6.72,8.72,6.5,9,6.5 M9,5C7.9,5,7,5.9,7,7v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3,14l4.56,4.56 C7.84,18.84,8.22,19,8.62,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29c0.12-0.85-0.32-1.69-1.09-2.07L12,10h-1V7 C11,5.9,10.1,5,9,5L9,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"generating_tokens\": {\n    \"name\": \"generating_tokens\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C17,7.58,13.42,4,9,4z M9,18c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S12.31,18,9,18z M12,10.5h-2v5H8v-5H6V9h6V10.5z M20.25,3.75L23,5l-2.75,1.25L19,9l-1.25-2.75L15,5l2.75-1.25L19,1 L20.25,3.75z M20.25,17.75L23,19l-2.75,1.25L19,23l-1.25-2.75L15,19l2.75-1.25L19,15L20.25,17.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.06,4.94L13,4l2.06-0.94L16,1l0.94,2.06L19,4l-2.06,0.94L16,7L15.06,4.94z M16,19l0.94-2.06L19,16l-2.06-0.94L16,13 l-0.94,2.06L13,16l2.06,0.94L16,19z M2.5,10c0,2.76,2.24,5,5,5s5-2.24,5-5s-2.24-5-5-5S2.5,7.24,2.5,10z M7.5,3.5 c3.59,0,6.5,2.91,6.5,6.5s-2.91,6.5-6.5,6.5S1,13.59,1,10S3.91,3.5,7.5,3.5L7.5,3.5z M10,7.5H5v1.25h1.75V13h1.5V8.75H10V7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"request_page\": {\n    \"name\": \"request_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z\\\"></path>\"\n      }\n    }\n  },\n  \"cached\": {\n    \"name\": \"cached\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"width_full\": {\n    \"name\": \"width_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h1v12H4z M7,18V6h10v12H7z M20,18h-1V6h1V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,14.5v-9h1v9H3.5z M6,14.5v-9h8v9H6z M16.5,14.5h-1v-9h1V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm\": {\n    \"name\": \"alarm\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"on_device_training\": {\n    \"name\": \"on_device_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><path d=\\\"M12,11c-1.1,0-2,0.9-2,2c0,0.74,0.4,1.38,1,1.72v0.78h2v-0.78c0.6-0.35,1-0.98,1-1.72C14,11.9,13.1,11,12,11z\\\"></path><path d=\\\"M18,1.01L6,1C4.9,1,4,1.9,4,3v18c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1.01,18,1.01z M18,21H6v-1h12V21z M18,18H6V6h12V18z M18,4H6V3h12V4z\\\"></path><path d=\\\"M16.01,15.95C16.63,15.12,17,14.11,17,13s-0.37-2.12-0.99-2.95l-1.07,1.07c0.35,0.54,0.56,1.19,0.56,1.88 s-0.21,1.34-0.56,1.88L16.01,15.95z\\\"></path><path d=\\\"M9.06,14.88C8.71,14.34,8.5,13.69,8.5,13c0-1.93,1.57-3.5,3.5-3.5v1.25l2.25-2l-2.25-2V8c-2.76,0-5,2.24-5,5 c0,1.11,0.37,2.12,0.99,2.95L9.06,14.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5v-15C16,1.67,15.33,1,14.5,1z M14.5,17.5h-9v-1h9V17.5z M14.5,15h-9V5h9V15z M14.5,3.5h-9v-1h9V3.5z\\\"></path><rect height=\\\".75\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13.25\\\"></rect><path d=\\\"M10,9.5c-0.83,0-1.5,0.67-1.5,1.5c0,0.55,0.3,1.03,0.75,1.29v0.46h1.5v-0.46c0.45-0.26,0.75-0.74,0.75-1.29 C11.5,10.17,10.83,9.5,10,9.5z\\\"></path><path d=\\\"M12.97,13c0.48-0.63,0.78-1.41,0.78-2.26c0-0.85-0.3-1.63-0.78-2.26l-0.71,0.71c0.31,0.44,0.49,0.98,0.49,1.56 s-0.18,1.11-0.49,1.56L12.97,13z\\\"></path><path d=\\\"M7.74,12.31c-0.31-0.44-0.49-0.98-0.49-1.56C7.25,9.23,8.48,8,10,8v1l1.5-1.5L10,6v1c-2.07,0-3.75,1.68-3.75,3.75 c0,0.85,0.3,1.63,0.78,2.26L7.74,12.31z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"balance\": {\n    \"name\": \"balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,7.83c0.85-0.3,1.53-0.98,1.83-1.83H18l-3,7c0,1.66,1.57,3,3.5,3s3.5-1.34,3.5-3l-3-7h2V4h-6.17 C14.42,2.83,13.31,2,12,2S9.58,2.83,9.17,4L3,4v2h2l-3,7c0,1.66,1.57,3,3.5,3S9,14.66,9,13L6,6h3.17c0.3,0.85,0.98,1.53,1.83,1.83 V19H2v2h20v-2h-9V7.83z M20.37,13h-3.74l1.87-4.36L20.37,13z M7.37,13H3.63L5.5,8.64L7.37,13z M12,6c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,5.55,12.55,6,12,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.75,6.37C11.39,6.15,11.9,5.64,12.12,5H15l-2.5,5.75c0,1.24,1.23,2.25,2.75,2.25c1.52,0,2.75-1.01,2.75-2.25L15.5,5H17 V3.5h-4.88C11.81,2.63,10.98,2,10,2S8.19,2.63,7.88,3.5H3V5h1.5L2,10.75C2,11.99,3.23,13,4.75,13s2.75-1.01,2.75-2.25L5,5h2.88 C8.1,5.64,8.61,6.15,9.25,6.37v9.13H2V17h16v-1.5h-7.25V6.37z M16.91,10.75h-3.32l1.66-3.82L16.91,10.75z M6.41,10.75H3.09 l1.66-3.82L6.41,10.75z M10,5C9.59,5,9.25,4.66,9.25,4.25C9.25,3.84,9.59,3.5,10,3.5s0.75,0.34,0.75,0.75C10.75,4.66,10.41,5,10,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upgrade\": {\n    \"name\": \"upgrade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,14v1H7v-1H13z M9.5,8v5h1V8H13l-3-3L7,8H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_array\": {\n    \"name\": \"view_array\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,7v10H9V7H15z M21,5h-3v14h3V5z M17,5H7v14h10V5z M6,5H3v14h3V5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5h2v10H3V5z M15,5v10h2V5H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_voice\": {\n    \"name\": \"settings_voice\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 22h2v2H7zm5-9c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z\\\"></path>\"\n      }\n    }\n  },\n  \"sticky_note_2\": {\n    \"name\": \"sticky_note_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z\\\"></path>\"\n      }\n    }\n  },\n  \"analytics\": {\n    \"name\": \"analytics\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"12\\\"></rect><rect height=\\\"10\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"7\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"remove_done\": {\n    \"name\": \"remove_done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24-4.24l-1.41,1.41l5.66,5.66l2.83-2.83l6.6,6.6l1.41-1.41L4.84,1.98z M18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36z M17.34,7.4l-1.41-1.41l-2.12,2.12l1.41,1.41L17.34,7.4z M1.08,12.35 l5.66,5.66l1.41-1.41l-5.66-5.66L1.08,12.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pan_tool\": {\n    \"name\": \"pan_tool\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 24h-6.55c-1.08 0-2.14-.45-2.89-1.23l-7.3-7.61 2.07-1.83c.62-.55 1.53-.66 2.26-.27L8 14.34V4.79c0-1.38 1.12-2.5 2.5-2.5.17 0 .34.02.51.05.09-1.3 1.17-2.33 2.49-2.33.86 0 1.61.43 2.06 1.09.29-.12.61-.18.94-.18 1.38 0 2.5 1.12 2.5 2.5v.28c.16-.03.33-.05.5-.05 1.38 0 2.5 1.12 2.5 2.5V20c0 2.21-1.79 4-4 4zM4.14 15.28l5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45z\\\"></path>\"\n      }\n    }\n  },\n  \"pageview\": {\n    \"name\": \"pageview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"explore_off\": {\n    \"name\": \"explore_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4zm2.91 8.08L17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_camera_mic\": {\n    \"name\": \"perm_camera_mic\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z\\\"></path>\"\n      }\n    }\n  },\n  \"reorder\": {\n    \"name\": \"reorder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z\\\"></path>\"\n      }\n    }\n  },\n  \"build_circle\": {\n    \"name\": \"build_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M13.49,11.38c0.43-1.22,0.17-2.64-0.81-3.62c-1.11-1.11-2.79-1.3-4.1-0.59 l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0 l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71L13.49,11.38z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6 S13.31,16,10,16z\\\"></path><path d=\\\"M10.75,7.21C9.98,6.44,8.83,6.3,7.91,6.78l1.63,1.63L8.51,9.44L6.88,7.81C6.4,8.73,6.54,9.88,7.31,10.65 c0.66,0.66,1.61,0.85,2.45,0.59l2.26,2.26l1.38-1.38l-2.17-2.17C11.64,9.05,11.49,7.95,10.75,7.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_rotate_vertical\": {\n    \"name\": \"text_rotate_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"api\": {\n    \"name\": \"api\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"face_unlock\": {\n    \"name\": \"face_unlock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_to_back\": {\n    \"name\": \"flip_to_back\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_overscan\": {\n    \"name\": \"settings_overscan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"segment\": {\n    \"name\": \"segment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,18h12v-2H9V18z M3,6v2h18V6H3z M9,13h12v-2H9V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumb_up\": {\n    \"name\": \"thumb_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_ethernet\": {\n    \"name\": \"settings_ethernet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z\\\"></path>\"\n      }\n    }\n  },\n  \"pending_actions\": {\n    \"name\": \"pending_actions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_compact_alt\": {\n    \"name\": \"view_compact_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.5\\\" y=\\\"7.5\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.5\\\" y=\\\"7.5\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.5\\\" y=\\\"12.5\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.5\\\" y=\\\"10.5\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.5\\\" y=\\\"10.5\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feedback\": {\n    \"name\": \"feedback\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vertical_circle\": {\n    \"name\": \"swap_vertical_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM6.5 9L10 5.5 13.5 9H11v4H9V9zm11 6L14 18.5 10.5 15H13v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"record_voice_over\": {\n    \"name\": \"record_voice_over\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM15.08 7.05c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z\\\"></path>\"\n      }\n    }\n  },\n  \"euro_symbol\": {\n    \"name\": \"euro_symbol\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z\\\"></path>\"\n      }\n    }\n  },\n  \"quickreply\": {\n    \"name\": \"quickreply\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17L4,17.17z\\\"></path></g><g><polygon points=\\\"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M4,14.59V4h12v5h1V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h7v-1H5.59L4,14.59z\\\"></path></g><g><polygon points=\\\"18,13 16.4,13 17.64,10 14,10 14,14.36 15.45,14.36 15.45,18\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_circle_right\": {\n    \"name\": \"arrow_circle_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,12c0-5.52-4.48-10-10-10C6.48,2,2,6.48,2,12s4.48,10,10,10C17.52,22,22,17.52,22,12z M4,12c0-4.42,3.58-8,8-8 c4.42,0,8,3.58,8,8s-3.58,8-8,8C7.58,20,4,16.42,4,12z M16,12l-4,4l-1.41-1.41L12.17,13H8v-2h4.17l-1.59-1.59L12,8L16,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,7l3,3l-3,3l-1.06-1.06l1.19-1.19H7v-1.5h3.13L8.94,8.06L10,7z M18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8 S18,14.42,18,10z M3.5,10c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"open_in_new_off\": {\n    \"name\": \"open_in_new_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.79,5.8L14,3h7v7l-2.79-2.8l-4.09,4.09l-1.41-1.41L16.79,5.8z M19,12v4.17l2,2V12H19z M19.78,22.61L18.17,21H5 c-1.11,0-2-0.9-2-2V5.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M16.17,19l-4.88-4.88L9.7,15.71L8.29,14.3l1.59-1.59L5,7.83 V19H16.17z M7.83,5H12V3H5.83L7.83,5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,14.88l-1.5-1.5V10H17V14.88z M10,4.5V3H5.12l1.5,1.5H10z M15.03,6.03L17,8V3h-5l1.97,1.97l-3.44,3.44l1.06,1.06 L15.03,6.03z M16.01,18.13L14.88,17H4.5C3.67,17,3,16.33,3,15.5V5.12L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M13.38,15.5 l-3.91-3.91L8.06,13L7,11.94l1.41-1.41L4.5,6.62v8.88H13.38z\\\"></path>\"\n      }\n    }\n  },\n  \"credit_card_off\": {\n    \"name\": \"credit_card_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H20c1.11,0,2,0.89,2,2v12c0,0.34-0.08,0.66-0.23,0.94L20,17.17V12h-5.17l-4-4H20V6H8.83 L6.83,4z M20.49,23.31L17.17,20H4c-1.11,0-2-0.89-2-2L2.01,6c0-0.34,0.08-0.66,0.23-0.93L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M4,6.83V8h1.17L4,6.83z M15.17,18l-6-6H4v6H15.17z\\\" enable-background=\\\"new\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16 h10.38l2.84,2.84L17.78,17.78z M4.88,7H3.5V5.62L4.88,7z M3.5,14.5V10h4.38l4.5,4.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9 c0,0.38-0.15,0.73-0.38,1l-1.12-1.12V10h-4.38l-3-3h7.38V5.5H7.62L6.12,4z\\\" enable-background=\\\"new\\\"></path>\"\n      }\n    }\n  },\n  \"perm_device_information\": {\n    \"name\": \"perm_device_information\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zM7 4V3h10v1H7z\\\"></path>\"\n      }\n    }\n  },\n  \"get_app\": {\n    \"name\": \"get_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5v6h1.17L12 13.17 9.83 11H11V5h2m2-2H9v6H5l7 7 7-7h-4V3zm4 15H5v2h14v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"subject\": {\n    \"name\": \"subject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_alt\": {\n    \"name\": \"sync_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"7.41,13.41 6,12 2,16 6,20 7.41,18.59 5.83,17 21,17 21,15 5.83,15\\\"></polygon><polygon points=\\\"16.59,10.59 18,12 22,8 18,4 16.59,5.41 18.17,7 3,7 3,9 18.17,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"15,4 13.94,5.06 15.13,6.25 3,6.25 3,7.75 15.13,7.75 13.94,8.94 15,10 18,7\\\"></polygon><polygon points=\\\"6.06,11.06 5,10 2,13 5,16 6.06,14.94 4.87,13.75 17,13.75 17,12.25 4.87,12.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"play_for_work\": {\n    \"name\": \"play_for_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_none\": {\n    \"name\": \"text_rotation_none\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture_alt\": {\n    \"name\": \"picture_in_picture_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z\\\"></path>\"\n      }\n    }\n  },\n  \"view_column\": {\n    \"name\": \"view_column\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33V7h3.33V17z M19,17h-3.33V7H19V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-7h2.67V13.5z M15.5,13.5h-2.67v-7h2.67V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"input\": {\n    \"name\": \"input\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_history\": {\n    \"name\": \"manage_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22.69,18.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L20,14h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L18,24h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C22.77,19.13,22.77,18.87,22.69,18.37z M19,21c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S20.1,21,19,21z M11,7v5.41l2.36,2.36l1.04-1.79L13,11.59V7H11z M21,12c0-4.97-4.03-9-9-9C9.17,3,6.65,4.32,5,6.36V4H3v6 h6V8H6.26C7.53,6.19,9.63,5,12,5c3.86,0,7,3.14,7,7H21z M10.86,18.91C7.87,18.42,5.51,16.01,5.08,13H3.06c0.5,4.5,4.31,8,8.94,8 c0.02,0,0.05,0,0.07,0L10.86,18.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18.95,14.89l0.85-0.79l-0.67-1.15l-1.12,0.33c-0.31-0.28-0.67-0.48-1.07-0.62l-0.28-1.16h-1.33l-0.27,1.17 c-0.39,0.13-0.75,0.34-1.05,0.61l-1.14-0.34L12.2,14.1l0.87,0.81c-0.11,0.54-0.05,0.97,0,1.21l-0.87,0.83l0.67,1.15l1.16-0.36 c0.3,0.26,0.64,0.46,1.03,0.59l0.27,1.17h1.33l0.28-1.16c0.39-0.13,0.75-0.33,1.05-0.6l1.15,0.35l0.67-1.15l-0.86-0.81 C19.07,15.53,18.98,15.07,18.95,14.89z M16.01,17c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.84,17,16.01,17z M10.49,16.98C10.33,16.99,10.17,17,10,17c-3.87,0-7-3.13-7-7h1.5c0,2.91,2.27,5.3,5.13,5.49L10.49,16.98z M15.5,10 c0-3.03-2.47-5.5-5.5-5.5c-1.7,0-3.22,0.78-4.22,2H8V8H3V3h1.5v2.71C5.78,4.07,7.76,3,10,3c3.87,0,7,3.13,7,7H15.5z M10.75,6v3.38 l1.55,1.55l-0.78,1.34L9.25,10V6H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"circle_notifications\": {\n    \"name\": \"circle_notifications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,18.5c0.83,0,1.5-0.67,1.5-1.5h-3C10.5,17.83,11.17,18.5,12,18.5z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10 c5.52,0,10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8c4.41,0,8,3.59,8,8S16.41,20,12,20z M16,11.39 c0-2.11-1.03-3.92-3-4.39V6.5c0-0.57-0.43-1-1-1s-1,0.43-1,1V7c-1.97,0.47-3,2.27-3,4.39V14H7v2h10v-2h-1V11.39z M14,14h-4v-3 c0-1.1,0.9-2,2-2s2,0.9,2,2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3d_rotation\": {\n    \"name\": \"3d_rotation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes_off\": {\n    \"name\": \"speaker_notes_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-3h-6.34l2 2H18zm0-3h-8v1.34l.66.66H18zM1.41 1.59L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z\\\"></path>\"\n      }\n    }\n  },\n  \"work_off\": {\n    \"name\": \"work_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z\\\"></path>\"\n      }\n    }\n  },\n  \"dangerous\": {\n    \"name\": \"dangerous\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3z M19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9z M14.83,7.76L12,10.59L9.17,7.76L7.76,9.17L10.59,12l-2.83,2.83l1.41,1.41L12,13.41l2.83,2.83l1.41-1.41L13.41,12l2.83-2.83 L14.83,7.76z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><path d=\\\"M0,0h20v20H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12.89,3H7.11L3,7.11v5.77L7.11,17h5.77L17,12.89V7.11L12.89,3z M15.5,12.27l-3.23,3.23H7.73L4.5,12.27V7.73L7.73,4.5 h4.53l3.23,3.23V12.27z\\\"></path><polygon points=\\\"12.22,6.72 10,8.94 7.78,6.72 6.72,7.78 8.94,10 6.72,12.22 7.78,13.28 10,11.06 12.22,13.28 13.28,12.22 11.06,10 13.28,7.78\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"copyright\": {\n    \"name\": \"copyright\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_new\": {\n    \"name\": \"open_in_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"app_shortcut\": {\n    \"name\": \"app_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\\\"></path><polygon points=\\\"20.38,9.62 21,11 21.62,9.62 23,9 21.62,8.38 21,7 20.38,8.38 19,9\\\"></polygon><polygon points=\\\"16,8 14.75,10.75 12,12 14.75,13.25 16,16 17.25,13.25 20,12 17.25,10.75\\\"></polygon><polygon points=\\\"21,13 20.38,14.38 19,15 20.38,15.62 21,17 21.62,15.62 23,15 21.62,14.38\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.5,15h-9V5h9v1H16V2.5C16,1.67,15.33,1,14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15z M5.5,2.5h9v1h-9V2.5z M14.5,17.5h-9v-1h9V17.5z\\\"></path><polygon points=\\\"17.03,7.97 17.5,9 17.97,7.97 19,7.5 17.97,7.03 17.5,6 17.03,7.03 16,7.5\\\"></polygon><polygon points=\\\"13,7 12.06,9.06 10,10 12.06,10.94 13,13 13.94,10.94 16,10 13.94,9.06\\\"></polygon><polygon points=\\\"17.5,11 17.03,12.03 16,12.5 17.03,12.97 17.5,14 17.97,12.97 19,12.5 17.97,12.03\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"supervisor_account\": {\n    \"name\": \"supervisor_account\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_phone_msg\": {\n    \"name\": \"perm_phone_msg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z\\\"></path>\"\n      }\n    }\n  },\n  \"density_medium\": {\n    \"name\": \"density_medium\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"dns\": {\n    \"name\": \"dns\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 15v4H5v-4h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 18.5c-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM19 5v4H5V5h14m1-2H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 8.5c-.82 0-1.5-.67-1.5-1.5S6.18 5.5 7 5.5s1.5.68 1.5 1.5S7.83 8.5 7 8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"home\": {\n    \"name\": \"home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.69l5 4.5V18h-2v-6H9v6H7v-7.81l5-4.5M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z\\\"></path>\"\n      }\n    }\n  },\n  \"view_headline\": {\n    \"name\": \"view_headline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"view_in_ar\": {\n    \"name\": \"view_in_ar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,4c0-0.55,0.45-1,1-1h2V1H4C2.34,1,1,2.34,1,4v2h2V4z\\\"></path><path d=\\\"M3,20v-2H1v2c0,1.66,1.34,3,3,3h2v-2H4C3.45,21,3,20.55,3,20z\\\"></path><path d=\\\"M20,1h-2v2h2c0.55,0,1,0.45,1,1v2h2V4C23,2.34,21.66,1,20,1z\\\"></path><path d=\\\"M21,20c0,0.55-0.45,1-1,1h-2v2h2c1.66,0,3-1.34,3-3v-2h-2V20z\\\"></path><path d=\\\"M19,14.87V9.13c0-0.72-0.38-1.38-1-1.73l-5-2.88c-0.31-0.18-0.65-0.27-1-0.27s-0.69,0.09-1,0.27L6,7.39 C5.38,7.75,5,8.41,5,9.13v5.74c0,0.72,0.38,1.38,1,1.73l5,2.88c0.31,0.18,0.65,0.27,1,0.27s0.69-0.09,1-0.27l5-2.88 C18.62,16.25,19,15.59,19,14.87z M11,17.17l-4-2.3v-4.63l4,2.33V17.17z M12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84z M17,14.87l-4,2.3v-4.6l4-2.33V14.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"explore\": {\n    \"name\": \"explore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z\\\"></path>\"\n      }\n    }\n  },\n  \"transcribe\": {\n    \"name\": \"transcribe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,6.79,5,9C5,11.21,6.79,13,9,13z M9,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C7,7.9,7.9,7,9,7z M15.39,15.56C13.71,14.7,11.53,14,9,14c-2.53,0-4.71,0.7-6.39,1.56C1.61,16.07,1,17.1,1,18.22V21h16 v-2.78C17,17.1,16.39,16.07,15.39,15.56z M15,19H3v-0.78c0-0.38,0.2-0.72,0.52-0.88C4.71,16.73,6.63,16,9,16 c2.37,0,4.29,0.73,5.48,1.34C14.8,17.5,15,17.84,15,18.22V19z M17.93,16l1.63-1.63c-2.77-3.02-2.77-7.56,0-10.74L17.93,2 C14.03,5.89,14.02,11.95,17.93,16z M22.92,10.95c-0.84-1.18-0.84-2.71,0-3.89l-1.68-1.69c-2.02,2.02-2.02,5.07,0,7.27L22.92,10.95z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path><path d=\\\"M15.16,12.61l0.97-1.17C15.14,10.61,14.5,9.39,14.5,8s0.64-2.61,1.63-3.44l-0.97-1.17C13.84,4.49,13,6.15,13,8 S13.84,11.51,15.16,12.61z\\\"></path><path d=\\\"M17.09,5.71C16.43,6.26,16,7.07,16,8s0.43,1.74,1.09,2.29l0.96-1.15C17.71,8.87,17.5,8.46,17.5,8s0.21-0.87,0.54-1.15 L17.09,5.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lightbulb\": {\n    \"name\": \"lightbulb\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_outward\": {\n    \"name\": \"arrow_outward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"6,6 6,8 14.59,8 5,17.59 6.41,19 16,9.41 16,18 18,18 18,6\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"5,5 5,6.5 12.44,6.5 4,14.94 5.06,16 13.5,7.56 13.5,15 15,15 15,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"pin_end\": {\n    \"name\": \"pin_end\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,12V6H4v12h10l0,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v6H20z M19,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.66,0,3-1.34,3-3S20.66,14,19,14z M14.66,8H9v5.66h2v-2.24l2.95,2.95l1.41-1.41L12.41,10h2.24V8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,10V5.5h-13v9H12c0.01,0.02,0,1.5,0,1.5H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h13C17.33,4,18,4.67,18,5.5 V10H16.5z M15.75,11.5c-1.24,0-2.25,1.01-2.25,2.25s1,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25S16.99,11.5,15.75,11.5z M10,11.24 V9.56l2.21,2.21l1.06-1.06L11.06,8.5h1.68V7H8.5v4.24H10z\\\"></path>\"\n      }\n    }\n  },\n  \"all_out\": {\n    \"name\": \"all_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"today\": {\n    \"name\": \"today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h5v5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"batch_prediction\": {\n    \"name\": \"batch_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,7H6C5.45,7,5,7.45,5,8v8c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8C15,7.45,14.55,7,14,7z M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5 C12.5,12,10.75,13,10.75,14z M14,6H6v0c0-0.55,0.45-1,1-1h6C13.55,5,14,5.45,14,6L14,6z M13,4H7v0c0-0.55,0.45-1,1-1h4 C12.55,3,13,3.45,13,4L13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_up\": {\n    \"name\": \"arrow_circle_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"change_history\": {\n    \"name\": \"change_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"pinch\": {\n    \"name\": \"pinch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6z M21.89,13.77l-3.8-1.67C17.96,12.04,17.81,12,17.65,12H17 V7.5C17,6.12,15.88,5,14.5,5S12,6.12,12,7.5v8.15l-1.87-0.4c-0.19-0.03-1.02-0.15-1.73,0.56L7,17.22l5.12,5.19 C12.49,22.79,13,23,13.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44C23.12,15.03,22.68,14.17,21.89,13.77z M20.08,21h-6.55 l-3.7-3.78L14,18.11V7.5C14,7.22,14.22,7,14.5,7S15,7.22,15,7.5v6.18h1.76L21,15.56L20.08,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18.39,11.36L15.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L6.5,14l4.56,4.56 c0.28,0.28,0.66,0.44,1.06,0.44h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C19.6,12.58,19.16,11.74,18.39,11.36z M17.38,17.5h-5.26 L8.62,14l0.34-0.34L12,14.42V7c0-0.28,0.22-0.5,0.5-0.5S13,6.73,13,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L17.38,17.5z M5,1v1h2.29L2,7.3V5H1v4h4V8H2.71L8,2.71V5h1V1H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"done_outline\": {\n    \"name\": \"done_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z\\\"></path>\"\n      }\n    }\n  },\n  \"backup\": {\n    \"name\": \"backup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_right\": {\n    \"name\": \"swipe_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14V7.5C14,6.12,12.88,5,11.5,5S9,6.12,9,7.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,15.03,19.68,14.17,18.89,13.77z M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76 L18,15.56L17.08,21z M12,2.5C7.26,2.5,4.33,5.02,3.57,7H2c0.73-2.88,4.51-6,10-6c3.22,0,6.18,1.13,8.5,3.02V2H22v5h-5V5.5h2.91 C17.79,3.64,15.03,2.5,12,2.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15.39,11.36L12.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,14l4.56,4.56 C8.34,18.84,8.72,19,9.12,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,12.57,16.16,11.74,15.39,11.36z M14.38,17.5H9.12 L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z M2,6c1.03-2.89,4.22-5,8-5c2.93,0,5.51,1.27,7,3.19L17,2h1v4h-4V5l2.36,0C15.06,3.18,12.65,2,10,2C6.89,2,4.11,3.63,3.07,6L2,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"plagiarism\": {\n    \"name\": \"plagiarism\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z\\\"></path><path d=\\\"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V7L12,3z M15,16H5V4h6v4h4V16z\\\"></path><path d=\\\"M7.73,9.73c-0.98,0.98-0.98,2.56,0,3.54c0.86,0.86,2.18,0.96,3.15,0.32l1.45,1.45l0.71-0.71l-1.45-1.45 c0.64-0.97,0.54-2.29-0.32-3.15C10.29,8.76,8.71,8.76,7.73,9.73z M10.56,12.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C11.15,11.03,11.15,11.97,10.56,12.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"php\": {\n    \"name\": \"php\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9z M8,10.5v1C8,12.3,7.3,13,6.5,13h-2v2H3V9h3.5C7.3,9,8,9.7,8,10.5z M6.5,10.5h-2 v1h2V10.5z M21.5,10.5v1c0,0.8-0.7,1.5-1.5,1.5h-2v2h-1.5V9H20C20.8,9,21.5,9.7,21.5,10.5z M20,10.5h-2v1h2V10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.5,8h1v4h-1v-1.5h-1V12h-1V8h1v1.5h1V8z M7,8.5V10c0,0.28-0.22,0.5-0.5,0.5H5V12H4V8h2.5C6.78,8,7,8.22,7,8.5z M6,9H5 v0.5h1V9z M16,8.5V10c0,0.28-0.22,0.5-0.5,0.5H14V12h-1V8h2.5C15.78,8,16,8.22,16,8.5z M15,9h-1v0.5h1V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grade\": {\n    \"name\": \"grade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.13l.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.18.56 2.41-2.12-1.28-1.03-.64-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27M12 2L9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_month\": {\n    \"name\": \"calendar_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,20 H5V10h14V20z M19,8H5V6h14V8z M9,14H7v-2h2V14z M13,14h-2v-2h2V14z M17,14h-2v-2h2V14z M9,18H7v-2h2V18z M13,18h-2v-2h2V18z M17,18 h-2v-2h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h11c0.83,0,1.5-0.68,1.5-1.5v-11 C17,4.68,16.33,4,15.5,4z M15.5,16.5h-11V9h11V16.5z M15.5,7.5h-11v-2h11V7.5z M7.5,12H6v-1.5h1.5V12z M10.75,12h-1.5v-1.5h1.5V12z M14,12h-1.5v-1.5H14V12z M7.5,15H6v-1.5h1.5V15z M10.75,15h-1.5v-1.5h1.5V15z M14,15h-1.5v-1.5H14V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"outbound\": {\n    \"name\": \"outbound\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path>\"\n      }\n    }\n  },\n  \"card_giftcard\": {\n    \"name\": \"card_giftcard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_split\": {\n    \"name\": \"vertical_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm16 2v10h-4V7h4m2-2h-8v14h8V5z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility\": {\n    \"name\": \"accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_page\": {\n    \"name\": \"restore_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horiz\": {\n    \"name\": \"swap_horiz\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z\\\"></path>\"\n      }\n    }\n  },\n  \"width_normal\": {\n    \"name\": \"width_normal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h4v12H4z M10,18V6h4v12H10z M20,18h-4V6h4V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,14.5v-9H7v9H3.5z M8.5,14.5v-9h3v9H8.5z M16.5,14.5H13v-9h3.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_style\": {\n    \"name\": \"line_style\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vert\": {\n    \"name\": \"swap_vert\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z\\\"></path>\"\n      }\n    }\n  },\n  \"help_outline\": {\n    \"name\": \"help_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"hide_source\": {\n    \"name\": \"hide_source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.94,10.94C14.86,19.59,13.48,20,12,20z M7.94,5.12 L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46C19.59,14.86,20,13.48,20,12 c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tab_unselected\": {\n    \"name\": \"tab_unselected\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_present\": {\n    \"name\": \"file_present\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h8v4h4V20z M12,17L12,17 c-1.1,0-2-0.9-2-2l0-5.5C10,9.22,10.22,9,10.5,9h0C10.78,9,11,9.22,11,9.5V15h2V9.5C13,8.12,11.88,7,10.5,7h0C9.12,7,8,8.12,8,9.5 L8,15c0,2.21,1.79,4,4,4h0c2.21,0,4-1.79,4-4v-4h-2v4C14,16.1,13.1,17,12,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_brightness\": {\n    \"name\": \"settings_brightness\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_clock\": {\n    \"name\": \"lock_clock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,20V10h12v1c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26c-0.42-0.6-0.75-1.28-0.97-2H6z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M5.5,16.5v-8h9v1.03c0.53,0.05,1.03,0.17,1.5,0.36V8.5C16,7.67,15.33,7,14.5,7H14V5c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5 C4.67,7,4,7.67,4,8.5v8C4,17.33,4.67,18,5.5,18h3.9c-0.3-0.46-0.53-0.96-0.68-1.5H5.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.15,16.85l-1.65-1.65V13h1v1.79 l1.35,1.35L15.15,16.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"source\": {\n    \"name\": \"source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_agenda\": {\n    \"name\": \"view_agenda\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,13H5c-1.1,0-2,0.9-2,2v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4C21,13.9,20.1,13,19,13z M19,19H5v-4h14V19z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,9H5V5h14V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v3C3,8.33,3.67,9,4.5,9h11C16.33,9,17,8.33,17,7.5v-3C17,3.67,16.33,3,15.5,3z M15.5,7.5 h-11v-3h11V7.5z\\\"></path><path d=\\\"M15.5,11h-11C3.67,11,3,11.67,3,12.5v3C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,11.67,16.33,11,15.5,11z M15.5,15.5h-11v-3h11V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_left\": {\n    \"name\": \"swipe_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14V7.5C14,6.12,12.88,5,11.5,5S9,6.12,9,7.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,15.03,19.68,14.17,18.89,13.77z M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76 L18,15.56L17.08,21z M4.09,5.5H7V7H2V2h1.5v2.02C5.82,2.13,8.78,1,12,1c5.49,0,9.27,3.12,10,6h-1.57C19.67,5.02,16.74,2.5,12,2.5 C8.97,2.5,6.21,3.64,4.09,5.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15.39,11.36L12.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,14l4.56,4.56 C8.34,18.84,8.72,19,9.12,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,12.57,16.16,11.74,15.39,11.36z M14.38,17.5H9.12 L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z M16.93,6C15.89,3.63,13.11,2,10,2C7.35,2,4.94,3.18,3.64,5L6,5v1H2V2h1l0,2.19C4.49,2.27,7.07,1,10,1c3.78,0,6.97,2.11,8,5 L16.93,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turned_in_not\": {\n    \"name\": \"turned_in_not\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up_alt\": {\n    \"name\": \"swipe_up_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,5.83l1.59,1.59L16,6l-4-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-2.42-1.72-4.44-4-4.9V5.83z M12,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,18,12,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M9.25,8.07C7.4,8.42,6,10.05,6,12c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4c0-1.95-1.4-3.58-3.25-3.93l0-3.2l1.19,1.19L13,5 l-3-3L7,5l1.06,1.06l1.19-1.19L9.25,8.07z M7.5,12c0-1.38,1.12-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5 C8.62,14.5,7.5,13.38,7.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fact_check\": {\n    \"name\": \"fact_check\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z\\\" fill-rule=\\\"evenodd\\\"></path><polygon fill-rule=\\\"evenodd\\\" points=\\\"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15\\\"></polygon><rect fill-rule=\\\"evenodd\\\" height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><rect fill-rule=\\\"evenodd\\\" height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><rect fill-rule=\\\"evenodd\\\" height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V5 C17,4.45,16.55,4,16,4z M16,15H4V5h12V15z\\\" fill-rule=\\\"evenodd\\\"></path><rect fill-rule=\\\"evenodd\\\" height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><rect fill-rule=\\\"evenodd\\\" height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"9.5\\\"></rect><rect fill-rule=\\\"evenodd\\\" height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"12\\\"></rect><polygon fill-rule=\\\"evenodd\\\" points=\\\"11.97,11.77 14.8,8.94 14.1,8.23 11.97,10.35 11.27,9.65 10.56,10.35\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"bookmark_added\": {\n    \"name\": \"bookmark_added\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M17.83,9L15,6.17l1.41-1.41l1.41,1.41l3.54-3.54 l1.41,1.41L17.83,9z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_full\": {\n    \"name\": \"hourglass_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"invert_colors\": {\n    \"name\": \"invert_colors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4.81L12,19c-3.31,0-6-2.63-6-5.87c0-1.56,0.62-3.03,1.75-4.14L12,4.81 M12,2L6.35,7.56l0,0C4.9,8.99,4,10.96,4,13.13 C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87c0-2.17-0.9-4.14-2.35-5.57l0,0L12,2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.53,6.59L14.53,6.59L10,2L5.5,6.56c-1.08,1.11-1.75,2.62-1.75,4.28c0,3.4,2.8,6.16,6.25,6.16s6.25-2.76,6.25-6.16 C16.25,9.19,15.6,7.7,14.53,6.59z M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_media\": {\n    \"name\": \"perm_media\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_return\": {\n    \"name\": \"assignment_return\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 14h4v-4h-4V7l-5 5 5 5zm7-11h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"pets\": {\n    \"name\": \"pets\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_empty\": {\n    \"name\": \"hourglass_empty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"code_off\": {\n    \"name\": \"code_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10l-2.94,2.94L14,11.88L15.88,10l-3.94-3.94L13,5L18,10z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99l3.07,3.07L2,10 l5,5l1.06-1.06L4.12,10L6,8.12L16.01,18.13z\\\"></path>\"\n      }\n    }\n  },\n  \"aspect_ratio\": {\n    \"name\": \"aspect_ratio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"view_list\": {\n    \"name\": \"view_list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,5v14h18V5H3z M7,7v2H5V7H7z M5,13v-2h2v2H5z M5,15h2v2H5V15z M19,17H9v-2h10V17z M19,13H9v-2h10V13z M19,9H9V7h10V9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5v10h14V5H3z M15.5,7.83h-8V6.5h8V7.83z M7.5,9.33h8v1.33h-8V9.33z M6,10.67H4.5V9.33H6V10.67z M6,6.5v1.33H4.5V6.5H6z M4.5,12.17H6v1.33H4.5V12.17z M7.5,13.5v-1.33h8v1.33H7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"star_rate\": {\n    \"name\": \"star_rate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z\\\"></path></g>\"\n      },\n      \"18\": {\n        \"width\": 18,\n        \"path\": \"<path d=\\\"M0 0h18v18H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11.3l3.71 2.7-1.42-4.36L15 7h-4.55L9 2.5 7.55 7H3l3.71 2.64L5.29 14 9 11.3z\\\"></path>\"\n      }\n    }\n  },\n  \"announcement\": {\n    \"name\": \"announcement\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_module\": {\n    \"name\": \"view_module\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,5v14h18V5H3z M19,11h-3.33V7H19V11z M13.67,11h-3.33V7h3.33V11z M8.33,7v4H5V7H8.33z M5,17v-4h3.33v4H5z M10.33,17v-4 h3.33v4H10.33z M15.67,17v-4H19v4H15.67z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5v10h14V5H3z M15.5,9.25h-2.67V6.5h2.67V9.25z M8.67,9.25V6.5h2.67v2.75H8.67z M11.33,10.75v2.75H8.67v-2.75H11.33z M7.17,6.5v2.75H4.5V6.5H7.17z M4.5,10.75h2.67v2.75H4.5V10.75z M12.83,13.5v-2.75h2.67v2.75H12.83z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_border\": {\n    \"name\": \"bookmark_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_carousel\": {\n    \"name\": \"view_carousel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,7h4v10H2V7z M7,19h10V5H7V19z M9,7h6v10H9V7z M18,7h4v10h-4V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2,6.5h3v7H2V6.5z M15,6.5v7h3v-7H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"trending_down\": {\n    \"name\": \"trending_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_land\": {\n    \"name\": \"flight_land\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_drive\": {\n    \"name\": \"add_to_drive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,11c0.17,0,0.33,0.01,0.49,0.02L15,3H9l5.68,9.84C15.77,11.71,17.3,11,19,11z\\\"></path><polygon points=\\\"8.15,4.52 2,15.5 5,21 11.33,10.03\\\"></polygon><path d=\\\"M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94,13,18.54,13,17C13,16.48,13.07,15.98,13.2,15.5z\\\"></path><polygon points=\\\"20,16 20,13 18,13 18,16 15,16 15,18 18,18 18,21 19,21 20,21 20,18 23,18 23,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.98,9L12.5,3h-5l4.59,7.92C13,9.77,14.39,9.01,15.98,9z\\\"></path><path d=\\\"M11.25,12.5H8.84L6.23,17h5.79C11.39,16.16,11,15.13,11,14C11,13.47,11.1,12.98,11.25,12.5z\\\"></path><polygon points=\\\"6.63,4.5 2,12.5 4.5,17 9.19,8.91\\\"></polygon><polygon points=\\\"16.75,13.25 16.75,11 15.25,11 15.25,13.25 13,13.25 13,14.75 15.25,14.75 15.25,17 15.5,17 16.75,17 16.75,14.75 19,14.75 19,13.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"autorenew\": {\n    \"name\": \"autorenew\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\\\"></path>\"\n      }\n    }\n  },\n  \"settings\": {\n    \"name\": \"settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\"\n      }\n    }\n  },\n  \"translate\": {\n    \"name\": \"translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z\\\"></path>\"\n      }\n    }\n  },\n  \"schedule_send\": {\n    \"name\": \"schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z\\\"></path><path d=\\\"M11,12l-6-1.5V7.01l8.87,3.74c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_repeat\": {\n    \"name\": \"event_repeat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.9,4,3,4.9,3,6v14c0,1.1,0.9,2,2,2h7v-2H5V10h14v2H21z M19,8H5V6h14V8z M15.64,20c0.43,1.45,1.77,2.5,3.36,2.5c1.93,0,3.5-1.57,3.5-3.5s-1.57-3.5-3.5-3.5c-0.95,0-1.82,0.38-2.45,1l1.45,0V18h-4v-4h1.5 l0,1.43C16.4,14.55,17.64,14,19,14c2.76,0,5,2.24,5,5s-2.24,5-5,5c-2.42,0-4.44-1.72-4.9-4L15.64,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17,10.5v-5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h6v-1.5h-6V9 h11v1.5H17z M15.5,7.5h-11v-2h11V7.5z M12,12h1l0,1.35c0.73-0.83,1.81-1.35,3-1.35c2.21,0,4,1.79,4,4c0,2.21-1.79,4-4,4 c-2.04,0-3.72-1.53-3.97-3.5l1.01,0C13.28,17.92,14.51,19,16,19c1.66,0,3-1.34,3-3s-1.34-3-3-3c-0.89,0-1.69,0.39-2.24,1L15,14v1 h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"donut_small\": {\n    \"name\": \"donut_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z\\\"></path>\"\n      }\n    }\n  },\n  \"pending\": {\n    \"name\": \"pending\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\\\"></path><circle cx=\\\"7\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6 c0-3.31,2.69-6,6-6s6,2.69,6,6C16,13.31,13.31,16,10,16z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"13.5\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"description\": {\n    \"name\": \"description\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\\\"></path>\"\n      }\n    }\n  },\n  \"card_travel\": {\n    \"name\": \"card_travel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down_off_alt\": {\n    \"name\": \"thumb_down_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,3H6C5.17,3,4.46,3.5,4.16,4.22l-3.02,7.05C1.05,11.5,1,11.74,1,12v2c0,1.1,0.9,2,2,2h6.31l-0.95,4.57l-0.03,0.32 c0,0.41,0.17,0.79,0.44,1.06L9.83,23l6.59-6.59C16.78,16.05,17,15.55,17,15V5C17,3.9,16.1,3,15,3z M15,15l-4.34,4.34L12,14H3v-2 l3-7h9V15z M19,3h4v12h-4V3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_contact_calendar\": {\n    \"name\": \"perm_contact_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM5 19V5h14v14H5zm7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"try\": {\n    \"name\": \"try\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\\\"></path><polygon points=\\\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_task\": {\n    \"name\": \"add_task\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z\\\"></path>\"\n      }\n    }\n  },\n  \"private_connectivity\": {\n    \"name\": \"private_connectivity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7c2.76,0,5,2.24,5,5s-2.24,5-5,5s-5-2.24-5-5S9.24,7,12,7z M5.07,13c0.49,3.39,3.4,6,6.93,6c3.53,0,6.44-2.61,6.93-6 L22,13v-2l-3.07,0c-0.49-3.39-3.4-6-6.93-6l0,0c-3.53,0-6.44,2.61-6.93,6c0,0-3.07,0-3.07,0v2L5.07,13z M14,10.5V9.61 c0-1-0.68-1.92-1.66-2.08C11.08,7.32,10,8.29,10,9.5v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C15,10.95,14.55,10.5,14,10.5z M12,13.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 C12.75,13.41,12.41,13.75,12,13.75z M13,10.5h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V10.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.45,9.25C15.08,6.57,12.78,4.5,10,4.5S4.92,6.57,4.55,9.25H2v1.5h2.55C4.92,13.43,7.22,15.5,10,15.5s5.08-2.07,5.45-4.75 H18v-1.5H15.45z M10,14c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z M12,8.5h-0.5V8 c0-0.82-0.67-1.5-1.5-1.5S8.5,7.18,8.5,8v0.5H8C7.72,8.5,7.5,8.72,7.5,9v3c0,0.28,0.22,0.5,0.5,0.5h4c0.28,0,0.5-0.22,0.5-0.5V9 C12.5,8.72,12.28,8.5,12,8.5z M10,11.1c-0.33,0-0.6-0.27-0.6-0.6S9.67,9.9,10,9.9s0.6,0.27,0.6,0.6S10.33,11.1,10,11.1z M10.75,8.5 h-1.5V8c0-0.41,0.34-0.75,0.75-0.75S10.75,7.59,10.75,8V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"visibility\": {\n    \"name\": \"visibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c3.79 0 7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17s-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6m0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5c1.38 0 2.5 1.12 2.5 2.5S13.38 14 12 14s-2.5-1.12-2.5-2.5S10.62 9 12 9m0-2c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7z\\\"></path>\"\n      }\n    }\n  },\n  \"https\": {\n    \"name\": \"https\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"code\": {\n    \"name\": \"code\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_circle\": {\n    \"name\": \"account_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7.35 18.5C8.66 17.56 10.26 17 12 17s3.34.56 4.65 1.5c-1.31.94-2.91 1.5-4.65 1.5s-3.34-.56-4.65-1.5zm10.79-1.38C16.45 15.8 14.32 15 12 15s-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-4.42 3.58-8 8-8s8 3.58 8 8c0 1.95-.7 3.73-1.86 5.12z\\\"></path><path d=\\\"M12 6c-1.93 0-3.5 1.57-3.5 3.5S10.07 13 12 13s3.5-1.57 3.5-3.5S13.93 6 12 6zm0 5c-.83 0-1.5-.67-1.5-1.5S11.17 8 12 8s1.5.67 1.5 1.5S12.83 11 12 11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10 5.5c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4.5c-.83 0-1.5-.67-1.5-1.5S9.17 7 10 7s1.5.67 1.5 1.5S10.83 10 10 10z\\\"></path><path d=\\\"M10 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14.5c-1.49 0-2.86-.51-3.96-1.36C7.19 14.42 8.55 14 10 14s2.81.42 3.96 1.14c-1.1.85-2.47 1.36-3.96 1.36zm5.07-2.44c-1.44-.99-3.19-1.56-5.07-1.56s-3.62.58-5.07 1.56C4.04 12.95 3.5 11.54 3.5 10c0-3.58 2.92-6.5 6.5-6.5s6.5 2.92 6.5 6.5c0 1.54-.54 2.95-1.43 4.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"delete_forever\": {\n    \"name\": \"delete_forever\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_circle_down\": {\n    \"name\": \"arrow_circle_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7h-1v3H7l3,3l3-3H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"loyalty\": {\n    \"name\": \"loyalty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_accounts\": {\n    \"name\": \"manage_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,18v-0.65c0-0.34,0.16-0.66,0.41-0.81C6.1,15.53,8.03,15,10,15c0.03,0,0.05,0,0.08,0.01c0.1-0.7,0.3-1.37,0.59-1.98 C10.45,13.01,10.23,13,10,13c-2.42,0-4.68,0.67-6.61,1.82C2.51,15.34,2,16.32,2,17.35V20h9.26c-0.42-0.6-0.75-1.28-0.97-2H4z\\\"></path><path d=\\\"M10,12c2.21,0,4-1.79,4-4s-1.79-4-4-4C7.79,4,6,5.79,6,8S7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2s-0.9,2-2,2 c-1.1,0-2-0.9-2-2S8.9,6,10,6z\\\"></path><path d=\\\"M20.75,16c0-0.22-0.03-0.42-0.06-0.63l1.14-1.01l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L18,11h-2l-0.3,1.49 c-0.4,0.15-0.76,0.36-1.08,0.63l-1.45-0.49l-1,1.73l1.14,1.01c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-1.14,1.01 l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L16,21h2l0.3-1.49c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1.01 C20.72,16.42,20.75,16.22,20.75,16z M17,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S18.1,18,17,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_protected_setup\": {\n    \"name\": \"wifi_protected_setup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z\\\"></path></g><g><path d=\\\"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15,4H9v6l1.8-1.8c1.22,0.91,2.01,2.35,2.01,3.99c0,0.75-0.18,1.45-0.47,2.09c1.49-0.98,2.47-2.67,2.47-4.59 c0-1.52-0.62-2.89-1.61-3.89L15,4z\\\"></path></g><g><path d=\\\"M7.19,7.84c0-0.75,0.18-1.45,0.47-2.09c-1.49,0.98-2.47,2.67-2.47,4.59c0,1.52,0.62,2.89,1.61,3.89L5,16h6v-5.97 l-1.8,1.8C7.99,10.91,7.19,9.47,7.19,7.84z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"not_started\": {\n    \"name\": \"not_started\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3 L10,3z M10,13l4-3l-4-3V13z M8,7v6h1V7H8z\\\"></path>\"\n      }\n    }\n  },\n  \"join_inner\": {\n    \"name\": \"join_inner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><g><path d=\\\"M9.04,16.87C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5c0.36,0,0.71,0.05,1.04,0.13 c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C9.92,17.99,9.43,17.43,9.04,16.87z\\\"></path></g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M6.5,14c-2.21,0-4-1.79-4-4s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18 C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"highlight_alt\": {\n    \"name\": \"highlight_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rule\": {\n    \"name\": \"rule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"maximize\": {\n    \"name\": \"maximize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h18v2H3V3z\\\"></path>\"\n      }\n    }\n  },\n  \"payment\": {\n    \"name\": \"payment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_indicator\": {\n    \"name\": \"drag_indicator\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"event_seat\": {\n    \"name\": \"event_seat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 5v7H9V5h6m0-2H9c-1.1 0-2 .9-2 2v9h10V5c0-1.1-.9-2-2-2zm7 7h-3v3h3v-3zM5 10H2v3h3v-3zm15 5H4v6h2v-4h12v4h2v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"browse_gallery\": {\n    \"name\": \"browse_gallery\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9S13.97,3,9,3z M9,19c-3.86,0-7-3.14-7-7s3.14-7,7-7s7,3.14,7,7 S12.86,19,9,19z\\\"></path><polygon points=\\\"10,7 8,7 8,12.41 11.79,16.21 13.21,14.79 10,11.59\\\"></polygon><path d=\\\"M17.99,3.52v2.16C20.36,6.8,22,9.21,22,12c0,2.79-1.64,5.2-4.01,6.32v2.16C21.48,19.24,24,15.91,24,12 C24,8.09,21.48,4.76,17.99,3.52z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14,3.08V4.6c2.56,0.47,4.5,2.71,4.5,5.4s-1.94,4.93-4.5,5.4v1.52c3.39-0.49,6-3.39,6-6.92C20,6.47,17.39,3.57,14,3.08z\\\"></path><path d=\\\"M7,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C14,6.13,10.87,3,7,3z M7,15.5c-3.03,0-5.5-2.47-5.5-5.5 S3.97,4.5,7,4.5s5.5,2.47,5.5,5.5S10.03,15.5,7,15.5z\\\"></path><polygon points=\\\"7.75,6 6.25,6 6.25,10 9.08,12.83 10.14,11.77 7.75,9.38\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"list\": {\n    \"name\": \"list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z\\\"></path>\"\n      }\n    }\n  },\n  \"output\": {\n    \"name\": \"output\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17,17 22,12 17,7 15.59,8.41 18.17,11 9,11 9,13 18.17,13 15.59,15.59\\\"></polygon><path d=\\\"M19,19H5V5h14v2h2V5c0-1.1-0.89-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.11,0,2-0.9,2-2v-2h-2V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"14,14 18,10 14,6 12.94,7.06 15.13,9.25 8,9.25 8,10.75 15.13,10.75 12.94,12.94\\\"></polygon><path d=\\\"M15.5,15.5h-11v-11h11V6H17V4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"touch_app\": {\n    \"name\": \"touch_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.15-0.46-2.02-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M17.84,15.29L17.04,20h-6.3 c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76l3.46,1.73 C17.69,14.43,17.91,14.86,17.84,15.29z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,0.95-0.38,1.81-1,2.44V6.5 c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"donut_large\": {\n    \"name\": \"donut_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"troubleshoot\": {\n    \"name\": \"troubleshoot\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,20.59l-4.69-4.69C18.37,14.55,19,12.85,19,11c0-4.42-3.58-8-8-8c-4.08,0-7.44,3.05-7.93,7h2.02C5.57,7.17,8.03,5,11,5 c3.31,0,6,2.69,6,6s-2.69,6-6,6c-2.42,0-4.5-1.44-5.45-3.5H3.4C4.45,16.69,7.46,19,11,19c1.85,0,3.55-0.63,4.9-1.69L20.59,22 L22,20.59z\\\"></path><polygon points=\\\"8.43,9.69 9.65,15 11.29,15 12.55,11.22 13.5,13.5 15.5,13.5 15.5,12 14.5,12 13.25,9 11.71,9 10.59,12.37 9.35,7 7.7,7 6.45,11 1,11 1,12.5 7.55,12.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.01,16.94l-4.27-4.27C14.53,11.65,15,10.38,15,9c0-3.31-2.69-6-6-6C6.03,3,3.57,5.16,3.09,8h1.53 C5.08,6,6.86,4.5,9,4.5c2.48,0,4.5,2.02,4.5,4.5s-2.02,4.5-4.5,4.5c-1.76,0-3.27-1.02-4.01-2.5H3.35c0.82,2.33,3.04,4,5.65,4 c1.39,0,2.66-0.48,3.68-1.27L16.95,18L18.01,16.94z\\\"></path><polygon points=\\\"7,7.56 8.11,12 9.36,12 10.29,9.2 11.19,11 12.5,11 12.5,10 11.81,10 10.81,8 9.64,8 8.78,10.57 7.64,6 6.36,6 5.61,9 1,9 1,10 6.39,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"terminal\": {\n    \"name\": \"terminal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.11,4,20,4z M20,18H4V8h16V18z M18,17h-6v-2 h6V17z M7.5,17l-1.41-1.41L8.67,13l-2.59-2.59L7.5,9l4,4L7.5,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,14.5V7h13v7.5H3.5z M15,13.5h-5V12h5V13.5z M6.25,13.5l-1.06-1.06l1.69-1.69L5.19,9.06L6.25,8L9,10.75L6.25,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_bluetooth\": {\n    \"name\": \"settings_bluetooth\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"group_work\": {\n    \"name\": \"group_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path><circle cx=\\\"8\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"8\\\" r=\\\"2\\\"></circle><circle cx=\\\"16\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle>\"\n      }\n    }\n  },\n  \"no_accounts\": {\n    \"name\": \"no_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.18,10.94c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6c-0.52,0-1,0.12-1.44,0.32L15.18,10.94z\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86 c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2C13.17,15.05,12.59,15,12,15c-2.32,0-4.45,0.8-6.14,2.12C4.7,15.73,4,13.95,4,12z M12,20 c-1.74,0-3.34-0.56-4.65-1.5C8.66,17.56,10.26,17,12,17s3.34,0.56,4.65,1.5C15.34,19.44,13.74,20,12,20z M18.31,16.9L7.1,5.69 C8.45,4.63,10.15,4,12,4c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"offline_bolt\": {\n    \"name\": \"offline_bolt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"integration_instructions\": {\n    \"name\": \"integration_instructions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><polygon fill=\\\"none\\\" points=\\\"5,15 5,16 5,19 19,19 19,16 19,15 19,5 5,5\\\"></polygon><g><polygon points=\\\"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59\\\"></polygon><polygon points=\\\"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17\\\"></polygon><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,15v1v3H5v-3v-1V5h14V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_exchange\": {\n    \"name\": \"currency_exchange\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67 C15.39,8.03,14.72,6.56,13,6.24V5h-2v1.26C8.52,6.82,8.51,9.12,8.51,9.22c0,2.27,2.25,2.91,3.35,3.31 c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75c0.63,2.19,2.28,2.78,2.9,2.96V19 h2v-1.24c0.4-0.09,2.9-0.59,2.9-3.22C15.9,13.15,15.29,11.93,12.89,11.1z M3,21H1v-6h6v2l-2.48,0c1.61,2.41,4.36,4,7.48,4 c4.97,0,9-4.03,9-9h2c0,6.08-4.92,11-11,11c-3.72,0-7.01-1.85-9-4.67L3,21z M1,12C1,5.92,5.92,1,12,1c3.72,0,7.01,1.85,9,4.67L21,3 h2v6h-6V7l2.48,0C17.87,4.59,15.12,3,12,3c-4.97,0-9,4.03-9,9H1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13.06,12c0,2.06-1.96,2.46-2.37,2.53v0.98H9.31v-1.02c-0.58-0.14-1.88-0.61-2.37-2.33l1.3-0.53 c0.05,0.17,0.46,1.64,1.89,1.64c0.73,0,1.56-0.37,1.56-1.26c0-0.76-0.55-1.15-1.79-1.59c-0.86-0.31-2.63-0.81-2.63-2.6 c0-0.08,0.01-1.89,2.06-2.33V4.5h1.38v0.98c1.45,0.25,1.98,1.4,2.09,1.75l-1.24,0.53c-0.09-0.28-0.47-1.05-1.49-1.05 c-0.55,0-1.42,0.29-1.42,1.09c0,0.74,0.67,1.03,2.07,1.5C12.58,9.94,13.06,10.9,13.06,12z M6,14l0-1.5l-5,0l0,5l1.5,0l0-2.52 C4.11,17.4,6.87,19,10,19c4.97,0,9-4.03,9-9h-1.5c0,4.14-3.36,7.5-7.5,7.5c-2.67,0-5.02-1.4-6.35-3.5L6,14z M17.5,5.02 C15.89,2.6,13.13,1,10,1c-4.97,0-9,4.03-9,9h1.5c0-4.14,3.36-7.5,7.5-7.5c2.67,0,5.02,1.4,6.35,3.5L14,6v1.5h5v-5h-1.5L17.5,5.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm_add\": {\n    \"name\": \"alarm_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"restore\": {\n    \"name\": \"restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\\\"></path>\"\n      }\n    }\n  },\n  \"search_off\": {\n    \"name\": \"search_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z\\\"></path><polygon points=\\\"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,11.29c0.62-0.77,1-1.73,1-2.79C13,6.01,10.99,4,8.5,4C6.19,4,4.3,5.75,4.05,8h1C5.29,6.31,6.74,5,8.5,5 C10.43,5,12,6.57,12,8.5S10.43,12,8.5,12c-0.17,0-0.34-0.03-0.5-0.05v1C8.17,12.97,8.33,13,8.5,13c1.06,0,2.02-0.38,2.79-1 l3.57,3.57l0.71-0.71L12,11.29z\\\"></path><polygon points=\\\"5.91,9.38 4.5,10.79 3.09,9.38 2.38,10.09 3.79,11.5 2.38,12.91 3.09,13.62 4.5,12.21 5.91,13.62 6.62,12.91 5.21,11.5 6.62,10.09\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"not_accessible\": {\n    \"name\": \"not_accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.95,14h1c-0.24,1.69-1.69,3-3.45,3C6.57,17,5,15.43,5,13.5c0-1.76,1.31-3.21,3-3.45v1c-1.14,0.23-2,1.24-2,2.45 C6,14.88,7.12,16,8.5,16C9.71,16,10.72,15.14,10.95,14z M8.5,4.5C8.5,5.33,9.17,6,10,6s1.5-0.67,1.5-1.5S10.83,3,10,3 S8.5,3.67,8.5,4.5z M11,9.59V8.96l0.47,0.43c0.17,0.16,0.35,0.3,0.53,0.43c0.77,0.57,1.68,0.89,2.66,0.89v-1 c-0.94,0-1.81-0.36-2.49-1.04L12,8.52l-1.15-1.05c0,0-0.49-0.47-0.85-0.47C9.57,7,9.21,7.28,9.07,7.66L11,9.59z M16.36,16.36 L3.64,3.64L2.93,4.34L9,10.41V12c0,0.55,0.45,1,1,1h1.59l4.07,4.07L16.36,16.36z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shopping_cart\": {\n    \"name\": \"shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_control_off\": {\n    \"name\": \"noise_control_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c1.44,0,2.79,0.38,3.95,1.05l1.45-1.45C15.85,2.59,13.99,2,12,2S8.15,2.59,6.59,3.59l1.45,1.45 C9.21,4.38,10.56,4,12,4z\\\"></path><path d=\\\"M20,12c0,1.44-0.38,2.79-1.05,3.95l1.45,1.45C21.41,15.85,22,13.99,22,12s-0.59-3.85-1.59-5.41l-1.45,1.45 C19.62,9.21,20,10.56,20,12z\\\"></path><path d=\\\"M12,20c-1.44,0-2.79-0.38-3.95-1.05l-1.45,1.45C8.15,21.41,10.01,22,12,22s3.85-0.59,5.41-1.59l-1.45-1.45 C14.79,19.62,13.44,20,12,20z\\\"></path><path d=\\\"M4,12c0-1.44,0.38-2.79,1.05-3.95L3.59,6.59C2.59,8.15,2,10.01,2,12s0.59,3.85,1.59,5.41l1.45-1.45 C4.38,14.79,4,13.44,4,12z\\\"></path><path d=\\\"M11.5,6C9.02,6,7,8.02,7,10.5c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82 C10.56,17.17,11.71,18,13,18c1.65,0,3-1.35,3-3h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61 l-1.36-1.36C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02C15.72,7.75,13.81,6,11.5,6z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M3.39,5.51C2.51,6.79,2,8.34,2,10s0.51,3.21,1.39,4.49l1.09-1.09C3.86,12.41,3.5,11.25,3.5,10s0.36-2.41,0.97-3.41 L3.39,5.51z\\\"></path><path d=\\\"M16.61,5.51l-1.09,1.09C16.14,7.59,16.5,8.75,16.5,10s-0.36,2.41-0.97,3.41l1.09,1.09C17.49,13.21,18,11.66,18,10 S17.49,6.79,16.61,5.51z\\\"></path><path d=\\\"M10,16.5c-1.25,0-2.41-0.36-3.41-0.97l-1.09,1.09C6.79,17.49,8.34,18,10,18s3.21-0.51,4.49-1.39l-1.09-1.09 C12.41,16.14,11.25,16.5,10,16.5z\\\"></path><path d=\\\"M5.51,3.39l1.09,1.09C7.59,3.86,8.75,3.5,10,3.5s2.41,0.36,3.41,0.97l1.09-1.09C13.21,2.51,11.66,2,10,2 S6.79,2.51,5.51,3.39z\\\"></path><path d=\\\"M9.75,5C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62 C8.8,14.22,9.63,15,10.75,15c1.24,0,2.25-1.01,2.25-2.25h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58 c-0.22-0.9-0.77-1.7-1.69-2.44c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56 C13.08,6.29,11.56,5,9.75,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shop_2\": {\n    \"name\": \"shop_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,9H1v11c0,1.11,0.89,2,2,2h16v-2H3V9z\\\"></path><path d=\\\"M18,5V3c0-1.11-0.89-2-2-2h-4c-1.11,0-2,0.89-2,2v2H5v11c0,1.11,0.89,2,2,2h14c1.11,0,2-0.89,2-2V5H18z M12,3h4v2h-4V3z M21,16H7V7h14V16z\\\"></path><polygon points=\\\"12,8 12,15 17.5,11.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2.5,7H1v9.5C1,17.33,1.67,18,2.5,18H16v-1.5H2.5V7z\\\"></path><path d=\\\"M15,4V2.5C15,1.67,14.33,1,13.5,1h-4C8.67,1,8,1.67,8,2.5V4H4v9.5C4,14.33,4.67,15,5.5,15h12c0.83,0,1.5-0.67,1.5-1.5V4 H15z M9.5,2.5h4V4h-4V2.5z M17.5,13.5h-12v-8h12V13.5z\\\"></path><polygon points=\\\"10,6.5 10,12.5 14.5,9.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_home\": {\n    \"name\": \"add_home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,5.5l6,4.5v1c0.7,0,1.37,0.1,2,0.29V9l-8-6L4,9v12h7.68c-0.3-0.62-0.5-1.29-0.6-2H6v-9L12,5.5z\\\"></path></g><g><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M10,4.88l4.5,3.38v1.28C14.66,9.51,14.83,9.5,15,9.5c0.34,0,0.68,0.04,1,0.1V7.5L10,3L4,7.5V17h5.88 c-0.18-0.47-0.31-0.97-0.36-1.5H5.5V8.25L10,4.88z\\\"></path></g><g><path d=\\\"M15,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C19,12.79,17.21,11,15,11z M17,15.5h-1.5V17h-1v-1.5H13v-1h1.5 V13h1v1.5H17V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"task_alt\": {\n    \"name\": \"task_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M19.79,10.22C19.92,10.79,20,11.39,20,12 c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8c1.58,0,3.04,0.46,4.28,1.25l1.44-1.44C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12 c0,5.52,4.48,10,10,10s10-4.48,10-10c0-1.19-0.22-2.33-0.6-3.39L19.79,10.22z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_open\": {\n    \"name\": \"lock_open\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"density_large\": {\n    \"name\": \"density_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"date_range\": {\n    \"name\": \"date_range\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11h2v2H7v-2zm14-5v14c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2l.01-14c0-1.1.88-2 1.99-2h1V2h2v2h8V2h2v2h1c1.1 0 2 .9 2 2zM5 8h14V6H5v2zm14 12V10H5v10h14zm-4-7h2v-2h-2v2zm-4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down\": {\n    \"name\": \"swipe_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25c-0.56-1.26-2.04-1.83-3.3-1.27 s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67c0.49,0.19,1.05,0.18,1.53-0.04 l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88 l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z M3.8,12.18 c-0.2-0.86-0.3-1.76-0.3-2.68c0-2.84,0.99-5.45,2.63-7.5L7.2,3.07C5.82,4.85,5,7.08,5,9.5c0,0.88,0.11,1.74,0.32,2.56l1.62-1.62 L8,11.5L4.5,15L1,11.5l1.06-1.06L3.8,12.18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M4.4,10.51l1.54-1.54l0.71,0.71L3.83,12.5L1,9.67l0.71-0.71l1.69,1.69C3.14,9.82,3,8.93,3,8c0-2.31,0.87-4.41,2.29-6 L6,2.71C4.75,4.12,4,5.97,4,8C4,8.88,4.14,9.72,4.4,10.51z M16.79,8.07L13.6,8l-0.91,0.41l-1.22-2.74 C11.02,4.65,9.84,4.2,8.83,4.64C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3 L13,17.63c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13c0.68-0.3,1.04-1.06,0.84-1.78l-1.18-4.17C18.39,8.69,17.65,8.11,16.79,8.07z M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25 l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"extension\": {\n    \"name\": \"extension\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.5 4.5c.28 0 .5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3s-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5m0-2C9.12 2.5 8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"android\": {\n    \"name\": \"android\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g></g><g><path d=\\\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_remove\": {\n    \"name\": \"bookmark_remove\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,11v6.97l-5-2.14l-5,2.14V5h6V3H7C5.9,3,5,3.9,5,5v16l7-3l7,3V11H17z M21,7h-6V5h6V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,9v5.78l-3.5-1.4l-3.5,1.4V4.5H11V3H6.5C5.67,3,5,3.67,5,4.5V17l5-2l5,2V9H13.5z M12.75,4.25v1.5h4.5v-1.5H12.75z\\\"></path>\"\n      }\n    }\n  },\n  \"open_with\": {\n    \"name\": \"open_with\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_data_setting\": {\n    \"name\": \"perm_data_setting\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_sidebar\": {\n    \"name\": \"view_sidebar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,4v12h14V4H3z M16,7.67h-2.5V5H16V7.67z M13.5,8.67H16v2.67h-2.5V8.67z M4,5h8.5v10H4V5z M13.5,15v-2.67H16V15H13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"article\": {\n    \"name\": \"article\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z\\\"></path></g><path d=\\\"M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label\": {\n    \"name\": \"label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z\\\"></path>\"\n      }\n    }\n  },\n  \"important_devices\": {\n    \"name\": \"important_devices\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"fingerprint\": {\n    \"name\": \"fingerprint\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_up_off_alt\": {\n    \"name\": \"thumb_up_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M9,21h9c0.83,0,1.54-0.5,1.84-1.22l3.02-7.05C22.95,12.5,23,12.26,23,12v-2c0-1.1-0.9-2-2-2h-6.31l0.95-4.57l0.03-0.32 c0-0.41-0.17-0.79-0.44-1.06L14.17,1L7.58,7.59C7.22,7.95,7,8.45,7,9v10C7,20.1,7.9,21,9,21z M9,9l4.34-4.34L12,10h9v2l-3,7H9V9z M1,9h4v12H1V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"logout\": {\n    \"name\": \"logout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,8l-1.41,1.41L17.17,11H9v2h8.17l-1.58,1.58L17,16l4-4L17,8z M5,5h7V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h7v-2H5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"work_outline\": {\n    \"name\": \"work_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z\\\"></path>\"\n      }\n    }\n  },\n  \"unpublished\": {\n    \"name\": \"unpublished\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors_off\": {\n    \"name\": \"sensors_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.14,10.96C8.05,11.29,8,11.64,8,12c0,1.1,0.45,2.1,1.17,2.83l-1.42,1.42C6.67,15.16,6,13.66,6,12 c0-0.93,0.21-1.8,0.58-2.59L5.11,7.94C4.4,9.13,4,10.52,4,12c0,2.21,0.9,4.21,2.35,5.65l-1.42,1.42C3.12,17.26,2,14.76,2,12 c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L8.14,10.96z M17.42,14.59C17.79,13.8,18,12.93,18,12 c0-1.66-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12c0,0.36-0.05,0.71-0.14,1.04L17.42,14.59z M20,12 c0,1.48-0.4,2.87-1.11,4.06l1.45,1.45C21.39,15.93,22,14.04,22,12c0-2.76-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.71,8.84C6.58,9.2,6.5,9.59,6.5,10c0,0.96,0.39,1.84,1.03,2.47l-1.06,1.06C5.56,12.63,5,11.38,5,10 c0-0.83,0.22-1.61,0.58-2.3L4.47,6.59C3.86,7.59,3.5,8.75,3.5,10c0,1.79,0.73,3.42,1.91,4.59l-1.06,1.06C2.9,14.21,2,12.21,2,10 c0-1.67,0.51-3.21,1.38-4.5L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L6.71,8.84z M14.59,5.41l1.06-1.06C17.1,5.79,18,7.79,18,10 c0,1.67-0.51,3.22-1.38,4.5l-1.09-1.09c0.61-0.99,0.97-2.16,0.97-3.41C16.5,8.21,15.77,6.58,14.59,5.41z M12.47,7.53l1.06-1.06 C14.44,7.37,15,8.62,15,10c0,0.83-0.2,1.62-0.57,2.31l-1.14-1.14c0.13-0.37,0.2-0.76,0.2-1.18C13.5,9.04,13.11,8.16,12.47,7.53z\\\"></path>\"\n      }\n    }\n  },\n  \"send_and_archive\": {\n    \"name\": \"send_and_archive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11,12l-6-1.5V7.01l8.87,3.73c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\\\"></path></g><g><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M17,20l-3-3l0.71-0.71l1.79,1.79V14h1v4.09l1.79-1.79 L20,17L17,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9,10L4.5,8.5V6.22l7.1,2.84C12.33,8.7,13.14,8.5,14,8.5c0.1,0,0.19,0.01,0.29,0.01L3,4v12l5.51-2.2 c0.02-0.62,0.15-1.21,0.36-1.76L4.5,13.78V11.5L9,10z\\\"></path></g><g><path d=\\\"M14,10c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,11.79,16.21,10,14,10z M14.71,15.29L14,16l-0.71-0.71 l-1.54-1.54l0.71-0.71l1.04,1.04V12h1v2.09l1.04-1.04l0.71,0.71L14.71,15.29z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"network_ping\": {\n    \"name\": \"network_ping\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15-5.15C18.91,10.95,19.2,11,19.5,11c1.38,0,2.5-1.12,2.5-2.5 S20.88,6,19.5,6S17,7.12,17,8.5c0,0.35,0.07,0.67,0.2,0.97L12,14.67z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M4,13l0,1.5h12V13h-5l4.18-4.18C15.43,8.94,15.71,9,16,9c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.26,0.05,0.51,0.14,0.74L10,11.88L3.06,4.94L2,6l7,7H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_as_unread\": {\n    \"name\": \"mark_as_unread\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.23,7h2.6c-0.06-0.47-0.36-0.94-0.79-1.17L10.5,2L2.8,5.83C2.32,6.09,2,6.64,2,7.17V15c0,1.1,0.9,2,2,2V7.4L10.5,4 L16.23,7z\\\"></path><path d=\\\"M20,8H7c-1.1,0-2,0.9-2,2v9c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2v-9C22,8.9,21.1,8,20,8z M20,19H7v-7l6.5,3.33L20,12V19z M13.5,13.33L7,10h13L13.5,13.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M12.5,5.5h2.42c-0.13-0.39-0.41-0.72-0.79-0.9L8.5,2L2.87,4.6C2.34,4.84,2,5.37,2,5.96v6.54C2,13.33,2.67,14,3.5,14V5.96 l5-2.31L12.5,5.5z\\\"></path><path d=\\\"M16.5,7h-10C5.67,7,5,7.67,5,8.5v7C5,16.33,5.67,17,6.5,17h10c0.83,0,1.5-0.67,1.5-1.5v-7C18,7.67,17.33,7,16.5,7z M16.5,15.5h-10v-5.28l5,2.78l5-2.78V15.5z M11.5,11.28l-5-2.78h10L11.5,11.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bug_report\": {\n    \"name\": \"bug_report\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.48 8 15.23 8 15v-4c0-.23.03-.48.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle_outline\": {\n    \"name\": \"check_circle_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"savings\": {\n    \"name\": \"savings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M15,10c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,10.55,15,10z M8,9h5V7H8V9z M22,7.5v6.97l-2.82,0.94L17.5,21 L12,21v-2h-2v2l-5.5,0C4.5,21,2,12.54,2,9.5S4.46,4,7.5,4l5,0c0.91-1.21,2.36-2,4-2C17.33,2,18,2.67,18,3.5 c0,0.21-0.04,0.4-0.12,0.58c-0.14,0.34-0.26,0.73-0.32,1.15l2.27,2.27H22z M20,9.5h-1L15.5,6c0-0.65,0.09-1.29,0.26-1.91 C14.79,4.34,14,5.06,13.67,6L7.5,6C5.57,6,4,7.57,4,9.5c0,1.88,1.22,6.65,2.01,9.5L8,19v-2h6v2l2.01,0l1.55-5.15L20,13.03V9.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.21,3.61C13.11,3.95,13,4.35,13,5.12L15.88,8h0.62v2.8l-1.95,0.43l-1.19,4.27H11.5V14H7v1.5H5.13 C4.49,13.26,3.5,9.46,3.5,8c0-1.65,1.35-3,3-3l4.9,0C11.73,4.43,12.33,3.85,13.21,3.61z M14,2c-2.17,0-3.35,1.5-3.35,1.5H6.5 C4.05,3.5,2,5.47,2,8c0,2.33,2,9,2,9h4.5v-1.5H10V17h4.5l1.25-4.5L18,12V6.5h-1.5l-2-2C14.5,4.14,15,3.52,15,3C15,2.45,14.55,2,14,2 L14,2z M11,7.5H7V6h4V7.5z M13.25,9c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25 C14,8.66,13.66,9,13.25,9z\\\"></path>\"\n      }\n    }\n  },\n  \"commit\": {\n    \"name\": \"commit\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.9,11L16.9,11c-0.46-2.28-2.48-4-4.9-4s-4.44,1.72-4.9,4h0H2v2h5.1h0c0.46,2.28,2.48,4,4.9,4s4.44-1.72,4.9-4h0H22v-2 H16.9z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,15,12,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13.93,9.25C13.58,7.4,11.95,6,10,6S6.42,7.4,6.07,9.25H2v1.5h4.07C6.42,12.6,8.05,14,10,14s3.58-1.4,3.93-3.25H18v-1.5 H13.93z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history\": {\n    \"name\": \"history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\\\"></path>\"\n      }\n    }\n  },\n  \"assured_workload\": {\n    \"name\": \"assured_workload\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"10\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><path d=\\\"M22,6L12,1L2,6v2h20V6z M6.47,6L12,3.24L17.53,6H6.47z\\\"></path><path d=\\\"M2,19v2h12.4c-0.21-0.64-0.32-1.31-0.36-2H2z\\\"></path><polygon points=\\\"19,12.26 19,10 17,10 17,13.26\\\"></polygon><path d=\\\"M20,14l-4,2v2.55c0,2.52,1.71,4.88,4,5.45c2.29-0.57,4-2.93,4-5.45V16L20,14z M19.28,21l-2.03-2.03l1.06-1.06l0.97,0.97 l2.41-2.38l1.06,1.06L19.28,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><path d=\\\"M18,5l-8-4L2,5v2h16V5z M4.35,5.5L10,2.68l5.65,2.82H4.35z\\\"></path><path d=\\\"M2,15.5V17h10.66c-0.05-0.22-0.16-0.71-0.16-1.5H2z\\\"></path><polygon points=\\\"16,10.82 16,8 14.5,8 14.5,11.57\\\"></polygon><path d=\\\"M17,12l-3,1.5v2.14c0,2.02,1.28,3.91,3,4.36c1.72-0.46,3-2.35,3-4.36V13.5L17,12z M16.43,17.5l-1.55-1.54l0.71-0.71 l0.82,0.81L18.39,14l0.73,0.68L16.43,17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_identity\": {\n    \"name\": \"perm_identity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0 9c2.7 0 5.8 1.29 6 2v1H6v-.99c.2-.72 3.3-2.01 6-2.01m0-11C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"install_desktop\": {\n    \"name\": \"install_desktop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,17H4V5h8V3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2v-3h-2V17z\\\"></path><polygon points=\\\"17,14 22,9 20.59,7.59 18,10.17 18,3 16,3 16,10.17 13.41,7.59 12,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,13.5h-13v-9H11V3H3.5C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5V11h-1.5 V13.5z\\\"></path><polygon points=\\\"14.48,11 18,7.48 16.94,6.42 15.25,8.11 15.25,3 13.75,3 13.75,8.14 12.06,6.45 11,7.52\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"production_quantity_limits\": {\n    \"name\": \"production_quantity_limits\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10h-2V8h2V10z M13,6h-2V1h2V6z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18 c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7 H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_basket\": {\n    \"name\": \"shopping_basket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"space_dashboard\": {\n    \"name\": \"space_dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19V5h6v14H5z M19,19h-6v-7h6V19z M19,10h-6V5h6V10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v10.94C3,16.3,3.7,17,4.56,17H15.5c0.83,0,1.5-0.67,1.5-1.5V4.5z M15.5,4.5v4h-4.75v-4H15.5z M4.5,15.5v-11h4.75v11H4.5z M15.5,15.5h-4.75V10h4.75V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"app_blocking\": {\n    \"name\": \"app_blocking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z\\\"></path><path d=\\\"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cancel_schedule_send\": {\n    \"name\": \"cancel_schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7l8.07-3.46 C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25z M9.1,15.36L3,17.97 v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5 S19.53,22,16.5,22z\\\"></path><polygon points=\\\"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><polygon points=\\\"15.41,11.88 14,13.29 12.59,11.88 11.88,12.59 13.29,14 11.88,15.41 12.59,16.12 14,14.71 15.41,16.12 16.12,15.41 14.71,14 16.12,12.59\\\"></polygon><g><path d=\\\"M1.5,11.94l8-1.09c-0.14,0.2-0.27,0.41-0.38,0.63l0.29-0.61L1.5,11.94v4.3l7.06-3.09l0.05-0.25 c0.02-0.08,0.03-0.16,0.05-0.23C8.56,13.09,8.5,13.54,8.5,14v-0.76l-0.7,0.24l-6.3,2.76V11.94z M19.5,14c0-3.03-2.47-5.5-5.5-5.5 C17.03,8.5,19.5,10.97,19.5,14z M10.9,9.35L1.5,8.06v-4.3v4.3l9.54,1.3c-0.29,0.18-0.55,0.39-0.8,0.62L10.9,9.35z M12.54,8.59 l-5.1-2.23l5.25,2.3l0.03-0.01c-0.32,0.08-0.64,0.18-0.93,0.32L12.54,8.59z\\\"></path><path d=\\\"M1,3v5.5l8.82,1.2c-0.22,0.21-0.41,0.44-0.59,0.68L1,11.5V17l7-3.06c0,0.02,0,0.04,0,0.06c0,3.31,2.69,6,6,6s6-2.69,6-6 s-2.69-6-6-6c-0.43,0-0.85,0.05-1.26,0.14L1,3L1,3z M10.94,8.85L2,7.63v-3.1l9.35,4.09C11.21,8.69,11.07,8.77,10.94,8.85 L10.94,8.85z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S16.76,19,14,19L14,19z M2,15.47v-3.1l6.56-0.89 c-0.19,0.42-0.35,0.85-0.44,1.31L2,15.47L2,15.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"assignment_returned\": {\n    \"name\": \"assignment_returned\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_right_alt\": {\n    \"name\": \"arrow_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket_launch\": {\n    \"name\": \"rocket_launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,15c-0.83,0-1.58,0.34-2.12,0.88C2.7,17.06,2,22,2,22s4.94-0.7,6.12-1.88C8.66,19.58,9,18.83,9,18C9,16.34,7.66,15,6,15 z M6.71,18.71c-0.28,0.28-2.17,0.76-2.17,0.76s0.47-1.88,0.76-2.17C5.47,17.11,5.72,17,6,17c0.55,0,1,0.45,1,1 C7,18.28,6.89,18.53,6.71,18.71z M17.42,13.65L17.42,13.65c6.36-6.36,4.24-11.31,4.24-11.31s-4.95-2.12-11.31,4.24l-2.49-0.5 C7.21,5.95,6.53,6.16,6.05,6.63L2,10.69l5,2.14L11.17,17l2.14,5l4.05-4.05c0.47-0.47,0.68-1.15,0.55-1.81L17.42,13.65z M7.41,10.83L5.5,10.01l1.97-1.97l1.44,0.29C8.34,9.16,7.83,10.03,7.41,10.83z M13.99,18.5l-0.82-1.91 c0.8-0.42,1.67-0.93,2.49-1.5l0.29,1.44L13.99,18.5z M16,12.24c-1.32,1.32-3.38,2.4-4.04,2.73l-2.93-2.93 c0.32-0.65,1.4-2.71,2.73-4.04c4.68-4.68,8.23-3.99,8.23-3.99S20.68,7.56,16,12.24z M15,11c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 S13.9,11,15,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.45,10.86l0.26,2.1c0.06,0.46-0.1,0.92-0.43,1.25l-3.55,3.55l-1.41-4.24l-2.83-2.83L2.25,9.27l3.55-3.55 c0.33-0.33,0.79-0.49,1.25-0.43l2.1,0.26C13.92,0.78,17.8,2.2,17.8,2.2C17.8,2.2,19.22,6.08,14.45,10.86z M10.2,6.62 C9.18,7.64,8.37,9.06,7.9,9.97l2.12,2.12c0.91-0.46,2.34-1.27,3.36-2.3C16.18,7,16.54,4.67,16.5,3.5C15.33,3.46,13,3.82,10.2,6.62 z M14,7.5C14,6.68,13.32,6,12.5,6C11.67,6,11,6.68,11,7.5S11.67,9,12.5,9C13.32,9,14,8.33,14,7.5z M7.99,6.92L6.86,6.78L5.02,8.61 l1.62,0.54C6.97,8.52,7.43,7.71,7.99,6.92z M10.85,13.36l0.54,1.62l1.83-1.83l-0.14-1.14C12.29,12.57,11.48,13.03,10.85,13.36z M5.25,12.5c-0.62,0-1.18,0.25-1.59,0.66C2.44,14.38,2,18,2,18s3.62-0.44,4.84-1.66c0.41-0.41,0.66-0.97,0.66-1.59 C7.5,13.51,6.49,12.5,5.25,12.5z M5.78,15.28c-0.44,0.44-1.87,0.81-1.87,0.81s0.37-1.43,0.81-1.87c0.29-0.29,0.77-0.29,1.06,0 S6.07,14.99,5.78,15.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"query_builder\": {\n    \"name\": \"query_builder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"new_label\": {\n    \"name\": \"new_label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,12l-4.37,6.16C16.26,18.68,15.65,19,15,19h-3l0-2h3l3.55-5L15,7H5v3H3V7c0-1.1,0.9-2,2-2h10c0.65,0,1.26,0.31,1.63,0.84 L21,12z M10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,10l-3.55,4.44C13.17,14.79,12.73,15,12.28,15H10.5v-1.5h1.78l2.8-3.5l-2.8-3.5H5.5v2H4v-2C4,5.67,4.67,5,5.5,5h6.78 c0.46,0,0.89,0.21,1.17,0.56L17,10z M9,12H7v-2H5.5v2h-2v1.5h2v2H7v-2h2V12z\\\"></path>\"\n      }\n    }\n  },\n  \"exit_to_app\": {\n    \"name\": \"exit_to_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_late\": {\n    \"name\": \"assignment_late\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64-.1.23-.16.49-.16.77v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down_alt\": {\n    \"name\": \"swipe_down_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,13.9c2.28-0.46,4-2.48,4-4.9c0-2.76-2.24-5-5-5S7,6.24,7,9c0,2.42,1.72,4.44,4,4.9v4.27l-1.59-1.59L8,18l4,4l4-4 l-1.41-1.41L13,18.17V13.9z M15,9c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,7.34,15,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10.75,11.93C12.6,11.58,14,9.95,14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,1.95,1.4,3.58,3.25,3.93l0,3.2l-1.19-1.19 L7,15l3,3l3-3l-1.06-1.06l-1.19,1.19L10.75,11.93z M12.5,8c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5S8.62,5.5,10,5.5 C11.38,5.5,12.5,6.62,12.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_window\": {\n    \"name\": \"sensor_window\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V4C16,3.45,15.55,3,15,3z M15,16H5v-6h10V16z M15,9 h-3.5V8h-3v1H5V4h10V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"energy_savings_leaf\": {\n    \"name\": \"energy_savings_leaf\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3C12,3,12,3,12,3c-4.8,0-9,3.86-9,9c0,2.12,0.74,4.07,1.97,5.61L3,19.59L4.41,21l1.97-1.97C7.93,20.26,9.88,21,12,21 c2.3,0,4.61-0.88,6.36-2.64C20.12,16.61,21,14.3,21,12l0-9L12,3z M19,12c0,1.87-0.73,3.63-2.05,4.95C15.63,18.27,13.87,19,12,19 c-3.86,0-7-3.14-7-7c0-1.9,0.74-3.68,2.1-4.99C8.42,5.71,10.16,5,12,5l7,0L19,12z\\\"></path><path d=\\\"M8.46,12.63l4.05,0.4l-2.44,3.33c-0.11,0.16-0.1,0.38,0.04,0.52c0.15,0.15,0.4,0.16,0.56,0.01l5.16-4.63 c0.33-0.3,0.15-0.85-0.3-0.89l-4.05-0.4l2.44-3.33c0.11-0.16,0.1-0.38-0.04-0.52c-0.15-0.15-0.4-0.16-0.56-0.01l-5.16,4.63 C7.84,12.04,8.02,12.59,8.46,12.63z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,3C10,3,10,3,10,3c-3.73,0-7,3-7,7c0,1.66,0.58,3.19,1.55,4.39L3,15.94L4.06,17l1.55-1.55C6.81,16.42,8.34,17,10,17 c1.79,0,3.58-0.68,4.95-2.05C16.32,13.58,17,11.79,17,10l0-7L10,3z M15.5,10c0,1.47-0.57,2.85-1.61,3.89 c-1.04,1.04-2.42,1.61-3.89,1.61c-3.03,0-5.5-2.47-5.5-5.5c0-1.5,0.58-2.89,1.65-3.92C7.19,5.06,8.56,4.5,10,4.5l5.5,0L15.5,10z\\\"></path><path d=\\\"M7.49,10.6l2.93,0.18L8.4,13.36c-0.12,0.16-0.11,0.38,0.03,0.52c0.15,0.15,0.4,0.15,0.55,0.01l3.86-3.59 c0.33-0.31,0.13-0.87-0.32-0.9L9.58,9.22l2.02-2.58c0.12-0.16,0.11-0.38-0.03-0.52c-0.15-0.15-0.4-0.15-0.55-0.01L7.16,9.7 C6.83,10.01,7.03,10.57,7.49,10.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane\": {\n    \"name\": \"propane\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,6h-1V5c0-1.1-0.9-2-2-2h-4C8.9,3,8,3.9,8,5v1H7c-3.31,0-6,2.69-6,6s2.69,6,6,6v3h2v-3h6v3h2v-3c3.31,0,6-2.69,6-6 S20.31,6,17,6z M10,5h4v1h-4V5z M17,16H7c-2.21,0-4-1.79-4-4s1.79-4,4-4h10c2.21,0,4,1.79,4,4S19.21,16,17,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14,5h-1V4c0-0.83-0.67-1.5-1.5-1.5h-3C7.67,2.5,7,3.17,7,4v1H6c-2.76,0-5,2.24-5,5s2.24,5,5,5v2h1.5v-2h5v2H14v-2 c2.76,0,5-2.24,5-5S16.76,5,14,5z M8.5,4h3v1h-3V4z M14,13.5H6c-1.93,0-3.5-1.57-3.5-3.5S4.07,6.5,6,6.5h8c1.93,0,3.5,1.57,3.5,3.5 S15.93,13.5,14,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vertical_shades\": {\n    \"name\": \"vertical_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M14,5v14h-4V5H14z M6,5h2v14H6V5z M16,19V5h2v14H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M11.5,4.5v11h-3v-11H11.5z M5.5,4.5H7v11H5.5V4.5z M13,15.5v-11h1.5v11H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"curtains\": {\n    \"name\": \"curtains\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M18,10.86c-2.05-0.58-3.64-2.93-3.94-5.86H18V10.86z M15.81,12c-2.04,1.35-3.5,3.94-3.76,7 h-0.09c-0.26-3.06-1.72-5.65-3.76-7c2.04-1.35,3.5-3.94,3.76-7h0.09C12.31,8.06,13.77,10.65,15.81,12z M9.94,5 C9.64,7.93,8.05,10.27,6,10.86V5H9.94z M6,13.14c2.05,0.58,3.64,2.93,3.94,5.86H6V13.14z M14.06,19c0.3-2.93,1.89-5.27,3.94-5.86 V19H14.06z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M14.5,9.2c-1.66-0.33-2.98-2.26-3.21-4.7h3.21V9.2z M12.65,10 c-1.25,0.84-2.22,2.32-2.65,4.12c-0.43-1.8-1.4-3.28-2.65-4.12C8.6,9.16,9.57,7.68,10,5.88C10.43,7.68,11.4,9.16,12.65,10z M8.71,4.5C8.48,6.94,7.16,8.87,5.5,9.2V4.5H8.71z M5.5,10.8c1.66,0.33,2.98,2.26,3.21,4.7H5.5V10.8z M11.29,15.5 c0.23-2.44,1.55-4.37,3.21-4.7v4.7H11.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"solar_power\": {\n    \"name\": \"solar_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,12H4L2,22h20L20,12z M18.36,14l0.4,2H13v-2H18.36z M11,14v2H5.24l0.4-2H11z M4.84,18H11v2H4.44L4.84,18z M13,20v-2 h6.16l0.4,2H13z\\\"></path><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.2089 14.6085)\\\" width=\\\"2\\\" x=\\\"16.53\\\" y=\\\"6.06\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.448 6.7885)\\\" width=\\\"3\\\" x=\\\"4.97\\\" y=\\\"6.56\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"18\\\" y=\\\"2\\\"></rect><path d=\\\"M12,7c2.76,0,5-2.24,5-5h-2c0,1.65-1.35,3-3,3S9,3.65,9,2H7C7,4.76,9.24,7,12,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,10h-13L2,18h16L16.5,10z M15.26,11.5l0.33,1.75h-4.83V11.5H15.26z M9.25,11.5v1.75H4.42l0.33-1.75H9.25z M4.14,14.75h5.11v1.75H3.81L4.14,14.75z M10.75,16.5v-1.75h5.11l0.33,1.75H10.75z\\\"></path><rect height=\\\"2\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.3314 12.1139)\\\" width=\\\"1.5\\\" x=\\\"13.71\\\" y=\\\"5.46\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9423 5.8107)\\\" width=\\\"2\\\" x=\\\"4.54\\\" y=\\\"5.71\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"2.05\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"2.05\\\"></rect><path d=\\\"M10,6c2.21,0,4-1.79,4-4h-1.5c0,1.38-1.12,2.5-2.5,2.5S7.5,3.38,7.5,2H6C6,4.21,7.79,6,10,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"broadcast_on_home\": {\n    \"name\": \"broadcast_on_home\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,6c0-1.1-0.9-2-2-2H4v2h16v2.59c0.73,0.29,1.4,0.69,2,1.17V6z\\\"></path><path d=\\\"M8,9H3c-0.5,0-1,0.5-1,1v9c0,0.5,0.5,1,1,1h5c0.5,0,1-0.5,1-1v-9C9,9.5,8.5,9,8,9z M7,18H4v-7h3V18z\\\"></path><path d=\\\"M17.75,16.97c0.3-0.23,0.5-0.57,0.5-0.97c0-0.69-0.56-1.25-1.25-1.25s-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22 h1.5V16.97z\\\"></path><path d=\\\"M17,13.5c1.38,0,2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16c0-2.21-1.79-4-4-4 c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77C14.5,14.62,15.62,13.5,17,13.5z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,5.5C18,4.67,17.33,4,16.5,4H4v1.5h12.5v2.05c0.55,0.25,1.05,0.59,1.5,0.99V5.5z\\\"></path><path d=\\\"M6.5,7.5H3c-0.55,0-1,0.45-1,1V15c0,0.55,0.45,1,1,1h3.5c0.55,0,1-0.45,1-1V8.5C7.5,7.95,7.05,7.5,6.5,7.5z M6,14.5H3.5V9 H6V14.5z\\\"></path><path d=\\\"M14.5,13.85C14.79,13.67,15,13.37,15,13c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1V13.85z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,11c1.1,0,2,0.9,2,2c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22c0-1.66-1.34-3-3-3s-3,1.34-3,3 c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13C12,11.9,12.9,11,14,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane_tank\": {\n    \"name\": \"propane_tank\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,6.14V4c0-1.1-0.9-2-2-2H9C7.9,2,7,2.9,7,4v2.14c-1.72,0.45-3,2-3,3.86v8c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4v-8 C20,8.14,18.72,6.59,17,6.14z M9,4h6v2h-2c0-0.55-0.45-1-1-1s-1,0.45-1,1H9V4z M8,8h8c1.1,0,2,0.9,2,2v3H6v-3C6,8.9,6.9,8,8,8z M16,20H8c-1.1,0-2-0.9-2-2v-3h12v3C18,19.1,17.1,20,16,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14,5.18V3.5C14,2.67,13.33,2,12.5,2h-5C6.67,2,6,2.67,6,3.5v1.68C4.84,5.6,4,6.7,4,8v7c0,1.66,1.34,3,3,3h6 c1.66,0,3-1.34,3-3V8C16,6.7,15.16,5.6,14,5.18z M7.5,3.5h5V5h-1.75c0-0.41-0.34-0.75-0.75-0.75S9.25,4.59,9.25,5H7.5V3.5z M7,6.5 h6c0.83,0,1.5,0.67,1.5,1.5v2.75h-9V8C5.5,7.17,6.17,6.5,7,6.5z M13,16.5H7c-0.83,0-1.5-0.67-1.5-1.5v-2.75h9V15 C14.5,15.83,13.83,16.5,13,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vertical_shades_closed\": {\n    \"name\": \"vertical_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M13,5h1.5v14H13V5z M11,19H9.5V5H11V19z M6,5h1.5v14H6V5z M16.5,19V5H18v14H16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M10.75,4.5h1.12v11h-1.12V4.5z M9.25,15.5H8.12v-11h1.12V15.5z M5.5,4.5h1.12v11H5.5 V4.5z M13.38,15.5v-11h1.12v11H13.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nest_cam_wired_stand\": {\n    \"name\": \"nest_cam_wired_stand\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,1c-0.15,0,0.11-0.02-4.28,0.42C8.47,1.75,6,4.48,6,7.75s2.47,6,5.72,6.33l1.9,0.19l-0.56,0.85 C12.71,15.04,12.36,15,12,15c-2.76,0-5,2.24-5,5v2c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-2c0-1.67-0.83-3.15-2.09-4.06l0.97-1.45 c0.04,0,0.09,0.01,0.13,0.01c1.09,0,2-0.89,2-2V3C18,1.89,17.09,1,16,1z M15,21H9v-1c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3V21z M8,7.75c0-2.25,1.69-4.11,3.92-4.34L16,3h0l0.03,9.5l-4.11-0.42C9.69,11.86,8,10,8,7.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M13.5,1c-0.06,0-3.79,0.47-3.79,0.47C7.02,1.79,5,4.06,5,6.75s2.02,4.96,4.72,5.28l1.37,0.17l-0.57,0.85 C10.35,13.03,10.18,13,10,13c-2.21,0-4,1.79-4,4v1.5C6,18.78,6.22,19,6.5,19h7c0.28,0,0.5-0.22,0.5-0.5V17 c0-1.48-0.81-2.76-2.01-3.45l0.76-1.13c0.61,0.08,0.63,0.08,0.76,0.08c0.81,0,1.5-0.66,1.5-1.49V2.49C15,1.66,14.32,1,13.5,1z M12.5,17.5h-5V17c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5V17.5z M13.5,11l-3.6-0.46C7.96,10.31,6.5,8.68,6.5,6.75 s1.46-3.56,3.41-3.79L13.5,2.5l0,0L13.5,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"blinds\": {\n    \"name\": \"blinds\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M16,9h2v2h-2V9z M14,11H6V9h8V11z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-6h8v1.82 c-0.45,0.32-0.75,0.84-0.75,1.43c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75c0-0.59-0.3-1.12-0.75-1.43V13h2v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M12.5,7.75h2v1.5h-2V7.75z M11,9.25H5.5v-1.5H11V9.25z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-4.75H11v1.53c-0.3,0.23-0.5,0.57-0.5,0.97c0,0.69,0.56,1.25,1.25,1.25S13,13.94,13,13.25 c0-0.4-0.2-0.75-0.5-0.97v-1.53h2v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_occupied\": {\n    \"name\": \"sensor_occupied\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,11c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,6.34,9,8S10.34,11,12,11z M12,7c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,7,12,7z\\\"></path><path d=\\\"M12,12c-1.84,0-3.56,0.5-5.03,1.37C6.36,13.72,6,14.39,6,15.09V17h12v-1.91c0-0.7-0.36-1.36-0.97-1.72 C15.56,12.5,13.84,12,12,12z M8.14,15c1.18-0.65,2.51-1,3.86-1c1.35,0,2.68,0.35,3.85,1H8.14z\\\"></path><path d=\\\"M21.23,8.15l1.85-0.77c-1.22-2.91-3.55-5.25-6.46-6.46l-0.77,1.85C18.27,3.79,20.21,5.73,21.23,8.15z\\\"></path><path d=\\\"M8.15,2.77L7.38,0.92C4.47,2.14,2.14,4.47,0.92,7.38l1.85,0.77C3.79,5.73,5.73,3.79,8.15,2.77z\\\"></path><path d=\\\"M2.77,15.85l-1.85,0.77c1.22,2.91,3.55,5.25,6.46,6.46l0.77-1.85C5.73,20.21,3.79,18.27,2.77,15.85z\\\"></path><path d=\\\"M15.85,21.23l0.77,1.85c2.91-1.22,5.25-3.55,6.46-6.46l-1.85-0.77C20.21,18.27,18.27,20.21,15.85,21.23z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M17.84,6.73l1.39-0.58c-1.01-2.43-2.96-4.37-5.38-5.38l-0.58,1.39C15.33,3.02,16.98,4.67,17.84,6.73z\\\"></path><path d=\\\"M13.27,17.84l0.58,1.39c2.43-1.01,4.37-2.96,5.38-5.38l-1.39-0.58C16.98,15.33,15.33,16.98,13.27,17.84z\\\"></path><path d=\\\"M2.16,13.27l-1.39,0.58c1.01,2.43,2.96,4.37,5.38,5.38l0.58-1.39C4.67,16.98,3.02,15.33,2.16,13.27z\\\"></path><path d=\\\"M6.73,2.16L6.15,0.77C3.72,1.78,1.78,3.72,0.77,6.15l1.39,0.58C3.02,4.67,4.67,3.02,6.73,2.16z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z M10,5.5c0.55,0,1,0.45,1,1 s-0.45,1-1,1s-1-0.45-1-1S9.45,5.5,10,5.5z\\\"></path><path d=\\\"M10,10c-1.53,0-2.96,0.42-4.2,1.14C5.3,11.44,5,11.99,5,12.57V14h10v-1.43c0-0.58-0.3-1.14-0.8-1.43 C12.96,10.42,11.53,10,10,10z M6.51,12.5c0.01-0.03,0.03-0.05,0.05-0.06C7.61,11.82,8.79,11.5,10,11.5c1.21,0,2.39,0.32,3.44,0.94 c0.02,0.01,0.04,0.04,0.05,0.06H6.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bolt\": {\n    \"name\": \"electric_bolt\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.69,2.21L4.33,11.49c-0.64,0.58-0.28,1.65,0.58,1.73L13,14l-4.85,6.76c-0.22,0.31-0.19,0.74,0.08,1.01h0 c0.3,0.3,0.77,0.31,1.08,0.02l10.36-9.28c0.64-0.58,0.28-1.65-0.58-1.73L11,10l4.85-6.76c0.22-0.31,0.19-0.74-0.08-1.01l0,0 C15.47,1.93,15,1.92,14.69,2.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M11.72,2.21l-8.56,7.93c-0.32,0.3-0.12,0.83,0.31,0.86l7.33,0.5l-3.64,5.27c-0.24,0.3-0.21,0.73,0.06,1.01h0 c0.29,0.29,0.76,0.3,1.06,0.01l8.56-7.93c0.32-0.3,0.12-0.83-0.31-0.86L9.2,8.5l3.64-5.27c0.24-0.3,0.21-0.73-0.06-1.01l0,0 C12.49,1.93,12.01,1.93,11.72,2.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"blinds_closed\": {\n    \"name\": \"blinds_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h11.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M18,11h-2V9h2V11z M14,11H6V9h8V11z M14,13v2H6v-2H14z M16,13h2v2h-2V13z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-2h8v2H6z M16,19v-2h2v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h8.5c0,0.69,0.56,1.25,1.25,1.25S13,17.69,13,17h5v-1.5H16z M14.5,9.25h-2v-1.5h2V9.25z M11,9.25 H5.5v-1.5H11V9.25z M11,10.75v1.5H5.5v-1.5H11z M12.5,10.75h2v1.5h-2V10.75z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-1.75H11v1.75H5.5z M12.5,15.5v-1.75h2v1.75H12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"oil_barrel\": {\n    \"name\": \"oil_barrel\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,13.05C9,14.68,10.34,16,12,16s3-1.32,3-2.95c0-1.31-0.53-1.69-3-4.55C9.52,11.38,9,11.75,9,13.05z\\\"></path><path d=\\\"M20,13c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1V5h1c0.55,0,1-0.45,1-1s-0.45-1-1-1H4C3.45,3,3,3.45,3,4s0.45,1,1,1h1v6H4 c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v6H4c-0.55,0-1,0.45-1,1s0.45,1,1,1h16c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1v-6H20z M17,19H7v-6 c0.55,0,1-0.45,1-1s-0.45-1-1-1V5h10v6c-0.55,0-1,0.45-1,1s0.45,1,1,1V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M7.75,10.79C7.75,12.01,8.76,13,10,13c1.24,0,2.25-0.99,2.25-2.21c0-0.98-0.4-1.27-2.25-3.41 C8.14,9.53,7.75,9.81,7.75,10.79z\\\"></path><path d=\\\"M16.25,10.75c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5V4.5h0.75C16.66,4.5,17,4.16,17,3.75S16.66,3,16.25,3 H3.75C3.34,3,3,3.34,3,3.75S3.34,4.5,3.75,4.5H4.5v4.75H3.75C3.34,9.25,3,9.59,3,10s0.34,0.75,0.75,0.75H4.5v4.75H3.75 C3.34,15.5,3,15.84,3,16.25S3.34,17,3.75,17h12.5c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5v-4.75H16.25z M14,15.5H6 v-4.75c0.41,0,0.75-0.34,0.75-0.75S6.41,9.25,6,9.25V4.5h8v4.75h-0.25C13.34,9.25,13,9.59,13,10s0.34,0.75,0.75,0.75H14V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"heat_pump\": {\n    \"name\": \"heat_pump\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M11.25,15.92c-0.55-0.1-1.05-0.32-1.5-0.62l1.5-1.5 V15.92z M12.75,15.92v-2.11l1.5,1.5C13.8,15.61,13.3,15.82,12.75,15.92z M15.31,14.25l-1.5-1.5h2.11 C15.82,13.3,15.61,13.8,15.31,14.25z M15.92,11.25h-2.11l1.5-1.5C15.61,10.2,15.82,10.7,15.92,11.25z M12.75,8.08 c0.55,0.1,1.05,0.32,1.5,0.62l-1.5,1.5V8.08z M12,11c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C11,11.45,11.45,11,12,11z M11.25,8.08v2.11l-1.5-1.5C10.2,8.39,10.7,8.18,11.25,8.08z M8.69,9.75l1.5,1.5H8.08C8.18,10.7,8.39,10.2,8.69,9.75z M10.19,12.75l-1.5,1.5c-0.3-0.44-0.51-0.95-0.62-1.5H10.19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path><path d=\\\"M10,14.5c2.48,0,4.5-2.02,4.5-4.5S12.48,5.5,10,5.5S5.5,7.52,5.5,10S7.52,14.5,10,14.5z M9.5,12.95 c-0.45-0.08-0.87-0.25-1.23-0.51l1.23-1.23V12.95z M10.5,12.95v-1.74l1.23,1.23C11.37,12.7,10.95,12.87,10.5,12.95z M12.44,11.73 l-1.23-1.23h1.74C12.87,10.95,12.7,11.37,12.44,11.73z M12.95,9.5h-1.74l1.23-1.23C12.7,8.63,12.87,9.05,12.95,9.5z M10.5,7.05 c0.45,0.08,0.87,0.25,1.23,0.51L10.5,8.79V7.05z M10.75,10c0,0.41-0.34,0.75-0.75,0.75S9.25,10.41,9.25,10 c0-0.41,0.34-0.75,0.75-0.75S10.75,9.59,10.75,10z M9.5,7.05v1.74L8.27,7.56C8.63,7.3,9.05,7.13,9.5,7.05z M7.56,8.27L8.79,9.5 H7.05C7.13,9.05,7.3,8.63,7.56,8.27z M8.79,10.5l-1.23,1.23c-0.26-0.36-0.43-0.78-0.51-1.23H8.79z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"broadcast_on_personal\": {\n    \"name\": \"broadcast_on_personal\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,19v-9l6-4.5l4.08,3.06c0.81-0.32,1.69-0.51,2.61-0.54L10,3L2,9v12h8.76c-0.48-0.6-0.88-1.27-1.17-2H4z\\\"></path><path d=\\\"M17,14.75c-0.69,0-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22h1.5v-5.03c0.3-0.23,0.5-0.57,0.5-0.97 C18.25,15.31,17.69,14.75,17,14.75z\\\"></path><path d=\\\"M17,12c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16C21,13.79,19.21,12,17,12z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3.5,15.5V8.25L8,4.88l3.54,2.66c0.57-0.26,1.19-0.43,1.84-0.5L8,3L2,7.5V17h7.54c-0.4-0.45-0.73-0.95-0.99-1.5H3.5z\\\"></path><path d=\\\"M14,12c-0.55,0-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1v-4.15C14.79,13.67,15,13.37,15,13C15,12.45,14.55,12,14,12z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,10c-1.66,0-3,1.34-3,3c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22C17,11.34,15.66,10,14,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_meter\": {\n    \"name\": \"electric_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,11c0-4.97-4.03-9-9-9s-9,4.03-9,9c0,3.92,2.51,7.24,6,8.48V22h2v-2.06c0.33,0.04,0.66,0.06,1,0.06s0.67-0.02,1-0.06 V22h2v-2.52C18.49,18.24,21,14.92,21,11z M12,18c-3.86,0-7-3.14-7-7s3.14-7,7-7s7,3.14,7,7S15.86,18,12,18z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"7\\\"></rect><polygon points=\\\"12.75,10 9.75,13 11,14.25 9.75,15.5 11.25,17 14.25,14 13,12.75 14.25,11.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M17,9c0-3.87-3.13-7-7-7C6.13,2,3,5.13,3,9c0,2.98,1.87,5.52,4.5,6.53V18H9v-2.08C9.33,15.97,9.66,16,10,16 s0.67-0.03,1-0.08V18h1.5v-2.47C15.13,14.52,17,11.98,17,9z M10,14.5c-3.03,0-5.5-2.47-5.5-5.5S6.97,3.5,10,3.5s5.5,2.47,5.5,5.5 S13.03,14.5,10,14.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"7\\\" y=\\\"6\\\"></rect><polygon points=\\\"10.7,8.25 8.25,10.7 9.25,11.7 8.25,12.7 9.3,13.75 11.75,11.3 10.75,10.3 11.75,9.3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"roller_shades\": {\n    \"name\": \"roller_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M18,5v6H6V5H18z M6,19v-6h5v1.82c-0.45,0.32-0.75,0.84-0.75,1.43c0,0.97,0.78,1.75,1.75,1.75 s1.75-0.78,1.75-1.75c0-0.59-0.3-1.12-0.75-1.43V13h5v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M14.5,4.5v4.75h-9V4.5H14.5z M5.5,15.5v-4.75h3.75v1.53c-0.3,0.23-0.5,0.57-0.5,0.97 c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25c0-0.4-0.2-0.75-0.5-0.97v-1.53h3.75v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wind_power\": {\n    \"name\": \"wind_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"4\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"1\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"19\\\"></rect><path d=\\\"M22.21,18.61l-2.28-4.1c-0.27-0.48-0.73-0.83-1.26-0.97l-2.69-0.67c-0.02-0.47-0.14-0.92-0.37-1.33l3.96-6.59 c0.65-1.08,0.3-2.48-0.78-3.13c-0.36-0.22-0.77-0.32-1.17-0.32c-0.56,0-1.12,0.21-1.56,0.62l-3.43,3.21C12.23,5.7,12,6.23,12,6.78 v3.4c-0.47,0.17-0.89,0.45-1.23,0.82H3.28C2.02,11,1,12.02,1,13.28c0,1.02,0.67,1.91,1.65,2.19l4.51,1.29 c0.18,0.05,0.37,0.08,0.55,0.08c0.36,0,0.72-0.1,1.03-0.29l2.24-1.34c0.29,0.26,0.63,0.47,1.02,0.61V21c-1.1,0-2,0.9-2,2h6 c0-1.1-0.9-2-2-2v-4.28l4.61,4.61c0.45,0.45,1.03,0.67,1.61,0.67c0.58,0,1.17-0.22,1.61-0.67h0 C22.55,20.61,22.71,19.5,22.21,18.61z M7.72,14.84L3.2,13.55C3.08,13.52,3,13.4,3,13.28C3,13.13,3.13,13,3.28,13h6.73 c0,0.15,0.01,0.3,0.03,0.44L7.72,14.84z M13,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14,13.55,13.55,14,13,14z M14,10.14V6.78l3.43-3.21c0.05-0.05,0.19-0.12,0.34-0.04c0.13,0.08,0.18,0.25,0.1,0.38l-3.74,6.24L14,10.14z M20.42,19.92 c-0.05,0.05-0.24,0.16-0.4,0l-4.85-4.85c0.08-0.09,0.16-0.18,0.24-0.28l2.78,0.69l2.28,4.1C20.53,19.69,20.51,19.83,20.42,19.92z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"6.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect><path d=\\\"M17.77,15.32l-1.82-3.27c-0.2-0.36-0.54-0.63-0.95-0.73l-2.03-0.51c-0.03-0.38-0.14-0.73-0.32-1.04l3.32-5.54 c0.51-0.85,0.24-1.96-0.62-2.47c-0.29-0.17-1.29-0.58-2.16,0.23l-2.74,2.56C10.17,4.83,10,5.23,10,5.64v2.91 C9.63,8.62,9.3,8.78,9.01,9H2.8C1.81,9,1,9.81,1,10.8c0,0.8,0.53,1.51,1.31,1.73l3.6,1.03c0.14,0.04,0.27,0.06,0.41,0.06 c0.27,0,0.54-0.07,0.77-0.21l1.45-0.87c0.31,0.39,0.72,0.68,1.21,0.83v4.05H9.58C8.71,17.42,8,18.13,8,19h5 c0-0.87-0.71-1.58-1.58-1.58h-0.17V13.8l3.67,3.67c0.7,0.7,1.85,0.7,2.55,0C18.04,16.9,18.16,16.03,17.77,15.32z M8.01,11.11 l-1.69,1.01l-3.6-1.03C2.59,11.06,2.5,10.94,2.5,10.8c0-0.17,0.14-0.3,0.3-0.3h5.25C7.97,10.89,8.01,11.1,8.01,11.11z M10.5,12 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C11.5,11.55,11.05,12,10.5,12z M11.5,8.4V5.64l2.74-2.56 c0.05-0.05,0.2-0.13,0.36-0.04c0.06,0.04,0.23,0.2,0.1,0.42l-2.99,4.99L11.5,8.4z M16.41,16.41c-0.05,0.05-0.25,0.17-0.43,0 l-3.68-3.68c0.13-0.14,0.24-0.29,0.34-0.45l2,0.5l1.82,3.27C16.53,16.17,16.51,16.32,16.41,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"roller_shades_closed\": {\n    \"name\": \"roller_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h8.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M18,5v10H6V5H18z M6,19v-2h5v2H6z M13,19v-2h5v2H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h6.75c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25H18v-1.5H16z M9.25,15.5H5.5V14h3.75V15.5z M14.5,15.5h-3.75V14h3.75V15.5z M14.5,12.5h-9v-8h9V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_fan_off\": {\n    \"name\": \"mode_fan_off\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,8c-1.06,0-1.64,0.29-3.91,1.19c-0.19-0.14-0.4-0.27-0.62-0.37c0.25-1.03,0.61-1.53,1.33-2.04 C15.61,6.21,16,5.44,16,4.5C16,3.28,15.05,2,13.4,2c-3.08,0-4.92,1.47-5.32,3.26l2.33,2.33C10.07,6.69,10,6.38,10,6 c0-1.18,1.4-2,3.4-2C13.97,4,14,4.42,14,4.5c0,0.27-0.05,0.43-0.35,0.65c-1.27,0.9-1.83,1.91-2.16,3.39l-0.02,0.1l7.25,7.25 C18.96,15.95,19.22,16,19.5,16c1.22,0,2.5-0.95,2.5-2.6C22,9.91,20.11,8,18,8z M19.5,14c-0.27,0-0.43-0.05-0.65-0.35 c-0.9-1.27-1.91-1.83-3.39-2.16c-0.03-0.22-0.08-0.42-0.15-0.62C17.11,10.12,17.49,10,18,10c1.18,0,2,1.4,2,3.4 C20,13.97,19.58,14,19.5,14z\\\"></path><path d=\\\"M1.39,4.22l3.89,3.89C5.04,8.05,4.78,8,4.5,8C3.28,8,2,8.95,2,10.6C2,14.09,3.89,16,6,16c1.06,0,1.64-0.29,3.91-1.19 c0.19,0.14,0.4,0.27,0.62,0.37c-0.25,1.03-0.61,1.53-1.33,2.04C8.39,17.79,8,18.56,8,19.5c0,1.22,0.95,2.5,2.6,2.5 c3.08,0,4.92-1.47,5.32-3.26l3.86,3.86l1.41-1.41L2.81,2.81L1.39,4.22z M12.52,15.46c0.03,0,0.06-0.02,0.09-0.02l0.97,0.97 C13.93,17.31,14,17.62,14,18c0,1.18-1.4,2-3.4,2c-0.57,0-0.6-0.42-0.6-0.5c0-0.27,0.05-0.43,0.35-0.65 C11.63,17.96,12.18,16.94,12.52,15.46z M8.54,12.52c0.03,0.22,0.08,0.42,0.15,0.62C6.89,13.88,6.51,14,6,14c-1.18,0-2-1.4-2-3.4 C4,10.03,4.42,10,4.5,10c0.27,0,0.43,0.05,0.65,0.35C6.04,11.63,7.06,12.18,8.54,12.52z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.8,7c-0.83,0-1.29,0.22-3.01,0.91c-0.14-0.12-0.28-0.22-0.44-0.31c0.22-0.99,0.64-1.47,1.1-1.78 C13.09,5.39,13.4,4.75,13.4,4c0-0.98-0.76-2-2.08-2C8.69,2,7.2,3.34,7.03,4.91l2.13,2.13C8.66,5.8,8.6,5.56,8.6,5.2 c0-0.94,1.12-1.6,2.72-1.6c0.46,0,0.48,0.33,0.48,0.4c0,0.28-0.09,0.39-0.25,0.49c-0.91,0.61-1.49,1.52-1.77,2.77L9.73,7.61 l5.73,5.73c0.17,0.04,0.35,0.06,0.54,0.06c0.98,0,2-0.76,2-2.08C18,8.52,16.49,7,14.8,7z M16,11.8c-0.28,0-0.39-0.09-0.49-0.25 c-0.61-0.91-1.52-1.49-2.77-1.77c-0.01-0.17-0.04-0.34-0.09-0.5c1.52-0.62,1.76-0.68,2.14-0.68c0.94,0,1.6,1.12,1.6,2.72 C16.4,11.78,16.07,11.8,16,11.8z\\\"></path><path d=\\\"M1.87,3.99l2.67,2.67C4.37,6.62,4.19,6.6,4,6.6c-0.98,0-2,0.76-2,2.08C2,11.48,3.51,13,5.2,13c0.83,0,1.29-0.22,3.01-0.91 c0.14,0.12,0.28,0.22,0.44,0.31c-0.22,0.99-0.64,1.47-1.1,1.78C6.91,14.61,6.6,15.25,6.6,16c0,0.98,0.76,2,2.08,2 c2.63,0,4.12-1.34,4.29-2.91l3.04,3.04l1.06-1.06L2.93,2.93L1.87,3.99z M10.22,12.74c0.12-0.01,0.23-0.04,0.34-0.06l0.28,0.28 c0.5,1.24,0.56,1.48,0.56,1.84c0,0.94-1.12,1.6-2.72,1.6c-0.46,0-0.48-0.33-0.48-0.4c0-0.28,0.09-0.39,0.25-0.49 C9.36,14.9,9.94,13.99,10.22,12.74z M7.26,10.22c0.01,0.17,0.04,0.34,0.09,0.5C5.82,11.33,5.59,11.4,5.2,11.4 c-0.94,0-1.6-1.12-1.6-2.72C3.6,8.22,3.93,8.2,4,8.2c0.28,0,0.39,0.09,0.49,0.25C5.1,9.36,6.01,9.94,7.26,10.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"curtains_closed\": {\n    \"name\": \"curtains_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M13,5v14h-2V5H13z M6,5h3v14H6V5z M15,19V5h3v14H15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M11,4.5v11H9v-11H11z M5.5,4.5h2v11h-2V4.5z M12.5,15.5v-11h2v11H12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shield_moon\": {\n    \"name\": \"shield_moon\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\\\"></path><path d=\\\"M9.01,14.33c1.75,2.17,5.12,2.24,6.96,0.07c0.23-0.27,0.08-0.68-0.26-0.74c-1.29-0.21-2.48-0.98-3.18-2.2 c-0.71-1.22-0.78-2.63-0.32-3.86c0.12-0.33-0.16-0.66-0.51-0.6C8.36,7.62,6.81,11.61,9.01,14.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M15,9.27c0,3.26-2.13,6.27-5,7.17 c-2.87-0.9-5-3.91-5-7.17V5.53l5-1.92l5,1.92V9.27z\\\"></path><path d=\\\"M7.65,11.7c1.36,1.69,3.98,1.75,5.41,0.06c0.18-0.21,0.06-0.53-0.21-0.58c-1-0.17-1.93-0.76-2.48-1.71s-0.6-2.05-0.25-3 c0.1-0.25-0.13-0.51-0.39-0.47C7.14,6.48,5.94,9.59,7.65,11.7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gas_meter\": {\n    \"name\": \"gas_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,4h-1V2h-2v2h-2V2H9v2H8C5.79,4,4,5.79,4,8v10c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4V8C20,5.79,18.21,4,16,4z M18,18 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V18z\\\"></path><path d=\\\"M9.5,15.54C9.5,16.9,10.62,18,12,18s2.5-1.1,2.5-2.46c0-1.09-0.45-1.41-2.5-3.79C9.93,14.15,9.5,14.46,9.5,15.54z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13,3.5h-0.5V2H11v1.5H9V2H7.5v1.5H7c-1.66,0-3,1.34-3,3V15c0,1.66,1.34,3,3,3h6c1.66,0,3-1.34,3-3V6.5 C16,4.84,14.66,3.5,13,3.5z M14.5,15c0,0.83-0.67,1.5-1.5,1.5H7c-0.83,0-1.5-0.67-1.5-1.5V6.5C5.5,5.67,6.17,5,7,5h6 c0.83,0,1.5,0.67,1.5,1.5V15z\\\"></path><path d=\\\"M8,12.53c0,1.09,0.9,1.97,2,1.97s2-0.88,2-1.97c0-0.87-0.36-1.13-2-3.03C8.35,11.42,8,11.66,8,12.53z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"7\\\" y=\\\"6.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"auto_mode\": {\n    \"name\": \"auto_mode\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.03,3.56c-1.67-1.39-3.74-2.3-6.03-2.51v2.01c1.73,0.19,3.31,0.88,4.61,1.92L19.03,3.56z\\\"></path><path d=\\\"M11,3.06V1.05C8.71,1.25,6.64,2.17,4.97,3.56l1.42,1.42C7.69,3.94,9.27,3.25,11,3.06z\\\"></path><path d=\\\"M4.98,6.39L3.56,4.97C2.17,6.64,1.26,8.71,1.05,11h2.01C3.25,9.27,3.94,7.69,4.98,6.39z\\\"></path><path d=\\\"M20.94,11h2.01c-0.21-2.29-1.12-4.36-2.51-6.03l-1.42,1.42C20.06,7.69,20.75,9.27,20.94,11z\\\"></path><polygon points=\\\"7,12 10.44,13.56 12,17 13.56,13.56 17,12 13.56,10.44 12,7 10.44,10.44\\\"></polygon><path d=\\\"M12,21c-3.11,0-5.85-1.59-7.46-4H7v-2H1v6h2v-2.7c1.99,2.84,5.27,4.7,9,4.7c4.87,0,9-3.17,10.44-7.56l-1.96-0.45 C19.25,18.48,15.92,21,12,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.81,3.13c-1.39-1.18-3.14-1.93-5.06-2.09v1.5c1.51,0.15,2.88,0.75,3.99,1.66L15.81,3.13z\\\"></path><path d=\\\"M10,17.5c-2.66,0-4.98-1.41-6.31-3.5h2.06v-1.5H1v4.75h1.5v-2.29C4.11,17.39,6.86,19,10,19c4.01,0,7.41-2.63,8.57-6.25 l-1.47-0.34C16.09,15.36,13.29,17.5,10,17.5z\\\"></path><path d=\\\"M9.25,2.54v-1.5C7.33,1.19,5.58,1.96,4.2,3.14L5.26,4.2C6.37,3.29,7.74,2.69,9.25,2.54z\\\"></path><path d=\\\"M4.2,5.26L3.14,4.2C1.96,5.59,1.2,7.33,1.04,9.25h1.5C2.69,7.74,3.29,6.37,4.2,5.26z\\\"></path><polygon points=\\\"6,10 8.75,11.25 10,14 11.25,11.25 14,10 11.25,8.75 10,6 8.75,8.75\\\"></polygon><path d=\\\"M17.46,9.25h1.51c-0.16-1.92-0.92-3.67-2.1-5.06L15.8,5.26C16.71,6.37,17.31,7.74,17.46,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sensor_door\": {\n    \"name\": \"sensor_door\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,4v12H5V4H15 M15,3H5C4.45,3,4,3.45,4,4v13h12V4C16,3.45,15.55,3,15,3L15,3z M13,9c-0.55,0-1,0.45-1,1s0.45,1,1,1 s1-0.45,1-1S13.55,9,13,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fire_extinguisher\": {\n    \"name\": \"fire_extinguisher\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"countertops\": {\n    \"name\": \"countertops\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z\\\"></path>\"\n      }\n    }\n  },\n  \"room_service\": {\n    \"name\": \"room_service\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.98 17H2v2h20v-2zM21 16c-.27-4.07-3.25-7.4-7.16-8.21.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18zm-9-6.42c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z\\\"></path>\"\n      }\n    }\n  },\n  \"roofing\": {\n    \"name\": \"roofing\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator_warning\": {\n    \"name\": \"escalator_warning\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airport_shuttle\": {\n    \"name\": \"airport_shuttle\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"grass\": {\n    \"name\": \"grass\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z\\\"></path>\"\n      }\n    }\n  },\n  \"no_drinks\": {\n    \"name\": \"no_drinks\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wheelchair_pickup\": {\n    \"name\": \"wheelchair_pickup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"kitchen\": {\n    \"name\": \"kitchen\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5h2v3H8zm0 7h2v5H8zm10-9.99L6 2a2 2 0 00-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5z\\\"></path>\"\n      }\n    }\n  },\n  \"fitness_center\": {\n    \"name\": \"fitness_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_touch\": {\n    \"name\": \"do_not_touch\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z\\\"></path></g>\"\n      }\n    }\n  },\n  \"child_care\": {\n    \"name\": \"child_care\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M22.94 11.34c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zm-7 3c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3z\\\"></path>\"\n      }\n    }\n  },\n  \"holiday_village\": {\n    \"name\": \"holiday_village\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8,4l-6,6v10h12V10L8,4z M12,18H9v-3H7v3H4v-7.17l4-4l4,4V18z M9,13H7v-2h2V13z M18,20V8.35L13.65,4h-2.83L16,9.18V20H18z M22,20V6.69L19.31,4h-2.83L20,7.52V20H22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,4L2.5,8.5V16h9V8.5L7,4z M10,14.5H7.75v-2.25h-1.5v2.25H4V9.12l3-3l3,3V14.5z M7.75,10.75h-1.5v-1.5h1.5V10.75z M14.5,16 V7.26L11.24,4H9.12L13,7.88V16H14.5z M17.5,16V6.02L15.48,4h-2.12L16,6.64V16H17.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_photography\": {\n    \"name\": \"no_photography\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1l19.8,19.8L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.66,1.34,3,3,3c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68 C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.07,2.07 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5c-0.36,0-0.71,0.04-1.06,0.12l2.07,2.07C13.85,10.49,14.51,11.15,14.81,11.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"no_meeting_room\": {\n    \"name\": \"no_meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z\\\"></path>\"\n      }\n    }\n  },\n  \"no_food\": {\n    \"name\": \"no_food\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water_damage\": {\n    \"name\": \"water_damage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z\\\"></path>\"\n      }\n    }\n  },\n  \"crib\": {\n    \"name\": \"crib\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,9h-6V4H8C5.79,4,4,5.79,4,8v6c0,1.1,0.9,2,2,2h2v2.93c-0.61-0.35-1.16-0.78-1.65-1.27l-1.42,1.42 C6.74,20.88,9.24,22,12,22c2.76,0,5.26-1.12,7.07-2.93l-1.42-1.42c-0.49,0.49-1.05,0.92-1.65,1.27V16h2c1.1,0,2-0.9,2-2v-3 C20,9.9,19.1,9,18,9z M14,19.75C13.36,19.91,12.69,20,12,20c-0.69,0-1.36-0.09-2-0.25V16h4V19.75z M18,14H6V8c0-1.1,0.9-2,2-2h2v5h8 V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,12V9.5C16,8.67,15.33,8,14.5,8H10V4H7C5.34,4,4,5.34,4,7v5c0,0.83,0.67,1.5,1.5,1.5H7v2.27 c-0.59-0.31-1.13-0.7-1.59-1.17l-1.06,1.06C5.79,17.1,7.79,18,10,18c2.21,0,4.21-0.9,5.66-2.34l-1.06-1.06 c-0.47,0.47-1,0.86-1.59,1.17l0-2.27h1.5C15.33,13.5,16,12.83,16,12z M11.5,16.33c-0.48,0.11-0.98,0.17-1.5,0.17 s-1.02-0.06-1.5-0.17V13.5h3V16.33z M5.5,12V7c0-0.83,0.67-1.5,1.5-1.5h1.5v4h6V12H5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator\": {\n    \"name\": \"escalator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pool\": {\n    \"name\": \"pool\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z\\\"></path><circle cx=\\\"16.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"beach_access\": {\n    \"name\": \"beach_access\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19.57l-1.427 1.428-6.442-6.442 1.43-1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"stairs\": {\n    \"name\": \"stairs\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"family_restroom\": {\n    \"name\": \"family_restroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rice_bowl\": {\n    \"name\": \"rice_bowl\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z\\\"></path>\"\n      }\n    }\n  },\n  \"chalet\": {\n    \"name\": \"chalet\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.5,15L10,7.5L2.5,15l1.41,1.41L5,15.33V20h10v-4.67l1.09,1.09L17.5,15z M13,18h-2v-3H9v3H7v-4.67l3-3l3,3V18z M22,7.5 h-1.19l0.75,0.75l-0.71,0.71L19.39,7.5H18.5v0.89l1.45,1.45l-0.71,0.71L18.5,9.81V11h-1V9.81l-0.75,0.75l-0.71-0.71l1.45-1.45V7.5 h-0.89l-1.45,1.45l-0.71-0.71l0.75-0.75H14v-1h1.19l-0.75-0.75l0.71-0.71l1.45,1.45h0.89V5.61l-1.45-1.45l0.71-0.71l0.75,0.75V3h1 v1.19l0.75-0.75l0.71,0.71L18.5,5.61V6.5h0.89l1.45-1.45l0.71,0.71L20.81,6.5H22V7.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.27,6.5L2.5,12.27l1.06,1.06l0.88-0.88L4.5,16H12v-3.62l0.94,0.94L14,12.27L8.27,6.5z M10.5,14.5H9V12H7.5v2.5H5.94v-3.55 l2.32-2.32l2.23,2.25V14.5z M18,6.5h-1.39l0.9,0.9l-0.35,0.35L15.9,6.5H15v0.9l1.25,1.25L15.9,9L15,8.11V9.5h-0.5V8.11L13.6,9 l-0.35-0.35L14.5,7.4V6.5h-0.9l-1.25,1.25L12,7.4l0.9-0.9H11.5V6h1.39L12,5.1l0.35-0.35L13.6,6h0.9V5.1l-1.25-1.25L13.6,3.5l0.9,0.9 V3H15v1.39l0.9-0.9l0.35,0.35L15,5.1V6h0.9l1.25-1.25L17.5,5.1L16.61,6H18V6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fence\": {\n    \"name\": \"fence\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"night_shelter\": {\n    \"name\": \"night_shelter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_flash\": {\n    \"name\": \"no_flash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4l0,1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22 l2.54,2.54l1.41-1.41L2.1,2.1z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5c0,1.93,1.57,3.5,3.5,3.5 c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"balcony\": {\n    \"name\": \"balcony\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,10v2H8v-2H10z M16,12v-2h-2v2H16z M21,14v8H3v-8h1v-4c0-4.42,3.58-8,8-8s8,3.58,8,8v4H21z M7,16H5v4h2V16z M11,16H9v4h2 V16z M11,4.08C8.16,4.56,6,7.03,6,10v4h5V4.08z M13,14h5v-4c0-2.97-2.16-5.44-5-5.92V14z M15,16h-2v4h2V16z M19,16h-2v4h2V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.5,8.5V10H7V8.5H8.5z M13,10V8.5h-1.5V10H13z M17,12v6H3v-6h1V8c0-3.31,2.69-6,6-6s6,2.69,6,6v4H17z M6.12,13.5H4.5v3 h1.62V13.5z M9.25,13.5H7.62v3h1.62V13.5z M9.25,12l0-8.44C7.12,3.92,5.5,5.77,5.5,8v4H9.25z M10.75,12h3.75V8 c0-2.23-1.62-4.08-3.75-4.44V12z M12.38,13.5h-1.62v3h1.62V13.5z M15.5,13.5h-1.62v3h1.62V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smoking_rooms\": {\n    \"name\": \"smoking_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 16h1.5v3H18zM2 16h15v3H2zm14.03-5.8H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16zM20.5 16H22v3h-1.5zm-1.65-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03z\\\"></path>\"\n      }\n    }\n  },\n  \"tapas\": {\n    \"name\": \"tapas\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z\\\"></path>\"\n      }\n    }\n  },\n  \"baby_changing_station\": {\n    \"name\": \"baby_changing_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"free_breakfast\": {\n    \"name\": \"free_breakfast\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"no_stroller\": {\n    \"name\": \"no_stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gite\": {\n    \"name\": \"gite\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6z M4,12h10v5H4V12z M20,17h-4v-6.17l2-2v0l2,2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,8.5l-3-3c0,0,0,0,0,0H7.5V4H6v1.5H5l-3,3V15c0,0,0,0,0,0h9.5H13h5c0,0,0,0,0,0L18,8.5C18,8.5,18,8.5,18,8.5z M3.5,13.5 V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"stroller\": {\n    \"name\": \"stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M15,8.66L9.6,15H15V8.66 M18.65,3C20.52,3,22,4.56,22,6.48V7h-2V6.48C20,5.66,19.42,5,18.65,5C17.97,5,17.58,5.59,17,6.27V15 c0,1.1-0.9,2-2,2H7.43c-0.85,0-1.31-1-0.76-1.65l8.8-10.32C16.11,4.27,16.99,3,18.65,3L18.65,3z M10,5C9.35,5,8.71,5.09,8.09,5.27 l1.4,1.4l1.37-1.61C10.58,5.02,10.29,5,10,5 M10,3c1.56,0,3.03,0.4,4.3,1.1l-4.7,5.51L4.72,4.72C6.21,3.64,8.03,3,10,3L10,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elevator\": {\n    \"name\": \"elevator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"iron\": {\n    \"name\": \"iron\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,6c-1.66,0-3,1.34-3,3v4c0,0.55-0.45,1-1,1v-4c0-1.66-1.34-3-3-3h-4c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1H6c-2.21,0-4,1.79-4,4v3h15v-2c1.66,0,3-1.34,3-3V9c0-0.55,0.45-1,1-1h1V6H21z M15,16H4v-1c0-1.1,0.9-2,2-2h9 V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,5.5c-1.1,0-2,0.9-2,2V11c0,0.28-0.22,0.5-0.5,0.5H14V8c0-1.1-0.9-2-2-2H8C6.9,6,6,6.9,6,8h1.5c0-0.28,0.22-0.5,0.5-0.5 h4c0.28,0,0.5,0.22,0.5,0.5v1H5c-1.66,0-3,1.34-3,3v2.5h12V13h0.5c1.1,0,2-0.9,2-2V7.5C16.5,7.22,16.72,7,17,7h1V5.5H17z M12.4,13 H3.6v-0.8c0-0.88,0.72-1.6,1.6-1.6h7.2V13z\\\"></path>\"\n      }\n    }\n  },\n  \"bungalow\": {\n    \"name\": \"bungalow\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,14h-2v-2h2V14z M18.1,16.56L17,14.79V21H7v-6.2l-1.1,1.76L4.2,15.5L12,3l7.8,12.5L18.1,16.56z M15,11.59l-3-4.8l-3,4.8 V19h2v-3h2v3h2V11.59z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,11.5h-1.5V10h1.5V11.5z M16,12.6l-1.27,0.8L14,12.23V17H6v-4.77L5.27,13.4L4,12.6L10,3L16,12.6z M12.5,9.83l-2.5-4 l-2.5,4v5.67h1.75V13h1.5v2.5h1.75V9.83z\\\"></path>\"\n      }\n    }\n  },\n  \"backpack\": {\n    \"name\": \"backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M16.5,12v4h-2v-2h-7v-2H16.5z\\\"></path><path d=\\\"M0,0v24h24V0H0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"house\": {\n    \"name\": \"house\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z\\\"></path><path d=\\\"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,8.29V5h-2v1.57L10,4l-7,6h2v6h4v-4h2v4h4v-6h2L15,8.29z M14,15h-2v-4H8v4H6V8.75l4-3.43l4,3.43V15z\\\"></path><path d=\\\"M9,9h2c0-0.55-0.45-1-1-1C9.45,8,9,8.45,9,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cabin\": {\n    \"name\": \"cabin\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z M12,3L6,7.58V6H4v3.11L1,11.4 l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M13.94,7h-3.89L12,5.52L13.94,7z M7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9z M18,13v2H6v-2H18z M6,19v-2h12v2H6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5h1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5z M18.25,9.8l-0.91,1.19L16,9.97V17H4V9.97l-1.34,1.02L1.75,9.8L4,8.08V5.5h1.5v1.44L10,3.5L18.25,9.8z M10,5.39L8.54,6.5h2.91 L10,5.39z M5.5,8.82V9.5h9V8.82L13.42,8H6.58L5.5,8.82z M5.5,11v1.5h9V11H5.5z M14.5,15.5V14h-9v1.5H14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tty\": {\n    \"name\": \"tty\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M16,6h-2V4h2V6z M18,7h-2v2h2V7z M19,9h2V7h-2V9z M19,4h-2v2h2V4z M15,7h-2v2h2V7z M19,10h-2v2h2V10z M16,10h-2v2h2V10z M13,4h-2v2h2V4z M20,15.82v4.15c0,0.56-0.47,1.03-1.03,1c-2.89-0.17-5.6-1.03-7.97-2.4C8.27,16.99,6.01,14.73,4.43,12 C3.05,9.63,2.2,6.92,2.03,4.03C2,3.47,2.47,3,3.03,3h4.15c0.48,0,0.89,0.34,0.98,0.8L8.9,7.48c0.07,0.33-0.04,0.67-0.27,0.9 L6.1,10.9c1.43,2.5,3.5,4.57,6,6l2.52-2.52c0.24-0.24,0.58-0.34,0.9-0.27l3.67,0.73C19.66,14.93,20,15.34,20,15.82z M5.18,8.99 l1.65-1.65L6.36,5H4.13C4.3,6.37,4.66,7.71,5.18,8.99z M18,16.64l-2.34-0.47l-1.65,1.65c1.28,0.52,2.63,0.87,3.99,1.05V16.64z M20,4v2h2V4H20z M20,12h2v-2h-2V12z M13,10h-2v2h2V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"room_preferences\": {\n    \"name\": \"room_preferences\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z M19,4v6h-2V6h-2v6h-2V5H7v14h5v2H3v-2h2V3h10v1H19z M12,13h-2v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"checkroom\": {\n    \"name\": \"checkroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"spa\": {\n    \"name\": \"spa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39zM12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm-4.33-7.32c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z\\\"></path>\"\n      }\n    }\n  },\n  \"golf_course\": {\n    \"name\": \"golf_course\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z\\\"></path>\"\n      }\n    }\n  },\n  \"cottage\": {\n    \"name\": \"cottage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19h-5v-4h-2v4H6v-8.9l6-4.58 l6,4.58V19z M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5L5.5,6.94V5.5H4v2.58L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-3.75v-3h-1.5v3 H5.5V8.82L10,5.39l4.5,3.44V15.5z M8.5,1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25 C6.59,2.24,7,2.1,7,1.5H8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"vaping_rooms\": {\n    \"name\": \"vaping_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M22,16v3H8v-3H22z M11,17.5 c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23 c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38 C20.72,8.62,22,10.54,22,12.76z M19.5,13.36V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-1.85,0-3.35-1.5-3.35-3.35 s1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53C17.9,10.2,19.5,11.55,19.5,13.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18,15H7v-2h11V15z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5S11.12,9,12.5,9h1 c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M9,13.65c-0.19,0-0.35,0.16-0.35,0.35S8.81,14.35,9,14.35 S9.35,14.19,9.35,14S9.19,13.65,9,13.65z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5 c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1 c1.93,0,3.5,1.57,3.5,3.5V12H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"casino\": {\n    \"name\": \"casino\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"7.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"sports_bar\": {\n    \"name\": \"sports_bar\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,7.5h-1.27C14.47,7.05,14.6,6.54,14.6,6c0-1.79-1.46-3.25-3.25-3.25c-0.24,0-0.47,0.03-0.69,0.07 C10.05,2.31,9.26,2,8.4,2C6.95,2,5.7,2.89,5.17,4.15C3.91,4.55,3,5.73,3,7.12c0,1.51,1.07,2.77,2.5,3.06V17H14v-1.5h1.5 c0.83,0,1.5-0.67,1.5-1.5V9C17,8.17,16.33,7.5,15.5,7.5z M12.5,15.5H7v-5.37c0.51-0.15,0.97-0.43,1.34-0.8l1.39-1.39 c0.28-0.28,0.66-0.44,1.06-0.44h1.71V15.5z M10.79,6c-0.8,0-1.55,0.31-2.12,0.88L7.28,8.27C6.96,8.59,6.51,8.78,6.02,8.75 C5.2,8.7,4.54,8.02,4.5,7.2C4.46,6.27,5.2,5.5,6.12,5.5c0,0,0,0,0,0c0.14,0,0.27-0.1,0.29-0.24C6.53,4.26,7.39,3.5,8.4,3.5 c0.71,0,1.34,0.37,1.69,0.93c0.07,0.12,0.23,0.15,0.34,0.08c0.27-0.16,0.58-0.26,0.92-0.26c0.96,0,1.75,0.79,1.75,1.75H10.79z M15.5,14H14V9h1.5V14z\\\"></path>\"\n      }\n    }\n  },\n  \"carpenter\": {\n    \"name\": \"carpenter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z\\\"></path>\"\n      }\n    }\n  },\n  \"wash\": {\n    \"name\": \"wash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"house_siding\": {\n    \"name\": \"house_siding\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"child_friendly\": {\n    \"name\": \"child_friendly\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z\\\"></path>\"\n      }\n    }\n  },\n  \"microwave\": {\n    \"name\": \"microwave\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z\\\"></path>\"\n      }\n    }\n  },\n  \"hot_tub\": {\n    \"name\": \"hot_tub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zm-4 0c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z\\\"></path>\"\n      }\n    }\n  },\n  \"umbrella\": {\n    \"name\": \"umbrella\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"other_houses\": {\n    \"name\": \"other_houses\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19H6v-8.9l6-4.58l6,4.58V19z M9,14 c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9,13.45,9,14z M12,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,13.45,11.45,13,12,13z M15,14c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,14.55,15,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-9V8.82L10,5.39l4.5,3.44V15.5z M7.75,11.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S6.59,11,7,11S7.75,11.34,7.75,11.75z M10.75,11.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S9.59,11,10,11S10.75,11.34,10.75,11.75z M13.75,11.75c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75S12.59,11,13,11S13.75,11.34,13.75,11.75z\\\"></path>\"\n      }\n    }\n  },\n  \"ac_unit\": {\n    \"name\": \"ac_unit\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"all_inclusive\": {\n    \"name\": \"all_inclusive\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z\\\"></path>\"\n      }\n    }\n  },\n  \"dry\": {\n    \"name\": \"dry\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z\\\"></path></g>\"\n      }\n    }\n  },\n  \"soap\": {\n    \"name\": \"soap\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"desk\": {\n    \"name\": \"desk\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,6v12h2V8h10v10h2v-2h4v2h2V6H2z M20,8v2h-4V8H20z M16,14v-2h4v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M2,5v10h1.5V6.5H12V15h1.5v-1.5h3V15H18V5H2z M13.5,6.5h3v2h-3V6.5z M13.5,12v-2h3v2H13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"do_not_step\": {\n    \"name\": \"do_not_step\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z\\\"></path></g>\"\n      }\n    }\n  },\n  \"meeting_room\": {\n    \"name\": \"meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"foundation\": {\n    \"name\": \"foundation\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z\\\"></path>\"\n      }\n    }\n  },\n  \"no_cell\": {\n    \"name\": \"no_cell\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L19,19l-2-2 L7,7L5,5L2.81,2.81L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83L15.17,18H7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"business_center\": {\n    \"name\": \"business_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zM4 9h16v5h-5v-3H9v3H4V9zm9 6h-2v-2h2v2zm6 4H5v-3h4v1h6v-1h4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"corporate_fare\": {\n    \"name\": \"corporate_fare\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z\\\"></path>\"\n      }\n    }\n  },\n  \"food_bank\": {\n    \"name\": \"food_bank\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smoke_free\": {\n    \"name\": \"smoke_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 0h-2.34L17 15.34zm-2.5-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm4.35-3.92c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"houseboat\": {\n    \"name\": \"houseboat\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,16c-1.95,0-2.1,1-3.34,1c-1.19,0-1.42-1-3.33-1C3.38,16,3.24,17,2,17v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.08-1,3.32-1s1.37,1,3.32,1c1.91,0,2.14-1,3.33-1c1.18,0,1.45,1,3.35,1v-2c-1.24,0-1.38-1-3.33-1c-1.91,0-2.14,1-3.33,1 C14.1,17,13.95,16,12,16z M20.34,11.34l-1.37,1.37C18.78,12.89,18.52,13,18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61 L7,9.65V13H5.74c-0.27,0-0.52-0.11-0.71-0.29l-1.37-1.37l-1.41,1.41l1.37,1.37C4.18,14.68,4.95,15,5.74,15h12.51 c0.8,0,1.56-0.32,2.12-0.88l1.37-1.37L20.34,11.34z M13,13v-2h-2v2H9V8.18l3-2.2l3,2.2V13H13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.74,9.64l-1.07,1.07C15.49,10.89,15.23,11,14.97,11L14,11V8.09l1.11,0.82L16,7.7l-6-4.4L4,7.7l0.89,1.21L6,8.09V11 l-0.97,0c-0.27,0-0.52-0.11-0.71-0.29L3.26,9.64L2.2,10.7l1.07,1.07c0.47,0.47,1.1,0.73,1.77,0.73h9.93c0.66,0,1.3-0.26,1.77-0.73 l1.07-1.07L16.74,9.64z M10.75,11V9h-1.5v2H7.5l0.1-4.08L10,5.16l2.4,1.76V11H10.75z M18,14.5V16c-1.58,0-1.72-1-2.66-1 c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1c-1.59,0-1.72-1-2.67-1C3.72,15,3.58,16,2,16v-1.5 c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 C16.92,13.5,17.05,14.5,18,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_backpack\": {\n    \"name\": \"no_backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z\\\"></path>\"\n      }\n    }\n  },\n  \"bento\": {\n    \"name\": \"bento\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vape_free\": {\n    \"name\": \"vape_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M16.17,19H8v-3h5.17L1.39,4.22l1.41-1.41 l18.38,18.38l-1.41,1.41L16.17,19z M18.83,16H22v3h-0.17L18.83,16z M11,17.5c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5 c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85 S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38C20.72,8.62,22,10.54,22,12.76z M11.15,8.32 c0-0.01,0-0.01,0-0.02c0-1.85,1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53c1.87,0,3.47,1.35,3.47,3.16 V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-0.01,0-0.01,0-0.02,0L11.15,8.32z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15.12,13H18v2h-0.88L15.12,13z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5 S11.12,9,12.5,9h1c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1 c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1 C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1c1.93,0,3.5,1.57,3.5,3.5V12H18z M2.93,2.93L1.87,3.99L10.88,13H7v2h5.88l3.13,3.13 l1.06-1.06L2.93,2.93z M9,14.35c-0.19,0-0.35-0.16-0.35-0.35S8.81,13.65,9,13.65S9.35,13.81,9.35,14S9.19,14.35,9,14.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"charging_station\": {\n    \"name\": \"charging_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"villa\": {\n    \"name\": \"villa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,10c-1.1,0-2,0.9-2,2h-1V3L3,8v13h18v-9C21,10.9,20.1,10,19,10z M5,9.37l9-3.46V12H9v7H5V9.37z M19,19h-3v-3h-2v3h-3v-5 h8V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,8.5C14.67,8.5,14,9.17,14,10h-1V3L3,6.89V17h14v-7C17,9.17,16.33,8.5,15.5,8.5z M4.5,7.91l7-2.72V10h-4v5.5h-3V7.91z M15.5,15.5H13V13h-1.5v2.5H9v-4h6.5V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"storefront\": {\n    \"name\": \"storefront\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apartment\": {\n    \"name\": \"apartment\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14,9V4H7v3H3v9h7v-3h1v3h6V9H14z M6,14H5v-1h1V14z M6,12H5v-1h1V12z M6,10H5V9h1V10z M10,11H9v-1h1V11z M10,9H9V8h1V9z M10,7H9V6h1V7z M12,11h-1v-1h1V11z M12,9h-1V8h1V9z M12,7h-1V6h1V7z M15,14h-1v-1h1V14z M15,12h-1v-1h1V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rv_hookup\": {\n    \"name\": \"rv_hookup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"bathtub\": {\n    \"name\": \"bathtub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"7\\\" cy=\\\"7\\\" r=\\\"2\\\"></circle><path d=\\\"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,11V5.12C16,3.95,15.05,3,13.88,3c-0.56,0-1.1,0.22-1.5,0.62l-0.83,0.83c-0.17-0.08-0.37-0.12-0.57-0.12 c-0.28,0-0.54,0.08-0.76,0.23l1.93,1.93c0.14-0.22,0.23-0.48,0.23-0.76c0-0.2-0.05-0.39-0.12-0.57l0.83-0.83 C13.3,4.12,13.58,4,13.88,4C14.5,4,15,4.5,15,5.12V11H9.1c-0.2-0.14-0.38-0.3-0.55-0.48L7.62,9.49C7.49,9.35,7.33,9.23,7.16,9.15 C6.95,9.05,6.72,9,6.49,9C5.67,9,5,9.67,5,10.5V11H3v4c0,0.55,0.45,1,1,1v0.5C4,16.78,4.22,17,4.5,17h11c0.28,0,0.5-0.22,0.5-0.5 V16c0.55,0,1-0.45,1-1v-4H16z M16,15H4v-3h12V15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"star_half\": {\n    \"name\": \"star_half\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"toggle_on\": {\n    \"name\": \"toggle_on\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"check_box\": {\n    \"name\": \"check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z\\\"></path>\"\n      }\n    }\n  },\n  \"radio_button_unchecked\": {\n    \"name\": \"radio_button_unchecked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"star\": {\n    \"name\": \"star\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"toggle_off\": {\n    \"name\": \"toggle_off\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"star_outline\": {\n    \"name\": \"star_outline\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border_purple500\": {\n    \"name\": \"star_border_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"radio_button_checked\": {\n    \"name\": \"radio_button_checked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"5\\\"></circle>\"\n      }\n    }\n  },\n  \"check_box_outline_blank\": {\n    \"name\": \"check_box_outline_blank\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border\": {\n    \"name\": \"star_border\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_purple500\": {\n    \"name\": \"star_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z\\\"></path>\"\n      }\n    }\n  },\n  \"indeterminate_check_box\": {\n    \"name\": \"indeterminate_check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_center\": {\n    \"name\": \"vertical_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_top\": {\n    \"name\": \"border_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"monetization_on\": {\n    \"name\": \"monetization_on\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z\\\"></path>\"\n      }\n    }\n  },\n  \"format_line_spacing\": {\n    \"name\": \"format_line_spacing\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_link\": {\n    \"name\": \"insert_link\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"area_chart\": {\n    \"name\": \"area_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,7l-5-4l-5,7L3,7v13h18V7H17z M19,16.95l-7-5.45L8,17l-3-2.4V11l2.44,1.83l4.96-6.95L16.3,9H19V16.95z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,6l-4-3L6,8L3,6v10h14V6H14z M15.5,13.8L10,9.39L7,13.5l-2.5-1.88V8.8l1.81,1.21l3.95-4.94L13.5,7.5h2V13.8z\\\"></path>\"\n      }\n    }\n  },\n  \"add_comment\": {\n    \"name\": \"add_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-2 13.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"format_textdirection_l_to_r\": {\n    \"name\": \"format_textdirection_l_to_r\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2H9C6.79 2 5 3.79 5 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zm0 12v3H5v2h12v3l4-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"show_chart\": {\n    \"name\": \"show_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"table_chart\": {\n    \"name\": \"table_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H5V5h15zm-5 14h-5v-9h5v9zM5 10h3v9H5v-9zm12 9v-9h3v9h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"text_decrease\": {\n    \"name\": \"text_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M23,11v2h-8 v-2H23z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M18,9.25v1.5h-6v-1.5H18z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73L4.49,12.44z M6.07,8.02l0.39-1.16h0.08 l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart\": {\n    \"name\": \"insert_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit\": {\n    \"name\": \"mode_edit\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25L3,21z M5,18.08l9.06-9.06l0.92,0.92L5.92,19L5,19L5,18.08z\\\"></path></g><g><path d=\\\"M18.37,3.29c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83c0.39-0.39,0.39-1.02,0-1.41L18.37,3.29z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"format_color_text\": {\n    \"name\": \"format_color_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M7.99,10.44h4.04L12.92,13h1.73L10.89,3H9.11L5.35,13h1.73L7.99,10.44z M9.57,6.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98 H8.51L9.57,6.02z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"query_stats\": {\n    \"name\": \"query_stats\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.88,18.47c0.44-0.7,0.7-1.51,0.7-2.39c0-2.49-2.01-4.5-4.5-4.5s-4.5,2.01-4.5,4.5s2.01,4.5,4.49,4.5 c0.88,0,1.7-0.26,2.39-0.7L21.58,23L23,21.58L19.88,18.47z M16.08,18.58c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C18.58,17.46,17.46,18.58,16.08,18.58z M15.72,10.08c-0.74,0.02-1.45,0.18-2.1,0.45l-0.55-0.83l-3.8,6.18 l-3.01-3.52l-3.63,5.81L1,17l5-8l3,3.5L13,6C13,6,15.72,10.08,15.72,10.08z M18.31,10.58c-0.64-0.28-1.33-0.45-2.05-0.49 c0,0,5.12-8.09,5.12-8.09L23,3.18L18.31,10.58z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.44,15.38C16.79,14.84,17,14.19,17,13.5c0-1.93-1.57-3.5-3.5-3.5S10,11.57,10,13.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.44,15.38z M13.5,15.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S14.6,15.5,13.5,15.5z M17.78,2L19,2.87l-3.88,5.9h0C14.61,8.59,14.07,8.5,13.5,8.5L17.78,2z M13.5,8.5c-0.58,0-1.13,0.1-1.65,0.28l0,0l-0.78-1.1 l-3.41,5.36l-2.48-2.97l-2.96,4.81L1,14l4-6.5l2.5,3L11,5L13.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shape_line\": {\n    \"name\": \"shape_line\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,11c2.76,0,5-2.24,5-5S8.76,1,6,1S1,3.24,1,6S3.24,11,6,11z M6,3c1.65,0,3,1.35,3,3c0,1.65-1.35,3-3,3S3,7.65,3,6 C3,4.35,4.35,3,6,3z\\\"></path><path d=\\\"M21,14h-5c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-5C23,14.9,22.1,14,21,14z M21,21h-5v-5h5V21z\\\"></path><path d=\\\"M17.71,7.7C18.11,7.89,18.54,8,19,8c1.65,0,3-1.35,3-3s-1.35-3-3-3s-3,1.35-3,3c0,0.46,0.11,0.89,0.3,1.29L6.29,16.3 C5.89,16.11,5.46,16,5,16c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3c0-0.46-0.11-0.89-0.3-1.29L17.71,7.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M5,9c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C2.79,1,1,2.79,1,5C1,7.21,2.79,9,5,9z M5,2.5c1.38,0,2.5,1.12,2.5,2.5 S6.38,7.5,5,7.5S2.5,6.38,2.5,5S3.62,2.5,5,2.5z\\\"></path><path d=\\\"M17.5,12h-4c-0.83,0-1.5,0.67-1.5,1.5v4c0,0.83,0.67,1.5,1.5,1.5h4c0.83,0,1.5-0.67,1.5-1.5v-4C19,12.67,18.33,12,17.5,12 z M17.5,17.5h-4v-4h4V17.5z\\\"></path><path d=\\\"M14.35,6.71C14.7,6.89,15.08,7,15.5,7C16.88,7,18,5.88,18,4.5S16.88,2,15.5,2S13,3.12,13,4.5c0,0.42,0.11,0.8,0.29,1.15 l-7.64,7.64C5.3,13.11,4.92,13,4.5,13C3.12,13,2,14.12,2,15.5S3.12,18,4.5,18S7,16.88,7,15.5c0-0.42-0.11-0.8-0.29-1.15 L14.35,6.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"border_bottom\": {\n    \"name\": \"border_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_indent_increase\": {\n    \"name\": \"format_indent_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\\\"></path>\"\n      }\n    }\n  },\n  \"padding\": {\n    \"name\": \"padding\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z M19,19H5V5h14V19z M11,7h2v2h-2V7z M7,7h2v2H7V7z M15,7h2v2h-2V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"checklist_rtl\": {\n    \"name\": \"checklist_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9,7.5H2V6h7V7.5z M9,12.5H2V14h7V12.5z M11.64,5.11l-1.06,1.06L13.4,9L18,4.4l-1.06-1.06L13.4,6.88L11.64,5.11z M11.64,11.61l-1.06,1.06l2.83,2.83l4.6-4.6l-1.06-1.06l-3.54,3.54L11.64,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"numbers\": {\n    \"name\": \"numbers\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,10L21,8h-4l1-4h-2l-1,4h-4l1-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1-4h4l-1,4h2l1-4h4l0.5-2h-4l1-4H20.5z M13.5,14h-4l1-4h4L13.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.62,8.5L17,7h-3.25l0.75-3H13l-0.75,3h-3L10,4H8.5L7.75,7H4.38L4,8.5h3.37L6.5,12H3.38L3,13.5h3.12L5.5,16H7l0.62-2.5h3 L10,16h1.5l0.62-2.5h3.5L16,12h-3.5l0.88-3.5H16.62z M11,12H8l0.88-3.5h3L11,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_align_center\": {\n    \"name\": \"format_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"format_underlined\": {\n    \"name\": \"format_underlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_bold\": {\n    \"name\": \"format_bold\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_bottom\": {\n    \"name\": \"align_vertical_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,22H2v-2h20V22z M10,2H7v16h3V2z M17,8h-3v10h3V8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_justify\": {\n    \"name\": \"format_align_justify\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart\": {\n    \"name\": \"pie_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.93 9H13V4.07c3.61.45 6.48 3.32 6.93 6.93zM4 12c0-4.07 3.06-7.44 7-7.93v15.86c-3.94-.49-7-3.86-7-7.93zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\\\"></path>\"\n      }\n    }\n  },\n  \"data_array\": {\n    \"name\": \"data_array\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,4 15,6 18,6 18,18 15,18 15,20 20,20 20,4\\\"></polygon><polygon points=\\\"4,20 9,20 9,18 6,18 6,6 9,6 9,4 4,4\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"4,4 4,16 8,16 8,14.5 5.5,14.5 5.5,5.5 8,5.5 8,4\\\"></polygon><polygon points=\\\"12,4 12,5.5 14.5,5.5 14.5,14.5 12,14.5 12,16 16,16 16,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"notes\": {\n    \"name\": \"notes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z\\\"></path>\"\n      }\n    }\n  },\n  \"scatter_plot\": {\n    \"name\": \"scatter_plot\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18c-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-2zm4-2c-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-2zm5.6 17.6c-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>\"\n      }\n    }\n  },\n  \"align_horizontal_right\": {\n    \"name\": \"align_horizontal_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,2h2v20h-2V2z M2,10h16V7H2V10z M8,17h10v-3H8V17z\\\"></path>\"\n      }\n    }\n  },\n  \"square\": {\n    \"name\": \"square\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M3,3v14h14V3H3z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_graph\": {\n    \"name\": \"auto_graph\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.06,9.94L12,9l2.06-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94z M4,14l0.94-2.06L7,11l-2.06-0.94L4,8 l-0.94,2.06L1,11l2.06,0.94L4,14z M8.5,9l1.09-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9z M4.5,20.5l6-6.01l4,4 L23,8.93l-1.41-1.41l-7.09,7.97l-4-4L3,19L4.5,20.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.72,8.28L10,7.5l1.72-0.78L12.5,5l0.78,1.72L15,7.5l-1.72,0.78L12.5,10L11.72,8.28z M3.5,12l0.78-1.72L6,9.5L4.28,8.72 L3.5,7L2.72,8.72L1,9.5l1.72,0.78L3.5,12z M7,8l0.94-2.06L10,5L7.94,4.06L7,2L6.06,4.06L4,5l2.06,0.94L7,8z M17.88,6.5l-5.61,6.31 L9,9.54l-6,6.01l1.06,1.06L9,11.67L12.33,15L19,7.5L17.88,6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"candlestick_chart\": {\n    \"name\": \"candlestick_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,4H7v2H5v12h2v2h2v-2h2V6H9V4z M9,16H7V8h2V16z\\\"></path><path d=\\\"M19,8h-2V4h-2v4h-2v7h2v5h2v-5h2V8z M17,13h-2v-3h2V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M7.25,3h-1.5v2H4v10h1.75v2h1.5v-2H9V5H7.25V3z M7.5,6.5v7h-2v-7H7.5z\\\"></path><path d=\\\"M14.25,7V3h-1.5v4H11v6h1.75v4h1.5v-4H16V7H14.25z M14.5,11.5h-2v-3h2V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bar_chart\": {\n    \"name\": \"bar_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"7\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"13\\\"></rect><rect height=\\\"16\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"12\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"vertical_align_bottom\": {\n    \"name\": \"vertical_align_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off\": {\n    \"name\": \"money_off\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\\\"></path>\"\n      }\n    }\n  },\n  \"format_shapes\": {\n    \"name\": \"format_shapes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z\\\"></path>\"\n      }\n    }\n  },\n  \"rectangle\": {\n    \"name\": \"rectangle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,4v16h20V4H2z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M2,4v12h16V4H2z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_style\": {\n    \"name\": \"border_style\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"score\": {\n    \"name\": \"score\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z\\\"></path>\"\n      }\n    }\n  },\n  \"polyline\": {\n    \"name\": \"polyline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,16v1.26l-6-3v-3.17L11.7,8H16V2h-6v4.9L7.3,10H3v6h5l7,3.5V22h6v-6H15z M12,4h2v2h-2V4z M7,14H5v-2h2V14z M19,20h-2v-2 h2V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M12.5,13.5v0.99l-5-2.71V9.24L9.83,6.5H13V2H8.5v3.75L6.16,8.5H3V13h3.6l5.9,3.2V18H17v-4.5H12.5z M10,3.5h1.5V5H10V3.5z M6,11.5H4.5V10H6V11.5z M15.5,16.5H14V15h1.5V16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"space_bar\": {\n    \"name\": \"space_bar\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9v4H6V9H4v6h16V9h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"functions\": {\n    \"name\": \"functions\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z\\\"></path>\"\n      }\n    }\n  },\n  \"format_italic\": {\n    \"name\": \"format_italic\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_left\": {\n    \"name\": \"format_align_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"line_axis\": {\n    \"name\": \"line_axis\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"22,7.43 20.59,6.02 16.56,10.55 9.5,4 2,11.51 3.5,13.01 9.64,6.86 15.23,12.04 13.5,13.99 9.5,9.99 2,17.5 3.5,19 9.5,12.99 13.5,16.99 16.69,13.4 20.59,17.01 22,15.6 18.02,11.9\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"14.68,10.61 18,6.88 16.88,5.89 13.62,9.56 8,4 2,10.01 3.06,11.07 8,6.12 12.62,10.68 11.27,12.2 8,8.93 2,14.94 3.06,16 8,11.05 11.33,14.38 13.69,11.73 17,15.01 18.06,13.95\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"vertical_distribute\": {\n    \"name\": \"vertical_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,10.5v3h10v-3H7z M2,20v2h20v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"border_all\": {\n    \"name\": \"border_all\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z\\\"></path>\"\n      }\n    }\n  },\n  \"multiline_chart\": {\n    \"name\": \"multiline_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_distribute\": {\n    \"name\": \"horizontal_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,2h-2v20h2V2z M13.5,7h-3v10h3V7z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_note\": {\n    \"name\": \"edit_note\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,10h11v2H3V10z M3,8h11V6H3V8z M3,16h7v-2H3V16z M18.01,12.87l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71 c0.39,0.39,0.39,1.02,0,1.41l-0.71,0.71L18.01,12.87z M17.3,13.58l-5.3,5.3V21h2.12l5.3-5.3L17.3,13.58z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M16.78,11.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06 l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L16.78,11.99z M16.19,12.58L11.77,17H10v-1.77l4.42-4.42L16.19,12.58z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_center\": {\n    \"name\": \"align_vertical_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"22,11 17,11 17,6 14,6 14,11 10,11 10,3 7,3 7,11 1.84,11 1.84,13 7,13 7,21 10,21 10,13 14,13 14,18 17,18 17,13 22,13\\\"></polygon>\"\n      }\n    }\n  },\n  \"highlight\": {\n    \"name\": \"highlight\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM3.502 5.874L4.916 4.46l2.122 2.12-1.414 1.415zm13.458.708l2.123-2.12 1.413 1.416-2.123 2.12z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered\": {\n    \"name\": \"format_list_numbered\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z\\\"></path>\"\n      }\n    }\n  },\n  \"mode\": {\n    \"name\": \"mode\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z\\\"></path>\"\n      }\n    }\n  },\n  \"border_clear\": {\n    \"name\": \"border_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_horizontal_left\": {\n    \"name\": \"align_horizontal_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,7H6v3h16V7z M16,14H6v3h10V14z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_money\": {\n    \"name\": \"attach_money\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z\\\"></path>\"\n      }\n    }\n  },\n  \"publish\": {\n    \"name\": \"publish\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 4h14v2H5zm0 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2v-6H9.83L12 9.83 14.17 12H13z\\\"></path>\"\n      }\n    }\n  },\n  \"text_fields\": {\n    \"name\": \"text_fields\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered_rtl\": {\n    \"name\": \"format_list_numbered_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"post_add\": {\n    \"name\": \"post_add\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z\\\"></path><path d=\\\"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"9\\\"></rect><polygon points=\\\"7,12 7,14 15,14 15,12 12,12\\\"></polygon><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M14,15H5V6h6V5H5C4.45,5,4,5.45,4,6V15c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V9h-1V15z\\\"></path><polygon points=\\\"7,8 7,9 11,9 12,9 12,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"10\\\"></rect><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"12\\\"></rect><polygon points=\\\"15,3 14,3 14,5 14,5 12,5 12,6 14,6 14,8 15,8 15,6 15,6 17,6 17,5 15,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"align_horizontal_center\": {\n    \"name\": \"align_horizontal_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"11,2 13,2 13,7 21,7 21,10 13,10 13,14 18,14 18,17 13,17 13,22 11,22 11,17 6,17 6,14 11,14 11,10 3,10 3,7 11,7\\\"></polygon>\"\n      }\n    }\n  },\n  \"format_list_bulleted\": {\n    \"name\": \"format_list_bulleted\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"hexagon\": {\n    \"name\": \"hexagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.2,3H6.8l-5.2,9l5.2,9h10.4l5.2-9L17.2,3z M16.05,19H7.95l-4.04-7l4.04-7h8.09l4.04,7L16.05,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.27,10l-3.14,5.5H6.87L3.73,10l3.14-5.5h6.26L16.27,10z M6,3l-4,7l4,7h8l4-7l-4-7H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"superscript\": {\n    \"name\": \"superscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,6l-1,0v1h2v1l-3,0V6c0-0.55,0.45-1,1-1l1,0l0-1h-2V3l2,0c0.55,0,1,0.45,1,1v1C18,5.55,17.55,6,17,6z M5.63,16h1.9 l2.43-3.87h0.08L12.47,16h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,6h-1.9l3.09,4.8L5.63,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bubble_chart\": {\n    \"name\": \"bubble_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 10c-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 2zm8.01-1c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM16.5 3C13.47 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5S22 11.53 22 8.5 19.53 3 16.5 3zm0 9c-1.93 0-3.5-1.57-3.5-3.5S14.57 5 16.5 5 20 6.57 20 8.5 18.43 12 16.5 12z\\\"></path>\"\n      }\n    }\n  },\n  \"border_right\": {\n    \"name\": \"border_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_emoticon\": {\n    \"name\": \"insert_emoticon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"move_down\": {\n    \"name\": \"move_down\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,11c0,2.45,1.76,4.47,4.08,4.91l-1.49-1.49L7,13l4,4.01L7,21l-1.41-1.41l1.58-1.58l0-0.06C3.7,17.54,1,14.58,1,11 c0-3.87,3.13-7,7-7h3v2H8C5.24,6,3,8.24,3,11z\\\"></path><path d=\\\"M22,11V4h-9v7H22z M20,9h-5V6h5V9z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><path d=\\\"M11,9h7V4h-7V9z M12.5,5.5h4v2h-4V5.5z\\\"></path><path d=\\\"M5.57,11.94l1.06-1.06l2.87,2.87l-2.88,2.88l-1.06-1.06l1.06-1.06V14.5H6.25C3.35,14.5,1,12.15,1,9.25 C1,6.35,3.35,4,6.25,4H9.5v1.5H6.25C4.18,5.5,2.5,7.18,2.5,9.25C2.5,11.32,4.18,13,6.25,13h0.37v-0.01L5.57,11.94z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_increase\": {\n    \"name\": \"text_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M20,11h3v2h-3 v3h-2v-3h-3v-2h3V8h2V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M15.75,9.25H18v1.5h-2.25V13h-1.5v-2.25H12v-1.5h2.25V7h1.5V9.25z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73 L4.49,12.44z M6.07,8.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"merge_type\": {\n    \"name\": \"merge_type\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_right\": {\n    \"name\": \"format_align_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_page_break\": {\n    \"name\": \"insert_page_break\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,20H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3h-2V20z\\\"></path><path d=\\\"M6,4h7v5h5v2h2V8l-6-6H6C4.9,2,4,2.9,4,4v7h2V4z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"1\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M5.5,3.5H11V7h3.5v2H16V6l-4-4H5.5C4.67,2,4,2.67,4,3.5V9h1.5V3.5z\\\"></path><path d=\\\"M14.5,16.5h-9V14H4v2.5C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V16.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"14\\\" y=\\\"11\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mode_comment\": {\n    \"name\": \"mode_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 17.17L18.83 16H4V4h16v13.17zM20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_photo\": {\n    \"name\": \"insert_photo\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_comment\": {\n    \"name\": \"insert_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4v13.17L18.83 16H4V4h16m0-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 10H6v2h12v-2zm0-3H6v2h12V9zm0-3H6v2h12V6z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart_outlined\": {\n    \"name\": \"insert_chart_outlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_invitation\": {\n    \"name\": \"insert_invitation\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2 5h-5v5h5v-5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_reset\": {\n    \"name\": \"format_color_reset\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z\\\"></path>\"\n      }\n    }\n  },\n  \"format_clear\": {\n    \"name\": \"format_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"border_left\": {\n    \"name\": \"border_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"title\": {\n    \"name\": \"title\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 4v3h5.5v12h3V7H19V4H5z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_handle\": {\n    \"name\": \"drag_handle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 9H4v2h16V9zM4 15h16v-2H4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"border_vertical\": {\n    \"name\": \"border_vertical\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_top\": {\n    \"name\": \"vertical_align_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_outer\": {\n    \"name\": \"border_outer\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"linear_scale\": {\n    \"name\": \"linear_scale\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_file\": {\n    \"name\": \"attach_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"table_rows\": {\n    \"name\": \"table_rows\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,5v3H5V5H19z M19,10v4H5v-4H19z M5,19v-3h14v3H5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,4.5V7h-11V4.5H15.5z M15.5,8.5v3h-11v-3H15.5z M4.5,15.5V13h11v2.5H4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_paint\": {\n    \"name\": \"format_paint\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3zm-2 2H6V4h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_rule\": {\n    \"name\": \"horizontal_rule\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><rect fill-rule=\\\"evenodd\\\" height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9\\\"></rect></g>\"\n      }\n    }\n  },\n  \"subscript\": {\n    \"name\": \"subscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,15l-1,0v1h2v1h-3v-2c0-0.55,0.45-1,1-1l1,0l0-1h-2v-1l2,0c0.55,0,1,0.45,1,1v1C18,14.55,17.55,15,17,15z M5.63,14h1.9 l2.43-3.87h0.08L12.47,14h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,4h-1.9l3.09,4.8L5.63,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_inner\": {\n    \"name\": \"border_inner\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"wrap_text\": {\n    \"name\": \"wrap_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"schema\": {\n    \"name\": \"schema\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z M6,3h3v2H6V3z M9,21H6v-2h3V21z M9,13H6v-2 h3V13z M19,13h-3v-2h3V13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,7.75v1.5h-2v-1.5h-2V6.5h2V2H4v4.5h2v1.25H4v4.5h2V14H4v4.5h5.5V14h-2v-1.75h2v-1.5h2v1.5H17v-4.5H11.5z M5.5,3.5H8V5 H5.5V3.5z M8,17H5.5v-1.5H8V17z M8,10.75H5.5v-1.5H8V10.75z M15.5,10.75H13v-1.5h2.5V10.75z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_fill\": {\n    \"name\": \"format_color_fill\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17 s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5 c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z M2,20h20v4H2V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.25,14c0.96,0,1.75-0.79,1.75-1.75c0-1.16-1.75-3.06-1.75-3.06s-1.75,1.9-1.75,3.06C13.5,13.21,14.29,14,15.25,14z\\\"></path><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M7.03,12.6C7.3,12.87,7.65,13,8,13s0.7-0.13,0.97-0.4l3.63-3.63c0.53-0.53,0.53-1.4,0-1.93L5.57,0L4.51,1.06l2.43,2.43 L3.4,7.03c-0.53,0.53-0.53,1.4,0,1.93L7.03,12.6z M8,4.56L11.44,8H4.56L8,4.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_textdirection_r_to_l\": {\n    \"name\": \"format_textdirection_r_to_l\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4v4c-1.1 0-2-.9-2-2s.9-2 2-2m8-2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4v5h2V4h2v11h2V4h2V2zM8 14l-4 4 4 4v-3h12v-2H8v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"pentagon\": {\n    \"name\": \"pentagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.63,9.78L16.56,19H7.44L4.37,9.78L12,4.44L19.63,9.78z M2,9l4,12h12l4-12L12,2L2,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M10,3.82l6.21,4.27l-2.57,7.41H6.37L3.79,8.09L10,3.82 M2,7.5L5.3,17h9.4L18,7.5L10,2L2,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"strikethrough_s\": {\n    \"name\": \"strikethrough_s\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit_outline\": {\n    \"name\": \"mode_edit_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25L3,21z M5,18.08l9.06-9.06l0.92,0.92L5.92,19L5,19L5,18.08z\\\"></path></g><g><path d=\\\"M18.37,3.29c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83c0.39-0.39,0.39-1.02,0-1.41L18.37,3.29z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3,14v3h3l8.62-8.62l-3-3L3,14z M5.38,15.5H4.5v-0.88l7.12-7.12l0.88,0.88L5.38,15.5z\\\"></path><path d=\\\"M16.71,4.88l-1.59-1.59c-0.39-0.39-1.02-0.39-1.41,0l-1.03,1.02l3,3l1.03-1.02C17.1,5.9,17.1,5.27,16.71,4.88z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stacked_line_chart\": {\n    \"name\": \"stacked_line_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off_csred\": {\n    \"name\": \"money_off_csred\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart_outline\": {\n    \"name\": \"pie_chart_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\\\"></path>\"\n      }\n    }\n  },\n  \"type_specimen\": {\n    \"name\": \"type_specimen\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z\\\"></path><path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z\\\"></path><path d=\\\"M12.19,12.2h3.63l0.8,2.3h1.56l-3.38-9H13.2l-3.38,9h1.56L12.19,12.2z M13.96,7.17h0.08l1.31,3.72h-2.69L13.96,7.17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3.5,5H2v11.5C2,17.33,2.67,18,3.5,18H15v-1.5H3.5V5z\\\"></path><path d=\\\"M16.5,2h-10C5.67,2,5,2.67,5,3.5v10C5,14.33,5.67,15,6.5,15h10c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M16.5,13.5h-10v-10h10V13.5z\\\"></path><path d=\\\"M10.09,10.21h2.83L13.54,12h1.21l-2.63-7h-1.25l-2.63,7h1.21L10.09,10.21z M11.47,6.3h0.06l1.02,2.89h-2.09L11.47,6.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"margin\": {\n    \"name\": \"margin\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M19,19H5V5h14V19z M11,7h2v2h-2V7z M7,7h2v2H7V7z M15,7h2v2h-2V7z M7,11h2v2H7V11z M11,11h2v2h-2V11z M15,11h2v2h-2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_indent_decrease\": {\n    \"name\": \"format_indent_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_top\": {\n    \"name\": \"align_vertical_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,22h3V6H7V22z M14,16h3V6h-3V16z\\\"></path>\"\n      }\n    }\n  },\n  \"checklist\": {\n    \"name\": \"checklist\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,7h-9v2h9V7z M22,15h-9v2h9V15z M5.54,11L2,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,11z M5.54,19L2,15.46 l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,7.5h-7V6h7V7.5z M18,12.5h-7V14h7V12.5z M3.06,5.11L2,6.17L4.83,9l4.6-4.6L8.36,3.34L4.83,6.88L3.06,5.11z M3.06,11.61 L2,12.67l2.83,2.83l4.6-4.6L8.36,9.84l-3.54,3.54L3.06,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_drive_file\": {\n    \"name\": \"insert_drive_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z\\\"></path>\"\n      }\n    }\n  },\n  \"data_object\": {\n    \"name\": \"data_object\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,7v2c0,0.55-0.45,1-1,1H2v4h1c0.55,0,1,0.45,1,1v2c0,1.65,1.35,3,3,3h3v-2H7c-0.55,0-1-0.45-1-1v-2 c0-1.3-0.84-2.42-2-2.83v-0.34C5.16,11.42,6,10.3,6,9V7c0-0.55,0.45-1,1-1h3V4H7C5.35,4,4,5.35,4,7z\\\"></path><path d=\\\"M21,10c-0.55,0-1-0.45-1-1V7c0-1.65-1.35-3-3-3h-3v2h3c0.55,0,1,0.45,1,1v2c0,1.3,0.84,2.42,2,2.83v0.34 c-1.16,0.41-2,1.52-2,2.83v2c0,0.55-0.45,1-1,1h-3v2h3c1.65,0,3-1.35,3-3v-2c0-0.55,0.45-1,1-1h1v-4H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M4,6.25v1.5C4,8.16,3.66,8.5,3.25,8.5H2v3h1.25C3.66,11.5,4,11.84,4,12.25v1.5C4,14.99,5.01,16,6.25,16H8v-1.5H6.25 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.16-0.88-2.11-2-2.24V9.99c1.12-0.12,2-1.08,2-2.24v-1.5c0-0.41,0.34-0.75,0.75-0.75H8V4 H6.25C5.01,4,4,5.01,4,6.25z\\\"></path><path d=\\\"M16.75,8.5C16.34,8.5,16,8.16,16,7.75v-1.5C16,5.01,14.99,4,13.75,4H12v1.5h1.75c0.41,0,0.75,0.34,0.75,0.75v1.5 c0,1.16,0.88,2.11,2,2.24v0.03c-1.12,0.12-2,1.08-2,2.24v1.5c0,0.41-0.34,0.75-0.75,0.75H12V16h1.75c1.24,0,2.25-1.01,2.25-2.25 v-1.5c0-0.41,0.34-0.75,0.75-0.75H18v-3H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"height\": {\n    \"name\": \"height\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><polygon points=\\\"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><polygon points=\\\"11,7 14,7 10,3.01 6,7 9,7 9,13 6,13 10,16.99 14,13 11,13\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"format_size\": {\n    \"name\": \"format_size\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"border_color\": {\n    \"name\": \"border_color\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.81,8.94l-3.75-3.75L4,14.25V18h3.75L16.81,8.94z M6,16v-0.92l7.06-7.06l0.92,0.92L6.92,16H6z\\\"></path><path d=\\\"M19.71,6.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C17.17,2.09,16.92,2,16.66,2c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L19.71,6.04z\\\"></path><rect height=\\\"4\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"20\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"draw\": {\n    \"name\": \"draw\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.85,10.39l1.06-1.06c0.78-0.78,0.78-2.05,0-2.83L18.5,5.09c-0.78-0.78-2.05-0.78-2.83,0l-1.06,1.06L18.85,10.39z M14.61,11.81L7.41,19H6v-1.41l7.19-7.19L14.61,11.81z M13.19,7.56L4,16.76V21h4.24l9.19-9.19L13.19,7.56L13.19,7.56z M19,17.5 c0,2.19-2.54,3.5-5,3.5c-0.55,0-1-0.45-1-1s0.45-1,1-1c1.54,0,3-0.73,3-1.5c0-0.47-0.48-0.87-1.23-1.2l1.48-1.48 C18.32,15.45,19,16.29,19,17.5z M4.58,13.35C3.61,12.79,3,12.06,3,11c0-1.8,1.89-2.63,3.56-3.36C7.59,7.18,9,6.56,9,6 c0-0.41-0.78-1-2-1C5.74,5,5.2,5.61,5.17,5.64C4.82,6.05,4.19,6.1,3.77,5.76C3.36,5.42,3.28,4.81,3.62,4.38C3.73,4.24,4.76,3,7,3 c2.24,0,4,1.32,4,3c0,1.87-1.93,2.72-3.64,3.47C6.42,9.88,5,10.5,5,11c0,0.31,0.43,0.6,1.07,0.86L4.58,13.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.35,8.83l0.71-0.71c0.59-0.59,0.59-1.54,0-2.12L15,4.94c-0.59-0.59-1.54-0.59-2.12,0l-0.71,0.71L15.35,8.83z M12.17,9.89 L6.56,15.5H5.5v-1.06l5.61-5.61L12.17,9.89z M11.11,6.71L4,13.82V17h3.18l7.11-7.11L11.11,6.71L11.11,6.71z M4.51,11.18 C3.59,10.76,3,10.16,3,9.25c0-1.31,1.39-1.99,2.61-2.59C6.45,6.24,7.5,5.73,7.5,5.25C7.5,4.91,6.83,4.5,6,4.5 c-0.94,0-1.36,0.46-1.38,0.48C4.35,5.29,3.88,5.33,3.57,5.07C3.26,4.81,3.21,4.35,3.46,4.03C3.55,3.93,4.34,3,6,3 c1.47,0,3,0.84,3,2.25C9,6.66,7.55,7.37,6.27,8C5.56,8.35,4.5,8.87,4.5,9.25c0,0.3,0.48,0.56,1.17,0.78L4.51,11.18z M14.14,12.16 c0.83,0.48,1.36,1.14,1.36,2.09c0,1.94-2.44,2.75-3.75,2.75C11.34,17,11,16.66,11,16.25s0.34-0.75,0.75-0.75 c0.77,0,2.25-0.49,2.25-1.25c0-0.39-0.38-0.71-0.97-0.97L14.14,12.16z\\\"></path>\"\n      }\n    }\n  },\n  \"border_horizontal\": {\n    \"name\": \"border_horizontal\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"short_text\": {\n    \"name\": \"short_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 9h16v2H4V9zm0 4h10v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"add_chart\": {\n    \"name\": \"add_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,19H5V5h9V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-9h-2V19z\\\"></path><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"10\\\"></rect><rect height=\\\"10\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><polygon points=\\\"19,5 19,3 17,3 17,5 15,5 15,7 17,7 17,9 19,9 19,7 21,7 21,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"format_quote\": {\n    \"name\": \"format_quote\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.62 18h-5.24l2-4H13V6h8v7.24L18.62 18zm-2-2h.76L19 12.76V8h-4v4h3.62l-2 4zm-8 2H3.38l2-4H3V6h8v7.24L8.62 18zm-2-2h.76L9 12.76V8H5v4h3.62l-2 4z\\\"></path>\"\n      }\n    }\n  },\n  \"move_up\": {\n    \"name\": \"move_up\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,13c0-2.45,1.76-4.47,4.08-4.91L5.59,9.59L7,11l4-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46,1,9.42,1,13 c0,3.87,3.13,7,7,7h3v-2H8C5.24,18,3,15.76,3,13z\\\"></path><path d=\\\"M13,13v7h9v-7H13z M20,18h-5v-3h5V18z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><path d=\\\"M11,16h7v-5h-7V16z M12.5,12.5h4v2h-4V12.5z\\\"></path><path d=\\\"M5.57,8.06l1.06,1.06L9.5,6.25L6.62,3.37L5.56,4.43l1.06,1.06V5.5H6.25C3.35,5.5,1,7.85,1,10.75C1,13.65,3.35,16,6.25,16 H9.5v-1.5H6.25c-2.07,0-3.75-1.68-3.75-3.75C2.5,8.68,4.18,7,6.25,7h0.37v0.01L5.57,8.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_strikethrough\": {\n    \"name\": \"format_strikethrough\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"south_west\": {\n    \"name\": \"south_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel\": {\n    \"name\": \"cancel\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z\\\"></path>\"\n      }\n    }\n  },\n  \"pivot_table_chart\": {\n    \"name\": \"pivot_table_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z M3,19c0,1.1,0.9,2,2,2h3V10H3V19z M3,5v3h5V3H5C3.9,3,3,3.9,3,5z M18,8.99L14,13 l1.41,1.41l1.59-1.6V15c0,1.1-0.9,2-2,2h-2.17l1.59-1.59L13,14l-4,4l4,4l1.41-1.41L12.83,19H15c2.21,0,4-1.79,4-4v-2.18l1.59,1.6 L22,13L18,8.99z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_drop_down_circle\": {\n    \"name\": \"arrow_drop_down_circle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13l-4-4h8z\\\"></path>\"\n      }\n    }\n  },\n  \"north_east\": {\n    \"name\": \"north_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z\\\"></path>\"\n      }\n    }\n  },\n  \"check\": {\n    \"name\": \"check\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\\\"></path>\"\n      }\n    }\n  },\n  \"apps_outage\": {\n    \"name\": \"apps_outage\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,8h4V4H4V8z M10,20h4v-4h-4V20z M4,20h4v-4H4V20z M4,14h4v-4H4V14z M10,14h4v-4h-4V14z M16,20h4v-4h-4V20z M19,0 c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S21.76,0,19,0z M19.5,8h-1V7h1V8z M19.5,6h-1V2h1V6z M16,14h4v-2.07 C19.67,11.98,19.34,12,19,12c-1.07,0-2.09-0.24-3-0.68V14z M10,4v4h2.68C12.24,7.09,12,6.07,12,5c0-0.34,0.02-0.67,0.07-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,7H4V4h3V7z M7,8.5H4v3h3V8.5z M11.5,8.5h-3v3h3V8.5z M7,13H4v3h3V13z M11.5,13h-3v3h3V13z M16,13h-3v3h3V13z M20,4 c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S20,1.79,20,4z M16.5,5h-1v1h1V5z M16.5,2h-1v2h1V2z M16,9.5v2h-3V8.61 C13.86,9.17,14.89,9.5,16,9.5z M11.39,7H8.5V4h2C10.5,5.11,10.83,6.14,11.39,7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_down\": {\n    \"name\": \"arrow_drop_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 10l5 5 5-5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward\": {\n    \"name\": \"arrow_forward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"more_vert\": {\n    \"name\": \"more_vert\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"last_page\": {\n    \"name\": \"last_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z\\\"></path>\"\n      }\n    }\n  },\n  \"west\": {\n    \"name\": \"west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z\\\"></path>\"\n      }\n    }\n  },\n  \"east\": {\n    \"name\": \"east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_direction\": {\n    \"name\": \"assistant_direction\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M12,21c-4.99,0-9-4.01-9-9s4.01-9,9-9s9,4.01,9,9 S16.99,21,12,21z\\\"></path><path d=\\\"M19.73,11.42L12.54,4.2c-0.36-0.27-0.8-0.27-1.15,0L4.2,11.42c-0.27,0.36-0.27,0.8,0,1.16l7.19,7.22 c0.36,0.27,0.8,0.27,1.15,0l7.19-7.22C20.09,12.22,20.09,11.69,19.73,11.42z M13.5,14.5l-1.41-1.41L13.17,12H10v3H8v-4 c0-0.6,0.4-1,1-1h4.17l-1.09-1.09L13.5,7.5L17,11L13.5,14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apps\": {\n    \"name\": \"apps\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"more_horiz\": {\n    \"name\": \"more_horiz\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"menu_open\": {\n    \"name\": \"menu_open\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward_ios\": {\n    \"name\": \"arrow_forward_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><polygon points=\\\"6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><polygon points=\\\"4.59,16.59 6,18 14,10 6,2 4.59,3.41 11.17,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"arrow_back\": {\n    \"name\": \"arrow_back\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_upward\": {\n    \"name\": \"arrow_upward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_left\": {\n    \"name\": \"subdirectory_arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"waterfall_chart\": {\n    \"name\": \"waterfall_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,4h3v16h-3V4z M3,13h3v7H3V13z M14,4h3v3h-3V4z M10,5h3v4h-3V5z M7,10h3v4H7V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_downward\": {\n    \"name\": \"arrow_downward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_right\": {\n    \"name\": \"switch_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" transform=\\\"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios\": {\n    \"name\": \"arrow_back_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_right\": {\n    \"name\": \"chevron_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_left\": {\n    \"name\": \"chevron_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios_new\": {\n    \"name\": \"arrow_back_ios_new\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><polygon points=\\\"17.77,3.77 16,2 6,12 16,22 17.77,20.23 9.54,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon points=\\\"14.41,3.41 13,2 5,10 13,18 14.41,16.59 7.83,10\\\"></polygon>\"\n      }\n    }\n  },\n  \"unfold_more\": {\n    \"name\": \"unfold_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen\": {\n    \"name\": \"fullscreen\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"close\": {\n    \"name\": \"close\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\\\"></path>\"\n      }\n    }\n  },\n  \"payments\": {\n    \"name\": \"payments\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H3V6h14v8zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm13 0v11c0 1.1-.9 2-2 2H4v-2h17V7h2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"expand_more\": {\n    \"name\": \"expand_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen_exit\": {\n    \"name\": \"fullscreen_exit\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_home_work\": {\n    \"name\": \"add_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11,14H5v5H3v-6.97l5-3.57l5,3.57v1.08c0.57-0.59,1.25-1.07,2-1.42V11L8,6l-7,5v10h6v-5h2v5h2.68 C11.25,20.09,11,19.08,11,18V14z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"7\\\"></rect><path d=\\\"M23,13.11V3H10v1.97l2,1.43V5h9v6.68C21.75,12.04,22.43,12.52,23,13.11z\\\"></path><g><path d=\\\"M23,18c0-2.76-2.24-5-5-5s-5,2.24-5,5s2.24,5,5,5S23,20.76,23,18z M17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M12,10.39V9L6.5,5L1,9v8h4.5v-4h2v4h2.38c-0.18-0.47-0.31-0.97-0.36-1.5H9v-4H4v4H2.5V9.76l4-2.91l4,2.91v2.08 C10.9,11.27,11.41,10.78,12,10.39z\\\"></path></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"6\\\"></rect></g><g><polygon points=\\\"13,7.5 13,6 11.5,6 11.5,6.78 12.49,7.5\\\"></polygon></g><g><path d=\\\"M9,3v1.96l1.5,1.09V4.5h7v5.61c0.56,0.29,1.07,0.67,1.5,1.13V3H9z\\\"></path></g><g><path d=\\\"M15,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C19,12.79,17.21,11,15,11z M17,15.5h-1.5V17h-1v-1.5H13v-1h1.5 V13h1v1.5H17V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"offline_share\": {\n    \"name\": \"offline_share\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,5H4v16c0,1.1,0.9,2,2,2h10v-2H6V5z\\\"></path><path d=\\\"M18,1h-8C8.9,1,8,1.9,8,3v14c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M18,17h-8v-1h8V17z M18,14h-8V6h8 V14z M18,4h-8V3h8V4z\\\"></path><path d=\\\"M12.5,10.25h1.63l-0.69,0.69L14.5,12L17,9.5L14.5,7l-1.06,1.06l0.69,0.69H12c-0.55,0-1,0.45-1,1V12h1.5V10.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_right\": {\n    \"name\": \"arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 17l5-5-5-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"app_settings_alt\": {\n    \"name\": \"app_settings_alt\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><path d=\\\"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3 c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"south\": {\n    \"name\": \"south\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z\\\"></path>\"\n      }\n    }\n  },\n  \"maps_home_work\": {\n    \"name\": \"maps_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"15\\\"></rect><path d=\\\"M1,11v10h6v-5h2v5h6V11L8,6L1,11z M13,19h-2v-5H5v5H3v-7l5-3.5l5,3.5V19z\\\"></path><polygon points=\\\"10,3 10,4.97 12,6.4 12,5 21,5 21,19 17,19 17,21 23,21 23,3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"menu\": {\n    \"name\": \"menu\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z\\\"></path>\"\n      }\n    }\n  },\n  \"double_arrow\": {\n    \"name\": \"double_arrow\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12\\\"></polygon><polygon points=\\\"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"9.21,15 12.43,15 16,10 12.43,5 9.21,5 12.79,10\\\"></polygon><polygon points=\\\"4.21,15 7.43,15 11,10 7.43,5 4.21,5 7.79,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"home_work\": {\n    \"name\": \"home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M1,11v10h6v-5h2v5h6V11L8,6L1,11z M13,19h-2v-5H5v5H3v-6.97l5-3.57l5,3.57V19z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"15\\\"></rect><polygon points=\\\"10,3 10,4.97 12,6.4 12,5 21,5 21,19 17,19 17,21 23,21 23,3\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M1,9v8h4.5v-3.5h2V17H12V9L6.5,5L1,9z M10.5,15.5H9V12H4v3.5H2.5V9.76l4-2.91l4,2.91V15.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"6\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"12.5\\\"></rect><polygon points=\\\"11.5,6.78 12.49,7.5 13,7.5 13,6 11.5,6\\\"></polygon><polygon points=\\\"9,3 9,4.96 10.5,6.05 10.5,4.5 17.5,4.5 17.5,15.5 13.5,15.5 13.5,17 19,17 19,3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"north\": {\n    \"name\": \"north\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z\\\"></path>\"\n      }\n    }\n  },\n  \"north_west\": {\n    \"name\": \"north_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z\\\"></path>\"\n      }\n    }\n  },\n  \"campaign\": {\n    \"name\": \"campaign\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z\\\"></path><path d=\\\"M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z\\\"></path><path d=\\\"M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z\\\"></path><path d=\\\"M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z\\\"></path><path d=\\\"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_less\": {\n    \"name\": \"expand_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_right\": {\n    \"name\": \"subdirectory_arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_up\": {\n    \"name\": \"arrow_drop_up\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14l5-5 5 5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less\": {\n    \"name\": \"unfold_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_circle_down\": {\n    \"name\": \"expand_circle_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.08,9.59L12,12.67L8.92,9.59L7.5,11l4.5,4.5l4.5-4.5L15.08,9.59z M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,12.6L6.63,9.23l1.06-1.06L10,10.48l2.31-2.31l1.06,1.06L10,12.6z M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8s3.58-8,8-8 S18,5.58,18,10z M16.5,10c0-3.59-2.91-6.5-6.5-6.5S3.5,6.41,3.5,10s2.91,6.5,6.5,6.5S16.5,13.59,16.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"legend_toggle\": {\n    \"name\": \"legend_toggle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,15H4v-1h12V15z M16,11H4v1h12V11z M4,9l4-2.78L12,9l4-2.78V5l-4,2.78L8,5L4,7.78L4,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"first_page\": {\n    \"name\": \"first_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_left\": {\n    \"name\": \"switch_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z\\\"></path>\"\n      }\n    }\n  },\n  \"refresh\": {\n    \"name\": \"refresh\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_east\": {\n    \"name\": \"south_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_left\": {\n    \"name\": \"arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M14 7l-5 5 5 5V7z\\\"></path>\"\n      }\n    }\n  },\n  \"play_arrow\": {\n    \"name\": \"play_arrow\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8.64L15.27 12 10 15.36V8.64M8 5v14l11-7L8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle_on\": {\n    \"name\": \"shuffle_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M5.41,4l5.18,5.17l-1.41,1.42 L4,5.42L5.41,4z M20,20h-6v-2h2.61l-3.2-3.2l1.42-1.42l3.13,3.13L18,16.55V14h2V20z M20,10h-2V7.42L5.41,20L4,18.59L16.58,6H14V4h6 V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"library_add\": {\n    \"name\": \"library_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_video\": {\n    \"name\": \"featured_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_play_next\": {\n    \"name\": \"queue_play_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle\": {\n    \"name\": \"pause_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,16h2V8H9V16z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z M13,16h2V8h-2V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"7.5\\\" y=\\\"7\\\"></rect><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"11\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mic_off\": {\n    \"name\": \"mic_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9zM19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"radio\": {\n    \"name\": \"radio\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2zm0 2v3h-2V9h-2v2H4V8h16zM4 20v-7h16v7H4z\\\"></path><circle cx=\\\"8\\\" cy=\\\"16.48\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"art_track\": {\n    \"name\": \"art_track\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_forward\": {\n    \"name\": \"fast_forward\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M15,9.86L18.03,12L15,14.14V9.86 M6,9.86L9.03,12L6,14.14V9.86 M13,6v12l8.5-6L13,6L13,6z M4,6v12l8.5-6L4,6L4,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"playlist_add\": {\n    \"name\": \"playlist_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18z M3,16h7v-2H3V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect><polygon points=\\\"14.75,11.25 14.75,8 13.25,8 13.25,11.25 10,11.25 10,12.75 13.25,12.75 13.25,16 14.75,16 14.75,12.75 18,12.75 18,11.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"5k\": {\n    \"name\": \"5k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,14v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10C10.55,15,11,14.55,11,14z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"forward_30\": {\n    \"name\": \"forward_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z\\\"></path>\"\n      }\n    }\n  },\n  \"note\": {\n    \"name\": \"note\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 4H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6zM4 18.01V6h11v5h5v7.01H4z\\\"></path>\"\n      }\n    }\n  },\n  \"9k\": {\n    \"name\": \"9k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11,14v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2v1h-3V15H10C10.55,15,11,14.55,11,14z M9.5,11.5H8V10h1.5V11.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"1k_plus\": {\n    \"name\": \"1k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"7.5,15 9,15 9,9 6,9 6,10.5 7.5,10.5\\\"></polygon><polygon points=\\\"12,12.75 13.75,15 15.5,15 13.25,12 15.5,9 13.75,9 12,11.25 12,9 10.5,9 10.5,15 12,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"2k\": {\n    \"name\": \"2k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,13.5H8v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15H11V13.5z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"skip_previous\": {\n    \"name\": \"skip_previous\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 6h2v12H6zm3.5 6l8.5 6V6l-8.5 6zm6.5 2.14L12.97 12 16 9.86v4.28z\\\"></path>\"\n      }\n    }\n  },\n  \"library_add_check\": {\n    \"name\": \"library_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M20,4v12H8V4H20 M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2L20,2z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M4,16h10v1H4c-0.55,0-1-0.45-1-1V6h1V16z M17,4v9c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h9 C16.55,3,17,3.45,17,4z M16,4H7v9h9V4z M8.67,8.5L7.96,9.21l2.12,2.12l4.95-4.95l-0.71-0.71l-4.24,4.24L8.67,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"queue\": {\n    \"name\": \"queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z\\\"></path>\"\n      }\n    }\n  },\n  \"movie\": {\n    \"name\": \"movie\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z\\\"></path>\"\n      }\n    }\n  },\n  \"airplay\": {\n    \"name\": \"airplay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><polygon points=\\\"6,22 18,22 12,16\\\"></polygon><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"control_camera\": {\n    \"name\": \"control_camera\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zm6.46-10l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-10-2.92l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle>\"\n      }\n    }\n  },\n  \"replay_10\": {\n    \"name\": \"replay_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam_off\": {\n    \"name\": \"videocam_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.56 8l-2-2-4.15-4.14L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41-8.86-8.86L9.56 8zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check_circle\": {\n    \"name\": \"playlist_add_check_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4z M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M14,10H7v2h7V10z M14,7H7v2h7V7z M7,15h3v-2H7V15z M19,13.41L17.59,12l-3.54,3.54 l-1.41-1.41l-1.41,1.41l2.83,2.83L19,13.41z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.24,10.4l1.06,1.06L11.76,15l-2.12-2.12l1.06-1.06l1.06,1.06L14.24,10.4z M3.5,10c0,3.58,2.92,6.5,6.5,6.5 s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5S3.5,6.42,3.5,10z M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M8.5,11H6 v1.5h2.5V11z M11.5,6H6v1.5h5.5V6z M11.5,8.5H6V10h5.5V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"6k_plus\": {\n    \"name\": \"6k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon><path d=\\\"M7,15h2c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,12.5 h1V14h-1V12.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"8k_plus\": {\n    \"name\": \"8k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7,15h2c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,10h1v1.5h-1V10z M7.5,12.5h1V14h-1V12.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"mic\": {\n    \"name\": \"mic\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z\\\"></path><path d=\\\"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"replay_5\": {\n    \"name\": \"replay_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle_filled\": {\n    \"name\": \"play_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"repeat\": {\n    \"name\": \"repeat\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_play_list\": {\n    \"name\": \"featured_play_list\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset\": {\n    \"name\": \"web_asset\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"not_interested\": {\n    \"name\": \"not_interested\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset_off\": {\n    \"name\": \"web_asset_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H20c1.11,0,2,0.9,2,2v12c0,0.34-0.09,0.66-0.23,0.94L20,17.17V8h-9.17L6.83,4z M20.49,23.31L17.17,20H4 c-1.11,0-2-0.9-2-2V6c0-0.34,0.08-0.66,0.23-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M15.17,18l-10-10H4v10H15.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.14,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84L17.78,17.78z M3.5,14.5V7h1.38l7.5,7.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.14,0.73-0.38,1l-1.12-1.12V7H9.12L6.12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_settings\": {\n    \"name\": \"video_settings\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z\\\"></path><polygon points=\\\"15,12 9,8 9,16\\\"></polygon><path d=\\\"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,5h14v4h1V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5v10c0,0.55,0.45,1,1,1h8v-1H3V5z\\\"></path><path d=\\\"M19.1,14.2l0.87-0.69l-0.88-1.52l-1.03,0.4c-0.16-0.12-0.34-0.22-0.53-0.3L17.38,11h-1.75l-0.16,1.1 c-0.18,0.08-0.36,0.18-0.52,0.3l-1.04-0.41l-0.88,1.52l0.87,0.7c-0.02,0.2-0.03,0.4,0,0.6l-0.87,0.69l0.88,1.52l1.03-0.4 c0.16,0.12,0.34,0.22,0.53,0.3L15.63,18h1.75l0.16-1.1c0.18-0.08,0.36-0.18,0.52-0.3l1.04,0.41l0.88-1.52l-0.87-0.7 C19.12,14.59,19.12,14.4,19.1,14.2z M16.5,15.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C17.5,15.05,17.05,15.5,16.5,15.5z\\\"></path><polygon points=\\\"8,13 12.5,10 8,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"recent_actors\": {\n    \"name\": \"recent_actors\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5h2v14h-2zm-4 0h2v14h-2zm-3 0H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H3V7h10v10z\\\"></path><circle cx=\\\"8\\\" cy=\\\"9.94\\\" r=\\\"1.95\\\"></circle><path d=\\\"M11.89 15.35c0-1.3-2.59-1.95-3.89-1.95s-3.89.65-3.89 1.95V16h7.78v-.65z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption\": {\n    \"name\": \"closed_caption\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7 15h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7 0h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_up\": {\n    \"name\": \"volume_up\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z\\\"></path>\"\n      }\n    }\n  },\n  \"explicit\": {\n    \"name\": \"explicit\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_play\": {\n    \"name\": \"playlist_play\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"16,13 16,21 22,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,10.5 13,17 18,13.75\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"volume_down\": {\n    \"name\": \"volume_down\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z\\\"></path>\"\n      }\n    }\n  },\n  \"missed_video_call\": {\n    \"name\": \"missed_video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zm-2-1.83V16H5V8h10v.67zm-7.89 2.44L11 15l3.77-3.79-.78-.79L11 13.43l-3.11-3.1h2.55V9.22H6v4.44h1.11z\\\"></path>\"\n      }\n    }\n  },\n  \"lyrics\": {\n    \"name\": \"lyrics\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"6\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"6\\\" y=\\\"12\\\"></rect><path d=\\\"M15,11.97V16H6l-2,2V4h11v2.03c0.52-0.69,1.2-1.25,2-1.6V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9 c1.1,0,2-0.9,2-2v-2.42C16.2,13.22,15.52,12.66,15,11.97z\\\"></path><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><path d=\\\"M20,6.18C19.69,6.07,19.35,6,19,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V3h2V1h-4V6.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.5,9.4v4.1H4.38L3.5,14.38V3.5h9v2.09c0.35-0.64,0.87-1.18,1.5-1.54V3.5C14,2.67,13.33,2,12.5,2h-9 C2.67,2,2,2.67,2,3.5V18l3-3h7.5c0.83,0,1.5-0.67,1.5-1.5v-2.56C13.37,10.57,12.85,10.04,12.5,9.4z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"3\\\" x=\\\"5\\\" y=\\\"10.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"5\\\" y=\\\"7.75\\\"></rect><path d=\\\"M17,5.21C16.69,5.08,16.36,5,16,5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-5H20V1h-3V5.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interpreter_mode\": {\n    \"name\": \"interpreter_mode\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.5,16.5c-0.83,0-1.5-0.67-1.5-1.5v-2.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5V15C22,15.83,21.33,16.5,20.5,16.5z M20,20h1c0,0,0-1.54,0-1.54c1.69-0.24,3-1.7,3-3.46h-1c0,1.38-1.12,2.5-2.5,2.5S18,16.38,18,15h-1c0,1.76,1.31,3.22,3,3.46 C20,18.46,20,20,20,20z M9,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c0.47,0,0.92,0.08,1.34,0.23C9.5,5.26,9,6.57,9,8 c0,1.43,0.5,2.74,1.34,3.77C9.92,11.92,9.47,12,9,12z M7.11,13.13C5.79,14.05,5,15.57,5,17.22V20H1v-2.78 c0-1.12,0.61-2.15,1.61-2.66C3.85,13.92,5.37,13.37,7.11,13.13z M11,8c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4 S11,10.21,11,8z M13,8c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2S13,6.9,13,8z M15,15c-2.37,0-4.29,0.73-5.48,1.34 C9.2,16.5,9,16.84,9,17.22V18l7.17,0c0.5,0.86,1.25,1.56,2.15,2L7,20v-2.78c0-1.12,0.61-2.15,1.61-2.66C10.29,13.7,12.47,13,15,13 c0.39,0,0.77,0.02,1.14,0.05c-0.33,0.59-0.55,1.26-0.62,1.96C15.35,15,15.18,15,15,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,10c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,5.34,9,7S10.34,10,12,10z M12,5.5c0.83,0,1.5,0.67,1.5,1.5S12.83,8.5,12,8.5 S10.5,7.83,10.5,7S11.17,5.5,12,5.5z M16.87,13.38c-0.62,0-1.12-0.5-1.12-1.12v-1.88c0-0.62,0.5-1.12,1.13-1.12 c0.62,0,1.12,0.5,1.12,1.12v1.88C18,12.87,17.5,13.38,16.87,13.38z M16.5,16h0.75c0,0,0-1.15,0-1.15c1.27-0.18,2.25-1.28,2.25-2.6 h-0.75c0,1.03-0.84,1.88-1.88,1.88S15,13.28,15,12.25h-0.75c0,1.32,0.98,2.42,2.25,2.6C16.5,14.85,16.5,16,16.5,16z M8.38,9.67 C7.83,8.92,7.5,8,7.5,7c0-1,0.33-1.92,0.88-2.67C7.96,4.12,7.5,4,7,4C5.34,4,4,5.34,4,7s1.34,3,3,3C7.5,10,7.96,9.88,8.38,9.67z M13.45,11.1C12.97,11.04,12.49,11,12,11c-1.84,0-3.56,0.5-5.03,1.37C6.36,12.72,6,13.39,6,14.09V16l9.24,0 c-0.68-0.33-1.24-0.85-1.61-1.5l-6.13,0v-0.41c0-0.18,0.09-0.34,0.22-0.42C9.02,12.9,10.5,12.5,12,12.5c0.38,0,0.75,0.03,1.13,0.08 C13.13,12.05,13.25,11.56,13.45,11.1z M4.5,16H1v-1.91c0-0.7,0.36-1.36,0.97-1.72c1.29-0.76,2.76-1.23,4.33-1.35 C5.89,11.22,4.5,12.2,4.5,14.09V16z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_off\": {\n    \"name\": \"closed_caption_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g enable-background=\\\"new\\\"><g><path d=\\\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,18H5V6h14V18z\\\"></path><path d=\\\"M7,15h3c0.55,0,1-0.45,1-1v-1H9.5v0.5h-2v-3h2V11H11v-1c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z\\\"></path><path d=\\\"M14,15h3c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-2v-3h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4 C13,14.55,13.45,15,14,15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"7k_plus\": {\n    \"name\": \"7k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M6.75,15H8.5l1.46-4.71C10.15,9.65,9.67,9,9,9H5.5v1.5h2.63L6.75,15z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"stop_circle\": {\n    \"name\": \"stop_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8 s8,3.58,8,8S16.42,20,12,20z M16,16H8V8h8V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,15.5c-3.04,0-5.5-2.46-5.5-5.5 c0-3.04,2.46-5.5,5.5-5.5s5.5,2.46,5.5,5.5C15.5,13.04,13.04,15.5,10,15.5z M13,13H7V7h6V13z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle_outline\": {\n    \"name\": \"pause_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"hd\": {\n    \"name\": \"hd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zM18 14v-4c0-.55-.45-1-1-1h-4v6h4c.55 0 1-.45 1-1zm-1.5-.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_from_queue\": {\n    \"name\": \"remove_from_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z\\\"></path>\"\n      }\n    }\n  },\n  \"skip_next\": {\n    \"name\": \"skip_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 18l8.5-6L6 6v12zm2-8.14L11.03 12 8 14.14V9.86zM16 6h2v12h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pause\": {\n    \"name\": \"pause\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h4V5H6v14zm8-14v14h4V5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_disabled\": {\n    \"name\": \"closed_caption_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1L13,10z M16.5,13.5l1.21,1.21C17.89,14.52,18,14.27,18,14v-1 h-1.5V13.5z M8.83,6H19v10.17l1.98,1.98c0-0.05,0.02-0.1,0.02-0.16V6c0-1.1-0.9-2-2-2H6.83L8.83,6z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5 V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z\\\"></path>\"\n      }\n    }\n  },\n  \"audio_file\": {\n    \"name\": \"audio_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v5h5v11H6z M16,11h-4v3.88 c-0.36-0.24-0.79-0.38-1.25-0.38c-1.24,0-2.25,1.01-2.25,2.25c0,1.24,1.01,2.25,2.25,2.25S13,17.99,13,16.75V13h3V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M12,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V6L12,2z M5.5,16.5v-13H11V7h3.5v9.5 H5.5z M10,9h3.5v2H11v3c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2c0.37,0,0.7,0.11,1,0.28V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8k\": {\n    \"name\": \"8k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7.5,15H10c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,10h1.5v1.5H8 V10z M8,12.5h1.5V14H8V12.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"4k\": {\n    \"name\": \"4k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14zm-9.5-4H11v-1.49h1V12h-1V9H9.5v3H8V9H6.5v4.5h3zm8.7 0l-2-3 2-3h-1.7l-2 3 2 3zm-3.7-3V9H13v6h1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing_disabled\": {\n    \"name\": \"hearing_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11,8c0,0.45-0.15,0.85-0.4,1.19L7.81,6.4C8.15,6.15,8.55,6,9,6C10.1,6,11,6.9,11,8z M17.07,17.07L2.93,2.93L2.22,3.64 l2.27,2.27C4.19,6.54,4,7.25,4,8h1c0-0.47,0.09-0.92,0.24-1.34l1.82,1.82C7.24,9.2,7.8,9.76,8.52,9.94l2.1,2.1c0,0,0,0,0,0 c-0.6,0.46-1.23,0.93-1.56,1.92c-0.39,1.16-0.81,1.58-1.42,1.9C7.42,15.95,7.17,16,6.92,16c-0.65,0-1.26-0.42-1.62-1H4.2 c0.42,1.12,1.5,2,2.72,2c0.4,0,0.8-0.08,1.16-0.24c0.96-0.5,1.51-1.21,1.93-2.49c0.23-0.69,0.64-1,1.21-1.43 c0.04-0.03,0.07-0.06,0.11-0.09l5.03,5.03L17.07,17.07z M9.04,4C11.26,4,13,5.71,13,7.9c0,0.72-0.22,1.51-0.63,2.24 c-0.1,0.19-0.21,0.34-0.32,0.49l0.72,0.72c0.16-0.22,0.32-0.45,0.47-0.72C13.73,9.75,14,8.78,14,7.9C14,5.15,11.83,3,9.04,3 C7.75,3,6.59,3.5,5.7,4.29l0.71,0.71C7.12,4.38,8.03,4,9.04,4z M16,8c0-2.19-1-4.14-2.58-5.42l-0.72,0.72C14.1,4.39,15,6.09,15,8 c0,1.55-0.6,2.95-1.57,4.02l0.71,0.71C15.29,11.48,16,9.83,16,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fiber_dvr\": {\n    \"name\": \"fiber_dvr\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.87 12.43l-1-3.43h-1.5l1.75 6h1.5l1.75-6h-1.5zM21 11.5v-1c0-.85-.65-1.5-1.5-1.5H16v6h1.5v-2h1.15l.85 2H21l-.9-2.1c.5-.25.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zM6.5 9H3v6h3.5c.85 0 1.5-.65 1.5-1.5v-3C8 9.65 7.35 9 6.5 9zm0 4.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"video_library\": {\n    \"name\": \"video_library\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing\": {\n    \"name\": \"hearing\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"games\": {\n    \"name\": \"games\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 4v2.67l-1 1-1-1V4h2m7 7v2h-2.67l-1-1 1-1H20M6.67 11l1 1-1 1H4v-2h2.67M12 16.33l1 1V20h-2v-2.67l1-1M15 2H9v5.5l3 3 3-3V2zm7 7h-5.5l-3 3 3 3H22V9zM7.5 9H2v6h5.5l3-3-3-3zm4.5 4.5l-3 3V22h6v-5.5l-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"4k_plus\": {\n    \"name\": \"4k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"8.5,15 10,15 10,13.5 11,13.5 11,12 10,12 10,9 8.5,9 8.5,12 7,12 7,9 5.5,9 5.5,13.5 8.5,13.5\\\"></polygon><polygon points=\\\"13,12.75 14.75,15 16.5,15 14.25,12 16.5,9 14.75,9 13,11.25 13,9 11.5,9 11.5,15 13,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"call_to_action\": {\n    \"name\": \"call_to_action\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z\\\"></path>\"\n      }\n    }\n  },\n  \"play_disabled\": {\n    \"name\": \"play_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.45,13.62 19,12 8,5 8,5.17\\\"></polygon><path d=\\\"M2.81,2.81L1.39,4.22L8,10.83V19l4.99-3.18l6.78,6.78l1.41-1.41L2.81,2.81z M10,15.36v-2.53l1.55,1.55L10,15.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"slow_motion_video\": {\n    \"name\": \"slow_motion_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_manual_record\": {\n    \"name\": \"fiber_manual_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6m0-2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"sort_by_alpha\": {\n    \"name\": \"sort_by_alpha\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_queue\": {\n    \"name\": \"add_to_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_30\": {\n    \"name\": \"replay_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"video_label\": {\n    \"name\": \"video_label\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check\": {\n    \"name\": \"playlist_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"20.59,11.93 16.34,16.17 14.22,14.05 12.81,15.46 16.34,19 22,13.34\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"16.94,9.34 13.4,12.88 11.64,11.11 10.58,12.17 13.4,15 18,10.4\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"subtitles\": {\n    \"name\": \"subtitles\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"library_books\": {\n    \"name\": \"library_books\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_rewind\": {\n    \"name\": \"fast_rewind\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.86v4.28L14.97 12 18 9.86m-9 0v4.28L5.97 12 9 9.86M20 6l-8.5 6 8.5 6V6zm-9 0l-8.5 6 8.5 6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"subscriptions\": {\n    \"name\": \"subscriptions\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z\\\"></path>\"\n      }\n    }\n  },\n  \"9k_plus\": {\n    \"name\": \"9k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M10,14v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h1.5v1H6V15h3C9.55,15,10,14.55,10,14z M8.5,11.5h-1V10h1V11.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"av_timer\": {\n    \"name\": \"av_timer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"web\": {\n    \"name\": \"web\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,9h10.5v3.5H4V9z M4,14.5 h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"volume_mute\": {\n    \"name\": \"volume_mute\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 8.83v6.34L11.83 13H9v-2h2.83L14 8.83M16 4l-5 5H7v6h4l5 5V4z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_off\": {\n    \"name\": \"volume_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z\\\"></path>\"\n      }\n    }\n  },\n  \"replay\": {\n    \"name\": \"replay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"surround_sound\": {\n    \"name\": \"surround_sound\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><path d=\\\"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z\\\"></path><path d=\\\"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z\\\"></path><path d=\\\"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"forward_10\": {\n    \"name\": \"forward_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z\\\"></path><polygon points=\\\"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16\\\"></polygon><path d=\\\"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"snooze\": {\n    \"name\": \"snooze\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle\": {\n    \"name\": \"play_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M9.5,16.5l7-4.5l-7-4.5V16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><polygon points=\\\"8,13.5 13.5,10 8,6.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pause_circle_filled\": {\n    \"name\": \"pause_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"play_circle_outline\": {\n    \"name\": \"play_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"video_file\": {\n    \"name\": \"video_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v5h5v11H6z M14,14l2-1.06v4.12L14,16v1 c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16,6v10.5c0,0.83-0.67,1.5-1.5,1.5h-9C4.67,18,4,17.33,4,16.5v-13C4,2.67,4.67,2,5.5,2H12L16,6z M14.5,16.5V7H11V3.5H5.5 v13H14.5z M11.5,10.5c0-0.28-0.22-0.5-0.5-0.5H7.5C7.22,10,7,10.22,7,10.5V14c0,0.28,0.22,0.5,0.5,0.5H11c0.28,0,0.5-0.22,0.5-0.5 v-1.05C12.22,13.45,13,14,13,14v-3.5l-1.5,1.05V10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one\": {\n    \"name\": \"repeat_one\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_circle\": {\n    \"name\": \"playlist_add_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M14,10H7v2h7V10z M14,7H7v2h7V7z M7,15h3v-2H7V15z M19,13v2h-2v2h-2v-2h-2v-2h2v-2h2v2H19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z M8.5,11H6v1.5h2.5V11z M11.5,6H6v1.5h5.5V6z M11.5,8.5H6V10h5.5V8.5z M15.5,11v1.5H14V14 h-1.5v-1.5H11V11h1.5V9.5H14V11H15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_remove\": {\n    \"name\": \"playlist_remove\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M3,16h7v-2H3V16z M14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14 L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M12.07,17.02l1.94-1.95l1.94,1.95l1.07-1.07l-1.95-1.94 l1.95-1.94L15.95,11l-1.94,1.95L12.07,11L11,12.07l1.95,1.94L11,15.95L12.07,17.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_5\": {\n    \"name\": \"forward_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z\\\"></path>\"\n      }\n    }\n  },\n  \"5k_plus\": {\n    \"name\": \"5k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M10,14v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3C9.55,15,10,14.55,10,14z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"6k\": {\n    \"name\": \"6k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon><path d=\\\"M7.5,15H10c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,12.5h1.5V14H8V12.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"10k\": {\n    \"name\": \"10k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,9v6v4H5v-8.5h1V15h1.5V9H5V5 h14V9z\\\"></path><polygon points=\\\"15.5,11.25 15.5,9 14,9 14,15 15.5,15 15.5,12.75 17.25,15 19,15 16.75,12 19,9 17.25,9\\\"></polygon><path d=\\\"M9.5,15H12c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H9.5c-0.55,0-1,0.45-1,1v4C8.5,14.55,8.95,15,9.5,15z M10,10.5h1.5v3 H10V10.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"3k\": {\n    \"name\": \"3k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,14v-4c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10C10.55,15,11,14.55,11,14z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"library_music\": {\n    \"name\": \"library_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_smart_record\": {\n    \"name\": \"fiber_smart_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm8-13.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z\\\"></path>\"\n      }\n    }\n  },\n  \"sd\": {\n    \"name\": \"sd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1h2V11H11v-1c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1h2.5v1h-2V13H6v1C6,14.55,6.45,15,7,15z\\\"></path><path d=\\\"M18,14v-4c0-0.55-0.45-1-1-1h-4v6h4C17.55,15,18,14.55,18,14z M16.5,13.5h-2v-3h2V13.5z\\\"></path><path d=\\\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"high_quality\": {\n    \"name\": \"high_quality\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12zM7.5 13h2v2H11V9H9.5v2.5h-2V9H6v6h1.5zm6.5 2h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.5-4.5h2v3h-2v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"loop\": {\n    \"name\": \"loop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_pin\": {\n    \"name\": \"fiber_pin\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 15h1.5V9H11v6zm7.75-6v3.5L16.25 9H15v6h1.25v-3.5L18.8 15H20V9h-1.25zM7.5 9H4v6h1.5v-2h2c.85 0 1.5-.65 1.5-1.5v-1C9 9.65 8.35 9 7.5 9zm0 2.5h-2v-1h2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"album\": {\n    \"name\": \"album\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_new\": {\n    \"name\": \"fiber_new\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.25 12.5L4.75 9H3.5v6h1.25v-3.5L7.3 15h1.2V9H7.25zM9.5 15h4v-1.25H11v-1.11h2.5v-1.26H11v-1.12h2.5V9h-4zm9.75-6v4.5h-1.12V9.99h-1.25v3.52h-1.13V9H14.5v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h-1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_music\": {\n    \"name\": \"queue_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,6h-5v8.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3V8h3V6z M15,6H3v2h12V6z M15,10H3v2h12 V10z M11,14H3v2h8V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8\\\"></rect><path d=\\\"M18,5h-4v6.21C13.69,11.08,13.36,11,13,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-7H18V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"repeat_on\": {\n    \"name\": \"repeat_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H6.83l1.58,1.58L7,22l-4-4 l4-4l1.41,1.42L6.83,17H17v-4h2V19z M17,10l-1.41-1.42L17.17,7H7v4H5V5h12.17l-1.58-1.58L17,2l4,4L17,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one_on\": {\n    \"name\": \"repeat_one_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H6.83l1.58,1.58L7,22l-4-4 l4-4l1.41,1.42L6.83,17H17v-4h2V19z M10,10.5V9h3v6h-1.5v-4.5H10z M17,10l-1.41-1.42L17.17,7H7v4H5V5h12.17l-1.58-1.58L17,2l4,4 L17,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_call\": {\n    \"name\": \"video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM15 16H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z\\\"></path>\"\n      }\n    }\n  },\n  \"new_releases\": {\n    \"name\": \"new_releases\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-4.51 2.11.26 2.79-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11zM11 15h2v2h-2zm0-8h2v6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"7k\": {\n    \"name\": \"7k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M7.75,15H9.5l1.46-4.71C11.15,9.65,10.67,9,10,9H6.5v1.5h2.63L7.75,15z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"5g\": {\n    \"name\": \"5g\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z\\\"></path><path d=\\\"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,10.5h2V12h-3V8h4c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V9.5h-3V10.5z\\\"></path></g><g><path d=\\\"M9,8H6v1.5h2c0.55,0,1,0.45,1,1V12c0,0.55-0.45,1-1,1H5v-1h3v-1.5H5V7h4V8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"3k_plus\": {\n    \"name\": \"3k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M10,14v-4c0-0.55-0.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9C9.55,15,10,14.55,10,14z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"1k\": {\n    \"name\": \"1k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,15 10,15 10,9 7,9 7,10.5 8.5,10.5\\\"></polygon><polygon points=\\\"13.5,12.75 15.25,15 17,15 14.75,12 17,9 15.25,9 13.5,11.25 13.5,9 12,9 12,15 13.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"replay_circle_filled\": {\n    \"name\": \"replay_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,18.5c-3.31,0-6-2.69-6-6h2c0,2.21,1.79,4,4,4 s4-1.79,4-4c0-2.24-1.85-4.09-4.16-3.99l1.57,1.57L12,11.5l-4-4l4-4l1.41,1.41l-1.6,1.6C15.28,6.4,18,9.18,18,12.5 C18,15.81,15.31,18.5,12,18.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"speed\": {\n    \"name\": \"speed\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z\\\"></path><path d=\\\"M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_none\": {\n    \"name\": \"mic_none\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"stop\": {\n    \"name\": \"stop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 8v8H8V8h8m2-2H6v12h12V6z\\\"></path>\"\n      }\n    }\n  },\n  \"music_video\": {\n    \"name\": \"music_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"equalizer\": {\n    \"name\": \"equalizer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam\": {\n    \"name\": \"videocam\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 8v8H5V8h10m1-2H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle\": {\n    \"name\": \"shuffle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z\\\"></path>\"\n      }\n    }\n  },\n  \"branding_watermark\": {\n    \"name\": \"branding_watermark\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z\\\"></path>\"\n      }\n    }\n  },\n  \"2k_plus\": {\n    \"name\": \"2k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M10,13.5H7.5v-1H9c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6v1.5h2.5v1H7c-0.55,0-1,0.45-1,1V15h4V13.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"crop_landscape\": {\n    \"name\": \"crop_landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_pound\": {\n    \"name\": \"currency_pound\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,21c1.93,0,3.62-1.17,4-3l-1.75-0.88C16,18.21,15.33,19,14,19l-4.9,0c0.83-1,1.5-2.34,1.5-4c0-0.35-0.03-0.69-0.08-1 L14,14v-2l-4.18,0C9,10.42,8,9.6,8,8c0-1.93,1.57-3.5,3.5-3.5c1.5,0,2.79,0.95,3.28,2.28L16.63,6c-0.8-2.05-2.79-3.5-5.13-3.5 C8.46,2.5,6,4.96,6,8c0,1.78,0.79,2.9,1.49,4L6,12v2l2.47,0c0.08,0.31,0.13,0.64,0.13,1c0,2.7-2.6,4-2.6,4v2H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M9.75,4c1.23,0,2.27,0.81,2.62,1.93l1.39-0.59C13.18,3.69,11.6,2.5,9.75,2.5C7.4,2.5,5.5,4.4,5.5,6.75 c0,1.44,0.67,2.33,1.23,3.25L5.5,10v1.5l1.91,0c0.06,0.25,0.09,0.51,0.09,0.8c0,2.2-2,3.2-2,3.2V17H12c1.44,0,2.6-1.01,2.92-2.3 l-1.42-0.6c-0.05,0.78-0.7,1.4-1.5,1.4l-4.18,0C8.47,14.72,9,13.65,9,12.3c0-0.28-0.02-0.55-0.06-0.8l3.06,0V10l-3.55,0 C7.79,8.65,7,8.02,7,6.75C7,5.23,8.23,4,9.75,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3mp\": {\n    \"name\": \"3mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"control_point\": {\n    \"name\": \"control_point\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_small\": {\n    \"name\": \"photo_size_select_small\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_weak\": {\n    \"name\": \"hdr_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_strong\": {\n    \"name\": \"center_focus_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5 3c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm-7 0H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_2\": {\n    \"name\": \"exposure_neg_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_16_9\": {\n    \"name\": \"crop_16_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,7H5C3.9,7,3,7.9,3,9v6c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,15H5V9h14V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,7h-11C3.67,7,3,7.67,3,8.5v3C3,12.33,3.67,13,4.5,13h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,7.67,16.33,7,15.5,7z M15.5,11.5h-11v-3h11V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_awesome_motion\": {\n    \"name\": \"auto_awesome_motion\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14,2H4C2.9,2,2,2.9,2,4v10h2V4h10V2z M18,6H8C6.9,6,6,6.9,6,8v10h2V8h10V6z M20,10h-8c-1.1,0-2,0.9-2,2v8 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-8C22,10.9,21.1,10,20,10z M20,20h-8v-8h8V20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_free\": {\n    \"name\": \"crop_free\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"24mp\": {\n    \"name\": \"24mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M17,12.5h-3.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5C18,12.95,17.55,12.5,17,12.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path><polygon points=\\\"16,11.5 17.5,11.5 17.5,10 18.5,10 18.5,8.5 17.5,8.5 17.5,5.5 16,5.5 16,8.5 14.5,8.5 14.5,5.5 13,5.5 13,10 16,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"4mp\": {\n    \"name\": \"4mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"12.5,11.5 14,11.5 14,10 15,10 15,8.5 14,8.5 14,5.5 12.5,5.5 12.5,8.5 11,8.5 11,5.5 9.5,5.5 9.5,10 12.5,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"panorama_horizontal_select\": {\n    \"name\": \"panorama_horizontal_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,5.5c-3.89,0-6.95-0.84-8.69-1.43C2.67,3.85,2,4.33,2,5.02L2,19c0,0.68,0.66,1.17,1.31,0.95 C5.36,19.26,8.1,18.5,12,18.5c3.87,0,6.66,0.76,8.69,1.45C21.34,20.16,22,19.68,22,19l0-14c0-0.68-0.66-1.17-1.31-0.95 C18.66,4.73,15.86,5.5,12,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"portrait\": {\n    \"name\": \"portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_one\": {\n    \"name\": \"looks_one\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-7-2h2V7h-4v2h2z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_bitcoin\": {\n    \"name\": \"currency_bitcoin\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.06,11.57C17.65,10.88,18,9.98,18,9c0-1.86-1.27-3.43-3-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2 c2.21,0,4-1.79,4-4C19,13.55,18.22,12.27,17.06,11.57z M10,7h4c1.1,0,2,0.9,2,2s-0.9,2-2,2h-4V7z M15,17h-5v-4h5c1.1,0,2,0.9,2,2 S16.1,17,15,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M12.38,10.75c0.9,0,1.62,0.73,1.62,1.62S13.27,14,12.38,14H8.5v-3.25H12.38z M11.38,6C12.27,6,13,6.73,13,7.62 s-0.73,1.62-1.62,1.62H8.5V6H11.38z M8,15.5V17h1.5v-1.5H11V17h1.5l0-1.5c1.67-0.07,3-1.44,3-3.12c0-1.21-0.69-2.26-1.7-2.78 c0.44-0.54,0.7-1.22,0.7-1.97c0-1.33-0.83-2.46-2-2.92l0-1.71H11v1.5H9.5V3H8v1.5H5.5V6H7v8H5.5v1.5H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_wide_angle\": {\n    \"name\": \"panorama_wide_angle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_shade\": {\n    \"name\": \"wb_shade\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,12v2.5l5.5,5.5H22L14,12z M14,20h3l-3-3V20z M8,4l-6,6h2v10h8V10h2L8,4z M9,14H7v-4h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_3_2\": {\n    \"name\": \"crop_3_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,6H5C3.9,6,3,6.9,3,8v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M19,16H5V8h14V16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,6h-11C3.67,6,3,6.67,3,7.5v5C3,13.33,3.67,14,4.5,14h11c0.83,0,1.5-0.67,1.5-1.5v-5C17,6.67,16.33,6,15.5,6z M15.5,12.5h-11v-5h11V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hide_image\": {\n    \"name\": \"hide_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,5v11.17l2,2V5c0-1.1-0.9-2-2-2H5.83l2,2H19z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61l1.41-1.41L2.81,2.81z M5,19V7.83l7.07,7.07L11.25,16 L9,13l-3,4h8.17l2,2H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"exposure\": {\n    \"name\": \"exposure\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1.41 2L5 17.59V5h12.59zM6.41 19L19 6.41V19H6.41zM6 7h5v1.5H6zm10 5.5h-1.5v2h-2V16h2v2H16v-2h2v-1.5h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_3\": {\n    \"name\": \"filter_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_linear\": {\n    \"name\": \"blur_linear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"60fps_select\": {\n    \"name\": \"60fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,6v6h-3V6H18z M18,4h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M11,6V4H6 C4.9,4,4,4.9,4,6v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H6V6H11z M9,10v2H6v-2H9z M5,22H3v-5h2V22z M9,22H7v-5h2 V22z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip_camera_android\": {\n    \"name\": \"flip_camera_android\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z\\\"></path><path d=\\\"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z\\\"></path><path d=\\\"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M8,10c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S8,8.9,8,10z M11,10c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S11,9.45,11,10z\\\"></path><path d=\\\"M7,7H4.83C5.86,5.21,7.79,4,10,4c2.61,0,4.82,1.67,5.65,4h1.06C15.85,5.11,13.17,3,10,3C7.44,3,5.22,4.39,4,6.44V4H3v4h4 V7z\\\"></path><path d=\\\"M13,12v1h2.17c-1.04,1.79-2.96,3-5.17,3c-2.61,0-4.82-1.67-5.65-4H3.29c0.86,2.89,3.54,5,6.71,5c2.56,0,4.78-1.39,6-3.44 V16h1v-4H13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"15mp\": {\n    \"name\": \"15mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M16.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flare\": {\n    \"name\": \"flare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"monochrome_photos\": {\n    \"name\": \"monochrome_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_cloudy\": {\n    \"name\": \"wb_cloudy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6m0-2C9.12 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96C18.68 6.59 15.65 4 12.01 4z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_off\": {\n    \"name\": \"motion_photos_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.42L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.93,10.94C14.86,19.59,13.48,20,12,20z\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.05l1.45,1.45C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10 C9.96,2,8.07,2.61,6.49,3.66l1.45,1.45C9.14,4.41,10.52,4,12,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wb_twilight\": {\n    \"name\": \"wb_twilight\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7069 -0.7074 0.7074 0.7069 -0.3887 15.676)\\\" width=\\\"3\\\" x=\\\"17.22\\\" y=\\\"7.31\\\"></rect><rect height=\\\"2\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"18\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2992 6.1783)\\\" width=\\\"2\\\" x=\\\"4.31\\\" y=\\\"6.78\\\"></rect><path d=\\\"M5,16h14c0-3.87-3.13-7-7-7S5,12.13,5,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"14.5\\\"></rect><rect height=\\\"2.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1972 12.8523)\\\" width=\\\"2.5\\\" x=\\\"14.16\\\" y=\\\"5.91\\\"></rect><rect height=\\\"2.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.3852 5.1557)\\\" width=\\\"1.5\\\" x=\\\"3.78\\\" y=\\\"5.41\\\"></rect><path d=\\\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grain\": {\n    \"name\": \"grain\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera\": {\n    \"name\": \"photo_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.12 4l1.83 2H20v12H4V6h4.05l1.83-2h4.24M15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2zm-3 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_din\": {\n    \"name\": \"crop_din\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"logo_dev\": {\n    \"name\": \"logo_dev\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.68,14.98H6V9h1.71 c1.28,0,1.71,1.03,1.71,1.71l0,2.56C9.42,13.95,9,14.98,7.68,14.98z M12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25 c-0.4,0.01-0.74-0.31-0.75-0.71V9.75c-0.01-0.4,0.31-0.74,0.71-0.75h2.28l0,1.07h-1.92v1.39H12.38z M16.88,14.23 c-0.48,1.11-1.33,0.89-1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z\\\"></path><path d=\\\"M7.77,10.12H7.14v3.77h0.63c0.14,0,0.28-0.05,0.42-0.16c0.14-0.1,0.21-0.26,0.21-0.47v-2.52c0-0.21-0.07-0.37-0.21-0.47 C8.05,10.17,7.91,10.12,7.77,10.12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.46,8.43H5.93v3.15h0.53c0.12,0,0.23-0.04,0.35-0.13c0.12-0.09,0.18-0.22,0.18-0.39v-2.1c0-0.18-0.06-0.31-0.18-0.39 C6.69,8.47,6.58,8.43,6.46,8.43z\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M6.38,12.49h-1.4V7.49h1.43c1.07,0,1.43,0.86,1.43,1.43l0,2.14C7.84,11.63,7.49,12.49,6.38,12.49z M10.31,9.55v0.89H9.33v1.16 h1.61v0.89H9.06c-0.34,0.01-0.62-0.26-0.63-0.59V8.12C8.43,7.78,8.7,7.5,9.03,7.5h1.91l0,0.89H9.33v1.16H10.31z M14.07,11.87 c-0.4,0.93-1.11,0.74-1.43,0L11.47,7.5h0.98l0.9,3.43l0.89-3.43h0.98L14.07,11.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"image_search\": {\n    \"name\": \"image_search\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z\\\"></path>\"\n      }\n    }\n  },\n  \"timelapse\": {\n    \"name\": \"timelapse\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"11mp\": {\n    \"name\": \"11mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path></g><g><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g><g><polygon points=\\\"9.5,11.5 11,11.5 11,5.5 8,5.5 8,7 9.5,7\\\"></polygon></g><g><polygon points=\\\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"crop_original\": {\n    \"name\": \"crop_original\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z\\\"></path>\"\n      }\n    }\n  },\n  \"13mp\": {\n    \"name\": \"13mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_5_4\": {\n    \"name\": \"crop_5_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,4H5C3.9,4,3,4.9,3,6v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,18H5V6h14V18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,4h-11C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h11c0.83,0,1.5-0.67,1.5-1.5v-9C17,4.67,16.33,4,15.5,4z M15.5,14.5h-11v-9h11V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"timer_10\": {\n    \"name\": \"timer_10\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_red_eye\": {\n    \"name\": \"remove_red_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c3.79 0 7.17 2.13 8.82 5.5-1.65 3.37-5.02 5.5-8.82 5.5S4.83 15.37 3.18 12C4.83 8.63 8.21 6.5 12 6.5m0-2C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5 1.12-2.5 2.5-2.5m0-2c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9_plus\": {\n    \"name\": \"filter_9_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_video\": {\n    \"name\": \"switch_video\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z\\\"></path>\"\n      }\n    }\n  },\n  \"photo\": {\n    \"name\": \"photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\\\"></path>\"\n      }\n    }\n  },\n  \"video_stable\": {\n    \"name\": \"video_stable\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h2.95l-2.33,8.73L16.82,18H4 z M15.62,15.61l-8.55-2.29l1.31-4.92l8.56,2.29L15.62,15.61z M20,18h-2.95l2.34-8.73L7.18,6H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"healing\": {\n    \"name\": \"healing\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_next\": {\n    \"name\": \"navigate_next\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_5\": {\n    \"name\": \"looks_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6h4v2H9v2h4c1.1 0 2-.89 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9\": {\n    \"name\": \"filter_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dirty_lens\": {\n    \"name\": \"dirty_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19h-7.02 c-0.22-0.84-0.52-1.76-0.13-2.33c0.81-1.12,2.67,1.77,3.81-0.09c0.77-1.57-1.58-1.29-1.64-2.12c-0.05-0.84,3.68,0.17,3.04-1.66 c-0.61-1.73-2.42,0.48-2.76-0.53c-0.58-1.74,4.7-1.68,2.85-4.01c-1.76-2.22-2.47,2.85-4.41,2.33c-1.34-0.36-1.01-2.88-2.65-2.44 c-1.88,0.51,1.03,2.2,0,2.86c-0.96,0.63-1.72-0.92-2.51-1.19c-0.2-0.07-0.69-0.05-0.91,0.19c-0.78,0.86,0.28,1.16,0.25,1.91 c-0.02,0.75-1.59,0.49-1.51,1.49c0.12,1.6,2.18,0.45,2.4,1.24c0.55,1.98-1.89,2.15-0.5,3.27c1.53,0.71,1.91-1.94,2.8-1.35 c0.58,0.38,0.3,1.45,0.16,2.43H4V7h4.05l1.83-2h4.24l1.83,2H20V19z\\\"></path><path d=\\\"M17.28,17.15c0,0.48,0.39,0.86,0.86,0.86c0.48,0,0.86-0.38,0.86-0.86s-0.39-0.86-0.86-0.86 C17.66,16.29,17.28,16.67,17.28,17.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"raw_on\": {\n    \"name\": \"raw_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-1C8,9.7,7.3,9,6.5,9z M6.5,11.5h-2v-1h2V11.5z\\\"></path><path d=\\\"M10.25,9l-1.5,6h1.5l0.38-1.5h1.75l0.37,1.5h1.5l-1.5-6H10.25z M11,12l0.25-1h0.5L12,12H11z\\\"></path><polygon points=\\\"19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 15.5,15 16.98,15 17.74,11.96 18.5,15 19.98,15 21.48,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"raw_off\": {\n    \"name\": \"raw_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.15,14.32 17.74,11.96 18.5,15 19.98,15 21.48,9 19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 14.72,11.9\\\"></polygon><path d=\\\"M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38-1.5h0.04 l9.11,9.11l1.41-1.41L2.81,2.81L1.39,4.22z M6.5,11.5h-2v-1h2V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_5\": {\n    \"name\": \"filter_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama\": {\n    \"name\": \"panorama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_none\": {\n    \"name\": \"filter_none\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_camera_ios\": {\n    \"name\": \"flip_camera_ios\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h3.17h0.88l0.59-0.65L9.88,5h4.24l1.24,1.35L15.95,7h0.88H20V19z\\\"></path></g><g><path d=\\\"M12,17c-2.21,0-4-1.79-4-4h2l-2.5-2.5L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z\\\"></path></g><g><path d=\\\"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-2l2.5,2.5L19,13h-2 C17,10.24,14.76,8,12,8z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16,5h-2l-2-2H8L6,5H4C3.45,5,3,5.45,3,6v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V6C17,5.45,16.55,5,16,5z M16,15H4V6h2 h0.41l0.29-0.29L8.41,4h3.17l1.71,1.71L13.59,6H14h2V15z\\\"></path><path d=\\\"M10,6C9.28,6,8.62,6.2,8.04,6.54l0.73,0.73C9.15,7.1,9.56,7,10,7c1.65,0,3,1.35,3,3h-1.5l2,2l2-2H14C14,7.79,12.21,6,10,6 z\\\"></path><path d=\\\"M10,13c-1.65,0-3-1.35-3-3h1.5l-2-2l-2,2H6c0,2.21,1.79,4,4,4c0.72,0,1.38-0.2,1.96-0.54l-0.73-0.73 C10.85,12.9,10.44,13,10,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_7\": {\n    \"name\": \"brightness_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle>\"\n      }\n    }\n  },\n  \"12mp\": {\n    \"name\": \"12mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M16.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H12V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_to_photos\": {\n    \"name\": \"add_to_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_actual\": {\n    \"name\": \"photo_size_select_actual\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z\\\"></path>\"\n      }\n    }\n  },\n  \"burst_mode\": {\n    \"name\": \"burst_mode\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_wide_angle_select\": {\n    \"name\": \"panorama_wide_angle_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,4C8.03,4,5.15,4.63,3,5c-0.55,1.97-1,3.92-1,7c0,3.03,0.45,5.05,1,7c2.15,0.37,4.98,1,9,1c3.97,0,6.85-0.63,9-1 c0.57-2.02,1-3.99,1-7c0-3.03-0.45-5.05-1-7C18.85,4.63,16.02,4,12,4z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"currency_lira\": {\n    \"name\": \"currency_lira\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0,5-2.24,5-5h2c0,3.87-3.13,7-7,7H9v-5.16 l-3,1.88l0-2.36l3-1.88v-2.36L6,13l0-2.36L9,8.76z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M8,7.32L5.5,8.89v1.77L8,9.09v1.77l-2.5,1.57v1.77L8,12.63V17h1.5c3.04,0,5.5-2.46,5.5-5.5h-1.5c0,2.21-1.79,4-4,4v-3.81 l3-1.88V8.04l-3,1.88V8.15l3-1.88V4.5l-3,1.88V3H8V7.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"slideshow\": {\n    \"name\": \"slideshow\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_auto\": {\n    \"name\": \"wb_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-8.63 7.67C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_auto\": {\n    \"name\": \"motion_photos_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M11.29,7.5h1.43 l3.01,8h-1.39l-0.72-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_enhanced_select\": {\n    \"name\": \"hdr_enhanced_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,2,12,2z M12,4C9.79,4,8,5.79,8,8s1.79,4,4,4s4-1.79,4-4 S14.21,4,12,4z M13,11h-2V9H9V7h2V5h2v2h2v2h-2V11z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M18,18.5c0,0.6-0.4,1.1-0.9,1.4 L18,22h-1.5l-0.9-2h-1.1v2H13v-6h3.5c0.8,0,1.5,0.7,1.5,1.5V18.5z M16.5,18.5v-1h-2v1H16.5z M3.5,18v-2H5v6H3.5v-2.5h-2V22H0v-6 h1.5v2H3.5z M10,16c0.8,0,1.5,0.7,1.5,1.5v3c0,0.8-0.7,1.5-1.5,1.5H6.5v-6H10z M10,20.5v-3H8v3H10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_6\": {\n    \"name\": \"filter_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_on\": {\n    \"name\": \"mic_external_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.22,7C9.7,6.47,10,5.77,10,5c0-1.66-1.34-3-3-3S4,3.34,4,5c0,0.77,0.3,1.47,0.78,2H9.22z\\\"></path><path d=\\\"M16,2c-2.21,0-4,1.79-4,4v12c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l1-10H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4V6c0-1.1,0.9-2,2-2 s2,0.9,2,2v16h2V6C20,3.79,18.21,2,16,2z M7.19,16H6.81l-0.6-6h1.58L7.19,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_8\": {\n    \"name\": \"filter_8\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_drama\": {\n    \"name\": \"filter_drama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_album\": {\n    \"name\": \"photo_album\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V4h5v7l2.5-1.5L16,11V4h2V20 z M13.62,13.5L17,18H7l2.38-3.17L11,17L13.62,13.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,2h-9C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-13C16,2.67,15.33,2,14.5,2z M14.5,16.5h-9v-13H9V10l2-1l2,1V3.5h1.5V16.5z\\\"></path><polygon points=\\\"9.5,14 8.12,12.17 6,15 14,15 11.38,11.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"image_not_supported\": {\n    \"name\": \"image_not_supported\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.9,21.9l-6.1-6.1l-2.69-2.69l0,0L5,5l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31 L21.9,21.9z M5,19V7.83l6.84,6.84L11,15.72L9,13l-3,4h8.17l2,2H5z M7.83,5l-2-2H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17.07,17.07L2.93,2.93L2.22,3.64L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.78,1.78L17.07,17.07z M5,15V6.41l5.41,5.41 l-1.05,1.32L8,11.33L6,14h6.59l1,1H5z M6.41,5l-1-1H15c0.55,0,1,0.45,1,1v9.59l-1-1V5H6.41z\\\"></path></g>\"\n      }\n    }\n  },\n  \"looks_6\": {\n    \"name\": \"looks_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zm8-10H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_frames\": {\n    \"name\": \"filter_frames\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_5\": {\n    \"name\": \"brightness_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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>\"\n      }\n    }\n  },\n  \"16mp\": {\n    \"name\": \"16mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M13,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,9H15v1.5h-1.5V9z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"vrpano\": {\n    \"name\": \"vrpano\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.01,4C20.45,4,17.4,5.5,12,5.5c-5.31,0-8.49-1.49-9.01-1.49C2.46,4.01,2,4.45,2,5.02V19c0,0.57,0.46,1,0.99,1 c0.57,0,3.55-1.5,9.01-1.5c5.42,0,8.44,1.5,9.01,1.5c0.53,0,0.99-0.43,0.99-1V5C22,4.43,21.54,4,21.01,4z M20,17.63 c-2.01-0.59-4.62-1.13-8-1.13c-3.39,0-5.99,0.54-8,1.13V6.38C6.58,7.11,9.32,7.5,12,7.5c3.38,0,5.99-0.54,8-1.13V17.63z\\\"></path><path d=\\\"M9.17,10.99l-3.69,4.42C7.48,15.15,9.66,15,12,15c2.3,0,4.52,0.15,6.51,0.4L14,10l-2.83,3.39L9.17,10.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"8mp\": {\n    \"name\": \"8mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,6.5H13 V8h-1.5V6.5z M11.5,9H13v1.5h-1.5V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flash_off\": {\n    \"name\": \"flash_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"animation\": {\n    \"name\": \"animation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,2c-2.71,0-5.05,1.54-6.22,3.78c-1.28,0.67-2.34,1.72-3,3C3.54,9.95,2,12.29,2,15c0,3.87,3.13,7,7,7 c2.71,0,5.05-1.54,6.22-3.78c1.28-0.67,2.34-1.72,3-3C20.46,14.05,22,11.71,22,9C22,5.13,18.87,2,15,2z M9,20c-2.76,0-5-2.24-5-5 c0-1.12,0.37-2.16,1-3c0,3.87,3.13,7,7,7C11.16,19.63,10.12,20,9,20z M12,17c-2.76,0-5-2.24-5-5c0-1.12,0.37-2.16,1-3 c0,3.86,3.13,6.99,7,7C14.16,16.63,13.12,17,12,17z M16.7,13.7C16.17,13.89,15.6,14,15,14c-2.76,0-5-2.24-5-5 c0-0.6,0.11-1.17,0.3-1.7C10.83,7.11,11.4,7,12,7c2.76,0,5,2.24,5,5C17,12.6,16.89,13.17,16.7,13.7z M19,12c0-3.86-3.13-6.99-7-7 c0.84-0.63,1.87-1,3-1c2.76,0,5,2.24,5,5C20,10.12,19.63,11.16,19,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip\": {\n    \"name\": \"flip\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_7_5\": {\n    \"name\": \"crop_7_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,5H5C3.9,5,3,5.9,3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7C21,5.9,20.1,5,19,5z M19,17H5V7h14V17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,5h-11C3.67,5,3,5.67,3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5z M15.5,13.5h-11v-7h11V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tonality\": {\n    \"name\": \"tonality\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_1\": {\n    \"name\": \"brightness_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"collections\": {\n    \"name\": \"collections\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"image_aspect_ratio\": {\n    \"name\": \"image_aspect_ratio\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"flash_auto\": {\n    \"name\": \"flash_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z\\\"></path>\"\n      }\n    }\n  },\n  \"vignette\": {\n    \"name\": \"vignette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5v14H3V5h18m0-2H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 5c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4m0-2c-4.42 0-8 2.69-8 6s3.58 6 8 6 8-2.69 8-6-3.58-6-8-6z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_vintage\": {\n    \"name\": \"filter_vintage\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zm-2.54-3.88c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 20.63c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zm6.69-4.24c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z\\\"></path>\"\n      }\n    }\n  },\n  \"nature\": {\n    \"name\": \"nature\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"thermostat_auto\": {\n    \"name\": \"thermostat_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,12V6c0-1.66-1.34-3-3-3S5,4.34,5,6v6c-1.21,0.91-2,2.37-2,4c0,1.12,0.38,2.14,1,2.97V19h0.02c0.91,1.21,2.35,2,3.98,2 s3.06-0.79,3.98-2H12v-0.03c0.62-0.83,1-1.85,1-2.97C13,14.37,12.21,12.91,11,12z M5,16c0-0.94,0.45-1.84,1.2-2.4L7,13V6 c0-0.55,0.45-1,1-1s1,0.45,1,1v7l0.8,0.6c0.75,0.57,1.2,1.46,1.2,2.4H5z M18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22 L18.62,4z M16.47,9.39l1.31-3.72h0.08l1.31,3.72H16.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"looks\": {\n    \"name\": \"looks\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_on\": {\n    \"name\": \"grid_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant\": {\n    \"name\": \"assistant\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-7-1l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"texture\": {\n    \"name\": \"texture\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z\\\"></path>\"\n      }\n    }\n  },\n  \"contrast\": {\n    \"name\": \"contrast\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,22c5.52,0,10-4.48,10-10S17.52,2,12,2S2,6.48,2,12S6.48,22,12,22z M13,4.07c3.94,0.49,7,3.85,7,7.93s-3.05,7.44-7,7.93 V4.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10.75,3.55C13.98,3.92,16.5,6.67,16.5,10 s-2.52,6.08-5.75,6.45V3.55z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flash_on\": {\n    \"name\": \"flash_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 2v11h3v9l7-12h-4l3-8z\\\"></path>\"\n      }\n    }\n  },\n  \"filter\": {\n    \"name\": \"filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"incomplete_circle\": {\n    \"name\": \"incomplete_circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera_front\": {\n    \"name\": \"photo_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z\\\"></path><circle cx=\\\"12\\\" cy=\\\"11\\\" r=\\\"2\\\"></circle><path d=\\\"M14.78,14.58C13.93,14.21,12.99,14,12,14s-1.93,0.21-2.78,0.58C8.48,14.9,8,15.62,8,16.43V17h8v-0.57 C16,15.62,15.52,14.9,14.78,14.58z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_center_focus\": {\n    \"name\": \"filter_center_focus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_front\": {\n    \"name\": \"camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_filter\": {\n    \"name\": \"photo_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_2\": {\n    \"name\": \"exposure_plus_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_photosphere\": {\n    \"name\": \"panorama_photosphere\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M21,9.91C21,9.91,21,9.91,21,9.91l0,4.19C18.81,15.31,15.53,16,12,16c-3.53,0-6.81-0.7-9-1.91 c0,0,0,0,0,0l0-4.18C5.2,8.69,8.47,8,12,8C15.53,8,18.81,8.7,21,9.91z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6 C9.85,6,7.83,6.25,6.05,6.68C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18 s4.17-0.25,5.95-0.68C16.49,18.96,14.37,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edit\": {\n    \"name\": \"edit\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_1\": {\n    \"name\": \"exposure_plus_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"circle\": {\n    \"name\": \"circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.47,2,2,6.47,2,12c0,5.53,4.47,10,10,10s10-4.47,10-10C22,6.47,17.53,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"9mp\": {\n    \"name\": \"9mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C14.05,11.5,14.5,11.05,14.5,10.5z M13,8h-1.5V6.5H13V8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"movie_creation\": {\n    \"name\": \"movie_creation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z\\\"></path>\"\n      }\n    }\n  },\n  \"leak_remove\": {\n    \"name\": \"leak_remove\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"10mp\": {\n    \"name\": \"10mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,7H15 v3h-1.5V7z\\\"></path></g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path></g><g><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon></g><g><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"hdr_on\": {\n    \"name\": \"hdr_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"gradient\": {\n    \"name\": \"gradient\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_high\": {\n    \"name\": \"auto_fix_high\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><polygon points=\\\"8.5,7 9.44,4.94 11.5,4 9.44,3.06 8.5,1 7.56,3.06 5.5,4 7.56,4.94\\\"></polygon><polygon points=\\\"20,12.5 19.06,14.56 17,15.5 19.06,16.44 20,18.5 20.94,16.44 23,15.5 20.94,14.56\\\"></polygon><path d=\\\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.17,8.42l1.41,1.41 L14.41,11L13,9.59L14.17,8.42z M5.83,19.59l-1.41-1.41L11.59,11L13,12.41L5.83,19.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cases\": {\n    \"name\": \"cases\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,9H1v11c0,1.11,0.89,2,2,2h17v-2H3V9z\\\"></path><path d=\\\"M18,5V3c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v2H5v11c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5H18z M12,3h4v2h-4V3z M21,16H7 V7h14V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"auto_stories\": {\n    \"name\": \"auto_stories\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M22.47,5.2C22,4.96,21.51,4.76,21,4.59v12.03C19.86,16.21,18.69,16,17.5,16c-1.9,0-3.78,0.54-5.5,1.58V5.48 C10.38,4.55,8.51,4,6.5,4C4.71,4,3.02,4.44,1.53,5.2C1.2,5.36,1,5.71,1,6.08v12.08c0,0.58,0.47,0.99,1,0.99 c0.16,0,0.32-0.04,0.48-0.12C3.69,18.4,5.05,18,6.5,18c2.07,0,3.98,0.82,5.5,2c1.52-1.18,3.43-2,5.5-2c1.45,0,2.81,0.4,4.02,1.04 c0.16,0.08,0.32,0.12,0.48,0.12c0.52,0,1-0.41,1-0.99V6.08C23,5.71,22.8,5.36,22.47,5.2z M10,16.62C8.86,16.21,7.69,16,6.5,16 c-1.19,0-2.36,0.21-3.5,0.62V6.71C4.11,6.24,5.28,6,6.5,6C7.7,6,8.89,6.25,10,6.72V16.62z M19,0.5l-5,5V15l5-4.5V0.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_a_photo\": {\n    \"name\": \"add_a_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6h-3.17L16 4h-6v2h5.12l1.83 2H21v12H5v-9H3v9c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 6h3V4H5V1H3v3H0v2h3v3h2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_on\": {\n    \"name\": \"blur_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"compare\": {\n    \"name\": \"compare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_1\": {\n    \"name\": \"exposure_neg_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_off\": {\n    \"name\": \"mic_external_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,5c0-1.66-1.34-3-3-3C6.38,2,5.81,2.19,5.33,2.5l4.15,4.15C9.8,6.18,10,5.61,10,5z\\\"></path><path d=\\\"M14,6c0-1.1,0.9-2,2-2s2,0.9,2,2v9.17l2,2V6c0-2.21-1.79-4-4-4s-4,1.79-4,4v3.17l2,2V6z\\\"></path><path d=\\\"M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4v-1.17l6.49,6.49l1.41-1.41L2.1,2.1z M7.19,16H6.81 l-0.6-6h0.96l0.56,0.56L7.19,16z M12,18c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l0.56-5.61L12,14.83V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transform\": {\n    \"name\": \"transform\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_back\": {\n    \"name\": \"video_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,18 H4V6h12V18z M11.62,11.5L9,15l-1.62-2.17L5,16h10L11.62,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"adjust\": {\n    \"name\": \"adjust\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"tune\": {\n    \"name\": \"tune\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_before\": {\n    \"name\": \"navigate_before\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_cw\": {\n    \"name\": \"rotate_90_degrees_cw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,13c0,4.97,4.03,9,9,9c1.76,0,3.4-0.51,4.79-1.38l-1.46-1.46C13.34,19.69,12.2,20,11,20c-3.86,0-7-3.14-7-7s3.14-7,7-7 h0.17L9.59,7.59L11,9l4-4l-4-4L9.58,2.41L11.17,4H11C6.03,4,2,8.03,2,13z M11,13l6,6l6-6l-6-6L11,13z M17,16.17L13.83,13L17,9.83 L20.17,13L17,16.17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M9,11l5,5l5-5l-5-5L9,11z M14,13.88L11.12,11L14,8.12L16.88,11L14,13.88z\\\"></path><path d=\\\"M2,11c0,3.87,3.13,7,7,7c1.43,0,2.76-0.43,3.86-1.17l-1.09-1.09C10.96,16.22,10.01,16.5,9,16.5c-3.03,0-5.5-2.47-5.5-5.5 c0-3.02,2.46-5.56,5.62-5.49l0,0L7.94,6.69L9,7.75l3-3l-3.01-3L7.93,2.81l1.2,1.2C5.16,3.93,2,7.12,2,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"autofps_select\": {\n    \"name\": \"autofps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12.03,6.3 11.97,6.3 10.95,9.19 13.05,9.19\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"17\\\"></rect><path d=\\\"M12,15c3.31,0,6-2.69,6-6s-2.69-6-6-6S6,5.69,6,9S8.69,15,12,15z M11.37,5h1.25l2.63,7h-1.21l-0.63-1.79h-2.83L9.96,12 H8.74L11.37,5z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"17\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wb_iridescent\": {\n    \"name\": \"wb_iridescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm9.46 4.01L19.04 3.6l-1.79 1.79 1.41 1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM4.96 3.595l1.788 1.79L5.34 6.79 3.553 5.003zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_front\": {\n    \"name\": \"video_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,9.69V18H4V6h12V9.69z\\\"></path><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"2\\\"></circle><path d=\\\"M14,15.43c0-0.81-0.48-1.53-1.22-1.85C11.93,13.21,10.99,13,10,13c-0.99,0-1.93,0.21-2.78,0.58C6.48,13.9,6,14.62,6,15.43 V16h8V15.43z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"panorama_fish_eye\": {\n    \"name\": \"panorama_fish_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off\": {\n    \"name\": \"hdr_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_awesome_mosaic\": {\n    \"name\": \"auto_awesome_mosaic\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,5v14c0,1.1,0.89,2,2,2h6V3H5C3.89,3,3,3.9,3,5z M9,19H5V5h4V19z\\\"></path><path d=\\\"M19,3h-6v8h8V5C21,3.9,20.1,3,19,3z M19,9h-4V5h4V9z\\\"></path><path d=\\\"M13,21h6c1.1,0,2-0.9,2-2v-6h-8V21z M15,15h4v4h-4V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rotate_right\": {\n    \"name\": \"rotate_right\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_tilt_shift\": {\n    \"name\": \"filter_tilt_shift\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"music_off\": {\n    \"name\": \"music_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_off\": {\n    \"name\": \"auto_fix_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><path d=\\\"M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17-2.17c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83C14.68,6.1,14.43,6,14.17,6 c-0.26,0-0.51,0.1-0.71,0.29l-2.17,2.17l1.41,1.41L14.17,8.42z\\\"></path><path d=\\\"M1.39,4.22l7.07,7.07l-6.17,6.17c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29 l6.17-6.17l7.07,7.07l1.41-1.41L2.81,2.81L1.39,4.22z M11.29,14.12l-5.46,5.46l-1.41-1.41l5.46-5.46L11.29,14.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_rupee\": {\n    \"name\": \"currency_rupee\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.66,7C13.1,5.82,11.9,5,10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58,0.84,1.26,1.05,2L18,7v2l-2.02,0c-0.25,2.8-2.61,5-5.48,5 H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0,3.22-1.3,3.46-3L6,9V7L13.66,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M11.4,17h2.11l-5.4-5.5h0.65c2.26,0,4.11-1.77,4.24-4l1.51,0l0-1.5l-1.69,0c-0.17-0.56-0.46-1.07-0.82-1.5l2.51,0l0-1.5 l-9,0v1.5l3.25,0c1.07,0,1.99,0.61,2.45,1.5L5.5,6v1.5l5.99,0c-0.13,1.4-1.3,2.5-2.74,2.5L6,10v1.5L11.4,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"crop\": {\n    \"name\": \"crop\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"14mp\": {\n    \"name\": \"14mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><polygon points=\\\"15,11.5 16.5,11.5 16.5,10 17.5,10 17.5,8.5 16.5,8.5 16.5,5.5 15,5.5 15,8.5 13.5,8.5 13.5,5.5 12,5.5 12,10 15,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"22mp\": {\n    \"name\": \"22mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path><path d=\\\"M17.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H13V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"straighten\": {\n    \"name\": \"straighten\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_incandescent\": {\n    \"name\": \"wb_incandescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm12-6.95v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.42.77-2.74 2-3.46l1-.58V4.05h2m2-2H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19V2.05zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_roll\": {\n    \"name\": \"camera_roll\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_photo\": {\n    \"name\": \"assistant_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.36 6l.08.39.32 1.61H18v6h-3.36l-.08-.39-.32-1.61H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_pause\": {\n    \"name\": \"motion_photos_pause\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M11,15H9V9h2V15z M15,15h-2V9h2V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M9.25,12.5h-1.5v-5h1.5V12.5z M12.25,12.5 h-1.5v-5h1.5V12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_circular\": {\n    \"name\": \"blur_circular\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"face_retouching_natural\": {\n    \"name\": \"face_retouching_natural\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.89,10.75C19.96,11.16,20,11.57,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c2.6-0.98,4.69-2.99,5.74-5.55c3.38,4.14,7.97,3.73,8.99,3.61l-0.89-1.93c-0.13,0.01-4.62,0.38-7.18-3.86 c1.01-0.16,1.71-0.15,2.59-0.01c2.52-1.15,1.93-0.89,2.76-1.26C14.78,2.3,13.43,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10 s10-4.48,10-10c0-1.43-0.3-2.78-0.84-4.01L19.89,10.75z M8.08,5.03C7.45,6.92,6.13,8.5,4.42,9.47C5.05,7.58,6.37,6,8.08,5.03z\\\"></path><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><polygon points=\\\"23,4.5 20.6,3.4 19.5,1 18.4,3.4 16,4.5 18.4,5.6 19.5,8 20.6,5.6\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"camera_rear\": {\n    \"name\": \"camera_rear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"deblur\": {\n    \"name\": \"deblur\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"10\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"14\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"21\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M12,3v2c3.86,0,7,3.14,7,7s-3.14,7-7,7v2c4.96,0,9-4.04,9-9S16.96,3,12,3z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><circle cx=\\\"5.5\\\" cy=\\\"11.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"11.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"17\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"8.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><path d=\\\"M10,3v1.5c3.03,0,5.5,2.47,5.5,5.5s-2.47,5.5-5.5,5.5V17c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"face_retouching_off\": {\n    \"name\": \"face_retouching_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49 C21.53,15.44,22,13.78,22,12c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z M10.66,4.12C11.09,4.05,11.54,4,12,4c2.9,0,5.44,1.56,6.84,3.88C18.41,7.95,17.96,8,17.5,8C14.6,8,12.06,6.44,10.66,4.12z\\\"></path><path d=\\\"M1.89,3.72l2.19,2.19C2.78,7.6,2,9.71,2,12c0,5.52,4.48,10,10,10c2.29,0,4.4-0.78,6.09-2.08l2.19,2.19l1.41-1.41 L3.31,2.31L1.89,3.72z M16.66,18.49C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z M6.23,8.06C5.7,8.61,5.09,9.09,4.42,9.47C4.68,8.7,5.05,7.99,5.51,7.34L6.23,8.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_yen\": {\n    \"name\": \"currency_yen\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.92,11 18,11 18,13 13,13 13,15 18,15 18,17 13,17 13,21 11,21 11,17 6,17 6,15 11,15 11,13 6,13 6,11 10.08,11 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"11.29,9.5 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 8.71,9.5 5.5,9.5 5.5,11 9.25,11 9.25,12.5 5.5,12.5 5.5,14 9.25,14 9.25,17 10.75,17 10.75,14 14.5,14 14.5,12.5 10.75,12.5 10.75,11 14.5,11 14.5,9.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_7\": {\n    \"name\": \"filter_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_2\": {\n    \"name\": \"brightness_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12s-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4m0-2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_square\": {\n    \"name\": \"crop_square\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_left\": {\n    \"name\": \"rotate_left\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_paused\": {\n    \"name\": \"motion_photos_paused\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"photo_camera_back\": {\n    \"name\": \"photo_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z\\\"></path><polygon points=\\\"11.25,16 9,13 6,17 18,17 14.25,12\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"hevc\": {\n    \"name\": \"hevc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"5.5,11 4.5,11 4.5,9 3,9 3,15 4.5,15 4.5,12.5 5.5,12.5 5.5,15 7,15 7,9 5.5,9\\\"></polygon><path d=\\\"M21,11v-1c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-1v-3h1V11H21z\\\"></path><polygon points=\\\"14.25,13.5 13.5,9 12,9 13,15 15.5,15 16.5,9 15,9\\\"></polygon><polygon points=\\\"8,9 8,15 11.5,15 11.5,13.5 9.5,13.5 9.5,12.5 11.5,12.5 11.5,11 9.5,11 9.5,10.5 11.5,10.5 11.5,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lens\": {\n    \"name\": \"lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_off\": {\n    \"name\": \"blur_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"18\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><path d=\\\"M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z\\\"></path>\"\n      }\n    }\n  },\n  \"broken_image\": {\n    \"name\": \"broken_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"color_lens\": {\n    \"name\": \"color_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"17.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"movie_filter\": {\n    \"name\": \"movie_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_plus\": {\n    \"name\": \"hdr_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.13,19c1.15,0.64,2.47,1,3.87,1c4.41,0,8-3.59,8-8s-3.59-8-8-8s-8,3.59-8,8c0,2.52,1.17,4.77,3,6.24V13h3.5 c0.8,0,1.5,0.7,1.5,1.5v1c0,0.6-0.4,1.1-0.9,1.4L12,19h-1.5l-0.9-2H8.5v2H8.13z M12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10 S2,17.52,2,12S6.48,2,12,2z M17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16z M10.5,15.5v-1h-2v1H10.5z M10.5,8V6H12v6 h-1.5V9.5h-2V12H7V6h1.5v2H10.5z M16,6c0.8,0,1.5,0.7,1.5,1.5v3c0,0.8-0.7,1.5-1.5,1.5h-3V6H16z M16,10.5v-3h-1.5v3H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_photo_alternate\": {\n    \"name\": \"add_photo_alternate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 20H4V6h9V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2v9zm-7.79-3.17l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 4V1h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V6h3V4h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"shutter_speed\": {\n    \"name\": \"shutter_speed\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_off\": {\n    \"name\": \"timer_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"1\\\"></rect><path d=\\\"M12,6c3.87,0,7,3.13,7,7c0,0.94-0.19,1.83-0.52,2.65l1.5,1.5C20.63,15.91,21,14.5,21,13c0-2.12-0.74-4.07-1.97-5.61 l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42C16.07,4.74,14.12,4,12,4c-1.5,0-2.91,0.37-4.15,1.02l1.5,1.5 C10.17,6.19,11.06,6,12,6z\\\"></path><polygon points=\\\"11,8.17 13,10.17 13,8 11,8\\\"></polygon><path d=\\\"M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12,3,10.98,3,13c0,4.97,4.02,9,9,9c2.02,0,3.88-0.67,5.38-1.79l2.4,2.4l1.41-1.41 L2.81,2.81z M12,20c-3.87,0-7-3.13-7-7c0-1.47,0.45-2.83,1.22-3.95l9.73,9.73C14.83,19.55,13.47,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,5.5c3.03,0,5.5,2.47,5.5,5.5c0,0.71-0.14,1.38-0.38,2l1.13,1.13c0.47-0.94,0.75-2,0.75-3.13 c0-1.66-0.58-3.19-1.55-4.39l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4C8.87,4,7.81,4.27,6.87,4.75L8,5.88 C8.62,5.64,9.29,5.5,10,5.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><polygon points=\\\"9.25,7 9.25,7.13 10.75,8.63 10.75,7\\\"></polygon><path d=\\\"M1.87,3.99l2.66,2.66C3.57,7.84,3,9.35,3,11c0,3.87,3.13,7,7,7c1.65,0,3.16-0.57,4.35-1.52l1.66,1.66l1.06-1.06L2.93,2.93 L1.87,3.99z M13.28,15.4c-0.92,0.69-2.05,1.1-3.28,1.1c-3.03,0-5.5-2.47-5.5-5.5c0-1.23,0.41-2.36,1.1-3.28L13.28,15.4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"iso\": {\n    \"name\": \"iso\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_zero\": {\n    \"name\": \"exposure_zero\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_4\": {\n    \"name\": \"brightness_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_ccw\": {\n    \"name\": \"rotate_90_degrees_ccw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z\\\"></path>\"\n      }\n    }\n  },\n  \"collections_bookmark\": {\n    \"name\": \"collections_bookmark\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 2v5l-1-.75L15 9V4h2zm3 12H8V4h5v9l3-2.25L19 13V4h1v12z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_4\": {\n    \"name\": \"looks_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.04 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z\\\"></path>\"\n      }\n    }\n  },\n  \"control_point_duplicate\": {\n    \"name\": \"control_point_duplicate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_3\": {\n    \"name\": \"looks_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_horizontal\": {\n    \"name\": \"panorama_horizontal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_normal\": {\n    \"name\": \"auto_fix_normal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><path d=\\\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.17,8.42l1.41,1.41 L14.41,11L13,9.59L14.17,8.42z M5.83,19.59l-1.41-1.41L11.59,11L13,12.41L5.83,19.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"palette\": {\n    \"name\": \"palette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M12,22C6.49,22,2,17.51,2,12S6.49,2,12,2s10,4.04,10,9c0,3.31-2.69,6-6,6h-1.77c-0.28,0-0.5,0.22-0.5,0.5 c0,0.12,0.05,0.23,0.13,0.33c0.41,0.47,0.64,1.06,0.64,1.67C14.5,20.88,13.38,22,12,22z M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8 c0.28,0,0.5-0.22,0.5-0.5c0-0.16-0.08-0.28-0.14-0.35c-0.41-0.46-0.63-1.05-0.63-1.65c0-1.38,1.12-2.5,2.5-2.5H16 c2.21,0,4-1.79,4-4C20,7.14,16.41,4,12,4z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"17.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.41,0-8,3.59-8,8s3.59,8,8,8c1.1,0,2-0.9,2-2c0-0.49-0.18-0.96-0.51-1.34c-0.24-0.3-0.02-0.66,0.3-0.66h1.42 c2.65,0,4.8-2.15,4.8-4.8C18,5.23,14.41,2,10,2z M13.2,12.5h-1.42c-1.05,0-1.9,0.85-1.9,1.9c0,0.47,0.19,0.92,0.47,1.25 c0.34,0.39,0.02,0.85-0.36,0.85c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5s6.5,2.56,6.5,5.7C16.5,11.02,15.02,12.5,13.2,12.5z\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"9.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12\\\" cy=\\\"6.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"9.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"8\\\" cy=\\\"6.5\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"filter_hdr\": {\n    \"name\": \"filter_hdr\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\\\"></path>\"\n      }\n    }\n  },\n  \"timer\": {\n    \"name\": \"timer\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15,1H9v2h6V1z M11,14h2V8h-2V14z M19.03,7.39l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42 C16.07,4.74,14.12,4,12,4c-4.97,0-9,4.03-9,9s4.02,9,9,9s9-4.03,9-9C21,10.88,20.26,8.93,19.03,7.39z M12,20c-3.87,0-7-3.13-7-7 s3.13-7,7-7s7,3.13,7,7S15.87,20,12,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.45,6.61l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4c-3.87,0-7,3.13-7,7s3.13,7,7,7c3.87,0,7-3.13,7-7 C17,9.34,16.42,7.81,15.45,6.61z M10,16.5c-3.03,0-5.5-2.47-5.5-5.5S6.97,5.5,10,5.5s5.5,2.47,5.5,5.5S13.03,16.5,10,16.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><rect height=\\\"5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"switch_camera\": {\n    \"name\": \"switch_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM9.88 4h4.24l1.83 2H20v12H4V6h4.05\\\"></path><path d=\\\"M15 11H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy\": {\n    \"name\": \"view_comfy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,4v16h20V4H2z M4,6h16v5H4V6z M4,18v-5h4v5H4z M10,18v-5h10v5H10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,4v12h16V4H2z M16.5,5.5v3.75h-13V5.5H16.5z M3.5,10.75H7v3.75H3.5V10.75z M8.5,14.5v-3.75h8v3.75H8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"audiotrack\": {\n    \"name\": \"audiotrack\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6zm-2 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"linked_camera\": {\n    \"name\": \"linked_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 9v11H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2zm.67-1.01H22C21.99 4.68 19.31 2 16 2v1.33c2.58 0 4.66 2.08 4.67 4.66zm-2.67 0h1.33c-.01-1.84-1.49-3.32-3.33-3.32V6c1.11 0 1.99.89 2 1.99zM7 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.34 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"tag_faces\": {\n    \"name\": \"tag_faces\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_yuan\": {\n    \"name\": \"currency_yuan\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.28,12 18,12 18,14 13,14 13,21 11,21 11,14 6,14 6,12 10.72,12 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"10.97,10 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 9.03,10 5.5,10 5.5,11.5 9.25,11.5 9.25,17 10.75,17 10.75,11.5 14.5,11.5 14.5,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"receipt_long\": {\n    \"name\": \"receipt_long\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><g><path d=\\\"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"10\\\"></rect></g>\"\n      }\n    }\n  },\n  \"20mp\": {\n    \"name\": \"20mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H14c-0.55,0-1,0.45-1,1v4C13,11.05,13.45,11.5,14,11.5z M14.5,7H16v3 h-1.5V7z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"21mp\": {\n    \"name\": \"21mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\\\"></polygon><path d=\\\"M12,10H9V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H7.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H12V10z\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M15,17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5v6H15V17z M15,14h1.5v1.5H15V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"euro\": {\n    \"name\": \"euro\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><path d=\\\"M12,15c-1.63,0-3.06-0.79-3.98-2H12l1-2H7.1C7.04,10.68,7,10.34,7,10s0.04-0.68,0.1-1H12l1-2H8.02C8.94,5.79,10.37,5,12,5 c1.38,0,2.63,0.56,3.54,1.46l1.41-1.41C15.68,3.78,13.93,3,12,3C9.21,3,6.81,4.64,5.68,7H3L2,9h3.08C5.03,9.33,5,9.66,5,10 s0.03,0.67,0.08,1H3l-1,2h3.68c1.12,2.36,3.53,4,6.32,4c1.93,0,3.68-0.78,4.95-2.05l-1.41-1.41C14.63,14.44,13.38,15,12,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"17mp\": {\n    \"name\": \"17mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M13.25,11.5H15l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H12V7h2.62L13.25,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"panorama_vertical\": {\n    \"name\": \"panorama_vertical\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z\\\"></path>\"\n      }\n    }\n  },\n  \"landscape\": {\n    \"name\": \"landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-4.22 5.63 1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6zM5 16l1.52-2.03L8.04 16H5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_portrait\": {\n    \"name\": \"crop_portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_franc\": {\n    \"name\": \"currency_franc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"18,5 18,3 7,3 7,16 5,16 5,18 7,18 7,21 9,21 9,18 13,18 13,16 9,16 9,13 17,13 17,11 9,11 9,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><polygon points=\\\"14.5,4.5 14.5,3 6,3 6,13 4.5,13 4.5,14.5 6,14.5 6,17 7.5,17 7.5,14.5 11,14.5 11,13 7.5,13 7.5,10.5 14,10.5 14,9 7.5,9 7.5,4.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_1\": {\n    \"name\": \"filter_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_4\": {\n    \"name\": \"filter_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"brush\": {\n    \"name\": \"brush\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 16c.55 0 1 .45 1 1 0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95 0-.55.45-1 1-1M18.67 3c-.26 0-.51.1-.71.29L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29zM7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"30fps_select\": {\n    \"name\": \"30fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0,2-0.9,2-2v-1.5C11,9.67,10.83,9,10,9c0.83,0,1-0.67,1-1.5V6c0-1.1-0.9-2-2-2H4z M18,4 c1.1,0,2,0.9,2,2v6c0,1.1-0.9,2-2,2h-3c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H18z M18,6h-3v6h3V6z M5,22H3v-5h2V22z M9,22H7v-5h2V22 z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"details\": {\n    \"name\": \"details\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\\\"></path>\"\n      }\n    }\n  },\n  \"6mp\": {\n    \"name\": \"6mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,9H13v1.5h-1.5V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_alt\": {\n    \"name\": \"camera_alt\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"2mp\": {\n    \"name\": \"2mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H10V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nature_people\": {\n    \"name\": \"nature_people\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3\": {\n    \"name\": \"timer_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z\\\"></path>\"\n      }\n    }\n  },\n  \"style\": {\n    \"name\": \"style\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z\\\"></path><circle cx=\\\"11\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle><path d=\\\"M5.88 19.75c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z\\\"></path>\"\n      }\n    }\n  },\n  \"7mp\": {\n    \"name\": \"7mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11.25,11.5H13l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H10V7h2.62L11.25,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"motion_photos_on\": {\n    \"name\": \"motion_photos_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_strong\": {\n    \"name\": \"hdr_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 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>\"\n      }\n    }\n  },\n  \"auto_awesome\": {\n    \"name\": \"auto_awesome\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"19,9 20.25,6.25 23,5 20.25,3.75 19,1 17.75,3.75 15,5 17.75,6.25\\\"></polygon><polygon points=\\\"19,15 17.75,17.75 15,19 17.75,20.25 19,23 20.25,20.25 23,19 20.25,17.75\\\"></polygon><path d=\\\"M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5-5.5L17,12L11.5,9.5z M9.99,12.99L9,15.17l-0.99-2.18L5.83,12l2.18-0.99 L9,8.83l0.99,2.18L12.17,12L9.99,12.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_rotate\": {\n    \"name\": \"crop_rotate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_sunny\": {\n    \"name\": \"wb_sunny\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm8.04 2.495l1.408 1.407-1.79 1.79-1.407-1.408zm-1.8 15.115l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_large\": {\n    \"name\": \"photo_size_select_large\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_b_and_w\": {\n    \"name\": \"filter_b_and_w\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z\\\"></path>\"\n      }\n    }\n  },\n  \"loupe\": {\n    \"name\": \"loupe\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"image\": {\n    \"name\": \"image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_2\": {\n    \"name\": \"filter_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"19mp\": {\n    \"name\": \"19mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C16.05,11.5,16.5,11.05,16.5,10.5z M15,8h-1.5V6.5H15V8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"leak_add\": {\n    \"name\": \"leak_add\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"23mp\": {\n    \"name\": \"23mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path><path d=\\\"M17.5,10.5v-4c0-0.55-0.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5C17.05,11.5,17.5,11.05,17.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"looks_two\": {\n    \"name\": \"looks_two\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"dehaze\": {\n    \"name\": \"dehaze\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"camera\": {\n    \"name\": \"camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.25 2.26l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-4.75-3.31-8.72-7.75-9.74zM19.41 9h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM13.1 4.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4c.37 0 .74.03 1.1.08zM5.7 7.09L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12c0-1.85.64-3.55 1.7-4.91zM4.59 15h7.98l-2.71 4.7c-2.4-.67-4.34-2.42-5.27-4.7zm6.31 4.91L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20c-.38 0-.74-.04-1.1-.09zm7.4-3l-4-6.91h5.43c.17.64.27 1.31.27 2 0 1.85-.64 3.55-1.7 4.91z\\\"></path>\"\n      }\n    }\n  },\n  \"18mp\": {\n    \"name\": \"18mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,6.5H15 V8h-1.5V6.5z M13.5,9H15v1.5h-1.5V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"5mp\": {\n    \"name\": \"5mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"picture_as_pdf\": {\n    \"name\": \"picture_as_pdf\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm12 6V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z\\\"></path>\"\n      }\n    }\n  },\n  \"view_compact\": {\n    \"name\": \"view_compact\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,4v16h20V4H2z M6.5,18H4v-2.5h2.5V18z M6.5,13.25H4v-2.5h2.5V13.25z M6.5,8.5H4V6h2.5V8.5z M11,18H8.5v-2.5H11V18z M11,13.25H8.5v-2.5H11V13.25z M11,8.5H8.5V6H11V8.5z M15.5,18H13v-2.5h2.5V18z M15.5,13.25H13v-2.5h2.5V13.25z M15.5,8.5H13V6 h2.5V8.5z M20,18h-2.5v-2.5H20V18z M20,13.25h-2.5v-2.5H20V13.25z M20,8.5h-2.5V6H20V8.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,4v12h15.5V4H2z M16,7.5h-2v-2h2V7.5z M7,9h2v2H7V9z M5.5,11h-2V9h2V11z M9,7.5H7v-2h2V7.5z M10.5,5.5h2v2h-2V5.5z M9,12.5v2H7v-2H9z M10.5,12.5h2v2h-2V12.5z M10.5,11V9h2v2H10.5z M14,9h2v2h-2V9z M5.5,5.5v2h-2v-2H5.5z M3.5,12.5h2v2h-2V12.5z M14,14.5v-2h2v2H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bedtime\": {\n    \"name\": \"bedtime\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.27 4.49c-1.63 7.54 3.75 12.41 7.66 13.8C15.54 19.38 13.81 20 12 20c-4.41 0-8-3.59-8-8 0-3.45 2.2-6.4 5.27-7.51m2.72-2.48C6.4 2.01 2 6.54 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.97h-.35z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.28 2H10c-4.47 0-8 3.62-8 8 0 4.42 3.58 8 8 8 2.97 0 5.55-1.62 6.93-4.02-6.01-.2-9.67-6.74-6.65-11.98zM10 16.5c-3.59 0-6.5-2.92-6.5-6.5 0-2.87 1.87-5.31 4.45-6.17-.54 2.26-.22 4.66.95 6.77 1.18 2.12 3.05 3.65 5.25 4.39-1.15.96-2.61 1.51-4.15 1.51z\\\"></path></g>\"\n      }\n    }\n  },\n  \"music_note\": {\n    \"name\": \"music_note\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_off\": {\n    \"name\": \"grid_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_weak\": {\n    \"name\": \"center_focus_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 3c-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 2zm7-11h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"colorize\": {\n    \"name\": \"colorize\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.66 5.41l.92.92-2.69 2.69-.92-.92 2.69-2.69M17.67 3c-.26 0-.51.1-.71.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42l-2.34-2.34c-.2-.19-.45-.29-.7-.29zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_6\": {\n    \"name\": \"brightness_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_3\": {\n    \"name\": \"brightness_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.7 4.91C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_vertical_select\": {\n    \"name\": \"panorama_vertical_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.5,12c0-3.89,0.84-6.95,1.43-8.69C20.15,2.67,19.67,2,18.98,2L5,2C4.32,2,3.84,2.66,4.05,3.31C4.74,5.36,5.5,8.1,5.5,12 c0,3.87-0.76,6.66-1.45,8.69C3.84,21.34,4.32,22,5,22h14c0.68,0,1.17-0.66,0.95-1.31C19.27,18.66,18.5,15.86,18.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_photosphere_select\": {\n    \"name\": \"panorama_photosphere_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68 C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68 C16.49,18.96,14.37,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_ruble\": {\n    \"name\": \"currency_ruble\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0,5.5-2.46,5.5-5.5C19,5.46,16.54,3,13.5,3z M13.5,12H9V5h4.5 C15.43,5,17,6.57,17,8.5S15.43,12,13.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M11.25,3H6v7H4.5v1.5H6V13H4.5v1.5H6V17h1.5v-2.5H11V13H7.5v-1.5h3.75c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mp\": {\n    \"name\": \"mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,9h-3.5v6H15v-1.5h2c0.55,0,1-0.45,1-1V10C18,9.45,17.55,9,17,9z M16.5,12H15v-1.5h1.5V12z\\\"></path><path d=\\\"M11.5,9H7c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5C12.5,9.45,12.05,9,11.5,9z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5V19c0,1.1,0.9,2,2,2H19c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19L5,5h14l0,14L5,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bedtime_off\": {\n    \"name\": \"bedtime_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.27 4.49c-.13.59-.2 1.15-.24 1.71l2.05 2.05c-.27-2.05.1-4.22 1.26-6.23-.12 0-.23-.01-.35-.01-2.05 0-3.93.61-5.5 1.65l1.46 1.46c.42-.24.86-.46 1.32-.63zm-7.88-.27 2.27 2.27C2.61 8.07 2 9.97 2 12c0 5.52 4.48 10 10 10 2.04 0 3.92-.63 5.5-1.67l2.28 2.28 1.41-1.41L2.81 2.81 1.39 4.22zm3.74 3.74 10.92 10.92C14.84 19.6 13.45 20 12 20c-4.41 0-8-3.59-8-8 0-1.48.42-2.85 1.13-4.04z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.95 3.83c-.14.58-.22 1.17-.24 1.76L9.3 7.18c-.26-1.7.01-3.5.98-5.18H10c-1.68 0-3.23.51-4.5 1.38l1.1 1.1c.43-.26.87-.49 1.35-.65zm-5.02-.9L1.87 3.99 3.38 5.5C2.51 6.79 2 8.34 2 10c0 4.42 3.58 8 8 8 1.67 0 3.2-.52 4.48-1.39l1.53 1.53 1.06-1.06L2.93 2.93zM10 16.5c-3.59 0-6.5-2.92-6.5-6.5 0-1.25.37-2.4.98-3.39l8.92 8.92c-1.01.61-2.18.97-3.4.97z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"photo_library\": {\n    \"name\": \"photo_library\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4v12H8V4h12m0-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 9.67l1.69 2.26 2.48-3.1L19 15H9zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"reply_all\": {\n    \"name\": \"reply_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread\": {\n    \"name\": \"markunread\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"mail\": {\n    \"name\": \"mail\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"biotech\": {\n    \"name\": \"biotech\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M6,15c-0.55,0-1,0.45-1,1h10c0-0.55-0.45-1-1-1h-4v-2h3c0.55,0,1-0.45,1-1H8.47v0C7.11,11.98,6,10.87,6,9.5 c0-0.93,0.51-1.73,1.26-2.16C7.53,7.74,7.98,8,8.5,8c0.24,0,0.47-0.06,0.67-0.16l0.59,1.62l0.94-0.34l0.32,0.88l0.94-0.34 l-0.32-0.88l0.94-0.34l-1.84-5.06L9.8,3.71L9.47,2.83L8.53,3.17l0.32,0.88L7.92,4.39l0.24,0.65c-0.61,0.15-1.07,0.66-1.14,1.3 C5.83,6.9,5,8.1,5,9.5c0,1.76,1.31,3.2,3,3.45V15H6z M10.14,4.65l1.16,3.18l-0.94,0.34L9.2,4.99L10.14,4.65z M8.5,6 C8.78,6,9,6.22,9,6.5S8.78,7,8.5,7S8,6.78,8,6.5S8.22,6,8.5,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"weekend\": {\n    \"name\": \"weekend\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"attribution\": {\n    \"name\": \"attribution\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"stacked_bar_chart\": {\n    \"name\": \"stacked_bar_chart\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"10\\\"></rect><rect height=\\\"5\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"15\\\"></rect><rect height=\\\"8\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"12\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"12\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"8\\\"></rect><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"insights\": {\n    \"name\": \"insights\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z\\\"></path><polygon points=\\\"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93\\\"></polygon><polygon points=\\\"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"12.5,8 13.29,6.28 15,5.5 13.29,4.72 12.5,3 11.74,4.72 10,5.5 11.74,6.28\\\"></polygon><polygon points=\\\"4,10 4.4,8.4 6,8 4.4,7.6 4,6 3.6,7.6 2,8 3.6,8.4\\\"></polygon><path d=\\\"M16.5,6c-1.07,0-1.84,1.12-1.35,2.14l-3.01,3.01c-0.52-0.25-0.99-0.14-1.29,0l-1.01-1.01C9.94,9.95,10,9.73,10,9.5 C10,8.67,9.33,8,8.5,8S7,8.67,7,9.5c0,0.23,0.06,0.45,0.15,0.64l-3.01,3.01C3.95,13.06,3.73,13,3.5,13C2.67,13,2,13.67,2,14.5 S2.67,16,3.5,16S5,15.33,5,14.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01c0.52,0.25,0.99,0.14,1.29,0l1.01,1.01 C10.06,12.05,10,12.27,10,12.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01 C16.89,9.35,18,8.56,18,7.5C18,6.67,17.33,6,16.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upcoming\": {\n    \"name\": \"upcoming\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.6,10.81L16.19,9.4l3.56-3.55l1.41,1.41C21.05,7.29,17.6,10.81,17.6,10.81z M13,3h-2v5h2V3z M6.4,10.81L7.81,9.4 L4.26,5.84L2.84,7.26C2.95,7.29,6.4,10.81,6.4,10.81z M20,14h-3.42c-0.77,1.76-2.54,3-4.58,3s-3.81-1.24-4.58-3H4v5h16V14 M20,12 c1.1,0,2,0.9,2,2v5c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2v-5c0-1.1,0.9-2,2-2h5c0,1.66,1.34,3,3,3s3-1.34,3-3H20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"link_off\": {\n    \"name\": \"link_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z\\\"></path>\"\n      }\n    }\n  },\n  \"font_download\": {\n    \"name\": \"font_download\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_search\": {\n    \"name\": \"content_paste_search\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><path d=\\\"M20.3,18.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S12,14,12,16.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l2.7,2.7 l1.4-1.4L20.3,18.9z M16.5,19c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C19,17.9,17.9,19,16.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V7h8V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5S8.29,2.14,8.07,3H4.5 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><path d=\\\"M16.94,15.88c0.35-0.54,0.56-1.19,0.56-1.88c0-1.93-1.57-3.5-3.5-3.5s-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.94,15.88z M14,16c-1.1,0-2-0.9-2-2c0-0.31,0.07-0.61,0.2-0.87 C12.52,12.46,13.21,12,14,12c1.1,0,2,0.9,2,2S15.1,16,14,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"remove_circle_outline\": {\n    \"name\": \"remove_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"ballot\": {\n    \"name\": \"ballot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"outlined_flag\": {\n    \"name\": \"outlined_flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_format\": {\n    \"name\": \"text_format\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z\\\"></path>\"\n      }\n    }\n  },\n  \"tag\": {\n    \"name\": \"tag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_circle_outline\": {\n    \"name\": \"add_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"link\": {\n    \"name\": \"link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"square_foot\": {\n    \"name\": \"square_foot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.24,14.24l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71 l-0.35-0.35l0.71-0.71L8.14,8.14L7.44,8.85L7.08,8.5l0.71-0.71L6.11,6.11L5.4,6.82L5.05,6.46l0.71-0.71L4,4v10.5 C4,15.33,4.67,16,5.5,16H16L14.24,14.24z M6,14V8.83L11.17,14H6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"next_week\": {\n    \"name\": \"next_week\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z\\\"></path>\"\n      }\n    }\n  },\n  \"deselect\": {\n    \"name\": \"deselect\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,13h2v-2H3V13z M7,21h2v-2H7V21z M13,3h-2v2h2V3z M19,3v2h2C21,3.9,20.1,3,19,3z M5,21v-2H3C3,20.1,3.9,21,5,21z M3,17h2 v-2H3V17z M11,21h2v-2h-2V21z M19,13h2v-2h-2V13z M19,9h2V7h-2V9z M15,5h2V3h-2V5z M7.83,5L7,4.17V3h2v2H7.83z M19.83,17L19,16.17 V15h2v2H19.83z M21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19z M9,15 v-3.17L12.17,15H9z M15,12.17V9h-3.17l-2-2H17v7.17L15,12.17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14,11.88V6H8.12l1.5,1.5h2.88v2.88L14,11.88z M4.5,17v-1.5H3C3,16.33,3.67,17,4.5,17z M3,13.88h1.5v-1.5H3V13.88z M3,10.75h1.5v-1.5H3V10.75z M15.5,10.75H17v-1.5h-1.5V10.75z M15.5,7.62H17v-1.5h-1.5V7.62z M15.5,3v1.5H17 C17,3.67,16.33,3,15.5,3z M12.38,4.5h1.5V3h-1.5V4.5z M9.25,4.5h1.5V3h-1.5V4.5z M6.12,17h1.5v-1.5h-1.5V17z M9.25,17h1.5v-1.5 h-1.5V17z M17.07,17.07L2.93,2.93L1.87,3.99L4,6.12H3v1.5h1.5v-1L6,8.12V14h5.88l1.5,1.5h-1V17h1.5v-1l2.13,2.13L17.07,17.07z M7.62,4.5V3h-1.5v1l0.5,0.5H7.62z M17,13.88v-1.5h-1.5v1l0.5,0.5H17z M10.38,12.5H7.5V9.62L10.38,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add\": {\n    \"name\": \"add\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list\": {\n    \"name\": \"filter_list\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_vote\": {\n    \"name\": \"how_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1zm-7.66-4.98c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95zm2.12-10.61L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z\\\"></path>\"\n      }\n    }\n  },\n  \"save_as\": {\n    \"name\": \"save_as\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12.4V7l-4-4H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h7.4l2-2H5V5h11.17L19,7.83v6.57L21,12.4z M15,15 c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,13.34,15,15z M6,6h9v4H6V6z M19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25z M23.25,16.51l-0.85,0.85l-1.77-1.77l0.85-0.85c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06C23.45,16,23.45,16.32,23.25,16.51z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17,11.46V6l-3-3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h6.97l1.5-1.5H4.5v-11h8.88l2.12,2.12v6.34L17,11.46z M12.5,8.5h-7v-3h7V8.5z M12.25,12.5c0,1.24-1.01,2.25-2.25,2.25s-2.25-1.01-2.25-2.25s1.01-2.25,2.25-2.25S12.25,11.26,12.25,12.5 z M16.82,13.77l1.41,1.41L14.41,19H13l0-1.41L16.82,13.77z M17.31,13.27l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71 c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L17.31,13.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"content_cut\": {\n    \"name\": \"content_cut\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"forward\": {\n    \"name\": \"forward\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 8.83L17.17 12 14 15.17V14H6v-4h8V8.83M12 4v4H4v8h8v4l8-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_reg\": {\n    \"name\": \"how_to_reg\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z\\\"></path>\"\n      }\n    }\n  },\n  \"inbox\": {\n    \"name\": \"inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z\\\"></path>\"\n      }\n    }\n  },\n  \"sort\": {\n    \"name\": \"sort\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"copy_all\": {\n    \"name\": \"copy_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H9C7.9,2,7,2.9,7,4v12c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,16H9V4h9V16z M3,15v-2h2v2H3z M3,9.5h2v2H3V9.5z M10,20h2v2h-2V20z M3,18.5v-2h2v2H3z M5,22c-1.1,0-2-0.9-2-2h2V22z M8.5,22h-2v-2h2V22z M13.5,22L13.5,22l0-2h2 v0C15.5,21.1,14.6,22,13.5,22z M5,6L5,6l0,2H3v0C3,6.9,3.9,6,5,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,2h-8C6.67,2,6,2.67,6,3.5v10C6,14.33,6.67,15,7.5,15h8c0.83,0,1.5-0.67,1.5-1.5v-10C17,2.67,16.33,2,15.5,2z M15.5,13.5h-8v-10h8V13.5z M3,12v-1.5h1.5V12H3z M3,15v-1.5h1.5V15H3z M9,16.5h1.5V18H9V16.5z M3,7.5h1.5V9H3V7.5z M7.5,18H6v-1.5 h1.5V18z M4.5,18C3.67,18,3,17.33,3,16.5h1.5V18z M4.5,6H3c0-0.83,0.67-1.5,1.5-1.5V6z M13.49,16.5c0,0.83-0.67,1.5-1.5,1.5h0v-1.5 L13.49,16.5L13.49,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove\": {\n    \"name\": \"remove\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13H5v-2h14v2z\\\"></path>\"\n      }\n    }\n  },\n  \"content_copy\": {\n    \"name\": \"content_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste\": {\n    \"name\": \"content_paste\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z\\\"></path>\"\n      }\n    }\n  },\n  \"gesture\": {\n    \"name\": \"gesture\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z\\\"></path>\"\n      }\n    }\n  },\n  \"web_stories\": {\n    \"name\": \"web_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,4v16c1.1,0,2-0.9,2-2V6C19,4.9,18.1,4,17,4z\\\"></path><path d=\\\"M13,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C15,2.9,14.1,2,13,2z M13,20H4V4h9V20z\\\"></path><path d=\\\"M21,6v12c0.83,0,1.5-0.67,1.5-1.5v-9C22.5,6.67,21.83,6,21,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M11,2H3.5C2.67,2,2,2.67,2,3.5v13C2,17.33,2.67,18,3.5,18H11c0.83,0,1.5-0.67,1.5-1.5v-13C12.5,2.67,11.83,2,11,2z M11,16.5H3.5v-13H11V16.5z\\\"></path><path d=\\\"M14,4v12c0.83,0,1.5-0.67,1.5-1.5v-9C15.5,4.67,14.83,4,14,4z\\\"></path><path d=\\\"M17,5v10c0.58-0.21,1-0.76,1-1.41V6.41C18,5.76,17.58,5.21,17,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"block\": {\n    \"name\": \"block\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"send\": {\n    \"name\": \"send\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.01 6.03l7.51 3.22-7.52-1 .01-2.22m7.5 8.72L4 17.97v-2.22l7.51-1M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3z\\\"></path>\"\n      }\n    }\n  },\n  \"stream\": {\n    \"name\": \"stream\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"20\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"4\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"2\\\"></circle><rect height=\\\"2\\\" transform=\\\"matrix(0.7081 -0.7061 0.7061 0.7081 -0.1146 13.9802)\\\" width=\\\"6.22\\\" x=\\\"13.74\\\" y=\\\"6.13\\\"></rect><polygon points=\\\"8.32,9.68 8.63,10 10.05,8.59 6.03,4.55 6.02,4.55 5.71,4.23 4.29,5.64 8.31,9.69\\\"></polygon><polygon points=\\\"15.41,13.94 14,15.35 17.99,19.36 18.34,19.71 19.76,18.3 15.77,14.29\\\"></polygon><polygon points=\\\"8.59,13.95 4.56,17.96 4.24,18.29 5.65,19.7 9.68,15.68 10.01,15.36\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"move_to_inbox\": {\n    \"name\": \"move_to_inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z\\\"></path>\"\n      }\n    }\n  },\n  \"unarchive\": {\n    \"name\": \"unarchive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM5 19V8h14v11H5zm3-5h2.55v3h2.9v-3H16l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"reply\": {\n    \"name\": \"reply\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_circle\": {\n    \"name\": \"remove_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"push_pin\": {\n    \"name\": \"push_pin\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,4v5c0,1.12,0.37,2.16,1,3H9c0.65-0.86,1-1.9,1-3V4H14 M17,2H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1c0,0,0,0,0,0l1,0v5 c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19v-2c0,0,0,0,0,0c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1 C18,2.45,17.55,2,17,2L17,2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M15,10c-1.1,0-2-0.9-2-2V4h0.5C13.78,4,14,3.78,14,3.5C14,3.22,13.78,3,13.5,3h-7C6.22,3,6,3.22,6,3.5C6,3.78,6.22,4,6.5,4 H7v4c0,1.1-0.9,2-2,2v1h4.5v5.5L10,17l0.5-0.5V11H15V10z M7.23,10C7.71,9.47,8,8.77,8,8V4h4v4c0,0.77,0.29,1.47,0.77,2H7.23z\\\"></path></g>\"\n      }\n    }\n  },\n  \"inventory\": {\n    \"name\": \"inventory\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h6v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><polygon points=\\\"21,11.5 15.51,17 12.5,14 11,15.5 15.51,20 22.5,13\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"drafts\": {\n    \"name\": \"drafts\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-2 0v.01L12 13 4 8l8-4.68L19.99 8zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z\\\"></path>\"\n      }\n    }\n  },\n  \"report_off\": {\n    \"name\": \"report_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M13 9.33V7h-2v.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z\\\"></path>\"\n      }\n    }\n  },\n  \"save_alt\": {\n    \"name\": \"save_alt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_off\": {\n    \"name\": \"content_paste_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M5,19V7.83L16.17,19H5z M17,8V5 h2v11.17l2,2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5.83l5,5H17z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M4.5,15.5V6.62 l8.88,8.88H4.5z M14,7V4.5h1.5v8.88l1.5,1.5V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3 H5.12l4,4H14z M10,3c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.34,9.59,3,10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"create\": {\n    \"name\": \"create\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_go\": {\n    \"name\": \"content_paste_go\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v6h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><polygon points=\\\"18.01,13 16.59,14.41 18.17,15.99 12,15.99 12,17.99 18.17,17.99 16.59,19.58 18.01,20.99 22,16.99\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V7h8V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5S8.29,2.14,8.07,3H4.5 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><polygon points=\\\"15,11 13.94,12.06 15.13,13.25 11,13.25 11,14.75 15.13,14.75 13.94,15.94 15,17 18,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"shield\": {\n    \"name\": \"shield\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"file_copy\": {\n    \"name\": \"file_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zM8 21V7h6v5h5v9H8z\\\"></path>\"\n      }\n    }\n  },\n  \"delete_sweep\": {\n    \"name\": \"delete_sweep\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"flag\": {\n    \"name\": \"flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.36 6l.4 2H18v6h-3.36l-.4-2H7V6h5.36M14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6L14 4z\\\"></path>\"\n      }\n    }\n  },\n  \"save\": {\n    \"name\": \"save\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"report\": {\n    \"name\": \"report\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M11 7h2v7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"undo\": {\n    \"name\": \"undo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"low_priority\": {\n    \"name\": \"low_priority\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flag_circle\": {\n    \"name\": \"flag_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path><path d=\\\"M15,9l-1-2H8v11h1.5v-5H12l1,2h5V9H15z M16.5,13.5h-2.57l-1-2H9.5v-3h3.57l1,2h2.43V13.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><path d=\\\"M12.5,7.5l-1-1.5H7v9h1v-4.5h2l1,1.5h4V7.5H12.5z M14,11h-2.46l-1-1.5H8V7h2.96l1,1.5H14V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"report_gmailerrorred\": {\n    \"name\": \"report_gmailerrorred\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M11 7h2v7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"inventory_2\": {\n    \"name\": \"inventory_2\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,2H4C3,2,2,2.9,2,4v3.01C2,7.73,2.43,8.35,3,8.7V20c0,1.1,1.1,2,2,2h14c0.9,0,2-0.9,2-2V8.7c0.57-0.35,1-0.97,1-1.69V4 C22,2.9,21,2,20,2z M19,20H5V9h14V20z M20,7H4V4h16V7z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"12\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v3c0,0.65,0.42,1.2,1,1.41v8.59C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5V7.91 c0.58-0.21,1-0.76,1-1.41v-3C18,2.67,17.33,2,16.5,2z M16.5,6.5h-13v-3h13V6.5z M4.5,16.5V8h11v8.5H4.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"archive\": {\n    \"name\": \"archive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM5 19V8h14v11H5zm8.45-9h-2.9v3H8l4 4 4-4h-2.55z\\\"></path>\"\n      }\n    }\n  },\n  \"waves\": {\n    \"name\": \"waves\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z\\\"></path>\"\n      }\n    }\n  },\n  \"policy\": {\n    \"name\": \"policy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45 c1.29-1.94,1.07-4.58-0.64-6.29c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64 l1.72,1.72c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S13.66,15,12,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M10,3L4,5v4.31c0,3.55,2.56,6.88,6,7.69c3.44-0.81,6-4.13,6-7.69V5L10,3z M15,9.31c0,1.37-0.45,2.68-1.18,3.8l-1.38-1.38 C12.79,11.24,13,10.65,13,10c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.65,0,1.24-0.21,1.73-0.56l1.47,1.47 c-0.86,0.97-1.95,1.71-3.2,2.06c-2.87-0.79-5-3.61-5-6.65V5.72l5-1.67l5,1.67V9.31z M10,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C12,11.1,11.1,12,10,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dynamic_feed\": {\n    \"name\": \"dynamic_feed\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\\\"></path><path d=\\\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\\\"></path><path d=\\\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\\\"></path></g></g><g display=\\\"none\\\"><g display=\\\"inline\\\"></path><g display=\\\"inline\\\"><path d=\\\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\\\"></path><path d=\\\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\\\"></path><path d=\\\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g></rect><g><g><path d=\\\"M4,8H3v7c0,0.55,0.45,1,1,1h9v-1H4V8z\\\"></path></g><g><path d=\\\"M6,6H5v7c0,0.55,0.45,1,1,1h9v-1H6V6z\\\"></path></g><g><path d=\\\"M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M16,11H8V7h8V11z\\\"></path></g></g></g><g display=\\\"none\\\"><g display=\\\"inline\\\"></path><path d=\\\"M4,15V8H3v7c0,0.55,0.45,1,1,1h9v-1H4z\\\" display=\\\"inline\\\"></path><path d=\\\"M6,13V6H5v7c0,0.55,0.45,1,1,1h9v-1H6z\\\" display=\\\"inline\\\"></path><g display=\\\"inline\\\"><path d=\\\"M16,5v6H8V5H16 M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4L16,4z\\\"></path></g><g display=\\\"inline\\\"><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"clear\": {\n    \"name\": \"clear\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\\\"></path>\"\n      }\n    }\n  },\n  \"add_box\": {\n    \"name\": \"add_box\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z\\\"></path>\"\n      }\n    }\n  },\n  \"amp_stories\": {\n    \"name\": \"amp_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M7,19h10V4H7V19z M9,6h6v11H9V6z\\\"></path><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"6\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><g><path d=\\\"M6,15h8V4H6V15z M7,5h6v9H7V5z\\\"></path><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"16\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"redo\": {\n    \"name\": \"redo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z\\\"></path>\"\n      }\n    }\n  },\n  \"where_to_vote\": {\n    \"name\": \"where_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm-1.53-9.3L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01-1.41-1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"font_download_off\": {\n    \"name\": \"font_download_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4.83,2H20c1.1,0,2,0.9,2,2v15.17l-2-2V4H6.83L4.83,2z M10.92,6l-0.57,1.52l1.36,1.36l0.23-0.66h0.1l0.54,1.52l3.04,3.04 L13.07,6H10.92z M20.49,23.31L19.17,22H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M17.17,20l-5.07-5.07 H9.58L8.49,18H6.41l2.39-6.37L4,6.83V20H17.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.7,7.58L8.56,6.44L9.1,5h1.79l2.27,6.04l-2.55-2.55l-0.57-1.63H9.95L9.7,7.58z M16.72,18.84L15.88,18H3.5 C2.67,18,2,17.33,2,16.5V4.12L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M14.38,16.5l-4.06-4.06H7.99L7.08,15H5.35L7.4,9.52 l-3.9-3.9V16.5H14.38z M16.5,3.5v10.88l1.5,1.5V3.5C18,2.67,17.33,2,16.5,2H4.12l1.5,1.5H16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"add_circle\": {\n    \"name\": \"add_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"select_all\": {\n    \"name\": \"select_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z\\\"></path>\"\n      }\n    }\n  },\n  \"change_circle\": {\n    \"name\": \"change_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M16.17,14.76l-1.1-1.1c0.71-1.33,0.53-3.01-0.59-4.13C13.79,8.84,12.9,8.5,12,8.5c-0.03,0-0.06,0.01-0.09,0.01 L13,9.6l-1.06,1.06L9.11,7.83L11.94,5L13,6.06l-0.96,0.96c1.27,0.01,2.53,0.48,3.5,1.44C17.24,10.17,17.45,12.82,16.17,14.76z M14.89,16.17L12.06,19L11,17.94l0.95-0.95c-1.26-0.01-2.52-0.5-3.48-1.46c-1.71-1.71-1.92-4.35-0.64-6.29l1.1,1.1 c-0.71,1.33-0.53,3.01,0.59,4.13c0.7,0.7,1.63,1.04,2.56,1.01L11,14.4l1.06-1.06L14.89,16.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z M12,13.5l-2.12,2.12l-0.71-0.71L10.09,14c-0.03,0-0.06,0-0.09,0c-1.07,0-2.07-0.42-2.83-1.17 C6.42,12.07,6,11.07,6,10c0-0.7,0.18-1.38,0.52-1.98l0.74,0.74C7.09,9.15,7,9.57,7,10c0,0.8,0.31,1.55,0.88,2.12 c0.58,0.58,1.38,0.86,2.18,0.85l-0.88-0.88l0.71-0.71L12,13.5z M14,10c0,0.7-0.18,1.38-0.52,1.98l-0.74-0.74 C12.91,10.85,13,10.43,13,10c0-0.8-0.31-1.55-0.88-2.12C11.55,7.31,10.8,7,10,7C9.97,7,9.94,7,9.92,7l0.91,0.91l-0.71,0.71L8,6.5 l2.12-2.12l0.71,0.71L9.87,6.04c1.08-0.03,2.17,0.35,2.95,1.13C13.58,7.93,14,8.93,14,10z\\\"></path>\"\n      }\n    }\n  },\n  \"add_link\": {\n    \"name\": \"add_link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,11h8v2H8V11z M20.1,12H22c0-2.76-2.24-5-5-5h-4v1.9h4C18.71,8.9,20.1,10.29,20.1,12z M3.9,12c0-1.71,1.39-3.1,3.1-3.1h4 V7H7c-2.76,0-5,2.24-5,5s2.24,5,5,5h4v-1.9H7C5.29,15.1,3.9,13.71,3.9,12z M19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calculate\": {\n    \"name\": \"calculate\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"6.25\\\" y=\\\"7.72\\\"></rect><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"13\\\" y=\\\"15.75\\\"></rect><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"13\\\" y=\\\"13.25\\\"></rect><polygon points=\\\"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16\\\"></polygon><polygon points=\\\"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><g><g><rect height=\\\"1\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"12.25\\\"></rect></g><g><rect height=\\\"1\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"10.75\\\"></rect></g></g><g><rect height=\\\"1\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"7.27\\\"></rect></g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\\\"></path></g><g><polygon points=\\\"7.5,14 8.5,14 8.5,12.5 10,12.5 10,11.5 8.5,11.5 8.5,10 7.5,10 7.5,11.5 6,11.5 6,12.5 7.5,12.5\\\"></polygon></g><g><polygon points=\\\"11.44,9.54 12.5,8.47 13.56,9.54 14.27,8.83 13.21,7.77 14.27,6.71 13.56,6 12.5,7.06 11.44,6 10.73,6.71 11.79,7.77 10.73,8.83\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"backspace\": {\n    \"name\": \"backspace\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list_off\": {\n    \"name\": \"filter_list_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.83,8H21V6H8.83L10.83,8z M15.83,13H18v-2h-4.17L15.83,13z M14,16.83V18h-4v-2h3.17l-3-3H6v-2h2.17l-3-3H3V6h0.17 L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L14,16.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M7.62,5.5H17V7H9.12L7.62,5.5z M12.87,10.75H15v-1.5h-3.63L12.87,10.75z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99 L3.38,5.5H3V7h1.88l2.25,2.25H5v1.5h3.63L10.88,13L8,13v1.5h4v-0.38L16.01,18.13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bolt\": {\n    \"name\": \"bolt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,21h-1l1-7H7.5c-0.88,0-0.33-0.75-0.31-0.78C8.48,10.94,10.42,7.54,13.01,3h1l-1,7h3.51c0.4,0,0.62,0.19,0.4,0.66 C12.97,17.55,11,21,11,21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_email_read\": {\n    \"name\": \"mark_email_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h8l0-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,15H4V6.18L10,10l6-3.82V10h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h6L10,15z M16,5l-6,3.82 L4,5H16z M13.76,17l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,12.76L13.76,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"app_registration\": {\n    \"name\": \"app_registration\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"16\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"4\\\"></rect><polygon points=\\\"11,17.86 11,20 13.1,20 19.08,14.03 16.96,11.91\\\"></polygon><polygon points=\\\"14,12.03 14,10 10,10 10,14 12.03,14\\\"></polygon><path d=\\\"M20.85,11.56l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12l1.06-1.06C21.05,12.07,21.05,11.76,20.85,11.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"13\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8.5\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g><g><polygon points=\\\"9,14.49 9,16 10.51,16 15.4,11.1 13.9,9.6\\\"></polygon></g><g><polygon points=\\\"11.5,9.88 11.5,8.5 8.5,8.5 8.5,11.5 9.87,11.5\\\"></polygon></g><g><path d=\\\"M16.85,8.94l-0.79-0.79c-0.2-0.2-0.51-0.2-0.71,0L14.6,8.9l1.5,1.5l0.75-0.75C17.05,9.45,17.05,9.13,16.85,8.94z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"import_contacts\": {\n    \"name\": \"import_contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel_presentation\": {\n    \"name\": \"cancel_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied_alt\": {\n    \"name\": \"sentiment_satisfied_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"live_help\": {\n    \"name\": \"live_help\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 16h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"location_on\": {\n    \"name\": \"location_on\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\\\"></path><circle cx=\\\"12\\\" cy=\\\"9\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"mark_unread_chat_alt\": {\n    \"name\": \"mark_unread_chat_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,16H4V4h10.1c-0.08-0.39-0.18-1.11,0-2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V6.98c-0.58,0.44-1.26,0.77-2,0.92 V16z\\\"></path><circle cx=\\\"19\\\" cy=\\\"3\\\" r=\\\"3\\\"></circle><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"12\\\"></rect><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><path d=\\\"M6,8h12V7.9c-1.21-0.25-2.25-0.95-2.97-1.9H6V8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,13.5h-13v-10h8.07c-0.06-0.29-0.13-0.84,0-1.5L3.5,2C2.67,2,2,2.67,2,3.5V18l3-3h11.5c0.83,0,1.5-0.67,1.5-1.5V5.87 c-0.43,0.35-0.94,0.61-1.5,0.75L16.5,13.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"7\\\" x=\\\"5\\\" y=\\\"10.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"7.75\\\"></rect><circle cx=\\\"15.5\\\" cy=\\\"2.75\\\" r=\\\"2.5\\\"></circle><path d=\\\"M5,6.5h9.15c-0.8-0.29-1.49-0.81-1.96-1.5H5V6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"qr_code_2\": {\n    \"name\": \"qr_code_2\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M15,21h-2v-2h2V21z M13,14h-2v5h2V14z M21,12h-2v4h2V12z M19,10h-2v2h2V10z M7,12H5v2h2V12z M5,10H3v2h2V10z M12,5h2V3h-2V5 z M4.5,4.5v3h3v-3H4.5z M9,9H3V3h6V9z M4.5,16.5v3h3v-3H4.5z M9,21H3v-6h6V21z M16.5,4.5v3h3v-3H16.5z M21,9h-6V3h6V9z M19,19v-3 l-4,0v2h2v3h4v-2H19z M17,12l-4,0v2h4V12z M13,10H7v2h2v2h2v-2h2V10z M14,9V7h-2V5h-2v4L14,9z M6.75,5.25h-1.5v1.5h1.5V5.25z M6.75,17.25h-1.5v1.5h1.5V17.25z M18.75,5.25h-1.5v1.5h1.5V5.25z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_access_disabled\": {\n    \"name\": \"desktop_access_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z\\\"></path>\"\n      }\n    }\n  },\n  \"call_end\": {\n    \"name\": \"call_end\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.59 10.52c1.05.51 2.04 1.15 2.96 1.91l-1.07 1.07c-.58-.47-1.21-.89-1.88-1.27v-1.71m-13.2 0v1.7c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71s.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9s3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling\": {\n    \"name\": \"wifi_calling\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z\\\"></path></g><g><path d=\\\"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.67,5.3C16.53,5.19,15.11,4,13,4c-2.12,0-3.53,1.19-3.67,1.3L13,10L16.67,5.3z M13,5c0.91,0,1.67,0.27,2.21,0.54 L13,8.37l-2.21-2.83C11.33,5.27,12.09,5,13,5z\\\"></path><path d=\\\"M14.33,12.33c-0.83,0-1.63-0.13-2.38-0.38c-0.07-0.02-0.14-0.03-0.21-0.03c-0.17,0-0.34,0.06-0.47,0.19l-1.47,1.47 c-1.89-0.96-3.43-2.5-4.39-4.39l1.47-1.47c0.19-0.18,0.24-0.44,0.17-0.67C6.8,6.3,6.67,5.5,6.67,4.67C6.67,4.3,6.37,4,6,4H3.67 C3.3,4,3,4.3,3,4.67C3,10.93,8.07,16,14.33,16C14.7,16,15,15.7,15,15.33V13C15,12.63,14.7,12.33,14.33,12.33z M4.01,5h1.67 C5.7,5.74,5.82,6.46,6.03,7.15L4.72,8.47C4.3,7.39,4.04,6.22,4.01,5z M14,14.99c-1.22-0.04-2.39-0.29-3.47-0.72l1.31-1.31 c0.7,0.21,1.43,0.33,2.16,0.36V14.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alternate_email\": {\n    \"name\": \"alternate_email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_ic_call\": {\n    \"name\": \"add_ic_call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.45c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.92c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 5.95v-3h-2v3h-3v2h3v3h2v-3h3v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"business\": {\n    \"name\": \"business\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"no_sim\": {\n    \"name\": \"no_sim\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.26 21.21L3.79 3.74 2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41zM7 19V9.77L16.23 19H7zm3.84-14H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z\\\"></path>\"\n      }\n    }\n  },\n  \"key\": {\n    \"name\": \"key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,10h-8.35C11.83,7.67,9.61,6,7,6c-3.31,0-6,2.69-6,6s2.69,6,6,6c2.61,0,4.83-1.67,5.65-4H13l2,2l2-2l2,2l4-4.04L21,10z M7,15c-1.65,0-3-1.35-3-3c0-1.65,1.35-3,3-3s3,1.35,3,3C10,13.65,8.65,15,7,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M17.5,8.5h-6.75C10.11,6.48,8.24,5,6,5c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.24,0,4.11-1.48,4.75-3.5h0.75L13,13l1.5-1.5L16,13 l3-3L17.5,8.5z M6,12.5c-1.38,0-2.5-1.12-2.5-2.5S4.62,7.5,6,7.5S8.5,8.62,8.5,10S7.38,12.5,6,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_erase\": {\n    \"name\": \"phonelink_erase\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_enabled\": {\n    \"name\": \"phone_enabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M16.5,3H20c0.55,0,1,0.45,1,1c0,9.39-7.61,17-17,17 c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29 l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4 C15.5,3.45,15.95,3,16.5,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stay_current_landscape\": {\n    \"name\": \"stay_current_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code\": {\n    \"name\": \"qr_code\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,11h8V3H3V11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\\\"></path><path d=\\\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M4,9h5V4H4V9z M4.94,4.94h3.12v3.12H4.94V4.94z\\\"></path><path d=\\\"M4,16h5v-5H4V16z M4.94,11.94h3.12v3.12H4.94V11.94z\\\"></path><path d=\\\"M11,4v5h5V4H11z M15.06,8.06h-3.12V4.94h3.12V8.06z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"duo\": {\n    \"name\": \"duo\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clear_all\": {\n    \"name\": \"clear_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z\\\"></path>\"\n      }\n    }\n  },\n  \"rss_feed\": {\n    \"name\": \"rss_feed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"6.18\\\" cy=\\\"17.82\\\" r=\\\"2.18\\\"></circle><path d=\\\"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z\\\"></path>\"\n      }\n    }\n  },\n  \"rtt\": {\n    \"name\": \"rtt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.03,3l-1.11,7.07h2.62l0.7-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4-2.57h-2.35l2-12.86h2.58l-0.71,4.5h2.65L22,3H9.03 z M8,5H4L3.69,7h4L8,5z M7.39,9h-4l-0.31,2h4L7.39,9z M8.31,17h-6L2,19h6L8.31,17z M8.93,13h-6l-0.31,2h6.01L8.93,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hourglass_bottom\": {\n    \"name\": \"hourglass_bottom\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M6,17h8v-4l-3-3l3-3V3H6v4l3,3l-3,3V17z M7,6.59V4h6v2.59l-3,3L7,6.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"portable_wifi_off\": {\n    \"name\": \"portable_wifi_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_phone\": {\n    \"name\": \"speaker_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z\\\"></path>\"\n      }\n    }\n  },\n  \"person_search\": {\n    \"name\": \"person_search\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,5.79,6,8C6,10.21,7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S8,9.1,8,8C8,6.9,8.9,6,10,6z\\\"></path><path d=\\\"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z\\\"></path><path d=\\\"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C18,17.1,17.1,18,16,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M9.43,11.86c0.36-0.68,0.67-0.89,0.72-0.93C7.85,10.59,4,11.52,4,13.21V15h5.35c-0.15-0.32-0.25-0.66-0.3-1H5v-0.79 C5,12.71,7.33,11.72,9.43,11.86z\\\"></path><path d=\\\"M9,10c1.38,0,2.5-1.12,2.5-2.5C11.5,6.12,10.38,5,9,5C7.62,5,6.5,6.12,6.5,7.5C6.5,8.88,7.62,10,9,10z M9,6 c0.83,0,1.5,0.67,1.5,1.5S9.83,9,9,9S7.5,8.33,7.5,7.5S8.17,6,9,6z\\\"></path><path d=\\\"M16.06,16.35l-1.48-1.48c0.26-0.4,0.42-0.87,0.42-1.38c0-1.38-1.12-2.5-2.5-2.5S10,12.12,10,13.5c0,1.38,1.12,2.5,2.5,2.5 c0.51,0,0.98-0.15,1.38-0.42l1.48,1.48L16.06,16.35z M12.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S13.33,15,12.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"domain_disabled\": {\n    \"name\": \"domain_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_chat_read\": {\n    \"name\": \"mark_chat_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,18l-6,0l-4,4V4c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v7l-2,0V4H4v12l8,0V18z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12 l-1.41,1.41L17.34,20L23,14.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,14H6l-3,3V4c0-0.55,0.45-1,1-1h12c0.55,0,1,0.45,1,1v4l-1-0.02V4H4v9l6,0V14z M18,10.76l-0.71-0.71l-3.54,3.54 l-1.41-1.41l-0.71,0.71L13.76,15L18,10.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"comments_disabled\": {\n    \"name\": \"comments_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.83,16H20V4H6.83l-2-2H20c1.1,0,2,0.9,2,2l0,15.17L18.83,16z M18,6H8.83l2,2H18V6z M18,9h-6.17l2,2H18V9z M18,14v-2 h-3.17l2,2H18z M21.9,21.9l-1.41,1.41L15.17,18H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1L21.9,21.9z M13.17,16l-2-2H6v-2h3.17 l-1-1H6V9h0.17L4,6.83V16H13.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,15.88V3.5C18,2.67,17.33,2,16.5,2H4.12l1.5,1.5H16.5v10.88L18,15.88z M8.62,6.5H15V5H7.12L8.62,6.5z M14.12,12H15v-1.5 h-2.38L14.12,12z M11.37,9.25H15v-1.5H9.87L11.37,9.25z M2.22,2.22L1.16,3.28L2,4.12v9.38C2,14.33,2.67,15,3.5,15h9.38l3.84,3.84 l1.06-1.06L2.22,2.22z M3.5,13.5V5.62l2.13,2.13H5v1.5h2.13l1.25,1.25H8V12h1.88l1.5,1.5H3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"mail_lock\": {\n    \"name\": \"mail_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,8l8,5l8-5v2h2V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h12v-2H4V8z M20,6l-8,5L4,6H20z\\\"></path><path d=\\\"M23,15v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C24,15.45,23.55,15,23,15z M20,15v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1H20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3.5,7.27L10,11l6.5-3.73V8.5H18v-3C18,4.67,17.33,4,16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h10v-1.5 h-10V7.27z M16.5,5.5L10,9.23L3.5,5.5H16.5z\\\"></path><path d=\\\"M19.5,12H19v-1c0-0.83-0.67-1.5-1.5-1.5S16,10.17,16,11v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C20,12.22,19.78,12,19.5,12z M16.75,12v-1c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1 H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"phonelink_ring\": {\n    \"name\": \"phonelink_ring\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_top\": {\n    \"name\": \"hourglass_top\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M14,3H6v4l3,3l-3,3v4h8v-4l-3-3l3-3V3z M13,13.41V16H7v-2.59l3-3L13,13.41z\\\"></path></g>\"\n      }\n    }\n  },\n  \"invert_colors_off\": {\n    \"name\": \"invert_colors_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31-1.6,2.94-1.6,4.7C4,17.48,7.58,21,12,21c1.75,0,3.36-0.56,4.67-1.5 l3.1,3.1L21.19,21.19z M12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83V19z M8.38,5.56L12,2l5.65,5.56l0,0 C19.1,8.99,20,10.96,20,13.13c0,1.18-0.27,2.29-0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.08,4.96L10,2l4.53,4.6l0,0c1.07,1.1,1.72,2.6,1.72,4.24c0,0.96-0.23,1.86-0.62,2.67L10,7.88V4.14L8.14,6.02L7.08,4.96z M16.01,18.13l-2.33-2.33C12.65,16.55,11.38,17,10,17c-3.45,0-6.25-2.76-6.25-6.16c0-1.39,0.47-2.67,1.26-3.7L1.87,3.99l1.06-1.06 l14.14,14.14L16.01,18.13z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63c0,2.57,2.13,4.66,4.75,4.66V12.12z\\\"></path>\"\n      }\n    }\n  },\n  \"hub\": {\n    \"name\": \"hub\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,6.5c-1.66,0-3,1.34-3,3c0,0.07,0,0.14,0.01,0.21l-2.03,0.68c-0.64-1.21-1.82-2.09-3.22-2.32V5.91 C14.04,5.57,15,4.4,15,3c0-1.66-1.34-3-3-3S9,1.34,9,3c0,1.4,0.96,2.57,2.25,2.91v2.16c-1.4,0.23-2.58,1.11-3.22,2.32L5.99,9.71 C6,9.64,6,9.57,6,9.5c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c1.06,0,1.98-0.55,2.52-1.37l2.03,0.68 c-0.2,1.29,0.17,2.66,1.09,3.69l-1.41,1.77C6.85,17.09,6.44,17,6,17c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 c0-0.68-0.22-1.3-0.6-1.8l1.41-1.77c1.36,0.76,3.02,0.75,4.37,0l1.41,1.77C15.22,18.7,15,19.32,15,20c0,1.66,1.34,3,3,3s3-1.34,3-3 s-1.34-3-3-3c-0.44,0-0.85,0.09-1.23,0.26l-1.41-1.77c0.93-1.04,1.29-2.4,1.09-3.69l2.03-0.68c0.53,0.82,1.46,1.37,2.52,1.37 c1.66,0,3-1.34,3-3S22.66,6.5,21,6.5z M3,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C4,10.05,3.55,10.5,3,10.5z M6,21 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C7,20.55,6.55,21,6,21z M11,3c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1 S11,3.55,11,3z M12,15c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C14.5,13.88,13.38,15,12,15z M18,19 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C17,19.45,17.45,19,18,19z M21,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C22,10.05,21.55,10.5,21,10.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.5,5.5C16.12,5.5,15,6.62,15,8c0,0.08,0,0.15,0.01,0.22L13.42,8.7c-0.52-1.15-1.61-2-2.92-2.17V4.95 c1.14-0.23,2-1.24,2-2.45C12.5,1.12,11.38,0,10,0S7.5,1.12,7.5,2.5c0,1.21,0.86,2.22,2,2.45v1.58C8.2,6.71,7.11,7.55,6.58,8.7 L4.99,8.22C5,8.15,5,8.08,5,8c0-1.38-1.12-2.5-2.5-2.5S0,6.62,0,8c0,1.38,1.12,2.5,2.5,2.5c0.95,0,1.78-0.53,2.2-1.32L6.3,9.66 c-0.18,1.12,0.15,2.3,0.99,3.18l-1.15,1.43C5.8,14.1,5.41,14,5,14c-1.38,0-2.5,1.12-2.5,2.5C2.5,17.88,3.62,19,5,19 s2.5-1.12,2.5-2.5c0-0.61-0.22-1.17-0.58-1.6l1.15-1.43c1.18,0.71,2.68,0.71,3.86,0l1.15,1.43c-0.36,0.43-0.58,0.99-0.58,1.6 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5c-0.41,0-0.8,0.1-1.14,0.27l-1.15-1.43 c0.84-0.88,1.17-2.06,0.99-3.18l1.59-0.48c0.42,0.78,1.25,1.32,2.2,1.32c1.38,0,2.5-1.12,2.5-2.5C20,6.62,18.88,5.5,17.5,5.5z M2.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C3.5,8.55,3.05,9,2.5,9z M5,17.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C6,17.05,5.55,17.5,5,17.5z M9,2.5c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S9,3.05,9,2.5z M10,12.5 c-1.24,0-2.25-1.01-2.25-2.25C7.75,9.01,8.76,8,10,8s2.25,1.01,2.25,2.25C12.25,11.49,11.24,12.5,10,12.5z M15,15.5 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C14,15.95,14.45,15.5,15,15.5z M17.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C18.5,8.55,18.05,9,17.5,9z\\\"></path>\"\n      }\n    }\n  },\n  \"phone\": {\n    \"name\": \"phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"location_off\": {\n    \"name\": \"location_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c2.76 0 5 2.24 5 5 0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4zm0 2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code_scanner\": {\n    \"name\": \"qr_code_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_primary_portrait\": {\n    \"name\": \"stay_primary_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_mail\": {\n    \"name\": \"contact_mail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_tower\": {\n    \"name\": \"cell_tower\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.3,14.7l1.2-1.2c-1-1-1.5-2.3-1.5-3.5c0-1.3,0.5-2.6,1.5-3.5L7.3,5.3c-1.3,1.3-2,3-2,4.7S6,13.4,7.3,14.7z\\\"></path><path d=\\\"M19.1,2.9l-1.2,1.2c1.6,1.6,2.4,3.8,2.4,5.9c0,2.1-0.8,4.3-2.4,5.9l1.2,1.2c2-2,2.9-4.5,2.9-7.1C22,7.4,21,4.9,19.1,2.9z\\\"></path><path d=\\\"M6.1,4.1L4.9,2.9C3,4.9,2,7.4,2,10c0,2.6,1,5.1,2.9,7.1l1.2-1.2c-1.6-1.6-2.4-3.8-2.4-5.9C3.7,7.9,4.5,5.7,6.1,4.1z\\\"></path><path d=\\\"M16.7,14.7c1.3-1.3,2-3,2-4.7c-0.1-1.7-0.7-3.4-2-4.7l-1.2,1.2c1,1,1.5,2.3,1.5,3.5c0,1.3-0.5,2.6-1.5,3.5L16.7,14.7z\\\"></path><path d=\\\"M14.5,10c0-1.38-1.12-2.5-2.5-2.5S9.5,8.62,9.5,10c0,0.76,0.34,1.42,0.87,1.88L7,22h2l0.67-2h4.67L15,22h2l-3.37-10.12 C14.16,11.42,14.5,10.76,14.5,10z M10.33,18L12,13l1.67,5H10.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,11.5l1.06-1.06C6.94,9.81,6.55,8.95,6.55,8s0.39-1.81,1.01-2.44L6.5,4.5C5.6,5.4,5.05,6.63,5.05,8S5.6,10.6,6.5,11.5 z\\\"></path><path d=\\\"M5.41,3.41L4.34,2.34C2.9,3.79,2,5.79,2,8s0.9,4.21,2.34,5.66l1.06-1.06C4.23,11.42,3.5,9.79,3.5,8S4.23,4.58,5.41,3.41z\\\"></path><path d=\\\"M13.5,4.5l-1.06,1.06c0.62,0.62,1.01,1.49,1.01,2.44s-0.39,1.81-1.01,2.44l1.06,1.06c0.9-0.9,1.45-2.13,1.45-3.5 S14.4,5.4,13.5,4.5z\\\"></path><path d=\\\"M15.66,2.34l-1.06,1.06C15.77,4.58,16.5,6.21,16.5,8s-0.73,3.42-1.91,4.59l1.06,1.06C17.1,12.21,18,10.21,18,8 S17.1,3.79,15.66,2.34z\\\"></path><path d=\\\"M12,8c0-1.1-0.9-2-2-2S8,6.9,8,8c0,0.63,0.29,1.18,0.75,1.55L6,18h1.5l0.49-1.5h3.6L12,18h1.5l-2.31-8.4 C11.68,9.23,12,8.66,12,8z M8.47,15l1.46-4.5l1.24,4.5H8.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mark_chat_unread\": {\n    \"name\": \"mark_chat_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3s0.04,0.68,0.1,1H4v12h16V7.9 C20.74,7.75,21.42,7.42,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17,6.22V13c0,0.55-0.45,1-1,1H6l-3,3V4c0-0.55,0.45-1,1-1h8.18C12.07,3.31,12,3.65,12,4H4v9h12V6.82 C16.37,6.68,16.71,6.48,17,6.22z M13,4c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,2.9,13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forum\": {\n    \"name\": \"forum\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 4v7H5.17L4 12.17V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_presentation\": {\n    \"name\": \"pause_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .85-2 1.95v14c0 1.1.9 2.05 2 2.05h18c1.1 0 2-.95 2-2.05v-14C23 3.85 22.1 3 21 3zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"read_more\": {\n    \"name\": \"read_more\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"16\\\" y=\\\"11\\\"></rect><polygon points=\\\"13,12 8,7 8,11 2,11 2,13 8,13 8,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"11,10 8,7 8,9.5 3,9.5 3,10.5 8,10.5 8,13\\\"></polygon><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"co_present\": {\n    \"name\": \"co_present\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v8h2V5h18v16c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g><g><path d=\\\"M13,10c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4S13,12.21,13,10z M7,10c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,1.1-0.9,2-2,2S7,11.1,7,10z\\\"></path></g><g><path d=\\\"M15.39,16.56C13.71,15.7,11.53,15,9,15c-2.53,0-4.71,0.7-6.39,1.56C1.61,17.07,1,18.1,1,19.22V22h16v-2.78 C17,18.1,16.39,17.07,15.39,16.56z M15,20H3c0-0.72-0.1-1.34,0.52-1.66C4.71,17.73,6.63,17,9,17c2.37,0,4.29,0.73,5.48,1.34 C15.11,18.66,15,19.29,15,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M17.5,3h-15C1.67,3,1,3.67,1,4.5V12h1.5V4.5h15V17c0.83,0,1.5-0.67,1.5-1.5v-11C19,3.67,18.33,3,17.5,3z\\\"></path><path d=\\\"M10,9c0-1.66-1.34-3-3-3S4,7.34,4,9s1.34,3,3,3S10,10.66,10,9z M5.5,9c0-0.83,0.67-1.5,1.5-1.5S8.5,8.17,8.5,9 S7.83,10.5,7,10.5S5.5,9.83,5.5,9z\\\"></path><path d=\\\"M12.03,14.37C10.56,13.5,8.84,13,7,13s-3.56,0.5-5.03,1.37C1.36,14.72,1,15.39,1,16.09V18h12v-1.91 C13,15.39,12.64,14.72,12.03,14.37z M11.5,16.5h-9c0-0.33-0.05-0.67,0.22-0.84C4.02,14.9,5.5,14.5,7,14.5s2.98,0.4,4.28,1.16 C11.56,15.83,11.5,16.17,11.5,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"call\": {\n    \"name\": \"call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble_outline\": {\n    \"name\": \"chat_bubble_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_current_portrait\": {\n    \"name\": \"stay_current_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"present_to_all\": {\n    \"name\": \"present_to_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_missed\": {\n    \"name\": \"call_missed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z\\\"></path>\"\n      }\n    }\n  },\n  \"import_export\": {\n    \"name\": \"import_export\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble\": {\n    \"name\": \"chat_bubble\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key_off\": {\n    \"name\": \"vpn_key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85,1,9.79,1,12c0,3.31,2.69,6,6,6c2.22,0,4.15-1.21,5.19-3l7.59,7.61l1.41-1.41 L2.81,2.81z M7,16c-2.21,0-4-1.79-4-4c0-1.67,1.02-3.1,2.47-3.7l1.71,1.71C7.12,10,7.06,10,7,10c-1.1,0-2,0.9-2,2s0.9,2,2,2 s2-0.9,2-2c0-0.06,0-0.12-0.01-0.18l1.74,1.74C10.22,14.48,9.14,16,7,16z M17,14.17V13h-1.17L17,14.17z M13.83,11H21v2h-2v3l2,2 v-3h2V9H11.83L13.83,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M2.93,2.93L1.87,3.99l1.66,1.66C2.02,6.51,1,8.14,1,10c0,2.76,2.24,5,5,5c1.86,0,3.49-1.02,4.35-2.53l5.66,5.66l1.06-1.06 L2.93,2.93z M6,13.5c-1.93,0-3.5-1.57-3.5-3.5c0-1.45,0.89-2.7,2.15-3.23L5.88,8C4.83,8.06,4,8.93,4,10c0,1.1,0.9,2,2,2 c1.07,0,1.94-0.83,2-1.88l1.24,1.24C8.78,12.27,7.87,13.5,6,13.5z M14.5,12.38V10.5h-1.88L14.5,12.38z M17,14.88V12h2V8h-8.88 l1.5,1.5h5.88v1h-2v2.88L17,14.88z\\\"></path></g>\"\n      }\n    }\n  },\n  \"voicemail\": {\n    \"name\": \"voicemail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_setup\": {\n    \"name\": \"phonelink_setup\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_emergency\": {\n    \"name\": \"contact_emergency\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,14c1.65,0,3-1.35,3-3s-1.35-3-3-3s-3,1.35-3,3S7.35,14,9,14z M9,10c0.54,0,1,0.46,1,1s-0.46,1-1,1s-1-0.46-1-1 S8.46,10,9,10z\\\"></path><path d=\\\"M22,3H2C0.9,3,0,3.9,0,5v14c0,1.1,0.9,2,2,2h20c1.1,0,1.99-0.9,1.99-2L24,5C24,3.9,23.1,3,22,3z M4.54,19 c1.1-1.22,2.69-2,4.46-2s3.36,0.78,4.46,2H4.54z M22,19h-6.08c-1.38-2.39-3.96-4-6.92-4s-5.54,1.61-6.92,4H2V5h20V19z\\\"></path><polygon points=\\\"15.78,11.15 17.25,10.3 17.25,12 18.75,12 18.75,10.3 20.22,11.15 20.97,9.85 19.5,9 20.97,8.15 20.22,6.85 18.75,7.7 18.75,6 17.25,6 17.25,7.7 15.78,6.85 15.03,8.15 16.5,9 15.03,9.85\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.5,3h-17C0.67,3,0,3.67,0,4.5v11C0,16.33,0.67,17,1.5,17h17c0.83,0,1.5-0.67,1.5-1.5v-11C20,3.67,19.33,3,18.5,3z M3.85,15.5c0.89-0.63,1.98-1,3.15-1s2.26,0.37,3.15,1H3.85z M18.5,15.5h-6.14C11.07,13.97,9.15,13,7,13s-4.07,0.97-5.36,2.5H1.5 v-11h17V15.5z\\\"></path><path d=\\\"M7,12c1.38,0,2.5-1.12,2.5-2.5S8.38,7,7,7S4.5,8.12,4.5,9.5S5.62,12,7,12z M7,8.5c0.54,0,1,0.46,1,1s-0.46,1-1,1 s-1-0.46-1-1S6.46,8.5,7,8.5z\\\"></path><polygon points=\\\"13.08,10.18 14.5,9.37 14.5,11 15.5,11 15.5,9.37 16.92,10.18 17.42,9.32 16,8.5 17.42,7.68 16.92,6.82 15.5,7.63 15.5,6 14.5,6 14.5,7.63 13.08,6.82 12.58,7.68 14,8.5 12.58,9.32\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"stop_screen_share\": {\n    \"name\": \"stop_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z\\\"></path>\"\n      }\n    }\n  },\n  \"spoke\": {\n    \"name\": \"spoke\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,7c0-2.21-1.79-4-4-4S8,4.79,8,7c0,2.21,1.79,4,4,4S16,9.21,16,7z M12,9c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C14,8.1,13.1,9,12,9z M7,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C11,14.79,9.21,13,7,13z M7,19c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C9,18.1,8.1,19,7,19z M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,19c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C19,18.1,18.1,19,17,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3C8.34,3,7,4.34,7,6c0,1.66,1.34,3,3,3s3-1.34,3-3C13,4.34,11.66,3,10,3z M10,7.5C9.17,7.5,8.5,6.83,8.5,6 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C11.5,6.83,10.83,7.5,10,7.5z M14,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C17,12.34,15.66,11,14,11z M14,15.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C15.5,14.83,14.83,15.5,14,15.5z M6,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C9,12.34,7.66,11,6,11z M6,15.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C7.5,14.83,6.83,15.5,6,15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_wifi\": {\n    \"name\": \"cell_wifi\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,22h16V5.97L6,22z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z\\\"></path></g>\"\n      }\n    }\n  },\n  \"call_missed_outgoing\": {\n    \"name\": \"call_missed_outgoing\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z\\\"></path>\"\n      }\n    }\n  },\n  \"call_made\": {\n    \"name\": \"call_made\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z\\\"></path>\"\n      }\n    }\n  },\n  \"send_time_extension\": {\n    \"name\": \"send_time_extension\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,6v6.26l2,1V6c0-1.1-0.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H5.01c-1.1,0-2,0.9-2,2v3.8 C5.7,9.8,6,11.96,6,12.5c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8c0-2.16,1.37-2.78,2.2-2.94v-2.03 C9.57,16.2,7.85,17.07,7.13,19H5v-2.13c2.17-0.8,3-2.87,3-4.37c0-1.49-0.83-3.56-2.99-4.37V6H11V4c0-0.28,0.22-0.5,0.5-0.5 S12,3.72,12,4v2H18z\\\"></path><polygon points=\\\"13,12 13,16 17,17 13,18 13,22 23,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,4.5v6.07l1.5,0.75V4.5C17,3.67,16.33,3,15.5,3H12c0-1.1-0.9-2-2-2S8,1.9,8,3H4.5C3.67,3,3,3.67,3,4.5V8 c1.1,0,2,0.9,2,2s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-0.93,0.64-1.71,1.5-1.93v-1.53c-1.18,0.17-2.17,0.93-2.66,1.96H4.5 v-2.34c1.18-0.56,2-1.77,2-3.16s-0.82-2.6-2-3.16V4.5h5V3c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5v1.5H15.5z\\\"></path><polygon points=\\\"11,10 11,13 14,14 11,15 11,18 19,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"mail_outline\": {\n    \"name\": \"mail_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"email\": {\n    \"name\": \"email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"print_disabled\": {\n    \"name\": \"print_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8zM8 5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3h-1V3H6v.36l2 2V5z\\\"></path><circle cx=\\\"18\\\" cy=\\\"11.51\\\" r=\\\"1\\\"></circle>\"\n      }\n    }\n  },\n  \"comment\": {\n    \"name\": \"comment\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM20 4v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"dialer_sip\": {\n    \"name\": \"dialer_sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_screen_share\": {\n    \"name\": \"mobile_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05v-18C19 1.85 18.1 1 17 1zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z\\\"></path>\"\n      }\n    }\n  },\n  \"key_off\": {\n    \"name\": \"key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.7,13.53l-1.71-1.71C9,11.88,9,11.94,9,12c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.06,0,0.12,0,0.18,0.01L5.47,8.3 C4.02,8.9,3,10.33,3,12c0,2.21,1.79,4,4,4C8.67,16,10.1,14.98,10.7,13.53z M12.19,15.02C11.15,16.8,9.21,18,7,18 c-3.31,0-6-2.69-6-6c0-2.21,1.2-4.15,2.98-5.19L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L12.19,15.02z M16.26,13.43l1.24-0.93 l1.81,1.36L21.17,12l-1-1l-6.34,0l-2-2L21,9l0,0l3,3l-4.5,4.5l-0.69-0.51L16.26,13.43z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M16.88,9l-5.76,0l-1.5-1.5l7.88,0l0,0L20,10l-3.75,3.5l-1.75-1.25l-0.07,0.06l-1.07-1.07l1.06-0.89l1.69,1.21l1.72-1.6 L16.88,9 M8,10.12C7.94,11.17,7.06,12,6,12c-1.1,0-2-0.9-2-2c0-1.06,0.83-1.94,1.88-2L4.65,6.77C3.39,7.3,2.5,8.55,2.5,10 c0,1.93,1.57,3.5,3.5,3.5c1.45,0,2.7-0.89,3.23-2.15L8,10.12z M10.35,12.47C9.49,13.98,7.86,15,6,15c-2.76,0-5-2.24-5-5 c0-1.86,1.02-3.49,2.53-4.35L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L10.35,12.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stay_primary_landscape\": {\n    \"name\": \"stay_primary_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"dialpad\": {\n    \"name\": \"dialpad\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"more_time\": {\n    \"name\": \"more_time\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8\\\"></polygon><path d=\\\"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z\\\"></path><polygon points=\\\"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"8.5,8.05 8.5,12.05 11.67,13.95 12.17,13.13 9.5,11.55 9.5,8.05\\\"></polygon><path d=\\\"M13.9,10c0.07,0.32,0.1,0.66,0.1,1c0,2.76-2.24,5-5,5s-5-2.24-5-5s2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5.35 C10.37,5.13,9.7,5,9,5c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6c0-0.34-0.04-0.67-0.09-1H13.9z\\\"></path><polygon points=\\\"15,6 15,4 14,4 14,6 14,6 12,6 12,7 14,7 14,9 15,9 15,7 15,7 17,7 17,6\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"chat\": {\n    \"name\": \"chat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h8v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"ring_volume\": {\n    \"name\": \"ring_volume\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zm.69-12.23l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z\\\"></path>\"\n      }\n    }\n  },\n  \"call_merge\": {\n    \"name\": \"call_merge\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_email_unread\": {\n    \"name\": \"mark_email_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h10.1C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1 H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9C20.74,9.75,21.42,9.42,22,8.98z M16,5c0,1.66,1.34,3,3,3 s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,7.22V15c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h8.18C12.07,4.31,12,4.65,12,5H4l6,3.82l2.81-1.79 c0.24,0.26,0.53,0.47,0.85,0.64L10,10L4,6.18V15h12V7.82C16.37,7.68,16.71,7.48,17,7.22z M13,5c0,1.1,0.9,2,2,2s2-0.9,2-2 s-0.9-2-2-2S13,3.9,13,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"list_alt\": {\n    \"name\": \"list_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"unsubscribe\": {\n    \"name\": \"unsubscribe\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z\\\"></path>\"\n      }\n    }\n  },\n  \"message\": {\n    \"name\": \"message\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h16v12H5.17L4 17.17V4m0-2c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4zm2 10h12v2H6v-2zm0-3h12v2H6V9zm0-3h12v2H6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"domain_verification\": {\n    \"name\": \"domain_verification\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54\\\"></polygon><path d=\\\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V7h10V15z\\\"></path><polygon points=\\\"13.18,9.23 12.47,8.53 8.94,12.06 7.53,10.65 6.82,11.35 8.94,13.47\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"nat\": {\n    \"name\": \"nat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z\\\"></path><path d=\\\"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M5.93,10.5H10v-1H5.93C5.71,8.64,4.93,8,4,8c-1.1,0-2,0.9-2,2s0.9,2,2,2C4.93,12,5.71,11.36,5.93,10.5z M4,11 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S4.55,11,4,11z\\\"></path><path d=\\\"M18,10l-3-2v1.5h-3.03C11.72,5.87,8.7,3,5,3v1c3.31,0,6,2.69,6,6s-2.69,6-6,6v1c3.7,0,6.72-2.87,6.97-6.5H15V12L18,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"document_scanner\": {\n    \"name\": \"document_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,3H4v3H2V1h5V3z M22,6V1h-5v2h3v3H22z M7,21H4v-3H2v5h5V21z M20,18v3h-3v2h5v-5H20z M17,6H7v12h10V6z M19,18 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2V18z M15,8H9v2h6V8z M15,11H9v2h6V11z M15,14H9v2h6V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,2.5H3.5V5H2V1h4V2.5z M16.5,5l0-2.5l-2.5,0L14,1l4,0l0,4L16.5,5z M14,17.5h2.5V15H18v4h-4V17.5z M3.5,15l0,2.5l2.5,0 L6,19l-4,0l0-4L3.5,15z M13.49,14.5H6.5l0.01-9h6.99L13.49,14.5z M6.43,4C5.64,4,5,4.67,5,5.5v9C5,15.33,5.64,16,6.43,16h7.14 c0.79,0,1.43-0.67,1.43-1.5v-9C15,4.67,14.36,4,13.57,4H6.43z M12,7H8v1.5h4V7z M12,9.25H8v1.5h4V9.25z M12,11.5H8V13h4V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"contacts\": {\n    \"name\": \"contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM4 0h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 7.49C17 13.9 13.69 13 12 13s-5 .9-5 2.99V17h10v-1.01zm-8.19-.49c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_calls\": {\n    \"name\": \"swap_calls\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_received\": {\n    \"name\": \"call_received\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z\\\"></path>\"\n      }\n    }\n  },\n  \"call_split\": {\n    \"name\": \"call_split\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_disabled\": {\n    \"name\": \"person_add_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6m0-2c-2.21 0-4 1.79-4 4 0 .18.03.35.05.52l3.43 3.43c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4zm1.69 10.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zm-3.68 1.97L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3M1.41 1.71L0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71zM6 10v-.88l.88.88H6z\\\"></path>\"\n      }\n    }\n  },\n  \"3p\": {\n    \"name\": \"3p\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4.01c-1.1,0-2,0.9-2,2L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z M12,10 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,10,12,10z M16,13.43c0-0.81-0.48-1.53-1.22-1.85C13.93,11.21,12.99,11,12,11 c-0.99,0-1.93,0.21-2.78,0.58C8.48,11.9,8,12.62,8,13.43V14h8V13.43z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sip\": {\n    \"name\": \"sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,4h16c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6C2,4.9,2.9,4,4,4z M4,6v12h16V6H4z M11,9h2v6h-2V9z M14,9 h4c0.55,0,1,0.45,1,1v2c0,0.55-0.45,1-1,1h-2.5v2H14V9z M17.5,10.5h-2v1h2V10.5z M6.5,11.25H9c0.55,0,1,0.45,1,1V14 c0,0.55-0.45,1-1,1H5v-1.5h3.5v-0.75H6c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h4v1.5H6.5V11.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_to_inbox\": {\n    \"name\": \"forward_to_inbox\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,12.5l3,3l-3,3V16h-3v-1h3V12.5z M11,15H4V6.18L10,10l6-3.82V12h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10 c0,0.55,0.45,1,1,1h7L11,15z M16,5l-6,3.82L4,5H16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_lock\": {\n    \"name\": \"phonelink_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_phone\": {\n    \"name\": \"contact_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zm-2.99-1.01L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_disabled\": {\n    \"name\": \"phone_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5 c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"textsms\": {\n    \"name\": \"textsms\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key\": {\n    \"name\": \"vpn_key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 19h-6v-4h-2.68c-1.14 2.42-3.6 4-6.32 4-3.86 0-7-3.14-7-7s3.14-7 7-7c2.72 0 5.17 1.58 6.32 4H24v6h-2v4zm-4-2h2v-4h2v-2H11.94l-.23-.67C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_share\": {\n    \"name\": \"screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z\\\"></path>\"\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "sphinx_design/compiled/material_regular.json",
    "content": "{\n  \"auto_delete\": {\n    \"name\": \"auto_delete\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4\\\"></polygon><path d=\\\"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M16,21c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z\\\"></path><polygon points=\\\"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,4 11,4 10,3 6,3 5,4 3,4 3,5 13,5\\\"></polygon><path d=\\\"M12.5,8c-0.17,0-0.33,0.03-0.5,0.05V6H4v8c0,0.55,0.45,1,1,1h3.76c0.81,1.21,2.18,2,3.74,2c2.49,0,4.5-2.01,4.5-4.5 S14.99,8,12.5,8z M12.5,16C10.57,16,9,14.43,9,12.5S10.57,9,12.5,9s3.5,1.57,3.5,3.5S14.43,16,12.5,16z\\\"></path><polygon points=\\\"13,12.42 13,10 12,10 12,13 14.6,14.5 15.1,13.63\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_alert\": {\n    \"name\": \"add_alert\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72C7.37 5.03 5.12 7.75 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z\\\"></path>\"\n      }\n    }\n  },\n  \"warning\": {\n    \"name\": \"warning\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_important\": {\n    \"name\": \"notification_important\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-5 0h-2v-2h2v2zm0-4h-2V8h2v4zm-1 10c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"error_outline\": {\n    \"name\": \"error_outline\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"error\": {\n    \"name\": \"error\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"warning_amber\": {\n    \"name\": \"warning_amber\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,5.99L19.53,19H4.47L12,5.99 M12,2L1,21h22L12,2L12,2z\\\"></path><polygon points=\\\"13,16 11,16 11,18 13,18\\\"></polygon><polygon points=\\\"13,10 11,10 11,15 13,15\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"recommend\": {\n    \"name\": \"recommend\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><title>ic_recommend_24px</title><path d=\\\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z\\\"></title>\"\n      }\n    }\n  },\n  \"plus_one\": {\n    \"name\": \"plus_one\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4zm4.5-1.92V7.9l2.5-.5V18h2V5z\\\"></path>\"\n      }\n    }\n  },\n  \"mood_bad\": {\n    \"name\": \"mood_bad\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 3c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_mma\": {\n    \"name\": \"sports_mma\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z\\\"></path><path d=\\\"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8h10.36c0.45,0,0.89-0.36,0.98-0.8l0.8-4C18.99,11.06,19,10.93,19,10.8V8C19,7.45,18.55,7,18,7z M15,10 H7V7h8V10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,15.5C6,15.78,6.22,16,6.5,16h7c0.28,0,0.5-0.22,0.5-0.5V14H6V15.5z\\\"></path><path d=\\\"M14,7c-0.55,0-1,0.45-1,1l-0.01-3c0-0.55-0.45-1-1-1H6C5.45,4,5,4.45,5,5v4.57c0.01,0.07,0.01,0.13,0.02,0.2l0.57,2.83 C5.63,12.83,5.84,13,6.08,13h7.85c0.23,0,0.45-0.18,0.49-0.4l0.57-2.83c0.01-0.07,0.01-0.13,0.02-0.2V8C15,7.45,14.55,7,14,7z M11,9H7V7h4V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compost\": {\n    \"name\": \"compost\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.87,11.81c-0.23-0.38-0.37-0.83-0.37-1.31C12.5,9.12,13.62,8,15,8l1,0c1.51,0,2-1,2-1s0.55,6-3,6 c-0.49,0-0.94-0.14-1.32-0.38c-0.24,0.64-0.59,1.76-0.76,2.96c1.26,0.22,2.28,0.89,2.77,1.77c1.69-1.17,2.81-3.13,2.81-5.35h3 c0,5.24-4.26,9.5-9.5,9.5S2.5,17.24,2.5,12S6.76,2.5,12,2.5V0l4,4l-4,4V5.5c-3.58,0-6.5,2.92-6.5,6.5c0,2.21,1.11,4.17,2.81,5.35 c0.51-0.92,1.63-1.62,2.98-1.8c-0.09-0.69-0.26-1.42-0.49-2.03C10.45,13.82,10,14,9.5,14c-1.1,0-2-0.9-2-2v-0.99 c0-0.56-0.19-1.09-0.5-1.51c0,0,4.45-0.23,4.5,2.5c0,0.29-0.06,0.56-0.17,0.8C10.91,12.48,10.47,12.2,10,12 c0.58,0.43,1.37,1.37,2,2.6c0.67-1.62,1.68-3.27,3-4.6C14.24,10.52,13.53,11.12,12.87,11.81z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.4,10.69c0.07-0.18,0.1-0.37,0.1-0.57C9.5,8,6,8,6,8s0.25,0.27,0.24,1.25l0.01,0.88c0,0.9,0.73,1.62,1.62,1.62 c0.42,0,0.8-0.16,1.09-0.42c0.16,0.4,0.4,1.1,0.42,1.72c-1.06,0.16-1.96,0.73-2.46,1.51C5.46,13.57,4.5,11.9,4.5,10 c0-3.03,2.47-5.5,5.5-5.5h0v2l3.5-3.25L10,0v2h0c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8h-2.5c0,1.9-0.97,3.57-2.43,4.56 c-0.49-0.77-1.36-1.33-2.39-1.5c0.11-0.95,0.33-1.57,0.63-2.38C11.63,10.88,12,11,12.4,11C15,11,15,6.91,15,6c0,0-0.5,1-2,1h-0.6 c-1.1,0-2,0.9-2,2c0,0.38,0.11,0.74,0.29,1.04c0.14-0.15,1.05-1.09,1.81-1.54c-0.48,0.4-1.78,1.93-2.5,3.71 C9.42,11.08,8.51,10.17,8.25,10C8.69,10.17,9.24,10.58,9.4,10.69z\\\"></path></g>\"\n      }\n    }\n  },\n  \"front_hand\": {\n    \"name\": \"front_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.75,8c-0.69,0-1.25,0.56-1.25,1.25V15H18c-1.65,0-3,1.35-3,3h-1c0-2.04,1.53-3.72,3.5-3.97l0-10.78 C17.5,2.56,16.94,2,16.25,2C15.56,2,15,2.56,15,3.25V11h-1V1.25C14,0.56,13.44,0,12.75,0S11.5,0.56,11.5,1.25V11h-1V2.75 c0-0.69-0.56-1.25-1.25-1.25S8,2.06,8,2.75V12H7V5.75C7,5.06,6.44,4.5,5.75,4.5S4.5,5.06,4.5,5.75v10c0,4.56,3.69,8.25,8.25,8.25 S21,20.31,21,15.75v-6.5C21,8.56,20.44,8,19.75,8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.5,20c-3.87,0-7-3.13-7-7V5c0-0.55,0.45-1,1-1s1,0.45,1,1v5h1V2.25c0-0.55,0.45-1,1-1s1,0.45,1,1V9h1V1 c0-0.55,0.45-1,1-1s1,0.45,1,1v8h1V2.5c0-0.55,0.45-1,1-1s1,0.45,1,1l0,9.04c-1.69,0.24-3,1.7-3,3.46h1c0-1.38,1.12-2.5,2.5-2.5h0.5 v-5c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V13C17.5,16.87,14.37,20,10.5,20z\\\"></path>\"\n      }\n    }\n  },\n  \"safety_divider\": {\n    \"name\": \"safety_divider\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,5h2v14h-2V5z M5,12c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C3,11.1,3.9,12,5,12z M7.78,13.58 C6.93,13.21,5.99,13,5,13s-1.93,0.21-2.78,0.58C1.48,13.9,1,14.62,1,15.43L1,16h8l0-0.57C9,14.62,8.52,13.9,7.78,13.58z M19,12 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C17,11.1,17.9,12,19,12z M21.78,13.58C20.93,13.21,19.99,13,19,13s-1.93,0.21-2.78,0.58 C15.48,13.9,15,14.62,15,15.43L15,16h8l0-0.57C23,14.62,22.52,13.9,21.78,13.58z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_2\": {\n    \"name\": \"groups_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.27,12h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C14.67,7.04,13.44,6,12,6S9.33,7.04,9.09,8.47l-0.3,1.79 C8.64,11.17,9.34,12,10.27,12z\\\"></path><path d=\\\"M1.66,11.11c-0.13,0.26-0.18,0.57-0.1,0.88c0.16,0.69,0.76,1.03,1.53,1c0,0,1.49,0,1.95,0c0.83,0,1.51-0.58,1.51-1.29 c0-0.14-0.03-0.27-0.07-0.4c-0.01-0.03-0.01-0.05,0.01-0.08c0.09-0.16,0.14-0.34,0.14-0.53c0-0.31-0.14-0.6-0.36-0.82 c-0.03-0.03-0.03-0.06-0.02-0.1c0.07-0.2,0.07-0.43,0.01-0.65C6.1,8.69,5.71,8.4,5.27,8.38c-0.03,0-0.05-0.01-0.07-0.03 C5.03,8.14,4.72,8,4.37,8C4.07,8,3.8,8.1,3.62,8.26C3.59,8.29,3.56,8.29,3.53,8.28c-0.14-0.06-0.3-0.09-0.46-0.09 c-0.65,0-1.18,0.49-1.24,1.12c0,0.02-0.01,0.04-0.03,0.06c-0.29,0.26-0.46,0.65-0.41,1.05c0.03,0.22,0.12,0.43,0.25,0.6 C1.67,11.04,1.67,11.08,1.66,11.11z\\\"></path><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M22,11v-0.5c0-1.1-0.9-2-2-2h-2c-0.42,0-0.65,0.48-0.39,0.81l0.7,0.63C18.12,10.25,18,10.61,18,11c0,1.1,0.9,2,2,2 S22,12.1,22,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.22,10h3.56c0.63,0,1.1-0.58,0.98-1.2l-0.37-1.84C12.16,5.82,11.16,5,10,5S7.84,5.82,7.61,6.96L7.24,8.8 C7.12,9.42,7.59,10,8.22,10z\\\"></path><path d=\\\"M1.63,9.49C1.52,9.7,1.49,9.95,1.54,10.2c0.13,0.55,0.61,0.83,1.22,0.8c0,0,1.19,0,1.56,0C5,11,5.54,10.54,5.54,9.97 c0-0.11-0.02-0.22-0.06-0.32c-0.01-0.02-0.01-0.04,0-0.06c0.07-0.13,0.11-0.27,0.11-0.42c0-0.25-0.11-0.48-0.29-0.66 C5.28,8.49,5.28,8.46,5.29,8.43c0.05-0.16,0.06-0.34,0.01-0.52C5.18,7.56,4.86,7.32,4.51,7.3c-0.02,0-0.04-0.01-0.05-0.03 C4.32,7.11,4.08,7,3.8,7c-0.24,0-0.46,0.08-0.6,0.21C3.18,7.23,3.15,7.23,3.12,7.22C3.01,7.18,2.89,7.15,2.76,7.15 c-0.52,0-0.94,0.39-0.99,0.9c0,0.02-0.01,0.03-0.02,0.05C1.51,8.31,1.38,8.62,1.42,8.94c0.02,0.18,0.09,0.34,0.2,0.48 C1.64,9.44,1.64,9.47,1.63,9.49z\\\"></path><path d=\\\"M16.5,11c0.83,0,1.5-0.67,1.5-1.5c0-0.04-0.01-0.07-0.01-0.11H18V9.01c0-0.83-0.68-1.51-1.51-1.51h-1.61 c-0.32,0-0.49,0.37-0.29,0.61l0.65,0.58C15.09,8.93,15,9.2,15,9.5C15,10.33,15.67,11,16.5,11z\\\"></path><path d=\\\"M13.9,11.93C12.87,11.41,11.54,11,10,11c-1.54,0-2.87,0.41-3.9,0.93C5.42,12.26,5,12.96,5,13.72L5,15h10l0-1.28 C15,12.96,14.58,12.26,13.9,11.93z\\\"></path><path d=\\\"M18.74,12.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,15h4l0-1.13 C20,13.05,19.5,12.31,18.74,12.01z\\\"></path><path d=\\\"M3.5,11.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,12.31,0,13.05,0,13.87L0,15h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,11.65,3.94,11.6,3.5,11.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"groups\": {\n    \"name\": \"groups\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,18H6l0-1.61c0-1.18,0.68-2.26,1.76-2.73 C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1 C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85 C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M12,6c1.66,0,3,1.34,3,3 c0,1.66-1.34,3-3,3s-3-1.34-3-3C9,7.34,10.34,6,12,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"girl\": {\n    \"name\": \"girl\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,16v4h-4v-4H8l2.38-6.38 C10.63,8.95,11.28,8.5,12,8.5s1.37,0.45,1.62,1.12L16,16H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z M11.5,13v3h-3v-3H7l1.9-4.76 C9.08,7.79,9.52,7.5,10,7.5s0.92,0.29,1.1,0.74L13,13H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"piano\": {\n    \"name\": \"piano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M14,14.5h0.25V19h-4.5v-4.5H10 c0.55,0,1-0.45,1-1V5h2v8.5C13,14.05,13.45,14.5,14,14.5z M5,5h2v8.5c0,0.55,0.45,1,1,1h0.25V19H5V5z M19,19h-3.25v-4.5H16 c0.55,0,1-0.45,1-1V5h2V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7,15.5H4.5v-11H6v7C6,11.78,6.22,12,6.5,12H7V15.5z M12,15.5H8V12h0.5C8.78,12,9,11.78,9,11.5v-7h2v7c0,0.28,0.22,0.5,0.5,0.5H12 V15.5z M15.5,15.5H13V12h0.5c0.28,0,0.5-0.22,0.5-0.5v-7h1.5V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people_outline\": {\n    \"name\": \"people_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 13c-1.2 0-3.07.34-4.5 1-1.43-.67-3.3-1-4.5-1C5.33 13 1 14.08 1 16.25V19h22v-2.75c0-2.17-4.33-3.25-6.5-3.25zm-4 4.5h-10v-1.25c0-.54 2.56-1.75 5-1.75s5 1.21 5 1.75v1.25zm9 0H14v-1.25c0-.46-.2-.86-.52-1.22.88-.3 1.96-.53 3.02-.53 2.44 0 5 1.21 5 1.75v1.25zM7.5 12c1.93 0 3.5-1.57 3.5-3.5S9.43 5 7.5 5 4 6.57 4 8.5 5.57 12 7.5 12zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 5.5c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"group\": {\n    \"name\": \"group\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_off\": {\n    \"name\": \"notifications_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18.69L7.84 6.14 5.27 3.49 4 4.76l2.8 2.8v.01c-.52.99-.8 2.16-.8 3.42v5l-2 2v1h13.73l2 2L21 19.72l-1-1.03zM12 22c1.11 0 2-.89 2-2h-4c0 1.11.89 2 2 2zm6-7.32V11c0-3.08-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.15.03-.29.08-.42.12-.1.03-.2.07-.3.11h-.01c-.01 0-.01 0-.02.01-.23.09-.46.2-.68.31 0 0-.01 0-.01.01L18 14.68z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_objects\": {\n    \"name\": \"emoji_objects\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56C7.77,15.6,8,16.13,8,16.69 V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31c0-0.55,0.22-1.09,0.64-1.46 C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M12.5,11.41V14h-1v-2.59L9.67,9.59 l0.71-0.71L12,10.5l1.62-1.62l0.71,0.71L12.5,11.41z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M14.91,7.07c-0.01-0.04-0.01-0.08-0.02-0.12c-0.06-0.28-0.15-0.56-0.26-0.82c-0.02-0.05-0.04-0.09-0.06-0.14 c-0.11-0.26-0.25-0.5-0.4-0.74c-0.03-0.04-0.05-0.08-0.08-0.11c-0.16-0.23-0.34-0.46-0.55-0.66c-0.02-0.02-0.03-0.03-0.05-0.05 c-0.2-0.2-0.42-0.38-0.66-0.54c-0.02-0.02-0.04-0.03-0.06-0.05c-0.24-0.16-0.49-0.29-0.75-0.41c-0.04-0.02-0.09-0.04-0.13-0.06 c-0.26-0.11-0.53-0.19-0.81-0.25c-0.05-0.01-0.1-0.02-0.15-0.03C10.64,3.04,10.34,3.01,10.04,3C10.03,3,10.01,3,10,3 C9.9,3,9.79,3.01,9.69,3.02c-0.06,0-0.12,0-0.18,0.01C9.31,3.04,9.12,3.07,8.93,3.11c-1.94,0.4-3.49,2-3.84,3.95 c-0.31,1.72,0.26,3.3,1.33,4.4C6.78,11.84,7,12.34,7,12.87c0,0.77,0,1.6,0,2.14c0,0.55,0.45,1,1,1h0.28l0,0c0.35,0.6,0.98,1,1.72,1 s1.38-0.4,1.72-1l0,0H12c0.55,0,1-0.45,1-1v-2.13c0-0.52,0.21-1.02,0.58-1.4C14.45,10.57,15,9.35,15,8 C15,7.68,14.96,7.37,14.91,7.07z M8.73,6.73L10,8l1.27-1.27l0.71,0.71L10.5,8.91V11h-1V8.91L8.03,7.44L8.73,6.73z M12,15l-2,0l0,0 l0,0l-2,0l0-1h4V15z M12,13H8h0l0-1h4V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_notifications\": {\n    \"name\": \"edit_notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25z M20.85,5.81l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.85,0.85 l1.77,1.77l0.85-0.85C21.05,6.32,21.05,6,20.85,5.81z M18,12.2V17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V3.5 C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7c0.82,0.21,1.57,0.59,2.21,1.09L10.6,10.4V15h4.6L18,12.2z M10,20h4c0,1.1-0.9,2-2,2 S10,21.1,10,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.53,12H9c0-1.93,0-3.5,0-3.5l3.71-3.71C12.19,4.47,11.62,4.23,11,4.1V3c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1 C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1V9.53L12.53,12z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z M14.32,5.27 l1.41,1.41l-3.82,3.82H10.5V9.09L14.32,5.27z M14.81,4.77l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71 l-0.63,0.63L14.81,4.77z\\\"></path>\"\n      }\n    }\n  },\n  \"whatshot\": {\n    \"name\": \"whatshot\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"roller_skating\": {\n    \"name\": \"roller_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,6.5C9,6.22,9.22,6,9.5,6h2.52L12,5H9.5C9.22,5,9,4.78,9,4.5C9,4.22,9.22,4,9.5,4H12V1H4v15h3h13l0-2.88 c0-2.1-1.55-3.53-3.03-3.88l-2.7-0.67C13.4,8.35,12.7,7.76,12.32,7H9.5C9.22,7,9,6.78,9,6.5z M5,23c-1.66,0-3-1.34-3-3s1.34-3,3-3 s3,1.34,3,3S6.66,23,5,23z M19,23c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S20.66,23,19,23z M12,23c-1.66,0-3-1.34-3-3 s1.34-3,3-3s3,1.34,3,3S13.66,23,12,23z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3.5,13.5V1h6.75v2.5H8C7.72,3.5,7.5,3.73,7.5,4S7.72,4.5,8,4.5h2.25v1H8C7.72,5.5,7.5,5.73,7.5,6S7.72,6.5,8,6.5h2.53 c0.19,0.27,0.46,0.47,0.79,0.57l3.4,1.03c1.06,0.32,1.78,1.3,1.78,2.4v3H3.5z M6.5,16.75c0-1.24-1.01-2.25-2.25-2.25 S2,15.51,2,16.75S3.01,19,4.25,19S6.5,17.99,6.5,16.75z M18,16.75c0-1.24-1.01-2.25-2.25-2.25s-2.25,1.01-2.25,2.25 S14.51,19,15.75,19S18,17.99,18,16.75z M12.25,16.75c0-1.24-1.01-2.25-2.25-2.25s-2.25,1.01-2.25,2.25S8.76,19,10,19 S12.25,17.99,12.25,16.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"downhill_skiing\": {\n    \"name\": \"downhill_skiing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18.5,3.4,18.5,4.5z M15.78,20.9l0.76,0.27c0.62,0.21,1.27,0.33,1.96,0.33 c0.84,0,1.65-0.18,2.38-0.5L22,22.13C20.95,22.68,19.76,23,18.5,23c-0.86,0-1.68-0.14-2.45-0.41L2,17.47l0.5-1.41l6.9,2.51 l1.72-4.44L7.55,10.4C6.66,9.46,6.88,7.93,8,7.28l3.48-2.01c1.1-0.64,2.52-0.1,2.91,1.11l0.33,1.08c0.44,1.42,1.48,2.57,2.83,3.14 L18.07,9l1.43,0.46l-1.12,3.45c-2.45-0.4-4.48-2.07-5.38-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1-6.44h0l0,0 c0.46,0.18,0.94,0.31,1.44,0.41L15.78,20.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,3.75C12,2.78,12.78,2,13.75,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C12.79,5.5,12,4.72,12,3.75z M6.83,6.38 c-0.89,0.5-1.13,1.7-0.37,2.43l3.1,2.94L8,15.8l-5.66-2.04L2,14.7l10.85,3.9C13.52,18.86,14.24,19,15,19c1.09,0,2.12-0.29,3-0.8 l-0.74-0.74C16.58,17.81,15.81,18,15,18c-0.6,0-1.14-0.1-1.67-0.29l-0.35-0.12l1.9-5.83c-0.34-0.04-0.67-0.11-0.98-0.2l0,0l0,0 l-1.85,5.7l-2.62-0.94l1.91-4.98L8.74,8.74L10.9,7.5c0.65,1.8,2.31,3.12,4.3,3.28L16,8.31L15.05,8l-0.38,1.17 c-1.22-0.34-2.17-1.31-2.47-2.55l-0.24-0.97C11.72,4.67,10.61,4.2,9.75,4.7L6.83,6.38z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_symbols\": {\n    \"name\": \"emoji_symbols\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><polygon points=\\\"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7\\\"></polygon><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)\\\" width=\\\"11\\\" x=\\\"11.5\\\" y=\\\"16\\\"></rect><circle cx=\\\"14.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z\\\"></path><path d=\\\"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M5.21,14.09l-1.06,1.06C4.02,15.27,4,15.42,4,15.5s0.02,0.23,0.15,0.35C4.27,15.98,4.42,16,4.5,16 s0.23-0.02,0.35-0.15l0.35-0.35l0.71-0.71L5.21,14.09z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.71,11.96c0-0.08-0.02-0.23-0.15-0.35s-0.28-0.15-0.35-0.15c-0.08,0-0.23,0.02-0.35,0.15 c-0.13,0.13-0.15,0.28-0.15,0.35c0,0.08,0.02,0.23,0.15,0.35l0.35,0.35l0.35-0.35C5.69,12.19,5.71,12.04,5.71,11.96z\\\" fill=\\\"none\\\"></path><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"4\\\" y=\\\"3\\\"></rect><polygon points=\\\"4,5 4,6 6,6 6,9 6.99,9 6.99,6 9,6 9,5\\\"></polygon><rect height=\\\".99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.8428 13.8943)\\\" width=\\\"7.07\\\" x=\\\"10.31\\\" y=\\\"13.5\\\"></rect><path d=\\\"M12.71,12.71c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41 C11.68,13.1,12.32,13.1,12.71,12.71z\\\"></path><path d=\\\"M16.71,15.29c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 C17.1,16.32,17.1,15.68,16.71,15.29z\\\"></path><path d=\\\"M12.5,9C13.33,9,14,8.33,14,7.5C14,7.47,14,4,14,4h2V3h-3v3.09C12.84,6.04,12.68,6,12.5,6C11.67,6,11,6.67,11,7.5 S11.67,9,12.5,9z\\\"></path><path d=\\\"M8.04,12.67l-1.41,1.41l-0.71-0.71l0.35-0.35c0.59-0.59,0.59-1.54,0-2.12c-0.29-0.29-0.68-0.44-1.06-0.44 c-0.38,0-0.77,0.15-1.06,0.44c-0.59,0.59-0.59,1.54,0,2.12l0.35,0.35l-1.06,1.06c-0.59,0.59-0.59,1.54,0,2.12 C3.73,16.85,4.12,17,4.5,17s0.77-0.15,1.06-0.44l1.06-1.06l1.41,1.41l0.71-0.71l-1.41-1.41v0l1.41-1.41L8.04,12.67z M4.85,12.32 c-0.13-0.13-0.15-0.28-0.15-0.35c0-0.08,0.02-0.23,0.15-0.35c0.13-0.13,0.28-0.15,0.35-0.15c0.08,0,0.23,0.02,0.35,0.15 s0.15,0.28,0.15,0.35c0,0.08-0.02,0.23-0.15,0.35l-0.35,0.35L4.85,12.32z M4.85,15.85C4.73,15.98,4.58,16,4.5,16 s-0.23-0.02-0.35-0.15C4.02,15.73,4,15.58,4,15.5s0.02-0.23,0.15-0.35l1.06-1.06l0.71,0.71L5.21,15.5L4.85,15.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interests\": {\n    \"name\": \"interests\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.02,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.23,13,7.02,13z M13,13v8h8v-8H13z M7,2l-5,9h10L7,2z M19.25,2.5 c-1.06,0-1.81,0.56-2.25,1.17c-0.44-0.61-1.19-1.17-2.25-1.17C13.19,2.5,12,3.78,12,5.25c0,2,2.42,3.42,5,5.75 c2.58-2.33,5-3.75,5-5.75C22,3.78,20.81,2.5,19.25,2.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,11c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3S7.65,11,6,11z M11,17h6v-6h-6V17z M2.01,9H10L6,2L2.01,9z M15.72,2.5 c-0.81,0-1.39,0.43-1.72,0.89c-0.33-0.47-0.91-0.89-1.72-0.89c-1.19,0-2.1,0.98-2.1,2.1c0,1.53,1.85,2.61,3.82,4.4 c1.98-1.78,3.82-2.87,3.82-4.4C17.82,3.48,16.92,2.5,15.72,2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_active\": {\n    \"name\": \"notifications_active\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z\\\"></path>\"\n      }\n    }\n  },\n  \"follow_the_signs\": {\n    \"name\": \"follow_the_signs\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_3\": {\n    \"name\": \"groups_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M12,12c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,7.34,9,9C9,10.66,10.34,12,12,12z\\\"></path><rect height=\\\"3.54\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.6066 6.0503)\\\" width=\\\"3.54\\\" x=\\\"2.23\\\" y=\\\"9.23\\\"></rect><polygon points=\\\"20,9 17.5,13 22.5,13\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.6317 4.818)\\\" width=\\\"2.83\\\" x=\\\"2.09\\\" y=\\\"6.59\\\"></rect><polygon points=\\\"16.5,6.5 14.5,10 18.5,10\\\"></polygon><path d=\\\"M13.9,10.93C12.87,10.41,11.54,10,10,10c-1.54,0-2.87,0.41-3.9,0.93C5.42,11.26,5,11.96,5,12.72L5,14h10l0-1.28 C15,11.96,14.58,11.26,13.9,10.93z\\\"></path><path d=\\\"M18.74,11.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,14h4l0-1.13 C20,12.05,19.5,11.31,18.74,11.01z\\\"></path><path d=\\\"M3.5,10.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,11.31,0,12.05,0,12.87L0,14h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,10.65,3.94,10.6,3.5,10.6z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications\": {\n    \"name\": \"notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_food_beverage\": {\n    \"name\": \"emoji_food_beverage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20,3H9v2.4l1.81,1.45C10.93,6.94,11,7.09,11,7.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C6.22,12,6,11.78,6,11.5V7.24 c0-0.15,0.07-0.3,0.19-0.39L8,5.4V3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.9,2-2V5C22,3.89,21.11,3,20,3z M20,8h-2V5h2V8z\\\"></path><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M15,5H7.75v2.17l1.14,0.76C8.96,7.97,9,8.05,9,8.13v2.62C9,10.89,8.89,11,8.75,11h-2.5C6.11,11,6,10.89,6,10.75V8.13 c0-0.08,0.04-0.16,0.11-0.21l1.14-0.76V5H5v7c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2V9h1c0.55,0,1-0.45,1-1V6C16,5.45,15.55,5,15,5z M15,8h-1V6h1V8z\\\"></path><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"domain\": {\n    \"name\": \"domain\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12,7V3H2v18h20V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2V7z M10,19H8v-2h2V19z M10,15H8v-2h2 V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M20,19h-8v-2h2v-2h-2v-2h2v-2h-2V9h8V19z M18,11h-2v2h2V11z M18,15h-2v2h2V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_off\": {\n    \"name\": \"person_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8.65,5.82C9.36,4.72,10.6,4,12,4c2.21,0,4,1.79,4,4c0,1.4-0.72,2.64-1.82,3.35L8.65,5.82z M20,17.17 c-0.02-1.1-0.63-2.11-1.61-2.62c-0.54-0.28-1.13-0.54-1.77-0.76L20,17.17z M21.19,21.19L2.81,2.81L1.39,4.22l8.89,8.89 c-1.81,0.23-3.39,0.79-4.67,1.45C4.61,15.07,4,16.1,4,17.22V20h13.17l2.61,2.61L21.19,21.19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.64,9.51C12.46,8.98,13,8.05,13,7c0-1.66-1.34-3-3-3C8.95,4,8.02,4.54,7.49,5.36L11.64,9.51z M15.99,13.87 c-0.07-0.62-0.41-1.18-0.95-1.5c-0.35-0.21-0.72-0.39-1.1-0.56L15.99,13.87z M2.93,2.93L1.87,3.99l7.07,7.07 c-1.44,0.15-2.78,0.62-3.97,1.31C4.36,12.72,4,13.39,4,14.09V16h9.88l2.13,2.13l1.06-1.06L2.93,2.93z\\\"></path>\"\n      }\n    }\n  },\n  \"assist_walker\": {\n    \"name\": \"assist_walker\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12.5\\\" cy=\\\"4.5\\\" r=\\\"2\\\"></circle><path d=\\\"M19.77,17.72l-0.64-6.37C19.06,10.58,18.41,10,17.64,10H16c-1.5-0.02-2.86-0.54-3.76-1.44l-2-1.98 C10.08,6.42,9.62,6,8.83,6C8.32,6,7.81,6.2,7.42,6.59L4.08,9.91c-0.53,0.68-0.51,1.57-0.21,2.13l1.43,2.8l-3.15,4.05l1.57,1.24 l3.68-4.73l-0.17-1.36L8,14.75V20h2v-6.12l-2.12-2.12l2.36-2.36c0.94,0.94,1.72,1.82,3.59,2.32L13,20h1.5l0.41-3.5h3.18l0.14,1.22 c-0.44,0.26-0.73,0.74-0.73,1.28c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5C20.5,18.46,20.21,17.98,19.77,17.72z M15.09,15 l0.41-3.5h2l0.41,3.5H15.09z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.25,15.05l-0.64-4.92c-0.06-0.5-0.49-0.88-0.99-0.88H12c-0.48-0.16-0.93-0.41-1.3-0.78L8.66,6.44c0,0-0.01,0-0.01-0.01 L8.64,6.42l0,0c-0.59-0.57-1.52-0.57-2.1,0.01l-2.31,2.3c-0.25,0.35-0.34,0.8-0.25,1.22l0.76,3.28l-2.32,3.09l1.22,0.88l2.68-3.59 l-0.19-1.19l1.11,1.08V17h1.5v-4.2l-2.2-2.2l2.08-2.08c1.09,1.09,1.34,1.42,2.23,1.87L10,17h1.01l0.39-3h2.71l0.16,1.26 c-0.31,0.23-0.52,0.57-0.52,0.99c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25C16.25,15.65,15.81,15.17,15.25,15.05z M11.53,13 l0.36-2.75h1.73l0,0L13.97,13H11.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thunderstorm\": {\n    \"name\": \"thunderstorm\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.92,7.02C17.45,4.18,14.97,2,12,2C9.82,2,7.83,3.18,6.78,5.06C4.09,5.41,2,7.74,2,10.5C2,13.53,4.47,16,7.5,16h10 c2.48,0,4.5-2.02,4.5-4.5C22,9.16,20.21,7.23,17.92,7.02z\\\"></path><polygon points=\\\"14.8,17 11.9,20.32 13.9,21.32 11.55,24 14.2,24 17.1,20.68 15.1,19.68 17.45,17\\\"></polygon><polygon points=\\\"8.8,17 5.9,20.32 7.9,21.32 5.55,24 8.2,24 11.1,20.68 9.1,19.68 11.45,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.69,6.01c-0.35-2.23-2.25-3.95-4.58-4C10.07,2,10.04,2,10,2C8.19,2,6.6,3.02,5.8,4.52C3.71,4.74,2.05,6.49,2,8.65 C1.95,11,3.81,12.94,6.15,13l8.35,0c1.93,0,3.5-1.57,3.5-3.5C18,7.63,16.54,6.1,14.69,6.01z\\\"></path><polygon points=\\\"12.55,14 10.06,16.68 11.84,17.7 9.87,20 11.84,20 14.16,17.3 12.44,16.32 14.6,14\\\"></polygon><polygon points=\\\"7.55,14 5.06,16.68 6.84,17.7 4.87,20 6.84,20 9.16,17.3 7.44,16.32 9.6,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_football\": {\n    \"name\": \"sports_football\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.02,15.62c-0.08,2.42,0.32,4.34,0.67,4.69s2.28,0.76,4.69,0.67L3.02,15.62z\\\"></path><path d=\\\"M13.08,3.28C10.75,3.7,8.29,4.62,6.46,6.46s-2.76,4.29-3.18,6.62l7.63,7.63c2.34-0.41,4.79-1.34,6.62-3.18 s2.76-4.29,3.18-6.62L13.08,3.28z M9.9,15.5l-1.4-1.4l5.6-5.6l1.4,1.4L9.9,15.5z\\\"></path><path d=\\\"M20.98,8.38c0.08-2.42-0.32-4.34-0.67-4.69s-2.28-0.76-4.69-0.67L20.98,8.38z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.01,12.49c-0.04,1.57,0.22,2.81,0.45,3.05s1.47,0.5,3.05,0.45L4.01,12.49z\\\"></path><path d=\\\"M15.99,7.51c0.04-1.57-0.22-2.81-0.45-3.05c-0.23-0.23-1.47-0.5-3.05-0.45L15.99,7.51z\\\"></path><path d=\\\"M11.18,4.11C9.49,4.34,7.65,4.96,6.31,6.31c-1.34,1.34-1.97,3.19-2.19,4.88l4.71,4.71c1.69-0.23,3.53-0.85,4.88-2.19 s1.97-3.19,2.19-4.88L11.18,4.11z M8.23,12.47l-0.71-0.71l4.24-4.24l0.71,0.71L8.23,12.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"luggage\": {\n    \"name\": \"luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M9.5,18H8V9h1.5V18z M12.75,18 h-1.5V9h1.5V18z M13.5,6h-3V3.5h3V6z M16,18h-1.5V9H16V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vaccines\": {\n    \"name\": \"vaccines\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,5.5H8V4h0.5c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1H6v1.5H3c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1V15c0,1.1,0.9,2,2,2h1v4l2,1.5V17h1c1.1,0,2-0.9,2-2V7.5c0.55,0,1-0.45,1-1C12,5.95,11.55,5.5,11,5.5z M9,9H7.25 C6.84,9,6.5,9.34,6.5,9.75c0,0.41,0.34,0.75,0.75,0.75H9V12H7.25c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75H9L9,15H5 V7.5h4V9z M19.5,10.5V10c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-5c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1v0.5c0,0.5-1.5,1.16-1.5,3V20 c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-6.5C21,11.66,19.5,11,19.5,10.5z M16.5,10.5V10h1v0.5c0,1.6,1.5,2,1.5,3V14h-4 c0-0.21,0-0.39,0-0.5C15,12.5,16.5,12.1,16.5,10.5z M15,20c0,0,0-0.63,0-1.5h4V20H15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,9V8.5c0.41,0,0.75-0.34,0.75-0.75C16.5,7.34,16.16,7,15.75,7h-4C11.34,7,11,7.34,11,7.75c0,0.41,0.34,0.75,0.75,0.75 V9c0,0-1.25,1-1.25,2.5v5c0,0.83,0.67,1.5,1.5,1.5h3.5c0.83,0,1.5-0.67,1.5-1.5v-5.25C17,10,15.75,9,15.75,9z M15.5,16.5H12V15h3.5 V16.5z M15.5,12H12v-0.5c0-1.13,1.25-1.25,1.25-2.5V8.5h1V9c0,1.25,1.25,1.37,1.25,2.5V12z M6,10.5C6,10.78,6.22,11,6.5,11H8v1.5 H4.5v-6H8V8H6.5C6.22,8,6,8.22,6,8.5C6,8.78,6.22,9,6.5,9H8v1H6.5C6.22,10,6,10.22,6,10.5z M2.25,5.75C2.25,6.16,2.59,6.5,3,6.5l0,6 C3,13.33,3.67,14,4.5,14h1v3L7,18.5V14h1c0.83,0,1.5-0.67,1.5-1.5l0-6c0.41,0,0.75-0.34,0.75-0.75C10.25,5.34,9.91,5,9.5,5H7V3.5 h0.5c0.41,0,0.75-0.34,0.75-0.75C8.25,2.34,7.91,2,7.5,2H5C4.59,2,4.25,2.34,4.25,2.75C4.25,3.16,4.59,3.5,5,3.5h0.5V5H3 C2.59,5,2.25,5.34,2.25,5.75z\\\"></path>\"\n      }\n    }\n  },\n  \"boy\": {\n    \"name\": \"boy\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,20v-5h1v-4.5 c0-1.1-0.9-2-2-2h-2c-1.1,0-2,0.9-2,2V15h1v5H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.5,12.5h-1V16h-3v-3.5h-1V9c0-0.83,0.67-1.5,1.5-1.5h2c0.83,0,1.5,0.67,1.5,1.5V12.5z M10,6.5 c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"landslide\": {\n    \"name\": \"landslide\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15.47,13.79 12.89,12.76 6,15.05 2,13.51 2,15.61 6,16.95\\\"></polygon><polygon points=\\\"10.57,11.42 8,8 2,8 2,11.61 6,12.95\\\"></polygon><polygon points=\\\"6,19.05 2,17.72 2,22 22,22 17.03,15.38\\\"></polygon><polygon points=\\\"17,6 17,1 12,0 9,2 9,6 12,8\\\"></polygon><polygon points=\\\"18.5,7 16,9 16,12 18.5,14 23,12 23,8\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"14,5 14,1 10,0 7,2 7,5 10,7\\\"></polygon></g><g><polygon points=\\\"15,6 13,7.5 13,10 15,12 19,10 19,7\\\"></polygon></g><g><polygon points=\\\"12.45,11.73 10.27,10.64 4.94,12.31 2,10.84 2,12.66 5.06,14.19\\\"></polygon></g><g><polygon points=\\\"4.94,15.81 2,14.34 2,18 18,18 13.73,12.88\\\"></polygon></g><g><polygon points=\\\"8.7,9.56 7,7 2,7 2,9.16 5.06,10.69\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"back_hand\": {\n    \"name\": \"back_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,24c-3.26,0-6.19-1.99-7.4-5.02l-3.03-7.61C2.26,10.58,3,9.79,3.81,10.05l0.79,0.26c0.56,0.18,1.02,0.61,1.24,1.16 L7.25,15H8V3.25C8,2.56,8.56,2,9.25,2s1.25,0.56,1.25,1.25V12h1V1.25C11.5,0.56,12.06,0,12.75,0S14,0.56,14,1.25V12h1V2.75 c0-0.69,0.56-1.25,1.25-1.25c0.69,0,1.25,0.56,1.25,1.25V12h1V5.75c0-0.69,0.56-1.25,1.25-1.25S21,5.06,21,5.75V16 C21,20.42,17.42,24,13,24z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.5,13.5c0,3.59-2.91,6.5-6.5,6.5l0,0c-2.69,0-5.11-1.64-6.11-4.14L2.31,9.37C2,8.59,2.73,7.8,3.53,8.05l0.38,0.12 C4.35,8.29,4.7,8.62,4.87,9.04l1.38,3.46H6.5v-10c0-0.55,0.45-1,1-1s1,0.45,1,1V10h1V1c0-0.55,0.45-1,1-1s1,0.45,1,1v9h1V2.25 c0-0.55,0.45-1,1-1s1,0.45,1,1V10h1V5c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"woman_2\": {\n    \"name\": \"woman_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M13.94,8.31C13.62,7.52,12.85,7,12,7s-1.62,0.52-1.94,1.31L7,16h3.5v6h3v-6H17L13.94,8.31z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6,14h3v4h2v-4h3L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"6_ft_apart\": {\n    \"name\": \"6_ft_apart\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fitbit\": {\n    \"name\": \"fitbit\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.89,13.89c1.04,0,1.89-0.85,1.89-1.89s-0.85-1.89-1.89-1.89C18.85,10.11,18,10.96,18,12S18.85,13.89,19.89,13.89z M15.65,13.68c0.93,0,1.68-0.75,1.68-1.68s-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68S14.72,13.68,15.65,13.68z M15.65,9.42 c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68C13.97,8.67,14.72,9.42,15.65,9.42z M15.65,17.93c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68 C13.97,17.17,14.72,17.93,15.65,17.93z M11.41,13.47c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,13.47,11.41,13.47z M11.41,9.21c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,9.21,11.41,9.21z M11.41,17.73c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 C9.93,17.07,10.59,17.73,11.41,17.73z M11.41,22c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47 c-0.81,0-1.47,0.66-1.47,1.47C9.93,21.34,10.59,22,11.41,22z M11.41,4.94c0.81,0,1.47-0.66,1.47-1.47S12.22,2,11.41,2 c-0.81,0-1.47,0.66-1.47,1.47S10.59,4.94,11.41,4.94z M7.16,13.26c0.7,0,1.26-0.57,1.26-1.26s-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26S6.46,13.26,7.16,13.26z M7.16,17.51c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,16.94,6.46,17.51,7.16,17.51z M7.16,9.02c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,8.45,6.46,9.02,7.16,9.02z M3.29,13.05c0.58,0,1.05-0.47,1.05-1.05s-0.47-1.05-1.05-1.05 c-0.58,0-1.05,0.47-1.05,1.05S2.71,13.05,3.29,13.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.31,11.51c0.83,0,1.51-0.68,1.51-1.51s-0.68-1.51-1.51-1.51c-0.83,0-1.51,0.68-1.51,1.51S15.48,11.51,16.31,11.51z M12.92,11.34c0.74,0,1.34-0.6,1.34-1.34s-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34S12.18,11.34,12.92,11.34z M12.92,7.94 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,7.33,12.18,7.94,12.92,7.94z M12.92,14.74 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,14.14,12.18,14.74,12.92,14.74z M9.52,11.18 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,11.18,9.52,11.18z M9.52,7.77 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,7.77,9.52,7.77z M9.52,14.59 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,14.06,8.87,14.59,9.52,14.59z M9.52,18 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,17.47,8.87,18,9.52,18z M9.52,4.36 c0.65,0,1.18-0.53,1.18-1.18S10.17,2,9.52,2C8.87,2,8.35,2.53,8.35,3.18S8.87,4.36,9.52,4.36z M6.13,11.01 c0.56,0,1.01-0.45,1.01-1.01S6.69,8.99,6.13,8.99c-0.56,0-1.01,0.45-1.01,1.01S5.57,11.01,6.13,11.01z M6.13,14.41 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,13.95,5.57,14.41,6.13,14.41z M6.13,7.61 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,7.16,5.57,7.61,6.13,7.61z M3.04,10.84 c0.46,0,0.84-0.38,0.84-0.84S3.5,9.16,3.04,9.16C2.57,9.16,2.2,9.54,2.2,10S2.57,10.84,3.04,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"precision_manufacturing\": {\n    \"name\": \"precision_manufacturing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19.93,8.21l-3.6,1.68L14,7.7V6.3l2.33-2.19l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1L16.65,2.6 c-0.38-0.18-0.83-0.1-1.13,0.2l-1.74,1.6C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.34,4.65,6.98,3.73,5.4,4.07 C4.24,4.32,3.25,5.32,3.04,6.5C2.82,7.82,3.5,8.97,4.52,9.58L7.08,18H4v3h13v-3h-3.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.6c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.2,20.31,8.03,19.93,8.21z M6,8C5.45,8,5,7.55,5,7s0.45-1,1-1s1,0.45,1,1S6.55,8,6,8z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.94,7.32l-2.33,1.05l-2.2-1.87l2.2-1.87l2.33,1.05c0.38,0.17,0.82,0,0.99-0.37c0.17-0.38,0-0.82-0.37-0.99l-2.77-1.25 C13.53,2.95,13.22,2.99,13,3.18l-2,1.7V4.75C11,4.34,10.66,4,10.25,4S9.5,4.34,9.5,4.75v1H7.87C7.49,4.53,6.22,3.71,4.81,4.09 c-0.8,0.22-1.46,0.85-1.7,1.65C2.73,7.05,3.38,8.26,4.44,8.76l1.44,5.74H4V17h10v-2.5h-3.14L7.28,8.25c0.27-0.28,0.47-0.62,0.59-1 H9.5v1C9.5,8.66,9.84,9,10.25,9S11,8.66,11,8.25V8.12l2,1.7C13.14,9.94,13.31,10,13.48,10c0.1,0,0.21-0.02,0.31-0.07l2.77-1.25 c0.38-0.17,0.54-0.62,0.37-0.99C16.76,7.31,16.32,7.15,15.94,7.32z M5.5,5.38c0.62,0,1.12,0.5,1.12,1.12S6.12,7.62,5.5,7.62 S4.38,7.12,4.38,6.5S4.88,5.38,5.5,5.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"king_bed\": {\n    \"name\": \"king_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect fill=\\\"none\\\" height=\\\"3\\\" width=\\\"5\\\" x=\\\"6\\\" y=\\\"7\\\"></rect><rect fill=\\\"none\\\" height=\\\"3\\\" width=\\\"5\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><path d=\\\"M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M11,10H6V7h5V10z M18,10h-5V7h5V10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,8V6c0-0.55-0.45-1-1-1H5C4.45,5,4,5.45,4,6v2C3.45,8,3,8.45,3,9v4h1l0.75,2h0.5L6,13h8l0.75,2h0.5L16,13h1V9 C17,8.45,16.55,8,16,8z M9.5,8H5V6h4.5V8z M15,8h-4.5V6H15V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"reduce_capacity\": {\n    \"name\": \"reduce_capacity\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z\\\"></path>\"\n      }\n    }\n  },\n  \"face_3\": {\n    \"name\": \"face_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M22.91,11.96C22.39,6.32,17.66,2,12,2S1.61,6.32,1.09,11.96l-0.9,9.86C0.09,22.99,1.01,24,2.19,24h19.62 c1.18,0,2.1-1.01,1.99-2.18L22.91,11.96z M4.54,9.13C5.41,9.68,6.43,10,7.5,10C9.36,10,11,9.07,12,7.65C13,9.07,14.64,10,16.5,10 c1.07,0,2.09-0.32,2.96-0.87C19.8,10.02,20,10.99,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8C4,10.99,4.2,10.02,4.54,9.13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M19.81,18.33l-0.93-8.38C18.38,5.42,14.55,2,10,2C5.45,2,1.62,5.42,1.12,9.95l-0.93,8.38C0.09,19.22,0.78,20,1.68,20 h16.65C19.22,20,19.91,19.22,19.81,18.33z M3.9,7.78C4.61,8.24,5.44,8.5,6.32,8.5C7.85,8.5,9.2,7.72,10,6.53 c0.8,1.19,2.15,1.97,3.68,1.97c0.87,0,1.71-0.26,2.42-0.72c0.25,0.7,0.4,1.44,0.4,2.22c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10 C3.5,9.22,3.65,8.47,3.9,7.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public\": {\n    \"name\": \"public\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_volleyball\": {\n    \"name\": \"sports_volleyball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,4.01C3.58,5.84,2,8.73,2,12c0,1.46,0.32,2.85,0.89,4.11L6,14.31V4.01z\\\"></path><path d=\\\"M11,11.42V2.05C9.94,2.16,8.93,2.43,8,2.84v10.32L11,11.42z\\\"></path><path d=\\\"M12,13.15l-8.11,4.68c0.61,0.84,1.34,1.59,2.18,2.2L15,14.89L12,13.15z\\\"></path><path d=\\\"M13,7.96v3.46l8.11,4.68c0.42-0.93,0.7-1.93,0.82-2.98L13,7.96z\\\"></path><path d=\\\"M8.07,21.2C9.28,21.71,10.6,22,12,22c3.34,0,6.29-1.65,8.11-4.16L17,16.04L8.07,21.2z\\\"></path><path d=\\\"M21.92,10.81c-0.55-4.63-4.26-8.3-8.92-8.76v3.6L21.92,10.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.03,16.33C7.93,16.76,8.94,17,10,17c2.41,0,4.54-1.22,5.8-3.08l-2.3-1.33L7.03,16.33z\\\"></path><path d=\\\"M9.5,9.71V3.03C8.61,3.09,7.77,3.32,7,3.68v7.47L9.5,9.71z\\\"></path><path d=\\\"M10,10.58l-5.8,3.35c0.49,0.72,1.11,1.34,1.82,1.83l6.47-3.74L10,10.58z\\\"></path><path d=\\\"M6,4.26C4.19,5.53,3,7.62,3,10c0,1.1,0.26,2.13,0.71,3.05L6,11.73V4.26z\\\"></path><path d=\\\"M10.5,6.82v2.89l5.79,3.34c0.37-0.76,0.61-1.6,0.68-2.49L10.5,6.82z\\\"></path><path d=\\\"M16.97,9.41c-0.29-3.42-3.03-6.14-6.47-6.39v2.64L16.97,9.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kayaking\": {\n    \"name\": \"kayaking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M12,5.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,5.5,12,5.5z M24,17.5c0,0-1.52,0.71-3.93,1.37c-0.82-0.23-1.53-0.75-2.07-1.37c-0.73,0.84-1.8,1.5-3,1.5 s-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5s-2.27-0.66-3-1.5c-0.54,0.61-1.25,1.13-2.07,1.37C1.52,18.21,0,17.5,0,17.5 s2.93-1.36,7.13-2.08l1.35-4.17c0.31-0.95,1.32-1.47,2.27-1.16c0.09,0.03,0.19,0.07,0.27,0.11l0,0l2.47,1.3l2.84-1.5l1.65-3.71 l-0.51-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87,24,17.5,24,17.5z M15.02,12.96l-1.52,0.8l-1.75-0.92 l-0.71,2.17C11.36,15.01,11.68,15,12,15c0.71,0,1.4,0.03,2.07,0.08L15.02,12.96z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,6.25C11.5,7.22,10.72,8,9.75,8S8,7.22,8,6.25S8.78,4.5,9.75,4.5S11.5,5.28,11.5,6.25z M18,17.5h-0.5 c-0.87,0-1.74-0.33-2.5-1h0c-1.52,1.33-3.47,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18L18,17.5z M20,14.5 c0,0-1.43,0.64-3.67,1.19c-0.52-0.27-0.97-0.7-1.33-1.19c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 S5.61,15.34,5,14.5c-0.36,0.49-0.81,0.92-1.33,1.19C1.43,15.14,0,14.5,0,14.5s2.47-1.1,6-1.67l1.07-3.29 c0.26-0.79,1.1-1.22,1.89-0.96C9.05,8.6,9.13,8.64,9.2,8.68l2,1.12l2.44-1.3l1.33-3L14.6,4.51L15.72,2L18,3.02l-1.12,2.51L15.89,5.9 l-3.01,6.77C17,13.16,20,14.5,20,14.5z M12.65,10.72l-1.46,0.8l-1.36-0.77l-0.57,1.77C9.5,12.51,9.75,12.5,10,12.5 c0.63,0,1.24,0.02,1.83,0.07L12.65,10.72z\\\"></path>\"\n      }\n    }\n  },\n  \"man_2\": {\n    \"name\": \"man_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2.5v7h3v-7H16V9C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h2v5h2v-5h2V8.5C13,7.67,12.33,7,11.5,7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"severe_cold\": {\n    \"name\": \"severe_cold\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12,10.41 16,6.41 14.59,5 12,7.59 12,4 10,4 10,7.59 7.41,5 6,6.41 10,10.41 10,12 8.41,12 4.41,8 3,9.41 5.59,12 2,12 2,14 5.59,14 3,16.59 4.41,18 8.41,14 10,14 10,15.59 6,19.59 7.41,21 10,18.41 10,22 12,22 12,18.41 14.59,21 16,19.59 12,15.59 12,14 13.59,14 17.59,18 19,16.59 16.41,14 20,14 20,12 12,12\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"9.75,8.81 13,5.56 11.94,4.5 9.75,6.69 9.75,4 8.25,4 8.25,6.69 6.06,4.5 5,5.56 8.25,8.81 8.25,10.25 6.81,10.25 3.56,7 2.5,8.06 4.69,10.25 2,10.25 2,11.75 4.69,11.75 2.5,13.94 3.56,15 6.81,11.75 8.25,11.75 8.25,13.19 5,16.44 6.06,17.5 8.25,15.31 8.25,18 9.75,18 9.75,15.31 11.94,17.5 13,16.44 9.75,13.19 9.75,11.75 11.19,11.75 14.44,15 15.5,13.94 13.31,11.75 16,11.75 16,10.25 9.75,10.25\\\"></polygon><rect height=\\\"4\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"2\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"location_city\": {\n    \"name\": \"location_city\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_soccer\": {\n    \"name\": \"sports_soccer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,5.45l1.55-1.08 c1.14,0.41,2.11,1.16,2.81,2.12l-0.48,1.67l-0.68,0.23L10.5,6.15V5.45z M13.01,9.13l-1.14,3.37H8.12L6.99,9.13L10,7.02L13.01,9.13 z M7.95,4.37L9.5,5.45v0.7L6.31,8.39L5.63,8.15L5.15,6.49C5.84,5.53,6.82,4.78,7.95,4.37z M6.8,13.55l-1.52,0.13 c-0.79-1-1.26-2.26-1.27-3.63l1.3-0.95L6,9.34l1.19,3.53L6.8,13.55z M11.53,15.8c-0.49,0.13-1,0.2-1.53,0.2s-1.04-0.08-1.53-0.2 l-0.81-1.74l0.32-0.55h4.04l0.32,0.55L11.53,15.8z M14.72,13.69l-1.52-0.13l-0.4-0.68L14,9.34l0.69-0.24l1.3,0.95 C15.98,11.42,15.51,12.68,14.72,13.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ios_share\": {\n    \"name\": \"ios_share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"self_improvement\": {\n    \"name\": \"self_improvement\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,12v-1c-1.67,0-3.28-0.85-4.11-2.16C11.55,8.29,10.91,8,10.27,8H9.73C9.09,8,8.45,8.29,8.11,8.84 C7.28,10.15,5.67,11,4,11v1c2,0,3.51-0.75,4.5-1.96v2.45l-2.77,1.19C5.29,13.88,5,14.31,5,14.79C5,15.46,5.54,16,6.21,16H8 c0,0,0-0.11,0-0.25C8,14.79,8.79,14,9.75,14h2c0.14,0,0.25,0.11,0.25,0.25s-0.11,0.25-0.25,0.25h-2c-0.69,0-1.25,0.56-1.25,1.25 c0,0.05,0,0.25,0,0.25h5.29c0.67,0,1.21-0.54,1.21-1.21c0-0.48-0.29-0.92-0.73-1.11L11.5,12.5v-2.45C12.49,11.25,14,12,16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hive\": {\n    \"name\": \"hive\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"13.79,8 15.59,5 13.79,2 10.21,2 8.41,5 10.21,8\\\"></polygon><polygon points=\\\"10.21,9 8.41,12 10.21,15 13.79,15 15.59,12 13.79,9\\\"></polygon><polygon points=\\\"16.45,11.51 20.04,11.51 21.83,8.51 20.04,5.51 16.45,5.51 14.65,8.51\\\"></polygon><polygon points=\\\"20.04,12.51 16.45,12.51 14.65,15.51 16.45,18.51 20.04,18.51 21.83,15.51\\\"></polygon><polygon points=\\\"7.55,11.51 9.35,8.51 7.55,5.51 3.96,5.51 2.17,8.51 3.96,11.51\\\"></polygon><polygon points=\\\"7.55,12.51 3.96,12.51 2.17,15.51 3.96,18.51 7.55,18.51 9.35,15.51\\\"></polygon><polygon points=\\\"10.21,16 8.41,19 10.21,22 13.79,22 15.59,19 13.79,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8.55,6.66 11.38,6.66 11.39,6.66 12.8,4.34 11.38,2 8.55,2 7.13,4.34 8.55,6.66\\\"></polygon><polygon points=\\\"11.38,13.34 8.55,13.34 8.55,13.34 7.13,15.66 8.55,18 11.38,18 12.8,15.66 11.39,13.34\\\"></polygon><polygon points=\\\"11.38,7.67 8.55,7.67 8.55,7.67 7.13,10 8.55,12.33 8.55,12.33 11.38,12.33 11.39,12.33 12.8,10 11.39,7.67\\\"></polygon><polygon points=\\\"13.67,9.5 16.5,9.5 17.92,7.17 16.5,4.83 13.67,4.83 12.25,7.17\\\"></polygon><polygon points=\\\"13.67,10.5 12.25,12.83 13.67,15.17 16.5,15.17 17.92,12.83 16.5,10.5\\\"></polygon><polygon points=\\\"6.26,9.5 7.68,7.17 6.26,4.83 3.43,4.83 2.02,7.17 3.43,9.5\\\"></polygon><polygon points=\\\"6.26,10.5 3.43,10.5 2.02,12.83 3.43,15.17 6.26,15.17 7.68,12.83\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"poll\": {\n    \"name\": \"poll\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_injury\": {\n    \"name\": \"personal_injury\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8,6c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4S8,8.21,8,6z M17,22h1c1.1,0,2-0.9,2-2l0-4.78 c0-1.12-0.61-2.15-1.61-2.66c-0.43-0.22-0.9-0.43-1.39-0.62L17,22z M12.34,17L15,11.33C14.07,11.12,13.07,11,12,11 c-2.53,0-4.71,0.7-6.39,1.56C4.61,13.07,4,14.1,4,15.22L4,22h2.34C6.12,21.55,6,21.04,6,20.5C6,18.57,7.57,17,9.5,17H12.34z M10,22 l1.41-3H9.5C8.67,19,8,19.67,8,20.5S8.67,22,9.5,22H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,5c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S7,6.66,7,5z M14.5,18c0.83,0,1.5-0.67,1.5-1.5v-4.41 c0-0.7-0.36-1.36-0.97-1.72C14.7,10.17,14.36,10,14,9.84V18H14.5z M10.34,14l2.16-4.68C11.7,9.11,10.86,9,10,9 c-1.84,0-3.56,0.5-5.03,1.37C4.36,10.73,4,11.39,4,12.09V18h1.8c-0.19-0.38-0.3-0.8-0.3-1.25C5.5,15.23,6.73,14,8.25,14H10.34z M8.5,18l1.15-2.5h-1.4C7.56,15.5,7,16.06,7,16.75S7.56,18,8.25,18H8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied\": {\n    \"name\": \"sentiment_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-.73 0-1.38-.18-1.96-.52-.12.14-.86.98-1.01 1.15.86.55 1.87.87 2.97.87 1.11 0 2.12-.33 2.98-.88-.97-1.09-.01-.02-1.01-1.15-.59.35-1.24.53-1.97.53z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_kabaddi\": {\n    \"name\": \"sports_kabaddi\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"16.5\\\" cy=\\\"2.38\\\" r=\\\"2\\\"></circle><path d=\\\"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z\\\"></path><path d=\\\"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z\\\"></path><path d=\\\"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"13.5\\\" cy=\\\"2.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12,10.34c-0.81-0.06-1.53-0.32-2.17-0.78l0,0C9.6,9.4,9.38,9.22,9.17,9.01L7.29,7.12c-0.39-0.39-1.02-0.39-1.41,0 L3.07,9.91c-0.22,0.22-0.32,0.52-0.29,0.82l0.42,3.75l-2.75,2.75l0.71,0.71l3.25-3.25l0.04-2L6,14.03L6,18h1v-4.69l-1.96-2.05 l2.51-2.51l0.9,0.9c1.02,1.02,2.13,1.62,3.56,1.69V10.34z\\\"></path><path d=\\\"M9.5,6.99c0.82,0,1.5-0.68,1.5-1.5c0-0.77-0.59-1.38-1.34-1.47C9.61,4.01,9.56,3.99,9.5,3.99C8.68,3.99,8,4.66,8,5.49 C8,5.67,8.05,5.84,8.11,6C8.32,6.57,8.86,6.99,9.5,6.99z\\\"></path><path d=\\\"M19,9.53V6.18l-3.85-1.53c-0.18-0.08-0.37-0.11-0.56-0.11c-0.5,0-0.96,0.25-1.23,0.68l-0.82,1.32 C12,7.46,11.11,8.15,10.08,8.47c0.24,0.21,0.48,0.39,0.74,0.53c0.06,0.03,0.15,0.08,0.26,0.15c0.73-0.34,1.38-0.82,1.91-1.42 l0.44-0.51l0.67,3.33L12,12.24V18h1v-4.8l2.59-2.16L17.16,18h1.08L15.87,6.09L18,6.81v2.72H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hiking\": {\n    \"name\": \"hiking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M17.5,10.78c-1.23-0.37-2.22-1.17-2.8-2.18l-1-1.6 c-0.41-0.65-1.11-1-1.84-1c-0.78,0-1.59,0.5-1.78,1.44S7,23,7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3c1,1.15,2.41,2.01,4,2.34V23 H19V9h-1.5L17.5,10.78z M7.43,13.13l-2.12-0.41c-0.54-0.11-0.9-0.63-0.79-1.17l0.76-3.93c0.21-1.08,1.26-1.79,2.34-1.58l1.16,0.23 L7.43,13.13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M4.9,10.75l1.64,0.32l0.96-4.91L6.84,6.03C6.03,5.87,5.24,6.4,5.08,7.21l-0.57,2.94C4.46,10.43,4.63,10.69,4.9,10.75z M14,18h1V8 h-1l0,1.41c-2.11-0.42-2.13-2.19-3.11-2.97c-0.21-0.17-0.45-0.29-0.7-0.36c-0.81-0.23-1.7,0.27-1.88,1.16C8.15,8.06,6.2,18,6.2,18 h1.53l1.19-6.01l1.58,1.58V18H12v-5.05l-1.46-1.46l0.49-2.48c0.72,0.95,1.76,1.64,2.97,1.89C14,10.9,14,18,14,18z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_none\": {\n    \"name\": \"notifications_none\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clean_hands\": {\n    \"name\": \"clean_hands\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M11,6.13V4h2 c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.48,0-5.5,0-5.5,0v2H9v2.14C7.23,6.51,5.81,7.8,5.26,9.5h3.98 L15,11.65v-0.62C15,8.61,13.28,6.59,11,6.13z M1,22h4V11H1V22z M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82 c0.65,0,1.18-0.53,1.18-1.18l0,0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02L14,22l8-3l0,0C21.99,17.9,21.11,17,20,17z M20,14 c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4s-2,2.9-2,4C18,13.1,18.9,14,20,14z\\\"></path>\"\n      }\n    }\n  },\n  \"person_remove\": {\n    \"name\": \"person_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86V16H2v-2.14C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"female\": {\n    \"name\": \"female\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.5,9.5C17.5,6.46,15.04,4,12,4S6.5,6.46,6.5,9.5c0,2.7,1.94,4.93,4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1 C15.56,14.43,17.5,12.2,17.5,9.5z M8.5,9.5C8.5,7.57,10.07,6,12,6s3.5,1.57,3.5,3.5S13.93,13,12,13S8.5,11.43,8.5,9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.25,8.25C14.25,5.9,12.35,4,10,4S5.75,5.9,5.75,8.25c0,2.09,1.51,3.82,3.5,4.17V14h-1.5v1.5h1.5V17h1.5v-1.5h1.5V14h-1.5 v-1.58C12.74,12.07,14.25,10.34,14.25,8.25z M7.25,8.25C7.25,6.73,8.48,5.5,10,5.5s2.75,1.23,2.75,2.75S11.52,11,10,11 S7.25,9.77,7.25,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_2\": {\n    \"name\": \"diversity_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.1,15.9l1.42-1.42C8.79,12.05,7,10.41,7,8.85C7,7.8,7.8,7,8.85,7c1.11,0,1.54,0.65,2.68,2h0.93 c1.12-1.31,1.53-2,2.68-2c0.87,0,1.55,0.54,1.77,1.32c0.35-0.04,0.68-0.06,1-0.06c0.36,0,0.7,0.03,1.03,0.08 C18.7,6.43,17.13,5,15.15,5c-0.12,0-0.23,0.03-0.35,0.04C14.92,4.71,15,4.37,15,4c0-1.66-1.34-3-3-3S9,2.34,9,4 c0,0.37,0.08,0.71,0.2,1.04C9.08,5.03,8.97,5,8.85,5C6.69,5,5,6.69,5,8.85C5,11.27,7.04,13.16,10.1,15.9z\\\"></path><path d=\\\"M22.5,16.24c-0.32-0.18-0.66-0.29-1-0.35c0.07-0.1,0.15-0.18,0.21-0.28c1.08-1.87,0.46-4.18-1.41-5.26 c-2.09-1.21-4.76-0.39-8.65,0.9l0.52,1.94c3.47-1.14,5.79-1.88,7.14-1.1c0.91,0.53,1.2,1.61,0.68,2.53 c-0.56,0.96-1.33,1-3.07,1.32l-0.47,0.81c0.58,1.62,0.97,2.33,0.39,3.32c-0.53,0.91-1.61,1.2-2.53,0.68 c-0.06-0.03-0.11-0.09-0.17-0.13c-0.3,0.67-0.64,1.24-1.03,1.73c0.07,0.04,0.13,0.09,0.2,0.14c1.87,1.08,4.18,0.46,5.26-1.41 c0.06-0.1,0.09-0.21,0.14-0.32c0.22,0.27,0.48,0.51,0.8,0.69c1.43,0.83,3.27,0.34,4.1-1.1S23.93,17.06,22.5,16.24z\\\"></path><path d=\\\"M12.32,14.01c-0.74,3.58-1.27,5.95-2.62,6.73c-0.91,0.53-2,0.24-2.53-0.68c-0.56-0.96-0.2-1.66,0.39-3.32L7.1,15.93 c-1.7-0.31-2.5-0.33-3.07-1.32c-0.53-0.91-0.24-2,0.68-2.53c0.09-0.05,0.19-0.08,0.29-0.11c-0.35-0.56-0.64-1.17-0.82-1.85 c-0.16,0.07-0.32,0.14-0.48,0.23c-1.87,1.08-2.49,3.39-1.41,5.26c0.06,0.1,0.14,0.18,0.21,0.28c-0.34,0.06-0.68,0.17-1,0.35 c-1.43,0.83-1.93,2.66-1.1,4.1s2.66,1.93,4.1,1.1c0.32-0.18,0.58-0.42,0.8-0.69c0.05,0.11,0.08,0.22,0.14,0.32 c1.08,1.87,3.39,2.49,5.26,1.41c2.09-1.21,2.71-3.93,3.55-7.94L12.32,14.01z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.53,13.47l1.06-1.06C7.13,10.22,5.5,8.76,5.5,7.3c0-1.03,0.77-1.8,1.8-1.8c1.05,0,1.5,0.66,2.22,1.5h0.97 c1.26-1.48,1.57-1.5,2.22-1.5c0.81,0,1.46,0.49,1.69,1.19c0.27-0.03,0.52-0.05,0.77-0.05c0.27,0,0.53,0.02,0.78,0.05 C15.67,5.15,14.34,4,12.7,4c-0.09,0-0.17,0.02-0.26,0.03c0.04-0.17,0.06-0.35,0.06-0.53C12.5,2.12,11.38,1,10,1 C8.62,1,7.5,2.12,7.5,3.5c0,0.18,0.02,0.36,0.06,0.53C7.47,4.02,7.39,4,7.3,4C5.45,4,4,5.45,4,7.3C4,9.41,5.82,11.06,8.53,13.47z\\\"></path><path d=\\\"M18.75,13.09c-0.16-0.09-0.32-0.16-0.49-0.21c0.05-0.07,0.11-0.13,0.15-0.21c0.92-1.6,0.39-3.58-1.21-4.51 C15.38,7.1,13.04,7.85,9.6,8.99l0.39,1.45c3.13-1.03,5.21-1.71,6.47-0.98c0.89,0.51,1.17,1.57,0.66,2.46 c-0.53,0.91-1.33,0.97-2.41,1.17l-0.48,0.84c0.65,1.83,0.51,2.11,0.19,2.67c-0.51,0.89-1.57,1.17-2.46,0.66 c-0.18-0.11-0.35-0.25-0.5-0.42c-0.23,0.51-0.48,0.97-0.77,1.35c0.16,0.14,0.33,0.27,0.52,0.38c1.6,0.92,3.58,0.39,4.51-1.21 c0.04-0.08,0.07-0.16,0.1-0.24c0.13,0.12,0.27,0.22,0.43,0.32c1.2,0.69,2.72,0.28,3.42-0.92C20.35,15.3,19.95,13.78,18.75,13.09z\\\"></path><path d=\\\"M10.43,11.15c-0.67,3.23-1.12,5.37-2.38,6.1c-0.89,0.51-1.95,0.23-2.46-0.66c-0.53-0.91-0.18-1.63,0.19-2.67l-0.48-0.84 c-1.91-0.35-2.08-0.61-2.41-1.17c-0.51-0.89-0.23-1.95,0.66-2.46C3.31,8.98,3.16,8.5,3.08,8.02c-0.1,0.04-0.2,0.08-0.29,0.13 c-1.6,0.92-2.13,2.91-1.21,4.51c0.04,0.08,0.11,0.14,0.15,0.21c-0.17,0.05-0.33,0.12-0.49,0.21c-1.2,0.69-1.61,2.22-0.92,3.42 c0.69,1.2,2.22,1.61,3.42,0.92c0.16-0.09,0.3-0.2,0.43-0.32c0.04,0.08,0.06,0.16,0.1,0.24c0.92,1.6,2.91,2.13,4.51,1.21 c1.83-1.06,2.35-3.45,3.09-7.01L10.43,11.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications_paused\": {\n    \"name\": \"notifications_paused\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z\\\"></path>\"\n      }\n    }\n  },\n  \"school\": {\n    \"name\": \"school\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3 1 9l11 6 9-4.91V17h2V9L12 3z\\\"></path>\"\n      }\n    }\n  },\n  \"blind\": {\n    \"name\": \"blind\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"11.5\\\" cy=\\\"3.5\\\" r=\\\"2\\\"></circle><path d=\\\"M12.13,7.12c-0.17-0.35-0.44-0.65-0.8-0.85C10.72,5.91,9.99,5.93,9.4,6.24l0-0.01L4,9.3V14h2v-3.54l1.5-0.85 C7.18,10.71,7,11.85,7,13v5.33L4.4,21.8L6,23l3-4l0.22-3.54L11,18v5h2v-6.5l-1.97-2.81c-0.04-0.52-0.14-1.76,0.45-3.4 c0.75,1.14,1.88,1.98,3.2,2.41L20.63,23l0.87-0.5L16.02,13H17v-2c-0.49,0-2.88,0.17-4.08-2.21\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M12.68,10.78L16.85,18l0.65-0.38l-3.86-6.68c0.12,0.01,0.23,0.03,0.36,0.03v-1.5c-3.08,0-3.01-2.16-4.11-3.05 C9.63,6.22,9.32,6.09,9,6.04C8.63,5.97,8.23,6,7.86,6.15L4,7.79v3.21h1.5V8.78L6.86,8.2C6.65,8.96,6.5,9.7,6.5,10.49v4l-2,2.5l1,1 L8,15l0.19-2.62l1.31,1.61V18H11v-5.01l-1.46-1.93c-0.02-0.22-0.12-1.1,0.28-2.34C10.04,9.06,11.01,10.3,12.68,10.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_emotions\": {\n    \"name\": \"emoji_emotions\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M9.99,3C6.13,3,3,6.14,3,10s3.13,7,6.99,7c3.87,0,7.01-3.14,7.01-7S13.86,3,9.99,3z M7,7c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1S6,8.55,6,8C6,7.45,6.45,7,7,7z M10,14c-1.86,0-3.41-1.28-3.86-3h7.72C13.41,12.72,11.86,14,10,14z M13,9 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14,8.55,13.55,9,13,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"waving_hand\": {\n    \"name\": \"waving_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M23,17c0,3.31-2.69,6-6,6v-1.5c2.48,0,4.5-2.02,4.5-4.5H23z M1,7c0-3.31,2.69-6,6-6v1.5C4.52,2.5,2.5,4.52,2.5,7H1z M8.01,4.32l-4.6,4.6c-3.22,3.22-3.22,8.45,0,11.67s8.45,3.22,11.67,0l7.07-7.07c0.49-0.49,0.49-1.28,0-1.77 c-0.49-0.49-1.28-0.49-1.77,0l-4.42,4.42l-0.71-0.71l6.54-6.54c0.49-0.49,0.49-1.28,0-1.77s-1.28-0.49-1.77,0l-5.83,5.83l-0.71-0.71 l6.89-6.89c0.49-0.49,0.49-1.28,0-1.77s-1.28-0.49-1.77,0l-6.89,6.89L11.02,9.8l5.48-5.48c0.49-0.49,0.49-1.28,0-1.77 s-1.28-0.49-1.77,0l-7.62,7.62c1.22,1.57,1.11,3.84-0.33,5.28l-0.71-0.71c1.17-1.17,1.17-3.07,0-4.24l-0.35-0.35l4.07-4.07 c0.49-0.49,0.49-1.28,0-1.77C9.29,3.83,8.5,3.83,8.01,4.32z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M1,6c0-2.76,2.24-5,5-5v1C3.79,2,2,3.79,2,6H1z M19,14c0,2.76-2.24,5-5,5v-1c2.21,0,4-1.79,4-4H19z M3.05,16.95 c2.73,2.73,7.17,2.73,9.9,0l5.66-5.66c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0l-3.54,3.54l-0.71-0.71l5.48-5.48 c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0l-4.77,4.77l-0.71-0.71l5.66-5.66c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0 l-5.66,5.66L9.41,7.76l4.6-4.6c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0L6.21,8.14c1.03,1.37,0.92,3.33-0.33,4.57L5.17,12 c0.98-0.98,0.98-2.56,0-3.54L4.82,8.11l3.54-3.54c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0L3.05,7.05 C0.32,9.78,0.32,14.22,3.05,16.95z\\\"></path>\"\n      }\n    }\n  },\n  \"cake\": {\n    \"name\": \"cake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.6 9.99l-1.07-1.07-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V21c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-4.61c-.56.38-1.23.61-1.96.61-.92 0-1.79-.36-2.44-1.01zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_basketball\": {\n    \"name\": \"sports_basketball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17.09,11h4.86c-0.16-1.61-0.71-3.11-1.54-4.4C18.68,7.43,17.42,9.05,17.09,11z\\\"></path></g><g><path d=\\\"M6.91,11C6.58,9.05,5.32,7.43,3.59,6.6C2.76,7.89,2.21,9.39,2.05,11H6.91z\\\"></path></g><g><path d=\\\"M15.07,11c0.32-2.59,1.88-4.79,4.06-6c-1.6-1.63-3.74-2.71-6.13-2.95V11H15.07z\\\"></path></g><g><path d=\\\"M8.93,11H11V2.05C8.61,2.29,6.46,3.37,4.87,5C7.05,6.21,8.61,8.41,8.93,11z\\\"></path></g><g><path d=\\\"M15.07,13H13v8.95c2.39-0.24,4.54-1.32,6.13-2.95C16.95,17.79,15.39,15.59,15.07,13z\\\"></path></g><g><path d=\\\"M3.59,17.4c1.72-0.83,2.99-2.46,3.32-4.4H2.05C2.21,14.61,2.76,16.11,3.59,17.4z\\\"></path></g><g><path d=\\\"M17.09,13c0.33,1.95,1.59,3.57,3.32,4.4c0.83-1.29,1.38-2.79,1.54-4.4H17.09z\\\"></path></g><g><path d=\\\"M8.93,13c-0.32,2.59-1.88,4.79-4.06,6c1.6,1.63,3.74,2.71,6.13,2.95V13H8.93z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M13.05,9.5h3.92c-0.1-1.43-0.63-2.74-1.47-3.81C14.16,6.48,13.22,7.87,13.05,9.5z\\\"></path></g><g><path d=\\\"M6.95,10.5H3.03c0.1,1.43,0.63,2.74,1.47,3.81C5.84,13.52,6.78,12.13,6.95,10.5z\\\"></path></g><g><path d=\\\"M6.95,9.5c-0.17-1.63-1.1-3.02-2.46-3.81C3.66,6.76,3.13,8.07,3.03,9.5H6.95z\\\"></path></g><g><path d=\\\"M13.05,10.5c0.17,1.63,1.1,3.02,2.46,3.81c0.83-1.07,1.36-2.38,1.47-3.81H13.05z\\\"></path></g><g><path d=\\\"M12.03,10.5H10.5v6.47c1.67-0.12,3.17-0.82,4.31-1.9C13.26,14.1,12.18,12.43,12.03,10.5z\\\"></path></g><g><path d=\\\"M12.03,9.5c0.16-1.93,1.23-3.6,2.79-4.58c-1.14-1.08-2.64-1.78-4.31-1.9V9.5H12.03z\\\"></path></g><g><path d=\\\"M7.97,10.5c-0.16,1.93-1.23,3.6-2.79,4.58c1.14,1.08,2.64,1.78,4.31,1.9V10.5H7.97z\\\"></path></g><g><path d=\\\"M7.97,9.5H9.5V3.03c-1.67,0.12-3.17,0.82-4.31,1.9C6.74,5.9,7.82,7.57,7.97,9.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"surfing\": {\n    \"name\": \"surfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M17,1.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S18.1,1.5,17,1.5z M14.43,8.48L12.18,10L16,13v3.84c0.53,0.38,1.03,0.78,1.49,1.17C16.81,18.59,15.94,19,15,19 c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.33,0-0.65-0.05-0.96-0.14C5.19,16.9,3,14.72,3,13.28C3,12.25,4.01,12,4.85,12 c0.98,0,2.28,0.31,3.7,0.83l-0.53-3.1C7.91,9.06,8.2,8.35,8.8,7.94l2.15-1.45l-2-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03 c0.45,0.09,0.93,0.37,1.22,0.89l0.88,1.55C17.01,8.98,18.64,10,20.5,10v2C17.91,12,15.64,10.58,14.43,8.48z M10.3,11.1l0.44,2.65 c0.92,0.42,2.48,1.27,3.26,1.75V14L10.3,11.1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,3.25C15.5,4.22,14.72,5,13.75,5S12,4.22,12,3.25s0.78-1.75,1.75-1.75S15.5,2.28,15.5,3.25z M15,16.5 c-1.52,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5c0.86,0,1.71-0.2,2.5-0.6 c1.57,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5C16.63,17.5,15.76,17.17,15,16.5z M11.9,7.2 L10,8.48L13,11v3.09c0.5,0.35,0.98,0.71,1.41,1.07c-0.54,0.5-1.2,0.84-1.91,0.84c-1,0-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 c-0.19,0-0.37-0.02-0.55-0.07C4.71,14.38,3,12.66,3,11.52c0-0.45,0.28-1.02,1.47-1.02c0.68,0,1.56,0.19,2.53,0.51L6.53,8.28 c-0.1-0.57,0.13-1.16,0.63-1.5l1.72-1.16L7.54,5.38l-2.3,1.56L4.4,5.7l2.8-1.9l4.22,0.69c0.36,0.06,0.69,0.23,0.91,0.51l1.38,2.1 c0.64,0.85,1.66,1.4,2.8,1.4V10c-1.64,0-3.09-0.79-4-2L11.9,7.2z M8.4,9.15l0.35,2.55c0.86,0.37,2.18,1.05,2.74,1.42V11.7L8.4,9.15z\\\"></path>\"\n      }\n    }\n  },\n  \"real_estate_agent\": {\n    \"name\": \"real_estate_agent\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1,22h4V11H1V22z M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82c0.65,0,1.18-0.53,1.18-1.18l0,0c0-0.49-0.31-0.93-0.77-1.11 L8.97,11H7v9.02L14,22l8-3l0,0C21.99,17.9,21.11,17,20,17z M14,1.5l-7,5V9h2l8.14,3.26C18.26,12.71,19,13.79,19,15h2V6.5L14,1.5z M13.5,10h-1V9h1V10z M13.5,8h-1V7h1V8z M15.5,10h-1V9h1V10z M15.5,8h-1V7h1V8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,1.5L6,5.5v2h1.5l6.34,2.26c1,0.35,1.66,1.3,1.66,2.36v0.39H17v-7L11.5,1.5z M11.12,8.25h-0.75V7.5h0.75V8.25z M11.12,6.75h-0.75V6h0.75V6.75z M12.62,8.25h-0.75V7.5h0.75V8.25z M12.62,6.75h-0.75V6h0.75V6.75z M1,18h3V9H1V18z M10.5,14 l-1.53-0.51l0.36-1.01L10.5,13h2.62c0.49,0,0.88-0.39,0.88-0.88v0c0-0.37-0.23-0.7-0.58-0.83L7,9H5.5v7.36l6,1.64l6.5-2.5v0 c0-0.83-0.67-1.5-1.5-1.5H10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"person_4\": {\n    \"name\": \"person_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z\\\"></path></g><g><path d=\\\"M12,12c2.21,0,4-1.79,4-4c0-1.37,0-3.5,0-3.5C16,3.67,15.33,3,14.5,3c-0.52,0-0.98,0.27-1.25,0.67 C12.98,3.27,12.52,3,12,3s-0.98,0.27-1.25,0.67C10.48,3.27,10.02,3,9.5,3C8.67,3,8,3.67,8,4.5c0,0,0,2.12,0,3.5 C8,10.21,9.79,12,12,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3c0-1.03,0-2.83,0-2.83v0c0-0.62-0.5-1.12-1.12-1.12c-0.4,0-0.74,0.22-0.94,0.54 C10.74,3.26,10.4,3.04,10,3.04c-0.39,0-0.72,0.21-0.92,0.52C8.88,3.23,8.54,3,8.12,3C7.5,3,7,3.5,7,4.12c0,0,0,1.84,0,2.88 C7,8.66,8.34,10,10,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sanitizer\": {\n    \"name\": \"sanitizer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v10H4V12c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43C14.1,4.17,13.57,4,13,4h-2v2.09 C13.84,6.57,16,9.03,16,12z\\\"></path>\"\n      }\n    }\n  },\n  \"fireplace\": {\n    \"name\": \"fireplace\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,2v20h20V2H2z M11.86,16.96c0.76-0.24,1.4-1.04,1.53-1.63c0.13-0.56-0.1-1.05-0.2-1.6c-0.08-0.46-0.07-0.85,0.08-1.28 c0.54,1.21,2.15,1.64,1.98,3.18C15.06,17.33,13.14,18.01,11.86,16.96z M20,20h-2v-2h-2.02c0.63-0.84,1.02-1.87,1.02-3 c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,3v14h14V3H3z M10.45,11.21c-0.06-0.34-0.05-0.64,0.06-0.96c0.41,0.91,1.61,1.23,1.48,2.39 c-0.14,1.26-1.58,1.77-2.54,0.99c0.57-0.18,1.05-0.78,1.15-1.22C10.7,11.99,10.52,11.62,10.45,11.21z M16,16h-2v-1h-1.33 c0.81-0.7,1.33-1.71,1.33-2.85c0-1.45-0.87-2.19-1.48-2.59C10.16,8.01,10.8,6,10.8,6C5.42,8.74,5.99,11.74,6,12.15 C6.03,13.1,6.63,14.21,7.53,15H6v1H4V4h12V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"architecture\": {\n    \"name\": \"architecture\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z\\\"></path><path d=\\\"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z\\\"></path><path d=\\\"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.67,14.89L6.79,16l0.81-0.77l1.92-5.28C9.19,9.9,8.87,9.79,8.58,9.63L6.67,14.89z\\\"></path><path d=\\\"M11.42,9.63c-0.29,0.16-0.61,0.27-0.95,0.32l1.92,5.28L13.21,16l0.13-1.11L11.42,9.63z\\\"></path><path d=\\\"M12,7c0-0.93-0.64-1.71-1.5-1.93V4h-1v1.07C8.64,5.29,8,6.07,8,7c0,1.1,0.9,2,2,2S12,8.1,12,7z M10,8C9.45,8,9,7.55,9,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C11,7.55,10.55,8,10,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"heart_broken\": {\n    \"name\": \"heart_broken\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.5,3c-0.96,0-1.9,0.25-2.73,0.69L12,9h3l-3,10l1-9h-3l1.54-5.39C10.47,3.61,9.01,3,7.5,3C4.42,3,2,5.42,2,8.5 c0,4.13,4.16,7.18,10,12.5c5.47-4.94,10-8.26,10-12.5C22,5.42,19.58,3,16.5,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.6,3c-0.77,0-1.52,0.2-2.18,0.56L10,8h2.5L10,15.89L11,9H8.5l1.13-4.7C8.77,3.49,7.61,3,6.4,3C3.94,3,2,4.95,2,7.43 c0,3.33,3.33,5.79,8,10.07c4.38-3.98,8-6.65,8-10.07C18,4.95,16.06,3,13.6,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_nature\": {\n    \"name\": \"emoji_nature\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z\\\"></path><path d=\\\"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.16,0.16-0.3,0.34-0.43,0.53L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c1.06,1.06,2.57,1.38,3.91,1c0.29,0.42,0.68,0.77,1.16,1 C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85l-0.52-1.37 c0.18-0.13,0.36-0.27,0.53-0.43c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M4.67,14.29 c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13 C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03c-0.02-0.04-0.04-0.08-0.06-0.12 c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.07-0.05-0.11-0.07 c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59 C12.8,12.66,12.84,13.81,12.2,14.6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M16.96,4.8c-0.11-0.33-0.43-0.55-0.79-0.55c-0.02,0-0.04,0-0.06,0H15.5l-0.19-0.6C15.22,3.27,14.88,3,14.5,3h0 c-0.38,0-0.72,0.27-0.81,0.65l-0.19,0.6h-0.61c-0.02,0-0.04,0-0.06,0c-0.36,0-0.68,0.22-0.79,0.55c-0.12,0.35,0.03,0.73,0.35,0.92 l0.54,0.33l-0.24,0.77c-0.14,0.36-0.03,0.78,0.28,1.01C13.12,7.95,13.29,8,13.46,8c0.19,0,0.38-0.07,0.54-0.2l0.51-0.43l0.51,0.43 C15.16,7.93,15.35,8,15.54,8c0.17,0,0.34-0.05,0.49-0.16c0.31-0.23,0.43-0.65,0.28-1.01l-0.24-0.77l0.54-0.33 C16.93,5.53,17.08,5.15,16.96,4.8z M14.5,6C14.22,6,14,5.78,14,5.5C14,5.22,14.22,5,14.5,5S15,5.22,15,5.5C15,5.78,14.78,6,14.5,6 z\\\"></path><path d=\\\"M11.27,8.73c-0.36-0.36-0.8-0.59-1.27-0.68V7H9.5v1C8.86,8,8.22,8.24,7.73,8.73C7.56,8.91,7.43,9.1,7.32,9.31l-1.58-0.6 C5.23,8.53,4.67,8.56,4.18,8.79C3.69,9.02,3.32,9.43,3.14,9.95c-0.36,1.01,0.13,2.1,1.09,2.53c-0.41,0.92-0.25,2.04,0.5,2.79 c0.76,0.76,1.88,0.92,2.8,0.5c0.2,0.46,0.54,0.82,0.99,1.04C8.8,16.94,9.1,17,9.4,17c0.23,0,0.46-0.04,0.68-0.12h0 c0.51-0.18,0.92-0.55,1.16-1.04c0.23-0.49,0.26-1.04,0.08-1.56l-0.6-1.6c0.2-0.11,0.39-0.24,0.56-0.41 C11.76,11.78,12,11.14,12,10.5h1V10h-1.05C11.85,9.54,11.63,9.09,11.27,8.73z M4.71,11.6c-0.26-0.09-0.47-0.28-0.59-0.53 s-0.13-0.53-0.04-0.79c0.09-0.26,0.28-0.47,0.53-0.59c0.14-0.07,0.29-0.1,0.45-0.1c0.11,0,0.23,0.02,0.34,0.06l2.94,1.11 C7.46,11.31,5.95,12.04,4.71,11.6z M10.33,15.41c-0.12,0.25-0.33,0.44-0.59,0.53S9.2,16.02,8.95,15.9 c-0.25-0.12-0.44-0.33-0.53-0.59c-0.44-1.24,0.29-2.75,0.84-3.63l1.11,2.93C10.46,14.88,10.45,15.16,10.33,15.41z M10.56,11.56 c-0.07,0.07-0.14,0.12-0.21,0.17l-0.49-1.28c-0.01-0.03-0.03-0.04-0.05-0.07c-0.02-0.04-0.04-0.07-0.07-0.1 c-0.03-0.03-0.06-0.05-0.1-0.07c-0.02-0.01-0.04-0.04-0.07-0.05L8.28,9.67c0.05-0.08,0.09-0.16,0.15-0.23C8.72,9.16,9.1,9,9.5,9 s0.78,0.16,1.06,0.44C11.15,10.02,11.15,10.98,10.56,11.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transgender\": {\n    \"name\": \"transgender\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,8c1.93,0,3.5,1.57,3.5,3.5S13.93,15,12,15s-3.5-1.57-3.5-3.5S10.07,8,12,8z M16.53,8.38l3.97-3.96V7h2V1h-6v2h2.58 l-3.97,3.97C14.23,6.36,13.16,6,12,6c-1.16,0-2.23,0.36-3.11,0.97L8.24,6.32l1.41-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42 l1.91,1.9L3.99,7.74l1.41,1.41l1.41-1.41l0.65,0.65C6.86,9.27,6.5,10.34,6.5,11.5c0,2.7,1.94,4.94,4.5,5.41L11,19H9v2h2v2h2v-2h2v-2 h-2l0-2.09c2.56-0.47,4.5-2.71,4.5-5.41C17.5,10.34,17.14,9.27,16.53,8.38z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,1.5V3h1.94l-3.16,3.16C11.62,5.74,10.84,5.5,10,5.5S8.38,5.74,7.72,6.16l-0.6-0.6L8.18,4.5L7.12,3.44L6.06,4.5L4.56,3 H6.5V1.5H2V6h1.5V4.06L5,5.56L3.94,6.62L5,7.68l1.06-1.06l0.56,0.56c-0.55,0.71-0.87,1.6-0.87,2.57c0,2.09,1.51,3.83,3.5,4.18v1.57 h-1.5V17h1.5v1.5h1.5V17h1.5v-1.5h-1.5v-1.57c1.99-0.35,3.5-2.09,3.5-4.18c0-0.97-0.32-1.86-0.87-2.57l3.12-3.12V6H18V1.5H13.5z M10,12.5c-1.52,0-2.75-1.23-2.75-2.75S8.48,7,10,7s2.75,1.23,2.75,2.75S11.52,12.5,10,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_hockey\": {\n    \"name\": \"sports_hockey\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z\\\"></path><path d=\\\"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z\\\"></path><g><path d=\\\"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z\\\"></path></g><path d=\\\"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M3,14v2h1v-3C3.45,13,3,13.45,3,14z\\\"></path></g><g><polygon points=\\\"12.32,13 11.1,10.34 14,4 11.8,4 10,7.94 8.2,4 6,4 8.9,10.34 10,12.74 11.5,16 15,16 15,13\\\"></polygon></g><g><path d=\\\"M16,13v3h1v-2C17,13.45,16.55,13,16,13z\\\"></path></g><g><polygon points=\\\"7.68,13 5,13 5,16 8.5,16 9.45,13.94 8.35,11.54\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"person_outline\": {\n    \"name\": \"person_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"group_add\": {\n    \"name\": \"group_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"22,9 22,7 20,7 20,9 18,9 18,11 20,11 20,13 22,13 22,11 24,11 24,9\\\"></polygon><path d=\\\"M8,12c2.21,0,4-1.79,4-4s-1.79-4-4-4S4,5.79,4,8S5.79,12,8,12z\\\"></path><path d=\\\"M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z\\\"></path><path d=\\\"M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z\\\"></path><path d=\\\"M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"6\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle></g><g><path d=\\\"M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z\\\"></path></g><g><path d=\\\"M15.03,12.37c-0.92-0.54-1.94-0.92-3.02-1.14c0.92,0.64,1.48,1.71,1.48,2.86V16H16v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3s-1.34-3-3-3C9.79,4,9.58,4.02,9.38,4.06C10.07,4.85,10.5,5.87,10.5,7 c0,1.13-0.43,2.14-1.12,2.93C9.58,9.98,9.79,10,10,10z\\\"></path></g><g><polygon points=\\\"19.5,7.75 17.75,7.75 17.75,6 16.25,6 16.25,7.75 14.5,7.75 14.5,9.25 16.25,9.25 16.25,11 17.75,11 17.75,9.25 19.5,9.25\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"thumb_up_alt\": {\n    \"name\": \"thumb_up_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 20h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1H2v11zm19.83-7.12c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.84C7 18.95 8.05 20 9.34 20h8.11c.7 0 1.36-.37 1.72-.97l2.66-6.15z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_handball\": {\n    \"name\": \"sports_handball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z\\\"></path><path d=\\\"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z\\\"></path><path d=\\\"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.23,8.6l-3.46-2c-1.43-0.83-1.93-2.67-1.1-4.1l0.5-0.87L8.3,1.14L7.8,2C6.7,3.92,7.35,6.36,9.27,7.47l-4.5,7.79 l0.87,0.5l1.5-2.6l1.73,1l-3,5.2l0.87,0.5l6-10.39c1.43,0.83,1.93,2.67,1.1,4.1l-0.5,0.87l0.87,0.5l0.5-0.87 C15.8,12.15,15.14,9.71,13.23,8.6z\\\"></path><circle cx=\\\"11\\\" cy=\\\"2\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"domain_add\": {\n    \"name\": \"domain_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2 V7z M10,19H8v-2h2V19z M10,15H8v-2h2V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24z M18,11h-2v2h2 V11z M18,15h-2v2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,15.5H3.5V14H5V15.5z M5,12.33H3.5v-1.5H5V12.33z M5,9.17H3.5v-1.5H5V9.17z M5,6H3.5V4.5H5V6z M8.5,15.5H7V14h1.5V15.5z M8.5,12.33H7v-1.5h1.5V12.33z M8.5,9.17H7v-1.5h1.5V9.17z M7,6V4.5h1.5V6H7z M18,12.5V6h-8V3H2v14h11.5v-1.5H10v-1.67h1.5v-1.5H10 v-1.67h1.5v-1.5H10V7.5h6.5v5H18z M15,9.17h-1.5v1.5H15V9.17z M15,12.33h-1.5v1.5H15V12.33z M18,15.5V14h-1.5v1.5H15V17h1.5v1.5H18 V17h1.5v-1.5H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sports_gymnastics\": {\n    \"name\": \"sports_gymnastics\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M1,9h6l7-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2 l-0.5-10L8,11H1V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M19,5.16L12,10l-0.5,8H10l-0.5-7.7L7,9.5H1V8h5l5.5-4l0.98,1.14L9.2,7.5h2.3L18,4L19,5.16z M4,5.5C4,6.33,4.67,7,5.5,7 S7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_luggage\": {\n    \"name\": \"no_luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.75,9v0.92l1.75,1.75V9H16v4.17l3,3V8c0-1.1-0.9-2-2-2h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H8.83l3,3H12.75z M10.5,3.5h3V6h-3V3.5z M21.19,21.19L2.81,2.81L1.39,4.22l3.63,3.63C5.02,7.9,5,7.95,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c0.34,0,0.65-0.09,0.93-0.24l1.85,1.85L21.19,21.19z M8,18v-7.17l1.5,1.5V18H8z M12.75,18h-1.5v-3.92l1.5,1.5V18z\\\"></path>\"\n      }\n    }\n  },\n  \"piano_off\": {\n    \"name\": \"piano_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M8.25,19H5V7.83l2,2v3.67 c0,0.55,0.45,1,1,1h0.25V19z M9.75,19v-4.5H10c0.46,0,0.82-0.31,0.94-0.73l3.31,3.31V19H9.75z M11,8.17L5.83,3H19c1.1,0,2,0.9,2,2 v13.17l-2-2V5h-2v8.5c0,0.19-0.07,0.36-0.16,0.51L13,10.17V5h-2V8.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M7,15.5H4.5V6.62 L6,8.12v3.38C6,11.78,6.22,12,6.5,12H7V15.5z M8,15.5V12h0.5C8.78,12,9,11.78,9,11.5v-0.38l3,3v1.38H8z M5.12,3H15.5 C16.33,3,17,3.67,17,4.5v10.38l-1.5-1.5V4.5H14v7c0,0.11-0.04,0.2-0.1,0.28L11,8.88V4.5H9v2.38L5.12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tsunami\": {\n    \"name\": \"tsunami\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.67,17.63c-3.8,2.8-6.12,0.4-6.67,0c-0.66,0.49-2.92,2.76-6.67,0C3.43,19.03,2.65,19,2,19v2c1.16,0,2.3-0.32,3.33-0.93 c2.06,1.22,4.61,1.22,6.67,0c2.06,1.22,4.61,1.22,6.67,0C19.7,20.68,20.84,21,22,21v-2C21.34,19,20.5,18.98,18.67,17.63z\\\"></path><path d=\\\"M19.33,12H22v-2h-2.67C17.5,10,16,8.5,16,6.67c0-1.02,0.38-1.74,1.09-3.34C15.72,3.12,15.09,3,14,3 C7.36,3,2.15,8.03,2.01,14.5c0,0-0.01,2-0.01,2c1.16,0,2.3-0.32,3.33-0.93c2.06,1.22,4.61,1.22,6.67,0c2.06,1.22,4.61,1.22,6.67,0 c1.03,0.61,2.17,0.93,3.33,0.93v-2c-0.66,0-1.5-0.02-3.33-1.37c-3.8,2.8-6.12,0.4-6.67,0c-0.9,0.67-0.54,0.41-0.91,0.63 C10.39,12.82,10,11.7,10,10.5c0-2.58,1.77-4.74,4.21-5.33C14.08,5.68,14,6.19,14,6.67C14,9.61,16.39,12,19.33,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.33,14.28c-1.95,1.59-3.31,1.65-5.33,0c-1.95,1.59-3.31,1.65-5.33,0C3.17,15.5,2.54,15.5,2,15.5V17 c0.93,0,1.85-0.28,2.67-0.82c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0C16.15,16.72,17.07,17,18,17v-1.5 C17.49,15.5,16.83,15.5,15.33,14.28z\\\"></path><path d=\\\"M16.5,10.5H18V9h-1.5c-1.6,0-2.9-1.3-2.9-2.9c0-0.57,0.18-1.31,0.46-1.91l0.46-0.92C13.44,3.1,12.92,3,12.01,3 C6.3,3,2,7.08,2,12.5V14c0.93,0,1.85-0.28,2.67-0.82c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0 C16.15,13.72,17.07,14,18,14v-1.5c-0.51,0-1.17,0-2.67-1.22c-1.95,1.59-3.31,1.65-5.33,0c-0.16,0.13-0.59,0.47-0.65,0.51 c-0.51-0.77-0.79-1.66-0.79-2.61c0-2.2,1.51-3.92,3.73-4.35c-0.1,0.44-0.17,0.88-0.17,1.27C12.11,8.53,14.08,10.5,16.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports\": {\n    \"name\": \"sports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z\\\"></path></g><g><circle cx=\\\"11\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.5,6C8.06,6,6.8,6.68,5.98,7.73C5.99,7.66,6,7.58,6,7.5C6,6.67,5.33,6,4.5,6S3,6.67,3,7.5S3.67,9,4.5,9 c0.33,0,0.62-0.11,0.87-0.28C5.13,9.26,5,9.87,5,10.5C5,12.99,7.01,15,9.5,15s4.5-2.01,4.5-4.5c0-0.08-0.02-0.16-0.02-0.24 c0-0.04,0.01-0.09,0.01-0.12C13.93,9.53,14.37,9,14.97,9H18V6H9.5z M4.5,8C4.22,8,4,7.78,4,7.5C4,7.22,4.22,7,4.5,7S5,7.22,5,7.5 C5,7.78,4.78,8,4.5,8z M11.47,12.02C11.02,12.61,10.31,13,9.5,13C8.12,13,7,11.88,7,10.5c0-1.27,0.95-2.3,2.17-2.47 C9.28,8.02,9.39,8,9.5,8c1.38,0,2.5,1.12,2.5,2.5C12,11.07,11.8,11.6,11.47,12.02z\\\"></path></g><g><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"man\": {\n    \"name\": \"man\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2v7h4v-7h2V9C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h1.5v5h3v-5H13V8.5C13,7.67,12.33,7,11.5,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"tornado\": {\n    \"name\": \"tornado\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"20.11,8 23,3 1,3 3.89,8\\\"></polygon></g><g><polygon points=\\\"7.95,15 12,22 16.05,15\\\"></polygon></g><g><polygon points=\\\"18.95,10 5.05,10 6.79,13 17.21,13\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"16.6,7 19,3 1,3 3.4,7\\\"></polygon></g><g><polygon points=\\\"6.7,12.5 10,18 13.3,12.5\\\"></polygon></g><g><polygon points=\\\"15.7,8.5 4.3,8.5 5.8,11 14.2,11\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"emoji_events\": {\n    \"name\": \"emoji_events\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M19,8 c0,1.3-0.84,2.4-2,2.82V7h2V8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M15,6h-2V5H7v1H5C4.45,6,4,6.45,4,7v1c0,1.66,1.34,3,3,3h0.18c0.36,1.01,1.24,1.77,2.32,1.95V15H7v1h2.5h1H13v-1h-2.5 v-2.05c1.08-0.18,1.96-0.94,2.32-1.95H13c1.66,0,3-1.34,3-3V7C16,6.45,15.55,6,15,6z M7,10c-1.1,0-2-0.9-2-2V7h2V10z M15,8 c0,1.1-0.9,2-2,2V7h2V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"face_2\": {\n    \"name\": \"face_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.97,13.52c0-0.01,0-0.02,0-0.04C23.21,12.38,24,10.78,24,9c0-3.31-2.69-6-6-6c-0.26,0-0.52,0.02-0.78,0.06 C16.19,1.23,14.24,0,12,0S7.81,1.23,6.78,3.06C6.52,3.02,6.26,3,6,3C2.69,3,0,5.69,0,9c0,1.78,0.79,3.38,2.02,4.48 c0,0.01,0,0.02,0,0.04C0.79,14.62,0,16.22,0,18c0,3.31,2.69,6,6,6c1.39,0,2.67-0.48,3.69-1.28C10.43,22.9,11.2,23,12,23 s1.57-0.1,2.31-0.28C15.33,23.52,16.61,24,18,24c3.31,0,6-2.69,6-6C24,16.22,23.21,14.62,21.97,13.52z M12,21c-4.41,0-8-3.59-8-8 c0-3.72,2.56-6.85,6-7.74c0,0.02,0,0.03,0,0.05c0,3.34,2.72,6.06,6.06,6.06c1.26,0,2.45-0.39,3.45-1.09 C19.82,11.14,20,12.05,20,13C20,17.41,16.41,21,12,21z\\\"></path><circle cx=\\\"9\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.12,11.5c1.13-0.87,1.87-2.22,1.87-3.75c0-2.62-2.13-4.75-4.75-4.75c-0.28,0-0.55,0.04-0.81,0.08 C13.75,1.29,12.03,0,10,0C7.97,0,6.25,1.29,5.57,3.08C5.3,3.04,5.03,3,4.75,3C2.13,3,0,5.13,0,7.75c0,1.53,0.74,2.88,1.87,3.75 C0.74,12.37,0,13.72,0,15.25C0,17.87,2.13,20,4.75,20c1.24,0,2.36-0.49,3.2-1.28C8.6,18.9,9.29,19,10,19 c0.71,0,1.39-0.1,2.05-0.27C12.89,19.51,14,20,15.24,20c2.62,0,4.75-2.13,4.75-4.75C19.99,13.72,19.25,12.37,18.12,11.5z M10,17.5 c-3.58,0-6.5-2.92-6.5-6.5c0-3.26,2.41-5.96,5.55-6.42C9.29,7.05,11.36,9,13.89,9c0.74,0,1.46-0.17,2.11-0.49 c0.32,0.77,0.5,1.61,0.5,2.49C16.5,14.58,13.58,17.5,10,17.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"man_4\": {\n    \"name\": \"man_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.75,7h-3.5C9.04,7,8.11,8.07,8.27,9.26L10,22h4l1.73-12.74C15.89,8.07,14.96,7,13.75,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.75,7h-3.5C7.31,7,6.61,7.85,6.77,8.77L8.5,18h3l1.73-9.23C13.39,7.85,12.69,7,11.75,7z\\\"></path><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sentiment_very_dissatisfied\": {\n    \"name\": \"sentiment_very_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"snowshoeing\": {\n    \"name\": \"snowshoeing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S12.5,4.6,12.5,3.5z M6.32,19.03l-1.14-1.47L4,18.5l2.38,3.04 c0.51,0.65,1.16,1.15,1.88,1.41c0.28,0.1,0.53,0.04,0.72-0.11c0.3-0.23,0.42-0.7,0.12-1.07c-0.08-0.1-0.2-0.17-0.31-0.22 c-0.43-0.18-0.82-0.45-1.14-0.83l-0.08-0.1L11,18.2l0.89-3.22l2.11,2v4.52h-2V23h3.87c0.82,0,1.61-0.21,2.26-0.61 c0.26-0.16,0.37-0.39,0.37-0.64c0-0.38-0.3-0.75-0.77-0.75c-0.13,0-0.26,0.04-0.37,0.1c-0.4,0.23-0.87,0.37-1.36,0.4l0-6.02l-2.11-2 l0.6-3C15.79,11.98,17.8,13,20,13v-2c-1.9,0-3.51-1.02-4.31-2.42l-1-1.58c-0.4-0.6-1-1-1.7-1C12.24,6,11.58,6.34,7,8.28V13h2V9.58 l1.79-0.7L9.2,17L6.32,19.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.25,3.75C10.25,2.78,11.03,2,12,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C11.04,5.5,10.25,4.72,10.25,3.75z M8.16,17.02c-0.4-0.11-0.78-0.35-1.06-0.7l2.29-1.65l0.53-2.69l1.58,1.58V17L10,17v1h3c0.67,0,1.3-0.22,1.8-0.6 c0.14-0.11,0.2-0.25,0.2-0.4c0-0.25-0.19-0.5-0.5-0.5c-0.11,0-0.21,0.04-0.3,0.1C13.87,16.85,13.45,17,13,17v-4.05l-1.46-1.46 l0.49-2.48C12.94,10.21,14.37,11,16,11V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L6,7.79V11h1.5V8.79 l1.65-0.7L8.03,13.8l-1.85,1.34L5.29,14L4.5,14.61l1.82,2.32C6.92,17.71,7.81,18,8.03,18c0.39,0,0.66-0.47,0.39-0.81 C8.35,17.11,8.26,17.05,8.16,17.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scoreboard\": {\n    \"name\": \"scoreboard\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.5,13.5H16v-3h1.5V13.5z M20,4h-3V2h-2v2H9V2H7v2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6 C22,4.9,21.1,4,20,4z M9.5,11.5c0,0.55-0.45,1-1,1h-2v1h3V15H5v-2.5c0-0.55,0.45-1,1-1h2v-1H5V9h3.5c0.55,0,1,0.45,1,1V11.5z M12.75,18h-1.5v-1.5h1.5V18z M12.75,14.5h-1.5V13h1.5V14.5z M12.75,11h-1.5V9.5h1.5V11z M12.75,7.5h-1.5V6h1.5V7.5z M19,14 c0,0.55-0.45,1-1,1h-2.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H18c0.55,0,1,0.45,1,1V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11h-1V9h1V11z M16.5,4H14V2.5h-1.5V4h-5V2.5H6V4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13 c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M8,10c0,0.28-0.22,0.5-0.5,0.5H6V11h2v1H5v-2c0-0.28,0.22-0.5,0.5-0.5H7V9H5 V8h2.5C7.78,8,8,8.22,8,8.5V10z M10.5,14.5h-1v-1h1V14.5z M10.5,11.83h-1v-1h1V11.83z M10.5,9.17h-1v-1h1V9.17z M10.5,6.5h-1v-1h1 V6.5z M15,11.5c0,0.28-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5v-3C12,8.22,12.22,8,12.5,8h2C14.78,8,15,8.22,15,8.5V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"male\": {\n    \"name\": \"male\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,11c1.93,0,3.5,1.57,3.5,3.5S11.43,18,9.5,18S6,16.43,6,14.5S7.57,11,9.5,11z M9.5,9C6.46,9,4,11.46,4,14.5 S6.46,20,9.5,20s5.5-2.46,5.5-5.5c0-1.16-0.36-2.23-0.97-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36,10.66,9,9.5,9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,4h-4.5v1.5h1.94l-2.76,2.76C9.99,7.78,9.15,7.5,8.25,7.5C5.9,7.5,4,9.4,4,11.75C4,14.1,5.9,16,8.25,16 s4.25-1.9,4.25-4.25c0-0.9-0.28-1.74-0.76-2.43l2.76-2.76V8.5H16V4z M8.25,14.5c-1.52,0-2.75-1.23-2.75-2.75S6.73,9,8.25,9 S11,10.23,11,11.75S9.77,14.5,8.25,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flood\": {\n    \"name\": \"flood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.67,19c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1 v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1c1.95,0,2.1-1,3.34-1c1.22,0,1.4,1,3.33,1c1.93,0,2.1-1,3.33-1c1.22,0,1.4,1,3.33,1 v-2C20.76,20,20.62,19,18.67,19z\\\"></path><path d=\\\"M8.68,17.5c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1v-2 c-0.63,0-1-0.28-1.48-0.55l-2.02-7.53l2.09,0.85l0.74-1.86L9.78,2L2,11.61l1.57,1.23l1.39-1.78l0.93,3.48 c-0.18-0.02-0.35-0.05-0.56-0.05c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1C6.54,16.5,6.77,17.5,8.68,17.5z M14.04,10.18 l1.42,5.31c-1.34,0.09-1.47-0.99-3.47-0.99c-0.36,0-0.65,0.04-0.91,0.1l-0.91-3.39L14.04,10.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.67,16.5c-0.96,0-1.13-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8c-1,0-1.1-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8V18 c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8c1.55,0,1.68-0.8,2.66-0.8 c0.96,0,1.13,0.8,2.66,0.8v-1.5c-1,0-1.1-0.8-2.66-0.8C13.77,15.7,13.67,16.5,12.67,16.5z\\\"></path><path d=\\\"M17.44,13.39L15.62,6.6l1.28,0.51l0.56-1.39L8.17,2L2,9.87l1.18,0.93l0.85-1.08l0.8,3c-0.06,0-0.1-0.01-0.16-0.01 c-1.56,0-1.68,0.8-2.67,0.8V15c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8 c1.55,0,1.68-0.8,2.66-0.8c0.96,0,1.13,0.8,2.66,0.8v-1.5C17.78,13.5,17.6,13.46,17.44,13.39z M9.01,12.85L8.18,9.76l3.86-1.04 l1.24,4.65c-1.28,0.56-1.53-0.67-3.28-0.67C9.58,12.7,9.27,12.76,9.01,12.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kitesurfing\": {\n    \"name\": \"kitesurfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M6,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S6,4.1,6,3z M20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1z M22,23v-2h-1 c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75 c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z M21,13.28c0,1.44-2.19,3.62-5.04,5.58 C15.65,18.95,15.33,19,15,19c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.94,0-1.81-0.41-2.49-0.99 c0.46-0.39,0.96-0.78,1.49-1.17l-1.55-2.97C6.15,13.3,6,12.64,6,12V8c0-1.1,0.9-2,2-2h3c1.38,0,2.63-0.56,3.54-1.46l1.41,1.41 C14.68,7.21,12.93,8,11,8H9.6l0,3.5h2.8l1.69,1.88c1.95-0.84,3.77-1.38,5.06-1.38C19.99,12,21,12.25,21,13.28z M12.2,14.27 l-0.7-0.77L9,13.6l0.83,2.01C10.42,15.23,11.64,14.55,12.2,14.27z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M8.26,3c0,0.97-0.78,1.75-1.75,1.75S4.76,3.97,4.76,3s0.78-1.75,1.75-1.75S8.26,2.03,8.26,3z M16.33,1h-1.41l-2.52,2.51 l0.71,0.71L16.33,1z M15,16.5c-1.53,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5 C16.63,17.5,15.76,17.17,15,16.5z M17,11.02c0,1.27-2.15,3.28-4.78,4.96c-0.88-0.11-1.66-0.72-2.22-1.48C9.39,15.34,8.5,16,7.5,16 c-0.84,0-1.6-0.47-2.19-1.11c0.37-0.31,0.77-0.63,1.19-0.94l-1.28-2.52C5.07,11.15,5,10.84,5,10.52V8.46V7c0-0.83,0.67-1.5,1.5-1.5 H9c1.09,0,2.07-0.5,2.71-1.29l1.07,1.07C11.86,6.33,10.51,7,9,7H8v3h2l1.13,1.25c1.69-0.76,3.29-1.25,4.39-1.25 C16.19,10,17,10.2,17,11.02z M9.73,11.94L9.33,11.5H7.3L7.88,13C8.36,12.69,9.24,12.19,9.73,11.94z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sentiment_neutral\": {\n    \"name\": \"sentiment_neutral\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 15.5h6v1H9v-1z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"water_drop\": {\n    \"name\": \"water_drop\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M7.83,14 c0.37,0,0.67,0.26,0.74,0.62c0.41,2.22,2.28,2.98,3.64,2.87c0.43-0.02,0.79,0.32,0.79,0.75c0,0.4-0.32,0.73-0.72,0.75 c-2.13,0.13-4.62-1.09-5.19-4.12C7.01,14.42,7.37,14,7.83,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c0,0-6.5,5.16-6.5,9.5c0,3.59,2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5C16.5,7.16,10,2,10,2z M7.03,11.93 c0.24,1.66,1.79,2.77,3.4,2.54c0.3-0.04,0.57,0.19,0.57,0.49c0,0.28-0.2,0.47-0.42,0.5c-2.23,0.31-4.22-1.23-4.54-3.39 C6,11.77,6.23,11.5,6.54,11.5C6.79,11.5,7,11.68,7.03,11.93z\\\"></path>\"\n      }\n    }\n  },\n  \"co2\": {\n    \"name\": \"co2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-4C15,9.45,14.55,9,14,9z M13.5,13.5h-2v-3h2V13.5z M8,13v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H6.5v-0.5h-2v3h2V13H8z M20.5,15.5h-2 v1h3V18H17v-2.5c0-0.55,0.45-1,1-1h2v-1h-3V12h3.5c0.55,0,1,0.45,1,1v1.5C21.5,15.05,21.05,15.5,20.5,15.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,8h-2C9.22,8,9,8.22,9,8.5v3C9,11.78,9.22,12,9.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C12,8.22,11.78,8,11.5,8z M11,11h-1 V9h1V11z M17,14h-3v-2c0-0.28,0.22-0.5,0.5-0.5H16V11h-2v-1h2.5c0.28,0,0.5,0.22,0.5,0.5V12c0,0.28-0.22,0.5-0.5,0.5H15V13h2V14z M4,11.34V8.67C4,8.3,4.3,8,4.67,8h1.66C6.7,8,7,8.3,7,8.67v0.66H6V9H5v2h1v-0.34h1v0.67C7,11.7,6.7,12,6.34,12H4.67 C4.3,12,4,11.7,4,11.34z\\\"></path>\"\n      }\n    }\n  },\n  \"sign_language\": {\n    \"name\": \"sign_language\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.49,13l-0.93-1.86c-0.37-0.74-0.07-1.64,0.67-2.01L12.49,9l5.73,5.46c0.5,0.47,0.78,1.13,0.78,1.81v5.23 c0,1.38-1.12,2.5-2.5,2.5h-11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H10v-1H4c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h6v-1H3 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h7v-1H4.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H12.49z M11.78,7.12 c-0.84,0.4-1.17,0.62-1.63,1.19l-2.7-2.85c-0.38-0.4-0.36-1.03,0.04-1.41c0.4-0.38,1.03-0.36,1.41,0.04L11.78,7.12z M9.64,9.21 C9.41,9.76,9.35,10.45,9.44,11H8.58L6.31,8.61C5.93,8.21,5.94,7.58,6.35,7.2c0.4-0.38,1.03-0.36,1.41,0.04L9.64,9.21z M20.33,13.91 l0.88-0.83c0.5-0.47,0.79-1.13,0.79-1.82V3.35l-0.27-0.1c-0.78-0.28-1.64,0.12-1.92,0.9L19.1,6.11l-5.5-5.8 c-0.38-0.4-1.01-0.42-1.41-0.04c-0.4,0.38-0.42,1.01-0.04,1.41l3.79,3.99l-0.73,0.69l-4.82-5.08c-0.38-0.4-1.01-0.42-1.41-0.04 c-0.4,0.38-0.42,1.01-0.04,1.41l3.78,3.98L15.38,9l3.61,3.43l0.61,0.58C19.89,13.28,20.13,13.58,20.33,13.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.37,10.75l-0.7-1.39c-0.28-0.56-0.05-1.23,0.5-1.51l0.19-0.1l4.51,4.3c0.4,0.38,0.62,0.9,0.62,1.45V17c0,1.1-0.9,2-2,2 H5.12c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75H8.5v-0.75H4c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75h4.5V14.5H3.25c-0.41,0-0.75-0.34-0.75-0.75C2.5,13.34,2.84,13,3.25,13H8.5v-0.75H4.38 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75H10.37z M9.84,6.34C9.21,6.64,8.96,6.8,8.61,7.23L6.59,5.09 C6.3,4.79,6.32,4.32,6.62,4.03c0.3-0.29,0.78-0.27,1.06,0.03L9.84,6.34z M8.23,7.91C8.06,8.32,8.01,8.84,8.08,9.25H7.43l-1.7-1.79 C5.45,7.16,5.46,6.68,5.76,6.4c0.3-0.29,0.78-0.27,1.06,0.03L8.23,7.91z M15.24,10.67l0.46,0.44c0.21,0.2,0.39,0.43,0.55,0.68 l0.62-0.58c0.4-0.38,0.63-0.91,0.63-1.46V3.52l-0.2-0.07c-0.58-0.21-1.23,0.09-1.44,0.67l-0.53,1.46L11.2,1.23 c-0.29-0.3-0.76-0.31-1.06-0.03c-0.3,0.29-0.31,0.76-0.03,1.06l2.84,2.99l-0.54,0.52L8.79,1.97c-0.29-0.3-0.76-0.31-1.06-0.03 C7.43,2.22,7.42,2.7,7.7,3l2.83,2.99L15.24,10.67z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people\": {\n    \"name\": \"people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"outdoor_grill\": {\n    \"name\": \"outdoor_grill\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z\\\"></path><path d=\\\"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z\\\"></path><path d=\\\"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z\\\"></path><path d=\\\"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.66,13.88c-0.14-0.21-0.33-0.4-0.54-0.54C14.8,13.13,14.41,13,14,13s-0.8,0.13-1.12,0.34 c-0.21,0.14-0.4,0.33-0.54,0.54c-0.03,0.04-0.04,0.08-0.06,0.12H7.72l1.36-2.09C9.38,11.96,9.69,12,10,12s0.62-0.04,0.92-0.09 l0.78,1.2c0.22-0.26,0.47-0.49,0.76-0.66l-0.54-0.83C13.73,10.86,15,9.08,15,7H5c0,2.08,1.27,3.86,3.08,4.62l-3,4.61 C4.93,16.46,5,16.77,5.23,16.92c0.23,0.15,0.54,0.08,0.69-0.15L7.07,15H12c0,1.1,0.9,2,2,2s2-0.9,2-2 C16,14.59,15.87,14.2,15.66,13.88z M14,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,15.55,14.55,16,14,16z\\\"></path><path d=\\\"M8.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C8.37,3.92,8.21,3.76,8.34,3h-0.5C7.71,3.67,7.86,4.23,8.37,4.78 C8.51,4.92,8.85,5.18,8.64,6z\\\"></path><path d=\\\"M10.14,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C9.87,3.92,9.71,3.76,9.84,3h-0.5C9.21,3.67,9.36,4.23,9.87,4.78 C10.01,4.92,10.35,5.18,10.14,6z\\\"></path><path d=\\\"M11.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77c-0.25-0.3-0.41-0.47-0.28-1.23h-0.5c-0.13,0.67,0.02,1.23,0.53,1.78 C11.51,4.92,11.85,5.18,11.64,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_flags\": {\n    \"name\": \"emoji_flags\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M12,8l-1-1H7V5.85C7.29,5.67,7.5,5.37,7.5,5c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V16h1v-3h3l1,1h4V8 H12z M14,13h-2.59l-1-1H7V8h3.59l1,1H14V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snowboarding\": {\n    \"name\": \"snowboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S14,4.1,14,3z M21.4,20.09c-0.23-0.05-0.46,0.02-0.64,0.17 c-0.69,0.6-1.64,0.88-2.6,0.67L17,20.69l-1-6.19l-3.32-2.67l1.8-2.89C15.63,10.78,17.68,12,20,12v-2c-1.85,0-3.44-1.12-4.13-2.72 l-0.52-1.21C15.16,5.64,14.61,5,13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45-0.37,1-0.25,1.52L9.5,16L6,18.35 l-0.47-0.1c-0.96-0.2-1.71-0.85-2.1-1.67c-0.1-0.21-0.28-0.37-0.51-0.42c-0.43-0.09-0.82,0.2-0.9,0.58C1.98,16.88,2,17.05,2.07,17.2 c0.58,1.24,1.71,2.2,3.15,2.51l12.63,2.69c1.44,0.31,2.86-0.11,3.9-1.01c0.13-0.11,0.21-0.26,0.24-0.41 C22.06,20.6,21.83,20.18,21.4,20.09z M8.73,18.93l3.02-2.03l-0.44-3.32l2.84,2.02l0.75,4.64L8.73,18.93z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M12.75,4.5c0.96,0,1.75-0.78,1.75-1.75C14.5,1.78,13.72,1,12.75,1S11,1.78,11,2.75C11,3.72,11.79,4.5,12.75,4.5z M17.6,16.93c-0.14-0.03-0.29,0-0.41,0.09c-0.55,0.4-1.27,0.58-1.99,0.43L14,17.19l-1-4.89l-2.6-2l1.46-2.35 c0.98,1.53,2.69,2.55,4.64,2.55V9c-1.47,0-2.75-0.79-3.45-1.97L12.3,5.76C12.11,5.43,11.68,5,11,5H6.5l-2,3l1.27,0.9L7.3,6.5h1.93 L7.48,9.32c-0.3,0.48-0.38,1.07-0.22,1.61L8,13.5l-2.75,1.83l-0.66-0.14c-0.72-0.15-1.3-0.61-1.65-1.2 c-0.07-0.12-0.19-0.21-0.34-0.24c-0.29-0.06-0.54,0.13-0.59,0.38c-0.03,0.11,0,0.25,0.06,0.36c0.36,0.63,1.09,1.42,2.31,1.68 l8.89,1.89L15,18.42c1.29,0.27,2.3-0.23,2.79-0.59c0.11-0.08,0.17-0.19,0.2-0.31C18.04,17.27,17.9,16.99,17.6,16.93z M7.3,15.76 l2.45-1.62L9.3,11.5l2.34,1.65l0.76,3.7L7.3,15.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wallet\": {\n    \"name\": \"wallet\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,4H6C3.79,4,2,5.79,2,8v8c0,2.21,1.79,4,4,4h12c2.21,0,4-1.79,4-4V8C22,5.79,20.21,4,18,4z M16.14,13.77 c-0.24,0.2-0.57,0.28-0.88,0.2L4.15,11.25C4.45,10.52,5.16,10,6,10h12c0.67,0,1.26,0.34,1.63,0.84L16.14,13.77z M6,6h12 c1.1,0,2,0.9,2,2v0.55C19.41,8.21,18.73,8,18,8H6C5.27,8,4.59,8.21,4,8.55V8C4,6.9,4.9,6,6,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,4H5C3.34,4,2,5.34,2,7v6c0,1.66,1.34,3,3,3h10c1.66,0,3-1.34,3-3V7C18,5.34,16.66,4,15,4z M13.3,11.33 c-0.18,0.15-0.43,0.21-0.66,0.15L3.69,9.29C3.94,8.82,4.43,8.5,5,8.5h10c0.43,0,0.82,0.19,1.1,0.49L13.3,11.33z M16.5,7.42 C16.06,7.16,15.55,7,15,7H5C4.45,7,3.94,7.16,3.5,7.42V7c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5V7.42z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_3\": {\n    \"name\": \"person_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z\\\"></path></g><g><path d=\\\"M10,12c0.17,0,3.83,0,4,0c1.66,0,3-1.34,3-3c0-0.73-0.27-1.4-0.71-1.92C16.42,6.75,16.5,6.38,16.5,6 c0-1.25-0.77-2.32-1.86-2.77C14,2.48,13.06,2,12,2s-2,0.48-2.64,1.23C8.27,3.68,7.5,4.75,7.5,6c0,0.38,0.08,0.75,0.21,1.08 C7.27,7.6,7,8.27,7,9C7,10.66,8.34,12,10,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.4,10c0.14,0,3.06,0,3.2,0c1.33,0,2.4-1.07,2.4-2.4c0-0.59-0.22-1.12-0.57-1.53c0.1-0.27,0.17-0.56,0.17-0.87 c0-1-0.61-1.86-1.49-2.22C11.6,2.39,10.85,2,10,2S8.4,2.39,7.89,2.98C7.01,3.34,6.4,4.2,6.4,5.2c0,0.31,0.06,0.6,0.17,0.87 C6.22,6.48,6,7.01,6,7.6C6,8.93,7.07,10,8.4,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"construction\": {\n    \"name\": \"construction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8.48\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)\\\" width=\\\"3\\\" x=\\\"16.34\\\" y=\\\"12.87\\\"></rect><path d=\\\"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.3383 13.8538)\\\" width=\\\"2\\\" x=\\\"13.05\\\" y=\\\"10.62\\\"></rect><path d=\\\"M14.23,8.98c1.38,0,2.5-1.12,2.5-2.5c0-0.51-0.15-0.98-0.42-1.38l-2.08,2.08l-0.71-0.71l2.08-2.08 c-0.4-0.26-0.87-0.42-1.38-0.42c-1.38,0-2.5,1.12-2.5,2.5c0,0.32,0.07,0.63,0.18,0.91L10.69,8.6L9.64,7.54l0.71-0.71L8.93,5.42 L10.34,4C9.56,3.22,8.29,3.22,7.51,4L4.69,6.83l1.06,1.06l-2.13,0L3.27,8.24l2.83,2.83l0.35-0.35L6.46,8.6l1.06,1.06l0.71-0.71 l1.06,1.06l-4.6,4.6l1.41,1.41l7.22-7.22C13.6,8.91,13.91,8.98,14.23,8.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"elderly\": {\n    \"name\": \"elderly\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z\\\"></path>\"\n      }\n    }\n  },\n  \"face_5\": {\n    \"name\": \"face_5\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-1.12,0.23-2.18,0.65-3.15C4.74,8.94,4.86,9,5,9c0.28,0,0.5-0.22,0.5-0.5c0-0.25-0.19-0.45-0.43-0.49 c0.15-0.26,0.32-0.51,0.49-0.75C5.53,7.34,5.5,7.41,5.5,7.5C5.5,7.78,5.72,8,6,8s0.5-0.22,0.5-0.5C6.5,7.22,6.28,7,6,7 C5.87,7,5.75,7.05,5.66,7.13c0.52-0.68,1.15-1.28,1.86-1.76C7.51,5.41,7.5,5.45,7.5,5.5C7.5,5.78,7.72,6,8,6s0.5-0.22,0.5-0.5 c0-0.24-0.17-0.43-0.4-0.48c0.16-0.09,0.32-0.17,0.49-0.25C8.68,4.91,8.83,5,9,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.03-0.01-0.06-0.02-0.09c0.39-0.13,0.79-0.23,1.21-0.3C10.58,4.21,10.5,4.34,10.5,4.5C10.5,4.78,10.72,5,11,5 s0.5-0.22,0.5-0.5c0-0.21-0.13-0.38-0.3-0.46C11.46,4.01,11.73,4,12,4s0.54,0.01,0.8,0.04c-0.18,0.08-0.3,0.25-0.3,0.46 C12.5,4.78,12.72,5,13,5s0.5-0.22,0.5-0.5c0-0.16-0.08-0.29-0.19-0.38c0.41,0.07,0.82,0.17,1.21,0.3 C14.51,4.44,14.5,4.47,14.5,4.5C14.5,4.78,14.72,5,15,5c0.17,0,0.32-0.09,0.41-0.23c0.17,0.08,0.33,0.16,0.49,0.25 c-0.23,0.05-0.4,0.24-0.4,0.48C15.5,5.78,15.72,6,16,6s0.5-0.22,0.5-0.5c0-0.05-0.01-0.09-0.03-0.13 c0.71,0.48,1.34,1.08,1.86,1.76C18.25,7.05,18.13,7,18,7c-0.28,0-0.5,0.22-0.5,0.5C17.5,7.78,17.72,8,18,8s0.5-0.22,0.5-0.5 c0-0.09-0.03-0.16-0.07-0.23c0.18,0.24,0.34,0.49,0.49,0.75C18.69,8.05,18.5,8.25,18.5,8.5C18.5,8.78,18.72,9,19,9 c0.14,0,0.26-0.06,0.35-0.15C19.77,9.82,20,10.88,20,12C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"16\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.71,0.12-1.39,0.33-2.03C3.88,7.99,3.94,8,4,8c0.28,0,0.5-0.22,0.5-0.5c0-0.2-0.12-0.37-0.29-0.45 C4.3,6.88,4.4,6.71,4.51,6.54C4.53,6.8,4.74,7,5,7c0.28,0,0.5-0.22,0.5-0.5C5.5,6.22,5.28,6,5,6C4.95,6,4.91,6.01,4.87,6.03 c0.22-0.28,0.45-0.54,0.71-0.77C5.53,5.33,5.5,5.41,5.5,5.5C5.5,5.78,5.72,6,6,6s0.5-0.22,0.5-0.5C6.5,5.22,6.28,5,6,5 C5.93,5,5.87,5.01,5.81,5.04c0.22-0.19,0.45-0.35,0.7-0.51C6.52,4.79,6.73,5,7,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.17-0.09-0.31-0.21-0.4c0.15-0.07,0.3-0.13,0.45-0.19C7.81,3.96,7.9,4,8,4c0.21,0,0.39-0.13,0.46-0.31 C8.8,3.61,9.15,3.55,9.51,3.53C9.52,3.79,9.73,4,10,4s0.48-0.21,0.49-0.47c0.36,0.03,0.71,0.08,1.04,0.17C11.61,3.87,11.79,4,12,4 c0.1,0,0.19-0.04,0.26-0.09c0.15,0.06,0.3,0.12,0.45,0.19c-0.13,0.09-0.21,0.23-0.21,0.4C12.5,4.78,12.72,5,13,5 c0.27,0,0.48-0.21,0.49-0.47c0.24,0.16,0.48,0.32,0.7,0.51C14.13,5.01,14.07,5,14,5c-0.28,0-0.5,0.22-0.5,0.5 C13.5,5.78,13.72,6,14,6s0.5-0.22,0.5-0.5c0-0.09-0.03-0.17-0.08-0.25c0.26,0.24,0.49,0.5,0.71,0.77C15.09,6.01,15.05,6,15,6 c-0.28,0-0.5,0.22-0.5,0.5C14.5,6.78,14.72,7,15,7c0.26,0,0.47-0.2,0.49-0.46c0.11,0.17,0.2,0.34,0.29,0.51 C15.62,7.13,15.5,7.3,15.5,7.5C15.5,7.78,15.72,8,16,8c0.06,0,0.12-0.01,0.17-0.03C16.38,8.61,16.5,9.29,16.5,10 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sports_esports\": {\n    \"name\": \"sports_esports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M11,11H9v2H8v-2H6v-1h2V8h1v2h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.82,13.55l-0.62-5.76C15.08,6.77,14.23,6,13.21,6H6.79C5.77,6,4.92,6.77,4.81,7.78l-0.62,5.76 C4.09,14.32,4.69,15,5.46,15c0.34,0,0.67-0.14,0.91-0.38L8,13h4l1.62,1.62c0.24,0.24,0.57,0.38,0.91,0.38 C15.31,15,15.91,14.32,15.82,13.55z M9.25,9.75H8V11H7.5V9.75H6.25v-0.5H7.5V8H8v1.25h1.25V9.75z M11.5,9C11.22,9,11,8.78,11,8.5 C11,8.22,11.22,8,11.5,8S12,8.22,12,8.5C12,8.78,11.78,9,11.5,9z M12.5,11c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5C13,10.78,12.78,11,12.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mood\": {\n    \"name\": \"mood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_baseball\": {\n    \"name\": \"sports_baseball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3.81,6.28C2.67,7.9,2,9.87,2,12s0.67,4.1,1.81,5.72C6.23,16.95,8,14.68,8,12S6.23,7.05,3.81,6.28z\\\"></path></g><g><path d=\\\"M20.19,6.28C17.77,7.05,16,9.32,16,12s1.77,4.95,4.19,5.72C21.33,16.1,22,14.13,22,12S21.33,7.9,20.19,6.28z\\\"></path></g><g><path d=\\\"M14,12c0-3.28,1.97-6.09,4.79-7.33C17.01,3.02,14.63,2,12,2S6.99,3.02,5.21,4.67C8.03,5.91,10,8.72,10,12 s-1.97,6.09-4.79,7.33C6.99,20.98,9.37,22,12,22s5.01-1.02,6.79-2.67C15.97,18.09,14,15.28,14,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15.22,5.34C13.34,6.06,12,7.87,12,10s1.34,3.94,3.22,4.66C16.32,13.42,17,11.79,17,10C17,8.21,16.32,6.58,15.22,5.34z\\\"></path></g><g><path d=\\\"M11,10c0-2.39,1.41-4.45,3.43-5.42C13.23,3.59,11.68,3,10,3S6.77,3.59,5.57,4.58C7.59,5.55,9,7.61,9,10 s-1.41,4.45-3.43,5.42C6.77,16.41,8.32,17,10,17s3.23-0.59,4.43-1.58C12.41,14.45,11,12.39,11,10z\\\"></path></g><g><path d=\\\"M4.78,5.34C3.68,6.58,3,8.21,3,10c0,1.79,0.68,3.42,1.78,4.66C6.66,13.94,8,12.13,8,10S6.66,6.06,4.78,5.34z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"sick\": {\n    \"name\": \"sick\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,9c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C23,8.1,22.1,9,21,9z M17.5,7c0-0.73,0.41-1.71,0.92-2.66 C16.68,2.88,14.44,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5C19.07,10.5,17.5,8.93,17.5,7z M15.62,7.38l1.06,1.06L15.62,9.5l1.06,1.06l-1.06,1.06L13.5,9.5 L15.62,7.38z M7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12l-1.06-1.06L8.38,9.5L7.32,8.44z M15.44,17c-0.69-1.19-1.97-2-3.44-2 s-2.75,0.81-3.44,2H6.88c0.3-0.76,0.76-1.43,1.34-1.99L5.24,13.3c-0.45,0.26-1.01,0.28-1.49,0c-0.72-0.41-0.96-1.33-0.55-2.05 c0.41-0.72,1.33-0.96,2.05-0.55c0.48,0.28,0.74,0.78,0.74,1.29l3.58,2.07c0.73-0.36,1.55-0.56,2.43-0.56c2.33,0,4.32,1.45,5.12,3.5 H15.44z\\\"></path>\"\n      }\n    }\n  },\n  \"nights_stay\": {\n    \"name\": \"nights_stay\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z\\\"></path></g><path d=\\\"M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.38 10.05C7.75 6.89 9.03 4.11 9.76 3 6 3.13 3 6.21 3 9.99c0 .4.04.78.1 1.16.29-.09.59-.15.9-.15.86 0 1.68.38 2.24 1.01 1.27.12 2.26 1.19 2.26 2.49 0 .83-.41 1.56-1.04 2.02.79.3 1.65.48 2.55.48 2.45 0 4.6-1.26 5.86-3.17-1.66.16-4.89-.67-6.49-3.78z\\\"></path></g><path d=\\\"M6 13h-.27c-.35-.6-.99-1-1.73-1-1.1 0-2 .9-2 2s.9 2 2 2h2c.83 0 1.5-.67 1.5-1.5S6.83 13 6 13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_account\": {\n    \"name\": \"switch_account\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H8v-1.5c0-1.99 4-3 6-3s6 1.01 6 3V16z\\\"></path>\"\n      }\n    }\n  },\n  \"volcano\": {\n    \"name\": \"volcano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"18,8 11,8 9,13 6,13 2,22 22,22\\\"></polygon></g><g><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.9792 14.2929)\\\" width=\\\"4\\\" x=\\\"16.24\\\" y=\\\"3.76\\\"></rect></g><g><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.5061 8.2929)\\\" width=\\\"2\\\" x=\\\"8.76\\\" y=\\\"2.76\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"15,7 9,7 8,11 5,11 2,18 18,18\\\"></polygon></g><g><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"11.25\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.7627 11.8536)\\\" width=\\\"3\\\" x=\\\"13.69\\\" y=\\\"3.05\\\"></rect></g><g><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1067 7.3403)\\\" width=\\\"1.5\\\" x=\\\"8.06\\\" y=\\\"2.3\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"single_bed\": {\n    \"name\": \"single_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,12c0-1.1-0.9-2-2-2V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2 H20V12z M16,10h-3V7h3V10z M8,7h3v3H8V7z M6,12h12v3H6V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,8V6c0-0.55-0.45-1-1-1H6C5.45,5,5,5.45,5,6v2C4.45,8,4,8.45,4,9v4h1l0.75,2h0.5L7,13h6l0.75,2h0.5L15,13h1V9 C16,8.45,15.55,8,15,8z M10.5,6H14v2h-3.5V6z M6,6h3.5v2H6V6z M15,12H5V9h10V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public_off\": {\n    \"name\": \"public_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"party_mode\": {\n    \"name\": \"party_mode\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"person\": {\n    \"name\": \"person\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"ice_skating\": {\n    \"name\": \"ice_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8,8.5C8,8.22,8.22,8,8.5,8h2.52L11,7H8.5C8.22,7,8,6.78,8,6.5C8,6.22,8.22,6,8.5,6H11V3H3v15h3v2H2v2h16 c2.76,0,5-2.24,5-5h-2c0,1.66-1.34,3-3,3h-2v-2h3l0-2.88c0-2.1-1.55-3.53-3.03-3.88l-2.7-0.67C12.4,10.35,11.7,9.76,11.32,9H8.5 C8.22,9,8,8.78,8,8.5z M14,20H8v-2h6V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.5,14c0,1.38-1.12,2.5-2.5,2.5h-1.5V15H16v-3c0-1.1-0.72-2.08-1.78-2.4l-3.4-1.03c-0.33-0.1-0.6-0.3-0.79-0.57H7.5 C7.22,8,7,7.77,7,7.5S7.22,7,7.5,7h2.25V6H7.5C7.22,6,7,5.77,7,5.5S7.22,5,7.5,5h2.25V2.5H3V15h2.5v1.5H2V18h13c2.21,0,4-1.79,4-4 H17.5z M12,16.5H7V15h5V16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_golf\": {\n    \"name\": \"sports_golf\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7S5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5s-2.24,5-5,5 s-5-2.24-5-5S9.24,4,12,4z\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"14\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3C7.24,3,5,5.24,5,8s2.24,5,5,5s5-2.24,5-5S12.76,3,10,3z M10,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.21,12.21,12,10,12z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><path d=\\\"M7,15h1.5c0.55,0,1,0.45,1,1v1h1v-1c0-0.55,0.45-1,1-1H13v-1H7V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"handshake\": {\n    \"name\": \"handshake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.48,10.41c-0.39,0.39-1.04,0.39-1.43,0l-4.47-4.46l-7.05,7.04l-0.66-0.63c-1.17-1.17-1.17-3.07,0-4.24l4.24-4.24 c1.17-1.17,3.07-1.17,4.24,0L16.48,9C16.87,9.39,16.87,10.02,16.48,10.41z M17.18,8.29c0.78,0.78,0.78,2.05,0,2.83 c-1.27,1.27-2.61,0.22-2.83,0l-3.76-3.76l-5.57,5.57c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.42,0l4.62-4.62l0.71,0.71 l-4.62,4.62c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.42,0l4.62-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39-0.39,1.02,0,1.41 c0.39,0.39,1.02,0.39,1.41,0l4.62-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0l8.32-8.34 c1.17-1.17,1.17-3.07,0-4.24l-4.24-4.24c-1.15-1.15-3.01-1.17-4.18-0.06L17.18,8.29z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.62,10.17c1.17-1.17,1.17-3.07,0-4.24l-2.55-2.55c-1.17-1.17-3.07-1.17-4.24,0l-0.27,0.27l3.59,3.58 c0.62,0.62,0.62,1.64,0,2.26c-0.62,0.62-1.64,0.62-2.26,0l-3-3l-4.55,4.55c-0.31,0.31-0.31,0.82,0,1.13c0.31,0.31,0.82,0.31,1.13,0 l3.79-3.79l0.57,0.57l-3.79,3.79c-0.31,0.31-0.31,0.82,0,1.13c0.31,0.31,0.82,0.31,1.13,0l3.79-3.79l0.57,0.57l-3.79,3.79 c-0.31,0.31-0.31,0.82,0,1.13c0.31,0.31,0.82,0.31,1.13,0l3.79-3.79l0.57,0.57l-3.79,3.79c-0.31,0.31-0.31,0.82,0,1.13 c0.31,0.31,0.82,0.31,1.13,0L17.62,10.17z M4.48,4.87 M2.38,5.91c-1.17,1.17-1.17,3.07,0,4.24L3.23,11l5.64-5.64l3.57,3.57 c0.31,0.31,0.83,0.31,1.14,0c0.31-0.31,0.31-0.82,0-1.13L9.15,3.38c-1.17-1.17-3.07-1.17-4.24,0L2.38,5.91z\\\"></path></g>\"\n      }\n    }\n  },\n  \"group_off\": {\n    \"name\": \"group_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8c0-1.42-0.5-2.73-1.33-3.76C14.09,4.1,14.53,4,15,4c2.21,0,4,1.79,4,4s-1.79,4-4,4c-0.06,0-0.12,0-0.18,0l-0.77-0.77 C14.65,10.29,15,9.18,15,8z M22.83,20H23v-3c0-2.18-3.58-3.47-6.34-3.87c1.1,0.75,1.95,1.71,2.23,2.94L22.83,20z M7.24,4.41 C7.77,4.15,8.37,4,9,4c2.21,0,4,1.79,4,4c0,0.63-0.15,1.23-0.41,1.76L7.24,4.41z M9.17,12C9.11,12,9.06,12,9,12c-2.21,0-4-1.79-4-4 c0-0.06,0-0.11,0-0.17L0.69,3.51L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0-2.66,5.33-4,8-4c0.37,0,0.8,0.03,1.25,0.08 L9.17,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.61,8.49C10.86,8.05,11,7.54,11,7c0-1.66-1.34-3-3-3C7.46,4,6.95,4.14,6.51,4.39L10.61,8.49z M11.68,9.56 C12.19,8.83,12.5,7.95,12.5,7c0-1.13-0.43-2.15-1.12-2.94C11.58,4.02,11.79,4,12,4c1.66,0,3,1.34,3,3c0,1.62-1.28,2.94-2.88,3 L11.68,9.56z M15.41,13.29c-0.2-0.83-0.69-1.57-1.39-2.06c1.08,0.22,2.1,0.6,3.02,1.14c0.6,0.36,0.97,1.02,0.97,1.72v1.79 L15.41,13.29z M5,7.12L1.16,3.28l1.06-1.06l15.56,15.56l-1.06,1.06L13.88,16H2v-1.91c0-0.7,0.36-1.36,0.97-1.72 C4.44,11.5,6.16,11,8,11c0.31,0,0.62,0.01,0.92,0.04l0,0L7.88,10C6.32,9.93,5.07,8.68,5,7.12z\\\"></path>\"\n      }\n    }\n  },\n  \"face_6\": {\n    \"name\": \"face_6\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-0.01,0-0.02,0-0.03 c2.31-0.22,3.43-1.59,4.34-3.41C8.51,8.21,8.85,8,9.24,8h5.53c0.38,0,0.72,0.21,0.89,0.55c0.9,1.8,1.99,3.19,4.34,3.41 c0,0.01,0,0.02,0,0.03C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.17,0.01-0.34,0.03-0.51c2.39-0.08,3.32-2.16,3.65-2.66C7.32,6.62,7.55,6.5,7.8,6.5h4.39c0.25,0,0.48,0.12,0.62,0.33 c0.34,0.51,1.28,2.58,3.65,2.66C16.49,9.66,16.5,9.83,16.5,10C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"add_moderator\": {\n    \"name\": \"add_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.22 22.61c-.4.15-.8.29-1.22.39-5.16-1.26-9-6.45-9-12V5l9-4 9 4v6c0 .9-.11 1.78-.3 2.65-.81-.41-1.73-.65-2.7-.65-3.31 0-6 2.69-6 6 0 1.36.46 2.61 1.22 3.61zM19 20v2.99s-1.99.01-2 0V20h-3v-2h3v-3h2v3h3v2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"catching_pokemon\": {\n    \"name\": \"catching_pokemon\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,12c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5C13.38,9.5,14.5,10.62,14.5,12z M22,12 c0,5.52-4.48,10-10,10C6.48,22,2,17.52,2,12S6.48,2,12,2C17.52,2,22,6.48,22,12z M20,12h-4c0-2.21-1.79-4-4-4c-2.21,0-4,1.79-4,4H4 c0,4.41,3.59,8,8,8C16.41,20,20,16.41,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.25,10c0,1.24-1.01,2.25-2.25,2.25S7.75,11.24,7.75,10S8.76,7.75,10,7.75S12.25,8.76,12.25,10z M18,10c0,4.42-3.58,8-8,8 s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M16.5,10h-3.25c0-1.79-1.46-3.25-3.25-3.25S6.75,8.21,6.75,10H3.5c0,3.58,2.92,6.5,6.5,6.5 S16.5,13.58,16.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_moderator\": {\n    \"name\": \"remove_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.27 21.73l-3.54-3.55L5.78 5.23 2.27 1.72 1 2.99 3.01 5H3v6c0 5.55 3.84 10.74 9 12 2.16-.53 4.08-1.76 5.6-3.41L21 23l1.27-1.27zM13 9.92l6.67 6.67C20.51 14.87 21 12.96 21 11V5l-9-4-5.48 2.44L11 7.92l2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"health_and_safety\": {\n    \"name\": \"health_and_safety\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13z M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2 z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_people\": {\n    \"name\": \"emoji_people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><circle cx=\\\"10\\\" cy=\\\"5\\\" r=\\\"1\\\"></circle><path d=\\\"M12.29,7.29C12.11,7.11,11.85,7,11.59,7H8.5C7.12,7,6,5.88,6,4.5V4H5v0.5C5,6.26,6.31,7.75,8,8v4v4h1v-4h2v4h1v-4V8.41 l2.83,2.83l0.71-0.71L12.29,7.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"whatsapp\": {\n    \"name\": \"whatsapp\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19.05,4.91C17.18,3.03,14.69,2,12.04,2c-5.46,0-9.91,4.45-9.91,9.91c0,1.75,0.46,3.45,1.32,4.95L2.05,22l5.25-1.38 c1.45,0.79,3.08,1.21,4.74,1.21h0c0,0,0,0,0,0c5.46,0,9.91-4.45,9.91-9.91C21.95,9.27,20.92,6.78,19.05,4.91z M12.04,20.15 L12.04,20.15c-1.48,0-2.93-0.4-4.2-1.15l-0.3-0.18l-3.12,0.82l0.83-3.04l-0.2-0.31c-0.82-1.31-1.26-2.83-1.26-4.38 c0-4.54,3.7-8.24,8.24-8.24c2.2,0,4.27,0.86,5.82,2.42c1.56,1.56,2.41,3.63,2.41,5.83C20.28,16.46,16.58,20.15,12.04,20.15z M16.56,13.99c-0.25-0.12-1.47-0.72-1.69-0.81c-0.23-0.08-0.39-0.12-0.56,0.12c-0.17,0.25-0.64,0.81-0.78,0.97 c-0.14,0.17-0.29,0.19-0.54,0.06c-0.25-0.12-1.05-0.39-1.99-1.23c-0.74-0.66-1.23-1.47-1.38-1.72c-0.14-0.25-0.02-0.38,0.11-0.51 c0.11-0.11,0.25-0.29,0.37-0.43c0.12-0.14,0.17-0.25,0.25-0.41c0.08-0.17,0.04-0.31-0.02-0.43c-0.06-0.12-0.56-1.34-0.76-1.84 c-0.2-0.48-0.41-0.42-0.56-0.43C8.86,7.33,8.7,7.33,8.53,7.33c-0.17,0-0.43,0.06-0.66,0.31C7.65,7.89,7.01,8.49,7.01,9.71 c0,1.22,0.89,2.4,1.01,2.56c0.12,0.17,1.75,2.67,4.23,3.74c0.59,0.26,1.05,0.41,1.41,0.52c0.59,0.19,1.13,0.16,1.56,0.1 c0.48-0.07,1.47-0.6,1.67-1.18c0.21-0.58,0.21-1.07,0.14-1.18S16.81,14.11,16.56,13.99z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.69,4.23c-1.51-1.51-3.51-2.34-5.65-2.34c-4.4,0-7.98,3.58-7.98,7.98c0,1.41,0.37,2.78,1.07,3.99L2,18l4.23-1.11 c1.17,0.64,2.48,0.97,3.81,0.97h0c4.4,0,7.98-3.58,7.98-7.98C18.03,7.75,17.2,5.74,15.69,4.23z M10.05,16.51L10.05,16.51 c-1.19,0-2.36-0.32-3.38-0.92l-0.24-0.14L3.92,16.1l0.67-2.45L4.43,13.4c-0.66-1.06-1.01-2.28-1.01-3.53 c0-3.66,2.98-6.63,6.64-6.63c1.77,0,3.44,0.69,4.69,1.95c1.25,1.25,1.94,2.92,1.94,4.69C16.68,13.54,13.71,16.51,10.05,16.51z M13.69,11.55c-0.2-0.1-1.18-0.58-1.36-0.65c-0.18-0.07-0.32-0.1-0.45,0.1c-0.13,0.2-0.52,0.65-0.63,0.78 c-0.12,0.13-0.23,0.15-0.43,0.05c-0.2-0.1-0.84-0.31-1.6-0.99C8.62,10.31,8.22,9.66,8.1,9.46S8.09,9.15,8.19,9.05 c0.09-0.09,0.2-0.23,0.3-0.35s0.13-0.2,0.2-0.33c0.07-0.13,0.03-0.25-0.02-0.35c-0.05-0.1-0.45-1.08-0.61-1.48 C7.89,6.15,7.73,6.2,7.61,6.19C7.49,6.19,7.36,6.19,7.22,6.19c-0.13,0-0.35,0.05-0.53,0.25c-0.18,0.2-0.7,0.68-0.7,1.66 c0,0.98,0.71,1.93,0.81,2.06c0.1,0.13,1.41,2.15,3.41,3.01c0.48,0.21,0.85,0.33,1.14,0.42c0.48,0.15,0.91,0.13,1.26,0.08 c0.38-0.06,1.18-0.48,1.35-0.95c0.17-0.47,0.17-0.87,0.12-0.95C14.02,11.69,13.89,11.64,13.69,11.55z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"person_add_alt\": {\n    \"name\": \"person_add_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M11,8c0,1.1-0.9,2-2,2S7,9.1,7,8s0.9-2,2-2S11,6.9,11,8z M1,18v2h16v-2c0-2.66-5.33-4-8-4S1,15.34,1,18z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z M20,15v-3h3v-2h-3V7h-2v3h-3v2 h3v3H20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\\\"></path><path d=\\\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\\\"></path><polygon points=\\\"13,9 15,9 15,7 16,7 16,9 18,9 18,10 16,10 16,12 15,12 15,10 13,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pix\": {\n    \"name\": \"pix\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.45,16.52l-3.01-3.01c-0.11-0.11-0.24-0.13-0.31-0.13s-0.2,0.02-0.31,0.13L8.8,16.53c-0.34,0.34-0.87,0.89-2.64,0.89 l3.71,3.7c1.17,1.17,3.07,1.17,4.24,0l3.72-3.71C16.92,17.41,16.16,17.23,15.45,16.52z\\\"></path><path d=\\\"M8.8,7.47l3.02,3.02c0.08,0.08,0.2,0.13,0.31,0.13s0.23-0.05,0.31-0.13l2.99-2.99c0.71-0.74,1.52-0.91,2.43-0.91 l-3.72-3.71c-1.17-1.17-3.07-1.17-4.24,0l-3.71,3.7C7.95,6.58,8.49,7.16,8.8,7.47z\\\"></path><path d=\\\"M21.11,9.85l-2.25-2.26H17.6c-0.54,0-1.08,0.22-1.45,0.61l-3,3c-0.28,0.28-0.65,0.42-1.02,0.42 c-0.36,0-0.74-0.15-1.02-0.42L8.09,8.17c-0.38-0.38-0.9-0.6-1.45-0.6H5.17l-2.29,2.3c-1.17,1.17-1.17,3.07,0,4.24l2.29,2.3h1.48 c0.54,0,1.06-0.22,1.45-0.6l3.02-3.02c0.28-0.28,0.65-0.42,1.02-0.42c0.37,0,0.74,0.14,1.02,0.42l3.01,3.01 c0.38,0.38,0.9,0.6,1.45,0.6h1.26l2.25-2.26C22.3,12.96,22.3,11.04,21.11,9.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.79,13.58l-2.41-2.41c-0.1-0.1-0.22-0.12-0.28-0.12c-0.06,0-0.18,0.02-0.28,0.12L7.4,13.59 c-0.71,0.71-1.45,0.7-2.13,0.7l3.02,3.01c0.94,0.94,2.46,0.94,3.39,0l3.03-3.02C14,14.28,13.38,14.17,12.79,13.58z\\\"></path><path d=\\\"M7.4,6.41l2.42,2.42C9.9,8.9,10,8.94,10.1,8.94s0.21-0.04,0.28-0.12l2.39-2.39c0.58-0.59,1.21-0.71,1.96-0.71L11.71,2.7 c-0.94-0.94-2.46-0.94-3.39,0L5.29,5.71C6.02,5.71,6.7,5.71,7.4,6.41z\\\"></path><path d=\\\"M17.29,8.28l-1.8-1.81h-1.01c-0.44,0-0.86,0.17-1.16,0.48l-2.4,2.4c-0.22,0.22-0.52,0.34-0.81,0.34 c-0.29,0-0.59-0.12-0.81-0.34L6.87,6.94C6.57,6.63,6.15,6.46,5.72,6.46H4.53L2.7,8.3c-0.94,0.94-0.94,2.46,0,3.39l1.83,1.84h1.18 c0.43,0,0.85-0.17,1.16-0.48l2.42-2.42c0.22-0.22,0.52-0.34,0.81-0.34s0.59,0.11,0.81,0.34l2.41,2.41 c0.08,0.08,0.16,0.15,0.25,0.2c0.27,0.18,0.58,0.28,0.91,0.28h1.01l1.8-1.81c0.36-0.36,0.58-0.8,0.67-1.25 C17.99,10.31,18,10.16,18,10C18,9.38,17.76,8.76,17.29,8.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"scale\": {\n    \"name\": \"scale\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,11V8c4.56-0.58,8-3.1,8-6H2c0,2.9,3.44,5.42,8,6l0,3c-3.68,0.73-8,3.61-8,11h6v-2H4.13c0.93-6.83,6.65-7.2,7.87-7.2 s6.94,0.37,7.87,7.2H16v2h6C22,14.61,17.68,11.73,14,11z M12,22c-1.1,0-2-0.9-2-2c0-0.55,0.22-1.05,0.59-1.41 C11.39,17.79,16,16,16,16s-1.79,4.61-2.59,5.41C13.05,21.78,12.55,22,12,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,18c-0.83,0-1.5-0.67-1.5-1.5c0-0.41,0.17-0.79,0.44-1.06l0,0C9.54,14.84,13,13.5,13,13.5s-1.34,3.46-1.94,4.06 C10.79,17.83,10.41,18,10,18z M18,18h-5v-1.5l3.4,0c-0.77-5.48-5.79-5.65-6.4-5.65c-0.61,0-5.63,0.17-6.4,5.65l3.4,0V18H2 c0-5.88,3.72-7.97,6.5-8.5V7C4.8,6.55,2,4.49,2,2h16c0,2.49-2.8,4.55-6.5,5v2.5C14.28,10.03,18,12.12,18,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_reaction\": {\n    \"name\": \"add_reaction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,9V7h-2V2.84C14.77,2.3,13.42,2,11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12 c0-1.05-0.17-2.05-0.47-3H18z M15.5,8C16.33,8,17,8.67,17,9.5S16.33,11,15.5,11S14,10.33,14,9.5S14.67,8,15.5,8z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,17.5c-2.33,0-4.31-1.46-5.11-3.5h10.22 C16.31,16.04,14.33,17.5,12,17.5z M22,3h2v2h-2v2h-2V5h-2V3h2V1h2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"18_up_rating\": {\n    \"name\": \"18_up_rating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"12.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,15H8.5v-4.5H7V9h3V15z M16,14 c0,0.55-0.45,1-1,1h-2.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H15c0.55,0,1,0.45,1,1V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\".75\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"10.25\\\"></rect><rect height=\\\".75\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"9\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M9,12H8V9H7V8h2V12z M13,11.5c0,0.28-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5v-3C10,8.22,10.22,8,10.5,8h2 C12.78,8,13,8.22,13,8.5V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_cricket\": {\n    \"name\": \"sports_cricket\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15.05,12.81L6.56,4.32c-0.39-0.39-1.02-0.39-1.41,0L2.32,7.15c-0.39,0.39-0.39,1.02,0,1.41l8.49,8.49 c0.39,0.39,1.02,0.39,1.41,0l2.83-2.83C15.44,13.83,15.44,13.2,15.05,12.81z\\\"></path><rect height=\\\"6\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)\\\" width=\\\"2\\\" x=\\\"16.17\\\" y=\\\"16.17\\\"></rect></g><circle cx=\\\"18.5\\\" cy=\\\"5.5\\\" r=\\\"3.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"14.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M12.34,11.51L5.97,5.15c-0.2-0.2-0.51-0.2-0.71,0L3.15,7.26c-0.2,0.2-0.2,0.51,0,0.71l6.36,6.36c0.2,0.2,0.51,0.2,0.71,0 l2.12-2.12C12.53,12.02,12.53,11.71,12.34,11.51z\\\"></path><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.9645 13.9853)\\\" width=\\\"1\\\" x=\\\"12.9\\\" y=\\\"13.4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"facebook\": {\n    \"name\": \"facebook\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_martial_arts\": {\n    \"name\": \"sports_martial_arts\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"19.8,2 11.6,8.7 10.39,7.66 13.99,5.58 9.41,1 8,2.41 10.74,5.15 5,8.46 3.81,12.75 6.27,17 8,16 5.97,12.48 6.32,11.18 9.5,13 10,22 12,22 12.5,12 21,3.4\\\"></polygon><circle cx=\\\"5\\\" cy=\\\"5\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"4.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><polygon points=\\\"16.79,2 9.96,7.54 8.27,6.22 11.01,4.64 7.37,1 6.67,1.71 9.38,4.42 4.25,7.38 3.31,10.78 5.13,14 6,13.51 4.39,10.65 4.88,8.87 8.5,11 9,18 10,18 10.5,10 17.5,2.71\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_motorsports\": {\n    \"name\": \"sports_motorsports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,11.39c0-0.65-0.39-1.23-0.98-1.48L5.44,7.55c-1.48,1.68-2.32,3.7-2.8,5.45h7.75C11.28,13,12,12.28,12,11.39z\\\"></path><path d=\\\"M21.96,11.22c-0.41-4.41-4.56-7.49-8.98-7.2c-2.51,0.16-4.44,0.94-5.93,2.04l4.74,2.01c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H2.21C2,16.31,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10C18.67,20,22.41,15.99,21.96,11.22z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.69,5.02C9,5.15,7.7,5.7,6.67,6.45l3.71,1.53c1.72,0.71,2.17,2.94,0.85,4.25C10.75,12.73,10.08,13,9.39,13H3.12 C3.02,13.65,3,14.07,3,14.07V15c0,0.55,0.45,1,1,1h7.5c3.13,0,5.65-2.62,5.49-5.79C16.83,7.04,13.85,4.78,10.69,5.02z\\\"></path><path d=\\\"M9.39,12c0.43,0,0.83-0.17,1.14-0.47c0.39-0.39,0.55-0.92,0.44-1.45C10.86,9.54,10.51,9.11,10,8.91L5.81,7.18 C4.35,8.65,3.64,10.56,3.31,12H9.39z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"diversity_1\": {\n    \"name\": \"diversity_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"4\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M1.22,17.58C0.48,17.9,0,18.62,0,19.43V21l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,17.04,4.39,17,4,17 C3.01,17,2.07,17.21,1.22,17.58z\\\"></path><circle cx=\\\"20\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M22.78,17.58C21.93,17.21,20.99,17,20,17c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V21l4.5,0v-1.57 C24,18.62,23.52,17.9,22.78,17.58z\\\"></path><path d=\\\"M16.24,16.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,17.13,6,18.21,6,19.39V21h12v-1.61 C18,18.21,17.32,17.13,16.24,16.65z\\\"></path><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3c0-1.66-1.34-3-3-3S9,10.34,9,12z\\\"></path><path d=\\\"M2.48,10.86C2.17,10.1,2,9.36,2,8.6C2,6.02,4.02,4,6.6,4c2.68,0,3.82,1.74,5.4,3.59C13.57,5.76,14.7,4,17.4,4 C19.98,4,22,6.02,22,8.6c0,0.76-0.17,1.5-0.48,2.26c0.65,0.31,1.18,0.82,1.53,1.44C23.65,11.1,24,9.88,24,8.6 C24,4.9,21.1,2,17.4,2c-2.09,0-4.09,0.97-5.4,2.51C10.69,2.97,8.69,2,6.6,2C2.9,2,0,4.9,0,8.6c0,1.28,0.35,2.5,0.96,3.7 C1.31,11.68,1.84,11.17,2.48,10.86z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"3.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M13.54,14.25c-0.98-0.43-2.18-0.75-3.54-0.75c-1.36,0-2.56,0.32-3.54,0.75C5.57,14.65,5,15.55,5,16.53V18h10v-1.47 C15,15.55,14.43,14.65,13.54,14.25z\\\"></path><path d=\\\"M19.15,15.61C18.44,15.27,17.54,15,16.5,15c-0.29,0-0.56,0.02-0.82,0.06c0.21,0.45,0.32,0.95,0.32,1.47V18h4v-1.04 C20,16.39,19.67,15.86,19.15,15.61z\\\"></path><path d=\\\"M0.85,15.61C0.33,15.86,0,16.39,0,16.96V18h4v-1.47c0-0.52,0.11-1.02,0.32-1.47C4.06,15.02,3.79,15,3.5,15 C2.46,15,1.56,15.27,0.85,15.61z\\\"></path><path d=\\\"M7.5,10.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C12.5,9.12,11.38,8,10,8S7.5,9.12,7.5,10.5z\\\"></path><path d=\\\"M2.33,10.3C1.79,9.36,1.5,8.44,1.5,7.5c0-2.24,1.76-4,4-4c2.53,0,3.77,2.04,4.5,2.9c0.62-0.73,1.91-2.9,4.5-2.9 c2.24,0,4,1.76,4,4c0,0.94-0.29,1.86-0.83,2.8c0.46,0.25,0.84,0.63,1.07,1.1C19.54,10.12,20,8.86,20,7.5C20,4.42,17.58,2,14.5,2 c-1.74,0-3.41,0.81-4.5,2.09C8.91,2.81,7.24,2,5.5,2C2.42,2,0,4.42,0,7.5c0,1.36,0.46,2.62,1.26,3.9 C1.5,10.93,1.87,10.55,2.33,10.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cyclone\": {\n    \"name\": \"cyclone\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4C16,9.79,14.21,8,12,8z M12,14c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M22,7.47V5.35C20.05,4.77,16.56,4,12,4C9.85,4,7.89,4.86,6.46,6.24C6.59,5.39,6.86,3.84,7.47,2H5.35 C4.77,3.95,4,7.44,4,12c0,2.15,0.86,4.11,2.24,5.54c-0.85-0.14-2.4-0.4-4.24-1.01v2.12C3.95,19.23,7.44,20,12,20 c2.15,0,4.11-0.86,5.54-2.24c-0.14,0.85-0.4,2.4-1.01,4.24h2.12C19.23,20.05,20,16.56,20,12c0-2.15-0.86-4.11-2.24-5.54 C18.61,6.59,20.16,6.86,22,7.47z M12,18c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,13.5c1.93,0,3.5-1.57,3.5-3.5S11.93,6.5,10,6.5S6.5,8.07,6.5,10S8.07,13.5,10,13.5z M10,8c1.1,0,2,0.9,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,8.9,8.9,8,10,8z\\\"></path><path d=\\\"M18,5.68V4.09C14.49,3.06,11.23,3,10,3C8,3,6.2,3.84,4.93,5.18C4.93,5.15,5.15,3.71,5.68,2H4.09C3.06,5.51,3,8.77,3,10 c0,2,0.84,3.8,2.18,5.07C5.15,15.07,3.71,14.85,2,14.32v1.59C5.51,16.94,8.77,17,10,17c2,0,3.8-0.84,5.07-2.18 c-0.01,0.03-0.23,1.48-0.76,3.18h1.59c1.03-3.51,1.09-6.77,1.09-8c0-2-0.84-3.8-2.18-5.07C14.85,4.93,16.3,5.15,18,5.68z M15.5,10 c0,3.03-2.47,5.5-5.5,5.5S4.5,13.03,4.5,10S6.97,4.5,10,4.5S15.5,6.97,15.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dew_point\": {\n    \"name\": \"dew_point\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12 13V5c0-1.66-1.34-3-3-3S6 3.34 6 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1H9v1h1v2H9v1h1v1H8zm13-4.5c0-.84-1.5-2.5-1.5-2.5S18 5.66 18 6.5c0 .83.67 1.5 1.5 1.5S21 7.33 21 6.5zm-4 3c0-.84-1.5-2.5-1.5-2.5S14 8.66 14 9.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5zm4 3c0-.84-1.5-2.5-1.5-2.5S18 11.66 18 12.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.5 10.9V4.5a2.5 2.5 0 00-5 0v6.4A3.96 3.96 0 003 14c0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.26-.59-2.37-1.5-3.1zM7 3.5c.55 0 1 .45 1 1V5H7v1h1v1H7v1h1v1H6V4.5c0-.55.45-1 1-1zm10 2.38C17 5.24 15.88 4 15.88 4s-1.12 1.24-1.12 1.88c0 .62.5 1.12 1.12 1.12C16.5 7 17 6.5 17 5.88zm-3 2.24c0-.63-1.12-1.88-1.12-1.88s-1.12 1.24-1.12 1.88c0 .62.5 1.12 1.12 1.12.62.01 1.12-.49 1.12-1.12zm3 2.26c0-.63-1.13-1.88-1.13-1.88s-1.12 1.24-1.12 1.88c0 .62.5 1.12 1.12 1.12.63 0 1.13-.5 1.13-1.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"deck\": {\n    \"name\": \"deck\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"22,9 12,2 2,9 11,9 11,22 13,22 13,9\\\"></polygon><polygon points=\\\"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16\\\"></polygon><polygon points=\\\"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"17,8 10,3 3,8 9.5,8 9.5,17 10.5,17 10.5,8\\\"></polygon><polygon points=\\\"4.92,13 4.37,10 3.38,10.18 4,13.5 4,17 5,17 5,14 7,14 7,17 8,17 8,13\\\"></polygon><polygon points=\\\"15.63,10 15.08,13 12,13 12,17 13,17 13,14 15,14 15,17 16,17 16,13.5 16.62,10.18\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"history_edu\": {\n    \"name\": \"history_edu\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7,4v0.73c-0.68-0.32-1.4-0.5-2.13-0.5c-1.28,0-2.56,0.49-3.54,1.46l2.12,2.12h1.41L4.76,9.13 c0.62,0.62,1.42,0.92,2.23,0.92c0,0,0.01,0,0.01,0V12H5v2.5C5,15.33,5.67,16,6.5,16H14c1.1,0,2-0.9,2-2V4H7z M6.99,9.05 c-0.43,0-0.84-0.12-1.19-0.36l0.15-1.87H3.87L2.84,5.79c0.61-0.36,1.31-0.55,2.03-0.55c1.07,0,2.07,0.42,2.83,1.17l1.41,1.41 l-0.6,0.6C8.1,8.82,7.56,9.05,6.99,9.05z M15,14c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2H8V9.87c0.44-0.15,0.86-0.39,1.22-0.74l0.6-0.6 L12.29,11H13v-0.71L8.4,5.7C8.28,5.57,8.14,5.48,8,5.37V5h7V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_transportation\": {\n    \"name\": \"emoji_transportation\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z\\\"></path><polygon points=\\\"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4\\\"></polygon><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><polygon points=\\\"8,5 11,5 11,8 12,8 12,4 7,4 7,7 4,7 4,16 5,16 5,8 8,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"13\\\"></rect><path d=\\\"M15.11,9.34C15.05,9.14,14.85,9,14.64,9H9.36C9.15,9,8.95,9.14,8.89,9.34L8,12v2v0.5V15v0.5C8,15.78,8.22,16,8.5,16 S9,15.78,9,15.5V15h6v0.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V15v-0.5V14v-2L15.11,9.34z M9.72,10h4.56l0.67,2H9.05L9.72,10 z M9.5,14C9.22,14,9,13.78,9,13.5S9.22,13,9.5,13s0.5,0.22,0.5,0.5S9.78,14,9.5,14z M14.5,14c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5S14.78,14,14.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"masks\": {\n    \"name\": \"masks\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1s1,0.45,1,1V9z M10.69,10.48 c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62 c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10C11.51,10,11.16,10.2,10.69,10.48z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_3\": {\n    \"name\": \"diversity_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.32,13.01c0.96,0.02,1.85,0.5,2.45,1.34C9.5,15.38,10.71,16,12,16c1.29,0,2.5-0.62,3.23-1.66 c0.6-0.84,1.49-1.32,2.45-1.34C16.96,11.78,14.08,11,12,11C9.93,11,7.04,11.78,6.32,13.01z\\\"></path><path d=\\\"M4,13L4,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C1,11.66,2.34,13,4,13z\\\"></path><path d=\\\"M20,13L20,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C17,11.66,18.34,13,20,13z\\\"></path><path d=\\\"M12,10c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,5.34,9,7C9,8.66,10.34,10,12,10z\\\"></path><path d=\\\"M21,14h-3.27c-0.77,0-1.35,0.45-1.68,0.92C16.01,14.98,14.69,17,12,17c-1.43,0-3.03-0.64-4.05-2.08 C7.56,14.37,6.95,14,6.27,14H3c-1.1,0-2,0.9-2,2v4h7v-2.26c1.15,0.8,2.54,1.26,4,1.26s2.85-0.46,4-1.26V20h7v-4 C23,14.9,22.1,14,21,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M7.13,11.23c0.65,0.95,1.73,1.52,2.87,1.52s2.22-0.57,2.87-1.52c0.36-0.53,0.93-0.86,1.56-0.94C13.91,9.78,12.01,9,10,9 c-2.02,0-3.91,0.79-4.43,1.29C6.19,10.37,6.76,10.7,7.13,11.23z\\\"></path></g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"3.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.5,11h-2.78c-0.49,0-0.95,0.25-1.23,0.65c-0.81,1.17-2.13,1.85-3.49,1.85c-0.31,0-2.25-0.03-3.49-1.85 C6.27,11.3,5.84,11,5.28,11H2.5C1.67,11,1,11.67,1,12.5V16h6v-1.87C7.89,14.68,8.92,15,10,15s2.11-0.32,3-0.87V16h6v-3.5 C19,11.67,18.33,11,17.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology\": {\n    \"name\": \"psychology\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,8.57c-0.79,0-1.43,0.64-1.43,1.43s0.64,1.43,1.43,1.43s1.43-0.64,1.43-1.43S13.79,8.57,13,8.57z\\\"></path><path d=\\\"M13,3C9.25,3,6.2,5.94,6.02,9.64L4.1,12.2C3.85,12.53,4.09,13,4.5,13H6v3c0,1.1,0.9,2,2,2h1v3h7v-4.68 c2.36-1.12,4-3.53,4-6.32C20,6.13,16.87,3,13,3z M16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66c0.08,0.06,0.1,0.16,0.05,0.25 l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6 c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39 c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95 c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06 C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09 l0.8,1.38c0.05,0.09,0.03,0.2-0.05,0.26l-0.85,0.66C15.99,9.73,16,9.86,16,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.5,4C8.22,4,6.35,5.71,6.06,7.91l-1.54,2.31C4.3,10.55,4.53,11,4.93,11H6v2c0,0.55,0.45,1,1,1h1v2h5v-3.76 c1.21-0.81,2-2.18,2-3.74C15,6.01,12.99,4,10.5,4z M12.33,8.67c0,0.09-0.01,0.18-0.02,0.26l0.56,0.44 c0.05,0.04,0.07,0.11,0.03,0.17l-0.53,0.92c-0.03,0.06-0.1,0.08-0.16,0.06l-0.66-0.27c-0.14,0.1-0.29,0.19-0.45,0.26L11,11.22 c-0.01,0.07-0.06,0.11-0.13,0.11H9.8c-0.07,0-0.12-0.05-0.13-0.11l-0.1-0.71c-0.16-0.07-0.31-0.15-0.45-0.26l-0.66,0.27 c-0.06,0.02-0.13,0-0.16-0.06L7.76,9.54C7.73,9.48,7.74,9.41,7.79,9.37l0.56-0.44C8.34,8.84,8.33,8.75,8.33,8.67 s0.01-0.18,0.02-0.26L7.79,7.97C7.74,7.93,7.73,7.86,7.76,7.8l0.53-0.92c0.03-0.06,0.1-0.08,0.16-0.06l0.66,0.27 c0.14-0.1,0.29-0.19,0.45-0.26l0.1-0.71C9.68,6.05,9.73,6,9.8,6h1.07c0.07,0,0.12,0.05,0.13,0.11l0.1,0.71 c0.16,0.07,0.31,0.15,0.45,0.26l0.66-0.27c0.06-0.02,0.13,0,0.16,0.06l0.53,0.92c0.03,0.06,0.02,0.13-0.03,0.17l-0.56,0.44 C12.33,8.49,12.33,8.58,12.33,8.67z\\\"></path><path d=\\\"M10.33,7.71c-0.52,0-0.95,0.43-0.95,0.95c0,0.52,0.43,0.95,0.95,0.95s0.95-0.43,0.95-0.95 C11.29,8.14,10.86,7.71,10.33,7.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology_alt\": {\n    \"name\": \"psychology_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.94,9.06C19.5,5.73,16.57,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48C3.74,13.14,4.22,14,5,14h1l0,2c0,1.1,0.9,2,2,2h1 v3h7l0-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M12.5,14c-0.41,0-0.74-0.33-0.74-0.74c0-0.41,0.33-0.73,0.74-0.73 c0.41,0,0.73,0.32,0.73,0.73C13.23,13.67,12.92,14,12.5,14z M14.26,9.68c-0.44,0.65-0.86,0.85-1.09,1.27 c-0.09,0.17-0.13,0.28-0.13,0.82h-1.06c0-0.29-0.04-0.75,0.18-1.16c0.28-0.51,0.83-0.81,1.14-1.26c0.33-0.47,0.15-1.36-0.8-1.36 c-0.62,0-0.92,0.47-1.05,0.86l-0.96-0.4C10.76,7.67,11.46,7,12.5,7c0.86,0,1.45,0.39,1.75,0.88C14.51,8.31,14.66,9.1,14.26,9.68z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,3C7.88,3,5.68,4.84,5.13,7.3L3.2,10.2C2.68,10.97,3.24,12,4.16,12h0.83v1.5c0,0.83,0.67,1.5,1.5,1.5H8v2h5.5v-3.89 C15,12.12,16,10.43,16,8.5C16,5.46,13.54,3,10.5,3z M10.25,12c-0.35,0-0.63-0.28-0.63-0.63c0-0.35,0.28-0.62,0.63-0.62 c0.35,0,0.62,0.27,0.62,0.62C10.88,11.72,10.61,12,10.25,12z M11.76,8.3c-0.38,0.56-0.74,0.73-0.93,1.09 c-0.08,0.14-0.11,0.24-0.11,0.71H9.8c0-0.25-0.04-0.65,0.16-0.99c0.24-0.44,0.71-0.7,0.98-1.08c0.29-0.41,0.13-1.16-0.68-1.16 c-0.53,0-0.79,0.4-0.9,0.74L8.53,7.25C8.76,6.58,9.36,6,10.25,6c0.74,0,1.25,0.34,1.5,0.76C11.97,7.12,12.1,7.8,11.76,8.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elderly_woman\": {\n    \"name\": \"elderly_woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.5,11c-1.56,0-2.92-0.9-3.58-2.21l-0.79-1.67l0,0C14.12,7.1,13.63,6,12.34,6l0,0C8.72,6,6,16.69,6,19h2.5l-2.1,2.8 L8,23l3-4h2v4h2v-4.03L13,13l0.49-2.71c0.81,1.23,2.05,2.14,3.51,2.52v0.69h1v-1c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V23h1 V12.5C20,11.67,19.33,11,18.5,11z\\\"></path><path d=\\\"M11.6,2.91c-0.06,0.19-0.1,0.38-0.1,0.59c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2c-0.21,0-0.4,0.04-0.59,0.1 C12.76,1.25,12.41,1,12,1c-0.55,0-1,0.45-1,1C11,2.41,11.25,2.76,11.6,2.91z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.62,8.99c-0.32,0-0.61,0.14-0.81,0.35c-1.91-0.49-1.98-2.15-2.92-2.91c-0.26-0.21-0.57-0.34-0.89-0.4 C6.85,5.45,5.5,14.26,5.5,15h1.6l-1.6,2l1,1L9,15h1.5v3H12v-3l-1.46-3.93l0.28-2.33l0,0c0,0,0,0,0,0 c0.02,0.03,0.91,1.44,2.68,2.02v0.25h0.75v-0.88c0-0.21,0.17-0.38,0.38-0.38S15,9.91,15,10.12V18h0.75v-7.88 C15.75,9.5,15.25,8.99,14.62,8.99z\\\"></path><path d=\\\"M9.34,3.22C9.29,3.39,9.25,3.56,9.25,3.75c0,0.97,0.79,1.75,1.75,1.75c0.96,0,1.75-0.78,1.75-1.75 C12.75,2.78,11.97,2,11,2c-0.29,0-0.57,0.08-0.81,0.21C10.08,1.94,9.81,1.75,9.5,1.75c-0.41,0-0.75,0.34-0.75,0.75 C8.75,2.86,9.01,3.14,9.34,3.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sentiment_dissatisfied\": {\n    \"name\": \"sentiment_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-3.5c.73 0 1.39.19 1.97.53.12-.14.86-.98 1.01-1.14-.85-.56-1.87-.89-2.98-.89-1.11 0-2.13.33-2.99.88.97 1.09.01.02 1.01 1.14.59-.33 1.25-.52 1.98-.52z\\\"></path>\"\n      }\n    }\n  },\n  \"paragliding\": {\n    \"name\": \"paragliding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,17c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,17,12,17z M8.52,17.94C8.04,17.55,7,16.76,7,14H5 c0,2.7,0.93,4.41,2.3,5.5c0.5,0.4,1.1,0.7,1.7,0.9L9,24h6v-3.6c0.6-0.2,1.2-0.5,1.7-0.9c1.37-1.09,2.3-2.8,2.3-5.5h-2 c0,2.76-1.04,3.55-1.52,3.94C14.68,18.54,14,19,12,19S9.32,18.54,8.52,17.94z M12,0C5.92,0,1,1.9,1,4.25v3.49 C1,8.55,1.88,9,2.56,8.57C2.7,8.48,2.84,8.39,3,8.31L5,13h2l1.5-6.28C9.6,6.58,10.78,6.5,12,6.5s2.4,0.08,3.5,0.22L17,13h2l2-4.69 c0.16,0.09,0.3,0.17,0.44,0.26C22.12,9,23,8.55,23,7.74V4.25C23,1.9,18.08,0,12,0z M5.88,11.24L4.37,7.69 c0.75-0.28,1.6-0.52,2.53-0.71L5.88,11.24z M18.12,11.24L17.1,6.98c0.93,0.19,1.78,0.43,2.53,0.71L18.12,11.24z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M8.25,12.5c0-0.97,0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75s-0.78,1.75-1.75,1.75S8.25,13.47,8.25,12.5z M12.5,20v-3.38 c2.05-0.8,3.5-2.79,3.5-5.12h-1.5c0,2.21-1.79,4-4,4h-1c-2.21,0-4-1.79-4-4H4c0,2.33,1.45,4.32,3.5,5.12V20H12.5z M19,3.48v3.04 c0,0.66-0.72,1.03-1.27,0.68c-0.07-0.05-0.15-0.09-0.23-0.14L16,10.5h-1.5L13,5.7c-0.94-0.13-1.95-0.2-3-0.2S7.94,5.57,7,5.7 l-1.5,4.8H4L2.5,7.05C2.42,7.1,2.35,7.15,2.27,7.19C1.72,7.55,1,7.17,1,6.52V3.48C1,1.56,5.03,0,10,0S19,1.56,19,3.48z M5.84,5.89 C4.92,6.08,4.1,6.32,3.4,6.61l1.32,3.03L5.84,5.89z M16.6,6.61c-0.7-0.29-1.52-0.54-2.44-0.72l1.13,3.75L16.6,6.61z\\\"></path>\"\n      }\n    }\n  },\n  \"military_tech\": {\n    \"name\": \"military_tech\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.16,13.29l-2.27-0.19l-0.56-1.31l2.45-1.63C12.92,10.06,13,9.9,13,9.73V3H7v6.73c0,0.17,0.08,0.32,0.22,0.42l2.45,1.63 l-0.56,1.31l-2.27,0.19l1.72,1.49L8.05,17L10,15.82L11.95,17l-0.52-2.22L13.16,13.29z M9.5,4h1v6.46L10,10.8l-0.5-0.33V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumb_down_alt\": {\n    \"name\": \"thumb_down_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2V4zM2.17 11.12c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15z\\\"></path>\"\n      }\n    }\n  },\n  \"group_remove\": {\n    \"name\": \"group_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M24,9v2h-6V9H24z M8,4C5.79,4,4,5.79,4,8s1.79,4,4,4s4-1.79,4-4S10.21,4,8,4z M8,13c-2.67,0-8,1.34-8,4v3h16v-3 C16,14.34,10.67,13,8,13z M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05 z M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37 C0.36,12.72,0,13.39,0,14.09V16h12v-1.91C12,13.39,11.64,12.72,11.03,12.37z M16,14.09V16h-2.5v-1.91c0-1.15-0.56-2.22-1.48-2.86 c1.08,0.22,2.1,0.6,3.02,1.14C15.64,12.72,16,13.39,16,14.09z M9.38,9.93C10.07,9.14,10.5,8.13,10.5,7s-0.43-2.15-1.12-2.94 C9.58,4.02,9.79,4,10,4c1.66,0,3,1.34,3,3s-1.34,3-3,3C9.79,10,9.58,9.98,9.38,9.93z M19.5,9.25h-5v-1.5h5V9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"recycling\": {\n    \"name\": \"recycling\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.77 7.15 7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62-3.43-2.06zm15.95 5.82-1.6-2.66-3.46 2L18.87 16H20c.76 0 1.45-.43 1.79-1.11.14-.28.21-.58.21-.89 0-.36-.1-.71-.28-1.03zM16 21h1.5c.76 0 1.45-.43 1.79-1.11L20.74 17H16v-2l-4 4 4 4v-2zm-6-4H5.7l-.84 1.41c-.3.5-.32 1.12-.06 1.65.28.57.87.94 1.52.94H10v-4zm-3.88-2.65 1.73 1.04L6.48 9.9 1 11.27l1.7 1.02-.41.69c-.35.59-.38 1.31-.07 1.92l1.63 3.26 2.27-3.81zm10.9-9.21-1.3-2.17C15.35 2.37 14.7 2 14 2h-3.53l3.12 5.2-1.72 1.03 5.49 1.37 1.37-5.49-1.71 1.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13 14h3.83l-1.09 2.17c-.25.51-.77.83-1.34.83H13M7.62 7.72l1.8-3-.9-1.49c-.39-.65-1.33-.65-1.72 0L5.05 6.17l2.57 1.55zm8.72.77L13.72 10l1.83 3h.85c.57 0 1.09-.32 1.34-.83.23-.46.21-1-.06-1.44l-1.34-2.24zM4.37 15.08c-.22.37-.24.83-.05 1.22.22.43.66.7 1.14.7H8.5v-3H5.02l-.65 1.08zM13 14v-1.54l-3 3 3 3V17m1.01-12.4-1.13-1.88c-.26-.44-.75-.72-1.28-.72H8.95l2.49 4.15-1.29.77 4.12 1.03 1.03-4.12-1.29.77zM5.3 11.58l1.28.77-1.02-4.12-4.12 1.03 1.29.77-.42.69c-.26.44-.28.98-.06 1.44l1.22 2.44 1.83-3.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scuba_diving\": {\n    \"name\": \"scuba_diving\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,13c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S1,14.1,1,13z M8.89,10.11l4.53-1.21L12.64,6L8.11,7.21 c-0.8,0.21-1.28,1.04-1.06,1.84l0,0C7.27,9.85,8.09,10.33,8.89,10.11z M20.5,5.9L23,3l-1-1l-3,3l-2,4l-9.48,2.87 c-0.82,0.2-1.39,0.89-1.5,1.68L5.24,18L2.4,21.8L4,23l3-4l1.14-3.14L14,14l5-3.5L20.5,5.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M1,11c0,0.83,0.67,1.5,1.5,1.5S4,11.83,4,11S3.33,9.5,2.5,9.5S1,10.17,1,11z M11,11.53l-4.08,1.3l-0.85,2.83L3.45,19 l-1.31-0.98l2.22-2.89l0.67-4.04c0.11-0.55,0.53-1.02,1.11-1.17L14,7.5l1.5-3L18,2l1,1l-2,2l-1.5,4L11,11.53z M6.05,7.59L6.05,7.59 c-0.19-0.63,0.16-1.3,0.8-1.5L10.44,5l0.7,2.3l-3.59,1.1C6.92,8.59,6.25,8.23,6.05,7.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_remove_alt_1\": {\n    \"name\": \"person_remove_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86V16H2v-2.14C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"sledding\": {\n    \"name\": \"sledding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,3.4,14,4.5z M22.8,20.24c-0.68,2.1-2.94,3.25-5.04,2.57h0L1,17.36 l0.46-1.43l3.93,1.28l0.46-1.43L1.93,14.5l0.46-1.43L4,13.6V9.5l5.47-2.35c0.39-0.17,0.84-0.21,1.28-0.07 c0.95,0.31,1.46,1.32,1.16,2.27l-1.05,3.24L13,12.25c0.89-0.15,1.76,0.32,2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32-1.08 L14.9,20.3l3.32,1.08l0,0c1.31,0.43,2.72-0.29,3.15-1.61c0.43-1.31-0.29-2.72-1.61-3.15l0.46-1.43 C22.33,15.88,23.49,18.14,22.8,20.24z M6,14.25l1.01,0.33c-0.22-0.42-0.28-0.92-0.12-1.4L7.92,10L6,10.82V14.25z M13.94,18.41 l-6.66-2.16l-0.46,1.43l6.66,2.16L13.94,18.41z M14.63,17.05l-1.18-2.56l-3.97,0.89L14.63,17.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.25,3.75C8.25,2.78,9.03,2,10,2s1.75,0.78,1.75,1.75S10.97,5.5,10,5.5S8.25,4.72,8.25,3.75z M18.85,16.93 c-0.51,1.58-2.21,2.44-3.78,1.93L1,14.28l0.31-0.95l3.13,1.02l0.46-1.43L1.77,11.9l0.31-0.95l1.42,0.46V8l4.4-1.87 c0.32-0.14,0.68-0.17,1.04-0.06c0.79,0.24,1.24,1.08,1,1.87L9.15,10.5l2.09-0.37c0.45-0.08,0.89,0.16,1.08,0.57l1.92,4.2l1.92,0.62 l-0.31,0.95l-2.85-0.93l-0.46,1.43l2.85,0.93c1.05,0.34,2.18-0.24,2.52-1.28c0.34-1.05-0.24-2.18-1.28-2.52l0.31-0.95 C18.5,13.66,19.36,15.35,18.85,16.93z M5,11.9l1.17,0.38c-0.31-0.38-0.43-0.89-0.28-1.39l0.8-2.62L5,9V11.9z M12.04,15.24 l-6.18-2.01l-0.46,1.43l6.18,2.01L12.04,15.24z M12.3,14.27l-1.12-2.46L7.7,12.78L12.3,14.27z\\\"></path>\"\n      }\n    }\n  },\n  \"man_3\": {\n    \"name\": \"man_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2v7h4v-7h2V9C16,7.9,15.1,7,14,7z\\\"></path><rect height=\\\"3.18\\\" transform=\\\"matrix(0.7071 0.7071 -0.7071 0.7071 6.3431 -7.3137)\\\" width=\\\"3.18\\\" x=\\\"10.41\\\" y=\\\"2.41\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h1.5v5h3v-5H13V8.5C13,7.67,12.33,7,11.5,7z\\\"></path><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 0.1005 8.2426)\\\" width=\\\"2.83\\\" x=\\\"8.59\\\" y=\\\"2.59\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"person_2\": {\n    \"name\": \"person_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z\\\"></path><path d=\\\"M9.78,12h4.44c1.21,0,2.14-1.06,1.98-2.26l-0.32-2.45C15.57,5.39,13.92,4,12,4S8.43,5.39,8.12,7.29L7.8,9.74 C7.64,10.94,8.57,12,9.78,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.27,10h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C12.67,5.04,11.44,4,10,4S7.33,5.04,7.09,6.47l-0.3,1.79 C6.64,9.17,7.34,10,8.27,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"people_alt\": {\n    \"name\": \"people_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><g><path d=\\\"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3 C23,14.82,19.43,13.53,16.67,13.13z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><circle cx=\\\"9\\\" cy=\\\"8\\\" fill-rule=\\\"evenodd\\\" r=\\\"4\\\"></circle></g><g><path d=\\\"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24 C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76C14.09,11.9,14.53,12,15,12z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><g><circle cx=\\\"8.5\\\" cy=\\\"7.5\\\" fill-rule=\\\"evenodd\\\" r=\\\"2.5\\\"></circle></g><g><path d=\\\"M10.99,9.95C11.16,9.98,11.33,10,11.5,10c1.38,0,2.5-1.12,2.5-2.5 C14,6.12,12.88,5,11.5,5c-0.17,0-0.34,0.02-0.51,0.05C11.61,5.68,12,6.55,12,7.5S11.61,9.32,10.99,9.95z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M8.5,11C6.66,11,3,11.66,3,13.23V15h11v-1.77C14,11.66,10.34,11,8.5,11z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M13.73,11.23c0.75,0.48,1.27,1.12,1.27,2V15h2v-1.77 C17,12.18,15.36,11.54,13.73,11.23z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"cookie\": {\n    \"name\": \"cookie\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.95,10.99c-1.79-0.03-3.7-1.95-2.68-4.22c-2.98,1-5.77-1.59-5.19-4.56C6.95,0.71,2,6.58,2,12c0,5.52,4.48,10,10,10 C17.89,22,22.54,16.92,21.95,10.99z M8.5,15C7.67,15,7,14.33,7,13.5S7.67,12,8.5,12s1.5,0.67,1.5,1.5S9.33,15,8.5,15z M10.5,10 C9.67,10,9,9.33,9,8.5S9.67,7,10.5,7S12,7.67,12,8.5S11.33,10,10.5,10z M15,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,15.55,15.55,16,15,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.96,9.2C16.53,9.17,15,7.64,15.81,5.82c-2.38,0.8-4.62-1.28-4.15-3.65C5.88,0.95,2,5.74,2,10c0,4.42,3.58,8,8,8 C14.71,18,18.43,13.94,17.96,9.2z M6.75,12.5c-0.69,0-1.25-0.56-1.25-1.25S6.06,10,6.75,10S8,10.56,8,11.25S7.44,12.5,6.75,12.5z M8.75,8.5C8.06,8.5,7.5,7.94,7.5,7.25C7.5,6.56,8.06,6,8.75,6S10,6.56,10,7.25C10,7.94,9.44,8.5,8.75,8.5z M12.5,13.25 c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75S12.92,13.25,12.5,13.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cruelty_free\": {\n    \"name\": \"cruelty_free\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.84,14.52c-0.26-0.19-0.62-0.63-0.79-0.84C17.24,12.01,19,8.87,19,5c0-1.95-0.74-3-2-3c-1.54,0-3.96,2.06-5,5.97 C10.96,4.06,8.54,2,7,2C5.74,2,5,3.05,5,5c0,3.87,1.76,7.01,2.95,8.68c-0.17,0.21-0.53,0.65-0.79,0.84 c-0.5,0.41-1.66,1.37-1.66,2.98c0,2.21,1.79,4,4,4c1.55,0,2.5-0.56,2.5-0.56s0.95,0.56,2.5,0.56c2.21,0,4-1.79,4-4 C18.5,15.89,17.34,14.93,16.84,14.52z M9.35,12.2C8.34,10.7,7,8.12,7,5c0-0.49,0.06-0.8,0.12-0.97c0.94,0.31,3.24,2.71,3.38,7.64 C10.03,11.79,9.66,11.97,9.35,12.2z M10.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75S11,15.59,11,16 C11,16.41,10.78,16.75,10.5,16.75z M12,19.5c-0.55,0-1-0.72-1-1c0-0.28,0.45-0.5,1-0.5s1,0.22,1,0.5C13,18.78,12.55,19.5,12,19.5z M13.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16C14,16.41,13.78,16.75,13.5,16.75z M13.5,11.67 c0.14-4.93,2.44-7.33,3.38-7.64C16.94,4.2,17,4.51,17,5c0,3.12-1.34,5.7-2.35,7.2C14.34,11.97,13.97,11.79,13.5,11.67z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.89,12c-0.21-0.17-0.39-0.39-0.68-0.72c0.54-0.73,2.29-3.37,2.29-6.77C15.5,2.94,15.01,2,14,2c-1.23,0-3.17,1.65-4,4.78 C9.17,3.65,7.23,2,6,2C4.99,2,4.5,2.94,4.5,4.5c0,3.4,1.75,6.04,2.29,6.77C6.5,11.61,6.32,11.82,6.11,12 c-0.37,0.31-1.36,1.13-1.36,2.5c0,1.79,1.46,3.25,3.25,3.25c1.19,0,2-0.43,2-0.43s0.81,0.43,2,0.43c1.79,0,3.25-1.46,3.25-3.25 C15.25,13.13,14.26,12.31,13.89,12z M7.87,10.19C7.08,9.04,6,6.96,6,4.5C6,4,6.06,3.69,6.12,3.53C6.77,3.75,8.84,5.57,8.9,9.76 C8.29,9.88,7.87,10.19,7.87,10.19z M8.8,13.8c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6 C9.2,13.53,9.02,13.8,8.8,13.8z M10,16c-0.44,0-0.8-0.58-0.8-0.8c0-0.22,0.36-0.4,0.8-0.4s0.8,0.18,0.8,0.4 C10.8,15.42,10.44,16,10,16z M11.2,13.8c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6 C11.6,13.53,11.42,13.8,11.2,13.8z M11.1,9.76c0.06-4.19,2.12-6.01,2.78-6.23C13.94,3.69,14,4,14,4.5c0,2.46-1.08,4.54-1.87,5.69 C12.13,10.19,11.71,9.88,11.1,9.76z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_alt_1\": {\n    \"name\": \"person_add_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15z M1,18v2h16v-2 c0-2.66-5.33-4-8-4S1,15.34,1,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86V16H2v-2.14C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><polygon points=\\\"13,10 13,9 15,9 15,7 16,7 16,9 18,9 18,10 16,10 16,12 15,12 15,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"social_distance\": {\n    \"name\": \"social_distance\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S4,6.1,4,5z M8.78,8.58C7.93,8.21,6.99,8,6,8S4.07,8.21,3.22,8.58 C2.48,8.9,2,9.62,2,10.43L2,11h8l0-0.57C10,9.62,9.52,8.9,8.78,8.58z M18,7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C16,6.1,16.9,7,18,7z M20.78,8.58C19.93,8.21,18.99,8,18,8c-0.99,0-1.93,0.21-2.78,0.58C14.48,8.9,14,9.62,14,10.43L14,11h8l0-0.57 C22,9.62,21.52,8.9,20.78,8.58z M22,17l-4-4v3H6v-3l-4,4l4,4v-3h12v3L22,17z\\\"></path>\"\n      }\n    }\n  },\n  \"skateboarding\": {\n    \"name\": \"skateboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S13,4.1,13,3z M7.25,22.5c-0.41,0-0.75,0.34-0.75,0.75S6.84,24,7.25,24 S8,23.66,8,23.25S7.66,22.5,7.25,22.5z M15.75,22.5c-0.41,0-0.75,0.34-0.75,0.75S15.34,24,15.75,24s0.75-0.34,0.75-0.75 S16.16,22.5,15.75,22.5z M19.24,19c-0.24,0-0.45,0.11-0.59,0.3c-0.55,0.73-1.42,1.2-2.4,1.2H16v-6l-4.32-2.67l1.8-2.89 C14.63,10.78,16.68,12,19,12v-2c-1.85,0-3.44-1.12-4.13-2.72l-0.52-1.21C14.16,5.64,13.61,5,12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35 l-2.4,3.84c-0.31,0.5-0.39,1.11-0.21,1.67l1.34,4.15l-3.12,3.76c-0.7-0.16-1.3-0.57-1.71-1.12C4.21,19.11,3.99,19,3.75,19 C3.31,19,3,19.36,3,19.75c0,0.15,0.05,0.31,0.15,0.45c0.82,1.1,2.13,1.8,3.6,1.8h9.5c1.47,0,2.78-0.7,3.6-1.8 c0.1-0.14,0.15-0.3,0.15-0.45C20,19.36,19.68,19,19.24,19z M14,20.5H8.6l2.9-3.5l-1-3.3l3.5,2.2V20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M7.49,19.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S7.49,18.84,7.49,19.25z M13.26,18.5 c-0.41,0-0.75,0.34-0.75,0.75S12.85,20,13.26,20c0.41,0,0.75-0.34,0.75-0.75S13.67,18.5,13.26,18.5z M12.25,4.5 C13.21,4.5,14,3.72,14,2.75C14,1.78,13.22,1,12.25,1S10.5,1.78,10.5,2.75C10.5,3.72,11.29,4.5,12.25,4.5z M17,16.5 c0,0.12-0.04,0.24-0.13,0.34C16.46,17.29,15.58,18,14.26,18H5.74c-1.25,0-2.13-0.62-2.61-1.16C3.05,16.75,3,16.62,3,16.5 C3,16.24,3.2,16,3.5,16c0.14,0,0.28,0.06,0.38,0.17C4.34,16.68,5,17,5.74,17H6l2-3l-1.23-3.23C6.6,10.33,6.65,9.84,6.9,9.44 L8.73,6.5H6.8L5.27,8.9L4,8l2-3h4.5c0.68,0,1.11,0.43,1.3,0.76l0.75,1.27C13.25,8.21,14.53,9,16,9v1.5c-1.95,0-3.66-1.02-4.64-2.55 L10,10.13l3.5,2.37V17h0.76c0.74,0,1.4-0.32,1.86-0.83c0.1-0.11,0.23-0.17,0.38-0.17C16.8,16,17,16.24,17,16.5z M12,13.4l-3-1.65 l0.7,2.45L7.8,17H12V13.4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"engineering\": {\n    \"name\": \"engineering\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z\\\"></path><path d=\\\"M22.1,6.84c0.01-0.11,0.02-0.22,0.02-0.34c0-0.12-0.01-0.23-0.03-0.34l0.74-0.58c0.07-0.05,0.08-0.15,0.04-0.22l-0.7-1.21 c-0.04-0.08-0.14-0.1-0.21-0.08L21.1,4.42c-0.18-0.14-0.38-0.25-0.59-0.34l-0.13-0.93C20.36,3.06,20.29,3,20.2,3h-1.4 c-0.09,0-0.16,0.06-0.17,0.15L18.5,4.08c-0.21,0.09-0.41,0.21-0.59,0.34l-0.87-0.35c-0.08-0.03-0.17,0-0.21,0.08l-0.7,1.21 c-0.04,0.08-0.03,0.17,0.04,0.22l0.74,0.58c-0.02,0.11-0.03,0.23-0.03,0.34c0,0.11,0.01,0.23,0.03,0.34l-0.74,0.58 c-0.07,0.05-0.08,0.15-0.04,0.22l0.7,1.21c0.04,0.08,0.14,0.1,0.21,0.08l0.87-0.35c0.18,0.14,0.38,0.25,0.59,0.34l0.13,0.93 C18.64,9.94,18.71,10,18.8,10h1.4c0.09,0,0.16-0.06,0.17-0.15l0.13-0.93c0.21-0.09,0.41-0.21,0.59-0.34l0.87,0.35 c0.08,0.03,0.17,0,0.21-0.08l0.7-1.21c0.04-0.08,0.03-0.17-0.04-0.22L22.1,6.84z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25 s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S20.19,7.75,19.5,7.75z\\\"></path><path d=\\\"M19.92,11.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C18.12,10.04,18.06,10,18,10h-1c-0.06,0-0.11,0.04-0.12,0.11l-0.09,0.66c-0.15,0.06-0.29,0.15-0.42,0.24l-0.62-0.25 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87c-0.03,0.06-0.02,0.12,0.03,0.16l0.53,0.41c-0.01,0.08-0.02,0.16-0.02,0.24 c0,0.08,0.01,0.17,0.02,0.24l-0.53,0.41c-0.05,0.04-0.06,0.11-0.03,0.16l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C16.89,14.96,16.94,15,17,15h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C19.93,11.81,19.94,11.74,19.92,11.68z M17.5,13.33 c-0.46,0-0.83-0.38-0.83-0.83c0-0.46,0.38-0.83,0.83-0.83s0.83,0.38,0.83,0.83C18.33,12.96,17.96,13.33,17.5,13.33z\\\"></path><path d=\\\"M4.74,9h8.53c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13c0-1.48-0.81-2.75-2-3.45V5.5 C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55 C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z\\\"></path><path d=\\\"M9,13c1.86,0,3.41-1.28,3.86-3H5.14C5.59,11.72,7.14,13,9,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.57,11.84c-1.81,0-5.43,0.91-5.43,2.72v1.36H13v-1.36C13,12.75,9.38,11.84,7.57,11.84z\\\"></path><path d=\\\"M17.36,5.74c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41c0.05-0.04,0.06-0.11,0.03-0.16 l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66C16.12,3.04,16.06,3,16,3h-1 c-0.06,0-0.11,0.04-0.12,0.11l-0.09,0.66c-0.15,0.06-0.29,0.15-0.42,0.24l-0.62-0.25c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87 c-0.03,0.06-0.02,0.12,0.03,0.16l0.53,0.41c-0.01,0.08-0.02,0.16-0.02,0.24c0,0.08,0.01,0.17,0.02,0.24l-0.53,0.41 c-0.05,0.04-0.06,0.11-0.03,0.16l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66 C14.89,7.96,14.94,8,15,8h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25 c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16L17.36,5.74z M15.5,6.39c-0.49,0-0.89-0.4-0.89-0.89 c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89C16.39,5.99,15.99,6.39,15.5,6.39z\\\"></path><path d=\\\"M15.66,9.35l-0.35-0.61C15.29,8.7,15.24,8.69,15.2,8.7l-0.44,0.17c-0.09-0.07-0.19-0.13-0.3-0.17l-0.07-0.46 c-0.01-0.04-0.04-0.07-0.09-0.07h-0.7c-0.04,0-0.08,0.03-0.09,0.07L13.47,8.7c-0.11,0.04-0.21,0.1-0.3,0.17L12.74,8.7 c-0.04-0.02-0.09,0-0.11,0.04l-0.35,0.61c-0.02,0.04-0.01,0.09,0.02,0.11l0.37,0.29c-0.01,0.05-0.02,0.11-0.02,0.17 s0,0.12,0.01,0.17l-0.37,0.29c-0.03,0.03-0.04,0.07-0.02,0.11l0.35,0.61c0.02,0.04,0.07,0.05,0.11,0.04l0.44-0.17 c0.09,0.07,0.19,0.13,0.3,0.17l0.07,0.46c0.01,0.04,0.04,0.07,0.09,0.07h0.7c0.04,0,0.08-0.03,0.09-0.07l0.07-0.46 c0.11-0.04,0.21-0.1,0.3-0.17l0.44,0.17c0.04,0.02,0.09,0,0.11-0.04l0.35-0.61c0.02-0.04,0.01-0.09-0.02-0.11l-0.37-0.29 c0.01-0.05,0.01-0.11,0.01-0.17s0-0.12-0.01-0.17l0.37-0.29C15.67,9.43,15.68,9.38,15.66,9.35z M13.97,10.5 c-0.32,0-0.58-0.26-0.58-0.58c0-0.32,0.26-0.58,0.58-0.58c0.32,0,0.58,0.26,0.58,0.58C14.55,10.24,14.29,10.5,13.97,10.5z\\\"></path><path d=\\\"M4.82,8H5h5h0.32c0.14,0,0.25-0.11,0.25-0.25S10.45,7.5,10.32,7.5H10c0-1.02-0.62-1.9-1.5-2.29v0.54 C8.5,5.89,8.39,6,8.25,6S8,5.89,8,5.75v-0.7C7.84,5.02,7.67,5,7.5,5S7.16,5.02,7,5.05v0.7C7,5.89,6.89,6,6.75,6S6.5,5.89,6.5,5.75 V5.21C5.62,5.6,5,6.48,5,7.5H4.82c-0.14,0-0.25,0.11-0.25,0.25S4.68,8,4.82,8z\\\"></path><path d=\\\"M7.5,10.5c1.21,0,2.22-0.86,2.45-2h-4.9C5.28,9.64,6.29,10.5,7.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"no_adult_content\": {\n    \"name\": \"no_adult_content\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.54,1.69-4.9L7.59,9h2.83 L7.1,5.69C8.46,4.63,10.15,4,12,4c4.41,0,8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.9-1.9h-2.83l3.31,3.31 C15.54,19.37,13.85,20,12,20C7.59,20,4,16.41,4,12z\\\"></path><polygon points=\\\"14.25,14 12.75,12 14.25,10 12.75,10 12,11 11.25,10 9.75,10 11.25,12 9.75,14 11.25,14 12,13 12.75,14\\\"></polygon><polygon points=\\\"8,10 7.25,11 6.5,10 5,10 6.5,12 5,14 6.5,14 7.25,13 8,14 9.5,14 8,12 9.5,10\\\"></polygon><polygon points=\\\"16,14 16.75,13 17.5,14 19,14 17.5,12 19,10 17.5,10 16.75,11 16,10 14.5,10 16,12 14.5,14\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.52,0.53-2.92,1.41-4.03L6.44,7.5h2.12 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5c0,1.52-0.53,2.92-1.41,4.03l-1.53-1.53h-2.12l2.59,2.59 c-1.11,0.88-2.51,1.41-4.03,1.41C6.42,16.5,3.5,13.58,3.5,10z\\\"></path><polygon points=\\\"10.5,10 11.5,8.5 10.5,8.5 10,9.25 9.5,8.5 8.5,8.5 9.5,10 8.5,11.5 9.5,11.5 10,10.75 10.5,11.5 11.5,11.5\\\"></polygon><polygon points=\\\"7,8.5 6.5,9.25 6,8.5 5,8.5 6,10 5,11.5 6,11.5 6.5,10.75 7,11.5 8,11.5 7,10 8,8.5\\\"></polygon><polygon points=\\\"13.25,11.5 13.75,10.75 14.25,11.5 15.25,11.5 14.25,10 15.25,8.5 14.25,8.5 13.75,9.25 13.25,8.5 12.25,8.5 13.25,10 12.25,11.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"travel_explore\": {\n    \"name\": \"travel_explore\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.3,16.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S11,12,11,14.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l3.2,3.2 l1.4-1.4L19.3,16.9z M15.5,17c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S16.9,17,15.5,17z M12,20v2 C6.48,22,2,17.52,2,12C2,6.48,6.48,2,12,2c4.84,0,8.87,3.44,9.8,8h-2.07c-0.64-2.46-2.4-4.47-4.73-5.41V5c0,1.1-0.9,2-2,2h-2v2 c0,0.55-0.45,1-1,1H8v2h2v3H9l-4.79-4.79C4.08,10.79,4,11.38,4,12C4,16.41,7.59,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.85,8.5h-1.54c-0.48-2.03-1.93-3.68-3.82-4.48V4.5C12.5,5.33,11.83,6,11,6H9v1c0,0.55-0.45,1-1,1H7v2h1v2H7L3.64,8.64 C3.55,9.08,3.5,9.53,3.5,10c0,3.58,2.92,6.5,6.5,6.5V18c-4.42,0-8-3.58-8-8s3.58-8,8-8C13.91,2,17.15,4.8,17.85,8.5z M18,16.44 l-1.06,1.06l-2.56-2.56c-0.54,0.35-1.19,0.56-1.88,0.56C10.57,15.5,9,13.93,9,12s1.57-3.5,3.5-3.5S16,10.07,16,12 c0,0.69-0.21,1.34-0.56,1.88L18,16.44z M14.5,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14.5,13.1,14.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_tennis\": {\n    \"name\": \"sports_tennis\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z\\\"></path><path d=\\\"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.09,10.28c2.2-2.2,2.55-5.4,0.8-7.16c-1.76-1.76-4.96-1.4-7.16,0.8C6.4,5.24,5.75,6.93,5.82,8.44l0,0 c-0.04,0.82,0.29,2.73-0.98,4.01L2.28,15L3,15.72l2.56-2.56c1.27-1.27,3.19-0.94,4.01-0.98l0,0 C11.07,12.25,12.76,11.6,14.09,10.28z M7.64,10.36C6.27,9,6.63,6.42,8.43,4.62s4.38-2.16,5.75-0.8c1.36,1.36,1.01,3.94-0.8,5.75 S9,11.73,7.64,10.36z\\\"></path><path d=\\\"M16.12,12.88C15.54,12.29,14.77,12,14,12s-1.54,0.29-2.12,0.88c-1.17,1.17-1.17,3.07,0,4.24C12.46,17.71,13.23,18,14,18 s1.54-0.29,2.12-0.88C17.29,15.95,17.29,14.05,16.12,12.88z M15.41,16.41C15.04,16.79,14.53,17,14,17s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C12.96,13.21,13.47,13,14,13s1.04,0.21,1.41,0.59C16.19,14.37,16.19,15.63,15.41,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_add\": {\n    \"name\": \"person_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"coronavirus\": {\n    \"name\": \"coronavirus\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.25,10.5c-0.41,0-0.75,0.34-0.75,0.75h-1.54c-0.15-1.37-0.69-2.63-1.52-3.65l1.09-1.09l0.01,0.01 c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L18.54,4.4c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.76-0.01,1.05l-1.09,1.09 c-1.02-0.82-2.27-1.36-3.64-1.51V3.5h0.01c0.41,0,0.75-0.34,0.75-0.75C13.5,2.34,13.16,2,12.75,2h-1.5c-0.41,0-0.75,0.34-0.75,0.75 c0,0.41,0.33,0.74,0.74,0.75v1.55C9.87,5.19,8.62,5.74,7.6,6.56L6.51,5.47l0.01-0.01c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L4.4,5.46c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.76,0.29,1.05,0.01l1.09,1.09 c-0.82,1.02-1.36,2.26-1.5,3.63H3.5c0-0.41-0.34-0.75-0.75-0.75C2.34,10.5,2,10.84,2,11.25v1.5c0,0.41,0.34,0.75,0.75,0.75 c0.41,0,0.75-0.34,0.75-0.75h1.54c0.15,1.37,0.69,2.61,1.5,3.63l-1.09,1.09c-0.29-0.29-0.76-0.28-1.05,0.01 c-0.29,0.29-0.29,0.77,0,1.06l1.06,1.06c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-0.01-0.01l1.09-1.09 c1.02,0.82,2.26,1.36,3.63,1.51v1.55c-0.41,0.01-0.74,0.34-0.74,0.75c0,0.41,0.34,0.75,0.75,0.75h1.5c0.41,0,0.75-0.34,0.75-0.75 c0-0.41-0.34-0.75-0.75-0.75h-0.01v-1.54c1.37-0.14,2.62-0.69,3.64-1.51l1.09,1.09c-0.29,0.29-0.28,0.76,0.01,1.05 c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0l-0.01,0.01l-1.09-1.09 c0.82-1.02,1.37-2.27,1.52-3.65h1.54c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75v-1.5C22,10.84,21.66,10.5,21.25,10.5z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.2,8,13.75,8z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,12.55,12.55,13,12,13z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11.25,15.55,10.8,16,10.25,16z M13.75,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M14.5,12 c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S14.5,12.55,14.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_rugby\": {\n    \"name\": \"sports_rugby\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M7.76,7.76 c2.64-2.64,6.35-3.12,8.03-3.19c-2.05,0.94-4.46,2.45-6.61,4.61c-2.16,2.16-3.67,4.58-4.62,6.63C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.35,3.12-8.03,3.19c2.05-0.94,4.46-2.45,6.61-4.61c2.16-2.16,3.67-4.58,4.62-6.63 C19.34,10.67,18.56,13.93,16.24,16.24z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7c-0.35-0.35-1.34-0.6-2.6-0.6 c-1.93,0-4.47,0.6-6.24,2.37C3.54,9.39,3.81,14.42,4.7,15.3c0.35,0.35,1.34,0.6,2.6,0.6c1.93,0,4.47-0.6,6.24-2.37 C16.46,10.61,16.19,5.58,15.3,4.7z M7.17,7.17C8.79,5.55,11,5.19,12.16,5.12C10.8,5.64,9.23,6.53,7.88,7.88 c-1.35,1.35-2.24,2.92-2.76,4.28C5.22,10.58,5.75,8.6,7.17,7.17z M12.83,12.83c-1.62,1.62-3.83,1.98-4.99,2.06 c1.35-0.52,2.93-1.41,4.28-2.76c1.35-1.35,2.24-2.92,2.76-4.28C14.78,9.42,14.25,11.4,12.83,12.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"connect_without_contact\": {\n    \"name\": \"connect_without_contact\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"woman\": {\n    \"name\": \"woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.94,8.31C13.62,7.52,12.85,7,12,7s-1.62,0.52-1.94,1.31L7,16h3v6h4v-6h3L13.94,8.31z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6,14h2.5v4h3.01v-4H14L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"science\": {\n    \"name\": \"science\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.8,18.4L14,10.67V6.5l1.35-1.69C15.61,4.48,15.38,4,14.96,4H9.04C8.62,4,8.39,4.48,8.65,4.81L10,6.5v4.17L4.2,18.4 C3.71,19.06,4.18,20,5,20h14C19.82,20,20.29,19.06,19.8,18.4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.74,14.39L11.5,8.93V5.87l0.85-1.06C12.61,4.48,12.38,4,11.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L8.5,5.87v3.05 l-4.24,5.46C3.74,15.04,4.21,16,5.04,16h9.91C15.79,16,16.26,15.04,15.74,14.39z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nordic_walking\": {\n    \"name\": \"nordic_walking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,23h-1.5v-9H19V23z M7.53,14H6l-2,9h1.53L7.53,14z M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M9.8,8.9L7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3C14.8,12,16.8,13,19,13v-2c-1.9,0-3.5-1-4.3-2.4l-1-1.6 c-0.56-0.89-1.68-1.25-2.65-0.84L6,8.3V13h2V9.6L9.8,8.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M15,11 V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L5,7.79V11h1.5V8.78l1.65-0.7L6.2,18h1.53l1.19-6.02l1.58,1.59V18 H12v-5.05l-1.46-1.46l0.49-2.48C11.94,10.21,13.37,11,15,11z M14,18h1v-6h-1V18z M6.03,12H5l-1.4,6h1.03L6.03,12z\\\"></path>\"\n      }\n    }\n  },\n  \"face_4\": {\n    \"name\": \"face_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2c-0.96,0-1.88,0.14-2.75,0.39C8.37,0.96,6.8,0,5,0C2.24,0,0,2.24,0,5c0,1.8,0.96,3.37,2.39,4.25 C2.14,10.12,2,11.04,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0.01-0.15 c2.6-0.98,4.68-2.99,5.74-5.55C11.58,8.56,14.37,10,17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12 C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M10,2C9.18,2,8.38,2.12,7.64,2.36C7.01,0.97,5.62,0,4,0C1.79,0,0,1.79,0,4c0,1.62,0.97,3.01,2.36,3.64 C2.12,8.38,2,9.18,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.14,0.03-0.28,0.04-0.42C5.66,8.87,7.38,7.3,8.29,5.29c2.28,2.44,5.34,3.04,7.84,2.55c0.24,0.68,0.38,1.4,0.38,2.16 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"workspace_premium\": {\n    \"name\": \"workspace_premium\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.68,13.69L12,11.93l2.31,1.76l-0.88-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69z M20,10 c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,2.03,0.76,3.87,2,5.28V23l6-2l6,2v-7.72C19.24,13.87,20,12.03,20,10z M12,4c3.31,0,6,2.69,6,6 s-2.69,6-6,6s-6-2.69-6-6S8.69,4,12,4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2C6.41,2,3.5,4.91,3.5,8.5c0,1.83,0.76,3.48,1.97,4.66V19L10,18l4.5,1v-5.82c1.23-1.18,2-2.84,2-4.68 C16.5,4.91,13.59,2,10,2z M10,13.5c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S12.76,13.5,10,13.5z M8.14,11.35L10,9.94l1.85,1.41 l-0.7-2.28L13,7.6h-2.27L10,5.35L9.27,7.6H7l1.85,1.47L8.14,11.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_america\": {\n    \"name\": \"south_america\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M4,12c0-1.95,0.7-3.74,1.87-5.13L9,10 v1c0,1.1,0.9,2,2,2v5.59c0,0.27,0.11,0.52,0.29,0.71L12,20C7.58,20,4,16.42,4,12z M13,19.94V18l3.75-5.62 c0.16-0.25,0.25-0.54,0.25-0.83V10.5c0-0.55-0.45-1-1-1h-1.5l-1.4-1.75C12.72,7.28,12.15,7,11.54,7H8V5.07C9.18,4.39,10.54,4,12,4 c4.41,0,8,3.59,8,8C20,16.07,16.94,19.44,13,19.94z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.54,0.54-2.95,1.43-4.07L7.5,8.5v1 C7.5,10.33,8.17,11,9,11v4.17c0,0.22,0.07,0.43,0.2,0.6l0.55,0.73C6.28,16.36,3.5,13.5,3.5,10z M10.5,16.48V15l3.32-4.74 C13.94,10.09,14,9.89,14,9.68V9c0-0.55-0.45-1-1-1h-1.2l-1.15-1.44C10.37,6.21,9.93,6,9.48,6H6.5V4.52C7.51,3.88,8.71,3.5,10,3.5 c3.58,0,6.5,2.92,6.5,6.5C16.5,13.42,13.85,16.22,10.5,16.48z\\\"></path>\"\n      }\n    }\n  },\n  \"share\": {\n    \"name\": \"share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_add\": {\n    \"name\": \"notification_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z M14,9c0,2.61,1.67,4.83,4,5.66L18,17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V3.5 C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7c0.71,0.18,1.36,0.49,1.95,0.9C14.54,6.14,14,7.51,14,9z M24,8h-3V5h-2v3h-3v2h3v3h2 v-3h3V8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M15,11.03C13.52,10.3,12.5,8.77,12.5,7c0-0.73,0.17-1.41,0.48-2.02C12.4,4.56,11.73,4.25,11,4.1V3c0-0.55-0.45-1-1-1 S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1L15,11.03z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z M20,6.31h-2.25V4h-1.5v2.31H14v1.38h2.25V10h1.5V7.69H20V6.31z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pages\": {\n    \"name\": \"pages\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5v6h5L7 7l4 1V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-4 1 1-4zm9 4l-4-1v5h6c1.1 0 2-.9 2-2v-6h-5l1 4zm2-14h-6v5l4-1-1 4h5V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_very_satisfied\": {\n    \"name\": \"sentiment_very_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-5-6c.78 2.34 2.72 4 5 4s4.22-1.66 5-4H7z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_callback\": {\n    \"name\": \"phone_callback\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2zm13.54-7.1l-.71-.7L13 9.29V5h-1v6h6v-1h-4.15z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_individual_suite\": {\n    \"name\": \"airline_seat_individual_suite\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-8v7H3V7H1v10h22v-6c0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_lock\": {\n    \"name\": \"vpn_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm-2.28 8c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_forwarded\": {\n    \"name\": \"phone_forwarded\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 11l5-5-5-5v3h-4v4h4v3zm2 4.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_paused\": {\n    \"name\": \"phone_paused\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3h-2v7h2V3zm3 12.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 3v7h2V3h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi\": {\n    \"name\": \"wifi\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat_angled\": {\n    \"name\": \"airline_seat_flat_angled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.25 14.29l-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09c2.1.76 3.18 3.06 2.41 5.15zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"vibration\": {\n    \"name\": \"vibration\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z\\\"></path>\"\n      }\n    }\n  },\n  \"more\": {\n    \"name\": \"more\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"support_agent\": {\n    \"name\": \"support_agent\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6C9.32,6,6.12,6.51,6.01,9.88c1.72-0.4,3.06-1.77,3.4-3.51c0.53,1.15,1.96,2.8,4.43,2.6C13.39,7.26,11.85,6,10,6z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><path d=\\\"M16,10c0-3.31-2.69-6-6-6s-6,2.69-6,6c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1v-4c0-2.76,2.24-5,5-5s5,2.24,5,5v5H9v1h6 c0.55,0,1-0.45,1-1v-1c0.55,0,1-0.45,1-1v-2C17,10.45,16.55,10,16,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"voice_chat\": {\n    \"name\": \"voice_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z\\\"></path><rect height=\\\"10\\\" width=\\\"1.5\\\" x=\\\"11.25\\\" y=\\\"5\\\"></rect><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"8.5\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"1.5\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"14\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_normal\": {\n    \"name\": \"airline_seat_legroom_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_special\": {\n    \"name\": \"folder_special\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z\\\"></path>\"\n      }\n    }\n  },\n  \"ondemand_video\": {\n    \"name\": \"ondemand_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-6l-7 4V7z\\\"></path>\"\n      }\n    }\n  },\n  \"imagesearch_roller\": {\n    \"name\": \"imagesearch_roller\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2\\\"></path>\"\n      }\n    }\n  },\n  \"account_tree\": {\n    \"name\": \"account_tree\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_audio\": {\n    \"name\": \"bluetooth_audio\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card\": {\n    \"name\": \"sd_card\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"time_to_leave\": {\n    \"name\": \"time_to_leave\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_extra\": {\n    \"name\": \"airline_seat_legroom_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98c-.34-.68-1.03-1.12-1.79-1.12L11 9V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z\\\"></path>\"\n      }\n    }\n  },\n  \"power\": {\n    \"name\": \"power\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.01 7L16 3h-2v4h-4V3H8v4h-.01C7 6.99 6 7.99 6 8.99v5.49L9.5 18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z\\\"></path>\"\n      }\n    }\n  },\n  \"live_tv\": {\n    \"name\": \"live_tv\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6h-7.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm0 14H3V8h18v12zM9 10v8l7-4z\\\"></path>\"\n      }\n    }\n  },\n  \"sms_failed\": {\n    \"name\": \"sms_failed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_off\": {\n    \"name\": \"do_not_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 11v2h-1.46l4.68 4.68C21.34 16.07 22 14.11 22 12c0-5.52-4.48-10-10-10-2.11 0-4.07.66-5.68 1.78L13.54 11H17zM2.27 2.27L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.27-1.27L11 11 2.27 2.27zM7 13v-2h1.46l2 2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_locked\": {\n    \"name\": \"phone_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,5V4c0-1.1-0.9-2-2-2s-2,0.9-2,2v1h-1v5h6V5H20z M19,5h-2V4c0-0.55,0.45-1,1-1s1,0.45,1,1V5z\\\"></path><path d=\\\"M15.63,14.4l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3 L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43 c0.56,0.03,1.03-0.44,1.03-1l0-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C16.2,14.07,15.86,14.17,15.63,14.4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17,13.18L17,16c0,0.59-0.51,1.04-1.1,1C9.04,16.46,3.54,10.96,3,4.1C2.96,3.51,3.41,3,4,3l2.82,0 C7.29,3,7.7,3.33,7.8,3.78L8.3,6.01c0.07,0.33-0.03,0.68-0.27,0.92L5.98,8.98c1.15,2.11,2.89,3.85,5,5l2.08-2 c0.24-0.24,0.59-0.34,0.92-0.27l2.23,0.49C16.67,12.3,17,12.71,17,13.18z M17,5.5v3C17,8.78,16.78,9,16.5,9h-4 C12.22,9,12,8.78,12,8.5v-3C12,5.22,12.22,5,12.5,5H13V4c0-0.82,0.67-1.5,1.5-1.5S16,3.18,16,4v1h0.5C16.78,5,17,5.22,17,5.5z M13.75,5h1.5V4c0-0.41-0.34-0.75-0.75-0.75c-0.41,0-0.75,0.34-0.75,0.75V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"do_not_disturb\": {\n    \"name\": \"do_not_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_in_talk\": {\n    \"name\": \"phone_in_talk\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_off\": {\n    \"name\": \"wifi_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 .01c0-.01 0-.01 0 0L0 0v24h24V.01zM0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4c-1.29-1.29-2.84-2.13-4.49-2.56l3.53 3.53.96-.97zM2 3.05L5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24C7.81 10.89 6.27 11.73 5 13v.01L6.99 15c1.36-1.36 3.14-2.04 4.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption\": {\n    \"name\": \"no_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 21.78L4.22 5 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12c.23 0 .45-.05.66-.12L19.78 23 21 21.78zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H9.66L20 18.34V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.56 0-4.64 1.93-4.94 4.4L8.9 7.24V6z\\\"></path>\"\n      }\n    }\n  },\n  \"tv_off\": {\n    \"name\": \"tv_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l2 2 1.26-1.27L2.27 2.27 1 3.54zM3 19V7h1.46l12 12H3zM21 5h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H7.52l2 2H21v11.48l1.65 1.65c.22-.32.35-.71.35-1.13V7c0-1.11-.89-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_eta\": {\n    \"name\": \"drive_eta\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z\\\"></path>\"\n      }\n    }\n  },\n  \"network_locked\": {\n    \"name\": \"network_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.5 10c.17 0 .33.03.5.05V1L1 20h13v-3c0-.89.39-1.68 1-2.23v-.27c0-2.48 2.02-4.5 4.5-4.5zm2.5 6v-1.5c0-1.38-1.12-2.5-2.5-2.5S17 13.12 17 14.5V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z\\\"></path>\"\n      }\n    }\n  },\n  \"event_note\": {\n    \"name\": \"event_note\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10H7v2h10v-2zm2-7h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zm-5-5H7v2h7v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_missed\": {\n    \"name\": \"phone_missed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.5 5.5L12 11l7-7-1-1-6 6-4.5-4.5H11V3H5v6h1.5V5.5zm17.21 11.17C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"priority_high\": {\n    \"name\": \"priority_high\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"19\\\" r=\\\"2\\\"></circle><path d=\\\"M10 3h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_alt\": {\n    \"name\": \"do_not_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M-618-1464H782v3600H-618zM0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"confirmation_number\": {\n    \"name\": \"confirmation_number\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M22,10V6c0-1.11-0.9-2-2-2H4C2.9,4,2.01,4.89,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-4c-1.1,0-2-0.9-2-2S20.9,10,22,10z M13,17.5h-2v-2h2V17.5z M13,13h-2v-2h2V13z M13,8.5h-2v-2h2V8.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"sync_disabled\": {\n    \"name\": \"sync_disabled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6.35V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.25-.12.5-.24.77-.33zm-7.14-.94l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.25-.77.34v2.09c.8-.21 1.55-.54 2.23-.96l2.36 2.36 1.27-1.27L4.14 4.14 2.86 5.41zM20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46C19.55 15.01 20 13.56 20 12c0-2.21-.91-4.2-2.36-5.64L20 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wc\": {\n    \"name\": \"wc\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"sms\": {\n    \"name\": \"sms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"tap_and_play\": {\n    \"name\": \"tap_and_play\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_reduced\": {\n    \"name\": \"airline_seat_legroom_reduced\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_problem\": {\n    \"name\": \"sync_problem\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"video_chat\": {\n    \"name\": \"video_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M17,13l-2-1.99V13c0,0.55-0.45,1-1,1H8 c-0.55,0-1-0.45-1-1V7c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v1.99L17,7V13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5V18l3-3h11.5c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M14.5,11l-2-1.8V11 c0,0.55-0.45,1-1,1h-5c-0.55,0-1-0.45-1-1V6c0-0.55,0.45-1,1-1h5c0.55,0,1,0.45,1,1v1.8l2-1.8V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airline_seat_recline_normal\": {\n    \"name\": \"airline_seat_recline_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.59 5.41c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_off\": {\n    \"name\": \"directions_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12.83 10h.67V7.5L17 11l-1.59 1.59L18.83 16l2.59-2.59c.78-.78.78-2.05 0-2.83l-7.99-8c-.78-.78-2.05-.78-2.83 0L8 5.17 12.83 10zM2.81 2.81 1.39 4.22 5.17 8l-2.59 2.59c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0L16 18.83l3.78 3.78 1.41-1.41L2.81 2.81zM10 15H8v-4c0-.05.02-.09.03-.14L10 12.83V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_busy\": {\n    \"name\": \"event_busy\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"sim_card_alert\": {\n    \"name\": \"sim_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z\\\"></path>\"\n      }\n    }\n  },\n  \"do_disturb_alt\": {\n    \"name\": \"do_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-1.85,0.63-3.55,1.69-4.9L16.9,18.31C15.55,19.37,13.85,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.55,18.31,16.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"do_not_disturb_on\": {\n    \"name\": \"do_not_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"do_disturb_on\": {\n    \"name\": \"do_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M17,13H7v-2h10V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sync\": {\n    \"name\": \"sync\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"network_check\": {\n    \"name\": \"network_check\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z\\\"></path>\"\n      }\n    }\n  },\n  \"event_available\": {\n    \"name\": \"event_available\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.53 11.06L15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"adb\": {\n    \"name\": \"adb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_video\": {\n    \"name\": \"personal_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat\": {\n    \"name\": \"airline_seat_flat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 11v2H9V7h9c2.21 0 4 1.79 4 4zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z\\\"></path>\"\n      }\n    }\n  },\n  \"mms\": {\n    \"name\": \"mms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_lock\": {\n    \"name\": \"sync_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73C5.06,16.54,4,14.4,4,12 C4,8.27,6.55,5.15,10,4.26z M20,4h-6v6h2V7.56c1.22,1.1,2,2.67,2,4.44h2c0-2.4-1.06-4.54-2.73-6H20V4z M20,17v-1c0-1.1-0.9-2-2-2 s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C21,17.45,20.55,17,20,17z M19,17h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,14H16v-1c0-0.82-0.67-1.5-1.5-1.5S13,12.18,13,13v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C17,14.22,16.78,14,16.5,14z M13.75,13c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V13z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10 C4,7.21,5.91,4.86,8.5,4.2z M14.5,10c-0.08-1.32-0.59-2.5-1.5-3.32V8h-1.5V4h4v1.5h-1.55C15.2,6.6,16,8.2,16,10H14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_off\": {\n    \"name\": \"do_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,11v2h-1.17l4.51,4.51C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10C9.96,2,8.07,2.61,6.49,3.66L13.83,11H17z M1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27l1.41-1.41L2.81,2.81 L1.39,4.22z M7,11h1.17l2,2H7V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"do_disturb\": {\n    \"name\": \"do_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M4,12c0-4.4,3.6-8,8-8c1.8,0,3.5,0.6,4.9,1.7L5.7,16.9 C4.6,15.5,4,13.8,4,12z M12,20c-1.8,0-3.5-0.6-4.9-1.7L18.3,7.1C19.4,8.5,20,10.2,20,12C20,16.4,16.4,20,12,20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"airline_seat_recline_extra\": {\n    \"name\": \"airline_seat_recline_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card_alert\": {\n    \"name\": \"sd_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M18,2h-8L4.02,8L4,20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M13,17h-2v-2h2V17z M13,13h-2V8h2V13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"disc_full\": {\n    \"name\": \"disc_full\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_update\": {\n    \"name\": \"system_update\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_bluetooth_speaker\": {\n    \"name\": \"phone_bluetooth_speaker\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21zm2 8.29c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"add_call\": {\n    \"name\": \"add_call\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption_gmailerrorred\": {\n    \"name\": \"no_encryption_gmailerrorred\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M8.9,6c0-1.71,1.39-3.1,3.1-3.1s3.1,1.39,3.1,3.1v2h-4.27L20,17.17V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5 C9.79,1,7.93,2.45,7.27,4.44L8.9,6.07V6z M2.1,2.1L0.69,3.51L5.3,8.13C4.55,8.42,4,9.15,4,10v10c0,1.1,0.9,2,2,2h12 c0.34,0,0.65-0.09,0.93-0.24l1.56,1.56l1.41-1.41L2.1,2.1z M12,17c-1.1,0-2-0.9-2-2c0-0.59,0.27-1.12,0.68-1.49l2.81,2.81 C13.12,16.73,12.59,17,12,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"running_with_errors\": {\n    \"name\": \"running_with_errors\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10v8h-2v-8H22z M20,20v2h2v-2H20z M18,17.29C16.53,18.95,14.39,20,12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8v9 l7.55-7.55C17.72,3.34,15.02,2,12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c2.25,0,4.33-0.74,6-2V17.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,8v7h-1.5V8H18z M16.5,16.5V18H18v-1.5H16.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5 c2.01,0,3.81-0.92,5-2.35l0,2.1c-1.37,1.1-3.11,1.75-5,1.75c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0c2.46,0,4.67,1.11,6.13,2.87L10,11 V3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_off\": {\n    \"name\": \"power_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 14.49V9c0-1-1.01-2.01-2-2V3h-2v4h-4V3H8v2.48l9.51 9.5.49-.49zm-1.76 1.77L7.2 7.2l-.01.01L3.98 4 2.71 5.25l3.36 3.36C6.04 8.74 6 8.87 6 9v5.48L9.5 18v3h5v-3l.48-.48L19.45 22l1.26-1.28-4.47-4.46z\\\"></path>\"\n      }\n    }\n  },\n  \"enhanced_encryption\": {\n    \"name\": \"enhanced_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"turn_slight_right\": {\n    \"name\": \"turn_slight_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.34,6V4H18v5.66h-2V7.41l-5,5V20H9v-7.58c0-0.53,0.21-1.04,0.59-1.41l5-5H12.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.5,10.56V16H9v-5.44l4-4l0,1.69h1.5l0-4.25l-4.25,0v1.5l1.69,0l-4,4C7.66,9.78,7.5,10.16,7.5,10.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_crash\": {\n    \"name\": \"no_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.92,9.01C18.72,8.42,18.16,8,17.5,8h-11C5.84,8,5.29,8.42,5.08,9.01L3,15v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,9.01z M6.85,10h10.29l1.04,3H5.81L6.85,10z M6,17.5C6,16.67,6.67,16,7.5,16 S9,16.67,9,17.5S8.33,19,7.5,19S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19 S15,18.33,15,17.5z M12,6.36L9.17,3.54l1.41-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.87,1l1.06,1.06L9.4,5.6L7.28,3.47l1.06-1.06L9.4,3.47L11.87,1z M17,12v6.5c0,0.28-0.22,0.5-0.5,0.5h-1 c-0.28,0-0.5-0.22-0.5-0.5v-1H5v1C5,18.78,4.78,19,4.5,19h-1C3.22,19,3,18.78,3,18.5L3,12l1.62-4.06C4.85,7.37,5.4,7,6.02,7h7.97 c0.61,0,1.16,0.37,1.39,0.94L17,12z M6.02,8.5l-1,2.5h9.97l-1-2.5H6.02z M6.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1 c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S14.05,13.25,13.5,13.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_location_alt\": {\n    \"name\": \"edit_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M13.95,13H9V8.05l5.61-5.61C13.78,2.16,12.9,2,12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-1.01-0.16-1.94-0.45-2.8L13.95,13z\\\"></path><polygon points=\\\"11,11 13.12,11 19.28,4.84 17.16,2.72 11,8.88\\\"></polygon><path d=\\\"M20.71,2L20,1.29C19.8,1.1,19.55,1,19.29,1c-0.13,0-0.48,0.07-0.71,0.29l-0.72,0.72l2.12,2.12l0.72-0.72 C21.1,3.02,21.1,2.39,20.71,2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><polygon points=\\\"9,10 10.41,10 15.44,4.97 14.03,3.56 9,8.59\\\"></polygon></g><g><path d=\\\"M11.04,11.5H7.5V7.96l5.32-5.32C11.96,2.24,11.01,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18 s6.5-5.16,6.5-9.5c0-0.74-0.13-1.45-0.36-2.11L11.04,11.5z\\\"></path></g><g><path d=\\\"M16.85,2.85l-0.71-0.71c-0.2-0.2-0.51-0.2-0.71,0l-0.71,0.71l1.41,1.41l0.71-0.71C17.05,3.37,17.05,3.05,16.85,2.85z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"temple_hindu\": {\n    \"name\": \"temple_hindu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.6,11 17.4,11 16.5,8 7.5,8\\\"></polygon><polygon points=\\\"20,11 20,13 4,13 4,11 2,11 2,22 10,22 10,17 14,17 14,22 22,22 22,11\\\"></polygon><polygon points=\\\"15.9,6 15,3 15,1 13,1 13,3 10.97,3 10.97,1 8.97,1 8.97,3.12 8.1,6\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13.5,7 6.5,7 5.56,9.5 14.44,9.5\\\"></polygon><polygon points=\\\"12,3 12,1 10.5,1 10.5,3 9.5,3 9.5,1 8,1 8,3 7.06,5.5 12.94,5.5\\\"></polygon><polygon points=\\\"16.5,9 16.5,11 3.5,11 3.5,9 2,9 2,18 8,18 8,14 12,14 12,18 18,18 18,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"dinner_dining\": {\n    \"name\": \"dinner_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,19h20l-2,2H4L2,19z M5,6h1v1H5V6z M5,4h1v1H5V4z M9,4v1H7V4H9z M9,7H7V6h2V7z M6,15.23c-0.36,0.11-0.69,0.28-1,0.47V8h1 V15.23z M4,16.52C3.62,16.96,3.32,17.45,3.16,18h16.82c0.01-0.16,0.03-0.33,0.03-0.5c0-3.04-2.46-5.5-5.5-5.5 c-2.29,0-4.25,1.4-5.08,3.4C8.84,15.15,8.19,15,7.5,15c-0.17,0-0.33,0.02-0.5,0.04V8h2c1.03,0.06,1.9-0.96,2-2h10V5H11 c-0.1-1.05-0.97-1.97-2-2H3v1h1v1H3v1h1v1H3v1h1V16.52z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,12.78C4.64,13.11,4.35,13.53,4.18,14H16c0-2.21-1.79-4-4-4c-1.62,0-3,0.96-3.63,2.34C7.96,12.13,7.5,12,7,12 c-0.17,0-0.34,0.02-0.5,0.04V7H8c0.65,0,1.2-0.42,1.41-1H16V5H9.41C9.2,4.42,8.65,4,8,4H4v0.5h1v0.75H4v0.5h1V6.5H4V7h1V12.78z M6,12.18c-0.18,0.06-0.34,0.14-0.5,0.24V7H6V12.18z M8,6.5H6.5V5.75H8V6.5z M8,4.5v0.75H6.5V4.5H8z M5.5,4.5H6v0.75H5.5V4.5z M5.5,5.75H6V6.5H5.5V5.75z\\\"></path><polygon points=\\\"3,15 4,16 16,16 17,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"maps_ugc\": {\n    \"name\": \"maps_ugc\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97 C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M16,13h-3v3h-2v-3H8v-2h3V8h2v3h3V13z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"signpost\": {\n    \"name\": \"signpost\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"13,10 18,10 21,7 18,4 13,4 13,2 11,2 11,4 4,4 4,10 11,10 11,12 6,12 3,15 6,18 11,18 11,22 13,22 13,18 20,18 20,12 13,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,8H15l2-2.25L15,3.5h-4.25V2h-1.5v1.5H4V8h5.25v1.5H5l-2,2.25L5,14h4.25v4h1.5v-4H16V9.5h-5.25V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_laundry_service\": {\n    \"name\": \"local_laundry_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0 1.56-1.56 1.56-4.1 0-5.66l-5.66 5.66zM18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_attributes\": {\n    \"name\": \"edit_attributes\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path class=\\\"st0\\\" d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_of_travel\": {\n    \"name\": \"mode_of_travel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.31,18.9c-0.96,1-2.06,2.03-3.31,3.1c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2c4,0,7.64,2.92,7.97,7.5l3.53,0L19,14 l-4.5-4.5l3.47,0C17.65,6.24,15.13,4,12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c0.64-0.59,1.23-1.16,1.77-1.71 c-0.17-0.34-0.27-0.72-0.27-1.12c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S17.38,19,16,19C15.76,19,15.53,18.97,15.31,18.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.48,8C16.23,4.64,13.42,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s1.28-1.01,2.7-2.52 c0.1,0.01,0.2,0.02,0.3,0.02c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2c0,0.44,0.14,0.85,0.38,1.18c-0.49,0.51-0.97,0.97-1.38,1.35 C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5c2.59,0,4.72,1.98,4.98,4.5h-2.73l3.5,3.5l3.5-3.5L16.48,8z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control_rodent\": {\n    \"name\": \"pest_control_rodent\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.31,17.38l-2.39-2.13C19.44,12.89,17.56,11,15.5,11c-1.16,0-3.5,0.9-3.5,3.5c0,0.97,0.39,1.84,1.03,2.47l-0.71,0.71 C11.5,16.87,11,15.74,11,14.5c0-1.7,0.96-3.17,2.35-3.93c-0.7-0.36-1.48-0.57-2.28-0.57c-2.38,0-4.37,1.65-4.91,3.87 C4.91,13.5,4,12.36,4,11c0-1.66,1.34-3,3-3c0.94,0,1.56,0,2.5,0C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6C9.47,6,9,6,7,6c-2.76,0-5,2.24-5,5c0,2.42,1.72,4.44,4,4.9 v0.03C6,18.73,8.27,21,11.07,21h8.86C21.8,21,22.74,18.66,21.31,17.38z M18,19c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,18.55,18.55,19,18,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.57,13.59l-1.63-1.55C15.31,10.33,13.96,9,12.5,9C11.32,9,10,9.96,10,11.5c0,0.69,0.28,1.32,0.73,1.77l-0.71,0.71 C9.39,13.34,9,12.47,9,11.5c0-1.36,0.78-2.52,1.91-3.1C10.43,8.15,9.91,8,9.36,8C8.21,8,7.44,8.43,6.94,9 C6.16,9.87,6,11.06,6,11.47c-1.12-0.13-2-1.07-2-2.22C4,8.01,5.01,7,6.25,7H8.5C9.33,7,10,6.33,10,5.5S9.33,4,8.5,4h-1 C7.22,4,7,4.22,7,4.5C7,4.78,7.22,5,7.5,5h1C8.78,5,9,5.22,9,5.5C9,5.78,8.78,6,8.5,6H6.25C4.46,6,3,7.46,3,9.25 c0,1.71,1.32,3.1,3,3.22C6,13.07,6.34,16,9.36,16h6.24C16.86,16,17.47,14.45,16.57,13.59z M14.25,15c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75S15,13.84,15,14.25C15,14.66,14.66,15,14.25,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_mall\": {\n    \"name\": \"local_mall\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"airlines\": {\n    \"name\": \"airlines\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M13,4L2,20h17l3-16H13z M14.5,14c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C17,12.88,15.88,14,14.5,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,4L2.5,16h12.75L17.5,4H10.75z M11.88,11.75c-1.04,0-1.88-0.84-1.88-1.88S10.84,8,11.88,8s1.88,0.84,1.88,1.88 S12.91,11.75,11.88,11.75z\\\"></path>\"\n      }\n    }\n  },\n  \"railway_alert\": {\n    \"name\": \"railway_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 8a7 7 0 0 0-11.95-4.95A33.8 33.8 0 0 0 9 3c-4.42 0-8 .5-8 4v10.5A3.5 3.5 0 0 0 4.5 21L3 22.5v.5h12v-.5L13.5 21a3.5 3.5 0 0 0 3.5-3.5v-2.58A7 7 0 0 0 23 8zM3 12V7h6.08a6.96 6.96 0 0 0 1.18 5H3zm6 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm7.71-6.06l-.2.03L16 13l-.47-.02-.16-.02-.29-.04-.2-.04-.22-.06a1.55 1.55 0 0 1-.23-.07l-.13-.05A4.99 4.99 0 0 1 11.1 7c.04-.19.09-.37.15-.54l.05-.14.15-.38.07-.15.2-.36.07-.12.3-.42.02-.02c.24-.3.52-.57.82-.81l.01-.01.46-.32.03-.02A5.25 5.25 0 0 1 16 3a5 5 0 0 1 .71 9.94zM15 4h2v5h-2zm0 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"connecting_airports\": {\n    \"name\": \"connecting_airports\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3l2.6-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1 l-0.75-1H15.4z M5.75,7L5,6H4l0.6,2L4,10h1l0.75-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0,1-0.45,1-1s-0.45-1-1-1h-3L8.4,2.6H7.3L8.6,7 H5.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4,8.5l0.5-1.75L4,5h0.7l0.75,1H7.7L6.6,2.5h0.9L9.6,6h2.15c0.41,0,0.75,0.34,0.75,0.75S12.16,7.5,11.75,7.5H9.6L7.5,11H6.6 l1.1-3.5H5.45l-0.75,1H4z M15.5,13.25L16,11.5h-0.7l-0.75,1H12.3L13.4,9h-0.9l-2.1,3.5H8.25c-0.41,0-0.75,0.34-0.75,0.75 S7.84,14,8.25,14h2.15l2.1,3.5h0.9L12.3,14h2.25l0.75,1H16L15.5,13.25z\\\"></path>\"\n      }\n    }\n  },\n  \"add_business\": {\n    \"name\": \"add_business\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z\\\"></path><rect height=\\\"2\\\" width=\\\"15\\\" x=\\\"2\\\" y=\\\"4\\\"></rect><polygon points=\\\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><path d=\\\"M13,14h1v-3h1v-1l-1-4H4l-1,4v1h1v5h6v-5h3V14z M9,15H5v-4h4V15z\\\"></path><polygon points=\\\"16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16 18,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"zoom_out_map\": {\n    \"name\": \"zoom_out_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15,3l2.3,2.3l-2.89,2.87l1.42,1.42L18.7,6.7L21,9V3H15z M3,9l2.3-2.3l2.87,2.89l1.42-1.42L6.7,5.3L9,3H3V9z M9,21 l-2.3-2.3l2.89-2.87l-1.42-1.42L5.3,17.3L3,15v6H9z M21,15l-2.3,2.3l-2.87-2.89l-1.42,1.42l2.89,2.87L15,21h6V15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_printshop\": {\n    \"name\": \"local_printshop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_railway\": {\n    \"name\": \"directions_railway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z\\\"></path>\"\n      }\n    }\n  },\n  \"hvac\": {\n    \"name\": \"hvac\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,16c1.01,0,1.91-0.39,2.62-1H9.38C10.09,15.61,10.99,16,12,16z\\\"></path></g><g><path d=\\\"M8.56,14h6.89c0.26-0.45,0.44-0.96,0.51-1.5h-7.9C8.12,13.04,8.29,13.55,8.56,14z\\\"></path></g><g><path d=\\\"M12,8c-1.01,0-1.91,0.39-2.62,1h5.24C13.91,8.39,13.01,8,12,8z\\\"></path></g><g><path d=\\\"M8.56,10c-0.26,0.45-0.44,0.96-0.51,1.5h7.9c-0.07-0.54-0.24-1.05-0.51-1.5H8.56z\\\"></path></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,18c-3.31,0-6-2.69-6-6 s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M10,13c0.88,0,1.67-0.39,2.22-1H7.78C8.33,12.61,9.12,13,10,13z\\\"></path></g><g><path d=\\\"M10,7C9.12,7,8.34,7.39,7.79,7.99h4.42C11.66,7.39,10.88,7,10,7z\\\"></path></g><g><path d=\\\"M7.42,11.5h5.17c0.22-0.38,0.36-0.8,0.39-1.26H7.02C7.06,10.7,7.2,11.12,7.42,11.5z\\\"></path></g><g><path d=\\\"M7.42,8.49c-0.22,0.38-0.36,0.8-0.4,1.26h5.95c-0.04-0.46-0.18-0.88-0.4-1.26H7.42z\\\"></path></g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M10,14 c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"alt_route\": {\n    \"name\": \"alt_route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.38,9.41l-0.71,0.71c-0.47-0.5-0.93-1.1-1.25-1.96L7.4,7.91C7.66,8.54,8,9.01,8.38,9.41z M9.5,6l-3-3l-3,3h2.53 c0.02,0.43,0.07,0.83,0.14,1.19l0.97-0.24C7.08,6.66,7.04,6.34,7.02,6H9.5z M16.5,6l-3-3l-3,3h2.48c-0.12,2.22-1.02,3.11-1.9,3.96 c-0.39,0.37-0.78,0.75-1.08,1.23c-0.26-0.41-0.58-0.75-0.91-1.07l-0.71,0.71C9.03,11.47,9.5,11.99,9.5,13v4h1v-4c0,0,0,0,0,0h0 c0-1.1,0.53-1.61,1.27-2.32c0.94-0.9,2.07-2.03,2.21-4.68H16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_bar\": {\n    \"name\": \"local_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7L5.66 5h12.69l-1.78 2H7.43z\\\"></path>\"\n      }\n    }\n  },\n  \"taxi_alert\": {\n    \"name\": \"taxi_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 8A7 7 0 0 0 9.68 5H7v2H4.5a1.5 1.5 0 0 0-1.42 1.01L1 14v8a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-7.68A7.01 7.01 0 0 0 23 8zm-18.5.5h4.53a6.93 6.93 0 0 0 2.08 4.5H3l1.5-4.5zm0 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm11 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.93-5.63l-.21.11-.18.09a4.97 4.97 0 0 1-.42.16l-.22.07-.23.06-.2.05a5 5 0 0 1-5.94-4.41A4.07 4.07 0 0 1 11 8l.02-.47.02-.17.04-.28.04-.21.05-.21.07-.24.05-.13a4.99 4.99 0 0 1 9.69 1.7 4.96 4.96 0 0 1-2.55 4.38zM15 4h2v5h-2zm0 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"emergency\": {\n    \"name\": \"emergency\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"20.79,9.23 18.79,5.77 14,8.54 14,3 10,3 10,8.54 5.21,5.77 3.21,9.23 8,12 3.21,14.77 5.21,18.23 10,15.46 10,21 14,21 14,15.46 18.79,18.23 20.79,14.77 16,12\\\"></polygon>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon points=\\\"16.81,7.8 15.31,5.2 11.5,7.4 11.5,3 8.5,3 8.5,7.4 4.69,5.2 3.19,7.8 7,10 3.19,12.2 4.69,14.8 8.5,12.6 8.5,17 11.5,17 11.5,12.6 15.31,14.8 16.81,12.2 13,10\\\"></polygon>\"\n      }\n    }\n  },\n  \"directions_car_filled\": {\n    \"name\": \"directions_car_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M18.92,6.01C18.72,5.42,18.16,5,17.5,5h-11C5.84,5,5.29,5.42,5.08,6.01L3,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,6.01z M7.5,16C6.67,16,6,15.33,6,14.5S6.67,13,7.5,13S9,13.67,9,14.5 S8.33,16,7.5,16z M16.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,16,16.5,16z M5.81,10l1.04-3h10.29 l1.04,3H5.81z\\\"></path></g>\"\n      }\n    }\n  },\n  \"park\": {\n    \"name\": \"park\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"17,12 19,12 12,2 5.05,12 7,12 3.1,18 10.02,18 10.02,22 13.98,22 13.98,18 21,18\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"13,10 15,10 9.97,3 5,10 7,10 4,14 9,14 9,17 11.03,17 11.03,14 16,14\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"temple_buddhist\": {\n    \"name\": \"temple_buddhist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,9.02c0,1.09-0.89,1.98-1.98,1.98H4.98C3.89,11,3,10.11,3,9.02H1c0,1.86,1.28,3.4,3,3.84V22h6v-3c0-1.1,0.9-2,2-2 s2,0.9,2,2v3h6v-9.14c0.55-0.14,3-1.04,3-3.86L21,9.02z\\\"></path></g><g><path d=\\\"M6,8.86V10h12V8.86c0.55-0.14,3-1.04,3-3.86l-2,0.02C19,6.11,18.11,7,17.02,7H6.98C5.89,7,5,6.11,5,5.02H3 C3,6.87,4.28,8.42,6,8.86z\\\"></path></g><g><polygon points=\\\"12,1 8.25,6 15.75,6\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M17.5,7.01C17.5,8.11,16.61,9,15.52,9H4.48C3.39,9,2.5,8.11,2.5,7.01H1c0,1.76,1.31,3.2,3,3.44V18h4v-2c0-1.1,0.9-2,2-2 s2,0.9,2,2v2h4v-7.55c0.55-0.08,3-0.77,3-3.45L17.5,7.01z\\\"></path></g><g><polygon points=\\\"10,1 6.92,5 13.08,5\\\"></polygon></g><g><path d=\\\"M5,7.16V8h10V7.16c1.89-0.9,2-2.74,2-3.16l-1.5,0.01c0,1.08-0.88,1.97-1.96,1.98H6.46C5.38,5.98,4.5,5.1,4.5,4.02L3,4 C3,4.42,3.11,6.26,5,7.16z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"money\": {\n    \"name\": \"money\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8h2v8H5zm7 0H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4zm7-6h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6h-1v-4h1v4z\\\"></path><path d=\\\"M4 6h16v12H4z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 4v16h20V4H2zm2 14V6h16v12H4z\\\"></path>\"\n      }\n    }\n  },\n  \"emergency_share\": {\n    \"name\": \"emergency_share\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,9c-3.15,0-6,2.41-6,6.15c0,2.49,2,5.44,6,8.85c4-3.41,6-6.36,6-8.85C18,11.41,15.15,9,12,9z M12,16.5 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,16.5,12,16.5z M12,4c1.93,0,3.68,0.78,4.95,2.05l-1.41,1.41 C14.63,6.56,13.38,6,12,6S9.37,6.56,8.46,7.46L7.05,6.05C8.32,4.78,10.07,4,12,4z M19.78,3.23l-1.41,1.41 C16.74,3.01,14.49,2,12.01,2S7.27,3.01,5.64,4.63L4.22,3.22C6.22,1.23,8.97,0,12.01,0S17.79,1.23,19.78,3.23z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.34,2.66l-1.06,1.06C13.92,2.35,12.03,1.5,9.95,1.5c-2.06,0-3.92,0.83-5.28,2.18L3.61,2.61C5.24,1,7.48,0,9.95,0 C12.45,0,14.71,1.02,16.34,2.66z M6.09,5.09l1.06,1.06C7.87,5.44,8.86,5,9.95,5c1.11,0,2.12,0.46,2.85,1.2l1.06-1.06 c-1-1.01-2.38-1.63-3.91-1.63C8.45,3.5,7.08,4.11,6.09,5.09z M15.28,12.28C15.28,15.81,10,20,10,20s-5.28-4.19-5.28-7.72 C4.72,9.36,7.08,7,10,7S15.28,9.36,15.28,12.28z M10,11c-0.69,0-1.25,0.56-1.25,1.25c0,0.69,0.56,1.25,1.25,1.25 c0.69,0,1.25-0.56,1.25-1.25C11.25,11.56,10.69,11,10,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pin_drop\": {\n    \"name\": \"pin_drop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8c0-3.31-2.69-6-6-6S6 4.69 6 8c0 4.5 6 11 6 11s6-6.5 6-11zm-8 0c0-1.1.9-2 2-2s2 .9 2 2-.89 2-2 2c-1.1 0-2-.9-2-2zM5 20v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_right\": {\n    \"name\": \"roundabout_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.92,8C13.44,5.16,10.97,3,8,3C4.69,3,2,5.69,2,9c0,2.97,2.16,5.44,5,5.92L7,21h2l0-6.09c0-0.98-0.71-1.8-1.67-1.97 C5.44,12.63,4,10.98,4,9c0-2.21,1.79-4,4-4c1.98,0,3.63,1.44,3.94,3.33C12.11,9.29,12.93,10,13.91,10l4.26,0l-1.59,1.59L18,13l4-4 l-4-4l-1.41,1.41L18.17,8L13.92,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.75,3c2.37,0,4.33,1.73,4.69,4l3.69,0l-1.19-1.19L15,4.75l3,3l-3,3l-1.06-1.06l1.19-1.19l-3.69,0 c-0.74,0-1.36-0.54-1.48-1.25C9.72,5.69,8.37,4.5,6.75,4.5l0,0C4.96,4.5,3.5,5.96,3.5,7.75c0,1.62,1.18,2.96,2.73,3.21 c0.72,0.11,1.27,0.67,1.27,1.4l0,4.64H6v-4.56l0,0c-2.27-0.36-4-2.32-4-4.69C2,5.13,4.13,3,6.75,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"synagogue\": {\n    \"name\": \"synagogue\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,8v13h4v-5c0-1.1,0.9-2,2-2s2,0.9,2,2v5h4V8l-6-5L6,8z M13.5,10c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5S13.5,9.17,13.5,10z\\\"></path><path d=\\\"M3,5C1.9,5,1,5.9,1,7v1h4V7C5,5.9,4.1,5,3,5z\\\"></path><rect height=\\\"12\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"9\\\"></rect><path d=\\\"M21,5c-1.1,0-2,0.9-2,2v1h4V7C23,5.9,22.1,5,21,5z\\\"></path><rect height=\\\"12\\\" width=\\\"4\\\" x=\\\"19\\\" y=\\\"9\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,7v10h3v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h3V7l-5-4L5,7z M11.25,8.25c0,0.69-0.56,1.25-1.25,1.25S8.75,8.94,8.75,8.25 S9.31,7,10,7S11.25,7.56,11.25,8.25z\\\"></path><path d=\\\"M17.5,4C16.67,4,16,4.67,16,5.5v1.17h3V5.5C19,4.67,18.33,4,17.5,4z\\\"></path><rect height=\\\"9.5\\\" width=\\\"3\\\" x=\\\"16\\\" y=\\\"7.5\\\"></rect><path d=\\\"M2.5,4C1.67,4,1,4.67,1,5.5v1.17h3V5.5C4,4.67,3.33,4,2.5,4z\\\"></path><rect height=\\\"9.5\\\" width=\\\"3\\\" x=\\\"1\\\" y=\\\"7.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"nightlife\": {\n    \"name\": \"nightlife\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9h0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17L17,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.5,11.3L12,5H2l4.5,6.3V15H5v1h4v-1H7.5V11.3z M5.37,8L3.94,6h6.11L8.63,8H5.37z\\\"></path><path d=\\\"M15,5h-1v7.28C13.7,12.11,13.37,12,13,12c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2V7h2V5H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plumbing\": {\n    \"name\": \"plumbing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z\\\"></path><path d=\\\"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z\\\"></path><path d=\\\"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.29,4.45l2.83,2.83l0,0c0.78-0.78,0.78-2.05,0-2.83l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0L9.75,5.15l1.41,1.41 L13.29,4.45z\\\"></path><path d=\\\"M4.8,11.52L4.8,11.52c0.39,0.39,1.02,0.39,1.41,0L8.34,9.4L6.92,7.98L4.8,10.1C4.41,10.49,4.41,11.13,4.8,11.52z\\\"></path><path d=\\\"M12.58,6.57l-1.41,1.41L8.34,5.15c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L9.75,9.4L9.04,10.1 l-5.3,5.3c-0.59,0.59-0.59,1.54,0,2.12l0,0c0.59,0.59,1.54,0.59,2.12,0l7.42-7.42l0,0c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L12.58,6.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_transit_filled\": {\n    \"name\": \"directions_transit_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M8.5,16C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M11,10H6V7h5V10z M15.5,16 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10h-5V7h5V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"badge\": {\n    \"name\": \"badge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M9,12c0.83,0,1.5,0.67,1.5,1.5S9.83,15,9,15s-1.5-0.67-1.5-1.5S8.17,12,9,12z M12,18H6v-0.75c0-1,2-1.5,3-1.5 s3,0.5,3,1.5V18z M13,9h-2V4h2V9z M18,16.5h-4V15h4V16.5z M18,13.5h-4V12h4V13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,6h-4V4c0-0.55-0.45-1-1-1H9C8.45,3,8,3.45,8,4v2H4C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V7 C17,6.45,16.55,6,16,6z M9,4h2v4H9V4z M8,10c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S7.45,10,8,10z M10,14H6v-0.5 c0-0.67,1.33-1,2-1s2,0.33,2,1V14z M14,13h-3v-1h3V13z M14,11h-3v-1h3V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"diamond\": {\n    \"name\": \"diamond\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"12.16,3 11.84,3 9.21,8.25 14.79,8.25\\\"></polygon></g><g><polygon points=\\\"16.46,8.25 21.62,8.25 19,3 13.84,3\\\"></polygon></g><g><polygon points=\\\"21.38,9.75 12.75,9.75 12.75,20.1\\\"></polygon></g><g><polygon points=\\\"11.25,20.1 11.25,9.75 2.62,9.75\\\"></polygon></g><g><polygon points=\\\"7.54,8.25 10.16,3 5,3 2.38,8.25\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"9.5,16.44 9.5,8.5 2.44,8.5\\\"></polygon></g><g><polygon points=\\\"9.9,3.31 7.81,7.5 12.16,7.5\\\"></polygon></g><g><polygon points=\\\"10.5,8.5 10.5,16.44 17.56,8.5\\\"></polygon></g><g><polygon points=\\\"6.69,7.5 8.94,3 4,3 2.2,7.5\\\"></polygon></g><g><polygon points=\\\"13.3,7.5 17.8,7.5 16,3 10.87,3\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"turn_sharp_left\": {\n    \"name\": \"turn_sharp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,6.83L4.41,8.41L3,7l4-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0,2,0.9,2,2v6h-2v-6H8c-1.1,0-2-0.9-2-2V6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,10.5C5.5,11.33,6.17,12,7,12l6,0v5h1.5v-5c0-0.83-0.67-1.5-1.5-1.5l-6,0l0-4.63l1.19,1.19L9.25,6l-3-3l-3,3l1.06,1.06 L5.5,5.87L5.5,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fastfood\": {\n    \"name\": \"fastfood\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.06 22.99h1.66c.84 0 1.53-.64 1.63-1.46L23 5.05h-5V1h-1.97v4.05h-4.97l.3 2.34c1.71.47 3.31 1.32 4.27 2.26 1.44 1.42 2.43 2.89 2.43 5.29v8.05zM1 21.99V21h15.03v.99c0 .55-.45 1-1.01 1H2.01c-.56 0-1.01-.45-1.01-1zm15.03-7c0-8-15.03-8-15.03 0h15.03zM1.02 17h15v2h-15z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_boat\": {\n    \"name\": \"directions_boat\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z\\\"></path>\"\n      }\n    }\n  },\n  \"flight\": {\n    \"name\": \"flight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hail\": {\n    \"name\": \"hail\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2v.4c-.1 2.2-.8 3.9-2.3 5.1-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.9.7-1.39 1.6-1.4 3.1v.5H5v-.5c0-2 .71-3.59 2.11-4.79C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C16.48 5.14 17 4 17 2.5V2zM4 16h3v6H4v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"traffic\": {\n    \"name\": \"traffic\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"no_meals_ouline\": {\n    \"name\": \"no_meals_ouline\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control\": {\n    \"name\": \"pest_control\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 C15.97,8.48,16,8.25,16,8c0-0.8-0.24-1.55-0.65-2.18L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17 l1.65,1.65C8.24,6.45,8,7.2,8,8c0,0.25,0.03,0.48,0.07,0.72C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49 c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3 s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49c0.1-0.37,0.17-0.75,0.22-1.14H21z M13,17h-2v-6h2V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,12v-1h-2.04c-0.04-0.38-0.11-0.74-0.22-1.08l1.71-0.99l-0.5-0.87L13.33,9c-0.24-0.4-0.54-0.74-0.87-1.03 c0.07-0.39,0.13-1.19-0.48-1.99l1.24-1.24l-0.71-0.71l-1.29,1.29c-0.41-0.23-1.35-0.61-2.43,0L7.49,4.04L6.78,4.74l1.24,1.24 C7.41,6.78,7.47,7.58,7.55,7.97C7.21,8.26,6.91,8.6,6.67,9L5.05,8.07l-0.5,0.87l1.71,0.99c-0.11,0.34-0.18,0.7-0.22,1.08H4v1h2.04 c0.04,0.38,0.11,0.74,0.22,1.08l-1.71,0.99l0.5,0.87L6.67,14c0.72,1.21,1.94,2,3.33,2s2.61-0.8,3.33-2l1.62,0.94l0.5-0.87 l-1.71-0.99c0.11-0.34,0.18-0.7,0.22-1.08H16z M10.5,13.5h-1v-4h1V13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"multiple_stop\": {\n    \"name\": \"multiple_stop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"emergency_recording\": {\n    \"name\": \"emergency_recording\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M12,12 l3,1.73l-1,1.73l-3-1.73V17H9v-3.27l-3,1.73l-1-1.73L8,12l-3-1.73l1-1.73l3,1.73V7h2v3.27l3-1.73l1,1.73L12,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,6l-3,3V5.5C15,4.67,14.33,4,13.5,4h-9C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h9c0.83,0,1.5-0.67,1.5-1.5V11l3,3 V6z M10.5,10l2.25,1.3L12,12.6l-2.25-1.3v2.45h-1.5V11.3L6,12.6l-0.75-1.3L7.5,10L5.25,8.7L6,7.4l2.25,1.3V6.25h1.5V8.7L12,7.4 l0.75,1.3L10.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_left\": {\n    \"name\": \"turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.83,11l1.59,1.59L7,14l-4-4l4-4l1.41,1.41L6.83,9L15,9c1.1,0,2,0.9,2,2v9h-2v-9L6.83,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,16h1.5V9c0-0.83-0.67-1.5-1.5-1.5l-6.13,0l1.19-1.19L6,5.25l-3,3l3,3l1.06-1.06L5.87,9L12,9V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flight_class\": {\n    \"name\": \"flight_class\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M16,4h-2c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M9.5,16H18v2H9.49 c-0.88,0-1.66-0.58-1.92-1.43L5,8V4h2v4L9.5,16z M8,19h10v2H8V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,4h-1.5C10.67,4,10,4.67,10,5.5v3.75c0,0.83,0.67,1.5,1.5,1.5H13c0.83,0,1.5-0.67,1.5-1.5V5.5C14.5,4.67,13.83,4,13,4z M8.4,13H15v1.5H8.4c-0.66,0-1.24-0.43-1.43-1.06L5,7V4h1.5v3L8.4,13z M7.5,15.5H15V17H7.5V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_road\": {\n    \"name\": \"remove_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><polygon points=\\\"22.5,16.41 21.09,15 19,17.09 16.91,15 15.5,16.41 17.59,18.5 15.5,20.59 16.91,22 19,19.91 21.09,22 22.5,20.59 20.41,18.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13\\\"></rect><polygon points=\\\"18,13.56 16.94,12.5 15.25,14.19 13.56,12.5 12.5,13.56 14.19,15.25 12.5,16.94 13.56,18 15.25,16.31 16.94,18 18,16.94 16.31,15.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_grocery_store\": {\n    \"name\": \"local_grocery_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_road\": {\n    \"name\": \"edit_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,4 16,4 16,11.9 18,9.9\\\"></polygon><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"16\\\"></rect><path d=\\\"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"9\\\"></rect><path d=\\\"M18.07,9.64l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0L11,13.88V16h2.12l4.95-4.95C18.46,10.66,18.46,10.03,18.07,9.64z M12.71,15H12v-0.71l3.24-3.24l0.71,0.71L12.71,15z\\\"></path><polygon points=\\\"14,4 13,4 13,10.46 14,9.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"category\": {\n    \"name\": \"category\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2l-5.5 9h11z\\\"></path><circle cx=\\\"17.5\\\" cy=\\\"17.5\\\" r=\\\"4.5\\\"></circle><path d=\\\"M3 13.5h8v8H3z\\\"></path>\"\n      }\n    }\n  },\n  \"fork_right\": {\n    \"name\": \"fork_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.59,15.59L16,17l4-4l-4-4l-1.41,1.41L16.17,12c-1.51-0.33-3.73,0.08-5.17,1.36l0-6.53l1.59,1.59L14,7l-4-4L6,7 l1.41,1.41L9,6.83V21l2,0v-4c0.73-2.58,3.07-3.47,5.17-3L14.59,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,11.36c1.2-1.05,2.74-1.4,4.13-1.11l-1.19-1.19L13,8l3,3l-3,3l-1.06-1.06l1.19-1.19C11.26,11.32,9.56,12.28,9,14v3H7.5 l0-11.13L6.31,7.06L5.25,6l3-3l3,3l-1.06,1.06L9,5.87L9,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_movies\": {\n    \"name\": \"local_movies\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"streetview\": {\n    \"name\": \"streetview\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z\\\"></path><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"5\\\"></circle><path d=\\\"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"soup_kitchen\": {\n    \"name\": \"soup_kitchen\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.4,7C6.06,7.55,6,7.97,6,8.38C6,9.15,7,11,7,12c0,0.95-0.4,1.5-0.4,1.5H5.1c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62 C4.5,7.97,4.56,7.55,4.9,7H6.4z M11.4,7C11.06,7.55,11,7.97,11,8.38C11,9.15,12,11,12,12c0,0.95-0.4,1.5-0.4,1.5h1.5 c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H11.4z M8.15,7c-0.34,0.55-0.4,0.97-0.4,1.38 c0,0.77,1,2.63,1,3.62c0,0.95-0.4,1.5-0.4,1.5h1.5c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H8.15z M21.47,6.5c0,0,0.13-1.06,0.13-1.5c0-1.65-1.35-3-3-3c-1.54,0-2.81,1.16-2.98,2.65L14.53,15H4.01c-0.6,0-1.09,0.53-1,1.13 C3.53,19.46,6.39,22,9.75,22c3.48,0,6.34-2.73,6.71-6.23l1.15-10.87C17.66,4.39,18.08,4,18.6,4c0.55,0,1,0.45,1,1 c0,0.3-0.1,1.25-0.1,1.25L21.47,6.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M4.96,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79C4.5,6.74,4.54,6.42,4.81,6h0.98 C5.53,6.42,5.48,6.74,5.48,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H4.96z M8.32,11c0,0,0.31-0.42,0.31-1.15 c0-0.77-0.77-2.19-0.77-2.79C7.86,6.74,7.9,6.42,8.16,6H7.18C6.92,6.42,6.88,6.74,6.88,7.06c0,0.59,0.77,2.02,0.77,2.79 c0,0.73-0.31,1.15-0.31,1.15H8.32z M10.69,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79c0-0.31,0.04-0.64,0.31-1.06H9.56 C9.29,6.42,9.25,6.74,9.25,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H10.69z M17.68,5.49 c0,0,0.07-0.47,0.07-1.24C17.75,3.01,16.74,2,15.5,2c-1.16,0-2.11,0.88-2.24,2l-0.94,8.4l-8.82,0c-0.29,0-0.53,0.24-0.5,0.52 C3.25,15.77,5.59,18,8.4,18c2.78,0,5.07-2.18,5.36-4.99l0.99-8.84c0.04-0.38,0.36-0.67,0.75-0.67c0.41,0,0.75,0.34,0.75,0.75 S16.2,5.3,16.2,5.3L17.68,5.49z\\\"></path></g>\"\n      }\n    }\n  },\n  \"castle\": {\n    \"name\": \"castle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9V9H21z M11,12H9V9h2V12z M15,12h-2V9h2V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.5,7v2H16V2h-1.5v2h-2V2H11v2H9V2H7.5v2h-2V2H4v7H2.5V7H1v10h7v-2c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7V7H17.5z M9,10H7.5V7 H9V10z M12.5,10H11V7h1.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hardware\": {\n    \"name\": \"hardware\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v3h6V8l3,3h2V3H18z\\\"></path></g><g><path d=\\\"M9,13v7c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-7H9z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M8,15c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-5H8V15z\\\"></path></g><g><path d=\\\"M14,4l-2,2V4H8C6.34,4,5,5.34,5,7h3v2h4V7l2,2h1V4H14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"trip_origin\": {\n    \"name\": \"trip_origin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"pedal_bike\": {\n    \"name\": \"pedal_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.82,9l-1.58-4.34C13.1,4.26,12.72,4,12.3,4H10v1h2.3l1.46,4H8.75L8.38,8H10V7H6v1h1.32l1.46,4H7.95 C7.7,10.19,6.13,8.86,4.2,9.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,14.25,2.41,16,4.5,16c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,10.75,17.59,9,15.5,9H14.82z M9.11,10h3.92 c-0.53,0.52-0.88,1.22-0.98,2H9.84L9.11,10z M4.5,15C3.1,15,2,13.9,2,12.5S3.1,10,4.5,10c1.23,0,2.23,0.85,2.45,2H4v1h2.95 C6.73,14.15,5.73,15,4.5,15z M15.5,15c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8 C15.3,10.02,15.4,10,15.5,10c1.4,0,2.5,1.1,2.5,2.5S16.9,15,15.5,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"store_mall_directory\": {\n    \"name\": \"store_mall_directory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z\\\"></path>\"\n      }\n    }\n  },\n  \"local_hotel\": {\n    \"name\": \"local_hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant_menu\": {\n    \"name\": \"restaurant_menu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"train\": {\n    \"name\": \"train\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm2 0V6h5v4h-5zm3.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"moving\": {\n    \"name\": \"moving\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.71,9.71L22,12V6h-6l2.29,2.29l-4.17,4.17c-0.39,0.39-1.02,0.39-1.41,0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24,0L2,16.59 L3.41,18l5.29-5.29c0.39-0.39,1.02-0.39,1.41,0l1.17,1.17c1.17,1.17,3.07,1.17,4.24,0L19.71,9.71z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.03,8.03l-3.23,3.23c-0.98,0.98-2.56,0.98-3.54,0l-0.7-0.7c-0.39-0.39-1.02-0.39-1.41,0l-4.09,4.09L2,13.59L6.08,9.5 c0.98-0.98,2.56-0.98,3.54,0l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0l3.23-3.23L13,5h5v5L16.03,8.03z\\\"></path>\"\n      }\n    }\n  },\n  \"local_police\": {\n    \"name\": \"local_police\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1z M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87 l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z\\\"></path>\"\n      }\n    }\n  },\n  \"my_location\": {\n    \"name\": \"my_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"car_crash\": {\n    \"name\": \"car_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,7h-1V3h1V7z M18.5,8v1h-1V8H18.5z M17.91,13 c0.06,0.16,0.09,0.33,0.09,0.5c0,0.83-0.67,1.5-1.5,1.5S15,14.33,15,13.5c0-0.39,0.15-0.74,0.39-1.01 c-1.63-0.66-2.96-1.91-3.71-3.49H5.81l1.04-3H11c0-0.69,0.1-1.37,0.29-2H6.5C5.84,4,5.29,4.42,5.08,5.01L3,11v8c0,0.55,0.45,1,1,1 h1c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-6.68C19.95,12.83,18.84,13.01,17.91,13z M7.5,15 C6.67,15,6,14.33,6,13.5S6.67,12,7.5,12S9,12.67,9,13.5S8.33,15,7.5,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M19,5c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S19,2.79,19,5z M15.5,6h-1v1h1V6z M15.5,3h-1v2h1V3z M15,10.5 c-0.32,0-0.64-0.03-0.94-0.08c0.27,0.18,0.44,0.48,0.44,0.83c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c0-0.51,0.39-0.93,0.88-0.99 C12.14,9.87,11.09,9.06,10.39,8H5.02l1-2.5h3.51C9.47,4.99,9.51,4.39,9.59,4H6.02C5.4,4,4.85,4.37,4.62,4.94L3,9l0,6.5 C3,15.78,3.22,16,3.5,16h1C4.78,16,5,15.78,5,15.5v-1h10v1c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-5.38 C16.38,10.37,15.71,10.5,15,10.5z M6.5,12.25c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1S7.05,12.25,6.5,12.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"u_turn_left\": {\n    \"name\": \"u_turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,9v12h-2V9c0-2.21-1.79-4-4-4S8,6.79,8,9v4.17l1.59-1.59L11,13l-4,4l-4-4l1.41-1.41L6,13.17V9c0-3.31,2.69-6,6-6 S18,5.69,18,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,7.5C5.5,5.01,7.51,3,10,3s4.5,2.01,4.5,4.5V16H13V7.5c0-1.66-1.34-3-3-3s-3,1.34-3,3l0,2.63l1.19-1.19L9.25,10l-3,3 l-3-3l1.06-1.06l1.19,1.19L5.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"run_circle\": {\n    \"name\": \"run_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M11,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 s-1-0.45-1-1C10,5.45,10.45,5,11,5z M13.5,10.62c-0.6,0-1.87-0.38-2.67-1.4l-0.21,1.19L12,11.79V15h-1v-2.79l-1-0.99l-0.42,2.13 l-3.17-0.65l0.2-0.98l2.19,0.45l0.62-3.12L8.5,9.37v1.25h-1V8.67l2.67-0.96c0.46-0.16,0.99,0.01,1.22,0.44 c0.7,1.32,1.77,1.47,2.11,1.47V10.62z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bike\": {\n    \"name\": \"electric_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,7h-0.68l-1.58-4.34C13.1,2.26,12.72,2,12.3,2H10v1h2.3l1.46,4H8.75L8.38,6H10V5H6v1h1.32l1.46,4H7.95 C7.7,8.19,6.13,6.86,4.2,7.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,12.25,2.41,14,4.5,14c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,8.75,17.59,7,15.5,7z M6.95,11c-0.23,1.15-1.22,2-2.45,2 C3.1,13,2,11.9,2,10.5S3.1,8,4.5,8c1.23,0,2.23,0.85,2.45,2H4v1H6.95z M12.05,10H9.84L9.11,8h3.92C12.5,8.52,12.16,9.22,12.05,10z M15.5,13c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,8.02,15.4,8,15.5,8 c1.4,0,2.5,1.1,2.5,2.5S16.9,13,15.5,13z\\\"></path><polygon points=\\\"9.5,16 7,16 10.5,18 10.5,17 13,17 9.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_hospital\": {\n    \"name\": \"local_hospital\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"tire_repair\": {\n    \"name\": \"tire_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,7c0,0.55,0.45,1,1,1c0.28,0,0.53-0.11,0.71-0.29c0.4-0.4,1.04-2.46,1.04-2.46s-2.06,0.64-2.46,1.04 C18.11,6.47,18,6.72,18,7z\\\"></path><path d=\\\"M19,2c-2.76,0-5,2.24-5,5c0,2.05,1.23,3.81,3,4.58V13h1v5c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2c0-1.65-1.35-3-3-3 c-0.35,0-0.69,0.06-1,0.17V5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1v2c0,1.65,1.35,3,3,3s3-1.35,3-3v-5h1v-1.42c1.77-0.77,3-2.53,3-4.58C24,4.24,21.76,2,19,2z M6,19.5l-2-2v-2.83l2,2 V19.5z M6,14.5l-2-2V9.67l2,2V14.5z M6,9.5l-2-2V4.67l2,2V9.5z M10,17.5l-2,2v-2.83l2-2V17.5z M10,12.5l-2,2v-2.83l2-2V12.5z M10,7.5l-2,2V6.67l2-2V7.5z M19,10c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S20.66,10,19,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,5.75c0,0.41,0.34,0.75,0.75,0.75c0.21,0,0.39-0.08,0.53-0.22C15.58,5.98,16,4.5,16,4.5s-1.48,0.42-1.78,0.72 C14.08,5.36,14,5.54,14,5.75z\\\"></path><path d=\\\"M14.75,2C12.68,2,11,3.68,11,5.75c0,1.44,0.81,2.69,2,3.32V10h1v4.75c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.24-1.01-2.25-2.25-2.25c-0.26,0-0.52,0.05-0.75,0.13V4.5C9.5,3.67,8.83,3,8,3H3.5 C2.67,3,2,3.67,2,4.5v11C2,16.33,2.67,17,3.5,17H8c0.83,0,1.5-0.67,1.5-1.5v-2.25c0-0.41,0.34-0.75,0.75-0.75S11,12.84,11,13.25 v1.5c0,1.24,1.01,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25V10h1V9.07c1.19-0.63,2-1.88,2-3.32C18.5,3.68,16.82,2,14.75,2z M5,15.5L3.5,14v-2.12l1.5,1.5V15.5z M5,11.75l-1.5-1.5V8.13L5,9.62V11.75z M5,8L3.5,6.5V4.38L5,5.88V8z M8,14l-1.5,1.5v-2.12 l1.5-1.5V14z M8,10.25l-1.5,1.5V9.62L8,8.13V10.25z M8,6.5L6.5,8V5.88L8,4.38V6.5z M14.75,8c-1.24,0-2.25-1.01-2.25-2.25 c0-1.24,1.01-2.25,2.25-2.25S17,4.51,17,5.75C17,6.99,15.99,8,14.75,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"egg\": {\n    \"name\": \"egg\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3C8.5,3,5,9.33,5,14c0,3.87,3.13,7,7,7s7-3.13,7-7C19,9.33,15.5,3,12,3z M13,18c-3,0-5-1.99-5-5c0-0.55,0.45-1,1-1 s1,0.45,1,1c0,2.92,2.42,3,3,3c0.55,0,1,0.45,1,1S13.55,18,13,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-2.75,0-5.5,4.93-5.5,8.56C4.5,14.56,6.96,17,10,17s5.5-2.44,5.5-5.44C15.5,7.93,12.75,3,10,3z M10.25,14.5 C8.37,14.5,7,12.92,7,10.75C7,10.34,7.34,10,7.75,10s0.75,0.34,0.75,0.75c0,1.12,0.54,2.25,1.75,2.25c0.41,0,0.75,0.34,0.75,0.75 S10.66,14.5,10.25,14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_pizza\": {\n    \"name\": \"local_pizza\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"liquor\": {\n    \"name\": \"liquor\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z\\\"></path></g><g><path d=\\\"M20.63,8.54l-0.95-0.32C19.28,8.09,19,7.71,19,7.28V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.28,0.81-0.68,0.95l-0.95,0.32C11.55,8.82,11,9.58,11,10.44V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.63,8.54z M16,4h1v1h-1V4z M13,10.44l0.95-0.32C15.18,9.72,16,8.57,16,7.28V7h1v0.28 c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12h-7V10.44z M20,20h-7v-2h7V20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,12c0,0.93,0.64,1.71,1.5,1.93V16H4v1h4v-1H6.5v-2.07C7.36,13.71,8,12.93,8,12V6H4V12z M5,7h2v2.3H5V7z\\\"></path><path d=\\\"M16.35,7.76l-1.2-0.45c-0.39-0.15-0.65-0.52-0.65-0.94V3.5C14.5,3.22,14.28,3,14,3h-2c-0.28,0-0.5,0.22-0.5,0.5v2.87 c0,0.42-0.26,0.79-0.65,0.94l-1.2,0.45C9.26,7.9,9,8.28,9,8.69V16c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1V8.69 C17,8.28,16.74,7.9,16.35,7.76z M12.5,4h1v1h-1V4z M16,16h-6v-2h6V16z M16,10h-6V8.69l1.2-0.45c0.78-0.29,1.3-1.04,1.3-1.87V6h1 v0.37c0,0.83,0.52,1.58,1.3,1.87L16,8.69V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_taxi\": {\n    \"name\": \"local_taxi\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_truck\": {\n    \"name\": \"fire_truck\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22.9,10.69l-1.44-4.32C21.18,5.55,20.42,5,19.56,5H19V4c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v1h-2c-1.1,0-2,0.9-2,2 v4H1v5c0,1.1,0.9,2,2,2h1c0,1.66,1.34,3,3,3s3-1.34,3-3h4c0,1.66,1.34,3,3,3s3-1.34,3-3h3v-6.68C23,11.11,22.97,10.9,22.9,10.69z M7,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,19,7,19z M17,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,19,17,19z M14,11V7h5.56l1.33,4H14z\\\"></path><path d=\\\"M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5z M5.25,8.5H3.5v-2h1.75V8.5z M8.5,8.5H6.75v-2H8.5V8.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.84,8.68l-1.43-2.85C17.16,5.32,16.64,5,16.07,5H15.5V3.5C15.5,3.22,15.28,3,15,3h-1.5C13.22,3,13,3.22,13,3.5V5h-1.5 C10.67,5,10,5.67,10,6.5v3H1v4C1,14.33,1.67,15,2.5,15h0.55c0.23,1.14,1.24,2,2.45,2c1.21,0,2.22-0.86,2.45-2h4.1 c0.23,1.14,1.24,2,2.45,2c1.21,0,2.22-0.86,2.45-2H19V9.35C19,9.12,18.95,8.89,18.84,8.68z M5.5,15.5c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S6.05,15.5,5.5,15.5z M14.5,15.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.05,15.5,14.5,15.5z M17.5,9.5h-6v-3h4.57l1.43,2.85V9.5z\\\"></path><path d=\\\"M9,7.5H8V6h1V5H1v1h1v1.5H1v1h8V7.5z M4.5,7.5H3V6h1.5V7.5z M7,7.5H5.5V6H7V7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_car\": {\n    \"name\": \"directions_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_right\": {\n    \"name\": \"ramp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,21h2V6.83l1.59,1.59L16,7l-4-4L8,7l1.41,1.41L11,6.83V9c0,4.27-4.03,7.13-6,8.27l1.46,1.46 C8.37,17.56,9.9,16.19,11,14.7L11,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,5.87L8.06,7.06L7,6l3-3l3,3l-1.06,1.06l-1.19-1.19l0,11.13h-1.5l0-4.99l0-0.01c-1.02,1.39-2.35,2.43-3.39,3.09 L4.77,14c1.6-0.96,4.48-3.18,4.48-6.3L9.25,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mosque\": {\n    \"name\": \"mosque\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,8h10c0.29,0,0.57,0.06,0.84,0.13C17.93,7.8,18,7.46,18,7.09c0-1.31-0.65-2.53-1.74-3.25L12,1L7.74,3.84 C6.65,4.56,6,5.78,6,7.09C6,7.46,6.07,7.8,6.16,8.13C6.43,8.06,6.71,8,7,8z\\\"></path><path d=\\\"M24,7c0-1.1-2-3-2-3s-2,1.9-2,3c0,0.74,0.4,1.38,1,1.72V13h-2v-2c0-1.1-0.9-2-2-2H7c-1.1,0-2,0.9-2,2v2H3V8.72 C3.6,8.38,4,7.74,4,7c0-1.1-2-3-2-3S0,5.9,0,7c0,0.74,0.4,1.38,1,1.72V21h9v-4c0-1.1,0.9-2,2-2s2,0.9,2,2v4h9V8.72 C23.6,8.38,24,7.74,24,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.67,7h8.67c0.17,0,0.33,0.02,0.49,0.05C14.93,6.71,15,6.36,15,5.99c0-1.23-0.65-2.38-1.71-3.01L10,1L6.71,2.98 C5.65,3.61,5,4.76,5,5.99c0,0.37,0.07,0.72,0.18,1.06C5.34,7.02,5.5,7,5.67,7z\\\"></path><path d=\\\"M19.75,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5c0,0.55,0.3,1.03,0.75,1.29V11H16V9.67C16,8.75,15.25,8,14.33,8H5.67 C4.75,8,4,8.75,4,9.67V11H2.5V6.79C2.95,6.53,3.25,6.05,3.25,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5 c0,0.55,0.3,1.03,0.75,1.29V17h7v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h7V6.79C19.45,6.53,19.75,6.05,19.75,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electrical_services\": {\n    \"name\": \"electrical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z\\\"></path><path d=\\\"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z\\\"></path><path d=\\\"M12,14h-2v4h2c0,1.1,0.9,2,2,2h3v-8h-3C12.9,12,12,12.9,12,14z\\\"></path><path d=\\\"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,11.5c0-0.28-0.22-0.5-0.5-0.5H14v1h1.5C15.78,12,16,11.78,16,11.5z\\\"></path><path d=\\\"M15.5,14H14v1h1.5c0.28,0,0.5-0.22,0.5-0.5C16,14.22,15.78,14,15.5,14z\\\"></path><path d=\\\"M9,11v1H8v2h1l0,1c0,0.55,0.45,1,1,1h3v-6h-3C9.45,10,9,10.45,9,11z\\\"></path><path d=\\\"M6.75,9H7.5C8.88,9,10,7.88,10,6.5C10,5.12,8.88,4,7.5,4h-2C5.22,4,5,4.22,5,4.5C5,4.78,5.22,5,5.5,5h2 C8.33,5,9,5.67,9,6.5S8.33,8,7.5,8H6.75C5.23,8,4,9.23,4,10.75s1.23,2.75,2.75,2.75H7v-1H6.75C5.78,12.5,5,11.72,5,10.75 S5.78,9,6.75,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"satellite\": {\n    \"name\": \"satellite\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_transit\": {\n    \"name\": \"directions_transit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_bike\": {\n    \"name\": \"directions_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"transit_enterexit\": {\n    \"name\": \"transit_enterexit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_hydrant_alt\": {\n    \"name\": \"fire_hydrant_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,11h-1V8h2V6h-2.35C16.83,3.67,14.61,2,12,2S7.17,3.67,6.35,6H4v2h2v3H5c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v3H4v2 h16v-2h-2v-3h1c1.1,0,2-0.9,2-2v-2C21,11.9,20.1,11,19,11z M12,17.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.5 S13.93,17.5,12,17.5z\\\"></path><circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"11.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M15.5,9H15V7h1V5.5h-1.25C14.11,3.48,12.24,2,10,2S5.89,3.48,5.25,5.5H4V7h1v2H4.5C3.67,9,3,9.67,3,10.5v2 C3,13.33,3.67,14,4.5,14H5v2.5H4V18h12v-1.5h-1V14h0.5c0.83,0,1.5-0.67,1.5-1.5v-2C17,9.67,16.33,9,15.5,9z M10,14.25 c-1.52,0-2.75-1.23-2.75-2.75S8.48,8.75,10,8.75s2.75,1.23,2.75,2.75S11.52,14.25,10,14.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"minor_crash\": {\n    \"name\": \"minor_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.92,9.01C18.72,8.42,18.16,8,17.5,8h-11C5.84,8,5.29,8.42,5.08,9.01L3,15v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,9.01z M6.85,10h10.29l1.04,3H5.81L6.85,10z M6,17.5C6,16.67,6.67,16,7.5,16 S9,16.67,9,17.5S8.33,19,7.5,19S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19 S15,18.33,15,17.5z M9.41,5L8,6.41l-3-3L6.41,2L9.41,5z M16,6.41L14.59,5l3-3L19,3.41L16,6.41z M13,5h-2V0h2V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,12v6.5c0,0.28-0.22,0.5-0.5,0.5h-1c-0.28,0-0.5-0.22-0.5-0.5v-1H5v1C5,18.78,4.78,19,4.5,19h-1C3.22,19,3,18.78,3,18.5 L3,12l1.62-4.06C4.85,7.37,5.4,7,6.02,7h7.97c0.61,0,1.16,0.37,1.39,0.94L17,12z M6.02,8.5l-1,2.5h9.97l-1-2.5H6.02z M6.5,13.25 c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1 c0.55,0,1-0.45,1-1S14.05,13.25,13.5,13.25z M6.95,5.75L8,4.7L5.65,2.35L4.6,3.4L6.95,5.75z M15.4,3.4l-1.05-1.05L12,4.7l1.05,1.05 L15.4,3.4z M10.75,4.7h-1.5V1h1.5V4.7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_library\": {\n    \"name\": \"local_library\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"local_parking\": {\n    \"name\": \"local_parking\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"factory\": {\n    \"name\": \"factory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,10v12H2V10l7-3v2l5-2l0,0l0,3H22z M17.2,8.5L18,2h3l0.8,6.5H17.2z M11,18h2v-4h-2V18z M7,18h2v-4H7V18z M17,14h-2v4h2 V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.85,7.5L17,2h-2l-0.85,5.5L17.85,7.5z M11.5,8.5V6l-4,1.75V6L2,8.5V18h16V8.5H11.5z M7.5,15H6v-3.5h1.5V15z M10.75,15 h-1.5v-3.5h1.5V15z M14,15h-1.5v-3.5H14V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_pin_circle\": {\n    \"name\": \"person_pin_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 2c1.1 0 2 .9 2 2 0 1.11-.9 2-2 2s-2-.89-2-2c0-1.1.9-2 2-2zm0 10c-1.67 0-3.14-.85-4-2.15.02-1.32 2.67-2.05 4-2.05s3.98.73 4 2.05c-.86 1.3-2.33 2.15-4 2.15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"volunteer_activism\": {\n    \"name\": \"volunteer_activism\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"11\\\"></rect><path d=\\\"M16,3.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3c0,2.27-2.91,4.9-6,7.7c-3.09-2.81-6-5.44-6-7.7 C10,3.45,11.45,2,13.3,2C14.34,2,15.35,2.49,16,3.25z\\\"></path><path d=\\\"M20,17h-7l-2.09-0.73l0.33-0.94L13,16h2.82c0.65,0,1.18-0.53,1.18-1.18v0c0-0.49-0.31-0.93-0.77-1.11L8.97,11H7v9.02 L14,22l8.01-3v0C22,17.9,21.11,17,20,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"2\\\" y=\\\"9\\\"></rect><path d=\\\"M13,10.33c2.06-1.87,4-3.62,4-5.14C17,3.97,16.03,3,14.8,3c-0.7,0-1.36,0.32-1.8,0.84C12.56,3.32,11.9,3,11.2,3 C9.97,3,9,3.97,9,5.2C9,6.71,10.94,8.46,13,10.33z\\\"></path><path d=\\\"M15,13h-4l-2.08-0.8l0.36-0.93L11.18,12h1.22c0.33,0,0.59-0.26,0.59-0.59c0-0.25-0.15-0.47-0.38-0.55L7.69,9H6v6.58 L11.28,17L17,15C17,13.9,16.1,13,15,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bakery_dining\": {\n    \"name\": \"bakery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.28,16.34C18.07,15.45,17.46,15,17.46,15s0.32-0.59,0.96-1.78 c0.38-0.59,1.22-0.59,1.6,0l0.81,1.26c0.19,0.3,0.21,0.68,0.06,1l-0.22,0.47C20.42,16.49,19.76,16.67,19.28,16.34z M4.72,16.34 c-0.48,0.33-1.13,0.15-1.39-0.38L3.1,15.49c-0.15-0.32-0.13-0.7,0.06-1l0.81-1.26c0.38-0.59,1.22-0.59,1.6,0 C6.22,14.41,6.54,15,6.54,15S5.93,15.45,4.72,16.34z M15.36,9.37c0.09-0.68,0.73-1.06,1.27-0.75l1.59,0.9 c0.46,0.26,0.63,0.91,0.36,1.41L16.5,15h-1.8L15.36,9.37z M8.63,9.37L9.3,15H7.5l-2.09-4.08c-0.27-0.5-0.1-1.15,0.36-1.41l1.59-0.9 C7.89,8.31,8.54,8.69,8.63,9.37z M13.8,15h-3.6L9.46,8.12C9.39,7.53,9.81,7,10.34,7h3.3c0.53,0,0.94,0.53,0.88,1.12L13.8,15z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.22,12.34l0.36,0.72c0.14,0.28,0.51,0.37,0.76,0.17L5.9,12l-0.9-1.57c-0.19-0.33-0.66-0.34-0.86-0.02l-0.91,1.44 C3.15,12,3.14,12.18,3.22,12.34z\\\"></path><path d=\\\"M4.85,8.75L6.64,12h1.37L7.42,7.51C7.38,7.16,6.99,6.97,6.68,7.14L5.04,8.07C4.8,8.2,4.71,8.51,4.85,8.75z\\\"></path><path d=\\\"M16.78,12.34l-0.36,0.72c-0.14,0.28-0.51,0.37-0.76,0.17L14.1,12l0.9-1.57c0.19-0.33,0.66-0.34,0.86-0.02l0.91,1.44 C16.85,12,16.86,12.18,16.78,12.34z\\\"></path><path d=\\\"M15.15,8.75L13.36,12h-1.37l0.58-4.49c0.05-0.35,0.43-0.55,0.74-0.37l1.64,0.93C15.2,8.2,15.29,8.51,15.15,8.75z\\\"></path><path d=\\\"M8.07,6.56L8.69,12h2.62l0.62-5.44c0.03-0.3-0.2-0.56-0.5-0.56H8.57C8.27,6,8.04,6.26,8.07,6.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_road\": {\n    \"name\": \"add_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\\\"></polygon><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"7\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"14\\\"></rect><polygon points=\\\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\\\"></polygon><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"electric_scooter\": {\n    \"name\": \"electric_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z\\\"></path><path d=\\\"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,13,15,13z\\\"></path><path d=\\\"M12,11.99C12,10.34,13.34,9,14.99,9l0.24,0l-1.2-5.22C13.93,3.32,13.52,3,13.05,3H10v1h3.05l0.95,4.14 c-1.57,0.4-2.75,1.72-2.96,3.36H6.93c-0.26-1.01-1.29-1.72-2.44-1.44c-0.71,0.18-1.29,0.78-1.44,1.5C2.77,12.86,3.75,14,5,14 c0.93,0,1.71-0.64,1.93-1.5H12V11.99z M5,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,13,5,13z\\\"></path><polygon points=\\\"9.5,15 7,15 10.5,17 10.5,16 13,16 9.5,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"u_turn_right\": {\n    \"name\": \"u_turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,9v12h2V9c0-2.21,1.79-4,4-4s4,1.79,4,4v4.17l-1.59-1.59L13,13l4,4l4-4l-1.41-1.41L18,13.17V9c0-3.31-2.69-6-6-6 S6,5.69,6,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.5,7.5C14.5,5.01,12.49,3,10,3S5.5,5.01,5.5,7.5V16H7l0-8.5c0-1.66,1.34-3,3-3s3,1.34,3,3l0,2.63l-1.19-1.19L10.75,10 l3,3l3-3l-1.06-1.06l-1.19,1.19L14.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"beenhere\": {\n    \"name\": \"beenhere\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-9 15l-5-5 1.41-1.41L10 13.17l7.59-7.59L19 7l-9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"forest\": {\n    \"name\": \"forest\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16,12 9,2 2,12 3.86,12 0,18 7,18 7,22 11,22 11,18 18,18 14.14,12\\\"></polygon><polygon points=\\\"20.14,12 22,12 15,2 12.61,5.41 17.92,13 16,13 15.97,13 19.19,18 24,18\\\"></polygon><rect height=\\\"3\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,10 8,2 3,10 4.18,10 1,15 6.5,15 6.5,18 9.5,18 9.5,15 15,15 11.82,10\\\"></polygon><polygon points=\\\"15.82,10 17,10 12,2 10.59,4.26 14.8,11 13.64,11 16.19,15 19,15\\\"></polygon><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"10.5\\\" y=\\\"16\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"directions_railway_filled\": {\n    \"name\": \"directions_railway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5 V6C20,2.5,16.42,2,12,2z M12,16c-0.83,0-1.5-0.67-1.5-1.5S11.17,13,12,13s1.5,0.67,1.5,1.5S12.83,16,12,16z M18,10H6V7h12V10z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"icecream\": {\n    \"name\": \"icecream\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8.79,12.4l3.26,6.22l3.17-6.21c-0.11-0.08-0.21-0.16-0.3-0.25 C14.08,12.69,13.07,13,12,13s-2.08-0.31-2.92-0.84C8.99,12.25,8.89,12.33,8.79,12.4z M6.83,12.99C5.25,12.9,4,11.6,4,10 c0-1.49,1.09-2.73,2.52-2.96C6.75,4.22,9.12,2,12,2s5.25,2.22,5.48,5.04C18.91,7.27,20,8.51,20,10c0,1.59-1.24,2.9-2.81,2.99 L12.07,23L6.83,12.99z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.97,6.73C13.83,4.65,12.12,3,10,3S6.17,4.65,6.03,6.73c-0.8,0.34-1.36,1.13-1.36,2.05c0,1.23,0.99,2.22,2.22,2.22 c0.04,0,0.07-0.01,0.11-0.01L10,17l3-6.01c0.04,0,0.07,0.01,0.11,0.01c1.23,0,2.22-0.99,2.22-2.22 C15.33,7.86,14.77,7.07,13.97,6.73z M10,14.76l-2.03-4.06c0.08-0.05,0.16-0.09,0.24-0.15C8.75,10.83,9.35,11,10,11 s1.25-0.17,1.79-0.44c0.07,0.06,0.15,0.1,0.24,0.15L10,14.76z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_airport\": {\n    \"name\": \"local_airport\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tram\": {\n    \"name\": \"tram\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 16.94V8.5c0-2.79-2.61-3.4-6.01-3.49l.76-1.51H17V2H7v1.5h4.75l-.76 1.52C7.86 5.11 5 5.73 5 8.5v8.44c0 1.45 1.19 2.66 2.59 2.97L6 21.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 20h-.08c1.69 0 2.58-1.37 2.58-3.06zm-7 1.56c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z\\\"></path>\"\n      }\n    }\n  },\n  \"stadium\": {\n    \"name\": \"stadium\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,5L3,7V3L7,5z M18,3v4l4-2L18,3z M11,2v4l4-2L11,2z M5,10.04C6.38,10.53,8.77,11,12,11s5.62-0.47,7-0.96 C19,9.86,16.22,9,12,9S5,9.86,5,10.04z M15,17H9l0,4.88C4.94,21.49,2,20.34,2,19v-9c0-1.66,4.48-3,10-3s10,1.34,10,3v9 c0,1.34-2.94,2.48-7,2.87L15,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,4.5L3,6V3L6,4.5z M15,3v3l3-1.5L15,3z M9,2v3l3-1.5L9,2z M18,8.25c0,0,0,5.87,0,7.25c0,1.11-2.31,2.06-5.5,2.39l0-3.89 h-5l0,3.89C4.31,17.56,2,16.61,2,15.5c0-0.99,0-7.25,0-7.25C2,7.01,5.58,6,10,6S18,7.01,18,8.25z M4.4,8.3C5.51,8.65,7.42,9,10,9 s4.49-0.35,5.6-0.7c0-0.21-2.38-0.8-5.6-0.8S4.4,8.09,4.4,8.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"breakfast_dining\": {\n    \"name\": \"breakfast_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45C22,4.79,20.21,3,18,3z M14,15h-4v-4h4V15z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.4,4H5.6C4.37,4,3.25,4.84,3.04,6.06C2.8,7.46,3.72,8.69,5,8.95V15 c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8.95c1.28-0.26,2.2-1.49,1.96-2.89C16.75,4.84,15.63,4,14.4,4z M11.5,12h-3V9h3V12z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      }\n    }\n  },\n  \"takeout_dining\": {\n    \"name\": \"takeout_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5.26,11h13.48l-0.67,9H5.93L5.26,11z M9.02,4h5.95L19,7.38l1.59-1.59L22,7.21 L19.21,10H4.79L2,7.21l1.41-1.41L5,7.38L9.02,4z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon fill-rule=\\\"evenodd\\\" points=\\\"5.22,9 6,16 14,16 14.78,9\\\"></polygon></g><g><polygon fill-rule=\\\"evenodd\\\" points=\\\"16.3,6 15.14,7.14 12,4 8,4 4.86,7.14 3.7,6 3,6.71 4.31,8 15.69,8 17,6.71\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"edit_location\": {\n    \"name\": \"edit_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.56 10H9v-1.44l3.35-3.34 1.43 1.43L10.44 12zm4.45-4.45l-.7.7-1.44-1.44.7-.7c.15-.15.39-.15.54 0l.9.9c.15.15.15.39 0 .54z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_subway_filled\": {\n    \"name\": \"directions_subway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M8.5,16C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M11,10H6V7h5V10z M15.5,16 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10h-5V7h5V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_activity\": {\n    \"name\": \"local_activity\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z\\\"></path>\"\n      }\n    }\n  },\n  \"layers\": {\n    \"name\": \"layers\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z\\\"></path>\"\n      }\n    }\n  },\n  \"directions\": {\n    \"name\": \"directions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"m21.41 10.59-7.99-8c-.78-.78-2.05-.78-2.83 0l-8.01 8c-.78.78-.78 2.05 0 2.83l8.01 8c.78.78 2.05.78 2.83 0l7.99-8c.79-.79.79-2.05 0-2.83zM13.5 14.5V12H10v3H8v-4c0-.55.45-1 1-1h4.5V7.5L17 11l-3.5 3.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_location_alt\": {\n    \"name\": \"add_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z\\\"></path>\"\n      }\n    }\n  },\n  \"handyman\": {\n    \"name\": \"handyman\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z\\\"></path></g><g><path d=\\\"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.71,14.59l-3.54-3.54h-1.41l-0.34-0.34l-0.71,0.71l0.34,0.34v1.41l3.54,3.54c0.39,0.39,1.02,0.39,1.41,0L16.71,16 C17.1,15.61,17.1,14.98,16.71,14.59z\\\"></path><path d=\\\"M12.57,8.14L12.57,8.14l0.88,0.88l1.06-1.06l1.41,1.41c0.78-0.78,0.78-2.05,0-2.83l-2.47-2.47l-0.74,0.74l0-1.49 l-0.49-0.49L9.74,5.31l0.49,0.49l1.49,0l-0.74,0.74l0.88,0.88L10,9.29L7.51,6.81l0.15-1.26L5.36,3.23L3.23,5.36l2.31,2.31 l1.26-0.15L9.29,10l-1.05,1.05H6.83l-3.54,3.54c-0.39,0.39-0.39,1.02,0,1.41L4,16.71c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54v-1.41 L12.57,8.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"attractions\": {\n    \"name\": \"attractions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.43,18.75C10.8,18.29,11.37,18,12,18c0.63,0,1.19,0.29,1.56,0.75c0.39-0.09,0.76-0.21,1.12-0.36l-1.42-3.18 c-0.39,0.15-0.82,0.23-1.26,0.23c-0.46,0-0.9-0.09-1.3-0.25l-1.43,3.19C9.65,18.54,10.03,18.67,10.43,18.75z M5.15,10 c-0.16,0.59-0.25,1.21-0.25,1.85c0,0.75,0.12,1.47,0.33,2.15c0.63,0.05,1.22,0.4,1.56,0.99c0.33,0.57,0.35,1.23,0.11,1.79 c0.27,0.27,0.56,0.53,0.87,0.76l1.52-3.39v0c-0.47-0.58-0.75-1.32-0.75-2.13c0-1.89,1.55-3.41,3.46-3.41 c1.91,0,3.46,1.53,3.46,3.41c0,0.82-0.29,1.57-0.78,2.16l1.5,3.35c0.32-0.24,0.62-0.5,0.9-0.79c-0.22-0.55-0.2-1.2,0.12-1.75 c0.33-0.57,0.9-0.92,1.52-0.99c0.22-0.68,0.34-1.41,0.34-2.16c0-0.64-0.09-1.27-0.25-1.86c-0.64-0.04-1.26-0.39-1.6-1 c-0.36-0.62-0.35-1.36-0.03-1.95c-0.91-0.98-2.1-1.71-3.44-2.05C13.39,5.6,12.74,6,12,6c-0.74,0-1.39-0.41-1.74-1.01 C8.92,5.33,7.73,6.04,6.82,7.02C7.15,7.62,7.17,8.37,6.8,9C6.45,9.62,5.81,9.97,5.15,10z M3.85,9.58C3.07,8.98,2.83,7.88,3.34,7 c0.51-0.88,1.58-1.23,2.49-0.85c1.11-1.17,2.56-2.03,4.18-2.42C10.15,2.75,10.99,2,12,2c1.01,0,1.85,0.75,1.98,1.73 c1.63,0.39,3.07,1.24,4.18,2.42c0.91-0.38,1.99-0.03,2.49,0.85c0.51,0.88,0.27,1.98-0.51,2.58c0.23,0.77,0.35,1.58,0.35,2.42 s-0.12,1.65-0.35,2.42c0.78,0.6,1.02,1.7,0.51,2.58c-0.51,0.88-1.58,1.23-2.49,0.85c-0.4,0.43-0.85,0.81-1.34,1.15l1.34,3H16.3 l-0.97-2.17c-0.43,0.18-0.88,0.33-1.34,0.44C13.85,21.25,13.01,22,12,22c-1.01,0-1.85-0.75-1.98-1.73 C9.54,20.15,9.08,20,8.64,19.81L7.66,22H5.78l1.36-3.03c-0.47-0.33-0.91-0.71-1.3-1.12C4.92,18.23,3.85,17.88,3.34,17 c-0.51-0.88-0.27-1.98,0.51-2.58C3.62,13.65,3.5,12.84,3.5,12S3.62,10.35,3.85,9.58z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,10c0-0.57-0.08-1.12-0.23-1.64c0.51-0.46,0.65-1.24,0.29-1.86c-0.36-0.62-1.1-0.89-1.76-0.68 c-0.76-0.79-1.74-1.36-2.84-1.64C11.32,3.51,10.72,3,10,3S8.68,3.51,8.53,4.19C7.44,4.46,6.46,5.04,5.7,5.82 C5.04,5.61,4.3,5.88,3.94,6.5C3.58,7.12,3.72,7.9,4.23,8.36C4.08,8.88,4,9.43,4,10c0,0.57,0.08,1.12,0.23,1.64 c-0.51,0.46-0.65,1.24-0.29,1.86c0.36,0.62,1.1,0.89,1.76,0.68C6,14.49,6.33,14.76,6.69,15l-0.87,2h1.09l0.66-1.52 c0.31,0.14,0.63,0.24,0.96,0.33C8.68,16.49,9.28,17,10,17s1.32-0.51,1.47-1.19c0.33-0.08,0.65-0.19,0.96-0.33L13.09,17h1.09 l-0.87-2c0.36-0.24,0.69-0.52,0.99-0.83c0.66,0.21,1.4-0.05,1.76-0.68c0.36-0.62,0.22-1.4-0.29-1.86C15.92,11.12,16,10.57,16,10z M11.32,14.8C11.07,14.33,10.57,14,10,14s-1.07,0.33-1.32,0.8c-0.24-0.07-0.48-0.14-0.71-0.24l1.2-2.75C9.42,11.93,9.7,12,10,12 s0.58-0.07,0.83-0.18l1.2,2.75C11.8,14.66,11.56,14.73,11.32,14.8z M11.63,11.15C11.86,10.83,12,10.43,12,10c0-1.1-0.9-2-2-2 s-2,0.9-2,2c0,0.43,0.14,0.83,0.37,1.15L7.1,14.06c-0.21-0.15-0.42-0.32-0.61-0.5C6.79,13.1,6.83,12.5,6.54,12 c-0.29-0.5-0.82-0.76-1.36-0.74C5.07,10.85,5,10.44,5,10s0.07-0.85,0.18-1.26C5.72,8.76,6.25,8.5,6.54,8 c0.29-0.5,0.25-1.1-0.04-1.56c0.6-0.59,1.35-1.01,2.19-1.24C8.93,5.67,9.43,6,10,6s1.07-0.33,1.32-0.8 c0.83,0.23,1.59,0.65,2.19,1.24C13.21,6.9,13.17,7.5,13.46,8c0.29,0.5,0.82,0.76,1.36,0.74C14.93,9.15,15,9.56,15,10 s-0.07,0.85-0.18,1.26c-0.54-0.02-1.07,0.24-1.36,0.74c-0.29,0.5-0.25,1.1,0.04,1.56c-0.19,0.18-0.39,0.35-0.61,0.5L11.63,11.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"egg_alt\": {\n    \"name\": \"egg_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,9C17,7,15.99,2,9.97,2C4.95,2,1.94,6,2,11.52C2.06,17.04,6.96,19,9.97,19c2.01,0,2.01,3,6.02,3C19,22,22,19,22,15.02 C22,12,21.01,11,19,9z M12,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.93,15.5,12,15.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.6,7.6C14,6,13.19,2,8.38,2C4.36,2,1.95,5.2,2,9.62S5.97,16,8.38,16c1.61,0,1.61,2,4.82,2C15.6,18,18,15.6,18,12.42 C18,10,17.21,9.2,15.6,7.6z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"map\": {\n    \"name\": \"map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM15 19l-6-2.11V5l6 2.11V19z\\\"></path>\"\n      }\n    }\n  },\n  \"local_phone\": {\n    \"name\": \"local_phone\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z\\\"></path>\"\n      }\n    }\n  },\n  \"snowmobile\": {\n    \"name\": \"snowmobile\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,17c0,0.55-0.45,1-1,1h-0.17l-2.2-2.2C20.58,15.37,22,14.4,22,13c0-1-8-8-8-8h-3v2h2.25l1.45,1.3L11,11l-9.5-1L0,13 l4.54,1.36l-3.49,1.88C-0.77,17.22-0.07,20,2,20h6c2.21,0,4-1.79,4-4h4l2,2h-3v2h6c1.66,0,3-1.34,3-3H22z M8,18H2l5.25-2.83L10,16 C10,17.1,9.11,18,8,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18.5,14.5c0,0.55-0.45,1-1,1l-2.22-2.19C16.87,12.96,18,12.17,18,11c0-0.5-6.5-6.5-6.5-6.5H9V6h1.91l1.22,1.14L9.1,9 L1.25,8.5L0,11l4.32,1.27l-3.53,1.91C-0.58,14.92-0.06,17,1.5,17h5c1.93,0,3.5-1.57,3.5-3.5h3.33l2.05,2H12.5V17h5 c1.38,0,2.5-1.12,2.5-2.5H18.5z M6.5,15.5h-5l4.87-2.63L8.5,13.5C8.5,14.6,7.6,15.5,6.5,15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"subway\": {\n    \"name\": \"subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0v24h24V0H0zm22 22H2V8.86C2 6.05 3.53 3.84 6.2 2.8 8 2.09 10.14 2 12 2c1.86 0 4 .09 5.8.8C20.47 3.84 22 6.05 22 8.86V22z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2c-1.86 0-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 13.08c0 1.45-1.18 2.62-2.63 2.62l1.13 1.12V20H15l-1.5-1.5h-2.83L9.17 20H7.5v-.38l1.12-1.12C7.18 18.5 6 17.32 6 15.88V9c0-2.63 3-3 6-3 3.32 0 6 .38 6 3v6.88z\\\"></path>\"\n      }\n    }\n  },\n  \"local_car_wash\": {\n    \"name\": \"local_car_wash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5z\\\"></path>\"\n      }\n    }\n  },\n  \"local_cafe\": {\n    \"name\": \"local_cafe\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"two_wheeler\": {\n    \"name\": \"two_wheeler\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M20,11c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 C24,12.79,22.21,11,20,11z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C6,16.1,5.1,17,4,17z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C22,16.1,21.1,17,20,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M14.5,9c-0.16,0-0.31,0.02-0.45,0.05L13,8h1.5V6.5l-2,1L11,6H9.01v1h1.58l1,1H9.5L7,9L6,8H3v1h2.5C4.12,9,3,10.12,3,11.5 C3,12.88,4.12,14,5.5,14c1.23,0,2.24-0.88,2.45-2.05L9,13h1.5l2.03-4.06l0.52,0.52C12.42,9.92,12,10.66,12,11.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,10.12,15.88,9,14.5,9z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10 S7,10.67,7,11.5S6.33,13,5.5,13z M14.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.33,13,14.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"straight\": {\n    \"name\": \"straight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"11,6.83 9.41,8.41 8,7 12,3 16,7 14.59,8.41 13,6.83 13,21 11,21\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"9.25,17 10.75,17 10.75,5.87 11.94,7.06 13,6 10,3 7,6 8.06,7.06 9.25,5.87\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"directions_subway\": {\n    \"name\": \"directions_subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_bus_filled\": {\n    \"name\": \"directions_bus_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1 v-1h8v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V6C20,2.5,16.42,2,12,2z M8.5,16 C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M15.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10H6V7h12V10z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"route\": {\n    \"name\": \"route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,15.18V7c0-2.21-1.79-4-4-4s-4,1.79-4,4v10c0,1.1-0.9,2-2,2s-2-0.9-2-2V8.82C8.16,8.4,9,7.3,9,6c0-1.66-1.34-3-3-3 S3,4.34,3,6c0,1.3,0.84,2.4,2,2.82V17c0,2.21,1.79,4,4,4s4-1.79,4-4V7c0-1.1,0.9-2,2-2s2,0.9,2,2v8.18c-1.16,0.41-2,1.51-2,2.82 c0,1.66,1.34,3,3,3s3-1.34,3-3C21,16.7,20.16,15.6,19,15.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.25,12.13V6c0-1.65-1.35-3-3-3s-3,1.35-3,3v8c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5V7.87C7.26,7.55,8,6.62,8,5.5 C8,4.12,6.88,3,5.5,3S3,4.12,3,5.5c0,1.12,0.74,2.05,1.75,2.37V14c0,1.65,1.35,3,3,3s3-1.35,3-3V6c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5v6.13C12.74,12.45,12,13.38,12,14.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,13.38,16.26,12.45,15.25,12.13 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation_alt\": {\n    \"name\": \"screen_rotation_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7.59l5-5c0.78-0.78,2.05-0.78,2.83,0L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59z M20,19h2v-6h-6v2h2.59l-4.99,5 l-7.01-7H3.76l8.41,8.41c0.78,0.78,2.05,0.78,2.83,0l5-5V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.56,7.5H6.5V9H2V4.5h1.5v1.94l4-4C7.79,2.15,8.18,2,8.56,2c0.38,0,0.77,0.15,1.06,0.44l5.01,5.01L16.18,9h-2.12 l-1.43-1.43L8.56,3.5c0,0,0,0,0,0L4.56,7.5z M11.44,16.5C11.44,16.5,11.44,16.5,11.44,16.5l-4.08-4.07L5.94,11H3.82l1.55,1.55 l5.01,5.01c0.29,0.29,0.68,0.44,1.06,0.44c0.38,0,0.77-0.15,1.06-0.44l4-4v1.94H18V11h-4.5v1.5h1.94L11.44,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"zoom_in_map\": {\n    \"name\": \"zoom_in_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,9l0-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9z M21,9V7l-2.59,0l3.09-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9z M3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0-6L3,15z M15,15l0,6h2v-2.59l3.09,3.09l1.41-1.41L18.41,17H21v-2L15,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.44,6.5L3,4.06L4.06,3L6.5,5.44V4H8v4H4V6.5H5.44z M16,8V6.5h-1.44L17,4.06L15.94,3L13.5,5.44V4H12v4H16z M4.06,17 l2.44-2.44V16H8v-4H4v1.5h1.44L3,15.94L4.06,17z M13.5,14.56L15.94,17L17,15.94l-2.44-2.44H16V12h-4v4h1.5V14.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"safety_check\": {\n    \"name\": \"safety_check\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M12,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 s5,2.24,5,5S14.76,17,12,17z M13.65,14.35l-2.15-2.15V9h1v2.79l1.85,1.85L13.65,14.35z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M10,14c-2.21,0-4-1.79-4-4 c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z M11.15,11.85L9.5,10.21V8h1v1.79l1.35,1.35L11.15,11.85z\\\"></path></g>\"\n      }\n    }\n  },\n  \"departure_board\": {\n    \"name\": \"departure_board\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1c-2.4 0-4.52 1.21-5.78 3.05.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant\": {\n    \"name\": \"restaurant\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel\": {\n    \"name\": \"hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"dry_cleaning\": {\n    \"name\": \"dry_cleaning\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1l0,0c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M18.58,14H17v-1H7v1 H5.42C5.19,14,5,13.81,5,13.57c0-0.17,0.1-0.32,0.25-0.38l6.75-3l6.75,3C18.9,13.26,19,13.41,19,13.58C19,13.81,18.81,14,18.58,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.98,9.49L10.5,7.25V6.44C10.5,6.2,10.3,6,10.06,6h0C9.61,6,9.18,5.74,9.05,5.32C8.84,4.63,9.35,4,10,4 c0.55,0,1,0.45,1,1h1c0-1.26-1.17-2.25-2.48-1.94C8.8,3.22,8.22,3.81,8.05,4.53C7.79,5.66,8.5,6.67,9.5,6.93v0.32L5.02,9.49 C4.4,9.8,4,10.44,4,11.14v0.01C4,12.17,4.83,13,5.85,13H6v4h8v-4h0.15c1.02,0,1.85-0.83,1.85-1.85v-0.01 C16,10.44,15.6,9.8,14.98,9.49z M14.15,12H14v-1H6v1H5.85C5.38,12,5,11.62,5,11.14c0-0.32,0.18-0.62,0.47-0.76L10,8.12l4.53,2.27 c0.29,0.14,0.47,0.44,0.47,0.77C15,11.62,14.62,12,14.15,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_pin\": {\n    \"name\": \"location_pin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2L12,2C8.13,2,5,5.13,5,9c0,1.74,0.5,3.37,1.41,4.84c0.95,1.54,2.2,2.86,3.16,4.4c0.47,0.75,0.81,1.45,1.17,2.26 C11,21.05,11.21,22,12,22h0c0.79,0,1-0.95,1.25-1.5c0.37-0.81,0.7-1.51,1.17-2.26c0.96-1.53,2.21-2.85,3.16-4.4 C18.5,12.37,19,10.74,19,9C19,5.13,15.87,2,12,2z M12,11.75c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 S13.38,11.75,12,11.75z\\\"></path>\"\n      }\n    }\n  },\n  \"fork_left\": {\n    \"name\": \"fork_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.41,15.59L8,17l-4-4l4-4l1.41,1.41L7.83,12c1.51-0.33,3.73,0.08,5.17,1.36l0-6.53l-1.59,1.59L10,7l4-4l4,4l-1.41,1.41 L15,6.83V21l-2,0v-4c-0.73-2.58-3.07-3.47-5.17-3L9.41,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,11.36c-1.2-1.05-2.74-1.4-4.13-1.11l1.19-1.19L7,8l-3,3l3,3l1.06-1.06l-1.19-1.19C8.74,11.32,10.44,12.28,11,14v3h1.5 l0-11.13l1.19,1.19L14.75,6l-3-3l-3,3l1.06,1.06L11,5.87L11,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turn_right\": {\n    \"name\": \"turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.17,11l-1.59,1.59L17,14l4-4l-4-4l-1.41,1.41L17.17,9L9,9c-1.1,0-2,0.9-2,2v9h2v-9L17.17,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8,16H6.5l0-7c0-0.83,0.67-1.5,1.5-1.5l6.13,0l-1.19-1.19L14,5.25l3,3l-3,3l-1.06-1.06L14.13,9L8,9V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bike_scooter\": {\n    \"name\": \"bike_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z\\\"></path><path d=\\\"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z\\\"></path><path d=\\\"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,13c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,13,9,13z M9,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,16,9,16z\\\"></path><path d=\\\"M9.24,12L7.82,5.78C7.72,5.32,7.31,5,6.84,5H4.01v1h2.84l1.17,5.14c-1.57,0.4-2.75,1.72-2.96,3.36H1v1h5.01v-0.51 C6.01,13.34,7.35,12,9,12L9.24,12z\\\"></path><path d=\\\"M15.5,8h-0.68l-1.58-4.34C13.1,3.26,12.72,3,12.3,3H10v1h2.3l1.46,4h-4.4l0.23,1h3.45c-0.53,0.52-0.88,1.22-0.98,2h-2.01 l0.23,1h1.79c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,9.75,17.59,8,15.5,8z M15.5,14 c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,9.02,15.4,9,15.5,9c1.4,0,2.5,1.1,2.5,2.5 S16.9,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"theater_comedy\": {\n    \"name\": \"theater_comedy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,16.5C2,19.54,4.46,22,7.5,22s5.5-2.46,5.5-5.5V10H2V16.5z M7.5,18.5C6.12,18.5,5,17.83,5,17h5 C10,17.83,8.88,18.5,7.5,18.5z M10,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C9,13.45,9.45,13,10,13z M5,13 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C4,13.45,4.45,13,5,13z\\\"></path><path d=\\\"M11,3v6h3v2.5c0-0.83,1.12-1.5,2.5-1.5c1.38,0,2.5,0.67,2.5,1.5h-5V14v0.39c0.75,0.38,1.6,0.61,2.5,0.61 c3.04,0,5.5-2.46,5.5-5.5V3H11z M14,8.08c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,7.64,14.55,8.08,14,8.08z M19,8.08 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,7.64,19.55,8.08,19,8.08z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4v4h1h1v1v0.57C12.27,9.23,12.84,9,13.5,9c0.92,0,1.67,0.45,1.67,1H12v1.65 c0.46,0.22,0.96,0.35,1.5,0.35c1.93,0,3.5-1.57,3.5-3.5V4H10z M12,7.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 S12.75,6.59,12.75,7C12.75,7.41,12.41,7.75,12,7.75z M15,7.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 S15.75,6.59,15.75,7C15.75,7.41,15.41,7.75,15,7.75z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M4,13.5C4,15.43,5.57,17,7.5,17s3.5-1.57,3.5-3.5V9H4V13.5z M7.5,15 c-0.92,0-1.67-0.45-1.67-1h3.33C9.17,14.55,8.42,15,7.5,15z M9,11.25c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S8.25,12.41,8.25,12C8.25,11.59,8.59,11.25,9,11.25z M6,11.25c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S5.25,12.41,5.25,12C5.25,11.59,5.59,11.25,6,11.25z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_dining\": {\n    \"name\": \"local_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"medical_information\": {\n    \"name\": \"medical_information\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M11,4h2v5h-2V4z M11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16z M13,14.5V13h6v1.5H13z M13,17.5V16h4v1.5H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,6h-4.25V3.5c0-0.83-0.67-1.5-1.5-1.5h-1.5c-0.83,0-1.5,0.67-1.5,1.5V6H3.5C2.67,6,2,6.67,2,7.5v9 C2,17.33,2.67,18,3.5,18h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,6.67,17.33,6,16.5,6z M9.25,13.25H7.5V15H6v-1.75H4.25v-1.5H6V10h1.5 v1.75h1.75V13.25z M9.25,3.5h1.5v4h-1.5V3.5z M14,14.5h-3.25v-1H14V14.5z M15.75,12h-5v-1h5V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_bus\": {\n    \"name\": \"directions_bus\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z\\\"></path>\"\n      }\n    }\n  },\n  \"layers_clear\": {\n    \"name\": \"layers_clear\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.81 14.99l1.19-.92-1.43-1.43-1.19.92 1.43 1.43zm-.45-4.72L21 9l-9-7-2.91 2.27 7.87 7.88 2.4-1.88zM3.27 1L2 2.27l4.22 4.22L3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73 3.27 1z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_left\": {\n    \"name\": \"ramp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,21h-2V6.83L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83V9c0,4.27,4.03,7.13,6,8.27l-1.46,1.46 c-1.91-1.16-3.44-2.53-4.54-4.02L13,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,5.87l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19l0,11.13h1.5l0-4.99l0-0.01c1.02,1.39,2.35,2.43,3.39,3.09 L15.23,14c-1.6-0.96-4.48-3.18-4.48-6.3L10.75,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"electric_rickshaw\": {\n    \"name\": \"electric_rickshaw\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M18.4,9H16V6.12L18.4,9z M3,5h4v4H3V5z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M9,13v-2h3V9H9V5h5v8H9z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z\\\"></path><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"7,16 9.5,16 9.5,15 13,17 10.5,17 10.5,18\\\"></polygon><path d=\\\"M17,9.05v-1.7c0-0.23-0.08-0.45-0.22-0.62L13.3,2.38C13.11,2.14,12.82,2,12.52,2H2C1.45,2,1,2.45,1,3v8c0,0.55,0.45,1,1,1 h1.05c0.23,1.14,1.24,2,2.45,2s2.22-0.86,2.45-2h6.1c0.28,1.38,1.69,2.34,3.22,1.89c0.77-0.23,1.39-0.85,1.62-1.62 C19.34,10.74,18.38,9.33,17,9.05z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10S7,10.67,7,11.5S6.33,13,5.5,13z M7,7H2V3h5V7z M12,11H8V8h2V7H8V3h4V11z M13,7V3.6L15.72,7H13z M16.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S17.33,13,16.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_location\": {\n    \"name\": \"add_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm4 8h-3v3h-2v-3H8V8h3V5h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"delivery_dining\": {\n    \"name\": \"delivery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,7.5C15,6.67,14.33,6,13.5,6H12v1h1.5C13.78,7,14,7.22,14,7.5v1.29L10.79,12H9V8H6c-1.66,0-3,1.34-3,3v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V7.5z M7,14c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"car_rental\": {\n    \"name\": \"car_rental\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.39,9H7.61C7.18,9,6.8,9.28,6.66,9.68l-1.66,5v6.81C5,21.78,5.23,22,5.5,22h1C6.78,22,7,21.78,7,21.5V20h10v1.5 c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-6.81l-1.66-5C17.2,9.28,16.82,9,16.39,9z M7.78,18 c-0.68,0-1.22-0.54-1.22-1.22s0.54-1.22,1.22-1.22S9,16.11,9,16.78S8.46,18,7.78,18z M16.22,18C15.55,18,15,17.46,15,16.78 s0.54-1.22,1.22-1.22s1.22,0.54,1.22,1.22S16.9,18,16.22,18z M6.29,14l1.33-4h8.78l1.33,4H6.29z\\\"></path><path d=\\\"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.84,8H7.19C6.78,8,6.4,8.26,6.26,8.65L5,12v4.5C5,16.78,5.22,17,5.5,17H6c0.28,0,0.5-0.22,0.5-0.5v-1h7v1 c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V12l-1.22-3.34C13.64,8.26,13.26,8,12.84,8z M7,14.5 c-0.41,0-0.75-0.34-0.75-0.75C6.25,13.34,6.59,13,7,13s0.75,0.34,0.75,0.75C7.75,14.16,7.41,14.5,7,14.5z M13,14.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.75,14.16,13.41,14.5,13,14.5z M6.07,12l1.12-3 h5.65l1.1,3H6.07z\\\"></path><path d=\\\"M8.93,3.5C8.71,2.64,7.93,2,7,2C5.9,2,5,2.9,5,4c0,1.1,0.9,2,2,2c0.93,0,1.71-0.64,1.93-1.5H13V6h1V4.5h1v-1H8.93z M7,5 C6.45,5,6,4.55,6,4c0-0.55,0.45-1,1-1s1,0.45,1,1C8,4.55,7.55,5,7,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crisis_alert\": {\n    \"name\": \"crisis_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.5,2.5c0,1.5-1.5,6-1.5,6h-2c0,0-1.5-4.5-1.5-6C9.5,1.12,10.62,0,12,0S14.5,1.12,14.5,2.5z M12,10c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M16.08,5.11c0.18-0.75,0.33-1.47,0.39-2.06C19.75,4.69,22,8.08,22,12c0,5.52-4.48,10-10,10 S2,17.52,2,12c0-3.92,2.25-7.31,5.53-8.95C7.6,3.64,7.74,4.37,7.92,5.11C5.58,6.51,4,9.07,4,12c0,4.42,3.58,8,8,8s8-3.58,8-8 C20,9.07,18.42,6.51,16.08,5.11z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6c0-2,0.98-3.77,2.48-4.86c0.23,0.81,0.65,2.07,0.65,2.07 C8.43,9.93,8,10.92,8,12c0,2.21,1.79,4,4,4s4-1.79,4-4c0-1.08-0.43-2.07-1.13-2.79c0,0,0.41-1.22,0.65-2.07C17.02,8.23,18,10,18,12 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2c0,1.2-1.2,5-1.2,5H9.2C9.2,7,8,3.2,8,2c0-1.1,0.9-2,2-2S12,0.9,12,2z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z M13.12,4.3c2.01,1.1,3.38,3.24,3.38,5.7c0,3.59-2.91,6.5-6.5,6.5 S3.5,13.59,3.5,10c0-2.46,1.37-4.6,3.38-5.7C6.75,3.76,6.64,3.23,6.57,2.77C3.87,4.06,2,6.81,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8 c0-3.19-1.87-5.94-4.57-7.23C13.36,3.23,13.25,3.76,13.12,4.3z M13.5,10c0,1.93-1.57,3.5-3.5,3.5S6.5,11.93,6.5,10 c0-1.07,0.48-2.02,1.23-2.67c-0.11-0.35-0.28-0.9-0.46-1.53C5.91,6.7,5,8.24,5,10c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-1.76-0.91-3.3-2.28-4.19c-0.18,0.63-0.35,1.18-0.46,1.53C13.02,7.98,13.5,8.93,13.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"menu_book\": {\n    \"name\": \"menu_book\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z\\\"></path><g><path d=\\\"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z\\\"></path><path d=\\\"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z\\\"></path><path d=\\\"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"fort\": {\n    \"name\": \"fort\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,3v2h-2V3h-2v2h-2V3h-2v4l2,2v1H9V9l2-2V3H9v2H7V3H5v2H3V3H1v4l2,2v6l-2,2v4h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9v-4 l-2-2V9l2-2V3H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.5,3v1.5h-1.75V3h-1.5v1.5H12.5V3H11v3l2,2v1H7V8l2-2V3H7.5v1.5H5.75V3h-1.5v1.5H2.5V3H1v3l2,2v4l-2,2v3h7v-2 c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7v-3l-2-2V8l2-2V3H17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_car\": {\n    \"name\": \"electric_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12 v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.5,12C5.67,12,5,11.33,5,10.5S5.67,9,6.5,9S8,9.67,8,10.5 S7.33,12,6.5,12z M17.5,12c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5S18.33,12,17.5,12z M5,7l1.5-4.5h11L19,7H5z\\\"></path><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.28,3.55C14.11,3.21,13.76,3,13.38,3H6.62C6.24,3,5.89,3.21,5.72,3.55L4,7v5.5C4,12.78,4.22,13,4.5,13h1 C5.78,13,6,12.78,6,12.5V12h8v0.5c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5V7L14.28,3.55z M6.62,4h6.76l1.5,3H5.12 L6.62,4z M6,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C7,9.55,6.55,10,6,10z M14,10c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C15,9.55,14.55,10,14,10z\\\"></path><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"brunch_dining\": {\n    \"name\": \"brunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,8h2V4h-2V8z M15.51,22H2.49C2.22,22,2,21.78,2,21.5V20h14v1.5 C16,21.78,15.78,22,15.51,22z M18,15.89l-0.4-0.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0,1.46-0.54,2.87-1.53,3.94L20,15.97V20h2v2 h-4V15.89z M7,16v-2h4v2h4.5c0.28,0,0.5,0.22,0.5,0.5v1c0,0.28-0.22,0.5-0.5,0.5h-13C2.22,18,2,17.78,2,17.5v-1 C2,16.22,2.22,16,2.5,16H7z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"3\\\" y=\\\"16\\\"></rect><polygon points=\\\"9,13 7,13 7,14 3,14 3,15 13,15 13,14 9,14\\\"></polygon><path d=\\\"M17,9.76V3h-4v6.76c0,1.17,0.57,2.25,1.5,2.93V17H17v-1h-1.5v-3.31C16.43,12.02,17,10.94,17,9.76z M14,7V4h2v3H14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"celebration\": {\n    \"name\": \"celebration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"2,22 16,17 7,8\\\"></polygon><path d=\\\"M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z\\\"></path><path d=\\\"M10.06,6.88L9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59 C10.54,5.6,10.54,6.4,10.06,6.88z\\\"></path><path d=\\\"M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z\\\"></path><path d=\\\"M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon fill-rule=\\\"evenodd\\\" points=\\\"6.88,6.76 3,17 13.25,13.11\\\"></polygon></g><path d=\\\"M9.36,3.56L8.66,4.27l0.35,0.35c0.39,0.39,0.39,1.02,0,1.41L8.3,6.75l0.71,0.71 l0.71-0.71c0.78-0.78,0.78-2.05,0-2.83L9.36,3.56z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M17.85,6.39l0.71-0.71L18.2,5.33c-0.78-0.78-2.05-0.78-2.83,0l-4.24,4.24 l0.71,0.71l4.24-4.24c0.39-0.39,1.02-0.39,1.41,0L17.85,6.39z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M17.5,10.28l-0.71-0.71c-0.78-0.78-2.05-0.78-2.83,0l-1.41,1.41l0.71,0.71 l1.41-1.41c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71L17.5,10.28z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M12.19,2.15l-0.71,0.71l1.06,1.06c0.39,0.39,0.39,1.02,0,1.41L9.72,8.16 l0.71,0.71l2.83-2.83c0.78-0.78,0.78-2.05,0-2.83L12.19,2.15z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_play\": {\n    \"name\": \"local_play\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z\\\"></path>\"\n      }\n    }\n  },\n  \"local_pharmacy\": {\n    \"name\": \"local_pharmacy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"design_services\": {\n    \"name\": \"design_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.24,11.51l1.57-1.57l-3.75-3.75l-1.57,1.57L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l4.13,4.13L3,17.25V21h3.75l4.76-4.76l4.13,4.13c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83L16.24,11.51z M9.18,11.07L5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19 l1.45,1.45L9.18,11.07z M17.06,18.96l-4.13-4.13l1.9-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27L17.06,18.96z\\\"></path><path d=\\\"M20.71,7.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.47-0.47-1.12-0.29-1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z\\\"></path></g><g></rect></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.71,13.21l-3.46-3.46l1.33-1.33l-2-2l-1.33,1.33L6.79,4.29C6.4,3.9,5.76,3.9,5.37,4.29L4.29,5.37 C3.9,5.76,3.9,6.4,4.29,6.79l3.46,3.46L4,14v2h2l3.75-3.75l3.46,3.46c0.39,0.39,1.02,0.39,1.41,0l1.08-1.08 C16.1,14.24,16.1,13.6,15.71,13.21z M8.46,9.54L5,6.08L6.08,5c0,0,0,0,0,0l0.69,0.69L6.23,6.23L6.89,6.9l0.54-0.54l1.06,1.06 L7.95,7.96l0.67,0.67l0.54-0.54l0.38,0.38L8.46,9.54z M13.92,15l-3.46-3.46l1.08-1.08l0.4,0.4L11.4,11.4l0.67,0.67l0.54-0.54 l1.06,1.06l-0.54,0.54l0.67,0.67l0.54-0.54L15,13.92L13.92,15z\\\"></path><path d=\\\"M15.62,6.38c0.2-0.2,0.2-0.51,0-0.71l-1.29-1.29c-0.2-0.2-0.51-0.2-0.71,0l-1.34,1.34l2,2L15.62,6.38z\\\"></path></g><g></rect></g>\"\n      }\n    }\n  },\n  \"local_post_office\": {\n    \"name\": \"local_post_office\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"local_see\": {\n    \"name\": \"local_see\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3.2\\\"></circle><path d=\\\"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"person_pin\": {\n    \"name\": \"person_pin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.97 0-9 4.03-9 9 0 4.17 2.84 7.67 6.69 8.69L12 22l2.31-2.31C18.16 18.67 21 15.17 21 11c0-4.97-4.03-9-9-9zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.3c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z\\\"></path>\"\n      }\n    }\n  },\n  \"electric_moped\": {\n    \"name\": \"electric_moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z\\\"></path></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,5.5C15,4.67,14.33,4,13.5,4H12v1h1.5C13.78,5,14,5.22,14,5.5v1.29L10.79,10H9V6H6C4.34,6,3,7.34,3,9v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,7.21V5.5z M7,12c-0.55,0-1-0.45-1-1h2C8,11.55,7.55,12,7,12z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M15,9c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,9.9,16.1,9,15,9z M15,12c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,11.55,15.55,12,15,12z\\\"></path></g><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"local_convenience_store\": {\n    \"name\": \"local_convenience_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"place\": {\n    \"name\": \"place\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"agriculture\": {\n    \"name\": \"agriculture\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z\\\"></path><path d=\\\"M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z\\\"></path><path d=\\\"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z\\\"></path><path d=\\\"M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,10c0.54,0,1.04,0.13,1.5,0.35V7c0-0.55-0.45-1-1-1h-4.47l-0.8-0.8l1.06-1.06l-0.53-0.53L8.61,6.27L9.14,6.8 l1.06-1.06l0.8,0.8V9c0,0.55-0.45,1-1,1H9.24C9.72,10.72,10,11.57,10,12.5c0,0.17-0.03,0.33-0.05,0.5h2.1 C12.29,11.31,13.74,10,15.5,10z\\\"></path><path d=\\\"M3.5,8H8c0-0.55-0.45-1-1-1H3.5C3.22,7,3,7.22,3,7.5C3,7.78,3.22,8,3.5,8z\\\"></path><path d=\\\"M15.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C18,12.12,16.88,11,15.5,11z M15.5,15 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,15,15.5,15z\\\"></path><path d=\\\"M8.34,11.53L8.2,11.18l0.45-0.19C8.3,10.28,7.72,9.7,7.01,9.35L6.82,9.8L6.47,9.66l0.18-0.44C6.29,9.08,5.91,9,5.5,9 S4.71,9.08,4.34,9.21l0.18,0.44L4.18,9.8L3.99,9.35c-0.72,0.34-1.3,0.92-1.64,1.64l0.45,0.19l-0.14,0.35l-0.44-0.18 C2.08,11.71,2,12.09,2,12.5s0.08,0.79,0.21,1.16l0.44-0.18l0.14,0.35l-0.45,0.19c0.34,0.72,0.92,1.3,1.64,1.64l0.19-0.45 l0.35,0.14l-0.18,0.44C4.71,15.92,5.09,16,5.5,16s0.79-0.08,1.16-0.21l-0.18-0.44l0.35-0.14l0.19,0.45 c0.72-0.34,1.3-0.92,1.64-1.64L8.2,13.82l0.14-0.35l0.44,0.18C8.92,13.29,9,12.91,9,12.5s-0.08-0.79-0.21-1.16L8.34,11.53z M5.5,15C4.12,15,3,13.88,3,12.5C3,11.12,4.12,10,5.5,10S8,11.12,8,12.5C8,13.88,6.88,15,5.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"museum\": {\n    \"name\": \"museum\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M16,18h-2v-4l-2,3l-2-3v4H8v-7h2l2,3l2-3h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.03L3,8h0.02v1H5v7H3.02v1h13.97v-1H15V9h1.98V8H17L10,3.03z M13,15h-1v-3.67L10,14l-2-2.67V15H7V9h1l2,3l2-3h1V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"warehouse\": {\n    \"name\": \"warehouse\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,21V7L12,3L2,7v14h5v-9h10v9H22z M11,19H9v2h2V19z M13,16h-2v2h2V16z M15,19h-2v2h2V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,17h4V6l-8-3L2,6v11h4v-7h8V17z M9.25,17h-1.5v-1.5h1.5V17z M10.75,14.5h-1.5V13h1.5V14.5z M12.25,17h-1.5v-1.5h1.5V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_fire_department\": {\n    \"name\": \"local_fire_department\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,12.9l-2.13,2.09C9.31,15.55,9,16.28,9,17.06C9,18.68,10.35,20,12,20s3-1.32,3-2.94c0-0.78-0.31-1.52-0.87-2.07 L12,12.9z\\\"></path></g><g><path d=\\\"M16,6l-0.44,0.55C14.38,8.02,12,7.19,12,5.3V2c0,0-8,4-8,11c0,2.92,1.56,5.47,3.89,6.86C7.33,19.07,7,18.1,7,17.06 c0-1.32,0.52-2.56,1.47-3.5L12,10.1l3.53,3.47c0.95,0.93,1.47,2.17,1.47,3.5c0,1.02-0.31,1.96-0.85,2.75 c1.89-1.15,3.29-3.06,3.71-5.3C20.52,10.97,18.79,7.62,16,6z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M11.67,12.5L10,10.63L8.33,12.5c-0.37,0.42-0.58,0.95-0.58,1.5c0,1.24,1.01,2.25,2.25,2.25s2.25-1.01,2.25-2.25 C12.25,13.45,12.04,12.92,11.67,12.5L11.67,12.5z\\\"></path></g><g><path d=\\\"M13,5l-0.33,0.41C11.79,6.52,10,5.89,10,4.47V2c0,0-6,3.75-6,9c0,2.2,1.18,4.12,2.95,5.16c-0.44-0.61-0.7-1.36-0.7-2.16 c0-0.92,0.34-1.81,0.96-2.5L10,8.37l2.79,3.12c0.62,0.69,0.96,1.58,0.96,2.5c0,0.79-0.25,1.52-0.67,2.13 c1.43-0.86,2.5-2.3,2.81-3.99C16.39,9.48,15.1,6.21,13,5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"lunch_dining\": {\n    \"name\": \"lunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,10c0.32-3.28-4.28-6-9.99-6C6.3,4,1.7,6.72,2.02,10H22z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M5.35,13.5c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 s1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.64,2.18,0.64 c1.11,0,1.73-0.37,2.18-0.64c0.37-0.23,0.59-0.36,1.15-0.36c0.55,0,0.78,0.14,1.15,0.36c0.45,0.27,1.07,0.63,2.17,0.64v-1.98 c0,0-0.79-0.16-1.16-0.38c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64c-0.37,0.23-0.6,0.36-1.15,0.36 s-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64s-1.73,0.37-2.18,0.64c-0.37,0.23-0.59,0.36-1.15,0.36 c-0.55,0-0.78-0.14-1.15-0.36c-0.45-0.27-1.07-0.64-2.18-0.64c-1.11,0-1.73,0.37-2.18,0.64C2.78,12.37,2.56,12.5,2,12.5v2 c1.11,0,1.73-0.37,2.21-0.64C4.58,13.63,4.8,13.5,5.35,13.5z\\\" fill-rule=\\\"evenodd\\\"></path><path d=\\\"M2,16v2c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-2H2z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.98,9C17.2,6.7,13.99,5,10,5C6.01,5,2.78,6.7,3,9H16.98z\\\"></path><path d=\\\"M3,14c0,0.55,0.45,1,1,1h11.99c0.55,0,1-0.45,1-1v-1H3V14z\\\"></path><path d=\\\"M16.16,10.62C15.84,10.34,15.44,10,14.67,10c-0.77,0-1.17,0.34-1.49,0.62C12.91,10.85,12.74,11,12.34,11 s-0.57-0.15-0.84-0.38C11.18,10.34,10.77,10,10.01,10s-1.17,0.34-1.49,0.62C8.25,10.85,8.07,11,7.67,11 c-0.4,0-0.58-0.15-0.84-0.38C6.51,10.34,6.11,10,5.34,10c-0.77,0-1.17,0.34-1.49,0.62C3.58,10.85,3.4,11,3,11v1 c0.77,0,1.17-0.34,1.49-0.62C4.76,11.15,4.94,11,5.34,11c0.4,0,0.58,0.15,0.84,0.38C6.5,11.66,6.9,12,7.67,12 c0.77,0,1.17-0.34,1.49-0.62C9.43,11.15,9.61,11,10.01,11c0.4,0,0.57,0.15,0.84,0.38c0.32,0.28,0.72,0.62,1.49,0.62 s1.17-0.34,1.49-0.62C14.1,11.15,14.27,11,14.67,11c0.4,0,0.57,0.15,0.84,0.38C15.83,11.66,16.23,12,17,12v-1 C16.6,11,16.43,10.85,16.16,10.62z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wrong_location\": {\n    \"name\": \"wrong_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,10V3.26C13.35,3.09,12.68,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-0.41-0.04-0.81-0.09-1.2H14z M12,13c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,12.1,13.1,13,12,13z\\\"></path><polygon points=\\\"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,8V4.37C11.37,4.13,10.69,4,10,4C7.06,4,4.4,6.25,4.4,9.74c0,2.32,1.87,5.08,5.6,8.26c3.73-3.18,5.6-5.94,5.6-8.26 c0-0.62-0.09-1.2-0.24-1.74H12z M10,11c-0.83,0-1.5-0.67-1.5-1.5S9.17,8,10,8s1.5,0.67,1.5,1.5S10.83,11,10,11z\\\"></path><polygon points=\\\"17.47,3.23 16.77,2.53 15,4.29 13.23,2.53 12.53,3.23 14.29,5 12.53,6.77 13.23,7.47 15,5.71 16.77,7.47 17.47,6.77 15.71,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"bus_alert\": {\n    \"name\": \"bus_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1a7 7 0 0 0-5.78 3.05l.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h8v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08A7 7 0 0 0 16 1zM4.5 19a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm2.5-6a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm-1-9h2v5h-2zm0 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"local_gas_station\": {\n    \"name\": \"local_gas_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_run\": {\n    \"name\": \"directions_run\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"sailing\": {\n    \"name\": \"sailing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,13.5V2L3,13.5H11z M21,13.5C21,6.5,14.5,1,12.5,1c0,0,1,3,1,6.5s-1,6-1,6H21z M22,15H2c0.31,1.53,1.16,2.84,2.33,3.73 C4.98,18.46,5.55,18.01,6,17.5C6.73,18.34,7.8,19,9,19s2.27-0.66,3-1.5c0.73,0.84,1.8,1.5,3,1.5s2.26-0.66,3-1.5 c0.45,0.51,1.02,0.96,1.67,1.23C20.84,17.84,21.69,16.53,22,15z M22,23v-2h-1c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0 c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0 c0.95,0.5,1.97,0.75,3,0.75H22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.5,11.5V2L3,11.5H9.5z M17,11.5C17,5.5,12.03,1,10.5,1c0,0,0.8,2.5,0.8,5.5s-0.8,5-0.8,5H17z M17.5,17.5H18l0,1.5h-0.5 c-0.86,0-1.71-0.2-2.5-0.6c-1.58,0.8-3.43,0.8-5,0c-1.58,0.8-3.42,0.8-5,0C4.21,18.8,3.36,19,2.5,19H2v-1.5h0.5 c0.87,0,1.74-0.33,2.5-1c1.53,1.33,3.47,1.33,5,0c1.53,1.33,3.48,1.33,5,0C15.76,17.17,16.63,17.5,17.5,17.5z M16.08,15.55 c-0.41-0.27-0.78-0.64-1.08-1.05c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16S5.61,15.34,5,14.5 c-0.3,0.41-0.67,0.78-1.08,1.05C2.94,14.83,2.24,13.76,2,12.5h16C17.76,13.76,17.06,14.83,16.08,15.55z\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_left\": {\n    \"name\": \"roundabout_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.08,8c0.48-2.84,2.94-5,5.92-5c3.31,0,6,2.69,6,6c0,2.97-2.16,5.44-5,5.92L17,21h-2l0-6.09c0-0.98,0.71-1.8,1.67-1.97 C18.56,12.63,20,10.98,20,9c0-2.21-1.79-4-4-4c-1.98,0-3.63,1.44-3.94,3.33C11.89,9.29,11.07,10,10.09,10l-4.26,0l1.59,1.59L6,13 L2,9l4-4l1.41,1.41L5.83,8L10.08,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.25,3c-2.37,0-4.33,1.73-4.69,4L4.87,7l1.19-1.19L5,4.75l-3,3l3,3l1.06-1.06L4.87,8.5l3.69,0 c0.74,0,1.36-0.54,1.48-1.25c0.24-1.56,1.59-2.75,3.21-2.75l0,0c1.79,0,3.25,1.46,3.25,3.25c0,1.62-1.18,2.96-2.73,3.21 c-0.72,0.11-1.27,0.67-1.27,1.4l0,4.64H14v-4.56l0,0c2.27-0.36,4-2.32,4-4.69C18,5.13,15.87,3,13.25,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_transfer\": {\n    \"name\": \"no_transfer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L4,6.83V16c0,0.88,0.39,1.67,1,2.22V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1 c0,0.55,0.45,1,1,1h1c0.05,0,0.09-0.02,0.14-0.03l1.64,1.64L21.19,21.19z M7.5,17C6.67,17,6,16.33,6,15.5C6,14.67,6.67,14,7.5,14 S9,14.67,9,15.5C9,16.33,8.33,17,7.5,17z M6,11V8.83L8.17,11H6z M8.83,6L5.78,2.95C7.24,2.16,9.48,2,12,2c4.42,0,8,0.5,8,4v10 c0,0.35-0.08,0.67-0.19,0.98L13.83,11H18V6H8.83z\\\"></path>\"\n      }\n    }\n  },\n  \"church\": {\n    \"name\": \"church\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h8v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h8v-8L18,12.22z M12,13.5 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,13.5,12,13.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,11V8l-4.25-2.55v-1.2h1.75v-1.5h-1.75V1h-1.5v1.75H7.5v1.5h1.75v1.2L5,8v3l-3,1v6h6v-2c0-1.1,0.9-2,2-2s2,0.9,2,2v2h6 v-6L15,11z M10,11.25c-0.69,0-1.25-0.56-1.25-1.25S9.31,8.75,10,8.75s1.25,0.56,1.25,1.25S10.69,11.25,10,11.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_offer\": {\n    \"name\": \"local_offer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z\\\"></path>\"\n      }\n    }\n  },\n  \"not_listed_location\": {\n    \"name\": \"not_listed_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm.88 13.75h-1.75V14h1.75v1.75zm0-2.87h-1.75c0-2.84 2.62-2.62 2.62-4.38 0-.96-.79-1.75-1.75-1.75s-1.75.79-1.75 1.75H8.5C8.5 6.57 10.07 5 12 5s3.5 1.57 3.5 3.5c0 2.19-2.62 2.41-2.62 4.38z\\\"></path>\"\n      }\n    }\n  },\n  \"navigation\": {\n    \"name\": \"navigation\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z\\\"></path>\"\n      }\n    }\n  },\n  \"local_drink\": {\n    \"name\": \"local_drink\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z\\\"></path>\"\n      }\n    }\n  },\n  \"360\": {\n    \"name\": \"360\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z\\\"></path>\"\n      }\n    }\n  },\n  \"moped\": {\n    \"name\": \"moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,7.5C15,6.67,14.33,6,13.5,6H12v1h1.5C13.78,7,14,7.22,14,7.5v1.29L10.79,12H9V8H6c-1.66,0-3,1.34-3,3v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V7.5z M7,14c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_florist\": {\n    \"name\": \"local_florist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"local_atm\": {\n    \"name\": \"local_atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"atm\": {\n    \"name\": \"atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 9v1.5h2.25V15h1.5v-4.5H14V9zM6 9H3c-.55 0-1 .45-1 1v5h1.5v-1.5h2V15H7v-5c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v5H17v-4.5h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"local_shipping\": {\n    \"name\": \"local_shipping\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"wine_bar\": {\n    \"name\": \"wine_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91l0-6H6z M16,8H8l0-3h8C16,5,16,8,16,8z\\\"></path>\"\n      }\n    }\n  },\n  \"transfer_within_a_station\": {\n    \"name\": \"transfer_within_a_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75\\\"></path>\"\n      }\n    }\n  },\n  \"ramen_dining\": {\n    \"name\": \"ramen_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,6H8V4.65l1-0.12V6z M9,12H8V7h1V12z M6,7h1v5H6V7z M6,4.88l1-0.12V6H6V4.88z M22,3V2L5,4v8H2c0,3.69,2.47,6.86,6,8.25 V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10V7h12V6H10V4.41L22,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,3.5V3L5,4.5V5v1v0.5V10H3c0,2.79,1.64,5.19,4,6.32V17h6v-0.68c2.36-1.12,4-3.53,4-6.32H8.5V6.5H17V6H8.5V4.56L17,3.5z M5.5,4.94l1-0.12V6h-1V4.94z M5.5,10V6.5h1V10H5.5z M8,10H7V6.5h1V10z M8,6H7V4.75l1-0.12V6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cleaning_services\": {\n    \"name\": \"cleaning_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M19,21h-2v-3 c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5v-5 c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,9h-1V4c0-0.55-0.45-1-1-1H9C8.45,3,8,3.45,8,4v5H7c-1.66,0-3,1.34-3,3v5h12v-5C16,10.34,14.66,9,13,9z M15,16h-2v-1.5 c0-0.28-0.22-0.5-0.5-0.5S12,14.22,12,14.5V16h-1.5v-1.5c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5V16H8v-1.5 C8,14.22,7.78,14,7.5,14S7,14.22,7,14.5V16H5v-4c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sos\": {\n    \"name\": \"sos\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,7h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V9C15.5,7.9,14.6,7,13.5,7z M13.5,15h-3V9h3V15z M1,15h4 v-2H3c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h4v2H3v2h2c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2H1V15z M17,15h4v-2h-2c-1.1,0-2-0.9-2-2V9 c0-1.1,0.9-2,2-2h4v2h-4v2h2c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.38,12c0,0.82,0.68,1.5,1.5,1.5h2.25c0.82,0,1.5-0.68,1.5-1.5V8c0-0.82-0.68-1.5-1.5-1.5H8.88c-0.82,0-1.5,0.68-1.5,1.5 V12z M11.12,12H8.88V8h2.25V12z M1.5,12h3v-1.25H3c-0.83,0-1.5-0.67-1.5-1.5V8c0-0.83,0.67-1.5,1.5-1.5h3V8H3v1.25h1.5 c0.83,0,1.5,0.67,1.5,1.5V12c0,0.83-0.67,1.5-1.5,1.5h-3V12z M14,12h3v-1.25h-1.5c-0.83,0-1.5-0.67-1.5-1.5V8 c0-0.83,0.67-1.5,1.5-1.5h3V8h-3v1.25H17c0.83,0,1.5,0.67,1.5,1.5V12c0,0.83-0.67,1.5-1.5,1.5h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_sharp_right\": {\n    \"name\": \"turn_sharp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,6.83l1.59,1.59L21,7l-4-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0-2,0.9-2,2v6h2v-6h8c1.1,0,2-0.9,2-2V6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.5,10.5c0,0.83-0.67,1.5-1.5,1.5l-6,0v5H5.5v-5c0-0.83,0.67-1.5,1.5-1.5l6,0l0-4.63l-1.19,1.19L10.75,6l3-3l3,3 l-1.06,1.06L14.5,5.87L14.5,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_boat_filled\": {\n    \"name\": \"directions_boat_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,21c-1.39,0-2.78-0.47-4-1.32c-2.44,1.71-5.56,1.71-8,0C6.78,20.53,5.39,21,4,21H2v2h2c1.38,0,2.74-0.35,4-0.99 c2.52,1.29,5.48,1.29,8,0c1.26,0.65,2.62,0.99,4,0.99h2v-2H20z M3.95,19H4c1.6,0,3.02-0.88,4-2c0.98,1.12,2.4,2,4,2s3.02-0.88,4-2 c0.98,1.12,2.4,2,4,2h0.05l1.9-6.68c0.11-0.37,0.04-1.06-0.66-1.28L20,10.62V6c0-1.1-0.9-2-2-2h-3V1H9v3H6C4.9,4,4,4.9,4,6v4.62 l-1.29,0.42c-0.63,0.19-0.81,0.84-0.66,1.28L3.95,19z M6,6h12v3.97L12,8L6,9.97V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rate_review\": {\n    \"name\": \"rate_review\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm15.35 6.41l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l6.88-6.88c.2-.19.2-.51 0-.71z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"set_meal\": {\n    \"name\": \"set_meal\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M22,5v7c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h16C21.1,3,22,3.9,22,5z M20,6c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5 c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z\\\"></path>\"\n      }\n    }\n  },\n  \"terrain\": {\n    \"name\": \"terrain\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\\\"></path>\"\n      }\n    }\n  },\n  \"festival\": {\n    \"name\": \"festival\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13,5.7 13,4 16,4 15,2.51 16,1 11,1 11,5.7 2,12 2,22 9,22 9,17 12.03,15 15,17 15,22 22,22 22,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"10.5,5.36 10.5,4 13,4 12,3 13,2 9.5,2 9.5,5.36 3,10 3,17 8,17 8,13.5 10,12 12,13.5 12,17 17,17 17,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"turn_slight_left\": {\n    \"name\": \"turn_slight_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.66,6V4H6v5.66h2V7.41l5,5V20h2v-7.58c0-0.53-0.21-1.04-0.59-1.41l-5-5H11.66z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.5,10.56V16H11v-5.44l-4-4l0,1.69H5.5L5.5,4l4.25,0v1.5l-1.69,0l4,4C12.34,9.78,12.5,10.16,12.5,10.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"medical_services\": {\n    \"name\": \"medical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,6h-3V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v2H4C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V7 C17,6.45,16.55,6,16,6z M8,4h4v2H8V4z M12.5,12h-2v2h-1v-2h-2v-1h2V9h1v2h2V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_walk\": {\n    \"name\": \"directions_walk\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L6 8.3V13h2V9.6l1.8-.7\\\"></path>\"\n      }\n    }\n  },\n  \"kebab_dining\": {\n    \"name\": \"kebab_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.75,8H11v5H7.75v1H8.5c1.38,0,2.5,1.12,2.5,2.5c0,1.38-1.12,2.5-2.5,2.5H7.75v4h-1.5v-4H5.5C4.12,19,3,17.88,3,16.5 C3,15.12,4.12,14,5.5,14h0.75v-1H3V8h3.25V7H5.5C4.12,7,3,5.88,3,4.5C3,3.12,4.12,2,5.5,2h0.75V1h1.5v1H8.5C9.88,2,11,3.12,11,4.5 C11,5.88,9.88,7,8.5,7H7.75V8z M17.75,7h0.75C19.88,7,21,5.88,21,4.5C21,3.12,19.88,2,18.5,2h-0.75V1h-1.5v1H15.5 C14.12,2,13,3.12,13,4.5C13,5.88,14.12,7,15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5h0.75v4 h1.5v-4h0.75c1.38,0,2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5h-0.75v-1H21V8h-3.25V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.5,7H9v4H6.5v1H7c1.1,0,2,0.9,2,2s-0.9,2-2,2H6.5v3h-1v-3H5c-1.1,0-2-0.9-2-2s0.9-2,2-2h0.5v-1H3V7h2.5V6H5 C3.9,6,3,5.1,3,4s0.9-2,2-2h0.5V1h1v1H7c1.1,0,2,0.9,2,2S8.1,6,7,6H6.5V7z M14.5,6H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5V1h-1v1H13 c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5v1H11v4h2.5v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5v3h1v-3H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5v-1H17 V7h-2.5V6z\\\"></path>\"\n      }\n    }\n  },\n  \"ev_station\": {\n    \"name\": \"ev_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me_disabled\": {\n    \"name\": \"near_me_disabled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6.34L21,3l-3.34,9L12,6.34z M22.61,19.78L4.22,1.39L2.81,2.81l5.07,5.07L3,9.69v1.41l7.07,2.83L12.9,21h1.41l1.81-4.88 l5.07,5.07L22.61,19.78z\\\"></path>\"\n      }\n    }\n  },\n  \"car_repair\": {\n    \"name\": \"car_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.22,12c0.68,0,1.22-0.54,1.22-1.22c0-0.67-0.54-1.22-1.22-1.22S15,10.11,15,10.78C15,11.46,15.55,12,16.22,12z M6.56,10.78c0,0.67,0.54,1.22,1.22,1.22S9,11.46,9,10.78c0-0.67-0.54-1.22-1.22-1.22S6.56,10.11,6.56,10.78z M7.61,4L6.28,8h11.43 l-1.33-4H7.61z M16.28,3c0,0,0.54,0.01,0.92,0.54c0.02,0.02,0.03,0.04,0.05,0.07c0.07,0.11,0.14,0.24,0.19,0.4 C17.66,4.66,19,8.69,19,8.69v6.5c0,0.45-0.35,0.81-0.78,0.81h-0.44C17.35,16,17,15.64,17,15.19V14H7v1.19C7,15.64,6.65,16,6.22,16 H5.78C5.35,16,5,15.64,5,15.19v-6.5c0,0,1.34-4.02,1.55-4.69c0.05-0.16,0.12-0.28,0.19-0.4C6.77,3.58,6.78,3.56,6.8,3.54 C7.18,3.01,7.72,3,7.72,3H16.28z M4,17.01h16V19h-7v3h-2v-3H4V17.01z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"4,14 4,15 9.5,15 9.5,17 10.5,17 10.5,15 16,15 16,14\\\"></polygon><path d=\\\"M5.5,13H6c0.28,0,0.5-0.22,0.5-0.5v-1h7v1c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V8l-1.22-3.34 C13.64,4.26,13.26,4,12.84,4H7.19C6.78,4,6.4,4.26,6.26,4.65L5,8v4.5C5,12.78,5.22,13,5.5,13z M7,10.5 c-0.41,0-0.75-0.34-0.75-0.75C6.25,9.34,6.59,9,7,9s0.75,0.34,0.75,0.75C7.75,10.16,7.41,10.5,7,10.5z M13,10.5 c-0.41,0-0.75-0.34-0.75-0.75C12.25,9.34,12.59,9,13,9s0.75,0.34,0.75,0.75C13.75,10.16,13.41,10.5,13,10.5z M7.19,5h5.65l1.1,3 H6.07L7.19,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"merge\": {\n    \"name\": \"merge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.41,21L5,19.59l4.83-4.83c0.75-0.75,1.17-1.77,1.17-2.83v-5.1L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83v5.1 c0,1.06,0.42,2.08,1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,10.45c0,0.8-0.32,1.56-0.88,2.12L5,15.94L6.06,17L10,13.06L13.94,17L15,15.94l-3.37-3.37 c-0.56-0.56-0.88-1.33-0.88-2.12l0-4.58l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19L9.25,10.45z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meals\": {\n    \"name\": \"no_meals\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z\\\"></path>\"\n      }\n    }\n  },\n  \"miscellaneous_services\": {\n    \"name\": \"miscellaneous_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z\\\"></path><path d=\\\"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.69,11.36l1-1.73c0.06-0.11,0.04-0.24-0.06-0.32l-1.06-0.83C11.6,8.33,11.61,8.16,11.61,8c0-0.16-0.01-0.33-0.04-0.49 l1.06-0.83c0.09-0.08,0.12-0.21,0.06-0.32l-1-1.73c-0.06-0.11-0.19-0.15-0.31-0.11l-1.24,0.5C9.88,4.82,9.6,4.66,9.3,4.53 L9.11,3.21C9.09,3.09,8.98,3,8.86,3h-2C6.74,3,6.63,3.09,6.61,3.21L6.42,4.54c-0.3,0.13-0.59,0.29-0.84,0.49l-1.24-0.5 c-0.11-0.04-0.24,0-0.31,0.11l-1,1.73C2.97,6.47,3,6.61,3.09,6.69l1.06,0.83C4.12,7.67,4.11,7.84,4.11,8 c0,0.16,0.01,0.33,0.04,0.49L3.09,9.32C3,9.4,2.97,9.54,3.03,9.64l1,1.73c0.06,0.11,0.19,0.15,0.31,0.11l1.24-0.5 c0.26,0.2,0.54,0.36,0.84,0.49l0.19,1.32C6.63,12.91,6.74,13,6.86,13h2c0.12,0,0.23-0.09,0.25-0.21l0.19-1.32 c0.3-0.13,0.59-0.29,0.84-0.49l1.24,0.5C11.5,11.51,11.62,11.47,11.69,11.36z M7.86,9.5c-0.83,0-1.5-0.68-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5c0.82,0,1.5,0.67,1.5,1.5C9.36,8.82,8.68,9.5,7.86,9.5z\\\"></path><path d=\\\"M16.81,14.79l-0.64-0.5c0.01-0.1,0.02-0.19,0.02-0.29c0-0.1-0.01-0.2-0.02-0.29l0.64-0.5c0.05-0.05,0.07-0.13,0.04-0.19 l-0.6-1.04c-0.04-0.07-0.11-0.09-0.19-0.07l-0.74,0.3c-0.16-0.12-0.32-0.22-0.51-0.29l-0.11-0.79C14.68,11.05,14.61,11,14.54,11 h-1.2c-0.07,0-0.14,0.05-0.15,0.13l-0.11,0.79c-0.18,0.08-0.35,0.17-0.51,0.29l-0.74-0.3c-0.07-0.02-0.14,0-0.19,0.07l-0.6,1.04 c-0.04,0.07-0.02,0.14,0.04,0.19l0.64,0.5c-0.01,0.1-0.02,0.19-0.02,0.29c0,0.1,0.01,0.2,0.02,0.29l-0.64,0.5 c-0.05,0.05-0.07,0.13-0.04,0.19l0.6,1.04c0.04,0.07,0.11,0.09,0.19,0.07l0.74-0.3c0.16,0.12,0.32,0.22,0.51,0.29l0.11,0.79 C13.2,16.95,13.26,17,13.34,17h1.2c0.07,0,0.14-0.05,0.15-0.13l0.11-0.79c0.18-0.08,0.35-0.17,0.5-0.29l0.75,0.3 c0.07,0.02,0.14,0,0.19-0.07l0.6-1.04C16.88,14.92,16.86,14.84,16.81,14.79z M14,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1C15,14.55,14.55,15,14,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compass_calibration\": {\n    \"name\": \"compass_calibration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"4\\\"></circle><path d=\\\"M12 10.07c1.95 0 3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3S4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me\": {\n    \"name\": \"near_me\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z\\\"></path>\"\n      }\n    }\n  },\n  \"home_repair_service\": {\n    \"name\": \"home_repair_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,16 16,16 16,15 8,15 8,16 6,16 6,15 2,15 2,20 22,20 22,15 18,15\\\"></polygon><path d=\\\"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v4h4v-2h2v2h8v-2h2v2h4v-4C22,8.9,21.1,8,20,8z M15,8 H9V6h6V8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"14,13 13,13 13,12 7,12 7,13 6,13 6,12 3,12 3,16 17,16 17,12 14,12\\\"></polygon></g><path d=\\\"M16,7h-3V5c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5v2H4C3.45,7,3,7.45,3,8v3h3v-1h1v1h6v-1h1v1h3V8C17,7.45,16.55,7,16,7z M12,7H8V5h4V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airline_stops\": {\n    \"name\": \"airline_stops\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.21,9.21C15.93,10.78,13.45,13.3,13,17h2v2H9v-2h2c-0.5-4.5-4.37-8-9-8V7c4.39,0,8.22,2.55,10,6.3 c1.13-2.43,2.99-4.25,4.78-5.52L14,5h7v7L18.21,9.21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,14C9.25,10.41,6,7.5,2,7.5V6c3.56,0,6.64,1.96,8,4.76c0.72-1.49,1.96-2.87,3.68-4.08L11.5,4.5H17V10l-2.24-2.24 c-1.78,1.21-4.01,3.28-4.01,6.24h1.5v1.5h-4.5V14H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"bedroom_baby\": {\n    \"name\": \"bedroom_baby\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M12,18c-2.64,0-5.13-1.03-7-2.9 l1.06-1.06c0.34,0.34,0.71,0.65,1.1,0.92L8,13.5V9.51L6.45,10.5l-0.95-1L7,7.76L6,7h3.65l1.73,3H17v1h-1v2.5l0.84,1.46 c0.39-0.28,0.76-0.58,1.1-0.92L19,15.1C17.13,16.97,14.64,18,12,18z\\\"></path><path d=\\\"M14.69,14.24c-1.74,0.65-3.66,0.65-5.4,0l-0.81,1.41l-0.03,0.06c1.1,0.52,2.28,0.79,3.53,0.79s2.45-0.28,3.55-0.79 l-0.03-0.06L14.69,14.24z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"garage\": {\n    \"name\": \"garage\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><polygon points=\\\"8.33,7.5 7.67,9.5 16.33,9.5 15.67,7.5\\\"></polygon><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,17.69 c0,0.45-0.35,0.81-0.78,0.81h-0.44c-0.44,0-0.78-0.36-0.78-0.81V16.5H7v1.19c0,0.45-0.35,0.81-0.78,0.81H5.78 C5.35,18.5,5,18.14,5,17.69v-6.5C5.82,8.72,6.34,7.16,6.56,6.5c0.05-0.16,0.12-0.29,0.19-0.4C6.77,6.08,6.78,6.06,6.8,6.04 C7.18,5.51,7.72,5.5,7.72,5.5h8.56c0,0,0.54,0.01,0.92,0.53c0.02,0.03,0.03,0.05,0.05,0.07c0.07,0.11,0.14,0.24,0.19,0.4 c0.22,0.66,0.74,2.23,1.56,4.69V17.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feed\": {\n    \"name\": \"feed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8L16,3z M7,7h5v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10 V13z M15,9V5l4,4H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flatware\": {\n    \"name\": \"flatware\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,7.08c0,1.77-0.84,3.25-2,3.82V21h-2V10.9c-1.16-0.57-2-2.05-2-3.82C10.01,4.83,11.35,3,13,3C14.66,3,16,4.83,16,7.08z M17,3v18h2v-8h2V7C21,5.24,19.76,3,17,3z M8.28,3c-0.4,0-0.72,0.32-0.72,0.72V7H6.72V3.72C6.72,3.32,6.4,3,6,3 S5.28,3.32,5.28,3.72V7H4.44V3.72C4.44,3.32,4.12,3,3.72,3S3,3.32,3,3.72V9c0,1.1,0.9,2,2,2v10h2V11c1.1,0,2-0.9,2-2V3.72 C9,3.32,8.68,3,8.28,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bathroom\": {\n    \"name\": \"bathroom\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M9,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S9.55,18,9,18z M9,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,15,9,15z M12,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,18,12,18z M12,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.55,15,12,15z M15,18 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,18,15,18z M15,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,15,15,15z M17,12H7v-1c0-2.76,2.24-5,5-5s5,2.24,5,5V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair_alt\": {\n    \"name\": \"chair_alt\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,10c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v3c0,1.1,0.9,2,2,2h1v2H7c-1.1,0-2,0.9-2,2v7h2v-3h10v3h2v-7 c0-1.1-0.9-2-2-2h-1v-2H17z M7,8V5h10v3H7z M17,16H7v-2h10V16z M14,12h-4v-2h4V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee\": {\n    \"name\": \"coffee\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18.5,3H6C4.9,3,4,3.9,4,5v5.71c0,3.83,2.95,7.18,6.78,7.29c3.96,0.12,7.22-3.06,7.22-7v-1h0.5c1.93,0,3.5-1.57,3.5-3.5 S20.43,3,18.5,3z M16,5v3H6V5H16z M18.5,8H18V5h0.5C19.33,5,20,5.67,20,6.5S19.33,8,18.5,8z M4,19h16v2H4V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee_maker\": {\n    \"name\": \"coffee_maker\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,6V4h2V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h14v-2h-4.03C17.2,19.09,18,17.64,18,16v-5H8v5c0,1.64,0.81,3.09,2.03,4 H6V4h2v2c0,0.55,0.45,1,1,1h8C17.55,7,18,6.55,18,6z\\\"></path><circle cx=\\\"13\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"bedroom_parent\": {\n    \"name\": \"bedroom_parent\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.5,12h-9c-0.55,0-1,0.45-1,1v1h11v-1C17.5,12.45,17.05,12,16.5,12z\\\"></path><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"7.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"12.75\\\" y=\\\"8.5\\\"></rect><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,17h-1.5v-1.5h-11V17H5v-3.83 c0-0.66,0.25-1.26,0.65-1.72V9c0-1.1,0.9-2,2-2H11c0.37,0,0.72,0.12,1,0.32C12.28,7.12,12.63,7,13,7h3.35c1.1,0,2,0.9,2,2v2.45 c0.4,0.46,0.65,1.06,0.65,1.72V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"window\": {\n    \"name\": \"window\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11 11V3H5c-1.1 0-2 .9-2 2v6h8zm2 0h8V5c0-1.1-.9-2-2-2h-6v8zm-2 2H3v6c0 1.1.9 2 2 2h6v-8zm2 0v8h6c1.1 0 2-.9 2-2v-6h-8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.25 9.25V3H4.5C3.67 3 3 3.67 3 4.5v4.75h6.25z\\\"></path></g><g><path d=\\\"M10.75 9.25H17V4.5c0-.83-.67-1.5-1.5-1.5h-4.75v6.25z\\\"></path></g><g><path d=\\\"M10.75 10.75V17h4.75c.83 0 1.5-.67 1.5-1.5v-4.75h-6.25z\\\"></path></g><g><path d=\\\"M9.25 10.75H3v4.75c0 .83.67 1.5 1.5 1.5h4.75v-6.25z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"living\": {\n    \"name\": \"living\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.5,11.5c-0.55,0-1,0.45-1,1v2h-7v-2c0-0.55-0.45-1-1-1s-1,0.45-1,1V16c0,0.28,0.22,0.5,0.5,0.5h10 c0.28,0,0.5-0.22,0.5-0.5v-3.5C17.5,11.95,17.05,11.5,16.5,11.5z\\\"></path><path d=\\\"M10,12.5V13h4v-0.5c0-1.3,0.99-2.35,2.25-2.47V9c0-0.83-0.67-1.5-1.5-1.5h-5.5c-0.83,0-1.5,0.67-1.5,1.5v1.03 C9.01,10.15,10,11.2,10,12.5z\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,16c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2v-3.5c0-0.92,0.51-1.72,1.25-2.15V9c0-1.66,1.34-3,3-3h5.5c1.66,0,3,1.34,3,3v1.35C18.49,10.78,19,11.58,19,12.5 V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dining\": {\n    \"name\": \"dining\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M11,10.3c0,0.93-0.64,1.71-1.5,1.93 V19H8v-6.77c-0.86-0.22-1.5-1-1.5-1.93V6.5C6.5,6.22,6.72,6,7,6s0.5,0.22,0.5,0.5V9h0.75V6.5c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5V9H10V6.5C10,6.22,10.23,6,10.5,6C10.78,6,11,6.22,11,6.5V10.3z M15.58,12.59l-0.08,0.03V19H14v-6.38l-0.08-0.04 c-0.97-0.47-1.67-1.7-1.67-3.18c0-1.88,1.13-3.4,2.5-3.4c1.38,0,2.5,1.53,2.5,3.41C17.25,10.89,16.55,12.12,15.58,12.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair\": {\n    \"name\": \"chair\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,11v2h10v-2c0-1.86,1.28-3.41,3-3.86V6c0-1.65-1.35-3-3-3H7C5.35,3,4,4.35,4,6v1.14C5.72,7.59,7,9.14,7,11z\\\"></path><path d=\\\"M21,9c-1.1,0-2,0.9-2,2v4H5v-4c0-1.1-0.9-2-2-2s-2,0.9-2,2v5c0,1.65,1.35,3,3,3v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1c1.65,0,3-1.35,3-3v-5C23,9.9,22.1,9,21,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"table_bar\": {\n    \"name\": \"table_bar\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,7.5C22,5.57,17.52,4,12,4S2,5.57,2,7.5c0,1.81,3.95,3.31,9,3.48V15H9.35c-0.82,0-1.55,0.5-1.86,1.26L6,20h2l1.2-3h5.6 l1.2,3h2l-1.5-3.74C16.2,15.5,15.46,15,14.65,15H13v-4.02C18.05,10.81,22,9.31,22,7.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,6.5C18,5.12,14.42,4,10,4S2,5.12,2,6.5c0,1.3,3.18,2.37,7.25,2.49v3.51H7.61c-0.58,0-1.11,0.33-1.35,0.86L5,16h1.5 l1-2h5l1,2H15l-1.26-2.64c-0.25-0.52-0.78-0.86-1.35-0.86h-1.64V8.99C14.82,8.87,18,7.8,18,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_indoor\": {\n    \"name\": \"camera_indoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,3L4,9v12h16V9L12,3z M16,16.06L14,15v1c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1l2-1.06V16.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"door_back\": {\n    \"name\": \"door_back\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M11,13H9v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bedroom_child\": {\n    \"name\": \"bedroom_child\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"8.5\\\"></rect><path d=\\\"M15.64,12H8.37c-0.48,0-0.87,0.39-0.87,0.87h0.01V14h9v-1.13C16.51,12.39,16.12,12,15.64,12z\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M18,17h-1.5v-1.5h-9V17H6v-4.13 c0-1,0.62-1.85,1.5-2.2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2v1.67c0.88,0.35,1.5,1.2,1.5,2.2V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"door_front\": {\n    \"name\": \"door_front\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M15,13h-2v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shower\": {\n    \"name\": \"shower\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><circle cx=\\\"8\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M13,5.08V3h-2v2.08C7.61,5.57,5,8.47,5,12v2h14v-2C19,8.47,16.39,5.57,13,5.08z\\\"></path><circle cx=\\\"8\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle></g>\"\n      }\n    }\n  },\n  \"door_sliding\": {\n    \"name\": \"door_sliding\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2h-5.25v16h-1.5V3H6C4.9,3,4,3.9,4,5v14H3v2h18v-2H20z M10,13H8v-2h2V13z M16,13h-2v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"light\": {\n    \"name\": \"light\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M13,6.06V3h-2v3.06c-4.5,0.5-8,4.31-8,8.93C3,16.1,3.9,17,5.01,17H8c0,2.21,1.79,4,4,4s4-1.79,4-4h2.99 C20.1,17,21,16.1,21,14.99C21,10.37,17.5,6.56,13,6.06z M12,15H5c0-3.86,3.14-7,7-7s7,3.14,7,7H12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_restaurant\": {\n    \"name\": \"table_restaurant\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.96,9.73l-1.43-5C20.41,4.3,20.02,4,19.57,4H4.43C3.98,4,3.59,4.3,3.47,4.73l-1.43,5C1.86,10.36,2.34,11,3,11h2.2L4,20 h2l0.67-5h10.67L18,20h2l-1.2-9H21C21.66,11,22.14,10.36,21.96,9.73z M6.93,13l0.27-2h9.6l0.27,2H6.93z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.93,7.63l-1.2-3C16.58,4.25,16.21,4,15.8,4H4.2C3.79,4,3.42,4.25,3.27,4.63l-1.2,3C1.81,8.29,2.29,9,3,9h1.27L3,16h1.5 l0.73-4h9.32l0.73,4h1.5L15.5,9H17C17.71,9,18.19,8.29,17.93,7.63z M5.5,10.5L5.77,9H14l0.27,1.5H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"podcasts\": {\n    \"name\": \"podcasts\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,12c0,0.74-0.4,1.38-1,1.72V22h-2v-8.28c-0.6-0.35-1-0.98-1-1.72c0-1.1,0.9-2,2-2S14,10.9,14,12z M12,6 c-3.31,0-6,2.69-6,6c0,1.74,0.75,3.31,1.94,4.4l1.42-1.42C8.53,14.25,8,13.19,8,12c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.19-0.53,2.25-1.36,2.98l1.42,1.42C17.25,15.31,18,13.74,18,12C18,8.69,15.31,6,12,6z M12,2C6.48,2,2,6.48,2,12 c0,2.85,1.2,5.41,3.11,7.24l1.42-1.42C4.98,16.36,4,14.29,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8c0,2.29-0.98,4.36-2.53,5.82l1.42,1.42 C20.8,17.41,22,14.85,22,12C22,6.48,17.52,2,12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"manage_search\": {\n    \"name\": \"manage_search\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M7,9H2V7h5V9z M7,12H2v2h5V12z M20.59,19l-3.83-3.83C15.96,15.69,15.02,16,14,16c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 c0,1.02-0.31,1.96-0.83,2.75L22,17.59L20.59,19z M17,11c0-1.65-1.35-3-3-3s-3,1.35-3,3s1.35,3,3,3S17,12.65,17,11z M2,19h10v-2H2 V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bed\": {\n    \"name\": \"bed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"doorbell\": {\n    \"name\": \"doorbell\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,3L4,9v12h16V9L12,3z M12,17.5c-0.55,0-1-0.45-1-1h2C13,17.05,12.55,17.5,12,17.5z M16,16H8v-1h1v-2.34 c0-1.54,0.82-2.82,2.25-3.16V9.25c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V9.5C14.19,9.84,15,11.12,15,12.66V15h1V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"camera_outdoor\": {\n    \"name\": \"camera_outdoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,13c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L18,14V13z M12,3 L4,9v12h16v-2H6v-9l6-4.5l6,4.5v1h2V9L12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"yard\": {\n    \"name\": \"yard\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M8,8.22c0-0.86,0.7-1.56,1.56-1.56 c0.33,0,0.64,0.1,0.89,0.28l-0.01-0.12c0-0.86,0.7-1.56,1.56-1.56s1.56,0.7,1.56,1.56l-0.01,0.12c0.26-0.18,0.56-0.28,0.89-0.28 c0.86,0,1.56,0.7,1.56,1.56c0,0.62-0.37,1.16-0.89,1.4C15.63,9.87,16,10.41,16,11.03c0,0.86-0.7,1.56-1.56,1.56 c-0.33,0-0.64-0.11-0.89-0.28l0.01,0.12c0,0.86-0.7,1.56-1.56,1.56s-1.56-0.7-1.56-1.56l0.01-0.12c-0.26,0.18-0.56,0.28-0.89,0.28 C8.7,12.59,8,11.89,8,11.03c0-0.62,0.37-1.16,0.89-1.4C8.37,9.38,8,8.84,8,8.22z M12,19c-3.31,0-6-2.69-6-6 C9.31,13,12,15.69,12,19c0-3.31,2.69-6,6-6C18,16.31,15.31,19,12,19z\\\"></path><circle cx=\\\"12\\\" cy=\\\"9.62\\\" r=\\\"1.56\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"blender\": {\n    \"name\": \"blender\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h2.23l0.64,4.13C6.74,16.05,6,17.43,6,19v1 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-1C18,17.43,17.26,16.05,16.13,15.13z M5,9V5h1.31l0.62,4H5z M12,19c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,19,12,19z M14.29,14H9.72L8.33,5h7.34L14.29,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sim_card\": {\n    \"name\": \"sim_card\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.99 4c0-1.1-.89-2-1.99-2h-8L4 8v12c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds\": {\n    \"name\": \"earbuds\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.2,3.01C4.44,2.89,3,4.42,3,6.19L3,16c0,2.76,2.24,5,5,5h0c2.76,0,5-2.24,5-5V8c0-1.66,1.34-3,3-3h0c1.66,0,3,1.34,3,3 v7l-0.83,0c-1.61,0-3.06,1.18-3.17,2.79c-0.12,1.69,1.16,3.1,2.8,3.21c1.76,0.12,3.2-1.42,3.2-3.18L21,8c0-2.76-2.24-5-5-5h0 c-2.76,0-5,2.24-5,5v8c0,1.66-1.34,3-3,3l0,0c-1.66,0-3-1.34-3-3V9l0.83,0C7.44,9,8.89,7.82,9,6.21C9.11,4.53,7.83,3.11,6.2,3.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"smart_toy\": {\n    \"name\": \"smart_toy\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M20,9V7c0-1.1-0.9-2-2-2h-3c0-1.66-1.34-3-3-3S9,3.34,9,5H6C4.9,5,4,5.9,4,7v2c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3v4 c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4c1.66,0,3-1.34,3-3C23,10.34,21.66,9,20,9z M7.5,11.5C7.5,10.67,8.17,10,9,10 s1.5,0.67,1.5,1.5S9.83,13,9,13S7.5,12.33,7.5,11.5z M16,17H8v-2h8V17z M15,13c-0.83,0-1.5-0.67-1.5-1.5S14.17,10,15,10 s1.5,0.67,1.5,1.5S15.83,13,15,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trolley\": {\n    \"name\": \"trolley\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21 14v2H4V4H2V2h4v12h15zM5.99 17C4.89 17 4 17.9 4 19s.89 2 1.99 2C7.1 21 8 20.1 8 19s-.9-2-2.01-2zm13 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2S21 20.1 21 19s-.9-2-2.01-2zM13 13H7V7h6v6zm7 0h-6V7h6v6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17 11.5V13H3.5V4H2V2.5h3v9h12zM5 14c-.83 0-1.5.67-1.5 1.5S4.17 17 5 17s1.5-.67 1.5-1.5S5.82 14 5 14zm10.5 0c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.68-1.5-1.5-1.5zm-5-3.25H6v-4.5h4.5v4.5zm5.5 0h-4.5v-4.5H16v4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"videogame_asset\": {\n    \"name\": \"videogame_asset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0v24h24V0H0zm23 16c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h18c1.1 0 2 .9 2 2v8z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smartphone\": {\n    \"name\": \"smartphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_for_education\": {\n    \"name\": \"cast_for_education\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v3h2V5h18v14h-7v2h7c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z M1,18v3h3C4,19.34,2.66,18,1,18z M1,14 v2c2.76,0,5,2.24,5,5h2C8,17.13,4.87,14,1,14z M1,10v2c4.97,0,9,4.03,9,9h2C12,14.92,7.07,10,1,10z M11,11.09v2L14.5,15l3.5-1.91 v-2L14.5,13L11,11.09z M14.5,6L9,9l5.5,3L20,9L14.5,6z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_screen\": {\n    \"name\": \"smart_screen\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M21,5H3C1.9,5,1,5.9,1,7v10c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V7C23,5.9,22.1,5,21,5z M18,17H6V7h12V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"12.5\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"10\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"7.5\\\" y=\\\"11.25\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"tablet\": {\n    \"name\": \"tablet\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z\\\"></path>\"\n      }\n    }\n  },\n  \"security\": {\n    \"name\": \"security\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z\\\"></path>\"\n      }\n    }\n  },\n  \"laptop_windows\": {\n    \"name\": \"laptop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z\\\"></path>\"\n      }\n    }\n  },\n  \"cast\": {\n    \"name\": \"cast\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\" opacity=\\\".1\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"device_unknown\": {\n    \"name\": \"device_unknown\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zm-.88 8.8h1.76v1.76h-1.76z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_mic\": {\n    \"name\": \"headset_mic\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\" opacity=\\\".1\\\"></path><path d=\\\"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_option_key\": {\n    \"name\": \"keyboard_option_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><polygon points=\\\"9,5 3,5 3,7 7.85,7 14.77,19 21,19 21,17 15.93,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8,5 3,5 3,6.5 7.13,6.5 12.04,15 17,15 17,13.5 12.91,13.5\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"12\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"developer_board_off\": {\n    \"name\": \"developer_board_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-0.9-2-2-2H5.83L7.83,5z M12,9.17V7h4v3h-3.17L12,9.17z M9.83,7H11v1.17L9.83,7z M13.83,11H16v2.17L13.83,11z M18,21c0.06,0,0.11,0,0.16-0.01l2.32,2.32l1.41-1.41L2.1,2.1L0.69,3.51 l1.32,1.32C2,4.89,2,4.94,2,5v14c0,1.1,0.9,2,2,2H18z M4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.12,14H18v-1.5h-2v-1.75h2v-1.5h-2V7.5h2V6h-2V4.5C16,3.67,15.33,3,14.5,3H5.12l1.5,1.5h7.88v7.88L16.12,14z M8.12,6H9 v0.88L8.12,6z M13,8h-2.88L10,7.88V6h3V8z M11.12,9H13v1.88L11.12,9z M2.22,2.22L1.16,3.28l0.88,0.88C2.01,4.27,2,4.38,2,4.5v11 C2,16.33,2.67,17,3.5,17h11c0.12,0,0.23-0.01,0.34-0.04l1.88,1.88l1.06-1.06L2.22,2.22z M3.5,15.5V5.62L5,7.12V10h2.88l1,1H5v3h4 v-2.88l1,1V14h1.88l1.5,1.5H3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_right\": {\n    \"name\": \"keyboard_double_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.41,6 5,7.41 9.58,12 5,16.59 6.41,18 12.41,12\\\"></polygon><polygon points=\\\"13,6 11.59,7.41 16.17,12 11.59,16.59 13,18 19,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5.06,5 4,6.06 7.94,10 4,13.94 5.06,15 10.06,10\\\"></polygon><polygon points=\\\"11,5 9.94,6.06 13.88,10 9.94,13.94 11,15 16,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_down\": {\n    \"name\": \"keyboard_double_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,6.41 16.59,5 12,9.58 7.41,5 6,6.41 12,12.41\\\"></polygon><polygon points=\\\"18,13 16.59,11.59 12,16.17 7.41,11.59 6,13 12,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"15,5.06 13.94,4 10,7.94 6.06,4 5,5.06 10,10.06\\\"></polygon><polygon points=\\\"15,11 13.94,9.94 10,13.88 6.06,9.94 5,11 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_backspace\": {\n    \"name\": \"keyboard_backspace\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_mac\": {\n    \"name\": \"tablet_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z\\\"></path>\"\n      }\n    }\n  },\n  \"videogame_asset_off\": {\n    \"name\": \"videogame_asset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3.3,6.13C2.54,6.41,2,7.15,2,8v8c0,1.1,0.9,2,2,2h11.17l4.61,4.61L21.19,21.19z M9,13v2H7 v-2H5v-2h2V9.83L10.17,13H9z M20.7,17.87C21.46,17.59,22,16.85,22,16V8c0-1.1-0.9-2-2-2H8.83L20.7,17.87z M17.5,9 c0.83,0,1.5,0.67,1.5,1.5S18.33,12,17.5,12S16,11.33,16,10.5S16.67,9,17.5,9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17.02,14.9c0.57-0.22,0.98-0.79,0.98-1.46V6.56C18,5.7,17.33,5,16.5,5H7.12L17.02,14.9z M14.5,7.75 c0.69,0,1.25,0.56,1.25,1.25s-0.56,1.25-1.25,1.25S13.25,9.69,13.25,9S13.81,7.75,14.5,7.75z M17.07,17.07L2.93,2.93L1.87,3.99 L2.98,5.1C2.41,5.32,2,5.89,2,6.56v6.88C2,14.3,2.67,15,3.5,15h9.38l3.13,3.13L17.07,17.07z M7.55,10.75v1.75h-1.5v-1.75H4.3v-1.5 h1.75V8.17l2.58,2.58H7.55z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_android\": {\n    \"name\": \"tablet_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,0H6C4.34,0,3,1.34,3,3v18c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V3C21,1.34,19.66,0,18,0z M14,22h-4v-1h4V22z M19.25,19H4.75V3h14.5V19z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"watch_off\": {\n    \"name\": \"watch_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7c2.76,0,5,2.24,5,5c0,0.64-0.13,1.25-0.35,1.82l1.5,1.5C18.69,14.33,19,13.2,19,12c0-2.22-1.03-4.19-2.64-5.47L15,2 H9L8.04,5.21l2.14,2.14C10.75,7.13,11.36,7,12,7z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67,5,10.8,5,12c0,2.22,1.03,4.19,2.64,5.47L9,22h6l0.96-3.21l3.82,3.82l1.41-1.41 L2.81,2.81z M12,17c-2.76,0-5-2.24-5-5c0-0.64,0.13-1.25,0.35-1.82l6.47,6.47C13.25,16.87,12.64,17,12,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c1.93,0,3.5,1.57,3.5,3.5c0,0.41-0.08,0.8-0.21,1.17l1.14,1.14C14.79,11.62,15,10.83,15,10 c0-1.65-0.81-3.1-2.04-4.01L12,2H8L7.25,5.13l1.59,1.59C9.2,6.58,9.59,6.5,10,6.5z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99l3.7,3.7C5.21,8.38,5,9.17,5,10c0,1.64,0.8,3.07,2.01,3.99L8,18h4l0.77-3.11l3.24,3.24l1.06-1.06 L2.93,2.93z M10,13.5c-1.93,0-3.5-1.57-3.5-3.5c0-0.41,0.08-0.8,0.21-1.17l4.45,4.45C10.8,13.42,10.41,13.5,10,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_hide\": {\n    \"name\": \"keyboard_hide\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15 4-4H8l4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"home_max\": {\n    \"name\": \"home_max\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M19,5H5C2.79,5,1,6.79,1,9v5c0,2.21,1.79,4,4,4h2v1h10v-1h2c2.21,0,4-1.79,4-4V9C23,6.79,21.21,5,19,5z M21,14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_return\": {\n    \"name\": \"keyboard_return\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7z\\\"></path>\"\n      }\n    }\n  },\n  \"computer\": {\n    \"name\": \"computer\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"memory\": {\n    \"name\": \"memory\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_capslock\": {\n    \"name\": \"keyboard_capslock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"tv\": {\n    \"name\": \"tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"adf_scanner\": {\n    \"name\": \"adf_scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,12h-1V4H6v8H5c-1.66,0-3,1.34-3,3v5h20v-5C22,13.34,20.66,12,19,12z M16,12H8V6h8V12z M18,17c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,16.55,18.55,17,18,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,9.5h-1V4H5v5.5H4c-1.1,0-2,0.9-2,2V16h16v-4.5C18,10.4,17.1,9.5,16,9.5z M13.5,9.5h-7v-4h7V9.5z M14.75,13.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,13.16,15.16,13.5,14.75,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop\": {\n    \"name\": \"laptop\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"laptop_chromebook\": {\n    \"name\": \"laptop_chromebook\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_group\": {\n    \"name\": \"speaker_group\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path><circle cx=\\\"14\\\" cy=\\\"12.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_iphone\": {\n    \"name\": \"phone_iphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard\": {\n    \"name\": \"keyboard\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z\\\"></path><path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"speaker\": {\n    \"name\": \"speaker\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"gamepad\": {\n    \"name\": \"gamepad\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_up\": {\n    \"name\": \"keyboard_double_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6,17.59 7.41,19 12,14.42 16.59,19 18,17.59 12,11.59\\\"></polygon><polygon points=\\\"6,11 7.41,12.41 12,7.83 16.59,12.41 18,11 12,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5,14.94 6.06,16 10,12.06 13.94,16 15,14.94 10,9.94\\\"></polygon><polygon points=\\\"5,9 6.06,10.06 10,6.12 13.94,10.06 15,9 10,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"watch\": {\n    \"name\": \"watch\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\" opacity=\\\".1\\\"></path><path d=\\\"M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_not_supported\": {\n    \"name\": \"browser_not_supported\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z\\\"></path><path d=\\\"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,5v8.59l1,1V5c0-0.55-0.45-1-1-1H5.41l1,1H15z\\\"></path><path d=\\\"M3.64,3.64L2.93,4.34L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.07,1.07l0.71-0.71L3.64,3.64z M5,15V6.41L13.59,15H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dock\": {\n    \"name\": \"dock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"device_hub\": {\n    \"name\": \"device_hub\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds_battery\": {\n    \"name\": \"earbuds_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z\\\"></path><path d=\\\"M10.62,6C8.76,6,7.25,7.51,7.25,9.38v5.25c0,1.04-0.84,1.88-1.88,1.88S3.5,15.66,3.5,14.62v-4.7C3.66,9.97,3.83,10,4,10 c1.1,0,2-0.9,2-2S5.1,6,4,6S2,6.9,2,8c0,0.04,0,6.62,0,6.62C2,16.49,3.51,18,5.38,18s3.38-1.51,3.38-3.38V9.38 c0-1.04,0.84-1.88,1.88-1.88s1.88,0.84,1.88,1.88v4.7C12.34,14.03,12.17,14,12,14c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 c0-0.04,0-6.62,0-6.62C14,7.51,12.49,6,10.62,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headphones\": {\n    \"name\": \"headphones\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,3c-4.97,0-9,4.03-9,9v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-3.87,3.13-7,7-7s7,3.13,7,7v1h-4v8h4c1.1,0,2-0.9,2-2v-7 C21,7.03,16.97,3,12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forklift\": {\n    \"name\": \"forklift\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23 17v2h-5V3h2v14h3zm-6.27-1.85c.17.42.27.87.27 1.35 0 1.93-1.57 3.5-3.5 3.5-1.4 0-2.6-.82-3.16-2H6.83A2.99 2.99 0 014 20c-1.66 0-3-1.34-3-3 0-.89.39-1.69 1-2.24V10h2V4h8l4.73 11.15zM5 17c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm8.65-4-2.97-7H6v4l2.92 3h4.73zM15 16.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10 4H4v4H2v3.51c-.6.46-1 1.17-1 1.99A2.5 2.5 0 003.5 16c1.02 0 1.9-.62 2.29-1.5h3.02c.46.89 1.37 1.5 2.44 1.5a2.748 2.748 0 002.56-3.75L10 4zm-.96 1.5 2.31 5H7.61L5.5 8.48V5.5h3.54zm-6.54 8c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm10-.25a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0z\\\"></path><polygon points=\\\"16.5,13.5 16.5,3 15,3 15,15 19,15 19,13.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"headphones_battery\": {\n    \"name\": \"headphones_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z\\\"></path><path d=\\\"M8,6c-3.31,0-6,2.69-6,6v4c0,1.1,0.9,2,2,2h2v-5H3.5v-1c0-2.48,2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5v1H10v5h2 c1.1,0,2-0.9,2-2v-4C14,8.69,11.31,6,8,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"start\": {\n    \"name\": \"start\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6-6l-6-6L14.59,7.41z M2,6v12h2V6H2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2.5,5v10H4V5H2.5z M17.5,10l-4,4l-1.06-1.06l2.19-2.19H5.5v-1.5h9.13l-2.19-2.19L13.5,6L17.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_windows\": {\n    \"name\": \"desktop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20 3H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h6v2H8v2h8v-2h-2v-2h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2\\\"></path></g>\"\n      }\n    }\n  },\n  \"toys\": {\n    \"name\": \"toys\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M22,14c0-1.95-1.4-3.57-3.25-3.92L17.4,6.05C17,4.82,15.85,4,14.56,4H9.44C8.15,4,7,4.82,6.6,6.05L5.81,8.4L4.41,7 l0.29-0.29c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2,2c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 L3,8.41l1.79,1.79C3.18,10.72,2,12.22,2,14c0,1.5,0.83,2.79,2.05,3.48C4.28,18.9,5.51,20,7,20c1.3,0,2.4-0.84,2.82-2h4.37 c0.41,1.16,1.51,2,2.82,2c1.49,0,2.72-1.1,2.95-2.52C21.17,16.79,22,15.5,22,14z M7,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S7.55,18,7,18z M11,10H7.41L7.39,9.98l1.1-3.3C8.63,6.27,9.01,6,9.44,6H11V10z M13,6h1.56c0.43,0,0.81,0.27,0.95,0.68L16.61,10H13 V6z M17,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,18,17,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.55,8.53l-0.83-2.49c-0.31-0.92-1.17-1.54-2.13-1.54H8.41c-0.97,0-1.83,0.62-2.13,1.54L5.73,7.67l-1-1l0.15-0.15 c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L2.47,6.82c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.14-0.14 l0.99,0.99C3.69,9.15,3,10.12,3,11.25c0,0.98,0.51,1.83,1.28,2.32c0.16,1.09,1.09,1.93,2.22,1.93c0.98,0,1.8-0.63,2.11-1.5h2.78 c0.31,0.87,1.14,1.5,2.11,1.5c1.13,0,2.06-0.84,2.22-1.93c0.77-0.49,1.28-1.34,1.28-2.32C17,9.84,15.92,8.68,14.55,8.53z M6.5,14 c-0.41,0-0.75-0.34-0.75-0.75S6.09,12.5,6.5,12.5s0.75,0.34,0.75,0.75S6.91,14,6.5,14z M9.25,8.5H7.04L7.7,6.51 C7.81,6.21,8.09,6,8.41,6h0.84V8.5z M10.75,8.5V6h0.84c0.32,0,0.61,0.21,0.71,0.51l0.66,1.99H10.75z M13.5,14 c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75S13.91,14,13.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_board\": {\n    \"name\": \"developer_board\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z\\\"></path><path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"conveyor_belt\": {\n    \"name\": \"conveyor_belt\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19 15H5c-1.66 0-3 1.34-3 3s1.34 3 3 3h14c1.66 0 3-1.34 3-3s-1.34-3-3-3zm0 4H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1zM9 4v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1h-8c-.55 0-1 .45-1 1zm7 4h-4V6.02h4V8zM2 9.02h4.94v1.91H2V9.02zm2.01-3h2.93v1.96H4.01V6.02z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.75 12.5H4.25C3.01 12.5 2 13.51 2 14.75S3.01 17 4.25 17h11.5c1.24 0 2.25-1.01 2.25-2.25s-1.01-2.25-2.25-2.25zm0 3H4.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h11.5c.41 0 .75.34.75.75s-.34.75-.75.75zM15.5 3h-7c-.28 0-.5.22-.5.5v7c0 .28.22.5.5.5h7c.28 0 .5-.22.5-.5v-7c0-.28-.22-.5-.5-.5zm-2 3.5h-3v-1h3v1zM6 9H2V7.5h4V9zm0-2.5H3.5V5H6v1.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"home_mini\": {\n    \"name\": \"home_mini\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,5C4.19,5,2,9.48,2,12c0,3.86,3.13,7,6.99,7h6.02c2.69,0,6.99-2.08,6.99-7C22,12,22,5,12,5z M12,7c7.64,0,7.99,4.51,8,5 H4C4,11.8,4.09,7,12,7z M14.86,17H9.14c-2.1,0-3.92-1.24-4.71-3h15.15C18.78,15.76,16.96,17,14.86,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_control_key\": {\n    \"name\": \"keyboard_control_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"5,12 6.41,13.41 12,7.83 17.59,13.41 19,12 12,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"5,10 6.06,11.06 10,7.12 13.94,11.06 15,10 10,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"connected_tv\": {\n    \"name\": \"connected_tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM4 14v2h2c0-1.11-.89-2-2-2zm0-3v1.43c1.97 0 3.57 1.6 3.57 3.57H9c0-2.76-2.24-5-5-5zm0-3v1.45c3.61 0 6.55 2.93 6.55 6.55H12c0-4.42-3.59-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_down\": {\n    \"name\": \"keyboard_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_connected\": {\n    \"name\": \"cast_connected\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\" opacity=\\\".1\\\"></path><path d=\\\"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_mac\": {\n    \"name\": \"desktop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h6l-2 2v1h8v-1l-2-2h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_display\": {\n    \"name\": \"smart_display\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M9.5,16.5v-9l7,4.5L9.5,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"point_of_sale\": {\n    \"name\": \"point_of_sale\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,3H6C5.45,3,5,3.45,5,4v1c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V4C15,3.45,14.55,3,14,3z M14,5H6V4h8V5z M16,17H4 c-0.55,0-1-0.45-1-1l0,0l0-1h14v1l0,0C17,16.55,16.55,17,16,17z M14.26,7.61C14.1,7.24,13.74,7,13.34,7H6.66 C6.26,7,5.9,7.24,5.74,7.61L3,14h14L14.26,7.61z M7.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,12.78,8.03,13,7.75,13z M7.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5S6.97,10,7.25,10h0.5 c0.28,0,0.5,0.22,0.5,0.5S8.03,11,7.75,11z M7.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,8.78,8.03,9,7.75,9z M10.25,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,12,9.75,12h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,13,10.25,13z M10.25,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C10.75,10.78,10.53,11,10.25,11z M10.25,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,8,9.75,8h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,9,10.25,9z M12.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,13,12.75,13z M12.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 C13.25,10.78,13.03,11,12.75,11z M12.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S11.97,8,12.25,8h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,9,12.75,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pallet\": {\n    \"name\": \"pallet\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"2,18 2,22 5,22 5,20 10.5,20 10.5,22 13.5,22 13.5,20 19,20 19,22 22,22 22,18\\\"></polygon><path d=\\\"M18 2H6c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-3 6H9V6h6v2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"2,15 2,18 4,18 4,16.5 9,16.5 9,18 11,18 11,16.5 16,16.5 16,18 18,18 18,15\\\"></polygon><path d=\\\"M15 2H5c-.28 0-.5.22-.5.5v10c0 .28.22.5.5.5h10c.28 0 .5-.22.5-.5v-10c0-.28-.22-.5-.5-.5zm-2.5 4.5h-5V5h5v1.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"scanner\": {\n    \"name\": \"scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm12 0H9v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_off\": {\n    \"name\": \"phonelink_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6V4H6.82l2 2H22zM1.92 1.65L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.27-1.27L3.89 3.62 1.92 1.65zM4 6.27L14.73 17H4V6.27zM23 8h-6c-.55 0-1 .45-1 1v4.18l2 2V10h4v7h-2.18l3 3H23c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"power_input\": {\n    \"name\": \"power_input\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_android\": {\n    \"name\": \"phone_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3.25-3H6.75V4h10.5v14z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_updated\": {\n    \"name\": \"browser_updated\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M22,13v3c0,1.1-0.9,2-2,2h-3l1,1v2H6v-2l1-1H4c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2l8,0v2L4,5v11h16v-3H22z M15,15l-5-5h4V3 h2v7h4L15,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M18,10.5v3c0,0.83-0.67,1.5-1.5,1.5H13l1,1v1H6v-1l1-1H3.5C2.67,15,2,14.33,2,13.5v-9C2,3.67,2.67,3,3.5,3h6.75v1.5H3.5v9 h13v-3H18z M16.5,9l-3.25,0V3h-1.5v6L8.5,9l4,4L16.5,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_alt\": {\n    \"name\": \"keyboard_alt\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M21,4H3C1.9,4,1,4.9,1,6v13c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M7,12v2H5v-2H7z M5,10V8h2v2H5z M11,12v2H9v-2H11z M9,10V8h2v2H9z M16,16v1H8v-1H16z M15,12v2h-2v-2H15z M13,10V8h2v2H13z M17,14v-2h2v2H17z M19,10h-2V8h2V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headset\": {\n    \"name\": \"headset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\" opacity=\\\".1\\\"></path><path d=\\\"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_voice\": {\n    \"name\": \"keyboard_voice\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\\\"></path>\"\n      }\n    }\n  },\n  \"mouse\": {\n    \"name\": \"mouse\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_tab\": {\n    \"name\": \"keyboard_tab\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_command_key\": {\n    \"name\": \"keyboard_command_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.5,3C15.57,3,14,4.57,14,6.5V8h-4V6.5C10,4.57,8.43,3,6.5,3S3,4.57,3,6.5S4.57,10,6.5,10H8v4H6.5 C4.57,14,3,15.57,3,17.5S4.57,21,6.5,21s3.5-1.57,3.5-3.5V16h4v1.5c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S19.43,14,17.5,14H16 v-4h1.5c1.93,0,3.5-1.57,3.5-3.5S19.43,3,17.5,3L17.5,3z M16,8V6.5C16,5.67,16.67,5,17.5,5S19,5.67,19,6.5S18.33,8,17.5,8H16L16,8 z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5V8H6.5L6.5,8z M10,14v-4h4v4H10L10,14z M17.5,19c-0.83,0-1.5-0.67-1.5-1.5 V16h1.5c0.83,0,1.5,0.67,1.5,1.5S18.33,19,17.5,19L17.5,19z M6.5,19C5.67,19,5,18.33,5,17.5S5.67,16,6.5,16H8v1.5 C8,18.33,7.33,19,6.5,19L6.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.25,11.5H13v-3h1.25C15.77,8.5,17,7.27,17,5.75S15.77,3,14.25,3S11.5,4.23,11.5,5.75V7h-3V5.75C8.5,4.23,7.27,3,5.75,3 S3,4.23,3,5.75S4.23,8.5,5.75,8.5H7v3H5.75C4.23,11.5,3,12.73,3,14.25S4.23,17,5.75,17s2.75-1.23,2.75-2.75V13h3v1.25 c0,1.52,1.23,2.75,2.75,2.75S17,15.77,17,14.25S15.77,11.5,14.25,11.5z M13,5.75c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S14.94,7,14.25,7H13V5.75z M5.75,7C5.06,7,4.5,6.44,4.5,5.75S5.06,4.5,5.75,4.5S7,5.06,7,5.75V7H5.75z M7,14.25 c0,0.69-0.56,1.25-1.25,1.25c-0.69,0-1.25-0.56-1.25-1.25S5.06,13,5.75,13H7h0V14.25z M8.5,11.5L8.5,11.5l0-3h3v3H8.5z M14.25,15.5 c-0.69,0-1.25-0.56-1.25-1.25V13h1.25c0.69,0,1.25,0.56,1.25,1.25S14.94,15.5,14.25,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop_mac\": {\n    \"name\": \"laptop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"router\": {\n    \"name\": \"router\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.2 5.9l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1 .9 0 1.8.3 2.5 1l.8-.8zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_off\": {\n    \"name\": \"headset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c3.87 0 7 3.13 7 7v2h-2.92L21 17.92V11c0-4.97-4.03-9-9-9-1.95 0-3.76.62-5.23 1.68l1.44 1.44C9.3 4.41 10.6 4 12 4zM2.27 1.72L1 3l3.33 3.32C3.49 7.68 3 9.29 3 11v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-1.17.29-2.26.79-3.22L15 17v4h3c.3 0 .59-.06.86-.14L21 23l1.27-1.27-20-20.01z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor\": {\n    \"name\": \"monitor\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z\\\"></path>\"\n      }\n    }\n  },\n  \"front_loader\": {\n    \"name\": \"front_loader\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"m19.5 6.5-1.91 1.91c-.38.38-.59.89-.59 1.42V11h-1V7c0-1.66-1.34-3-3-3H8v5H3c-1.1 0-2 .9-2 2v5.85c0 1.58 1.16 3.01 2.74 3.14a2.99 2.99 0 003.07-1.98l4.37-.01a2.979 2.979 0 003.41 1.94 3.013 3.013 0 002.35-2.39c.2-1.11-.22-2.11-.95-2.77V13h1c0 1.1.9 2 2 2h5L19.5 6.5zM4 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6-12h3c.55 0 1 .45 1 1v4h-4V6zm4 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"m15.5 5.5-1.2 1.6c-.19.26-.3.58-.3.9v1h-1V6c0-1.1-.9-2-2-2H7v3H2.5C1.67 7 1 7.67 1 8.5v5a2.5 2.5 0 004.95.5h3.1a2.5 2.5 0 004.95-.5c0-.82-.4-1.53-1-1.99V10.5h1v.5c0 .83.67 1.5 1.5 1.5H20l-4.5-7zm-12 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5-9H11c.28 0 .5.22.5.5v3h-3V5.5zm3 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-6.23L17.25 11H15.5V8.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"devices_other\": {\n    \"name\": \"devices_other\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_up\": {\n    \"name\": \"keyboard_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_left\": {\n    \"name\": \"keyboard_double_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.59,18 19,16.59 14.42,12 19,7.41 17.59,6 11.59,12\\\"></polygon><polygon points=\\\"11,18 12.41,16.59 7.83,12 12.41,7.41 11,6 5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14.94,15 16,13.94 12.06,10 16,6.06 14.94,5 9.94,10\\\"></polygon><polygon points=\\\"9,15 10.06,13.94 6.12,10 10.06,6.06 9,5 4,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_right\": {\n    \"name\": \"keyboard_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink\": {\n    \"name\": \"phonelink\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_left\": {\n    \"name\": \"keyboard_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3_select\": {\n    \"name\": \"timer_3_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,11v2h-4v1h2.5c0.83,0,1.5,0.68,1.5,1.5v2c0,0.83-0.67,1.5-1.5,1.5H15v-2h4v-1h-2.5c-0.82,0-1.5-0.68-1.5-1.5v-2 c0-0.82,0.68-1.5,1.5-1.5H21z M4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1 V8c0-1.66-1.34-3-3-3H4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_no_sim\": {\n    \"name\": \"signal_cellular_no_sim\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M-618-2872H782V728H-618zM-1 0h26v24H-1zm1 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z\\\"></path><path d=\\\"M.01 0h24v24h-24z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"data_usage\": {\n    \"name\": \"data_usage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"mobiledata_off\": {\n    \"name\": \"mobiledata_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"16,7 19,7 15,3 11,7 14,7 14,11.17 16,13.17\\\"></polygon><polygon points=\\\"2.81,2.81 1.39,4.22 8,10.83 8,17.01 5,17.02 9,21 13,17 10,17.01 10,12.83 19.78,22.61 21.19,21.19\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"battery_full\": {\n    \"name\": \"battery_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_0_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M18,20v2H2L22,2v6h-2V6.83L6.83,20H18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,9v6H18V9H16.5z M2,18h13v-1.5H5.62L16.5,5.62V7.5H18V2L2,18z M18,18h-1.5v-1.5H18V18z\\\"></path>\"\n      }\n    }\n  },\n  \"graphic_eq\": {\n    \"name\": \"graphic_eq\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_friendly\": {\n    \"name\": \"mobile_friendly\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_off\": {\n    \"name\": \"media_bluetooth_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,6.17V3h6v4h-4v1.17L9,6.17z M19.42,15L22,17.57l-0.8,0.8l-6.78-6.78l0.8-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15z M19.17,13.55l1.13-1.13l-1.13-1.13V13.55z M21.19,21.19l-1.41,1.41l-3.98-3.98l-0.58,0.58l-0.85-0.85l0.58-0.58L11,13.83V17 c0,2.21-1.78,4-3.99,4S3,19.21,3,17s1.79-4,4.01-4c0.73,0,1.41,0.21,2,0.55v-1.72L1.39,4.22L2.8,2.81L21.19,21.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_2_bar\": {\n    \"name\": \"network_wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M16.78,13.38C15.4,12.5,13.76,12,12,12 c-1.76,0-3.4,0.5-4.78,1.38l-4.3-4.3C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L16.78,13.38z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M6.36,11.25L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5 c2.83,0,5.54,0.91,7.79,2.6l-4.15,4.15C12.58,10.43,11.33,10,10,10C8.67,10,7.42,10.43,6.36,11.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bloodtype\": {\n    \"name\": \"bloodtype\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M15,18H9v-2h6V18z M15,13h-2 v2h-2v-2H9v-2h2V9h2v2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"medication_liquid\": {\n    \"name\": \"medication_liquid\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><path d=\\\"M14,6H4C2.9,6,2,6.9,2,8v11c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V8C16,6.9,15.1,6,14,6z M13,15h-2.5v2.5h-3V15H5v-3h2.5 V9.5h3V12H13V15z\\\"></path><path d=\\\"M20,6c-1.68,0-3,1.76-3,4c0,1.77,0.83,3.22,2,3.76V20c0,0.55,0.45,1,1,1s1-0.45,1-1v-6.24c1.17-0.54,2-1.99,2-3.76 C23,7.76,21.68,6,20,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><path d=\\\"M11.5,5.5h-8C2.67,5.5,2,6.17,2,7v8.5C2,16.33,2.67,17,3.5,17h8c0.83,0,1.5-0.67,1.5-1.5V7C13,6.17,12.33,5.5,11.5,5.5z M10.5,12h-2v2h-2v-2h-2v-2h2V8h2v2h2V12z\\\"></path><path d=\\\"M16.5,5.5c-1.38,0-2.5,1.46-2.5,3.25c0,1.45,0.74,2.67,1.75,3.08v4.42c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75 v-4.42C18.26,11.42,19,10.2,19,8.75C19,6.96,17.88,5.5,16.5,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dark_mode\": {\n    \"name\": \"dark_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36c-0.98,1.37-2.58,2.26-4.4,2.26 c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7c0-0.36-0.03-0.72-0.08-1.06C16.16,10,14.91,10.7,13.5,10.7 c-2.32,0-4.2-1.88-4.2-4.2c0-1.41,0.7-2.66,1.76-3.42C10.72,3.03,10.36,3,10,3L10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"reset_tv\": {\n    \"name\": \"reset_tv\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 10h-8.01V7L9 11l3.99 4v-3H21v5H3V5h18v3h2V5c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2v-5H23c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_1_bar\": {\n    \"name\": \"signal_cellular_alt_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,14h3v6H5V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,16h2v-5H5V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airplane_ticket\": {\n    \"name\": \"airplane_ticket\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20.19,4H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6 C22,4.9,21.19,4,20.19,4z M17.73,13.3l-8.86,2.36l-1.66-2.88l0.93-0.25l1.26,0.99l2.39-0.64l-2.4-4.16l1.4-0.38l4.01,3.74 l2.44-0.65c0.51-0.14,1.04,0.17,1.18,0.68C18.55,12.62,18.25,13.15,17.73,13.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth\": {\n    \"name\": \"bluetooth\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_nodata\": {\n    \"name\": \"signal_cellular_nodata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,13h-9v9H2L22,2V13z M21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21 L21,19.59l-2.08-2.09L21,15.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_inactive\": {\n    \"name\": \"airplanemode_inactive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M13.12,11.71L9,7.59V4c0-0.55,0.45-1,1-1s1,0.45,1,1v4l6,4v1L13.12,11.71z M17.07,17.07L2.93,2.93L2.22,3.64l5.33,5.33 L3,12v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-2.59l5.36,5.36L17.07,17.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_auto\": {\n    \"name\": \"brightness_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z\\\"></path>\"\n      }\n    }\n  },\n  \"device_thermostat\": {\n    \"name\": \"device_thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_lock_rotation\": {\n    \"name\": \"screen_lock_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.25 12.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L4.51 8.17l5.66-5.66 2.1 2.1 1.41-1.41L11.23.75c-.59-.59-1.54-.59-2.12 0L2.75 7.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM8.47 20.48C5.2 18.94 2.86 15.76 2.5 12H1c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.82-1.33 1.33zM16 9h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1v-.5C21 1.12 19.88 0 18.5 0S16 1.12 16 2.5V3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V3h-3.4v-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"dvr\": {\n    \"name\": \"dvr\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_disabled\": {\n    \"name\": \"bluetooth_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"h_mobiledata\": {\n    \"name\": \"h_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_system_daydream\": {\n    \"name\": \"settings_system_daydream\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_charging_full\": {\n    \"name\": \"battery_charging_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z\\\"></path>\"\n      }\n    }\n  },\n  \"flourescent\": {\n    \"name\": \"flourescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"6\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"9\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"light_mode\": {\n    \"name\": \"light_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0 c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2 c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1 C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06 c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41 l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41 c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36 c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,6c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4S7.79,6,10,6L10,6z M3.75,10.75c0.41,0,0.75-0.34,0.75-0.75 c0-0.41-0.34-0.75-0.75-0.75h-2C1.34,9.25,1,9.59,1,10s0.34,0.75,0.75,0.75H3.75z M18.25,10.75c0.41,0,0.75-0.34,0.75-0.75 c0-0.41-0.34-0.75-0.75-0.75h-2c-0.41,0-0.75,0.34-0.75,0.75s0.34,0.75,0.75,0.75H18.25z M9.25,3.75C9.25,4.16,9.59,4.5,10,4.5 c0.41,0,0.75-0.34,0.75-0.75v-2C10.75,1.34,10.41,1,10,1S9.25,1.34,9.25,1.75V3.75z M13.89,5.05c-0.29,0.29-0.29,0.77,0,1.06 s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L13.89,5.05z M3.99,14.95 c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L3.99,14.95z M5.05,6.11c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L5.05,3.99c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06L5.05,6.11z M14.95,16.01c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06 L14.95,16.01z M9.25,18.25C9.25,18.66,9.59,19,10,19c0.41,0,0.75-0.34,0.75-0.75v-2c0-0.41-0.34-0.75-0.75-0.75 s-0.75,0.34-0.75,0.75V18.25z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_1_bar\": {\n    \"name\": \"battery_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v12h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v9.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_password\": {\n    \"name\": \"wifi_password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23,19v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C24,19.45,23.55,19,23,19z M22,19h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V19z M24,8.98l-2.12,2.13C19.35,8.57,15.85,7,12,7 s-7.35,1.57-9.88,4.11L0,8.98C3.07,5.9,7.31,4,12,4S20.93,5.9,24,8.98z M12,10c3.03,0,5.78,1.23,7.76,3.22l-2.12,2.12 C16.2,13.9,14.2,13,12,13c-2.2,0-4.2,0.9-5.64,2.35l-2.12-2.12C6.22,11.23,8.97,10,12,10z M15.53,17.46L12,21l-3.53-3.54 C9.37,16.56,10.62,16,12,16S14.63,16.56,15.53,17.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M20,7.01l-1.42,1.42C16.34,6.31,13.32,5,10,5S3.66,6.31,1.42,8.43L0,7.01C2.6,4.53,6.12,3,10,3C13.88,3,17.4,4.53,20,7.01 z M3.54,10.54l1.42,1.42C6.29,10.75,8.06,10,10,10c1.94,0,3.71,0.75,5.04,1.96l1.42-1.42C14.76,8.97,12.5,8,10,8 S5.24,8.97,3.54,10.54z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z M16.75,16h1.5v-1 c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V16z M20,19c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-2c0-0.55,0.45-1,1-1v-1 c0-0.82,0.67-1.5,1.5-1.5S19,14.18,19,15v1c0.55,0,1,0.45,1,1V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarm\": {\n    \"name\": \"access_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_channel\": {\n    \"name\": \"wifi_channel\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,3c-2.51,0-3.77,5.61-4.4,10.57C10.79,10.66,9.61,8,8,8C4.43,8,3,21,3,21h2.01c0.61-5.27,2-9.82,2.99-10.87 c0.98,1.05,2.38,5.61,2.99,10.87H13c0.5-2.53,2-6,3-6s2.5,3.53,3,6h2C21,21,20.5,3,16,3z M16,13c-0.99,0-1.82,0.62-2.5,1.5 c0.57-4.77,1.54-8.62,2.5-9.44c0.97,0.81,1.91,4.67,2.49,9.43C17.81,13.62,16.98,13,16,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.12,3c-1.96,0-2.94,4.51-3.42,8.41C9.08,9.12,8.15,7,6.88,7C4.1,7,3,17,3,17h1.5C5,12.83,6.11,9.28,6.88,8.57 C7.64,9.28,8.75,12.83,9.25,17h1.5c0.39-1.97,1.59-4.5,2.38-4.5c0.77,0,1.99,2.58,2.38,4.5H17C17,17,16.58,3,13.12,3z M13.12,11 c-0.81,0-1.49,0.54-2.04,1.28c0.47-4.11,1.31-7.16,2.04-7.74c0.73,0.58,1.57,3.63,2.04,7.74C14.62,11.54,13.94,11,13.12,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth_drive\": {\n    \"name\": \"bluetooth_drive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,10H4.81l1.04-3H15V5H5.5C4.84,5,4.29,5.42,4.08,6.01L2,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12v1 c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8h-3C15.9,12,15,11.1,15,10z M6.5,16C5.67,16,5,15.33,5,14.5S5.67,13,6.5,13 S8,13.67,8,14.5S7.33,16,6.5,16z M15.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z\\\"></path><path d=\\\"M22,3.85L19.15,1h-0.5v3.79l-2.3-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3-2.3V11h0.5L22,8.14L19.85,6L22,3.85z M19.65,2.91l0.94,0.94l-0.94,0.94V2.91z M20.59,8.14l-0.94,0.94V7.2L20.59,8.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edgesensor_high\": {\n    \"name\": \"edgesensor_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7h2v7H3V7z M0,10h2v7H0V10z M22,7h2v7h-2V7z M19,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8 c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,17H8V7h8V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_0_bar\": {\n    \"name\": \"signal_wifi_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6L12,6c3.33,0,6.49,1.08,9.08,3.07L12,18.17l-9.08-9.1C5.51,7.08,8.67,6,12,6 M12,4C7.31,4,3.07,5.9,0,8.98L12,21 L24,8.98C20.93,5.9,16.69,4,12,4L12,4z\\\"></path>\"\n      }\n    }\n  },\n  \"note_alt\": {\n    \"name\": \"note_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M9.1,17H7 v-2.14l5.96-5.96l2.12,2.12L9.1,17z M16.85,9.27l-1.06,1.06l-2.12-2.12l1.06-1.06c0.2-0.2,0.51-0.2,0.71,0l1.41,1.41 C17.05,8.76,17.05,9.07,16.85,9.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gpp_maybe\": {\n    \"name\": \"gpp_maybe\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M13,16h-2v-2h2V16z M13,12h-2V7h2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"devices_fold\": {\n    \"name\": \"devices_fold\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,3h-3c0-1.43-1.47-2.4-2.79-1.84l-3,1.29C10.48,2.76,10,3.49,10,4.29V19c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19h-5.33l1.12-0.48C16.52,18.2,17,17.48,17,16.68V5h3V19z\\\"></path></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"19\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"15\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"11\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"19\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"6.12\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"9.25\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"12.38\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"15.5\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"15.5\\\"></rect></g><g><path d=\\\"M16.5,3h-3V2.5c0-1.14-1.22-1.86-2.22-1.32l-2.5,1.36C8.3,2.81,8,3.32,8,3.87V15.5C8,16.33,8.67,17,9.5,17h7 c0.83,0,1.5-0.67,1.5-1.5v-11C18,3.67,17.33,3,16.5,3z M16.5,15.5h-5.75l1.97-1.07c0.48-0.26,0.78-0.77,0.78-1.32V4.5h3V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"battery_saver\": {\n    \"name\": \"battery_saver\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,4h-2V2h-4v2H8C7.45,4,7,4.45,7,5v16c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M15,14h-2v2h-2 v-2H9v-2h2v-2h2v2h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_4_bar\": {\n    \"name\": \"battery_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v6h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v5 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water\": {\n    \"name\": \"water\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,14H22H21.98z M5.35,13c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c1.19,0,1.4,0.98,3.31,1v-2c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1 c-1.19,0-1.42-1-3.33-1C3.38,11,3.24,12,2,12v2C3.9,14,4.17,13,5.35,13z M18.67,15c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1 c1.95,0,2.1-1,3.34-1c1.19,0,1.42,1,3.33,1c1.94,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1v-2C20.76,16,20.62,15,18.67,15z M5.35,9 c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1V8 c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1C10.04,7,9.9,8,8.66,8C7.47,8,7.24,7,5.33,7 C3.38,7,3.24,8,2,8v2C3.9,10,4.17,9,5.35,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thermostat\": {\n    \"name\": \"thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M15,13V5c0-1.66-1.34-3-3-3S9,3.34,9,5v8c-1.21,0.91-2,2.37-2,4c0,2.76,2.24,5,5,5s5-2.24,5-5C17,15.37,16.21,13.91,15,13z M11,11V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-1v1h1v1v1h-1v1h1v1H11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09L15.41,14L14,15.41 l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_4x4\": {\n    \"name\": \"grid_4x4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22z M7,7h4v4 H7V7z M7,17v-4h4v4H7z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt\": {\n    \"name\": \"signal_cellular_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h3v16h-3zM5 14h3v6H5zm6-5h3v11h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_on_select\": {\n    \"name\": \"hdr_on_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M12,4c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4 S9.79,4,12,4 M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_null\": {\n    \"name\": \"signal_wifi_statusbar_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 c3.33,0,6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_disabled\": {\n    \"name\": \"location_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_0_bar\": {\n    \"name\": \"battery_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v14h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v11.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_2_bar\": {\n    \"name\": \"battery_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v10h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v8 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_3x3\": {\n    \"name\": \"grid_3x3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phishing\": {\n    \"name\": \"phishing\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9c0-1.3-0.84-2.4-2-2.82V2h-2v4.18C13.84,6.6,13,7.7,13,9s0.84,2.4,2,2.82V15c0,2.21-1.79,4-4,4s-4-1.79-4-4v-1h3L5,9 v6c0,3.31,2.69,6,6,6s6-2.69,6-6v-3.18C18.16,11.4,19,10.3,19,9z M16,10c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S16.55,10,16,10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,5.39V2h-1.5v3.39C10.63,5.7,10,6.52,10,7.5c0,0.98,0.63,1.8,1.5,2.11V13c0,1.38-1.12,2.5-2.5,2.5S6.5,14.38,6.5,13v-1 H9L5,8v5c0,2.21,1.79,4,4,4s4-1.79,4-4V9.61c0.87-0.31,1.5-1.13,1.5-2.11C14.5,6.52,13.87,5.7,13,5.39z M12.25,8.25 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S13,7.09,13,7.5C13,7.91,12.66,8.25,12.25,8.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_4_bar\": {\n    \"name\": \"signal_cellular_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 22h20V2z\\\"></path>\"\n      }\n    }\n  },\n  \"devices\": {\n    \"name\": \"devices\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error_rounded\": {\n    \"name\": \"wifi_tethering_error_rounded\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_not_disturb_on_total_silence\": {\n    \"name\": \"do_not_disturb_on_total_silence\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.4,6,12,6z M15,13H9v-2h6V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_connected\": {\n    \"name\": \"bluetooth_connected\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_security_update\": {\n    \"name\": \"system_security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3z M17,18H7V6h10V18z M16,12h-3V8h-2v4H8 l4,4L16,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mobile_off\": {\n    \"name\": \"mobile_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.76 2.49L1.49 3.76 5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.27-1.27L2.76 2.49zM7 19V9.27L16.73 19H7zM17 5v9.17l2 2V3c0-1.1-.9-2-2-2H7c-.85 0-1.58.54-1.87 1.3L7.83 5H17z\\\"></path>\"\n      }\n    }\n  },\n  \"network_wifi_3_bar\": {\n    \"name\": \"network_wifi_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-2.85,2.86C16.46,10.71,14.31,10,12,10c-2.31,0-4.46,0.71-6.23,1.93L2.92,9.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M14.71,10.18C13.35,9.08,11.73,8.5,10,8.5 c-1.73,0-3.35,0.58-4.71,1.68L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L14.71,10.18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_standby\": {\n    \"name\": \"mode_standby\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,10.34,15,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_bad\": {\n    \"name\": \"signal_wifi_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09L15.41,14L14,15.41 l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"discount\": {\n    \"name\": \"discount\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12.79,21L3,11.21v2c0,0.53,0.21,1.04,0.59,1.41l7.79,7.79c0.78,0.78,2.05,0.78,2.83,0l6.21-6.21 c0.78-0.78,0.78-2.05,0-2.83L12.79,21z\\\"></path></g><g><path d=\\\"M11.38,17.41c0.78,0.78,2.05,0.78,2.83,0l6.21-6.21c0.78-0.78,0.78-2.05,0-2.83l-7.79-7.79C12.25,0.21,11.74,0,11.21,0H5 C3.9,0,3,0.9,3,2v6.21c0,0.53,0.21,1.04,0.59,1.41L11.38,17.41z M7.25,3C7.94,3,8.5,3.56,8.5,4.25S7.94,5.5,7.25,5.5 S6,4.94,6,4.25S6.56,3,7.25,3z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16.56,11.53l-5.97,5.97L3,9.91v1.5c0,0.4,0.16,0.78,0.44,1.06l6.09,6.09C9.82,18.85,10.21,19,10.59,19 c0.38,0,0.77-0.15,1.06-0.44l4.91-4.91C17.15,13.07,17.15,12.12,16.56,11.53L16.56,11.53z\\\"></path></g><g><path d=\\\"M9.53,14.56c0.59,0.59,1.54,0.59,2.12,0l4.91-4.91c0.59-0.59,0.59-1.54,0-2.12l-6.09-6.09C10.19,1.16,9.81,1,9.41,1H4.5 C3.67,1,3,1.67,3,2.5v4.91c0,0.4,0.16,0.78,0.44,1.06L9.53,14.56z M6.5,3.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S5.95,3.5,6.5,3.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"battery_std\": {\n    \"name\": \"battery_std\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"widgets\": {\n    \"name\": \"widgets\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z\\\"></path>\"\n      }\n    }\n  },\n  \"flashlight_off\": {\n    \"name\": \"flashlight_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"18,5 18,2 6,2 6,3.17 7.83,5\\\"></polygon><polygon points=\\\"16,11 18,8 18,7 9.83,7 16,13.17\\\"></polygon><path d=\\\"M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41-1.41L2.81,2.81z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_warning\": {\n    \"name\": \"system_security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M17,1H7C5.9,1,5.01,1.9,5.01,3v18c0,1.1,0.89,2,1.99,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"task\": {\n    \"name\": \"task\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M10.94,18L7.4,14.46l1.41-1.41 l2.12,2.12l4.24-4.24l1.41,1.41L10.94,18z M13,9V3.5L18.5,9H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"share_location\": {\n    \"name\": \"share_location\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.02,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.42-1.43C15.81,19.17,14.48,19.75,13.02,19.93z\\\"></path><path d=\\\"M4.03,12c0-4.05,3.03-7.41,6.95-7.93V2.05C5.95,2.58,2.03,6.84,2.03,12c0,5.16,3.92,9.42,8.95,9.95v-2.02 C7.06,19.41,4.03,16.05,4.03,12z\\\"></path><path d=\\\"M19.95,11h2.02c-0.2-2.01-1-3.84-2.21-5.32l-1.43,1.43C19.19,8.21,19.77,9.54,19.95,11z\\\"></path><path d=\\\"M18.34,4.26c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.34,4.26z\\\"></path><path d=\\\"M18.33,16.9l1.43,1.42c1.21-1.48,2.01-3.31,2.21-5.32h-2.02C19.77,14.46,19.19,15.79,18.33,16.9z\\\"></path><g><path d=\\\"M16,11.1C16,8.61,14.1,7,12,7s-4,1.61-4,4.1c0,1.66,1.33,3.63,4,5.9C14.67,14.73,16,12.76,16,11.1z M12,12 c-0.59,0-1.07-0.48-1.07-1.07c0-0.59,0.48-1.07,1.07-1.07s1.07,0.48,1.07,1.07C13.07,11.52,12.59,12,12,12z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"password\": {\n    \"name\": \"password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,17h20v2H2V17z M3.15,12.95L4,11.47l0.85,1.48l1.3-0.75L5.3,10.72H7v-1.5H5.3l0.85-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75 L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95z M9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H15v-1.5h-1.7l0.85-1.47 L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2z M23,9.22h-1.7l0.85-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75 l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H23V9.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update\": {\n    \"name\": \"security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3z M17,18H7V6h10V18z M16,12h-3V8h-2v4H8 l4,4L16,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"developer_mode\": {\n    \"name\": \"developer_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"screenshot\": {\n    \"name\": \"screenshot\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M9.5,8.5H12V7H8v4h1.5V8.5z M12,17h4v-4h-1.5v2.5H12V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_2_bar\": {\n    \"name\": \"signal_cellular_alt_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,14h3v6H5V14z M11,9h3v11h-3V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,8h2v8H9V8z M5,16h2v-5H5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dataset\": {\n    \"name\": \"dataset\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,17H7v-4h4V17z M11,11H7V7h4V11 z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M9,14H6v-3h3V14z M9,9H6V6h3V9z M14,14h-3v-3h3V14z M14,9h-3V6h3V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_score\": {\n    \"name\": \"sports_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,6H9V4h2V6z M15,4h-2v2h2V4z M9,14h2v-2H9V14z M19,10V8h-2v2H19z M19,14v-2h-2v2H19z M13,14h2v-2h-2V14z M19,4h-2v2h2 V4z M13,8V6h-2v2H13z M7,10V8h2V6H7V4H5v16h2v-8h2v-2H7z M15,12h2v-2h-2V12z M11,10v2h2v-2H11z M9,8v2h2V8H9z M13,10h2V8h-2V10z M15,6v2h2V6H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation\": {\n    \"name\": \"screen_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto\": {\n    \"name\": \"hdr_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"12.04,8.04 11.95,8.04 10.35,12.59 13.64,12.59\\\"></polygon><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M15.21,17l-0.98-2.81H9.78l-1,2.81h-1.9l4.13-11 h1.97l4.13,11H15.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flashlight_on\": {\n    \"name\": \"flashlight_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"2\\\"></rect><path d=\\\"M6,7v1l2,3v11h8V11l2-3V7H6z M12,15.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,15.5,12,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_fixed\": {\n    \"name\": \"gps_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error\": {\n    \"name\": \"wifi_tethering_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><circle cx=\\\"10\\\" cy=\\\"11\\\" r=\\\"1.5\\\"></circle><path d=\\\"M10,6c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,12.84,6.5,11.96,6.5,11c0-1.93,1.57-3.5,3.5-3.5 s3.5,1.57,3.5,3.5c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,13.63,15,12.38,15,11C15,8.24,12.76,6,10,6z\\\"></path><path d=\\\"M10,3c-4.42,0-8,3.58-8,8c0,2.21,0.9,4.21,2.34,5.66l1.06-1.06C4.23,14.42,3.5,12.79,3.5,11c0-3.58,2.92-6.5,6.5-6.5 c2.3,0,4.31,1.2,5.47,3h1.72C15.89,4.84,13.16,3,10,3z\\\"></path><rect height=\\\"5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_off\": {\n    \"name\": \"signal_cellular_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1l-8.59 8.59L21 18.18V1zM4.77 4.5L3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73 4.77 4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_lock_portrait\": {\n    \"name\": \"screen_lock_portrait\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"pin\": {\n    \"name\": \"pin\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M7.64,15H6.49v-4.5l-0.9,0.66 l-0.58-0.89L6.77,9h0.87V15z M13.5,15H9.61v-1.02c1.07-1.07,1.77-1.77,2.13-2.15c0.4-0.42,0.54-0.69,0.54-1.06 c0-0.4-0.31-0.72-0.81-0.72c-0.52,0-0.8,0.39-0.9,0.72l-1.01-0.42c0.01-0.02,0.18-0.76,1-1.15c0.69-0.33,1.48-0.2,1.95,0.03 c0.86,0.44,0.91,1.24,0.91,1.48c0,0.64-0.31,1.26-0.92,1.86c-0.25,0.25-0.72,0.71-1.4,1.39l0.03,0.05h2.37V15z M18.75,14.15 C18.67,14.28,18.19,15,16.99,15c-0.04,0-1.6,0.08-2.05-1.51l1.03-0.41c0.03,0.1,0.19,0.86,1.02,0.86c0.41,0,0.89-0.28,0.89-0.77 c0-0.55-0.48-0.79-1.04-0.79h-0.5v-1h0.46c0.33,0,0.88-0.14,0.88-0.72c0-0.39-0.31-0.65-0.75-0.65c-0.5,0-0.74,0.32-0.85,0.64 l-0.99-0.41C15.2,9.9,15.68,9,16.94,9c1.09,0,1.54,0.64,1.62,0.75c0.33,0.5,0.28,1.16,0.02,1.57c-0.15,0.22-0.32,0.38-0.52,0.48 v0.07c0.28,0.11,0.51,0.28,0.68,0.52C19.11,12.91,19.07,13.66,18.75,14.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"4g_mobiledata\": {\n    \"name\": \"4g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7z M17,11v2h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5 c1.1,0,2-0.9,2-2v-4H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_to_home_screen\": {\n    \"name\": \"add_to_home_screen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41z\\\"></path>\"\n      }\n    }\n  },\n  \"usb_off\": {\n    \"name\": \"usb_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8h4v4h-1v2c0,0.34-0.08,0.66-0.23,0.94L16,13.17V12h-1V8z M11,8.17l2,2V6h2l-3-4L9,6h2V8.17z M13,16v2.28 c0.6,0.34,1,0.98,1,1.72c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.74,0.4-1.37,1-1.72V16H8c-1.11,0-2-0.89-2-2v-2.28C5.4,11.38,5,10.74,5,10 c0-0.59,0.26-1.13,0.68-1.49L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L13.17,16H13z M11,14v-0.17l-2.51-2.51 c-0.14,0.16-0.31,0.29-0.49,0.4V14H11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,5H7.5L10,2l2.5,3h-1.75v3.63l-1.5-1.5V5z M12.5,10h0.75v1.13l1.23,1.23c0.17-0.24,0.27-0.54,0.27-0.86V10h0.75V7h-3 V10z M10.75,13v2.21c0.45,0.26,0.75,0.74,0.75,1.29c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.55,0.3-1.03,0.75-1.29V13h-2.5 c-0.83,0-1.5-0.67-1.5-1.5V9.79C4.8,9.53,4.5,9.05,4.5,8.5c0-0.51,0.26-0.96,0.65-1.23L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06 L10.88,13H10.75z M9.25,11.5v-0.13L7.23,9.35C7.1,9.53,6.94,9.68,6.75,9.79v1.71H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_1_bar\": {\n    \"name\": \"wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.53,17.46L12,21l-3.53-3.54C9.37,16.56,10.62,16,12,16S14.63,16.56,15.53,17.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,13c1.12,0,2.12,0.42,2.91,1.09L10,17l-2.91-2.91C7.88,13.42,8.88,13,10,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"summarize\": {\n    \"name\": \"summarize\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,3H5C3.9,3,3.01,3.9,3.01,5L3,19c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V9L15,3z M8,17c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S8.55,17,8,17z M8,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S8.55,13,8,13z M8,9C7.45,9,7,8.55,7,8s0.45-1,1-1 s1,0.45,1,1S8.55,9,8,9z M14,10V4.5l5.5,5.5H14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_medium\": {\n    \"name\": \"brightness_medium\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"add_alarm\": {\n    \"name\": \"add_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off_select\": {\n    \"name\": \"hdr_off_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M10.98,4.15L9.42,2.59c5.1-2.42,10.41,2.89,7.99,7.99 l-1.56-1.56C16.66,6.06,13.94,3.34,10.98,4.15z M6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1,2.89,10.41,7.99,7.99l1.66,1.66 l1.41-1.41L6.34,2.34z M8.15,6.98l4.87,4.87C10.06,12.66,7.34,9.94,8.15,6.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"send_to_mobile\": {\n    \"name\": \"send_to_mobile\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,17h2v4c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-1.99,2-1.99L17,1c1.1,0,2,0.9,2,2v4h-2V6H7v12h10V17z M22,12 l-4-4v3h-5v2h5v3L22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"dataset_linked\": {\n    \"name\": \"dataset_linked\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.09,17H7v-4h3.69c0.95-0.63,2.09-1,3.31-1h6c0.34,0,0.67,0.04,1,0.09V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h3.81C8.3,20.12,8,19.09,8,18C8,17.66,8.04,17.33,8.09,17z M13,7h4v4h-4V7z M7,7h4v4H7V7z\\\"></path><path d=\\\"M12,18c0-1.1,0.9-2,2-2h2v-2h-2c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2h-2C12.9,20,12,19.1,12,18z\\\"></path><path d=\\\"M20,14h-2v2h2c1.1,0,2,0.9,2,2s-0.9,2-2,2h-2v2h2c2.21,0,4-1.79,4-4C24,15.79,22.21,14,20,14z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"14\\\" y=\\\"17\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,14v-3h3l0.37,0c0.65-0.31,1.37-0.5,2.13-0.5h5c0.17,0,0.33,0.03,0.5,0.05V4.5C17,3.67,16.33,3,15.5,3h-11 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h2.25C6.6,16.52,6.5,16.03,6.5,15.5s0.1-1.02,0.25-1.5H6z M11,6h3v3h-3V6z M6,6h3 v3H6V6z\\\"></path><path d=\\\"M9.5,15.5c0-1.1,0.9-2,2-2h1.75V12H11.5C9.57,12,8,13.57,8,15.5S9.57,19,11.5,19h1.75v-1.5H11.5 C10.4,17.5,9.5,16.6,9.5,15.5z\\\"></path><path d=\\\"M16.5,12h-1.75v1.5h1.75c1.1,0,2,0.9,2,2s-0.9,2-2,2h-1.75V19h1.75c1.93,0,3.5-1.57,3.5-3.5S18.43,12,16.5,12z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4.5\\\" x=\\\"11.75\\\" y=\\\"14.75\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mode_night\": {\n    \"name\": \"mode_night\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M9.5,2c-1.82,0-3.53,0.5-5,1.35c2.99,1.73,5,4.95,5,8.65s-2.01,6.92-5,8.65C5.97,21.5,7.68,22,9.5,22c5.52,0,10-4.48,10-10 S15.02,2,9.5,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_4_bar\": {\n    \"name\": \"signal_wifi_statusbar_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_high\": {\n    \"name\": \"brightness_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"ad_units\": {\n    \"name\": \"ad_units\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM8 6h8v2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"4g_plus_mobiledata\": {\n    \"name\": \"4g_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,11v2h2v2h-4V9h6c0-1.1-0.9-2-2-2h-4C9.9,7,9,7.9,9,9v6c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-4H13z M24,11h-2V9h-2v2h-2 v2h2v2h2v-2h2V11z M7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"r_mobiledata\": {\n    \"name\": \"r_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0,2,0.87,2,2v1.33C9,6.13,8.47,6.87,7.8,7.2z M7,4H4v1.33h3V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sell\": {\n    \"name\": \"sell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21.41,11.41l-8.83-8.83C12.21,2.21,11.7,2,11.17,2H4C2.9,2,2,2.9,2,4v7.17c0,0.53,0.21,1.04,0.59,1.41l8.83,8.83 c0.78,0.78,2.05,0.78,2.83,0l7.17-7.17C22.2,13.46,22.2,12.2,21.41,11.41z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5 S7.33,8,6.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"play_lesson\": {\n    \"name\": \"play_lesson\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,11c0.34,0,0.67,0.03,1,0.08V4c0-1.1-0.9-2-2-2H5C3.9,2,3,2.9,3,4v16c0,1.1,0.9,2,2,2h7.26C11.47,20.87,11,19.49,11,18 C11,14.13,14.13,11,18,11z M7,11V4h5v7L9.5,9.5L7,11z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M16.75,20.5v-5l4,2.5L16.75,20.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_2_bar\": {\n    \"name\": \"wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,10c3.03,0,5.78,1.23,7.76,3.22l-2.12,2.12C16.2,13.9,14.2,13,12,13c-2.2,0-4.2,0.9-5.64,2.35l-2.12-2.12 C6.22,11.23,8.97,10,12,10z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21l3.53-3.54C14.63,16.56,13.38,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,8c2.5,0,4.76,0.97,6.46,2.54l-1.42,1.42C13.71,10.75,11.94,10,10,10c-1.94,0-3.71,0.75-5.04,1.96l-1.42-1.42 C5.24,8.97,7.5,8,10,8z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_null\": {\n    \"name\": \"signal_cellular_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling_3\": {\n    \"name\": \"wifi_calling_3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.49,3c-2.21,0-4.21,0.9-5.66,2.34l1.06,1.06c1.18-1.18,2.8-1.91,4.59-1.91s3.42,0.73,4.59,1.91l1.06-1.06 C20.7,3.9,18.7,3,16.49,3z\\\"></path><path d=\\\"M20.03,7.46C19.12,6.56,17.87,6,16.49,6s-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03 s1.84,0.39,2.47,1.03L20.03,7.46z\\\"></path><path d=\\\"M15.08,9.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9S15.44,9.22,15.08,9.59z\\\"></path><path d=\\\"M15.63,14.4l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3 L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43 c0.56,0.03,1.03-0.44,1.03-1l0-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C16.2,14.07,15.86,14.17,15.63,14.4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pattern\": {\n    \"name\": \"pattern\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,8 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M18,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S19.1,10,18,10z M17.98,16 c-0.74,0-1.37,0.4-1.72,1h-2.54c-0.34-0.6-0.98-1-1.72-1s-1.37,0.4-1.72,1H8.41l3.07-3.07C11.65,13.97,11.82,14,12,14 c1.1,0,2-0.9,2-2c0-0.18-0.03-0.35-0.07-0.51l3.56-3.56C17.65,7.97,17.82,8,18,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56C12.35,10.03,12.18,10,12,10c-1.1,0-2,0.9-2,2c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56 C6.35,16.03,6.18,16,6,16c-1.1,0-2,0.9-2,2s0.9,2,2,2c0.74,0,1.37-0.4,1.72-1h2.57c0.34,0.6,0.98,1,1.72,1s1.37-0.4,1.72-1h2.55 c0.34,0.6,0.98,1,1.72,1c1.1,0,2-0.9,2-2C19.98,16.9,19.08,16,17.98,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"reviews\": {\n    \"name\": \"reviews\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M13.57,11.57L12,15l-1.57-3.43L7,10l3.43-1.57 L12,5l1.57,3.43L17,10L13.57,11.57z\\\"></path></g>\"\n      }\n    }\n  },\n  \"security_update_good\": {\n    \"name\": \"security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z M16,10.05 l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"quiz\": {\n    \"name\": \"quiz\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z\\\"></path><path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M14.01,15 c-0.59,0-1.05-0.47-1.05-1.05c0-0.59,0.47-1.04,1.05-1.04c0.59,0,1.04,0.45,1.04,1.04C15.04,14.53,14.6,15,14.01,15z M16.51,8.83 c-0.63,0.93-1.23,1.21-1.56,1.81c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52c0-0.41-0.06-1.08,0.26-1.65c0.41-0.73,1.18-1.16,1.63-1.8 c0.48-0.68,0.21-1.94-1.14-1.94c-0.88,0-1.32,0.67-1.5,1.23l-1.37-0.57C11.51,5.96,12.52,5,13.99,5c1.23,0,2.08,0.56,2.51,1.26 C16.87,6.87,17.08,7.99,16.51,8.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_active\": {\n    \"name\": \"airplanemode_active\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_off\": {\n    \"name\": \"nearby_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.41,13.42L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58-2.58c0.78-0.78,2.05-0.78,2.83,0l8,8 C22.2,11.37,22.2,12.63,21.41,13.42z M21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78-2.05,0.78-2.83,0l-8-8 c-0.78-0.78-0.78-2.05,0-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19z M14.19,17.02l-1.39-1.39l-0.8,0.8L7.58,12l0.8-0.8 l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update_warning\": {\n    \"name\": \"security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M17,1H7C5.9,1,5.01,1.9,5.01,3v18c0,1.1,0.89,2,1.99,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_low\": {\n    \"name\": \"brightness_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"nfc\": {\n    \"name\": \"nfc\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 20h16V4H4v16z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto_select\": {\n    \"name\": \"hdr_auto_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path><path d=\\\"M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1c0.5-0.3,0.9-0.8,0.9-1.4v-1C18,16.7,17.3,16,16.5,16z M16.5,18.5h-2v-1h2 V18.5z\\\"></path><polygon points=\\\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\\\"></polygon><polygon points=\\\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\\\"></polygon><polygon points=\\\"11.97,5.3 10.95,8.19 13.05,8.19 12.03,5.3\\\"></polygon><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14.04,11l-0.63-1.79h-2.83L9.96,11H8.74l2.63-7h1.25 l2.63,7H14.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_bad\": {\n    \"name\": \"gpp_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M15.5,14.09l-1.41,1.41L12,13.42L9.91,15.5 L8.5,14.09L10.59,12L8.5,9.91L9.91,8.5L12,10.59l2.09-2.09l1.41,1.41L13.42,12L15.5,14.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"storm\": {\n    \"name\": \"storm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18.93,8C16.72,4.18,11.82,2.87,8,5.07c-1.41,0.82-2.48,2-3.16,3.37C4.71,6.24,5.06,4.04,5.86,2H3.74 C2.2,6.49,2.52,11.58,5.07,16c1.1,1.91,2.88,3.19,4.86,3.72c1.98,0.53,4.16,0.31,6.07-0.79c1.41-0.82,2.48-2,3.16-3.37 c0.13,2.2-0.21,4.4-1.01,6.44h2.11C21.79,17.51,21.48,12.42,18.93,8z M15,17.2c-2.87,1.65-6.54,0.67-8.2-2.2 c-0.11-0.2-0.21-0.4-0.3-0.6C5.3,11.64,6.33,8.34,9,6.8c2.86-1.65,6.54-0.67,8.2,2.2c0.11,0.2,0.21,0.4,0.3,0.6 C18.7,12.36,17.67,15.66,15,17.2z M12,10c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,10,12,10 M12,8c-2.21,0-4,1.79-4,4 s1.79,4,4,4s4-1.79,4-4S14.21,8,12,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_searching\": {\n    \"name\": \"bluetooth_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_on\": {\n    \"name\": \"media_bluetooth_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,3l0.01,10.55c-0.6-0.34-1.28-0.55-2-0.55C4.79,13,3,14.79,3,17s1.79,4,4.01,4S11,19.21,11,17V7h4V3H9z M21,12.43 L17.57,9h-0.6v4.55l-2.75-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75-2.75V21h0.6L21,17.57L18.42,15L21,12.43z M18.17,11.3l1.13,1.13l-1.13,1.13V11.3z M19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wallpaper\": {\n    \"name\": \"wallpaper\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z\\\"></path>\"\n      }\n    }\n  },\n  \"edgesensor_low\": {\n    \"name\": \"edgesensor_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,7h2v7H2V7z M20,10h2v7h-2V10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4 C18,2.9,17.1,2.01,16,2.01z M16,17H8V7h8V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"restart_alt\": {\n    \"name\": \"restart_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,5V2L8,6l4,4V7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02c3.95-0.49,7-3.85,7-7.93C20,8.58,16.42,5,12,5z\\\"></path><path d=\\\"M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"credit_score\": {\n    \"name\": \"credit_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h5v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M14.93,19.17l-2.83-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41-1.41L14.93,19.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_find\": {\n    \"name\": \"wifi_find\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11,14c0-3.36,2.64-6,6-6c2.2,0,4.08,1.13,5.13,2.86L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21 l1.86-1.87C12.14,18.09,11,16.2,11,14z\\\"></path></g><g><path d=\\\"M21,14c0-2.24-1.76-4-4-4s-4,1.76-4,4c0,2.24,1.76,4,4,4c0.75,0,1.44-0.21,2.03-0.56L21.59,20L23,18.59l-2.56-2.56 C20.79,15.44,21,14.75,21,14z M15,14c0-1.12,0.88-2,2-2s2,0.88,2,2c0,1.12-0.88,2-2,2S15,15.12,15,14z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.5,11c0-2.49,2.01-4.5,4.5-4.5c1.76,0,3.27,1.02,4.01,2.5L20,7.01C17.4,4.53,13.88,3,10,3C6.12,3,2.6,4.53,0,7.01 L10,17l1.99-1.99C10.52,14.27,9.5,12.76,9.5,11z\\\"></path></g><g><path d=\\\"M17,11c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.56,0,1.07-0.16,1.52-0.42L17.94,16L19,14.94l-2.42-2.42 C16.84,12.07,17,11.56,17,11z M12.5,11c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S12.5,11.83,12.5,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"punch_clock\": {\n    \"name\": \"punch_clock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,6h-1V1H6v5H5C3.9,6,3,6.9,3,8v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M8,3h8v3H8V3z M12,19 c-2.76,0-5-2.24-5-5s2.24-5,5-5c2.76,0,5,2.24,5,5S14.76,19,12,19z\\\"></path><polygon points=\\\"12.5,11.5 11.5,11.5 11.5,14.21 13.14,15.85 13.85,15.14 12.5,13.79\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,5H15V1H5v4H4.5C3.67,5,3,5.67,3,6.5v10C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5v-10 C17,5.67,16.33,5,15.5,5z M6.5,2.5h7V5h-7V2.5z M10,15.5c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,13.71,12.21,15.5,10,15.5z\\\"></path><polygon points=\\\"10.5,9.5 9.5,9.5 9.5,11.71 11.15,13.35 11.85,12.65 10.5,11.29\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"storage\": {\n    \"name\": \"storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"network_cell\": {\n    \"name\": \"network_cell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z\\\"></path>\"\n      }\n    }\n  },\n  \"fluorescent\": {\n    \"name\": \"fluorescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"6\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"9\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"sim_card_download\": {\n    \"name\": \"sim_card_download\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,2h-8L4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M12,17l-4-4h3V9.02L13,9v4h3L12,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"macro_off\": {\n    \"name\": \"macro_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.98,17.15C20.63,15.91,21,14.5,21,13c-1.5,0-2.91,0.37-4.15,1.02L19.98,17.15z\\\"></path><path d=\\\"M3,13c0,4.97,4.03,9,9,9C12,17.03,7.97,13,3,13z\\\"></path><path d=\\\"M12,5.5c1.38,0,2.5,1.12,2.5,2.5c0,0.99-0.58,1.84-1.42,2.25l2.48,2.48c0.11,0.02,0.23,0.03,0.35,0.03 c1.38,0,2.5-1.12,2.5-2.5c0-1-0.59-1.85-1.43-2.25c0.84-0.4,1.43-1.25,1.43-2.25c0-1.38-1.12-2.5-2.5-2.5 c-0.53,0-1.01,0.16-1.42,0.44L14.5,3.5C14.5,2.12,13.38,1,12,1S9.5,2.12,9.5,3.5l0.02,0.19C9.12,3.41,8.63,3.25,8.1,3.25 c-0.57,0-1.09,0.2-1.51,0.52l3.16,3.16C10.16,6.08,11.01,5.5,12,5.5z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.64,4.64C5.76,9.26,5.6,9.73,5.6,10.25c0,1.38,1.12,2.5,2.5,2.5c0.52,0,0.99-0.16,1.4-0.43 l0.02,0.02L9.5,12.5c0,1.38,1.12,2.5,2.5,2.5c0.05,0,0.1-0.01,0.16-0.02l1.64,1.64C12.67,18.12,12,19.98,12,22 c2.02,0,3.88-0.67,5.38-1.8l2.4,2.4l1.41-1.41L2.81,2.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4.5c1.1,0,2,0.9,2,2c0,0.92-0.62,1.68-1.46,1.92l1.62,1.62c0.93,0.45,2.07,0.12,2.6-0.79 c0.55-0.96,0.22-2.18-0.73-2.73C14.02,6.51,14,6.51,13.99,6.5c0.01-0.01,0.03-0.01,0.04-0.02c0.96-0.55,1.28-1.78,0.73-2.73 c-0.55-0.96-1.78-1.28-2.73-0.73C12.02,3.03,12.01,3.04,12,3.04c0-0.01,0-0.03,0-0.04c0-1.1-0.9-2-2-2S8,1.9,8,3 c0,0.01,0,0.03,0,0.04C7.99,3.04,7.98,3.03,7.97,3.02c-0.82-0.47-1.84-0.3-2.46,0.37l2.57,2.57C8.32,5.12,9.08,4.5,10,4.5z\\\"></path><path d=\\\"M3,11c0,3.86,3.15,7,7,7C10,14.14,6.85,11,3,11z\\\"></path><path d=\\\"M16.25,14.13c0.47-0.94,0.75-2,0.75-3.13c-1.12,0-2.19,0.27-3.13,0.75L16.25,14.13z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99L5.2,7.32C4.89,7.91,4.88,8.63,5.24,9.25c0.54,0.93,1.71,1.26,2.66,0.77l0.12,0.12 c0.07,0.99,0.86,1.78,1.85,1.85l1.66,1.66C10.58,14.84,10,16.35,10,18c1.64,0,3.15-0.57,4.35-1.53l1.66,1.66l1.06-1.06L2.93,2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_0_bar\": {\n    \"name\": \"signal_cellular_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6.83V20H6.83L20,6.83 M22,2L2,22h20V2L22,2z\\\"></path>\"\n      }\n    }\n  },\n  \"tungsten\": {\n    \"name\": \"tungsten\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"19\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.6665 17.8014)\\\" width=\\\"1.99\\\" x=\\\"16.66\\\" y=\\\"16.66\\\"></rect><rect height=\\\"1.99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -10.9791 9.8041)\\\" width=\\\"3\\\" x=\\\"4.85\\\" y=\\\"17.16\\\"></rect><path d=\\\"M15,8.02V3H9v5.02C7.79,8.94,7,10.37,7,12c0,2.76,2.24,5,5,5s5-2.24,5-5C17,10.37,16.21,8.94,15,8.02z M11,5h2v2.1 C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"1x_mobiledata\": {\n    \"name\": \"1x_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,7h4v10H6V9H4V7z M15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2-3.34l2,3.34H19 L15.83,11.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_good\": {\n    \"name\": \"fmd_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M12,12c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C14,11.1,13.1,12,12,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_searching\": {\n    \"name\": \"location_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight\": {\n    \"name\": \"nightlight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M14,2c1.82,0,3.53,0.5,5,1.35C16.01,5.08,14,8.3,14,12s2.01,6.92,5,8.65C17.53,21.5,15.82,22,14,22C8.48,22,4,17.52,4,12 S8.48,2,14,2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"30fps\": {\n    \"name\": \"30fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8 c0-1.66-1.34-3-3-3H2z M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8 C22,6.34,20.66,5,19,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_bad\": {\n    \"name\": \"fmd_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M13,15h-2v-2h2V15z M13,11h-2V6h2V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_off\": {\n    \"name\": \"signal_wifi_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4-1.5 0-2.89.19-4.15.48L18.18 13.8 23.64 7zm-6.6 8.22L3.27 1.44 2 2.72l2.05 2.06C1.91 5.76.59 6.82.36 7l11.63 14.49.01.01.01-.01 3.9-4.86 3.32 3.32 1.27-1.27-3.46-3.46z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_weight\": {\n    \"name\": \"monitor_weight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,12c-1.66,0-3-1.34-3-3 s1.34-3,3-3s3,1.34,3,3S13.66,12,12,12z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"10\\\" y=\\\"8.5\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11.5\\\" y=\\\"8.5\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"8.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"screenshot_monitor\": {\n    \"name\": \"screenshot_monitor\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2V5C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><polygon points=\\\"6.5,7.5 9,7.5 9,6 5,6 5,10 6.5,10\\\"></polygon><polygon points=\\\"19,12 17.5,12 17.5,14.5 15,14.5 15,16 19,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5v-9 C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><polygon points=\\\"5.5,6.5 7.5,6.5 7.5,5.5 4.5,5.5 4.5,8.5 5.5,8.5\\\"></polygon><polygon points=\\\"15.5,9.5 14.5,9.5 14.5,11.5 12.5,11.5 12.5,12.5 15.5,12.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lte_mobiledata\": {\n    \"name\": \"lte_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,14h3v2H4V8h2V14z M9,10h2v6h2v-6h2V8H9V10z M21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_1_bar\": {\n    \"name\": \"network_wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M15.32,14.84C14.34,14.3,13.2,14,12,14 c-1.2,0-2.34,0.3-3.32,0.84L2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L15.32,14.84z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M12.56,12.32c-1.53-1.07-3.6-1.07-5.13,0L2.21,7.1 C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L12.56,12.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"g_mobiledata\": {\n    \"name\": \"g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11v2h2v2H9V9h7c0-1.1-0.9-2-2-2H9C7.9,7,7,7.9,7,9v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4H12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"timer_10_select\": {\n    \"name\": \"timer_10_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,8v8h-3V8H13 M13,5h-3C8.34,5,7,6.34,7,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3V8C16,6.34,14.66,5,13,5z M1,8h2v11h3 V5H1V8z M18.5,11c-0.83,0-1.5,0.68-1.5,1.5v2c0,0.82,0.67,1.5,1.5,1.5H21v1h-4v2h4.5c0.83,0,1.5-0.67,1.5-1.5v-2 c0-0.83-0.67-1.5-1.5-1.5H19v-1h4v-2H18.5z\\\"></path>\"\n      }\n    }\n  },\n  \"3g_mobiledata\": {\n    \"name\": \"3g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_unknown\": {\n    \"name\": \"battery_unknown\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-2.72 13.95h-1.9v-1.9h1.9v1.9zm1.35-5.26s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_suggest\": {\n    \"name\": \"settings_suggest\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17.41,6.59L15,5.5l2.41-1.09L18.5,2l1.09,2.41L22,5.5l-2.41,1.09L18.5,9L17.41,6.59z M21.28,12.72L20.5,11l-0.78,1.72 L18,13.5l1.72,0.78L20.5,16l0.78-1.72L23,13.5L21.28,12.72z M16.24,14.37l1.94,1.47l-2.5,4.33l-2.24-0.94 c-0.2,0.13-0.42,0.26-0.64,0.37L12.5,22h-5l-0.3-2.41c-0.22-0.11-0.43-0.23-0.64-0.37l-2.24,0.94l-2.5-4.33l1.94-1.47 C3.75,14.25,3.75,14.12,3.75,14s0-0.25,0.01-0.37l-1.94-1.47l2.5-4.33l2.24,0.94c0.2-0.13,0.42-0.26,0.64-0.37L7.5,6h5l0.3,2.41 c0.22,0.11,0.43,0.23,0.64,0.37l2.24-0.94l2.5,4.33l-1.94,1.47c0.01,0.12,0.01,0.24,0.01,0.37S16.25,14.25,16.24,14.37z M13,14 c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3S13,15.66,13,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_5_bar\": {\n    \"name\": \"battery_5_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v4h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v3.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gps_off\": {\n    \"name\": \"gps_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5C10.16 5.19 11.06 5 12 5c3.87 0 7 3.13 7 7 0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.25 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z\\\"></path>\"\n      }\n    }\n  },\n  \"shortcut\": {\n    \"name\": \"shortcut\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21,11l-6-6v5H8c-2.76,0-5,2.24-5,5v4h2v-4c0-1.65,1.35-3,3-3h7v5L21,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_6_bar\": {\n    \"name\": \"battery_6_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v2h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v2 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"data_saver_on\": {\n    \"name\": \"data_saver_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11z M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53 C21.68,14.83,22,13.45,22,12C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05 C5.94,2.55,2,6.81,2,12c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_time\": {\n    \"name\": \"access_time\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><path d=\\\"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_3_bar\": {\n    \"name\": \"battery_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v8h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v6.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar\": {\n    \"name\": \"signal_wifi_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"splitscreen\": {\n    \"name\": \"splitscreen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,4v5H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,15v5H6v-5H18 M18,13H6c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-5C20,13.9,19.1,13,18,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21l5-5.01V8h5.92C19.97,5.51,16.16,4,12,4z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l5-5V7.5h4.51L20,7.01C17.4,4.53,13.88,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"h_plus_mobiledata\": {\n    \"name\": \"h_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11z M22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rsvp\": {\n    \"name\": \"rsvp\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9z M5.1,12.9L6,15H4.5l-0.85-2H2.5v2H1V9h3.5C5.35,9,6,9.65,6,10.5v1 C6,12.1,5.6,12.65,5.1,12.9z M4.5,10.5h-2v1h2V10.5z M21.5,13h-2v2H18V9h3.5c0.83,0,1.5,0.67,1.5,1.5v1C23,12.33,22.33,13,21.5,13 z M21.5,10.5h-2v1h2V10.5z M11.5,9v1.5h-3v0.75h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7v-1.5h3v-0.75H7.75 C7.34,12.75,7,12.41,7,12v-2c0-0.55,0.45-1,1-1H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lte_plus_mobiledata\": {\n    \"name\": \"lte_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,14h3v2H1V8h2V14z M5,10h2v6h2v-6h2V8H5V10z M12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2 V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarms\": {\n    \"name\": \"access_alarms\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M-618-568H782v3600H-618zM0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_heart\": {\n    \"name\": \"monitor_heart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.11,12.45L14,10.24l-3.11,6.21C10.73,16.79,10.38,17,10,17s-0.73-0.21-0.89-0.55L7.38,13H2v5c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-5h-6C15.62,13,15.27,12.79,15.11,12.45z\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v5h6c0.38,0,0.73,0.21,0.89,0.55L10,13.76l3.11-6.21c0.34-0.68,1.45-0.68,1.79,0L16.62,11H22V6 C22,4.9,21.1,4,20,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.34,10.36L11.5,8.82l-2.34,4.29C9.03,13.35,8.77,13.5,8.5,13.5s-0.53-0.15-0.66-0.39l-1.29-2.36H2V12v1v1.4 C2,15.28,2.72,16,3.6,16h12.8c0.88,0,1.6-0.72,1.6-1.6V13v-1v-1.25h-5C12.73,10.75,12.47,10.6,12.34,10.36z\\\"></path><path d=\\\"M16.4,4H3.6C2.72,4,2,4.72,2,5.6v3.65h5c0.27,0,0.53,0.15,0.66,0.39l0.84,1.54l2.34-4.29c0.26-0.48,1.05-0.48,1.32,0 l1.29,2.36H18V5.6C18,4.72,17.28,4,16.4,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ssid_chart\": {\n    \"name\": \"ssid_chart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47z M21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8-2 l6.2,6l5-4h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,4.86L10,10L6.5,6.5L3,9V7.16l3.66-2.62l3.49,3.49L17,3L17,4.86z M17,12.5h-3.5l-3.36,2.52L5.5,10.3L3,12.14L3,14 l2.3-1.69L10,17l4-3h3V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"data_saver_off\": {\n    \"name\": \"data_saver_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12 C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_not_fixed\": {\n    \"name\": \"gps_not_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_storage\": {\n    \"name\": \"sd_storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"lens_blur\": {\n    \"name\": \"lens_blur\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,13,6,13z M6,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S6.55,17,6,17z M6,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,9,6,9z M3,9.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5S3.28,9.5,3,9.5z M6,5C5.45,5,5,5.45,5,6s0.45,1,1,1s1-0.45,1-1S6.55,5,6,5z M21,10.5c0.28,0,0.5-0.22,0.5-0.5 S21.28,9.5,21,9.5s-0.5,0.22-0.5,0.5S20.72,10.5,21,10.5z M14,7c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S13.45,7,14,7z M14,3.5 c0.28,0,0.5-0.22,0.5-0.5S14.28,2.5,14,2.5S13.5,2.72,13.5,3S13.72,3.5,14,3.5z M3,13.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S3.28,13.5,3,13.5z M10,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S10.28,20.5,10,20.5z M10,3.5c0.28,0,0.5-0.22,0.5-0.5S10.28,2.5,10,2.5S9.5,2.72,9.5,3S9.72,3.5,10,3.5z M10,7c0.55,0,1-0.45,1-1 s-0.45-1-1-1S9,5.45,9,6S9.45,7,10,7z M10,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,12.5,10,12.5z M18,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,13,18,13z M18,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,17,18,17z M18,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,9,18,9z M18,5c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,5,18,5z M21,13.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S21.28,13.5,21,13.5z M14,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S14.55,17,14,17z M14,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S14.28,20.5,14,20.5z M10,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,8.5,10,8.5z M10,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S10.55,17,10,17z M14,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S14.83,12.5,14,12.5z M14,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S14.83,8.5,14,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cable\": {\n    \"name\": \"cable\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,5V4c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v1h-1v4c0,0.55,0.45,1,1,1h1v7c0,1.1-0.9,2-2,2s-2-0.9-2-2V7 c0-2.21-1.79-4-4-4S5,4.79,5,7v7H4c-0.55,0-1,0.45-1,1v4h1v1c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h1v-4c0-0.55-0.45-1-1-1H7 V7c0-1.1,0.9-2,2-2s2,0.9,2,2v10c0,2.21,1.79,4,4,4s4-1.79,4-4v-7h1c0.55,0,1-0.45,1-1V5H20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"e_mobiledata\": {\n    \"name\": \"e_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lan\": {\n    \"name\": \"lan\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13,22 21,22 21,15 18,15 18,11 13,11 13,9 16,9 16,2 8,2 8,9 11,9 11,11 6,11 6,15 3,15 3,22 11,22 11,15 8,15 8,13 16,13 16,15 13,15\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"11,18 17,18 17,13 14.75,13 14.75,9.25 10.75,9.25 10.75,7 13,7 13,2 7,2 7,7 9.25,7 9.25,9.25 5.25,9.25 5.25,13 3,13 3,18 9,18 9,13 6.75,13 6.75,10.75 13.25,10.75 13.25,13 11,13\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"screen_lock_landscape\": {\n    \"name\": \"screen_lock_landscape\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_search_desktop\": {\n    \"name\": \"screen_search_desktop\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><g><rect height=\\\"1.8\\\" style=\\\"fill:none\\\" width=\\\"4.8\\\" x=\\\"9.6\\\" y=\\\"16.8\\\"></rect><path d=\\\"M20,18 C21.1,18 21.99,17.1 21.99,16 L22,6 C22,4.89 21.1,4 20,4 L4,4 C2.89,4 2,4.89 2,6 L2,16 C2,17.1 2.89,18 4,18 L0,18 L0,20 L24,20 L24,18 L20,18 Z M4,16 L4,6 L20,6 L20,16 L20,16.01 L4,16 Z M9.0967,9.9531 C9.0967,8.9261 9.9327,8.0891 10.9607,8.0891 C11.9877,8.0891 12.8247,8.9261 12.8247,9.9531 C12.8247,10.9801 11.9877,11.8171 10.9607,11.8171 C9.9327,11.8171 9.0967,10.9801 9.0967,9.9531 Z M16.1287,14.1891 L13.6467,11.7071 C13.9777,11.2021 14.1737,10.6001 14.1737,9.9531 C14.1737,8.1811 12.7327,6.7401 10.9607,6.7401 C9.1887,6.7401 7.7467,8.1811 7.7467,9.9531 C7.7467,11.7251 9.1887,13.1671 10.9607,13.1671 C11.5967,13.1671 12.1857,12.9751 12.6847,12.6561 L15.1737,15.1441 L16.1287,14.1891 Z\\\"></path></g><rect height=\\\"24\\\" style=\\\"fill:none\\\" width=\\\"24\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar_lock\": {\n    \"name\": \"signal_wifi_4_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_error\": {\n    \"name\": \"nearby_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7.57l4.42,4.42L12,16.41l-4.42-4.42L12,7.57z M12,19.19l-7.2-7.2l7.2-7.2l6,6V7.16l-4.58-4.58 c-0.78-0.78-2.05-0.78-2.83,0l-8.01,8c-0.78,0.78-0.78,2.05,0,2.83l8.01,8c0.78,0.78,2.05,0.78,2.83,0L18,16.82v-3.63L12,19.19z M20,20h2v2h-2V20z M22,10h-2v8h2V10\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_check\": {\n    \"name\": \"price_check\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,13V9c0-0.55-0.45-1-1-1H7V6h5V4H9.5V3h-2v1H6C5.45,4,5,4.45,5,5v4c0,0.55,0.45,1,1,1h4v2H5v2h2.5v1h2v-1H11 C11.55,14,12,13.55,12,13z\\\"></path><polygon points=\\\"19.59,12.52 13.93,18.17 11.1,15.34 9.69,16.76 13.93,21 21,13.93\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_4_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M2,22h16V8h4V2L2,22z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><polygon points=\\\"2,18 15,18 15,7.5 18,7.5 18,2\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering_off\": {\n    \"name\": \"wifi_tethering_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6,2,10.71,2,13c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13 c0-1.75,0.57-3.35,1.51-4.66l1.43,1.43C6.35,10.7,6,11.81,6,13c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13 c0-0.63,0.15-1.23,0.41-1.76l1.61,1.61c0,0.05-0.02,0.1-0.02,0.15c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15 c0.05,0,0.1-0.01,0.16-0.02l7.62,7.62l1.41-1.41L2.81,2.81z M17.7,14.87C17.89,14.28,18,13.65,18,13c0-3.31-2.69-6-6-6 c-0.65,0-1.28,0.1-1.87,0.3l1.71,1.71C11.89,9,11.95,9,12,9c2.21,0,4,1.79,4,4c0,0.05,0,0.11-0.01,0.16L17.7,14.87z M12,5 c4.42,0,8,3.58,8,8c0,1.22-0.27,2.37-0.77,3.4l1.49,1.49C21.53,16.45,22,14.78,22,13c0-5.52-4.48-10-10-10 c-1.78,0-3.44,0.46-4.89,1.28l1.48,1.48C9.63,5.27,10.78,5,12,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"medication\": {\n    \"name\": \"medication\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"3\\\"></rect><path d=\\\"M17,6H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M16,15h-2.5v2.5h-3V15H8v-3h2.5 V9.5h3V12H16V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_lock\": {\n    \"name\": \"wifi_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radar\": {\n    \"name\": \"radar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.74,18.33C21.15,16.6,22,14.4,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12s4.48,10,10,10c2.4,0,4.6-0.85,6.33-2.26 c0.27-0.22,0.53-0.46,0.78-0.71c0.03-0.03,0.05-0.06,0.07-0.08C19.38,18.75,19.57,18.54,19.74,18.33z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.43-1.43c0.69-0.98,1.1-2.17,1.1-3.46c0-3.31-2.69-6-6-6s-6,2.69-6,6 s2.69,6,6,6c1.3,0,2.51-0.42,3.49-1.13l1.42,1.42C15.54,19.37,13.85,20,12,20z M13.92,12.51c0.17-0.66,0.02-1.38-0.49-1.9 l-0.02-0.02c-0.77-0.77-2-0.78-2.78-0.04c-0.01,0.01-0.03,0.02-0.05,0.04c-0.78,0.78-0.78,2.05,0,2.83l0.02,0.02 c0.52,0.51,1.25,0.67,1.91,0.49l1.51,1.51c-0.6,0.36-1.29,0.58-2.04,0.58c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 c0,0.73-0.21,1.41-0.56,2L13.92,12.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi\": {\n    \"name\": \"network_wifi\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v0l0,0L24,8.98z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8s-5.5,0.94-7.65,2.51L2.92,9.07z\\\"></path>\"\n      }\n    }\n  },\n  \"cameraswitch\": {\n    \"name\": \"cameraswitch\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,7h-1l-1-1h-4L9,7H8C6.9,7,6,7.9,6,9v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V9C18,7.9,17.1,7,16,7z M12,14 c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M8.57,0.51l4.48,4.48V2.04c4.72,0.47,8.48,4.23,8.95,8.95c0,0,2,0,2,0C23.34,3.02,15.49-1.59,8.57,0.51z\\\"></path><path d=\\\"M10.95,21.96C6.23,21.49,2.47,17.73,2,13.01c0,0-2,0-2,0c0.66,7.97,8.51,12.58,15.43,10.48l-4.48-4.48V21.96z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"aod\": {\n    \"name\": \"aod\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M8,10h8v1.5H8V10z M9,13h6v1.5H9V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_good\": {\n    \"name\": \"gpp_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M10.94,15.54L7.4,12l1.41-1.41l2.12,2.12 l4.24-4.24l1.41,1.41L10.94,15.54z\\\"></path></g>\"\n      }\n    }\n  },\n  \"60fps\": {\n    \"name\": \"60fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z M10,8V5H5 C3.34,5,2,6.34,2,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3v-3c0-1.66-1.34-3-3-3H5V8H10z M8,13v3H5v-3H8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_goldenratio\": {\n    \"name\": \"grid_goldenratio\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22z M13,13h-2v-2h2V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_good\": {\n    \"name\": \"system_security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z M16,10.05 l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"remember_me\": {\n    \"name\": \"remember_me\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,15.21 C15.5,14.44,13.8,14,12,14s-3.5,0.44-5,1.21V6h10V15.21z\\\"></path><circle cx=\\\"12\\\" cy=\\\"10\\\" r=\\\"3\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering\": {\n    \"name\": \"wifi_tethering\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_alert\": {\n    \"name\": \"battery_alert\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z\\\"></path>\"\n      }\n    }\n  },\n  \"usb\": {\n    \"name\": \"usb\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2-1.21 0-2.2.99-2.2 2.2 0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2 1.21 0 2.2-.98 2.2-2.2 0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"access_time_filled\": {\n    \"name\": \"access_time_filled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M15.29,16.71L11,12.41V7h2v4.59 l3.71,3.71L15.29,16.71z\\\"></path></g>\"\n      }\n    }\n  },\n  \"air\": {\n    \"name\": \"air\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3h2c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1H2v-2h9.5 C13.15,14,14.5,15.35,14.5,17z M19,6.5C19,4.57,17.43,3,15.5,3S12,4.57,12,6.5h2C14,5.67,14.67,5,15.5,5S17,5.67,17,6.5 S16.33,8,15.5,8H2v2h13.5C17.43,10,19,8.43,19,6.5z M18.5,11H2v2h16.5c0.83,0,1.5,0.67,1.5,1.5S19.33,16,18.5,16v2 c1.93,0,3.5-1.57,3.5-3.5S20.43,11,18.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_change\": {\n    \"name\": \"price_change\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M12,10H8v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1H8v-1H6v-2h4v-1H7c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h1V7h2v1h2V10z M16,16.25 l-2-2h4L16,16.25z M14,10l2-2l2,2H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_done\": {\n    \"name\": \"cloud_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z\\\"></path>\"\n      }\n    }\n  },\n  \"difference\": {\n    \"name\": \"difference\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,23H4c-1.1,0-2-0.9-2-2V7h2v14h14V23z M15,1H8C6.9,1,6.01,1.9,6.01,3L6,17c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V7 L15,1z M16.5,15h-6v-2h6V15z M16.5,9h-2v2h-2V9h-2V7h2V5h2v2h2V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3.5,17.5H13V19H3.5C2.67,19,2,18.33,2,17.5V6h1.5V17.5z M17,5v9.5c0,0.83-0.67,1.5-1.5,1.5h-9C5.67,16,5,15.33,5,14.5v-12 C5,1.67,5.67,1,6.5,1H13L17,5z M13.25,11h-4.5v1.5h4.5V11z M13.25,6.5h-1.5V5h-1.5v1.5h-1.5V8h1.5v1.5h1.5V8h1.5V6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_queue\": {\n    \"name\": \"cloud_queue\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"file_upload_off\": {\n    \"name\": \"file_upload_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"21.19,21.19 2.81,2.81 1.39,4.22 6.09,8.91 5,10 7.17,10 9,11.83 9,16 13.17,16 15.17,18 5,18 5,20 17.17,20 19.78,22.61\\\"></polygon><polygon points=\\\"15,10 19,10 12,3 8.91,6.09 15,12.17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"2.93,2.93 1.87,3.99 8,10.12 8,13 10.88,13 12.38,14.5 5,14.5 5,16 13.88,16 16.01,18.13 17.07,17.07\\\"></polygon><polygon points=\\\"12,8 15,8 10,3 7.56,5.44 12,9.88\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"approval\": {\n    \"name\": \"approval\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 16v6h16v-6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm14 2H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5zm0 9L9 7c0-1.66 1.34-3 3-3s3 1.34 3 3l-3 4z\\\"></path>\"\n      }\n    }\n  },\n  \"download_for_offline\": {\n    \"name\": \"download_for_offline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M11,10V6h2v4h3l-4,4l-4-4H11z M17,17H7v-2h10V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"text_snippet\": {\n    \"name\": \"text_snippet\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.41,8.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 C21,9.3,20.79,8.79,20.41,8.41z M7,7h7v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud\": {\n    \"name\": \"cloud\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_delete\": {\n    \"name\": \"folder_delete\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,8v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h6l2,2h8C21.1,6,22,6.9,22,8z M16.5,10V9h-2v1H12 v1.5h1v4c0,0.83,0.67,1.5,1.5,1.5h2c0.83,0,1.5-0.67,1.5-1.5v-4h1V10H16.5z M16.5,15.5h-2v-4h2V15.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M15.5,10H15v2.5c0,0.55-0.45,1-1,1h-1.5c-0.55,0-1-0.45-1-1V10H11V9h1.5V8.5H14V9h1.5V10z M14,12.5h-1.5V10H14V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snippet_folder\": {\n    \"name\": \"snippet_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z M22,8v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h6l2,2 h8C21.1,6,22,6.9,22,8z M19,11.5L16.5,9H13v8l6,0V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"topic\": {\n    \"name\": \"topic\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_download\": {\n    \"name\": \"cloud_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_sync\": {\n    \"name\": \"cloud_sync\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.5,14.98c-0.02,0-0.03,0-0.05,0.01C21.2,13.3,19.76,12,18,12c-1.4,0-2.6,0.83-3.16,2.02C13.26,14.1,12,15.4,12,17 c0,1.66,1.34,3,3,3l6.5-0.02c1.38,0,2.5-1.12,2.5-2.5S22.88,14.98,21.5,14.98z M10,4.26v2.09C7.67,7.18,6,9.39,6,12 c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73C5.06,16.54,4,14.4,4,12C4,8.27,6.55,5.15,10,4.26z M20,6h-2.73 c1.43,1.26,2.41,3.01,2.66,5l-2.02,0C17.68,9.64,16.98,8.45,16,7.56V10h-2V4h6V6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.18,12.25C18.01,10.98,16.92,10,15.6,10c-1.06,0-1.97,0.64-2.35,1.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25h4.88c1.04,0,1.88-0.84,1.88-1.88C20,13.11,19.19,12.28,18.18,12.25z M8.5,4.2v1.58 c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10C4,7.21,5.91,4.86,8.5,4.2z M15.92,9l-1.53,0C14.17,8.09,13.68,7.29,13,6.68V8h-1.5V4h4v1.5h-1.55C14.96,6.39,15.68,7.61,15.92,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cloud_circle\": {\n    \"name\": \"cloud_circle\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3l.14.01C8.58 8.28 10.13 7 12 7c2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_file_move_rtl\": {\n    \"name\": \"drive_file_move_rtl\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M12,17l-4-4l4-4v3h4v2h-4V17 z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,10.25h3v1.5h-3V14l-3-3l3-3V10.25z M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13 c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_upload\": {\n    \"name\": \"cloud_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_file_move_outline\": {\n    \"name\": \"drive_file_move_outline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zm-8.01-9l-1.41 1.41L12.16 12H8v2h4.16l-1.59 1.59L11.99 17 16 13.01 11.99 9z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_open\": {\n    \"name\": \"folder_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"format_overline\": {\n    \"name\": \"format_overline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3v2H5V3H19z M12,7c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C19,10.13,15.87,7,12,7z M12,18.5 c-2.49,0-4.5-2.01-4.5-4.5S9.51,9.5,12,9.5s4.5,2.01,4.5,4.5S14.49,18.5,12,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,3v1.5H5V3H15z M15.5,11.5c0,3.04-2.46,5.5-5.5,5.5s-5.5-2.46-5.5-5.5C4.5,8.46,6.96,6,10,6S15.5,8.46,15.5,11.5z M13.5,11.5C13.5,9.57,11.93,8,10,8s-3.5,1.57-3.5,3.5S8.07,15,10,15S13.5,13.43,13.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attach_email\": {\n    \"name\": \"attach_email\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,10V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h11v-5c0-1.66,1.34-3,3-3H21z M11,11L3,6V4l8,5 l8-5v2L11,11z\\\"></path><path d=\\\"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,8V4c0-0.55-0.45-1-1-1H3C2.45,3,2,3.45,2,4v10c0,0.55,0.45,1,1,1h9v-5c0-1.1,0.9-2,2-2H16z M9,8.93L3,5.18V4l6,3.75 L15,4v1.18L9,8.93z\\\"></path><path d=\\\"M17,11v3.5c0,0.83-0.67,1.5-1.5,1.5S14,15.33,14,14.5v-4c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V14h1v-3.5 C16,9.67,15.33,9,14.5,9S13,9.67,13,10.5v4c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V11H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"folder_off\": {\n    \"name\": \"folder_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6h-8l-2-2H6.83l14.93,14.93C21.91,18.65,22,18.34,22,18V8C22,6.9,21.1,6,20,6z\\\"></path><path d=\\\"M2.1,2.1L0.69,3.51l1.56,1.56C2.1,5.35,2.01,5.66,2.01,6L2,18c0,1.1,0.9,2,2,2h13.17l3.31,3.31l1.41-1.41L2.1,2.1z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2.22,2.22L1.16,3.28l1.22,1.22C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84l1.06-1.06L2.22,2.22z\\\"></path><path d=\\\"M16.5,6H10L8,4H6.12l11.49,11.49C17.85,15.23,18,14.88,18,14.5v-7C18,6.67,17.33,6,16.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_view\": {\n    \"name\": \"grid_view\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill-rule=\\\"evenodd\\\"><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v8h8V3H3zm6 6H5V5h4v4zm-6 4v8h8v-8H3zm6 6H5v-4h4v4zm4-16v8h8V3h-8zm6 6h-4V5h4v4zm-6 4v8h8v-8h-8zm6 6h-4v-4h4v4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"downloading\": {\n    \"name\": \"downloading\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.32,4.26C16.84,3.05,15.01,2.25,13,2.05v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.32,4.26z M19.93,11h2.02 c-0.2-2.01-1-3.84-2.21-5.32L18.31,7.1C19.17,8.21,19.75,9.54,19.93,11z M18.31,16.9l1.43,1.43c1.21-1.48,2.01-3.32,2.21-5.32 h-2.02C19.75,14.46,19.17,15.79,18.31,16.9z M13,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.43-1.43 C15.79,19.17,14.46,19.75,13,19.93z M13,12V7h-2v5H7l5,5l5-5H13z M11,19.93v2.02c-5.05-0.5-9-4.76-9-9.95s3.95-9.45,9-9.95v2.02 C7.05,4.56,4,7.92,4,12S7.05,19.44,11,19.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upload_file\": {\n    \"name\": \"upload_file\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11zM8 15.01l1.41 1.41L11 14.84V19h2v-4.16l1.59 1.59L16 15.01 12.01 11z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_copy\": {\n    \"name\": \"folder_copy\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6H1v13c0,1.1,0.9,2,2,2h17v-2H3V6z\\\"></path><path d=\\\"M21,4h-7l-2-2H7C5.9,2,5.01,2.9,5.01,4L5,15c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2.5,5H1v10.5C1,16.33,1.67,17,2.5,17h13.18v-1.5H2.5V5z\\\"></path><path d=\\\"M16.5,4H11L9,2H5.5C4.67,2,4,2.67,4,3.5v9C4,13.33,4.67,14,5.5,14h11c0.83,0,1.5-0.67,1.5-1.5v-7C18,4.67,17.33,4,16.5,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_done\": {\n    \"name\": \"download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20.13,5.41 18.72,4 9.53,13.19 5.28,8.95 3.87,10.36 9.53,16.02\\\"></polygon><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"18\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"workspaces_outline\": {\n    \"name\": \"workspaces_outline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 15c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"folder\": {\n    \"name\": \"folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_upload\": {\n    \"name\": \"file_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"newspaper\": {\n    \"name\": \"newspaper\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16 c0,1.1,0.9,2,2,2l16,0c1.1,0,2-0.9,2-2V3z M11,19H4v-6h7V19z M20,19h-7v-2h7V19z M20,15h-7v-2h7V15z M20,11H4V8h16V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.67,4.33L15.33,3L14,4.33L12.67,3l-1.33,1.33L10,3L8.67,4.33L7.33,3L6,4.33L4.67,3L3.33,4.33L2,3v12.5 C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V3L16.67,4.33z M16.5,9.5h-13v-3h13V9.5z M10.75,11h5.75v1.5h-5.75V11z M3.5,11 h5.75v4.5H3.5V11z M10.75,15.5V14h5.75v1.5H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"drive_file_rename_outline\": {\n    \"name\": \"drive_file_rename_outline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.41 5.8L17.2 4.59c-.78-.78-2.05-.78-2.83 0l-2.68 2.68L3 15.96V20h4.04l8.74-8.74 2.63-2.63c.79-.78.79-2.05 0-2.83zM6.21 18H5v-1.21l8.66-8.66 1.21 1.21L6.21 18zM11 20l4-4h6v4H11z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_file_move\": {\n    \"name\": \"drive_file_move\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 12v-3h-4v-4h4V8l5 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"workspaces_filled\": {\n    \"name\": \"workspaces_filled\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download\": {\n    \"name\": \"file_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_zip\": {\n    \"name\": \"folder_zip\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M18,12h-2v2h2v2h-2 v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M15,9h-1.5v1.5H15V12h-1.5v1.5H12V12h1.5v-1.5H12V9h1.5V7.5H15V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"download\": {\n    \"name\": \"download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,20h14v-2H5V20z M19,9h-4V3H9v6H5l7,7L19,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rule_folder\": {\n    \"name\": \"rule_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M7.83,16L5,13.17 l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41 L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upload\": {\n    \"name\": \"upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,20h14v-2H5V20z M5,10h4v6h6v-6h4l-7-7L5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"folder_shared\": {\n    \"name\": \"folder_shared\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_off\": {\n    \"name\": \"cloud_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.48 0-2.85.43-4.01 1.17l1.46 1.46C10.21 6.23 11.08 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 1.13-.64 2.11-1.56 2.62l1.45 1.45C23.16 18.16 24 16.68 24 15c0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.75 2.74C2.56 8.15 0 10.77 0 14c0 3.31 2.69 6 6 6h11.73l2 2L21 20.73 4.27 4 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_folder_upload\": {\n    \"name\": \"drive_folder_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10zM8 13.01l1.41 1.41L11 12.84V17h2v-4.16l1.59 1.59L16 13.01 12.01 9 8 13.01z\\\"></path>\"\n      }\n    }\n  },\n  \"workspaces\": {\n    \"name\": \"workspaces\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S8.2,13,6,13z M12,3C9.8,3,8,4.8,8,7s1.8,4,4,4s4-1.8,4-4S14.2,3,12,3z M18,13 c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S20.2,13,18,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"3\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"create_new_folder\": {\n    \"name\": \"create_new_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_off\": {\n    \"name\": \"file_download_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,6.17V3h6v6h4l-3.59,3.59L9,6.17z M21.19,21.19L2.81,2.81L1.39,4.22L6.17,9H5l7,7l0.59-0.59L15.17,18H5v2h12.17l2.61,2.61 L21.19,21.19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,5.88V3h4v5h3l-2.44,2.44L8,5.88z M17.07,17.07L2.93,2.93L1.87,3.99L5.88,8H5l5,5l0.44-0.44l1.94,1.94H5V16h8.88 l2.13,2.13L17.07,17.07z\\\"></path>\"\n      }\n    }\n  },\n  \"file_open\": {\n    \"name\": \"file_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H15v-8h5V8L14,2z M13,9V3.5L18.5,9H13z M17,21.66V16h5.66v2h-2.24 l2.95,2.95l-1.41,1.41L19,19.41l0,2.24H17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,17.74V13.5h4.24V15h-1.68l2.21,2.21l-1.06,1.06l-2.21-2.21v1.68H14z M12,2H5.5C4.67,2,4,2.67,4,3.5v13 C4,17.33,4.67,18,5.5,18h7v-6H16V6L12,2z M11,7V3l4,4H11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attachment\": {\n    \"name\": \"attachment\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 12.5C2 9.46 4.46 7 7.5 7H18c2.21 0 4 1.79 4 4s-1.79 4-4 4H9.5C8.12 15 7 13.88 7 12.5S8.12 10 9.5 10H17v2H9.41c-.55 0-.55 1 0 1H18c1.1 0 2-.9 2-2s-.9-2-2-2H7.5C5.57 9 4 10.57 4 12.5S5.57 16 7.5 16H17v2H7.5C4.46 18 2 15.54 2 12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_done\": {\n    \"name\": \"file_download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"request_quote\": {\n    \"name\": \"request_quote\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15,12h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V9h2v1h2V12z M13,8V3.5L17.5,8H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"paid\": {\n    \"name\": \"paid\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12.88,17.76V19h-1.75v-1.29 c-0.74-0.18-2.39-0.77-3.02-2.96l1.65-0.67c0.06,0.22,0.58,2.09,2.4,2.09c0.93,0,1.98-0.48,1.98-1.61c0-0.96-0.7-1.46-2.28-2.03 c-1.1-0.39-3.35-1.03-3.35-3.31c0-0.1,0.01-2.4,2.62-2.96V5h1.75v1.24c1.84,0.32,2.51,1.79,2.66,2.23l-1.58,0.67 c-0.11-0.35-0.59-1.34-1.9-1.34c-0.7,0-1.81,0.37-1.81,1.39c0,0.95,0.86,1.31,2.64,1.9c2.4,0.83,3.01,2.05,3.01,3.45 C15.9,17.17,13.4,17.67,12.88,17.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"toc\": {\n    \"name\": \"toc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"gif_box\": {\n    \"name\": \"gif_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M9.5,13v-1h1v1c0,0.55-0.45,1-1,1h-1 c-0.55,0-1-0.45-1-1v-2c0-0.55,0.45-1,1-1h1c0.55,0,1,0.45,1,1h-2v2H9.5z M12.5,14h-1v-4h1V14z M16.5,11h-2v0.5H16v1h-1.5V14h-1v-4 h3V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7.5,11v-1h1v1c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h1c0.55,0,1,0.45,1,1h-2v2H7.5z M10.5,12h-1V8h1V12z M14.5,9h-2v0.5H14v1h-1.5V12h-1V8h3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_bag\": {\n    \"name\": \"shopping_bag\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 4c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2zm2-6c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 6c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"webhook\": {\n    \"name\": \"webhook\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,15l5.88,0c0.27-0.31,0.67-0.5,1.12-0.5c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5c-0.44,0-0.84-0.19-1.12-0.5 l-3.98,0c-0.46,2.28-2.48,4-4.9,4c-2.76,0-5-2.24-5-5c0-2.42,1.72-4.44,4-4.9l0,2.07C4.84,13.58,4,14.7,4,16c0,1.65,1.35,3,3,3 s3-1.35,3-3V15z M12.5,4c1.65,0,3,1.35,3,3h2c0-2.76-2.24-5-5-5l0,0c-2.76,0-5,2.24-5,5c0,1.43,0.6,2.71,1.55,3.62l-2.35,3.9 C6.02,14.66,5.5,15.27,5.5,16c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.16-0.02-0.31-0.07-0.45l3.38-5.63 C10.49,9.61,9.5,8.42,9.5,7C9.5,5.35,10.85,4,12.5,4z M17,13c-0.64,0-1.23,0.2-1.72,0.54l-3.05-5.07C11.53,8.35,11,7.74,11,7 c0-0.83,0.67-1.5,1.5-1.5S14,6.17,14,7c0,0.15-0.02,0.29-0.06,0.43l2.19,3.65C16.41,11.03,16.7,11,17,11l0,0c2.76,0,5,2.24,5,5 c0,2.76-2.24,5-5,5c-1.85,0-3.47-1.01-4.33-2.5l2.67,0C15.82,18.82,16.39,19,17,19c1.65,0,3-1.35,3-3S18.65,13,17,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,3.5C9.12,3.5,8,4.62,8,6c0,1.17,0.81,2.15,1.89,2.43L7,12.92c0,0.03,0,0.05,0,0.08c0,0.55-0.45,1-1,1s-1-0.45-1-1 c0-0.43,0.27-0.8,0.66-0.94l2.05-3.19C6.96,8.14,6.5,7.12,6.5,6c0-2.21,1.79-4,4-4l0,0c2.21,0,4,1.79,4,4H13 C13,4.62,11.88,3.5,10.5,3.5z M8.5,12.25h4.84C13.51,12.09,13.75,12,14,12c0.55,0,1,0.45,1,1s-0.45,1-1,1 c-0.25,0-0.49-0.09-0.66-0.25l-3.41,0C9.58,15.6,7.95,17,6,17c-2.21,0-4-1.79-4-4c0-1.86,1.27-3.43,3-3.87l0,1.58 C4.12,11.1,3.5,11.98,3.5,13c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V12.25z M14,10.5c1.38,0,2.5,1.12,2.5,2.5 c0,1.38-1.12,2.5-2.5,2.5c-0.56,0-1.08-0.19-1.5-0.5l-1.97,0c0.69,1.2,1.98,2,3.46,2c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4l0,0 c-0.36,0-0.71,0.05-1.04,0.14l-1.47-2.95c0.01-0.06,0.02-0.12,0.02-0.18c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.39,0.23,0.73,0.56,0.9 l2.17,4.33C12.68,10.78,13.31,10.5,14,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"preview\": {\n    \"name\": \"preview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M13.5,13 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5S13.5,12.17,13.5,13z M12,9c-2.73,0-5.06,1.66-6,4 c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9z M12,15.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 c1.38,0,2.5,1.12,2.5,2.5C14.5,14.38,13.38,15.5,12,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"work\": {\n    \"name\": \"work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors\": {\n    \"name\": \"sensors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.41,14.59l-1.06,1.06C2.9,14.21,2,12.21,2,10c0-2.21,0.9-4.21,2.34-5.66l1.06,1.06C4.23,6.58,3.5,8.21,3.5,10 S4.23,13.42,5.41,14.59z M16.5,10c0,1.79-0.73,3.42-1.91,4.59l1.06,1.06C17.1,14.21,18,12.21,18,10c0-2.21-0.9-4.21-2.34-5.66 l-1.06,1.06C15.77,6.58,16.5,8.21,16.5,10z M13.5,10c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,12.63,15,11.38,15,10 c0-1.38-0.56-2.63-1.46-3.54l-1.06,1.06C13.11,8.16,13.5,9.04,13.5,10z M6.5,10c0-0.96,0.39-1.84,1.03-2.47L6.46,6.46 C5.56,7.37,5,8.62,5,10c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,11.84,6.5,10.96,6.5,10z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"launch\": {\n    \"name\": \"launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_accessibility\": {\n    \"name\": \"settings_accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,4c-2.61,0.7-5.67,1-8.5,1S6.11,4.7,3.5,4L3,6c1.86,0.5,4,0.83,6,1v12h2v-6h2v6h2V7c2-0.17,4.14-0.5,6-1L20.5,4z M12,4c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,4,12,4z M7,24h2v-2H7V24z M11,24h2v-2h-2V24z M15,24h2v-2h-2V24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"install_mobile\": {\n    \"name\": \"install_mobile\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,18H7V6h7V1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-5h-2V18z\\\"></path><polygon points=\\\"18,14 23,9 21.59,7.59 19,10.17 19,3 17,3 17,10.17 14.41,7.59 13,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,15h-9V5H12V1H5.5C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5V13h-1.5V15z\\\"></path><polygon points=\\\"15.23,11 18.75,7.48 17.69,6.42 16,8.11 16,3 14.5,3 14.5,8.14 12.81,6.45 11.75,7.52\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pan_tool_alt\": {\n    \"name\": \"pan_tool_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.98,14.82l-0.63,4.46C19.21,20.27,18.36,21,17.37,21h-6.16c-0.53,0-1.29-0.21-1.66-0.59L5,15.62l0.83-0.84 c0.24-0.24,0.58-0.35,0.92-0.28L10,15.24V4.5C10,3.67,10.67,3,11.5,3S13,3.67,13,4.5v6h0.91c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04 C19.66,13.14,20.1,13.97,19.98,14.82z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.66,9H11V4.25C11,3.56,10.44,3,9.75,3h0C9.06,3,8.5,3.56,8.5,4.25V13l-2.12-0.71c-0.54-0.18-1.13-0.04-1.54,0.36L4.5,13 l3.56,3.56C8.34,16.84,8.72,17,9.12,17h5.27c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59L12.66,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_button\": {\n    \"name\": \"smart_button\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"credit_card\": {\n    \"name\": \"credit_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down\": {\n    \"name\": \"thumb_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_balance\": {\n    \"name\": \"account_balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"7\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"10\\\"></rect><rect height=\\\"7\\\" width=\\\"3\\\" x=\\\"10.5\\\" y=\\\"10\\\"></rect><rect height=\\\"3\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"19\\\"></rect><rect height=\\\"7\\\" width=\\\"3\\\" x=\\\"17\\\" y=\\\"10\\\"></rect><polygon points=\\\"12,1 2,6 2,8 22,8 22,6\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"shop\": {\n    \"name\": \"shop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z\\\"></path>\"\n      }\n    }\n  },\n  \"display_settings\": {\n    \"name\": \"display_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2V5C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"8.25\\\"></rect><polygon points=\\\"16.5,9.75 18,9.75 18,8.25 16.5,8.25 16.5,7 15,7 15,11 16.5,11\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"10\\\" y=\\\"12.25\\\"></rect><polygon points=\\\"7.5,15 9,15 9,11 7.5,11 7.5,12.25 6,12.25 6,13.75 7.5,13.75\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5v-9 C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><polygon points=\\\"14,8 15,8 15,7 14,7 14,6 13,6 13,9 14,9\\\"></polygon><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><polygon points=\\\"6,12 7,12 7,9 6,9 6,10 5,10 5,11 6,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"next_plan\": {\n    \"name\": \"next_plan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,13.97h-5l2.26-2.26 c-0.91-1.06-2.25-1.74-3.76-1.74c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32c0.64-2.62,3-4.56,5.82-4.56c1.78,0,3.37,0.79,4.47,2.03 L18,8.97V13.97z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M14,11.5h-2.99l1.19-1.19 C11.59,9.81,10.84,9.5,10,9.5c-1.39,0-2.58,0.82-3.15,1.99l-0.96-0.32C6.59,9.6,8.17,8.5,10,8.5c1.12,0,2.13,0.41,2.91,1.09L14,8.5 V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"account_balance_wallet\": {\n    \"name\": \"account_balance_wallet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 18v1c0 1.1-.9 2-2 2H5c-1.11 0-2-.9-2-2V5c0-1.1.89-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_stream\": {\n    \"name\": \"view_stream\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,17v-2c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2H5C3.9,19,3,18.1,3,17z M3,7v2c0,1.1,0.9,2,2,2h14 c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2H5C3.9,5,3,5.9,3,7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,5h11C16.33,5,17,5.6,17,6.34v1.57c0,0.74-0.67,1.34-1.5,1.34h-11C3.67,9.25,3,8.65,3,7.91V6.34C3,5.6,3.67,5,4.5,5z M4.5,15h11c0.83,0,1.5-0.6,1.5-1.34v-1.57c0-0.74-0.67-1.34-1.5-1.34h-11c-0.83,0-1.5,0.6-1.5,1.34v1.57C3,14.4,3.67,15,4.5,15z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up\": {\n    \"name\": \"swipe_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2.06,5.56L1,4.5L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76,5,5.62,5,6.5c0,2.42,0.82,4.65,2.2,6.43L6.13,14 C4.49,11.95,3.5,9.34,3.5,6.5c0-0.92,0.1-1.82,0.3-2.68L2.06,5.56z M13.85,11.62l-2.68-5.37c-0.37-0.74-1.27-1.04-2.01-0.67 C8.41,5.96,8.11,6.86,8.48,7.6l4.81,9.6L10.05,18c-0.33,0.09-0.59,0.33-0.7,0.66L9,19.78l6.19,2.25c0.5,0.17,1.28,0.02,1.75-0.22 l5.51-2.75c0.89-0.45,1.32-1.48,1-2.42l-1.43-4.27c-0.27-0.82-1.04-1.37-1.9-1.37h-4.56c-0.31,0-0.62,0.07-0.89,0.21L13.85,11.62\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4,5.5c0,2.03,0.75,3.88,2,5.29L5.29,11.5C3.87,9.91,3,7.81,3,5.5c0-0.93,0.14-1.82,0.4-2.66L1.71,4.53L1,3.83L3.83,1 l2.83,2.83L5.94,4.53L4.4,2.99C4.14,3.78,4,4.62,4,5.5z M14.02,8.84L12.5,9.52l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0 C8.29,4.82,8.01,5.56,8.29,6.19l3.54,8L9.61,14.4c-0.57,0.05-1.05,0.42-1.26,0.95l-0.18,0.45l4.7,1.81 c0.37,0.14,0.78,0.13,1.15-0.03l4.82-2.13c0.67-0.3,1.03-1.04,0.84-1.75l-0.92-3.59C18.6,9.49,18.03,9.03,17.38,9L14.02,8.84z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flip_to_front\": {\n    \"name\": \"flip_to_front\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z\\\"></path>\"\n      }\n    }\n  },\n  \"update_disabled\": {\n    \"name\": \"update_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M8.67,5.84L7.22,4.39C8.6,3.51,10.24,3,12,3c2.74,0,5.19,1.23,6.84,3.16L21,4v6h-6l2.41-2.41C16.12,6.02,14.18,5,12,5 C10.8,5,9.66,5.31,8.67,5.84z M13,7h-2v1.17l2,2V7z M19.78,22.61l-3-3C15.39,20.48,13.76,21,12,21c-4.97,0-9-4.03-9-9 c0-1.76,0.51-3.4,1.39-4.78L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.32,18.15L5.84,8.67C5.31,9.66,5,10.8,5,12 c0,3.86,3.14,7,7,7C13.2,19,14.34,18.69,15.32,18.15z M20.94,13h-2.02c-0.12,0.83-0.39,1.61-0.77,2.32l1.47,1.47 C20.32,15.67,20.79,14.38,20.94,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,6v2.63l-1.5-1.5V6H10.75z M7.32,5.2C8.11,4.75,9.03,4.5,10,4.5c1.64,0,3.11,0.74,4.12,1.88L12.5,8H17V3.5l-1.82,1.82 C13.9,3.9,12.06,3,10,3C8.61,3,7.31,3.41,6.23,4.1L7.32,5.2z M15.9,13.77c0.7-1.09,1.1-2.38,1.1-3.77h-1.5 c0,0.97-0.25,1.89-0.7,2.68L15.9,13.77z M17.07,17.07l-1.06,1.06l-2.24-2.24C12.69,16.59,11.39,17,10,17c-3.87,0-7-3.13-7-7 c0-1.39,0.41-2.69,1.1-3.77L1.87,3.99l1.06-1.06L17.07,17.07z M12.68,14.8L5.2,7.32C4.75,8.11,4.5,9.03,4.5,10 c0,3.03,2.47,5.5,5.5,5.5C10.97,15.5,11.89,15.25,12.68,14.8z\\\"></path>\"\n      }\n    }\n  },\n  \"delete\": {\n    \"name\": \"delete\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horizontal_circle\": {\n    \"name\": \"swap_horizontal_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"polymer\": {\n    \"name\": \"polymer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_composite\": {\n    \"name\": \"settings_input_composite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_split\": {\n    \"name\": \"horizontal_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z\\\"></path>\"\n      }\n    }\n  },\n  \"free_cancellation\": {\n    \"name\": \"free_cancellation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.21,20H5V10h14v4.38l2-2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h8.21 L11.21,20z M16.54,22.5L13,18.96l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,22.5z M10.41,14L12,15.59L10.59,17L9,15.41L7.41,17 L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.21,16.5H4.5V9h11v3.09l1.5-1.5V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11 C3,17.32,3.67,18,4.5,18h6.21L9.21,16.5z M13.33,16.38l3.54-3.54l1.06,1.06l-4.6,4.6l-2.83-2.83l1.06-1.06L13.33,16.38z M8.81,12.25 L10,13.44L8.94,14.5l-1.19-1.19L6.56,14.5L5.5,13.44l1.19-1.19L5.5,11.06L6.56,10l1.19,1.19L8.94,10L10,11.06L8.81,12.25z\\\"></path>\"\n      }\n    }\n  },\n  \"theaters\": {\n    \"name\": \"theaters\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket\": {\n    \"name\": \"rocket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2.5c0,0,4.5,2.04,4.5,10.5c0,2.49-1.04,5.57-1.6,7H9.1c-0.56-1.43-1.6-4.51-1.6-7C7.5,4.54,12,2.5,12,2.5z M14,11 c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14,12.1,14,11z M7.69,20.52c-0.48-1.23-1.52-4.17-1.67-6.87l-1.13,0.75 C4.33,14.78,4,15.4,4,16.07V22L7.69,20.52z M20,22v-5.93c0-0.67-0.33-1.29-0.89-1.66l-1.13-0.75c-0.15,2.69-1.2,5.64-1.67,6.87 L20,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.98,16c-0.1-0.24-1.23-3.01-1.23-5.5c0-5.46,2.49-7.52,3.25-8c0.76,0.48,3.25,2.54,3.25,8c0,2.49-1.13,5.26-1.23,5.5 H7.98z M11.5,9c0-0.82-0.67-1.5-1.5-1.5C9.18,7.5,8.5,8.18,8.5,9c0,0.83,0.68,1.5,1.5,1.5C10.83,10.5,11.5,9.83,11.5,9z M4.58,11.8 C4.21,12.08,4,12.52,4,12.98V18l3.09-1.54c-0.5-1.18-1.24-3.4-1.33-5.57L4.58,11.8z M15.42,11.8c0.37,0.28,0.58,0.72,0.58,1.18V18 l-3.09-1.54c0.5-1.18,1.24-3.4,1.33-5.57L15.42,11.8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"css\": {\n    \"name\": \"css\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.5,14v-1H11v0.5h2v-1h-2.5c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H13v-0.5h-2v1h2.5 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C9.95,15,9.5,14.55,9.5,14z M17,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1h-2.5v-1 h2V11H21v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2.5v1h-2V13H16v1C16,14.55,16.45,15,17,15z M8,10 c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1H6.5v0.5h-2v-3h2V11H8V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.5,11.5v-0.75h1V11h1v-0.75H9c-0.28,0-0.5-0.22-0.5-0.5V8.5C8.5,8.22,8.72,8,9,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1V9h-1 v0.75H11c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5H9C8.72,12,8.5,11.78,8.5,11.5z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5 v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5 H15V11h-1v-0.25h-1v0.75C13,11.78,13.22,12,13.5,12z M6.5,12C6.77,12,7,11.78,7,11.5v-0.75H6V11H5V9h1v0.25h1L7,8.5 C7,8.22,6.78,8,6.5,8h-2C4.22,8,4,8.22,4,8.5v3C4,11.78,4.22,12,4.5,12H6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"saved_search\": {\n    \"name\": \"saved_search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2.17-1.5l2.14-1.53 2.14 1.53-.83-2.46 2.15-1.5h-2.62L9.47 6l-.84 2.54H6l2.14 1.49z\\\"></path>\"\n      }\n    }\n  },\n  \"satellite_alt\": {\n    \"name\": \"satellite_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.44,0.59l-3.18,3.18c-0.78,0.78-0.78,2.05,0,2.83l1.24,1.24l-0.71,0.71L11.55,7.3c-0.78-0.78-2.05-0.78-2.83,0 L7.3,8.72c-0.78,0.78-0.78,2.05,0,2.83l1.24,1.24l-0.71,0.71L6.6,12.25c-0.78-0.78-2.05-0.78-2.83,0l-3.18,3.18 c-0.78,0.78-0.78,2.05,0,2.83l3.54,3.54c0.78,0.78,2.05,0.78,2.83,0l3.18-3.18c0.78-0.78,0.78-2.05,0-2.83l-1.24-1.24l0.71-0.71 l1.24,1.24c0.78,0.78,2.05,0.78,2.83,0l1.41-1.41c0.78-0.78,0.78-2.05,0-2.83L13.84,9.6l0.71-0.71l1.24,1.24 c0.78,0.78,2.05,0.78,2.83,0l3.18-3.18c0.78-0.78,0.78-2.05,0-2.83l-3.54-3.54C17.48-0.2,16.22-0.2,15.44,0.59z M6.6,19.32 l-1.06,1.06L2,16.85l1.06-1.06L6.6,19.32z M8.72,17.2l-1.06,1.06l-3.54-3.54l1.06-1.06L8.72,17.2z M18.26,7.66L17.2,8.72 l-3.54-3.54l1.06-1.06L18.26,7.66z M20.38,5.54L19.32,6.6l-3.54-3.54L16.85,2L20.38,5.54z M14,21l0,2c4.97,0,9-4.03,9-9l-2,0 C21,17.87,17.87,21,14,21z M14,17l0,2c2.76,0,5-2.24,5-5l-2,0C17,15.66,15.66,17,14,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.5,12H19c0,3.87-3.13,7-7,7v-1.5C15.03,17.5,17.5,15.03,17.5,12z M12,14.5V16c2.21,0,4-1.79,4-4h-1.5 C14.5,13.38,13.38,14.5,12,14.5z M15.29,0.44l3.18,3.18c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0 l-1.24-1.24l-0.71,0.71l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-1.41,1.41c-0.59,0.59-1.54,0.59-2.12,0l-1.24-1.24l-0.71,0.71 l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-3.18-3.18c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83 c0.59-0.59,1.54-0.59,2.12,0l1.24,1.24l0.71-0.71L6.1,9.63c-0.59-0.59-0.59-1.54,0-2.12L7.51,6.1c0.59-0.59,1.54-0.59,2.12,0 l1.24,1.24l0.71-0.71l-1.24-1.24c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83C13.75-0.15,14.7-0.15,15.29,0.44z M2.56,13.17L1.5,14.23 l3.18,3.18l1.06-1.06L2.56,13.17z M4.33,11.4l-1.06,1.06l3.18,3.18l1.06-1.06L4.33,11.4z M12.46,3.27L11.4,4.33l3.18,3.18 l1.06-1.06L12.46,3.27z M14.23,1.5l-1.06,1.06l3.18,3.18l1.06-1.06L14.23,1.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"eject\": {\n    \"name\": \"eject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 24V0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17h14v2H5zm7-12L5.33 15h13.34z\\\"></path>\"\n      }\n    }\n  },\n  \"minimize\": {\n    \"name\": \"minimize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"print\": {\n    \"name\": \"print\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z\\\"></path>\"\n      }\n    }\n  },\n  \"data_thresholding\": {\n    \"name\": \"data_thresholding\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10.67,8.17l2,2l3.67-3.67 l1.41,1.41L12.67,13l-2-2l-3,3l-1.41-1.41L10.67,8.17z M5,16h1.72L5,17.72V16z M5.84,19l3-3h1.83l-3,3H5.84z M9.8,19l3-3h1.62l-3,3 H9.8z M13.53,19l3-3h1.62l-3,3H13.53z M19,19h-1.73L19,17.27V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-1.08l1.08-1.08V15.5z M15.5,13L15.5,13L13,15.5h-1.07l2.5-2.5h-1.41l-2.5,2.5H9.46l2.5-2.5h-1.41l-2.5,2.5H6.98 l2.5-2.5H8.07l-2.5,2.5H4.5L7,13H5.59L4.5,14.09V4.5h11V13z\\\"></path><g><polygon points=\\\"10.69,10.62 14.25,7.06 13.19,6 10.69,8.5 9.19,7 5.75,10.44 6.81,11.5 9.19,9.12\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"tour\": {\n    \"name\": \"tour\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_today\": {\n    \"name\": \"calendar_today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_cart_checkout\": {\n    \"name\": \"shopping_cart_checkout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2 S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44 C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z M12,2l4,4l-4,4l-1.41-1.41L12.17,7L8,7l0-2l4.17,0l-1.59-1.59L12,2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7,16.5C7,17.33,6.33,18,5.5,18S4,17.33,4,16.5S4.67,15,5.5,15S7,15.67,7,16.5z M14.5,15c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S15.33,15,14.5,15z M6.6,11h6.67c0.6,0,1.14-0.36,1.38-0.91L17,4.59L15.62,4l-2.35,5.5H6.99 L3.77,2H1v1.5h1.79l2.73,6.37l-1.08,1.88c-0.58,1,0.14,2.25,1.3,2.25H16v-1.5H5.73L6.6,11z M8.94,3.06l1.19,1.19H7v1.5h3.13 L8.94,6.94L10,8l3-3l-3-3L8.94,3.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"book\": {\n    \"name\": \"book\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z\\\"></path>\"\n      }\n    }\n  },\n  \"report_problem\": {\n    \"name\": \"report_problem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_calendar\": {\n    \"name\": \"edit_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,22H5c-1.11,0-2-0.9-2-2L3.01,6c0-1.1,0.88-2,1.99-2h1V2h2v2h8V2h2v2h1c1.1,0,2,0.9,2,2v6h-2v-2H5v10h7V22z M22.13,16.99 l0.71-0.71c0.39-0.39,0.39-1.02,0-1.41l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0l-0.71,0.71L22.13,16.99z M21.42,17.7l-5.3,5.3H14 v-2.12l5.3-5.3L21.42,17.7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.5,18h-5C3.67,18,3,17.32,3,16.5v-11C3,4.68,3.67,4,4.5,4H6V2h1.5v2h5V2H14v2h1.5C16.33,4,17,4.68,17,5.5V10h-1.5V9h-11 v7.5h5V18z M17.78,13.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L17.78,13.99z M17.19,14.58L12.77,19H11v-1.77l4.42-4.42L17.19,14.58z\\\"></path>\"\n      }\n    }\n  },\n  \"book_online\": {\n    \"name\": \"book_online\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M7,18V6h10v12H7z M16,11V9.14 C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1l0,1.76C8,15.49,8.45,16,9,16h6 c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tab\": {\n    \"name\": \"tab\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"eco\": {\n    \"name\": \"eco\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37C19.43,14.47,20,4,20,4S9.53,4.57,6.05,8.05z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.53,7.04c-2.05,2.05-2.05,5.36-0.01,7.41c1.11-2.55,3.07-4.68,5.53-5.95C8.97,10.26,7.51,12.71,7,15.49 c1.95,0.92,4.35,0.59,5.96-1.03C15.57,11.86,16,4,16,4S8.14,4.43,5.53,7.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_update_alt\": {\n    \"name\": \"system_update_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 .5h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 16.5l4-4h-3v-9h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V5.49h6V3.5H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"add_shopping_cart\": {\n    \"name\": \"add_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm18.31 6l-2.76 5z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_later\": {\n    \"name\": \"watch_later\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"assessment\": {\n    \"name\": \"assessment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"fit_screen\": {\n    \"name\": \"fit_screen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h3c1.1 0 2 .9 2 2v2h-2V6h-3V4zM4 8V6h3V4H4c-1.1 0-2 .9-2 2v2h2zm16 8v2h-3v2h3c1.1 0 2-.9 2-2v-2h-2zM7 18H4v-2H2v2c0 1.1.9 2 2 2h3v-2zM18 8H6v8h12V8z\\\"></path>\"\n      }\n    }\n  },\n  \"hls_off\": {\n    \"name\": \"hls_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.83,15h1.67c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1H19v1h-2V13h-1.17L17.83,15z M8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41-1.41l18.38,18.38 l-1.41,1.41L12.17,15H10v-2.17L8,10.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,12c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2 C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.13L14.12,12H15.5z\\\"></path><polygon points=\\\"2.93,2.93 1.87,3.99 6,8.12 6,9.5 5,9.5 5,8 4,8 4,12 5,12 5,10.5 6,10.5 6,12 7,12 7,9.12 9,11.12 9,12 9.88,12 16.01,18.13 17.07,17.07\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"view_kanban\": {\n    \"name\": \"view_kanban\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M9,17H7V7h2V17z M13,12h-2V7h2V12z M17,15h-2V7h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7.5,14H6V6h1.5V14z M10.75,10h-1.5V6h1.5V10z M14,12h-1.5V6H14V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_input_component\": {\n    \"name\": \"settings_input_component\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"commute\": {\n    \"name\": \"commute\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2.03L9 18v-5H4V5.98L13 6v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 13.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angleup\": {\n    \"name\": \"text_rotation_angleup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.49 4.21L3.43 5.27 7.85 16.4l1.48-1.48-.92-2.19 3.54-3.54 2.19.92 1.48-1.48L4.49 4.21zm3.09 6.8L5.36 6.14l4.87 2.23-2.65 2.64zm12.99-1.68h-4.24l1.41 1.41-8.84 8.84L10.32 21l8.84-8.84 1.41 1.41V9.33z\\\"></path>\"\n      }\n    }\n  },\n  \"chrome_reader_mode\": {\n    \"name\": \"chrome_reader_mode\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M-74 29h48v48h-48V29zM0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 12h7v1.5h-7zm0-2.5h7V11h-7zm0 5h7V16h-7zM21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15h-9V6h9v13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_cozy\": {\n    \"name\": \"view_cozy\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M11.25,16.75h-4v-4h4V16.75z M11.25,11.25h-4v-4h4V11.25z M16.75,16.75h-4v-4h4V16.75z M16.75,11.25h-4v-4h4V11.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M9.25,13.75h-3v-3h3V13.75z M9.25,9.25h-3v-3h3V9.25z M13.75,13.75h-3v-3h3V13.75z M13.75,9.25h-3v-3h3V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"token\": {\n    \"name\": \"token\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M19.97,6.43L12,2L4.03,6.43L9.1,9.24C9.83,8.48,10.86,8,12,8s2.17,0.48,2.9,1.24L19.97,6.43z M10,12c0-1.1,0.9-2,2-2 s2,0.9,2,2s-0.9,2-2,2S10,13.1,10,12z M11,21.44L3,17V8.14l5.13,2.85C8.04,11.31,8,11.65,8,12c0,1.86,1.27,3.43,3,3.87V21.44z M13,21.44v-5.57c1.73-0.44,3-2.01,3-3.87c0-0.35-0.04-0.69-0.13-1.01L21,8.14L21,17L13,21.44z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M15.98,5.82L10,2.5L4.02,5.82l3.8,2.11C8.37,7.36,9.14,7,10,7s1.63,0.36,2.17,0.93L15.98,5.82z M8.5,10 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M9.25,17.08l-6-3.33V7.11L7.1,9.24 C7.03,9.49,7,9.74,7,10c0,1.4,0.96,2.57,2.25,2.91V17.08z M10.75,17.08v-4.18C12.04,12.57,13,11.4,13,10c0-0.26-0.03-0.51-0.1-0.76 l3.85-2.14l0,6.64L10.75,17.08z\\\"></path>\"\n      }\n    }\n  },\n  \"opacity\": {\n    \"name\": \"opacity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z\\\"></path>\"\n      }\n    }\n  },\n  \"spellcheck\": {\n    \"name\": \"spellcheck\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_visible\": {\n    \"name\": \"disabled_visible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,5.17,3.93,9.43,8.96,9.95 c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69 C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z M17,13c-3.18,0-5.9,1.87-7,4.5 c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,20c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C19.5,18.88,18.38,20,17,20z M18.5,17.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 S18.5,16.67,18.5,17.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.99,10.38C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98 c-0.73-0.53-1.35-1.18-1.83-1.93C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z M15.5,14.5 c0,0.69-0.56,1.25-1.25,1.25S13,15.19,13,14.5s0.56-1.25,1.25-1.25S15.5,13.81,15.5,14.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5 c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,16.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S15.35,16.5,14.25,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_settings_new\": {\n    \"name\": \"power_settings_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_hdmi\": {\n    \"name\": \"settings_input_hdmi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z\\\"></path>\"\n      }\n    }\n  },\n  \"label_off\": {\n    \"name\": \"label_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.25 2.75l17 17L19 21l-2-2H5c-1.1 0-2-.9-2-2V7c0-.55.23-1.05.59-1.41L2 4l1.25-1.25zM22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5H8l11 11 3-4z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel_class\": {\n    \"name\": \"hotel_class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.58 10H1l6.17 4.41L4.83 22 11 17.31 17.18 22l-2.35-7.59L21 10h-7.58L11 2l-2.42 8zm12.78 12-1.86-6.01L23.68 13h-3.44l-3.08 2.2 1.46 4.72L21.36 22zM17 8l-1.82-6-1.04 3.45.77 2.55H17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.06 8H1l4.94 3.93L4.06 18 9 14.25 13.94 18l-1.88-6.07L17 8h-6.06L9 2 7.06 8zm4.3-3.56.67 2.06h1.58L12.15 2l-.79 2.44zM16.9 10l-3.1 2.47 1.23 3.97L17.08 18l-1.55-5 3.77-3h-2.4z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_add\": {\n    \"name\": \"assignment_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21v1z\\\"></path></g><g><path d=\\\"M11.69 15c.36-.75.84-1.43 1.43-2H7v-2h11c1.07 0 2.09.25 3 .69V5c0-1.1-.9-2-2-2h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6.69c-.44-.91-.69-1.93-.69-3 0-.34.03-.67.08-1H7v-2h4.69zM12 2.75c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM7 7h10v2H7V7z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.6 14H6v-1.5h4.11c.35-.68.82-1.27 1.41-1.75H6v-1.5h8v.35c.32-.06.66-.1 1-.1.71 0 1.38.14 2 .38V4.5c0-.83-.67-1.5-1.5-1.5h-3.57c-.22-.86-1-1.5-1.93-1.5-.93 0-1.71.64-1.93 1.5H4.5C3.67 3 3 3.67 3 4.5v11c0 .83.67 1.5 1.5 1.5h5.38c-.24-.62-.38-1.29-.38-2 0-.34.04-.68.1-1zM10 3c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5zM6 6h8v1.5H6V6z\\\"></path></g><path d=\\\"M15 11c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm2 4.5h-1.5V17h-1v-1.5H13v-1h1.5V13h1v1.5H17v1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"expand\": {\n    \"name\": \"expand\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 20h16v2H4zM4 2h16v2H4zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"visibility_off\": {\n    \"name\": \"visibility_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_access_shortcut\": {\n    \"name\": \"switch_access_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M12,12 c0-2.73,1.08-5.27,2.75-7.25L12,2h7v7l-2.82-2.82C14.84,7.82,14,9.88,14,12c0,3.32,2.1,6.36,5,7.82L19,22 C14.91,20.41,12,16.35,12,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.2,0.83-4.24,2.2-5.8L10,2h5.5v5.5l-2.23-2.23C12.17,6.55,11.5,8.21,11.5,10c0,2.81,1.64,5.23,4,6.37 L15.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"find_in_page\": {\n    \"name\": \"find_in_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 19.59V8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_in\": {\n    \"name\": \"zoom_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\\"></path><path d=\\\"M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"done\": {\n    \"name\": \"done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark\": {\n    \"name\": \"bookmark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"subtitles_off\": {\n    \"name\": \"subtitles_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H6.83l8,8H20v2h-3.17l4.93,4.93C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z\\\"></path><path d=\\\"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M8,12v2H4 v-2H8z M14,16.83V18H4v-2h9.17L14,16.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16,12v1h-1.59l2.46,2.46C16.95,15.32,17,15.17,17,15V5c0-0.55-0.45-1-1-1H5.41l8,8H16z\\\"></path><path d=\\\"M2.93,2.93L2.22,3.64l0.9,0.9C3.05,4.68,3,4.83,3,5v10c0,0.55,0.45,1,1,1h10.59l1.78,1.78l0.71-0.71L2.93,2.93z M8,12 h2.59l1,1H8V12z M4,12h3v1H4V12z M12,15H4v-1h8V15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"verified\": {\n    \"name\": \"verified\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,10l-1.77-2.03l0.25-2.69l-2.63-0.6l-1.37-2.32L10,3.43L7.53,2.36L6.15,4.68L3.53,5.28l0.25,2.69L2,10l1.77,2.03 l-0.25,2.69l2.63,0.6l1.37,2.32L10,16.56l2.47,1.07l1.37-2.32l2.63-0.6l-0.25-2.69L18,10z M8.59,13.07l-2.12-2.12l0.71-0.71 l1.41,1.41l4.24-4.24l0.71,0.71L8.59,13.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_left\": {\n    \"name\": \"arrow_circle_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,12c0,5.52,4.48,10,10,10s10-4.48,10-10c0-5.52-4.48-10-10-10C6.48,2,2,6.48,2,12z M12,11l4,0v2l-4,0l0,3l-4-4l4-4L12,11 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10,9.25l3,0v1.5l-3,0L10,13l-3-3l3-3L10,9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"addchart\": {\n    \"name\": \"addchart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3zm-3 14H5V5h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6h-2v6zm-4-6v4h2v-4h-2zm-4 4h2V9h-2v8zm-2 0v-6H7v6h2z\\\"></path>\"\n      }\n    }\n  },\n  \"delete_outline\": {\n    \"name\": \"delete_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4z\\\"></path>\"\n      }\n    }\n  },\n  \"redeem\": {\n    \"name\": \"redeem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_svideo\": {\n    \"name\": \"settings_input_svideo\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_ind\": {\n    \"name\": \"assignment_ind\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z\\\"></path>\"\n      }\n    }\n  },\n  \"abc\": {\n    \"name\": \"abc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V11z M8,10v5H6.5v-1.5h-2V15H3v-5c0-0.55,0.45-1,1-1h3C7.55,9,8,9.45,8,10z M6.5,10.5h-2V12h2V10.5z M13.5,12c0.55,0,1,0.45,1,1v1 c0,0.55-0.45,1-1,1h-4V9h4c0.55,0,1,0.45,1,1v1C14.5,11.55,14.05,12,13.5,12z M11,10.5v0.75h2V10.5H11z M13,12.75h-2v0.75h2V12.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,8.5C13,8.22,13.22,8,13.5,8h2C15.78,8,16,8.22,16,8.5v0.75h-1V9h-1v2h1v-0.25l1-0.01v0.76c0,0.28-0.22,0.5-0.5,0.5h-2 c-0.28,0-0.5-0.22-0.5-0.5V8.5z M7,8.5V12H6v-1H5v1H4V8.5C4,8.22,4.22,8,4.5,8h2C6.78,8,7,8.22,7,8.5z M6,9H5v1h1V9z M11,10 c0.28,0,0.5,0.22,0.5,0.5v1c0,0.27-0.22,0.5-0.5,0.5H8.5V8H11c0.28,0,0.5,0.22,0.5,0.5v1C11.5,9.77,11.28,10,11,10z M9.5,9v0.5h1V9 H9.5z M10.5,11v-0.5h-1V11H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"unfold_more_double\": {\n    \"name\": \"unfold_more_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,7.83L15.17,11l1.41-1.41L12,5L7.41,9.59L8.83,11L12,7.83z M12,2.83L15.17,6l1.41-1.41L12,0L7.41,4.59L8.83,6L12,2.83 z M12,21.17L8.83,18l-1.41,1.41L12,24l4.59-4.59L15.17,18L12,21.17z M12,16.17L8.83,13l-1.41,1.41L12,19l4.59-4.59L15.17,13 L12,16.17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"6.63,7.37 7.69,8.43 10,6.12 12.31,8.43 13.37,7.37 10,4\\\"></polygon><polygon points=\\\"6.63,3.37 7.69,4.43 10,2.12 12.31,4.43 13.37,3.37 10,0\\\"></polygon><polygon points=\\\"13.37,16.63 12.31,15.57 10,17.88 7.69,15.57 6.63,16.63 10,20\\\"></polygon><polygon points=\\\"13.37,12.63 12.31,11.57 10,13.88 7.69,11.57 6.63,12.63 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"youtube_searched_for\": {\n    \"name\": \"youtube_searched_for\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z\\\"></path>\"\n      }\n    }\n  },\n  \"compress\": {\n    \"name\": \"compress\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 19h3v3h2v-3h3l-4-4-4 4zm8-15h-3V1h-2v3H8l4 4 4-4zM4 9v2h16V9H4z\\\"></path><path d=\\\"M4 12h16v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"room\": {\n    \"name\": \"room\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"lightbulb_circle\": {\n    \"name\": \"lightbulb_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,19c-0.83,0-1.5-0.67-1.5-1.5h3 C13.5,18.33,12.83,19,12,19z M15,16.5H9V15h6V16.5z M14.97,14H9.03C7.8,13.09,7,11.64,7,10c0-2.76,2.24-5,5-5s5,2.24,5,5 C17,11.64,16.2,13.09,14.97,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,15.5c-0.55,0-1-0.45-1-1h2 C11,15.05,10.55,15.5,10,15.5z M12.5,13.75h-5v-1h5V13.75z M12.62,12H7.38C6.54,11.27,6,10.2,6,9c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.2,13.46,11.27,12.62,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rebase_edit\": {\n    \"name\": \"rebase_edit\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"19\\\" cy=\\\"5\\\" r=\\\"3\\\"></circle><path d=\\\"M10.76 9.24 15 5 10.76.76 9.34 2.17 11.17 4H7.82C7.4 2.84 6.3 2 5 2 3.34 2 2 3.34 2 5c0 1.3.84 2.4 2 2.82v8.37C2.84 16.6 2 17.7 2 19c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V7.82c.85-.31 1.51-.97 1.82-1.82h3.36L9.34 7.83l1.42 1.41z\\\"></path><polygon points=\\\"10,19 10,22 13,22 19.26,15.74 16.26,12.74\\\"></polygon><path d=\\\"M20.12 10.29c-.39-.39-1.02-.39-1.41 0l-1.38 1.38 3 3 1.38-1.38c.39-.39.39-1.02 0-1.41l-1.59-1.59z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.56 9.15c-.2-.2-.51-.2-.71 0l-1.21 1.21 2 2 1.21-1.21c.2-.2.2-.51 0-.71l-1.29-1.29z\\\"></path><polygon points=\\\"9,16 9,18 11,18 15.94,13.06 13.94,11.06\\\"></polygon><circle cx=\\\"15.5\\\" cy=\\\"4.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M9.17 7.33 12 4.5 9.17 1.67 8.11 2.73l1.02 1.02H6.87C6.55 2.74 5.62 2 4.5 2 3.12 2 2 3.12 2 4.5c0 1.12.74 2.05 1.75 2.37v6.25C2.74 13.45 2 14.38 2 15.5 2 16.88 3.12 18 4.5 18S7 16.88 7 15.5c0-1.12-.74-2.05-1.75-2.37V6.87c.77-.24 1.38-.85 1.62-1.62h2.26L8.11 6.27l1.06 1.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"open_in_browser\": {\n    \"name\": \"open_in_browser\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"question_answer\": {\n    \"name\": \"question_answer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"card_membership\": {\n    \"name\": \"card_membership\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_full\": {\n    \"name\": \"open_in_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71\\\"></polygon>\"\n      }\n    }\n  },\n  \"schedule\": {\n    \"name\": \"schedule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><path d=\\\"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_add\": {\n    \"name\": \"bookmark_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z M19,21l-7-3l-7,3V5c0-1.1,0.9-2,2-2l7,0c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5 c0.34,0,0.68-0.03,1-0.1V21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,4.25v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5v-1.5H15.75z M11,5c0,2.21,1.79,4,4,4v8l-5-2l-5,2V4.5 C5,3.67,5.67,3,6.5,3l5.04,0C11.19,3.59,11,4.27,11,5z\\\"></path>\"\n      }\n    }\n  },\n  \"repartition\": {\n    \"name\": \"repartition\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,21h18v-6H3V21z M10.33,19v-2h3.33v2H10.33z M19,19h-3.33v-2H19V19z M5,17h3.33v2H5V17z\\\"></path><path d=\\\"M6,10l1.42-1.42L5.83,7H17c1.1,0,2,0.9,2,2s-0.9,2-2,2H3v2h14c2.21,0,4-1.79,4-4s-1.79-4-4-4H5.83l1.59-1.59L6,2L2,6L6,10 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,8.25l1.06-1.06L4.87,6H14c0.83,0,1.5,0.67,1.5,1.5S14.83,9,14,9H3v1.5h11c1.65,0,3-1.35,3-3s-1.35-3-3-3H4.87 l1.19-1.19L5,2.25l-3,3L5,8.25z\\\"></path><path d=\\\"M3,17h14v-5H3V17z M12.83,13.5h2.67v2h-2.67V13.5z M8.67,13.5h2.67v2H8.67V13.5z M4.5,13.5h2.67v2H4.5V13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hourglass_disabled\": {\n    \"name\": \"hourglass_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17\\\"></polygon><path d=\\\"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"7,4 13,4 13,6.59 10.5,9.09 11.21,9.79 14,7 14,7 14,3 6,3 6,4.59 7,5.59\\\"></polygon><path d=\\\"M2.93,2.93L2.22,3.64l6.57,6.57L6,13h0v4h8v-1.59l2.36,2.36l0.71-0.71L2.93,2.93z M13,16H7l0-2.59l2.5-2.5l3.5,3.5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hls\": {\n    \"name\": \"hls\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9z M16.5,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1 c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1H19v1h-2V13h-1.5v1C15.5,14.55,15.95,15,16.5,15z M14,15v-1.5h-2.5 V9H10v6H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,8h1v4H6v-1.5H5V12H4V8h1v1.5h1V8z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5 C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.75 C13,11.78,13.22,12,13.5,12z M11.5,11H10V8H9v4l2.5,0V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"language\": {\n    \"name\": \"language\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z\\\"></path>\"\n      }\n    }\n  },\n  \"store\": {\n    \"name\": \"store\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z\\\"></path>\"\n      }\n    }\n  },\n  \"privacy_tip\": {\n    \"name\": \"privacy_tip\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,2.5L4,5.2v4.15c0,3.63,2.56,7.33,6,8.15c3.44-0.82,6-4.52,6-8.15V5.2L10,2.5z M10.5,13h-1V9h1V13z M10.5,8h-1V7h1V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_flat\": {\n    \"name\": \"trending_flat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12l-4-4v3H3v2h15v3z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_alt\": {\n    \"name\": \"filter_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24 M24,24H0\\\" fill=\\\"none\\\"></path><path d=\\\"M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6c0,0,3.72-4.8,5.74-7.39 C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_cell\": {\n    \"name\": \"settings_cell\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_view_month\": {\n    \"name\": \"calendar_view_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,11H4V6h4V11z M14,11h-4V6h4V11z M20,11h-4V6h4V11z M8,18H4v-5h4V18z M14,18h-4v-5h4V18z M20,18h-4v-5h4V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_support\": {\n    \"name\": \"contact_support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\\\"></path>\"\n      }\n    }\n  },\n  \"voice_over_off\": {\n    \"name\": \"voice_over_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.99 9.18c0-.06.01-.12.01-.18 0-2.21-1.79-4-4-4-.06 0-.12.01-.18.01l4.17 4.17zm-6.1-3.56L4.27 3 3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62L19.73 21 21 19.73l-8.62-8.62-5.49-5.49zM9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z\\\"></path>\"\n      }\n    }\n  },\n  \"dynamic_form\": {\n    \"name\": \"dynamic_form\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,20v-9h-2V4h7l-2,5h2L17,20z M15,13v7H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2H15z M6.25,15.75h-1.5v1.5h1.5V15.75z M13,4v7H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H13z M6.25,6.75h-1.5v1.5h1.5V6.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"123\": {\n    \"name\": \"123\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,15H5.5v-4.5H4V9h3V15z M13.5,13.5h-3v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H9v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15 h4.5V13.5z M19.5,14v-4c0-0.55-0.45-1-1-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15,19.5,14.55,19.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,12H5V9H4V8h2V12z M11,11H9v-0.5h1.5c0.28,0,0.5-0.22,0.5-0.5V8.5C11,8.22,10.78,8,10.5,8H8v1h2v0.5H8.5 C8.22,9.5,8,9.72,8,10v2h3V11z M15.5,11.5v-3C15.5,8.22,15.28,8,15,8h-2.5v1h2v0.5h-1v1h1V11h-2v1H15 C15.28,12,15.5,11.78,15.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_up\": {\n    \"name\": \"trending_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z\\\"></path>\"\n      }\n    }\n  },\n  \"wysiwyg\": {\n    \"name\": \"wysiwyg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"search\": {\n    \"name\": \"search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_tracking\": {\n    \"name\": \"spatial_tracking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><path d=\\\"M20.05,2.41L18.64,1c-3.51,3.51-3.51,9.21,0,12.73l1.41-1.41C17.32,9.58,17.32,5.14,20.05,2.41z\\\"></path><path d=\\\"M22.88,5.24l-1.41-1.41c-1.95,1.95-1.95,5.12,0,7.07l1.41-1.41C21.71,8.32,21.71,6.41,22.88,5.24z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M16.4,2.06L15.34,1c-3.12,3.12-3.12,8.19,0,11.31l1.06-1.06C13.87,8.72,13.87,4.59,16.4,2.06z\\\"></path><path d=\\\"M18.53,4.18l-1.06-1.06c-1.95,1.95-1.95,5.12,0,7.07l1.06-1.06C17.16,7.77,17.16,5.55,18.53,4.18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"html\": {\n    \"name\": \"html\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9z M17.5,9H13c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1V14H16v-3.51h1V15h1.5v-5 C18.5,9.45,18.05,9,17.5,9z M11,9H6v1.5h1.75V15h1.5v-4.5H11V9z M24,15v-1.5h-2.5V9H20v6H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4,8h1v4H4v-1.5H3V12H2V8h1v1.5h1V8z M6,9h1v3h1V9h1V8H6V9z M18.5,11H17V8h-1v4l2.5,0V11z M14.5,8h-4 C10.22,8,10,8.22,10,8.5V12h1V9h1v2h1V9h1v3h1V8.5C15,8.22,14.78,8,14.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_backup_restore\": {\n    \"name\": \"settings_backup_restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"admin_panel_settings\": {\n    \"name\": \"admin_panel_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z\\\"></path><path d=\\\"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,9c0.35,0,0.68,0.06,1,0.14V6.18L9,4L4,6.18v3.27c0,3.03,2.13,5.86,5,6.55c0.35-0.08,0.7-0.2,1.02-0.35 C9.39,14.94,9,14.02,9,13C9,10.79,10.79,9,13,9z\\\"></path><path d=\\\"M13,10c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C16,11.34,14.66,10,13,10z M13,11.03c0.47,0,0.84,0.38,0.84,0.84 c0,0.46-0.38,0.84-0.84,0.84s-0.84-0.38-0.84-0.84C12.16,11.41,12.53,11.03,13,11.03z M13,15.06c-0.7,0-1.31-0.35-1.68-0.87 c0.04-0.54,1.13-0.81,1.68-0.81s1.64,0.27,1.68,0.81C14.31,14.72,13.7,15.06,13,15.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"accessible_forward\": {\n    \"name\": \"accessible_forward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"17\\\" cy=\\\"4.54\\\" r=\\\"2\\\"></circle><path d=\\\"M14 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C17.42 8.5 16.44 7 14.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L7.22 10l1.92.53L9.79 9H12l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H17v5h2v-5.5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle\": {\n    \"name\": \"check_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"face\": {\n    \"name\": \"face\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"grading\": {\n    \"name\": \"grading\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"12.25\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"6.75\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"9.5\\\"></rect><polygon points=\\\"12.17,14.59 11.46,13.88 10.76,14.59 12.17,16 15,13.17 14.29,12.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"contactless\": {\n    \"name\": \"contactless\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M7.63,11.71l-0.91-0.41 C6.91,10.86,7.01,10.42,7,9.98C6.99,9.53,6.9,9.11,6.72,8.71l0.91-0.42C7.87,8.82,7.99,9.38,8,9.97 C8.01,10.56,7.88,11.14,7.63,11.71z M9.82,12.79L8.95,12.3c0.37-0.65,0.55-1.39,0.55-2.22c0-0.84-0.19-1.64-0.57-2.39l0.89-0.45 c0.45,0.89,0.67,1.85,0.67,2.84C10.5,11.08,10.27,12,9.82,12.79z M12.07,13.72l-0.9-0.44c0.55-1.13,0.83-2.24,0.83-3.3 c0-1.06-0.28-2.16-0.83-3.26l0.9-0.44C12.69,7.52,13,8.77,13,9.99C13,11.2,12.69,12.46,12.07,13.72z\\\"></path></g>\"\n      }\n    }\n  },\n  \"all_inbox\": {\n    \"name\": \"all_inbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v3c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"help\": {\n    \"name\": \"help\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"offline_pin\": {\n    \"name\": \"offline_pin\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M17,18H7v-2h10V18z M10.3,14L7,10.7l1.4-1.4l1.9,1.9 l5.3-5.3L17,7.3L10.3,14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"info_outline\": {\n    \"name\": \"info_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11,7h2v2h-2V7z M11,11h2v6h-2V11z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20 c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"highlight_off\": {\n    \"name\": \"highlight_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_scan_wifi\": {\n    \"name\": \"perm_scan_wifi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"alarm_off\": {\n    \"name\": \"alarm_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92 0-4.97-4.03-9-9-9-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29L1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28L6.6 1.86l-.86.71 1.42 1.42.86-.71z\\\"></path>\"\n      }\n    }\n  },\n  \"work_history\": {\n    \"name\": \"work_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,11c1.49,0,2.87,0.47,4,1.26V8c0-1.11-0.89-2-2-2h-4V4c0-1.11-0.89-2-2-2h-4C8.89,2,8,2.89,8,4v2H4 C2.89,6,2.01,6.89,2.01,8L2,19c0,1.11,0.89,2,2,2h7.68C11.25,20.09,11,19.08,11,18C11,14.13,14.13,11,18,11z M10,4h4v2h-4V4z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,5H13V3.5C13,2.67,12.33,2,11.5,2h-3C7.67,2,7,2.67,7,3.5V5H3.5C2.67,5,2,5.67,2,6.5v9C2,16.33,2.67,17,3.5,17h5.38 c-0.24-0.62-0.38-1.29-0.38-2c0-3.04,2.46-5.5,5.5-5.5c1.58,0,3,0.67,4,1.73V6.5C18,5.67,17.33,5,16.5,5z M11.5,5h-3V3.5h3V5z\\\"></path><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.15,16.85l-1.65-1.65V13h1v1.79 l1.35,1.35L15.15,16.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_enhance\": {\n    \"name\": \"camera_enhance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path><path d=\\\"M12 17l1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"accessible\": {\n    \"name\": \"accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"label_outline\": {\n    \"name\": \"label_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z\\\"></path>\"\n      }\n    }\n  },\n  \"pregnant_woman\": {\n    \"name\": \"pregnant_woman\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M9,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S9,5.11,9,4z M16,13c-0.01-1.34-0.83-2.51-2-3c0-1.66-1.34-3-3-3 s-3,1.34-3,3v7h2v5h3v-5h3V13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"http\": {\n    \"name\": \"http\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z\\\"></path><path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"info\": {\n    \"name\": \"info\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_day\": {\n    \"name\": \"view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 21h19v-3H2v3zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 3v3h19V3H2z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture\": {\n    \"name\": \"picture_in_picture\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7h-8v6h8V7zm2-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angledown\": {\n    \"name\": \"text_rotation_angledown\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.4 4.91l-1.06-1.06L7.2 8.27l1.48 1.48 2.19-.92 3.54 3.54-.92 2.19 1.48 1.48L19.4 4.91zm-6.81 3.1l4.87-2.23-2.23 4.87-2.64-2.64zM14.27 21v-4.24l-1.41 1.41-8.84-8.84-1.42 1.42 8.84 8.84L10.03 21h4.24z\\\"></path>\"\n      }\n    }\n  },\n  \"login\": {\n    \"name\": \"login\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,4v1h6v10h-6v1h6c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1H10z\\\"></path><polygon points=\\\"9.5,6.5 8.79,7.21 11.09,9.5 3,9.5 3,10.5 11.09,10.5 8.79,12.79 9.5,13.5 13,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"text_rotate_up\": {\n    \"name\": \"text_rotate_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12v1.5l11 4.75v-2.1l-2.2-.9v-5l2.2-.9v-2.1L3 12zm7 2.62l-5.02-1.87L10 10.88v3.74zm8-10.37l-3 3h2v12.5h2V7.25h2l-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_audio_off\": {\n    \"name\": \"spatial_audio_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><path d=\\\"M20.36,1l-1.41,1.41c2.73,2.73,2.73,7.17,0,9.9l1.41,1.41C23.88,10.21,23.88,4.51,20.36,1z\\\"></path><path d=\\\"M17.54,10.9c1.95-1.95,1.95-5.12,0-7.07l-1.41,1.41c1.17,1.17,1.17,3.07,0,4.24L17.54,10.9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M16.66,1L15.6,2.06c2.53,2.53,2.53,6.66,0,9.19l1.06,1.06C19.78,9.19,19.78,4.12,16.66,1z\\\"></path><path d=\\\"M14.54,3.12l-1.06,1.06c1.36,1.36,1.36,3.59,0,4.95l1.06,1.06C16.49,8.24,16.49,5.07,14.54,3.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_vertical\": {\n    \"name\": \"swipe_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,3.5h2.02C1.13,5.82,0,8.78,0,12s1.13,6.18,3.02,8.5H1V22h5v-5H4.5v2.91c-1.86-2.11-3-4.88-3-7.91s1.14-5.79,3-7.91V7H6 V2H1V3.5z M13.85,11.62l-2.68-5.37c-0.37-0.74-1.27-1.04-2.01-0.67C8.41,5.96,8.11,6.86,8.48,7.6l4.81,9.6L10.05,18 c-0.33,0.09-0.59,0.33-0.7,0.66L9,19.78l6.19,2.25c0.5,0.17,1.28,0.02,1.75-0.22l5.51-2.75c0.89-0.45,1.32-1.48,1-2.42l-1.43-4.27 c-0.27-0.82-1.04-1.37-1.9-1.37h-4.56c-0.31,0-0.62,0.07-0.89,0.21L13.85,11.62\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.02,8.84L12.5,9.52l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0C8.29,4.82,8.01,5.56,8.29,6.19l3.54,8L9.61,14.4 c-0.57,0.05-1.05,0.42-1.26,0.95l-0.18,0.45l4.7,1.81c0.37,0.14,0.78,0.13,1.15-0.03l4.82-2.13c0.67-0.3,1.03-1.04,0.84-1.75 l-0.92-3.59C18.6,9.49,18.03,9.03,17.38,9L14.02,8.84z M1,10c0,2.69,1.2,5.05,3,6.37V14h1v4H1v-1h2.18C1.26,15.47,0,12.91,0,10 s1.26-5.47,3.18-7H1V2h4v4H4V3.63C2.2,4.95,1,7.31,1,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gavel\": {\n    \"name\": \"gavel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"20\\\" transform=\\\"matrix(0.7075 -0.7067 0.7067 0.7075 -5.6854 13.7194)\\\" width=\\\"4\\\" x=\\\"11.73\\\" y=\\\"3.73\\\"></rect><rect height=\\\"8\\\" transform=\\\"matrix(0.707 -0.7072 0.7072 0.707 0.3157 11.246)\\\" width=\\\"4\\\" x=\\\"11.73\\\" y=\\\"1.24\\\"></rect><rect height=\\\"8\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.1722 7.7256)\\\" width=\\\"4\\\" x=\\\"3.24\\\" y=\\\"9.73\\\"></rect><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"1\\\" y=\\\"21\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"restore_from_trash\": {\n    \"name\": \"restore_from_trash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-3.5l-1-1h-5l-1 1H5v2h14zM6 7v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6zm8 7v4h-4v-4H8l4-4 4 4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"support\": {\n    \"name\": \"support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M12.16,4.41c1.57,0.61,2.82,1.85,3.43,3.42 l-2.78,1.15c-0.3-0.83-0.96-1.49-1.79-1.79L12.16,4.41z M7.84,4.41L9,7.18c-0.85,0.3-1.51,0.96-1.82,1.81v0L4.41,7.84 C5.02,6.27,6.27,5.02,7.84,4.41z M7.83,15.59c-1.57-0.61-2.82-1.86-3.43-3.43l2.78-1.15v0c0.3,0.84,0.97,1.51,1.81,1.81L7.83,15.59 z M8,10c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S8,11.1,8,10z M12.17,15.59l-1.15-2.78c0.84-0.3,1.5-0.97,1.79-1.81l2.77,1.16 C14.98,13.74,13.74,14.98,12.17,15.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_list_alt\": {\n    \"name\": \"filter_list_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24m0 24H0\\\" fill=\\\"none\\\"></path><path d=\\\"M4.25 5.66c.1.13 5.74 7.33 5.74 7.33V19c0 .55.45 1 1.01 1h2.01c.55 0 1.01-.45 1.01-1v-6.02s5.49-7.02 5.75-7.34C20.03 5.32 20 5 20 5c0-.55-.45-1-1.01-1H5.01C4.4 4 4 4.48 4 5c0 .2.06.44.25.66z\\\"></path>\"\n      }\n    }\n  },\n  \"find_replace\": {\n    \"name\": \"find_replace\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z\\\"></path>\"\n      }\n    }\n  },\n  \"anchor\": {\n    \"name\": \"anchor\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"supervised_user_circle\": {\n    \"name\": \"supervised_user_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm3.61 6.34c1.07 0 1.93.86 1.93 1.93 0 1.07-.86 1.93-1.93 1.93-1.07 0-1.93-.86-1.93-1.93-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36 0 1.3-1.06 2.36-2.36 2.36s-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM11.99 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15-1.17 2.97-4.06 5.09-7.45 5.09z\\\"></path>\"\n      }\n    }\n  },\n  \"data_exploration\": {\n    \"name\": \"data_exploration\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29L7,9l2.49,2.44l2.94-2.94H11V7h4v4h-1.5V9.55l-4,4l-2.49-2.44 l-3.53,3.53C4.93,16.67,7.31,18,10,18l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16,16.75 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z\\\"></path>\"\n      }\n    }\n  },\n  \"timeline\": {\n    \"name\": \"timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11s-0.36-0.02-0.52-0.07l-4.55,4.56C4.98,15.65,5,15.82,5,16 c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12s0.36,0.02,0.52,0.07l3.55-3.56C19.02,8.35,19,8.18,19,8 c0-1.1,0.9-2,2-2S23,6.9,23,8z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"add_card\": {\n    \"name\": \"add_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h10v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M24,17v2 h-3v3h-2v-3h-3v-2h3v-3h2v3H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16H12v-1.5H3.5V10H18V5.5C18,4.67,17.33,4,16.5,4z M16.5,7h-13V5.5 h13V7z M20,15.5h-2.5V18H16v-2.5h-2.5V14H16v-2.5h1.5V14H20V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"model_training\": {\n    \"name\": \"model_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,16h1.5v-1h-1.5V16z M10,8L10,8L10,8C10,8,10,8,10,8c-1.38,0-2.5,1.12-2.5,2.5C7.5,12,9.25,13,9.25,14 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,9.12,11.38,8,10,8z M6.47,13.53l-0.71,0.71C4.67,13.16,4,11.66,4,10 c0-3.31,2.69-6,6-6V2l2.5,2.5L10,7V5c-2.76,0-5,2.24-5,5C5,11.38,5.56,12.63,6.47,13.53z M14.24,14.24l-0.71-0.71 C14.44,12.63,15,11.38,15,10s-0.56-2.63-1.47-3.53l0.71-0.71C15.33,6.84,16,8.34,16,10S15.33,13.16,14.24,14.24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_week\": {\n    \"name\": \"calendar_view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M13,6h2.5v12H13V6z M11,18H8.5V6H11 V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_week\": {\n    \"name\": \"view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.33,20H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h1.33c1.1,0,2,0.9,2,2v12C7.33,19.1,6.44,20,5.33,20z M22,18V6 c0-1.1-0.9-2-2-2h-1.33c-1.1,0-2,0.9-2,2v12c0,1.1,0.9,2,2,2H20C21.11,20,22,19.1,22,18z M14.67,18V6c0-1.1-0.9-2-2-2h-1.33 c-1.1,0-2,0.9-2,2v12c0,1.1,0.9,2,2,2h1.33C13.77,20,14.67,19.1,14.67,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.83,16H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h1.33c0.83,0,1.5,0.67,1.5,1.5v9C6.33,15.33,5.66,16,4.83,16z M12.17,14.5v-9c0-0.83-0.67-1.5-1.5-1.5H9.33c-0.83,0-1.5,0.67-1.5,1.5v9c0,0.83,0.67,1.5,1.5,1.5h1.33 C11.5,16,12.17,15.33,12.17,14.5z M18,14.5v-9C18,4.67,17.33,4,16.5,4h-1.33c-0.83,0-1.5,0.67-1.5,1.5v9c0,0.83,0.67,1.5,1.5,1.5 h1.33C17.33,16,18,15.33,18,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_takeoff\": {\n    \"name\": \"flight_takeoff\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M2.5,19h19v2h-19V19z M22.07,9.64c-0.21-0.8-1.04-1.28-1.84-1.06L14.92,10l-6.9-6.43L6.09,4.08l4.14,7.17l-4.97,1.33 l-1.97-1.54l-1.45,0.39l2.59,4.49c0,0,7.12-1.9,16.57-4.43C21.81,11.26,22.28,10.44,22.07,9.64z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"swipe_left_alt\": {\n    \"name\": \"swipe_left_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.1,13c0.46,2.28,2.48,4,4.9,4c2.76,0,5-2.24,5-5s-2.24-5-5-5c-2.42,0-4.44,1.72-4.9,4H5.83l1.59-1.59L6,8l-4,4l4,4 l1.41-1.41L5.83,13H10.1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.07,10.75C8.42,12.6,10.05,14,12,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-1.95,0-3.58,1.4-3.93,3.25l-3.2,0l1.19-1.19 L5,7l-3,3l3,3l1.06-1.06l-1.19-1.19L8.07,10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history_toggle_off\": {\n    \"name\": \"history_toggle_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.45,4.58l-0.5-0.87C7.73,3.33,8.59,3.09,9.5,3.03v1C8.77,4.09,8.08,4.28,7.45,4.58z M15.97,9.5h1 c-0.06-0.91-0.3-1.77-0.69-2.55l-0.87,0.5C15.72,8.08,15.91,8.77,15.97,9.5z M12.55,4.58l0.5-0.87c-0.78-0.38-1.64-0.62-2.55-0.69 v1C11.23,4.09,11.92,4.28,12.55,4.58z M6.58,5.08l-0.5-0.87c-0.74,0.5-1.37,1.14-1.87,1.87l0.87,0.5C5.48,5.99,5.99,5.48,6.58,5.08 z M14.92,6.58l0.87-0.5c-0.5-0.74-1.14-1.37-1.87-1.87l-0.5,0.87C14.01,5.49,14.52,5.99,14.92,6.58z M7.45,15.42l-0.5,0.87 c0.78,0.38,1.64,0.62,2.55,0.69v-1C8.77,15.91,8.08,15.72,7.45,15.42z M4.03,10.5h-1c0.06,0.91,0.3,1.77,0.69,2.55l0.87-0.5 C4.28,11.92,4.09,11.23,4.03,10.5z M10.5,15.97v1c0.91-0.06,1.77-0.3,2.55-0.69l-0.5-0.87C11.92,15.72,11.23,15.91,10.5,15.97z M5.08,13.42l-0.87,0.5c0.5,0.74,1.14,1.37,1.87,1.87l0.5-0.87C5.99,14.52,5.48,14.01,5.08,13.42z M4.58,7.45l-0.87-0.5 C3.33,7.73,3.09,8.59,3.03,9.5h1C4.09,8.77,4.28,8.08,4.58,7.45z M15.97,10.5c-0.06,0.73-0.25,1.42-0.55,2.05l0.87,0.5 c0.38-0.78,0.62-1.64,0.69-2.55H15.97z M13.42,14.92l0.5,0.87c0.74-0.5,1.37-1.14,1.87-1.87l-0.87-0.5 C14.52,14.01,14.01,14.51,13.42,14.92z M10.5,7.05h-1v4l3.17,1.9l0.5-0.82l-2.67-1.58V7.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label_important\": {\n    \"name\": \"label_important\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.5 18.99l11 .01c.67 0 1.27-.33 1.63-.84L20.5 12l-4.37-6.16c-.36-.51-.96-.84-1.63-.84l-11 .01L8.34 12 3.5 18.99z\\\"></path>\"\n      }\n    }\n  },\n  \"published_with_changes\": {\n    \"name\": \"published_with_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.66,9.53l-7.07,7.07l-4.24-4.24l1.41-1.41l2.83,2.83l5.66-5.66L17.66,9.53z M4,12c0-2.33,1.02-4.42,2.62-5.88L9,8.5v-6H3 l2.2,2.2C3.24,6.52,2,9.11,2,12c0,5.19,3.95,9.45,9,9.95v-2.02C7.06,19.44,4,16.07,4,12z M22,12c0-5.19-3.95-9.45-9-9.95v2.02 c3.94,0.49,7,3.86,7,7.93c0,2.33-1.02,4.42-2.62,5.88L15,15.5v6h6l-2.2-2.2C20.76,17.48,22,14.89,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"flutter_dash\": {\n    \"name\": \"flutter_dash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M11.07,11.7c0.29-0.39,0.81-0.56,1.27-0.37c0.17,0.07,0.32,0.18,0.43,0.33c0.22,0.28,0.25,0.59,0.22,0.85 c-0.05,0.33-0.25,0.63-0.54,0.79c0,0-4.87,2.95-5.07,2.69S11.07,11.7,11.07,11.7z M22,10c0,2.5-1,3-1.5,3 c-0.23,0-0.44-0.1-0.62-0.26c-0.48,3.32-2.36,5.31-5.33,5.99c0.11,0.44,0.48,0.77,0.95,0.77l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C15.18,22.07,15,21.71,15,21.26c0-0.3,0.04-0.57,0.09-0.8c-0.78-0.16-1.39-0.78-1.55-1.56c-0.49,0.06-1,0.1-1.54,0.1 c-0.88,0-1.7-0.09-2.45-0.25C9.53,18.83,9.5,18.91,9.5,19c0,0.55,0.45,1,1,1l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C10.18,22.57,10,22.21,10,21.76c0-0.3,0.04-0.57,0.09-0.8C9.19,20.77,8.5,19.96,8.5,19c0-0.18,0.03-0.36,0.08-0.53 c-2.46-0.86-4.03-2.78-4.46-5.74C3.94,12.9,3.74,13,3.5,13C3,13,2,12.5,2,10c0-2.27,1.7-4.5,3-4.5c0.43,0,0.49,0.49,0.5,0.85 c1.28-1.78,3.26-3.02,5.55-3.29C11.25,2.1,12.13,1.5,13,1.5v1c0,0,0.33-0.5,1-0.5c0.67,0,1,0.5,1,0.5c-0.49,0-0.85,0.35-0.96,0.77 c1.82,0.48,3.39,1.59,4.46,3.08C18.51,5.99,18.57,5.5,19,5.5C20.3,5.5,22,7.73,22,10z M5,11c0,0.81,0.1,1.53,0.25,2.21 c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6c0.96,0,1.84,0.37,2.5,0.97 C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54c0.37,0.59,0.66,1.24,0.84,1.94 C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z M17.98,15.29c0-0.1,0.02-0.19,0.02-0.29 c0-1.01-0.26-1.95-0.7-2.78c-0.69,0.78-1.68,1.28-2.8,1.28c-0.27,0-0.54-0.03-0.79-0.09c0.14-0.23,0.23-0.49,0.27-0.77 c0.01-0.07,0.01-0.13,0.02-0.19c0.17,0.03,0.33,0.05,0.5,0.05c1.52,0,2.75-1.23,2.75-2.75S16.02,7,14.5,7 c-0.67,0-1.32,0.25-1.83,0.72L12,8.32l-0.67-0.6C10.82,7.25,10.17,7,9.5,7C7.98,7,6.75,8.23,6.75,9.75c0,1.34,0.96,2.46,2.23,2.7 l-0.76,0.83c-0.6-0.22-1.12-0.59-1.53-1.05C6.26,13.06,6,14,6,15c0,0.08,0.01,0.15,0.01,0.24C7.13,17.06,9.14,18,12,18 C14.88,18,16.88,17.09,17.98,15.29z M16,9.75c0,0.97-0.67,1.75-1.5,1.75S13,10.72,13,9.75S13.67,8,14.5,8S16,8.78,16,9.75z M15.25,8.88c0-0.21-0.17-0.38-0.38-0.38S14.5,8.67,14.5,8.88s0.17,0.38,0.38,0.38S15.25,9.08,15.25,8.88z M11,9.75 c0,0.97-0.67,1.75-1.5,1.75S8,10.72,8,9.75S8.67,8,9.5,8S11,8.78,11,9.75z M10.25,8.88c0-0.21-0.17-0.38-0.38-0.38 S9.5,8.67,9.5,8.88s0.17,0.38,0.38,0.38S10.25,9.08,10.25,8.88z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.26,9.56c0.23-0.32,0.65-0.45,1.01-0.3c0.14,0.06,0.26,0.15,0.35,0.26c0.18,0.22,0.2,0.47,0.17,0.68 c-0.04,0.27-0.2,0.5-0.43,0.63c0,0-3.89,2.36-4.06,2.15C6.14,12.78,9.26,9.56,9.26,9.56z M18,8.2c0,2-0.8,2.4-1.2,2.4 c-0.19,0-0.35-0.08-0.5-0.21c-0.38,2.65-1.89,4.25-4.26,4.79c0.08,0.35,0.39,0.62,0.76,0.62l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 c-0.11-0.17-0.26-0.45-0.26-0.82c0-0.24,0.03-0.45,0.08-0.64c-0.62-0.13-1.11-0.62-1.24-1.25c-0.39,0.05-0.8,0.08-1.23,0.08 c-0.71,0-1.36-0.07-1.96-0.2C8.02,15.26,8,15.33,8,15.4c0,0.44,0.36,0.8,0.8,0.8l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 C8.54,18.25,8.4,17.97,8.4,17.6c0-0.24,0.03-0.45,0.08-0.64c-0.73-0.15-1.28-0.8-1.28-1.57c0-0.15,0.03-0.29,0.06-0.42 c-1.97-0.69-3.22-2.22-3.57-4.59c-0.15,0.13-0.31,0.21-0.5,0.21C2.8,10.6,2,10.2,2,8.2c0-1.81,1.36-3.6,2.4-3.6 c0.34,0,0.39,0.39,0.4,0.68c1.02-1.43,2.61-2.41,4.44-2.63C9.4,1.88,10.1,1.4,10.8,1.4v0.8c0,0,0.26-0.4,0.8-0.4 c0.54,0,0.8,0.4,0.8,0.4c-0.39,0-0.68,0.28-0.76,0.62c1.46,0.39,2.71,1.27,3.57,2.46c0.01-0.29,0.06-0.68,0.4-0.68 C16.64,4.6,18,6.39,18,8.2z M4.4,9c0,0.65,0.08,1.23,0.2,1.77c0.15-0.55,0.37-1.07,0.67-1.54C5.1,8.85,5,8.44,5,8 c0-1.66,1.34-3,3-3c0.77,0,1.47,0.3,2,0.78C10.53,5.3,11.23,5,12,5c1.66,0,3,1.34,3,3c0,0.44-0.1,0.85-0.27,1.23 c0.3,0.47,0.53,0.99,0.67,1.55c0.12-0.54,0.2-1.12,0.2-1.78c0-3.09-2.51-5.6-5.6-5.6C6.91,3.4,4.4,5.91,4.4,9z M14.78,12.44 c0-0.08,0.02-0.15,0.02-0.24c0-0.8-0.21-1.56-0.56-2.22C13.69,10.6,12.9,11,12,11c-0.22,0-0.43-0.02-0.63-0.07 c0.11-0.19,0.18-0.4,0.21-0.62c0.01-0.05,0.01-0.1,0.01-0.16c0.13,0.03,0.27,0.04,0.4,0.04c1.21,0,2.2-0.99,2.2-2.2 S13.21,5.8,12,5.8c-0.53,0-1.05,0.2-1.46,0.57L10,6.86L9.46,6.37C9.05,6,8.53,5.8,8,5.8C6.79,5.8,5.8,6.79,5.8,8 c0,1.07,0.77,1.97,1.79,2.16l-0.61,0.66c-0.48-0.17-0.89-0.47-1.22-0.84C5.41,10.65,5.2,11.4,5.2,12.2c0,0.07,0.01,0.12,0.01,0.19 C6.1,13.85,7.71,14.6,10,14.6C12.3,14.6,13.9,13.87,14.78,12.44z M13.2,8c0,0.77-0.54,1.4-1.2,1.4S10.8,8.77,10.8,8 s0.54-1.4,1.2-1.4S13.2,7.23,13.2,8z M12.6,7.3c0-0.17-0.13-0.3-0.3-0.3C12.13,7,12,7.13,12,7.3s0.13,0.3,0.3,0.3 C12.47,7.6,12.6,7.47,12.6,7.3z M9.2,8c0,0.77-0.54,1.4-1.2,1.4S6.8,8.77,6.8,8S7.34,6.6,8,6.6S9.2,7.23,9.2,8z M8.6,7.3 C8.6,7.13,8.47,7,8.3,7C8.13,7,8,7.13,8,7.3s0.13,0.3,0.3,0.3C8.47,7.6,8.6,7.47,8.6,7.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gif\": {\n    \"name\": \"gif\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"9\\\"></rect><path d=\\\"M9,9H6c-0.6,0-1,0.5-1,1v4c0,0.5,0.4,1,1,1h3c0.6,0,1-0.5,1-1v-2H8.5v1.5h-2v-3H10V10C10,9.5,9.6,9,9,9z\\\"></path><polygon points=\\\"19,10.5 19,9 14.5,9 14.5,15 16,15 16,13 18,13 18,11.5 16,11.5 16,10.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"event\": {\n    \"name\": \"event\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes\": {\n    \"name\": \"speaker_notes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_remote\": {\n    \"name\": \"settings_remote\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z\\\"></path>\"\n      }\n    }\n  },\n  \"view_timeline\": {\n    \"name\": \"view_timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,17H6v-2h6V17z M15,13H9v-2h6V13 z M18,9h-6V7h6V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M9,14 H5v-1.5h4V14z M12,10.75H8v-1.5h4V10.75z M15,7.5h-4V6h4V7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rowing\": {\n    \"name\": \"rowing\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M8.5,14.5L4,19l1.5,1.5L9,17h2L8.5,14.5z M15,1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,1,15,1z M21,21.01L18,24 l-2.99-3.01V19.5l-7.1-7.09C7.6,12.46,7.3,12.48,7,12.48v-2.16c1.66,0.03,3.61-0.87,4.67-2.04l1.4-1.55 C13.42,6.34,14.06,6,14.72,6h0.03C15.99,6.01,17,7.02,17,8.26v5.75c0,0.84-0.35,1.61-0.92,2.16l-3.58-3.58v-2.27 c-0.63,0.52-1.43,1.02-2.29,1.39L16.5,18H18L21,21.01z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"accessibility_new\": {\n    \"name\": \"accessibility_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_out\": {\n    \"name\": \"zoom_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_down\": {\n    \"name\": \"text_rotation_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 12v-1.5L10 5.75v2.1l2.2.9v5l-2.2.9v2.1L21 12zm-7-2.62l5.02 1.87L14 13.12V9.38zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"outlet\": {\n    \"name\": \"outlet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M9,12c-0.55,0-1-0.45-1-1V8 c0-0.55,0.45-1,1-1s1,0.45,1,1v3C10,11.55,9.55,12,9,12z M14,18h-4v-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2V18z M16,11 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V11z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_aware\": {\n    \"name\": \"noise_aware\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,15h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61l-1.36-1.36 C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02c-0.25-2.25-2.16-4-4.47-4C9.02,6,7,8.02,7,10.5 c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82C10.56,17.17,11.71,18,13,18C14.65,18,16,16.65,16,15z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M3.6,6.58l1.58,1.26c0.35-0.57,0.77-1.1,1.24-1.57L4.85,5.02C4.38,5.49,3.97,6.02,3.6,6.58z\\\"></path><path d=\\\"M9.46,4.42L8.59,2.61c-0.63,0.23-1.24,0.52-1.8,0.87l0.87,1.81C8.22,4.93,8.82,4.64,9.46,4.42z\\\"></path><path d=\\\"M4.49,9.26L2.53,8.81c-0.21,0.63-0.36,1.28-0.44,1.95l1.96,0.45C4.11,10.53,4.27,9.88,4.49,9.26z\\\"></path><path d=\\\"M20.4,6.58c-0.36-0.56-0.78-1.09-1.25-1.56l-1.58,1.26c0.48,0.47,0.89,0.99,1.24,1.57L20.4,6.58z\\\"></path><path d=\\\"M4.04,12.79l-1.96,0.45c0.08,0.67,0.23,1.33,0.44,1.95l1.97-0.45C4.27,14.12,4.11,13.47,4.04,12.79z\\\"></path><path d=\\\"M17.21,3.48c-0.57-0.35-1.17-0.64-1.8-0.87l-0.87,1.81c0.64,0.22,1.24,0.51,1.8,0.87L17.21,3.48z\\\"></path><path d=\\\"M13,4.07V2.05C12.67,2.02,12.34,2,12,2s-0.67,0.02-1,0.05v2.02C11.33,4.03,11.66,4,12,4S12.67,4.03,13,4.07z\\\"></path><path d=\\\"M11,19.93v2.02c0.33,0.03,0.66,0.05,1,0.05s0.67-0.02,1-0.05v-2.02C12.67,19.97,12.34,20,12,20S11.33,19.97,11,19.93z\\\"></path><path d=\\\"M19.51,14.74l1.97,0.45c0.21-0.63,0.36-1.28,0.44-1.95l-1.96-0.45C19.89,13.47,19.73,14.12,19.51,14.74z\\\"></path><path d=\\\"M19.96,11.21l1.96-0.45c-0.08-0.67-0.23-1.33-0.44-1.95l-1.97,0.45C19.73,9.88,19.89,10.53,19.96,11.21z\\\"></path><path d=\\\"M17.58,17.73l1.58,1.26c0.47-0.48,0.88-1,1.25-1.56l-1.58-1.26C18.47,16.73,18.05,17.26,17.58,17.73z\\\"></path><path d=\\\"M6.79,20.52c0.57,0.35,1.17,0.64,1.8,0.87l0.87-1.81c-0.64-0.22-1.24-0.51-1.8-0.87L6.79,20.52z\\\"></path><path d=\\\"M14.54,19.58l0.87,1.81c0.63-0.23,1.24-0.52,1.8-0.87l-0.87-1.81C15.78,19.07,15.18,19.36,14.54,19.58z\\\"></path><path d=\\\"M3.6,17.42c0.36,0.56,0.78,1.09,1.25,1.56l1.58-1.26c-0.48-0.47-0.89-0.99-1.24-1.57L3.6,17.42z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M13,12.75h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58c-0.22-0.9-0.77-1.7-1.69-2.44 c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56c-0.35-1.71-1.86-3-3.67-3 C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62C8.8,14.22,9.63,15,10.75,15 C11.99,15,13,13.99,13,12.75z\\\"></path><path d=\\\"M3.88,7.83L2.41,7.5C2.25,7.97,2.14,8.46,2.08,8.96L3.54,9.3C3.59,8.79,3.71,8.3,3.88,7.83z\\\"></path><path d=\\\"M7.88,3.86L7.22,2.51C6.75,2.68,6.3,2.9,5.87,3.16l0.65,1.36C6.95,4.25,7.4,4.03,7.88,3.86z\\\"></path><path d=\\\"M5.42,5.39L4.25,4.45C3.9,4.81,3.59,5.21,3.31,5.62l1.18,0.94C4.76,6.14,5.07,5.74,5.42,5.39z\\\"></path><path d=\\\"M10.75,3.55V2.04C10.5,2.01,10.25,2,10,2S9.5,2.01,9.25,2.04v1.51C9.5,3.52,9.75,3.5,10,3.5S10.5,3.52,10.75,3.55z\\\"></path><path d=\\\"M16.46,9.29l1.46-0.33c-0.07-0.5-0.18-0.99-0.33-1.46l-1.47,0.34C16.29,8.3,16.4,8.79,16.46,9.29z\\\"></path><path d=\\\"M14.13,3.16c-0.43-0.26-0.88-0.48-1.35-0.65l-0.65,1.36c0.48,0.17,0.93,0.39,1.35,0.65L14.13,3.16z\\\"></path><path d=\\\"M16.69,5.62c-0.28-0.42-0.59-0.81-0.94-1.17l-1.17,0.94c0.36,0.35,0.67,0.75,0.93,1.18L16.69,5.62z\\\"></path><path d=\\\"M16.46,10.7c-0.05,0.51-0.17,1-0.34,1.46l1.47,0.34c0.16-0.47,0.27-0.96,0.33-1.46L16.46,10.7z\\\"></path><path d=\\\"M12.12,16.14l0.65,1.36c0.47-0.18,0.92-0.39,1.35-0.65l-0.65-1.36C13.05,15.75,12.6,15.97,12.12,16.14z\\\"></path><path d=\\\"M9.25,16.45v1.51C9.5,17.99,9.75,18,10,18s0.5-0.01,0.75-0.04v-1.51c-0.25,0.03-0.5,0.05-0.75,0.05S9.5,16.48,9.25,16.45z\\\"></path><path d=\\\"M14.58,14.61l1.18,0.94c0.35-0.36,0.66-0.75,0.94-1.17l-1.18-0.94C15.24,13.86,14.93,14.26,14.58,14.61z\\\"></path><path d=\\\"M3.54,10.71l-1.46,0.33c0.07,0.5,0.18,0.99,0.33,1.46l1.47-0.34C3.71,11.7,3.6,11.21,3.54,10.71z\\\"></path><path d=\\\"M3.31,14.38c0.28,0.42,0.59,0.81,0.94,1.17l1.17-0.94c-0.36-0.35-0.67-0.75-0.93-1.18L3.31,14.38z\\\"></path><path d=\\\"M5.87,16.84c0.43,0.26,0.88,0.48,1.35,0.65l0.65-1.36c-0.48-0.17-0.93-0.39-1.35-0.65L5.87,16.84z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"leaderboard\": {\n    \"name\": \"leaderboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M7.5,21H2V9h5.5V21z M14.75,3h-5.5v18h5.5V3z M22,11h-5.5v10H22V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"close_fullscreen\": {\n    \"name\": \"close_fullscreen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z\\\"></path>\"\n      }\n    }\n  },\n  \"tips_and_updates\": {\n    \"name\": \"tips_and_updates\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,19h8v-2H5V19z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27 C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M21.37,7.37L20,8l1.37,0.63L22,10l0.63-1.37L24,8 l-1.37-0.63L22,6L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,14h6v1.5h-6V14z M13.5,8c0,2.09-1.07,3.93-2.69,5H4.19C2.57,11.93,1.5,10.09,1.5,8c0-3.31,2.69-6,6-6S13.5,4.69,13.5,8 z M7.5,18C8.33,18,9,17.33,9,16.5H6C6,17.33,6.67,18,7.5,18z M18.5,8l0.47-1.03L20,6.5l-1.03-0.47L18.5,5l-0.47,1.03L17,6.5 l1.03,0.47L18.5,8z M15.5,5l0.78-1.72L18,2.5l-1.72-0.78L15.5,0l-0.78,1.72L13,2.5l1.72,0.78L15.5,5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_antenna\": {\n    \"name\": \"settings_input_antenna\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_person\": {\n    \"name\": \"lock_person\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,11c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26C11.47,20.87,11,19.49,11,18C11,14.13,14.13,11,18,11z M8.9,6c0-1.71,1.39-3.1,3.1-3.1s3.1,1.39,3.1,3.1v2 H8.9V6z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M18,15c0.83,0,1.5,0.67,1.5,1.5S18.83,18,18,18 s-1.5-0.67-1.5-1.5S17.17,15,18,15z M18,21c-1.03,0-1.94-0.52-2.48-1.32C16.25,19.26,17.09,19,18,19s1.75,0.26,2.48,0.68 C19.94,20.48,19.03,21,18,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,9.5c0.34,0,0.68,0.04,1,0.1V8.5C16,7.67,15.33,7,14.5,7H14V5c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5C4.67,7,4,7.67,4,8.5 v8C4,17.33,4.67,18,5.5,18h4.89c-0.56-0.86-0.89-1.89-0.89-3C9.5,11.96,11.96,9.5,15,9.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M15,11c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S17.21,11,15,11z M15,12c0.83,0,1.5,0.67,1.5,1.5S15.83,15,15,15 c-0.83,0-1.5-0.67-1.5-1.5S14.17,12,15,12z M15,18c-1.09,0-2.03-0.58-2.56-1.45c0.73-0.5,1.61-0.8,2.56-0.8s1.83,0.3,2.56,0.8 C17.03,17.42,16.09,18,15,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"toll\": {\n    \"name\": \"toll\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path><path d=\\\"M3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmarks\": {\n    \"name\": \"bookmarks\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 18l2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"outbond\": {\n    \"name\": \"outbond\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41 l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path>\"\n      }\n    }\n  },\n  \"view_quilt\": {\n    \"name\": \"view_quilt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M21,5v6.5H9.33V5H21z M14.67,19v-6.5H9.33V19H14.67z M15.67,12.5V19H21v-6.5H15.67z M8.33,19V5H3v14H8.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,15v-4.5h4V15H8z M8,5v4.5h9V5H8z M7,15V5H3v10H7z M13,10.5V15h4v-4.5H13z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_view_day\": {\n    \"name\": \"calendar_view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18v2H3zm0-7h18v5H3zm0-4h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"shop_two\": {\n    \"name\": \"shop_two\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z\\\"></path>\"\n      }\n    }\n  },\n  \"done_all\": {\n    \"name\": \"done_all\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z\\\"></path>\"\n      }\n    }\n  },\n  \"percent\": {\n    \"name\": \"percent\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M7.5,11C9.43,11,11,9.43,11,7.5S9.43,4,7.5,4S4,5.57,4,7.5S5.57,11,7.5,11z M7.5,6C8.33,6,9,6.67,9,7.5S8.33,9,7.5,9 S6,8.33,6,7.5S6.67,6,7.5,6z\\\"></path></g></g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12)\\\" width=\\\"20.63\\\" x=\\\"1.69\\\" y=\\\"11\\\"></rect></g><g><g><path d=\\\"M16.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S18.43,13,16.5,13z M16.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,18,16.5,18z\\\"></path></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.5,4C5.12,4,4,5.12,4,6.5C4,7.88,5.12,9,6.5,9S9,7.88,9,6.5C9,5.12,7.88,4,6.5,4z M6.5,7.5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,7.05,7.05,7.5,6.5,7.5z M13.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5C16,12.12,14.88,11,13.5,11z M13.5,14.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C14.5,14.05,14.05,14.5,13.5,14.5z M5.06,16L4,14.94L14.94,4L16,5.06L5.06,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_phone\": {\n    \"name\": \"settings_phone\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 9h-2v2h2V9zm4 0h-2v2h2V9zm3 6.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 9v2h2V9h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"note_add\": {\n    \"name\": \"note_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy_alt\": {\n    \"name\": \"view_comfy_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M11,17H7v-4h4V17z M11,11H7V7h4V11 z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M9,14 H6v-3h3V14z M9,9H6V6h3V9z M14,14h-3v-3h3V14z M14,9h-3V6h3V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_box\": {\n    \"name\": \"account_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,6c1.93,0,3.5,1.57,3.5,3.5 c0,1.93-1.57,3.5-3.5,3.5s-3.5-1.57-3.5-3.5C8.5,7.57,10.07,6,12,6z M19,19H5v-0.23c0-0.62,0.28-1.2,0.76-1.58 C7.47,15.82,9.64,15,12,15s4.53,0.82,6.24,2.19c0.48,0.38,0.76,0.97,0.76,1.58V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M10,5.5c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S8.34,5.5,10,5.5z M15.5,15.5h-11c0-0.6,0.03-1.18,0.73-1.62 C6.61,13.01,8.24,12.5,10,12.5s3.39,0.51,4.77,1.38C15.48,14.32,15.5,14.95,15.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alarm_on\": {\n    \"name\": \"alarm_on\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z\\\"></path>\"\n      }\n    }\n  },\n  \"flaky\": {\n    \"name\": \"flaky\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6,6.71L6.71,6l1.06,1.06L8.83,6l0.71,0.71L8.47,7.77l1.06,1.06L8.83,9.54L7.77,8.47L6.71,9.54L6,8.83l1.06-1.06L6,6.71z M10,16 c-1.65,0-3.15-0.67-4.24-1.76l8.48-8.48C15.33,6.85,16,8.35,16,10C16,13.31,13.31,16,10,16z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><polygon fill-rule=\\\"evenodd\\\" points=\\\"11.41,12.59 10.41,11.59 9.71,12.29 11.41,14 14.21,11.21 13.5,10.5\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"outbox\": {\n    \"name\": \"outbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zM8 11h2v3h4v-3h2l-4-4-4 4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<path d=\\\"M0 0h20v20H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.5 13c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5H16V4H4v9h3.5zM4 2h12c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2zm2 7h2v3h4V9h2l-4-4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"verified_user\": {\n    \"name\": \"verified_user\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_turned_in\": {\n    \"name\": \"assignment_turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"extension_off\": {\n    \"name\": \"extension_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.78,22.61l-1.63-1.63C18.1,20.98,18.05,21,18,21h-3.8c0-2.71-2.16-3-2.7-3s-2.7,0.29-2.7,3H5c-1.1,0-2-0.9-2-2v-3.8 c2.71,0,3-2.16,3-2.7c0-0.54-0.3-2.7-2.99-2.7V6c0-0.05,0.02-0.09,0.02-0.14L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M20,17.17V15c1.38,0,2.5-1.12,2.5-2.5S21.38,10,20,10V6c0-1.1-0.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H6.83L20,17.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.01,18.13L14.88,17H12c0-1.1-0.9-2-2-2s-2,0.9-2,2H4.5C3.67,17,3,16.33,3,15.5V12c1.1,0,2-0.9,2-2S4.1,8,3,8V5.12 L1.87,3.99l1.06-1.06l0.51,0.51l13.63,13.63L16.01,18.13z M17,8V4.5C17,3.67,16.33,3,15.5,3H12c0-1.1-0.9-2-2-2S8,1.9,8,3H5.12 L17,14.88V12c1.1,0,2-0.9,2-2S18.1,8,17,8z\\\"></path>\"\n      }\n    }\n  },\n  \"join_left\": {\n    \"name\": \"join_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path></g><g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_access_shortcut_add\": {\n    \"name\": \"switch_access_shortcut_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M24,14h-2v-2h-2v2h-2v2h2v2h2v-2h2V14z M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21 l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11 L4.37,12.37z M12,12c0-2.73,1.08-5.27,2.75-7.25L12,2h7v7l-2.82-2.82C14.84,7.82,14,9.88,14,12c0,3.32,2.1,6.36,5,7.82L19,22 C14.91,20.41,12,16.35,12,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.2,0.83-4.24,2.2-5.8L10,2h5.5v5.5l-2.23-2.23C12.17,6.55,11.5,8.21,11.5,10c0,2.81,1.64,5.23,4,6.37 L15.5,18z M20,11.5h-1.5V10H17v1.5h-1.5V13H17v1.5h1.5V13H20V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_by_default\": {\n    \"name\": \"disabled_by_default\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12 L17,15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread_mailbox\": {\n    \"name\": \"markunread_mailbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M-618-3000H782V600H-618zM0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6H10v6H8V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"ads_click\": {\n    \"name\": \"ads_click\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26L22,15l-10-3l3,10l1.26-3.77l4.27,4.27l1.98-1.98L18.23,16.26z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.09,18.5l-3.47-3.47L12.5,18L10,10l8,2.5l-2.97,1.11l3.47,3.47L17.09,18.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5 s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0 c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45C16.5,6.42,13.58,3.5,10,3.5 M10,6.5 c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0 c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\\\"></path>\"\n      }\n    }\n  },\n  \"favorite\": {\n    \"name\": \"favorite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z\\\"></path>\"\n      }\n    }\n  },\n  \"width_wide\": {\n    \"name\": \"width_wide\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h2v12H4V6z M20,18h-2V6h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,5.5H5v9H3.5V5.5z M16.5,14.5H15v-9h1.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_off\": {\n    \"name\": \"edit_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<title>ic_edit_off_24px</title><path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></title><path d=\\\"M12.126 8.125l1.937-1.937 3.747 3.747-1.937 1.938zM20.71 5.63l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75L20.71 7a1 1 0 0 0 0-1.37zM2 5l6.63 6.63L3 17.25V21h3.75l5.63-5.62L18 21l2-2L4 3 2 5z\\\"></path>\"\n      }\n    }\n  },\n  \"javascript\": {\n    \"name\": \"javascript\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,14v-1h1.5v0.5h2v-1H13c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1H16 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C12.45,15,12,14.55,12,14z M9,9v4.5H7.5v-1H6v1C6,14.33,6.67,15,7.5,15H9 c0.83,0,1.5-0.67,1.5-1.5V9C10.5,9,9.83,9,9,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,11.5v-0.75h1V11h1v-0.75H11c-0.28,0-0.5-0.22-0.5-0.5V8.5C10.5,8.22,10.72,8,11,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1 V9h-1v0.75H13c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5h-2C10.72,12,10.5,11.78,10.5,11.5z M8,8v3H7v-1H6v1.5 C6,11.78,6.22,12,6.5,12h2C8.78,12,9,11.78,9,11.5V8H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"class\": {\n    \"name\": \"class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_power\": {\n    \"name\": \"settings_power\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"fax\": {\n    \"name\": \"fax\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,9h-1V4H8v14.5V20h14v-8C22,10.34,20.66,9,19,9z M10,6h6v3h-6V6z M14,17h-4v-5h4V17z M16,17c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C17,16.55,16.55,17,16,17z M16,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C17,13.55,16.55,14,16,14z M19,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,16.55,19.55,17,19,17z M19,14 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,13.55,19.55,14,19,14z\\\"></path><path d=\\\"M4.5,8C3.12,8,2,9.12,2,10.5v8C2,19.88,3.12,21,4.5,21S7,19.88,7,18.5v-8C7,9.12,5.88,8,4.5,8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,6.5c-1.1,0-2,0.9-2,2V15c0,1.1,0.9,2,2,2s2-0.9,2-2V8.5C6,7.4,5.1,6.5,4,6.5z\\\"></path><path d=\\\"M16,7.5h-1.4V4H7v12h11V9.5C18,8.4,17.1,7.5,16,7.5z M8.5,5.5h4.6v2H8.5V5.5z M11,13.5H8V10h3V13.5z M12.5,13.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,13.16,12.91,13.5,12.5,13.5z M12.5,11.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,11.16,12.91,11.5,12.5,11.5z M14.75,13.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,13.16,15.16,13.5,14.75,13.5z M14.75,11.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,11.16,15.16,11.5,14.75,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_alt_off\": {\n    \"name\": \"filter_alt_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.79,5.61C20.3,4.95,19.83,4,19,4H6.83l7.97,7.97L19.79,5.61z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22L10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-2.17l5.78,5.78l1.41-1.41L2.81,2.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.89,4.82C16.15,4.49,15.92,4,15.5,4H6.12l5.73,5.73L15.89,4.82z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99L9,11.12v4.38C9,15.78,9.22,16,9.5,16h1c0.28,0,0.5-0.22,0.5-0.5v-2.38l5.01,5.01l1.06-1.06 L2.93,2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"spatial_audio\": {\n    \"name\": \"spatial_audio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><path d=\\\"M16,1h-2c0,4.97,4.03,9,9,9V8C19.14,8,16,4.86,16,1z\\\"></path><path d=\\\"M20,1h-2c0,2.76,2.24,5,5,5V4C21.35,4,20,2.65,20,1z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M12.5,1H11c0,4.42,3.58,8,8,8V7.5C15.42,7.5,12.5,4.58,12.5,1z\\\"></path><path d=\\\"M15.5,1H14c0,2.76,2.24,5,5,5V4.5C17.07,4.5,15.5,2.93,15.5,1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"density_small\": {\n    \"name\": \"density_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"11.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"7\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"2.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"16\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"rounded_corner\": {\n    \"name\": \"rounded_corner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,19h2v2h-2V19z M19,17h2v-2h-2V17z M3,13h2v-2H3V13z M3,17h2v-2H3V17z M3,9h2V7H3V9z M3,5h2V3H3V5z M7,5h2V3H7V5z M15,21h2v-2h-2V21z M11,21h2v-2h-2V21z M15,21h2v-2h-2V21z M7,21h2v-2H7V21z M3,21h2v-2H3V21z M21,8c0-2.76-2.24-5-5-5h-5v2h5 c1.65,0,3,1.35,3,3v5h2V8z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"favorite_border\": {\n    \"name\": \"favorite_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less_double\": {\n    \"name\": \"unfold_less_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.58,1.41 15.16,0 11.99,3.17 8.82,0 7.41,1.41 11.99,6\\\"></polygon><polygon points=\\\"16.58,6.41 15.16,5 11.99,8.17 8.82,5 7.41,6.41 11.99,11\\\"></polygon><polygon points=\\\"7.42,17.59 8.84,19 12.01,15.83 15.18,19 16.59,17.59 12.01,13\\\"></polygon><polygon points=\\\"7.42,22.59 8.84,24 12.01,20.83 15.18,24 16.59,22.59 12.01,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13.37,1.06 12.31,0 10,2.31 7.69,0 6.63,1.06 10,4.43\\\"></polygon><polygon points=\\\"13.37,5.06 12.31,4 10,6.31 7.69,4 6.63,5.06 10,8.43\\\"></polygon><polygon points=\\\"6.63,14.94 7.69,16 10,13.69 12.31,16 13.37,14.94 10,11.57\\\"></polygon><polygon points=\\\"6.63,18.94 7.69,20 10,17.69 12.31,20 13.37,18.94 10,15.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"settings_applications\": {\n    \"name\": \"settings_applications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .23-.02.46-.05.68l1.48 1.16c.13.11.17.3.08.45l-1.4 2.42c-.09.15-.27.21-.43.15l-1.74-.7c-.36.28-.76.51-1.18.69l-.26 1.85c-.03.17-.18.3-.35.3h-2.8c-.17 0-.32-.13-.35-.29l-.26-1.85c-.43-.18-.82-.41-1.18-.69l-1.74.7c-.16.06-.34 0-.43-.15l-1.4-2.42c-.09-.15-.05-.34.08-.45l1.48-1.16c-.03-.23-.05-.46-.05-.69 0-.23.02-.46.05-.68l-1.48-1.16c-.13-.11-.17-.3-.08-.45l1.4-2.42c.09-.15.27-.21.43-.15l1.74.7c.36-.28.76-.51 1.18-.69l.26-1.85c.03-.17.18-.3.35-.3h2.8c.17 0 .32.13.35.29l.26 1.85c.43.18.82.41 1.18.69l1.74-.7c.16-.06.34 0 .43.15l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.16c.03.23.05.46.05.69z\\\"></path>\"\n      }\n    }\n  },\n  \"backup_table\": {\n    \"name\": \"backup_table\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z\\\"></path><path d=\\\"M16,2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M9,16H4v-5h5V16z M16,16h-5v-5h5 V16z M16,9H4V4h12V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16,6v10H6v1h10c0.55,0,1-0.45,1-1V6H16z\\\"></path></g><g><path d=\\\"M14,13V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v9c0,0.55,0.45,1,1,1h9C13.55,14,14,13.55,14,13z M4,4h9v4H4V4z M8,13H4 V9h4V13z M9,9h4v4H9V9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"swipe_right_alt\": {\n    \"name\": \"swipe_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.9,11C13.44,8.72,11.42,7,9,7c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h4.27l-1.59,1.59L18,16l4-4l-4-4 l-1.41,1.41L18.17,11H13.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.93,9.25C11.58,7.4,9.95,6,8,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c1.95,0,3.58-1.4,3.93-3.25l3.2,0l-1.19,1.19L15,13 l3-3l-3-3l-1.06,1.06l1.19,1.19L11.93,9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"update\": {\n    \"name\": \"update\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M21,10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-0.1c-2.73,2.71-2.73,7.08,0,9.79s7.15,2.71,9.88,0 C18.32,15.65,19,14.08,19,12.1h2c0,1.98-0.88,4.55-2.64,6.29c-3.51,3.48-9.21,3.48-12.72,0c-3.5-3.47-3.53-9.11-0.02-12.58 s9.14-3.47,12.65,0L21,3V10.12z M12.5,8v4.25l3.5,2.08l-0.72,1.21L11,13V8H12.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"join_full\": {\n    \"name\": \"join_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c2.8,2.34,3.03,5.53,3.03,6.5c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19 c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10c0,0.89-0.23,3.08-2.15,4.81 c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turned_in\": {\n    \"name\": \"turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"lock\": {\n    \"name\": \"lock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_reset\": {\n    \"name\": \"lock_reset\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c-4.97,0-9,4.03-9,9H1l4,4l4-4H6c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7c-1.9,0-3.62-0.76-4.88-1.99L6.7,18.42 C8.32,20.01,10.55,21,13,21c4.97,0,9-4.03,9-9S17.97,3,13,3z M15,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C16,11.45,15.55,11,15,11z M14,11h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,10c0,3.87-3.13,7-7,7c-2.04,0-3.87-0.88-5.15-2.27l1.06-1.06C6.92,14.79,8.38,15.5,10,15.5c3.03,0,5.5-2.47,5.5-5.5 S13.03,4.5,10,4.5S4.5,6.97,4.5,10h2.25l-3,3l-3-3H3c0-3.87,3.13-7,7-7C13.87,3,17,6.13,17,10z M12.25,10v2.25 c0,0.41-0.34,0.75-0.75,0.75h-3c-0.41,0-0.75-0.34-0.75-0.75V10c0-0.41,0.34-0.75,0.75-0.75V8.5C8.5,7.67,9.17,7,10,7 s1.5,0.67,1.5,1.5v0.75C11.91,9.25,12.25,9.59,12.25,10z M10.75,8.5c0-0.41-0.34-0.75-0.75-0.75S9.25,8.09,9.25,8.5v0.75h1.5V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"online_prediction\": {\n    \"name\": \"online_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,14h1.5v1h-1.5V14z M10,7L10,7L10,7C10,7,10,7,10,7C8.62,7,7.5,8.12,7.5,9.5C7.5,11,9.25,12,9.25,13 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,8.12,11.38,7,10,7z M4,10c0-1.65,0.67-3.15,1.76-4.24L5.05,5.05 C3.78,6.32,3,8.07,3,10c0,1.93,0.78,3.68,2.05,4.95l0.71-0.71C4.67,13.15,4,11.65,4,10z M17,10c0-1.93-0.78-3.68-2.05-4.95 l-0.71,0.71C15.33,6.85,16,8.35,16,10c0,1.65-0.67,3.15-1.76,4.24l0.71,0.71C16.22,13.68,17,11.93,17,10z M6.46,13.54l0.71-0.71 C6.45,12.1,6,11.1,6,10c0-1.1,0.45-2.1,1.17-2.83L6.46,6.46C5.56,7.37,5,8.62,5,10C5,11.38,5.56,12.63,6.46,13.54z M14,10 c0,1.1-0.45,2.1-1.17,2.83l0.71,0.71C14.44,12.63,15,11.38,15,10c0-1.38-0.56-2.63-1.46-3.54l-0.71,0.71C13.55,7.9,14,8.9,14,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_view\": {\n    \"name\": \"table_view\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_weight\": {\n    \"name\": \"line_weight\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M3,17h18v-2H3V17z M3,20h18v-1H3V20z M3,13h18v-3H3V13z M3,4v4h18V4H3z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"g_translate\": {\n    \"name\": \"g_translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 4H11l-1-3H3c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8l1 3h9c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 16c-2.76 0-5-2.24-5-5s2.24-5 5-5c1.35 0 2.48.5 3.35 1.3L9.03 8.57c-.38-.36-1.04-.78-2.03-.78-1.74 0-3.15 1.44-3.15 3.21S5.26 14.21 7 14.21c2.01 0 2.84-1.44 2.92-2.41H7v-1.71h4.68c.07.31.12.61.12 1.02C11.8 13.97 9.89 16 7 16zm6.17-5.42h3.7c-.43 1.25-1.11 2.43-2.05 3.47-.31-.35-.6-.72-.86-1.1l-.79-2.37zm8.33 9.92c0 .55-.45 1-1 1H14l2-2.5-1.04-3.1 3.1 3.1.92-.92-3.3-3.25.02-.02c1.13-1.25 1.93-2.69 2.4-4.22H20v-1.3h-4.53V8h-1.29v1.29h-1.44L11.46 5.5h9.04c.55 0 1 .45 1 1v14z\\\"></path><path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"assignment\": {\n    \"name\": \"assignment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"build\": {\n    \"name\": \"build\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path clip-rule=\\\"evenodd\\\" d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_shopping_cart\": {\n    \"name\": \"remove_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.73 22.73L2.77 2.77 2 2l-.73-.73L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.27-1.27zM7.42 15c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h2.36l2 2H7.42zm8.13-2c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H6.54l9.01 9zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pin_invoke\": {\n    \"name\": \"pin_invoke\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12v6c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10l0,2H4v12h16v-6H22z M22,7c0-1.66-1.34-3-3-3 c-1.66,0-3,1.34-3,3s1.34,3,3,3C20.66,10,22,8.66,22,7z M11.47,12.12l-2.83,2.83l1.41,1.41l2.83-2.83L15,15.66V10H9.34L11.47,12.12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10v4.5c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4H12c0,0,0.01,1.48,0,1.5H3.5v9h13V10 H18z M18,6.25C18,5.01,16.99,4,15.75,4C14.5,4,13.5,5.01,13.5,6.25s1.01,2.25,2.25,2.25S18,7.49,18,6.25z M9.35,10.09l-2.12,2.12 l1.06,1.06l2.12-2.12L12,12.74V8.5H7.76L9.35,10.09z\\\"></path>\"\n      }\n    }\n  },\n  \"dashboard\": {\n    \"name\": \"dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"track_changes\": {\n    \"name\": \"track_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z\\\"></path>\"\n      }\n    }\n  },\n  \"join_right\": {\n    \"name\": \"join_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M16.5,12c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7s-3.14-7-7-7c-0.9,0-1.75,0.19-2.53,0.5 C16.27,7.84,16.5,11.03,16.5,12z\\\"></path></g><g><path d=\\\"M8,19c0.9,0,1.75-0.19,2.53-0.5c-0.61-0.51-1.1-1.07-1.49-1.63C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 c0.36,0,0.71,0.05,1.04,0.13c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7S4.14,19,8,19z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,14.24c1.73-1.43,2-3.32,2-4.24c0-0.91-0.27-2.81-2-4.24C8.27,7.19,8,9.09,8,10C8,10.92,8.27,12.81,10,14.24z\\\"></path><path d=\\\"M10.85,14.81c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5c0-3.04-2.46-5.5-5.5-5.5 c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10C13,10.89,12.77,13.08,10.85,14.81z\\\"></path><path d=\\\"M6.5,15.5c0.96,0,1.86-0.25,2.65-0.69c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14c-2.21,0-4-1.79-4-4 s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10 C1,13.04,3.46,15.5,6.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compare_arrows\": {\n    \"name\": \"compare_arrows\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M9.01,14H2v2h7.01v3L13,15l-3.99-4V14z M14.99,13v-3H22V8h-7.01V5L11,9L14.99,13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"nightlight_round\": {\n    \"name\": \"nightlight_round\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 12c0-3.57 2.2-6.62 5.31-7.87.89-.36.75-1.69-.19-1.9-1.1-.24-2.27-.3-3.48-.14-4.51.6-8.12 4.31-8.59 8.83C4.44 16.93 9.13 22 15.01 22c.73 0 1.43-.08 2.12-.23.95-.21 1.1-1.53.2-1.9-3.22-1.29-5.33-4.41-5.32-7.87z\\\"></path>\"\n      }\n    }\n  },\n  \"stars\": {\n    \"name\": \"stars\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z\\\"></path>\"\n      }\n    }\n  },\n  \"help_center\": {\n    \"name\": \"help_center\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.01,18 c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6 c-0.76,1.11-1.48,1.46-1.87,2.17c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16 c0.57-0.81,0.25-2.33-1.37-2.33c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52 C15.44,8.24,15.7,9.59,15.02,10.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"dashboard_customize\": {\n    \"name\": \"dashboard_customize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h8v8H3zm10 0h8v8h-8zM3 13h8v8H3zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"comment_bank\": {\n    \"name\": \"comment_bank\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,13l-2.5-1.5L14,13V5h5V13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,3H4C3.45,3,3,3.45,3,4v13l3-3h10c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M15,11l-2-1.31L11,11V5h4V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumbs_up_down\": {\n    \"name\": \"thumbs_up_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"receipt\": {\n    \"name\": \"receipt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z\\\"></path>\"\n      }\n    }\n  },\n  \"question_mark\": {\n    \"name\": \"question_mark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.07,12.85c0.77-1.39,2.25-2.21,3.11-3.44c0.91-1.29,0.4-3.7-2.18-3.7c-1.69,0-2.52,1.28-2.87,2.34L6.54,6.96 C7.25,4.83,9.18,3,11.99,3c2.35,0,3.96,1.07,4.78,2.41c0.7,1.15,1.11,3.3,0.03,4.9c-1.2,1.77-2.35,2.31-2.97,3.45 c-0.25,0.46-0.35,0.76-0.35,2.24h-2.89C10.58,15.22,10.46,13.95,11.07,12.85z M14,20c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2 S14,18.9,14,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.29,10.58c0.6-1.07,1.73-1.7,2.39-2.65c0.7-0.99,0.31-2.85-1.67-2.85c-1.3,0-1.94,0.98-2.2,1.8l-2-0.84 C6.35,4.41,7.83,3,9.99,3c1.81,0,3.05,0.82,3.68,1.85c0.54,0.88,0.86,2.54,0.02,3.77c-0.92,1.36-1.81,1.78-2.28,2.65 c-0.19,0.35-0.27,0.58-0.27,1.72H8.91C8.91,12.4,8.82,11.42,9.29,10.58z M11.5,16c0,0.83-0.67,1.5-1.5,1.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5C10.83,14.5,11.5,15.17,11.5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_page\": {\n    \"name\": \"contact_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M12,10c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2 C10,10.9,10.9,10,12,10z M16,18H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,15.21,11.01,15,12,15c0.99,0,1.93,0.21,2.78,0.58 C15.52,15.9,16,16.62,16,17.43V18z\\\"></path>\"\n      }\n    }\n  },\n  \"mediation\": {\n    \"name\": \"mediation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12l-4 4-1.41-1.41L18.17 13h-5.23c-.34 3.1-2.26 5.72-4.94 7.05C7.96 21.69 6.64 23 5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14 1.9-1.03 3.26-2.91 3.58-5.14h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3c1.64 0 2.96 1.31 2.99 2.95 2.68 1.33 4.6 3.95 4.94 7.05h5.23l-1.58-1.59L18 8l4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe\": {\n    \"name\": \"swipe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.89,14.75l-4.09-2.04c-0.28-0.14-0.58-0.21-0.89-0.21H13v-6C13,5.67,12.33,5,11.5,5S10,5.67,10,6.5v10.74L6.75,16.5 c-0.33-0.07-0.68,0.03-0.92,0.28L5,17.62l4.54,4.79C9.92,22.79,10.68,23,11.21,23h6.16c1,0,1.84-0.73,1.98-1.72l0.63-4.46 C20.1,15.97,19.66,15.14,18.89,14.75z\\\"></path><path d=\\\"M20.13,3.87C18.69,2.17,15.6,1,12,1S5.31,2.17,3.87,3.87L2,2v5h5L4.93,4.93c1-1.29,3.7-2.43,7.07-2.43 s6.07,1.14,7.07,2.43L17,7h5V2L20.13,3.87z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.51,3.49C14.87,1.96,12.56,1,10,1S5.13,1.96,3.49,3.49L2,2v4h4L4.69,4.69C6.02,3.47,7.91,2.7,10,2.7 s3.98,0.77,5.31,1.99L14,6h4V2L16.51,3.49z\\\"></path><path d=\\\"M12.16,11H10.5V6.25C10.5,5.56,9.94,5,9.25,5h0C8.56,5,8,5.56,8,6.25V15l-2.12-0.71c-0.54-0.18-1.13-0.04-1.54,0.36L4,15 l3.56,3.56C7.84,18.84,8.22,19,8.62,19h5.27c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59L12.16,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"generating_tokens\": {\n    \"name\": \"generating_tokens\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C17,7.58,13.42,4,9,4z M12,10.5h-2v5H8v-5H6V9h6V10.5z M20.25,3.75 L23,5l-2.75,1.25L19,9l-1.25-2.75L15,5l2.75-1.25L19,1L20.25,3.75z M20.25,17.75L23,19l-2.75,1.25L19,23l-1.25-2.75L15,19l2.75-1.25 L19,15L20.25,17.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.06,4.94L13,4l2.06-0.94L16,1l0.94,2.06L19,4l-2.06,0.94L16,7L15.06,4.94z M16,19l0.94-2.06L19,16l-2.06-0.94L16,13 l-0.94,2.06L13,16l2.06,0.94L16,19z M7.5,3.5c3.59,0,6.5,2.91,6.5,6.5s-2.91,6.5-6.5,6.5S1,13.59,1,10S3.91,3.5,7.5,3.5L7.5,3.5z M10,7.5H5v1.25h1.75V13h1.5V8.75H10V7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"request_page\": {\n    \"name\": \"request_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M15,11h-4v1h3c0.55,0,1,0.45,1,1v3 c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z\\\"></path>\"\n      }\n    }\n  },\n  \"cached\": {\n    \"name\": \"cached\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"width_full\": {\n    \"name\": \"width_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h1v12H4V6z M20,18h-1V6h1V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,5.5h1v9h-1V5.5z M16.5,14.5h-1v-9h1V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm\": {\n    \"name\": \"alarm\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"on_device_training\": {\n    \"name\": \"on_device_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><path d=\\\"M12,11c-1.1,0-2,0.9-2,2c0,0.74,0.4,1.38,1,1.72v0.78h2v-0.78c0.6-0.35,1-0.98,1-1.72C14,11.9,13.1,11,12,11z\\\"></path><path d=\\\"M18,1.01L6,1C4.9,1,4,1.9,4,3v18c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1.01,18,1.01z M18,18H6V6h12V18z\\\"></path><path d=\\\"M16.01,15.95C16.63,15.12,17,14.11,17,13s-0.37-2.12-0.99-2.95l-1.07,1.07c0.35,0.54,0.56,1.19,0.56,1.88 s-0.21,1.34-0.56,1.88L16.01,15.95z\\\"></path><path d=\\\"M9.06,14.88C8.71,14.34,8.5,13.69,8.5,13c0-1.93,1.57-3.5,3.5-3.5v1.25l2.25-2l-2.25-2V8c-2.76,0-5,2.24-5,5 c0,1.11,0.37,2.12,0.99,2.95L9.06,14.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5v-15C16,1.67,15.33,1,14.5,1z M14.5,15h-9V5h9V15z\\\"></path><rect height=\\\".75\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13.25\\\"></rect><path d=\\\"M10,9.5c-0.83,0-1.5,0.67-1.5,1.5c0,0.55,0.3,1.03,0.75,1.29v0.46h1.5v-0.46c0.45-0.26,0.75-0.74,0.75-1.29 C11.5,10.17,10.83,9.5,10,9.5z\\\"></path><path d=\\\"M12.97,13c0.48-0.63,0.78-1.41,0.78-2.26c0-0.85-0.3-1.63-0.78-2.26l-0.71,0.71c0.31,0.44,0.49,0.98,0.49,1.56 s-0.18,1.11-0.49,1.56L12.97,13z\\\"></path><path d=\\\"M7.74,12.31c-0.31-0.44-0.49-0.98-0.49-1.56C7.25,9.23,8.48,8,10,8v1l1.5-1.5L10,6v1c-2.07,0-3.75,1.68-3.75,3.75 c0,0.85,0.3,1.63,0.78,2.26L7.74,12.31z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"balance\": {\n    \"name\": \"balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,7.83c0.85-0.3,1.53-0.98,1.83-1.83H18l-3,7c0,1.66,1.57,3,3.5,3s3.5-1.34,3.5-3l-3-7h2V4h-6.17 C14.42,2.83,13.31,2,12,2S9.58,2.83,9.17,4L3,4v2h2l-3,7c0,1.66,1.57,3,3.5,3S9,14.66,9,13L6,6h3.17c0.3,0.85,0.98,1.53,1.83,1.83 V19H2v2h20v-2h-9V7.83z M20.37,13h-3.74l1.87-4.36L20.37,13z M7.37,13H3.63L5.5,8.64L7.37,13z M12,6c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,5.55,12.55,6,12,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,6.37C11.39,6.15,11.9,5.64,12.12,5H15l-2.5,5.75c0,1.24,1.23,2.25,2.75,2.25c1.52,0,2.75-1.01,2.75-2.25L15.5,5H17 V3.5h-4.88C11.81,2.63,10.98,2,10,2S8.19,2.63,7.88,3.5H3V5h1.5L2,10.75C2,11.99,3.23,13,4.75,13s2.75-1.01,2.75-2.25L5,5h2.88 C8.1,5.64,8.61,6.15,9.25,6.37v9.13H2V17h16v-1.5h-7.25V6.37z M16.91,10.75h-3.32l1.66-3.82L16.91,10.75z M6.41,10.75H3.09 l1.66-3.82L6.41,10.75z M10,5C9.59,5,9.25,4.66,9.25,4.25C9.25,3.84,9.59,3.5,10,3.5s0.75,0.34,0.75,0.75C10.75,4.66,10.41,5,10,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upgrade\": {\n    \"name\": \"upgrade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,14v1H7v-1H13z M9.5,8v5h1V8H13l-3-3L7,8H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_array\": {\n    \"name\": \"view_array\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,5h-3v14h3V5z M17,5H7v14h10V5z M6,5H3v14h3V5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5h2v10H3V5z M15,5v10h2V5H15z M6,5h8v10H6V5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_voice\": {\n    \"name\": \"settings_voice\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z\\\"></path>\"\n      }\n    }\n  },\n  \"sticky_note_2\": {\n    \"name\": \"sticky_note_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H4.99C3.89,3,3,3.9,3,5l0.01,14c0,1.1,0.89,2,1.99,2h10l6-6V5C21,3.9,20.1,3,19,3z M7,8h10v2H7V8z M12,14H7v-2h5V14z M14,19.5V14h5.5L14,19.5z\\\"></path>\"\n      }\n    }\n  },\n  \"analytics\": {\n    \"name\": \"analytics\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_done\": {\n    \"name\": \"remove_done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.79 12l5.58 5.59L5.96 19 .37 13.41 1.79 12zm.45-7.78L12.9 14.89l-1.28 1.28L7.44 12l-1.41 1.41L11.62 19l2.69-2.69 4.89 4.89 1.41-1.41L3.65 2.81 2.24 4.22zm14.9 9.27L23.62 7 22.2 5.59l-6.48 6.48 1.42 1.42zM17.96 7l-1.41-1.41-3.65 3.66 1.41 1.41L17.96 7z\\\"></path>\"\n      }\n    }\n  },\n  \"pan_tool\": {\n    \"name\": \"pan_tool\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M23,5.5V20c0,2.2-1.8,4-4,4h-7.3c-1.08,0-2.1-0.43-2.85-1.19L1,14.83c0,0,1.26-1.23,1.3-1.25 c0.22-0.19,0.49-0.29,0.79-0.29c0.22,0,0.42,0.06,0.6,0.16C3.73,13.46,8,15.91,8,15.91V4c0-0.83,0.67-1.5,1.5-1.5S11,3.17,11,4v7 h1V1.5C12,0.67,12.67,0,13.5,0S15,0.67,15,1.5V11h1V2.5C16,1.67,16.67,1,17.5,1S19,1.67,19,2.5V11h1V5.5C20,4.67,20.67,4,21.5,4 S23,4.67,23,5.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"pageview\": {\n    \"name\": \"pageview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"explore_off\": {\n    \"name\": \"explore_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.19 14.19l-1.41-1.41-1.56-1.56L11 11 9.81 9.81 4.93 4.93 2.27 2.27 1 3.54l2.78 2.78c-.11.16-.21.32-.31.48-.04.07-.09.14-.13.21-.09.15-.17.31-.25.47-.05.1-.1.21-.16.32-.06.14-.13.28-.19.43-.1.24-.19.48-.27.73l-.09.3c-.05.2-.1.39-.14.59-.02.11-.04.22-.07.33-.04.2-.07.4-.09.61-.01.1-.03.2-.03.3-.03.29-.05.6-.05.91 0 5.52 4.48 10 10 10 .31 0 .62-.02.92-.05l.3-.03c.2-.02.41-.06.61-.09.11-.02.22-.04.33-.07.2-.04.39-.09.58-.15.1-.03.2-.05.3-.09.25-.08.49-.17.73-.27.15-.06.29-.13.43-.19.11-.05.22-.1.33-.16.16-.08.31-.16.46-.25.07-.04.14-.09.21-.13.16-.1.32-.2.48-.31L20.46 23l1.27-1.27-2.66-2.66-4.88-4.88zM6 18l3-6.46L12.46 15 6 18zm16-6c0 .31-.02.62-.05.92l-.03.3c-.02.2-.06.41-.09.61-.02.11-.04.22-.07.33-.04.2-.09.39-.15.58-.03.1-.05.21-.09.31-.08.25-.17.49-.27.73-.06.15-.13.29-.19.43-.05.11-.1.22-.16.33-.08.16-.16.31-.25.46-.04.07-.09.14-.13.21-.1.16-.2.32-.31.48L15 12.46 18 6l-6.46 3-5.22-5.22c.16-.11.32-.21.48-.31.07-.04.14-.09.21-.13.15-.09.31-.17.46-.25.11-.05.22-.1.33-.16.14-.06.28-.13.43-.19.24-.1.48-.19.73-.27l.31-.09c.19-.05.38-.11.58-.15.11-.02.22-.04.33-.07.2-.04.4-.07.61-.09.1-.01.2-.03.3-.03.29-.02.6-.04.91-.04 5.52 0 10 4.48 10 10z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_camera_mic\": {\n    \"name\": \"perm_camera_mic\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"reorder\": {\n    \"name\": \"reorder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z\\\"></path>\"\n      }\n    }\n  },\n  \"build_circle\": {\n    \"name\": \"build_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M16.9,15.49l-1.4,1.4c-0.2,0.2-0.51,0.2-0.71,0l-3.41-3.41c-1.22,0.43-2.64,0.17-3.62-0.81 c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62 l3.41,3.41C17.09,14.98,17.09,15.3,16.9,15.49z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M12.02,13.5 l-2.26-2.26c-0.84,0.26-1.79,0.08-2.45-0.59C6.54,9.88,6.4,8.73,6.88,7.81l1.63,1.63l1.03-1.03L7.91,6.78 c0.92-0.48,2.07-0.34,2.84,0.43c0.74,0.74,0.9,1.84,0.48,2.74l2.17,2.17L12.02,13.5z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_rotate_vertical\": {\n    \"name\": \"text_rotate_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 19.75l3-3H7V4.25H5v12.5H3l3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"api\": {\n    \"name\": \"api\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flip_to_back\": {\n    \"name\": \"flip_to_back\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_overscan\": {\n    \"name\": \"settings_overscan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"segment\": {\n    \"name\": \"segment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_up\": {\n    \"name\": \"thumb_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_ethernet\": {\n    \"name\": \"settings_ethernet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z\\\"></path>\"\n      }\n    }\n  },\n  \"pending_actions\": {\n    \"name\": \"pending_actions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_compact_alt\": {\n    \"name\": \"view_compact_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M11.5,16.5h-4v-4h4V16.5z M11.5,11.5h-4v-4h4V11.5z M16.5,16.5h-4v-4h4V16.5z M16.5,11.5h-4v-4h4V11.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M9.5,13.5h-3v-3h3V13.5z M9.5,9.5h-3v-3h3V9.5z M13.5,13.5h-3v-3h3V13.5z M13.5,9.5h-3v-3h3V9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feedback\": {\n    \"name\": \"feedback\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vertical_circle\": {\n    \"name\": \"swap_vertical_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm11 6L14 18.5 10.5 15H13v-4h2v4h2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"record_voice_over\": {\n    \"name\": \"record_voice_over\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z\\\"></path>\"\n      }\n    }\n  },\n  \"euro_symbol\": {\n    \"name\": \"euro_symbol\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1 0 .34.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z\\\"></path>\"\n      }\n    }\n  },\n  \"quickreply\": {\n    \"name\": \"quickreply\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M22,4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-8h7V4z\\\"></path></g><g><polygon points=\\\"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M17,4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h7V9h4V4z\\\"></path></g><g><polygon points=\\\"18,13 16.4,13 17.64,10 14,10 14,14.36 15.45,14.36 15.45,18\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_circle_right\": {\n    \"name\": \"arrow_circle_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,5.52,4.48,10,10,10S22,17.52,22,12z M12,13l-4,0v-2l4,0V8l4,4l-4,4V13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S18,14.42,18,10z M10,10.75H7v-1.5h3V7l3,3l-3,3V10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"open_in_new_off\": {\n    \"name\": \"open_in_new_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.79,5.8L14,3h7v7l-2.79-2.8l-4.09,4.09l-1.41-1.41L16.79,5.8z M19,12v4.17l2,2V12H19z M19.78,22.61L18.17,21H5 c-1.11,0-2-0.9-2-2V5.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M16.17,19l-4.88-4.88L9.7,15.71L8.29,14.3l1.59-1.59L5,7.83 V19H16.17z M7.83,5H12V3H5.83L7.83,5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,14.88l-1.5-1.5V10H17V14.88z M10,4.5V3H5.12l1.5,1.5H10z M15.03,6.03L17,8V3h-5l1.97,1.97l-3.44,3.44l1.06,1.06 L15.03,6.03z M16.01,18.13L14.88,17H4.5C3.67,17,3,16.33,3,15.5V5.12L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M13.38,15.5 l-3.91-3.91L8.06,13L7,11.94l1.41-1.41L4.5,6.62v8.88H13.38z\\\"></path>\"\n      }\n    }\n  },\n  \"credit_card_off\": {\n    \"name\": \"credit_card_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.9,21.9L2.1,2.1L0.69,3.51l1.55,1.55C2.09,5.34,2.01,5.66,2.01,6L2,18c0,1.11,0.89,2,2,2h13.17l3.31,3.31L21.9,21.9z M4,12V8h1.17l4,4H4z M6.83,4H20c1.11,0,2,0.89,2,2v12c0,0.34-0.08,0.66-0.23,0.94L14.83,12H20V8h-9.17L6.83,4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.15,0.73-0.38,1l-5.5-5.5h4.38V7H9.12L6.12,4z M16.72,18.84L13.88,16H3.5 C2.67,16,2,15.33,2,14.5v-9c0-0.38,0.15-0.73,0.38-1L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M7.88,10l-3-3H3.5v3H7.88z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_device_information\": {\n    \"name\": \"perm_device_information\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v2h2V7zm0 4h-2v6h2v-6zm4-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"get_app\": {\n    \"name\": \"get_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"subject\": {\n    \"name\": \"subject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_alt\": {\n    \"name\": \"sync_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"18,12 22,8 18,4 18,7 3,7 3,9 18,9\\\"></polygon><polygon points=\\\"6,12 2,16 6,20 6,17 21,17 21,15 6,15\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"18,7 15,4 15,6.25 3,6.25 3,7.75 15,7.75 15,10\\\"></polygon><polygon points=\\\"5,10 2,13 5,16 5,13.75 17,13.75 17,12.25 5,12.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"play_for_work\": {\n    \"name\": \"play_for_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"barcode_reader\": {\n    \"name\": \"barcode_reader\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23 8.75h-4v-1.5h4v1.5zm-.38-4.38L22 3l-3.62 1.63L19 6l3.62-1.63zM19 10l-.62 1.37L22 13l.62-1.37L19 10zm-8 3c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1H9.64l-.74 2.78A2.999 2.999 0 016 22a2.995 2.995 0 01-2.9-3.77l1.82-6.8A4.028 4.028 0 013 8c0-2.21 1.79-4 4-4h8c1.49 0 2.45 1.56 1.79 2.89l-2 4C14.45 11.57 13.75 12 13 12h-2.02l-.27 1H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.5 7.5h-3v-1h3v1zm-.33 2.59-2.75-1.28-.42.91L17.75 11l.42-.91zm-.42-6.84L15 4.53l.42.91 2.75-1.28-.42-.91zM7.59 16.27A2.335 2.335 0 015.34 18c-.2 0-.4-.03-.61-.08a2.338 2.338 0 01-1.65-2.86l1.46-5.44A2.987 2.987 0 013 7c0-1.66 1.34-3 3-3h6.5c1.12 0 1.84 1.17 1.34 2.17l-1.5 3c-.25.51-.77.83-1.34.83H9.27L9 11c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-.8l-.61 2.27z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_rotation_none\": {\n    \"name\": \"text_rotation_none\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.75 3h-1.5L6.5 14h2.1l.9-2.2h5l.9 2.2h2.1L12.75 3zm-2.62 7L12 4.98 13.87 10h-3.74zm10.37 8l-3-3v2H5v2h12.5v2l3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture_alt\": {\n    \"name\": \"picture_in_picture_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 11h-8v6h8v-6zm4 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 .02H3V4.97h18v14.05z\\\"></path>\"\n      }\n    }\n  },\n  \"view_column\": {\n    \"name\": \"view_column\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.67,5v14H9.33V5H14.67z M15.67,19H21V5h-5.33V19z M8.33,19V5H3v14H8.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,15h4V5h-4V15z M8,5v10h4V5H8z M7,15V5H3v10H7z\\\"></path>\"\n      }\n    }\n  },\n  \"input\": {\n    \"name\": \"input\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_history\": {\n    \"name\": \"manage_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22.69,18.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L20,14h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L18,24h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C22.77,19.13,22.77,18.87,22.69,18.37z M19,21c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S20.1,21,19,21z M11,7v5.41l2.36,2.36l1.04-1.79L13,11.59V7H11z M21,12c0-4.97-4.03-9-9-9C9.17,3,6.65,4.32,5,6.36V4H3v6 h6V8H6.26C7.53,6.19,9.63,5,12,5c3.86,0,7,3.14,7,7H21z M10.86,18.91C7.87,18.42,5.51,16.01,5.08,13H3.06c0.5,4.5,4.31,8,8.94,8 c0.02,0,0.05,0,0.07,0L10.86,18.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.95,14.89l0.85-0.79l-0.67-1.15l-1.12,0.33c-0.31-0.28-0.67-0.48-1.07-0.62l-0.28-1.16h-1.33l-0.27,1.17 c-0.39,0.13-0.75,0.34-1.05,0.61l-1.14-0.34L12.2,14.1l0.87,0.81c-0.11,0.54-0.05,0.97,0,1.21l-0.87,0.83l0.67,1.15l1.16-0.36 c0.3,0.26,0.64,0.46,1.03,0.59l0.27,1.17h1.33l0.28-1.16c0.39-0.13,0.75-0.33,1.05-0.6l1.15,0.35l0.67-1.15l-0.86-0.81 C19.07,15.53,18.98,15.07,18.95,14.89z M16.01,17c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.84,17,16.01,17z M10.49,16.98C10.33,16.99,10.17,17,10,17c-3.87,0-7-3.13-7-7h1.5c0,2.91,2.27,5.3,5.13,5.49L10.49,16.98z M15.5,10 c0-3.03-2.47-5.5-5.5-5.5c-1.7,0-3.22,0.78-4.22,2H8V8H3V3h1.5v2.71C5.78,4.07,7.76,3,10,3c3.87,0,7,3.13,7,7H15.5z M10.75,6v3.38 l1.55,1.55l-0.78,1.34L9.25,10V6H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"circle_notifications\": {\n    \"name\": \"circle_notifications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-1l1-1v-2.61C8 9.27 9.03 7.47 11 7v-.5c0-.57.43-1 1-1s1 .43 1 1V7c1.97.47 3 2.28 3 4.39V14l1 1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"3d_rotation\": {\n    \"name\": \"3d_rotation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96-.12-.28-.29-.51-.51-.69-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49-.05.15-.14.27-.25.37-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes_off\": {\n    \"name\": \"speaker_notes_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.54 11l-.54-.54L7.54 8 6 6.46 2.38 2.84 1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 17.54 18l-7-7zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm14-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"work_off\": {\n    \"name\": \"work_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 21.74l-1.46-1.46L7.21 5.95 3.25 1.99 1.99 3.25l2.7 2.7h-.64c-1.11 0-1.99.89-1.99 2l-.01 11c0 1.11.89 2 2 2h15.64L21.74 23 23 21.74zM22 7.95c.05-1.11-.84-2-1.95-1.95h-4V3.95c0-1.11-.89-2-2-1.95h-4c-1.11-.05-2 .84-2 1.95v.32l13.95 14V7.95zM14.05 6H10V3.95h4.05V6z\\\"></path>\"\n      }\n    }\n  },\n  \"dangerous\": {\n    \"name\": \"dangerous\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM17 15.74L15.74 17 12 13.26 8.26 17 7 15.74 10.74 12 7 8.26 8.26 7 12 10.74 15.74 7 17 8.26 13.26 12 17 15.74z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<path d=\\\"M0 0h20v20H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.3 2L18 6.7v6.6L13.3 18H6.7L2 13.3V6.7L6.7 2h6.6zm.7 5l-1-1-3 3-3-3-1 1 3 3-3 3 1 1 3-3 3 3 1-1-3-3 3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_outline\": {\n    \"name\": \"lock_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M12,17c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,17,12,17z M18,8h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6 c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z M8.9,6c0-1.71,1.39-3.1,3.1-3.1 s3.1,1.39,3.1,3.1v2H8.9V6z M18,20H6V10h12V20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"copyright\": {\n    \"name\": \"copyright\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M11.88,9.14c1.28,0.06,1.61,1.15,1.63,1.66h1.79c-0.08-1.98-1.49-3.19-3.45-3.19C9.64,7.61,8,9,8,12.14 c0,1.94,0.93,4.24,3.84,4.24c2.22,0,3.41-1.65,3.44-2.95h-1.79c-0.03,0.59-0.45,1.38-1.63,1.44C10.55,14.83,10,13.81,10,12.14 C10,9.25,11.28,9.16,11.88,9.14z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"lightbulb_outline\": {\n    \"name\": \"lightbulb_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M9,21c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1H9V21z M12,2C8.14,2,5,5.14,5,9c0,2.38,1.19,4.47,3,5.74V17 c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-2.26c1.81-1.27,3-3.36,3-5.74C19,5.14,15.86,2,12,2z M14,13.7V16h-4v-2.3 C8.48,12.63,7,11.53,7,9c0-2.76,2.24-5,5-5s5,2.24,5,5C17,11.49,15.49,12.65,14,13.7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"open_in_new\": {\n    \"name\": \"open_in_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"app_shortcut\": {\n    \"name\": \"app_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z\\\"></path><polygon points=\\\"20.38,9.62 21,11 21.62,9.62 23,9 21.62,8.38 21,7 20.38,8.38 19,9\\\"></polygon><polygon points=\\\"16,8 14.75,10.75 12,12 14.75,13.25 16,16 17.25,13.25 20,12 17.25,10.75\\\"></polygon><polygon points=\\\"21,13 20.38,14.38 19,15 20.38,15.62 21,17 21.62,15.62 23,15 21.62,14.38\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,15h-9V5h9v1H16V2.5C16,1.67,15.33,1,14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15z\\\"></path><polygon points=\\\"17.03,7.97 17.5,9 17.97,7.97 19,7.5 17.97,7.03 17.5,6 17.03,7.03 16,7.5\\\"></polygon><polygon points=\\\"13,7 12.06,9.06 10,10 12.06,10.94 13,13 13.94,10.94 16,10 13.94,9.06\\\"></polygon><polygon points=\\\"17.5,11 17.03,12.03 16,12.5 17.03,12.97 17.5,14 17.97,12.97 19,12.5 17.97,12.03\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"supervisor_account\": {\n    \"name\": \"supervisor_account\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7C15.12 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5C7.34 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_phone_msg\": {\n    \"name\": \"perm_phone_msg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM12 3v10l3-3h6V3h-9z\\\"></path>\"\n      }\n    }\n  },\n  \"density_medium\": {\n    \"name\": \"density_medium\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"dns\": {\n    \"name\": \"dns\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"home\": {\n    \"name\": \"home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\\\"></path>\"\n      }\n    }\n  },\n  \"view_headline\": {\n    \"name\": \"view_headline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"view_in_ar\": {\n    \"name\": \"view_in_ar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.25 7.6l-5.5-3.18c-.46-.27-1.04-.27-1.5 0L5.75 7.6c-.46.27-.75.76-.75 1.3v6.35c0 .54.29 1.03.75 1.3l5.5 3.18c.46.27 1.04.27 1.5 0l5.5-3.18c.46-.27.75-.76.75-1.3V8.9c0-.54-.29-1.03-.75-1.3zM7 14.96v-4.62l4 2.32v4.61l-4-2.31zm5-4.03L8 8.61l4-2.31 4 2.31-4 2.32zm1 6.34v-4.61l4-2.32v4.62l-4 2.31zM7 2H3.5C2.67 2 2 2.67 2 3.5V7h2V4h3V2zm10 0h3.5c.83 0 1.5.67 1.5 1.5V7h-2V4h-3V2zM7 22H3.5c-.83 0-1.5-.67-1.5-1.5V17h2v3h3v2zm10 0h3.5c.83 0 1.5-.67 1.5-1.5V17h-2v3h-3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"explore\": {\n    \"name\": \"explore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z\\\"></path>\"\n      }\n    }\n  },\n  \"transcribe\": {\n    \"name\": \"transcribe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.93,16l1.63-1.63c-2.77-3.02-2.77-7.56,0-10.74L17.93,2C14.03,5.89,14.02,11.95,17.93,16z M22.92,10.95 c-0.84-1.18-0.84-2.71,0-3.89l-1.68-1.69c-2.02,2.02-2.02,5.07,0,7.27L22.92,10.95z M9,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4 S5,6.79,5,9C5,11.21,6.79,13,9,13z M15.39,15.56C13.71,14.7,11.53,14,9,14c-2.53,0-4.71,0.7-6.39,1.56C1.61,16.07,1,17.1,1,18.22 V21h16v-2.78C17,17.1,16.39,16.07,15.39,15.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M15.16,12.61l0.97-1.17C15.14,10.61,14.5,9.39,14.5,8s0.64-2.61,1.63-3.44l-0.97-1.17C13.84,4.49,13,6.15,13,8 S13.84,11.51,15.16,12.61z\\\"></path><path d=\\\"M17.09,5.71C16.43,6.26,16,7.07,16,8s0.43,1.74,1.09,2.29l0.96-1.15C17.71,8.87,17.5,8.46,17.5,8s0.21-0.87,0.54-1.15 L17.09,5.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lightbulb\": {\n    \"name\": \"lightbulb\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_outward\": {\n    \"name\": \"arrow_outward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"6,6 6,8 14.59,8 5,17.59 6.41,19 16,9.41 16,18 18,18 18,6\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"5,5 5,6.5 12.44,6.5 4,14.94 5.06,16 13.5,7.56 13.5,15 15,15 15,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"home_filled\": {\n    \"name\": \"home_filled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3L4 9v12h5v-7h6v7h5V9z\\\"></path>\"\n      }\n    }\n  },\n  \"pin_end\": {\n    \"name\": \"pin_end\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,12V6H4v12h10l0,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v6H20z M19,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.66,0,3-1.34,3-3S20.66,14,19,14z M14.66,8H9v5.66l2.12-2.12l2.83,2.83l1.41-1.41l-2.83-2.83L14.66,8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,10V5.5h-13v9H12c0.01,0.02,0,1.5,0,1.5H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h13C17.33,4,18,4.67,18,5.5 V10H16.5z M15.75,11.5c-1.24,0-2.25,1.01-2.25,2.25s1,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25S16.99,11.5,15.75,11.5z M12.74,7 H8.5v4.24l1.59-1.59l2.12,2.12l1.06-1.06l-2.12-2.12L12.74,7z\\\"></path>\"\n      }\n    }\n  },\n  \"all_out\": {\n    \"name\": \"all_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M16.21 4.16l4 4v-4zm4 12l-4 4h4zm-12 4l-4-4v4zm-4-12l4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z\\\"></path><path d=\\\"M.21.16h24v24h-24z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"today\": {\n    \"name\": \"today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"batch_prediction\": {\n    \"name\": \"batch_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,7H6C5.45,7,5,7.45,5,8v8c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8C15,7.45,14.55,7,14,7z M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5 C12.5,12,10.75,13,10.75,14z M14,6H6v0c0-0.55,0.45-1,1-1h6C13.55,5,14,5.45,14,6L14,6z M13,4H7v0c0-0.55,0.45-1,1-1h4 C12.55,3,13,3.45,13,4L13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_up\": {\n    \"name\": \"arrow_circle_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"change_history\": {\n    \"name\": \"change_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"pinch\": {\n    \"name\": \"pinch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6z M22.98,16.82l-0.63,4.46C22.21,22.27,21.36,23,20.37,23 h-6.16c-0.53,0-1.29-0.21-1.66-0.59L8,17.62l0.83-0.84c0.24-0.24,0.58-0.35,0.92-0.28L13,17.24V6.5C13,5.67,13.67,5,14.5,5 S16,5.67,16,6.5v6h0.91c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04C22.66,15.14,23.1,15.97,22.98,16.82z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.66,11H14V6.25C14,5.56,13.44,5,12.75,5h0c-0.69,0-1.25,0.56-1.25,1.25V15L9.38,14.3c-0.54-0.18-1.13-0.04-1.54,0.36 L7.5,15l3.56,3.56c0.28,0.28,0.66,0.44,1.06,0.44h5.27c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59 L15.66,11z M5,1v1h2.29L2,7.3V5H1v4h4V8H2.71L8,2.71V5h1V1H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"done_outline\": {\n    \"name\": \"done_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 5.03l1.4 1.4L8.43 19.17l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 5.03m0-2.83L8.43 13.54l-4.2-4.2L0 13.57 8.43 22 24 6.43 19.77 2.2z\\\"></path>\"\n      }\n    }\n  },\n  \"backup\": {\n    \"name\": \"backup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_right\": {\n    \"name\": \"swipe_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.98,16.82l-0.63,4.46C19.21,22.27,18.36,23,17.37,23h-6.16c-0.53,0-1.29-0.21-1.66-0.59L5,17.62l0.83-0.84 c0.24-0.24,0.58-0.35,0.92-0.28L10,17.24V6.5C10,5.67,10.67,5,11.5,5S13,5.67,13,6.5v6h0.91c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04 C19.66,15.14,20.1,15.97,19.98,16.82z M19.91,5.5H17V7h5V2h-1.5v2.02C18.18,2.13,15.22,1,12,1C6.51,1,2.73,4.12,2,7h1.57 C4.33,5.02,7.26,2.5,12,2.5C15.03,2.5,17.79,3.64,19.91,5.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,6c1.03-2.89,4.22-5,8-5c2.93,0,5.51,1.27,7,3.19L17,2h1v4h-4V5l2.36,0C15.06,3.18,12.65,2,10,2C6.89,2,4.11,3.63,3.07,6 L2,6z M12.66,11H11V6.25C11,5.56,10.44,5,9.75,5h0C9.06,5,8.5,5.56,8.5,6.25V15l-2.12-0.71c-0.54-0.18-1.13-0.04-1.54,0.36L4.5,15 l3.56,3.56C8.34,18.84,8.72,19,9.12,19h5.27c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59L12.66,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"plagiarism\": {\n    \"name\": \"plagiarism\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M15.04,19.45l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95c1.37-1.37,3.58-1.37,4.95,0c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88 L15.04,19.45z M13,9V3.5L18.5,9H13z\\\"></path><circle cx=\\\"11.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"9.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle></g><g><path d=\\\"M12,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V7L12,3z M12.33,15.04l-1.45-1.45 c-0.97,0.64-2.29,0.54-3.15-0.32c-0.98-0.98-0.98-2.56,0-3.54s2.56-0.98,3.54,0c0.86,0.86,0.96,2.18,0.32,3.15l1.45,1.45 L12.33,15.04z M11,8V4l4,4H11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"php\": {\n    \"name\": \"php\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9z M8,10.5v1C8,12.3,7.3,13,6.5,13h-2v2H3V9h3.5C7.3,9,8,9.7,8,10.5z M6.5,10.5h-2 v1h2V10.5z M21.5,10.5v1c0,0.8-0.7,1.5-1.5,1.5h-2v2h-1.5V9H20C20.8,9,21.5,9.7,21.5,10.5z M20,10.5h-2v1h2V10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,8h1v4h-1v-1.5h-1V12h-1V8h1v1.5h1V8z M7,8.5V10c0,0.28-0.22,0.5-0.5,0.5H5V12H4V8h2.5C6.78,8,7,8.22,7,8.5z M6,9H5 v0.5h1V9z M16,8.5V10c0,0.28-0.22,0.5-0.5,0.5H14V12h-1V8h2.5C15.78,8,16,8.22,16,8.5z M15,9h-1v0.5h1V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grade\": {\n    \"name\": \"grade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_month\": {\n    \"name\": \"calendar_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,20 H5V10h14V20z M9,14H7v-2h2V14z M13,14h-2v-2h2V14z M17,14h-2v-2h2V14z M9,18H7v-2h2V18z M13,18h-2v-2h2V18z M17,18h-2v-2h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h11c0.83,0,1.5-0.68,1.5-1.5v-11 C17,4.68,16.33,4,15.5,4z M15.5,16.5h-11V9h11V16.5z M7.5,12H6v-1.5h1.5V12z M10.75,12h-1.5v-1.5h1.5V12z M14,12h-1.5v-1.5H14V12z M7.5,15H6v-1.5h1.5V15z M10.75,15h-1.5v-1.5h1.5V15z M14,15h-1.5v-1.5H14V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"outbound\": {\n    \"name\": \"outbound\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41 l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path>\"\n      }\n    }\n  },\n  \"card_giftcard\": {\n    \"name\": \"card_giftcard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_split\": {\n    \"name\": \"vertical_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility\": {\n    \"name\": \"accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_page\": {\n    \"name\": \"restore_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horiz\": {\n    \"name\": \"swap_horiz\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z\\\"></path>\"\n      }\n    }\n  },\n  \"width_normal\": {\n    \"name\": \"width_normal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h4v12H4V6z M20,18h-4V6h4V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,5.5H7v9H3.5V5.5z M16.5,14.5H13v-9h3.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_style\": {\n    \"name\": \"line_style\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,16h5v-2H3V16z M9.5,16h5v-2h-5V16z M16,16h5v-2h-5V16z M3,20h2v-2H3V20z M7,20h2v-2H7V20z M11,20h2v-2h-2V20z M15,20 h2v-2h-2V20z M19,20h2v-2h-2V20z M3,12h8v-2H3V12z M13,12h8v-2h-8V12z M3,4v4h18V4H3z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"swap_vert\": {\n    \"name\": \"swap_vert\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z\\\"></path>\"\n      }\n    }\n  },\n  \"help_outline\": {\n    \"name\": \"help_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"hide_source\": {\n    \"name\": \"hide_source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.94,10.94C14.86,19.59,13.48,20,12,20z M7.94,5.12 L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46C19.59,14.86,20,13.48,20,12 c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tab_unselected\": {\n    \"name\": \"tab_unselected\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_present\": {\n    \"name\": \"file_present\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V7l-5-5zM6 20V4h8v4h4v12H6zm10-10v5c0 2.21-1.79 4-4 4s-4-1.79-4-4V8.5c0-1.47 1.26-2.64 2.76-2.49 1.3.13 2.24 1.32 2.24 2.63V15h-2V8.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-5h2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_brightness\": {\n    \"name\": \"settings_brightness\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_clock\": {\n    \"name\": \"lock_clock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.5 14.2l2.9 1.7-.8 1.3L13 15v-5h1.5v4.2zM22 14c0 4.41-3.59 8-8 8-2.02 0-3.86-.76-5.27-2H4c-1.15 0-2-.85-2-2V9c0-1.12.89-1.96 2-2v-.5C4 4.01 6.01 2 8.5 2c2.34 0 4.24 1.79 4.46 4.08.34-.05.69-.08 1.04-.08 4.41 0 8 3.59 8 8zM6 7h5v-.74C10.88 4.99 9.8 4 8.5 4 7.12 4 6 5.12 6 6.5V7zm14 7c0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6 6-2.69 6-6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<path d=\\\"M0 0h20v20H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8H11v5l3.6 2.2.8-1.3-2.9-1.7V8zM12 5c-.3 0-.7 0-1 .1V5c0-2.1-1.9-4-4-4S3 2.9 3 5v1h-.5C1.7 6 1 6.7 1 7.5v8c0 .8.7 1.5 1.5 1.5h4.6c1.3 1.2 3 2 4.9 2 3.9 0 7-3.1 7-7s-3.1-7-7-7zM5 5c0-1.1.9-2 2-2s2 .9 2 2v1H5V5zm7 12c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"source\": {\n    \"name\": \"source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_agenda\": {\n    \"name\": \"view_agenda\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,13H5c-1.1,0-2,0.9-2,2v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4C21,13.9,20.1,13,19,13z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v3C3,8.33,3.67,9,4.5,9h11C16.33,9,17,8.33,17,7.5v-3C17,3.67,16.33,3,15.5,3z\\\"></path><path d=\\\"M15.5,11h-11C3.67,11,3,11.67,3,12.5v3C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,11.67,16.33,11,15.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_left\": {\n    \"name\": \"swipe_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.98,16.82l-0.63,4.46C19.21,22.27,18.36,23,17.37,23h-6.16c-0.53,0-1.29-0.21-1.66-0.59L5,17.62l0.83-0.84 c0.24-0.24,0.58-0.35,0.92-0.28L10,17.24V6.5C10,5.67,10.67,5,11.5,5S13,5.67,13,6.5v6h0.91c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04 C19.66,15.14,20.1,15.97,19.98,16.82z M12,2.5c4.74,0,7.67,2.52,8.43,4.5H22c-0.73-2.88-4.51-6-10-6C8.78,1,5.82,2.13,3.5,4.02V2H2 v5h5V5.5H4.09C6.21,3.64,8.97,2.5,12,2.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.93,6C15.89,3.63,13.11,2,10,2C7.35,2,4.94,3.18,3.64,5L6,5v1H2V2h1l0,2.19C4.49,2.27,7.07,1,10,1c3.78,0,6.97,2.11,8,5 L16.93,6z M12.66,11H11V6.25C11,5.56,10.44,5,9.75,5h0C9.06,5,8.5,5.56,8.5,6.25V15l-2.12-0.71c-0.54-0.18-1.13-0.04-1.54,0.36 L4.5,15l3.56,3.56C8.34,18.84,8.72,19,9.12,19h5.27c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59L12.66,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turned_in_not\": {\n    \"name\": \"turned_in_not\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up_alt\": {\n    \"name\": \"swipe_up_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,5.83l1.59,1.59L16,6l-4-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-2.42-1.72-4.44-4-4.9V5.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,8.07C7.4,8.42,6,10.05,6,12c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4c0-1.95-1.4-3.58-3.25-3.93l0-3.2l1.19,1.19L13,5 l-3-3L7,5l1.06,1.06l1.19-1.19L9.25,8.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fact_check\": {\n    \"name\": \"fact_check\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M10,17H5v-2h5V17z M10,13H5v-2h5V13z M10,9H5V7h5V9z M14.82,15L12,12.16l1.41-1.41l1.41,1.42L17.99,9 l1.42,1.42L14.82,15z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V5 C17,4.45,16.55,4,16,4z M9,13H5v-1h4V13z M9,10.5H5v-1h4V10.5z M9,8H5V7h4V8z M11.97,11.77l-1.41-1.41l0.71-0.71l0.71,0.71 l2.12-2.12l0.71,0.71L11.97,11.77z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_added\": {\n    \"name\": \"bookmark_added\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,21l-7-3l-7,3V5c0-1.1,0.9-2,2-2l7,0c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5c0.34,0,0.68-0.03,1-0.1V21z M17.83,9 L15,6.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L17.83,9z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_full\": {\n    \"name\": \"hourglass_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"invert_colors\": {\n    \"name\": \"invert_colors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4.81L12,19c-3.31,0-6-2.63-6-5.87c0-1.56,0.62-3.03,1.75-4.14L12,4.81 M6.35,7.56L6.35,7.56C4.9,8.99,4,10.96,4,13.13 C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87c0-2.17-0.9-4.14-2.35-5.57l0,0L12,2L6.35,7.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.53,6.59L14.53,6.59L10,2L5.5,6.56c-1.08,1.11-1.75,2.62-1.75,4.28c0,3.4,2.8,6.16,6.25,6.16s6.25-2.76,6.25-6.16 C16.25,9.19,15.6,7.7,14.53,6.59z M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_media\": {\n    \"name\": \"perm_media\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm20-2h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_return\": {\n    \"name\": \"assignment_return\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"pets\": {\n    \"name\": \"pets\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_empty\": {\n    \"name\": \"hourglass_empty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"code_off\": {\n    \"name\": \"code_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10l-2.94,2.94L14,11.88L15.88,10l-3.94-3.94L13,5L18,10z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99l3.07,3.07L2,10 l5,5l1.06-1.06L4.12,10L6,8.12L16.01,18.13z\\\"></path>\"\n      }\n    }\n  },\n  \"aspect_ratio\": {\n    \"name\": \"aspect_ratio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"view_list\": {\n    \"name\": \"view_list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,14h4v-4H3V14z M3,19h4v-4H3V19z M3,9h4V5H3V9z M8,14h13v-4H8V14z M8,19h13v-4H8V19z M8,5v4h13V5H8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,12.33V15H3v-2.67H6z M6,8.67H3v2.67h3V8.67z M6,5H3v2.67h3V5z M7,8.67v2.67h10V8.67H7z M7,15h10v-2.67H7V15z M17,7.67V5 H7v2.67H17z\\\"></path>\"\n      }\n    }\n  },\n  \"star_rate\": {\n    \"name\": \"star_rate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><polygon points=\\\"14.43,10 12,2 9.57,10 2,10 8.18,14.41 5.83,22 12,17.31 18.18,22 15.83,14.41 22,10\\\"></polygon></g>\"\n      },\n      \"18\": {\n        \"width\": 18,\n        \"path\": \"<path d=\\\"M9 11.3l3.71 2.7-1.42-4.36L15 7h-4.55L9 2.5 7.55 7H3l3.71 2.64L5.29 14z\\\"></path><path d=\\\"M0 0h18v18H0z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"announcement\": {\n    \"name\": \"announcement\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_module\": {\n    \"name\": \"view_module\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.67,5v6.5H9.33V5H14.67z M15.67,11.5H21V5h-5.33V11.5z M14.67,19v-6.5H9.33V19H14.67z M15.67,12.5V19H21v-6.5H15.67z M8.33,12.5H3V19h5.33V12.5z M8.33,11.5V5H3v6.5H8.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,15v-4.5h4V15H8z M13,9.5h4V5h-4V9.5z M8,5v4.5h4V5H8z M7,9.5V5H3v4.5H7z M13,10.5V15h4v-4.5H13z M7,10.5H3V15h4V10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_border\": {\n    \"name\": \"bookmark_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_carousel\": {\n    \"name\": \"view_carousel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,7h4v10H2V7z M7,19h10V5H7V19z M18,7h4v10h-4V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2,6.5h3v7H2V6.5z M15,6.5v7h3v-7H15z M6,5h8v10H6V5z\\\"></path>\"\n      }\n    }\n  },\n  \"trending_down\": {\n    \"name\": \"trending_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_land\": {\n    \"name\": \"flight_land\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M2.5,19h19v2h-19V19z M19.34,15.85c0.8,0.21,1.62-0.26,1.84-1.06c0.21-0.8-0.26-1.62-1.06-1.84l-5.31-1.42l-2.76-9.02 L10.12,2v8.28L5.15,8.95L4.22,6.63L2.77,6.24v5.17L19.34,15.85z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"add_to_drive\": {\n    \"name\": \"add_to_drive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,21v-3h3v-2h-3v-3h-2v3h-3v2h3v3H20z M15.03,21.5H5.66c-0.72,0-1.38-0.38-1.73-1L1.57,16.4c-0.36-0.62-0.35-1.38,0.01-2 L7.92,3.49C8.28,2.88,8.94,2.5,9.65,2.5h4.7c0.71,0,1.37,0.38,1.73,0.99l4.48,7.71C20.06,11.07,19.54,11,19,11 c-0.28,0-0.56,0.02-0.84,0.06L14.35,4.5h-4.7L3.31,15.41l2.35,4.09h7.89C13.9,20.27,14.4,20.95,15.03,21.5z M13.34,15 C13.12,15.63,13,16.3,13,17H7.25l-0.73-1.27l4.58-7.98h1.8l2.53,4.42c-0.56,0.42-1.05,0.93-1.44,1.51l-2-3.49L9.25,15H13.34z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.17,17.5H4.95c-0.54,0-1.03-0.29-1.3-0.75l-1.9-3.31c-0.27-0.46-0.27-1.04,0-1.5L6.8,3.25C7.07,2.78,7.57,2.5,8.1,2.5 h3.8c0.53,0,1.03,0.28,1.3,0.75l3.69,6.34C16.6,9.53,16.3,9.5,16,9.5c-0.29,0-0.58,0.03-0.85,0.08L11.9,4H8.1l-5.05,8.69L4.95,16 h7.02C12.26,16.59,12.66,17.09,13.17,17.5z M19,13.25h-2.25V11h-1.5v2.25H13v1.5h2.25V17h1.5v-2.25H19V13.25z M7.69,12.45L10,8.42 l2.01,3.5c0.25-0.49,0.59-0.92,1-1.28l-2.29-4H9.29l-3.61,6.3l0.57,1h5.25c0.01-0.53,0.1-1.03,0.28-1.5H7.69z\\\"></path>\"\n      }\n    }\n  },\n  \"autorenew\": {\n    \"name\": \"autorenew\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\\\"></path>\"\n      }\n    }\n  },\n  \"settings\": {\n    \"name\": \"settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\"\n      }\n    }\n  },\n  \"translate\": {\n    \"name\": \"translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z\\\"></path>\"\n      }\n    }\n  },\n  \"schedule_send\": {\n    \"name\": \"schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 12.5H15v4l3 2 .75-1.23-2.25-1.52V12.5zM16 9L2 3v7l9 2-9 2v7l7.27-3.11C10.09 20.83 12.79 23 16 23c3.86 0 7-3.14 7-7s-3.14-7-7-7zm0 12c-2.75 0-4.98-2.22-5-4.97v-.07c.02-2.74 2.25-4.97 5-4.97 2.76 0 5 2.24 5 5S18.76 21 16 21z\\\"></path>\"\n      }\n    }\n  },\n  \"outgoing_mail\": {\n    \"name\": \"outgoing_mail\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.5,11c0.17,0,0.34,0.01,0.5,0.03V6.87C19,5.84,18.16,5,17.13,5H3.87C2.84,5,2,5.84,2,6.87v10.26 C2,18.16,2.84,19,3.87,19h9.73C13.22,18.25,13,17.4,13,16.5C13,13.46,15.46,11,18.5,11z M10.4,13L4,9.19V7h0.23l6.18,3.68L16.74,7 H17v2.16L10.4,13z\\\"></path><polygon points=\\\"19,13 17.59,14.41 19.17,16 15,16 15,18 19.17,18 17.59,19.59 19,21 23,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10.5c0.73,0,1.41,0.21,2,0.55V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h7.3 c-0.19-0.46-0.3-0.97-0.3-1.5C11,12.29,12.79,10.5,15,10.5z M4,6.18V5l6,3.75L16,5v1.18l-6,3.75L4,6.18z\\\"></path><polygon points=\\\"15.17,11.67 14.46,12.38 16.09,14 12,14 12,15 16.09,15 14.46,16.62 15.17,17.33 18,14.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"event_repeat\": {\n    \"name\": \"event_repeat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.9,4,3,4.9,3,6v14c0,1.1,0.9,2,2,2h7v-2H5V10h14v2H21z M15.64,20 c0.43,1.45,1.77,2.5,3.36,2.5c1.93,0,3.5-1.57,3.5-3.5s-1.57-3.5-3.5-3.5c-0.95,0-1.82,0.38-2.45,1l1.45,0V18h-4v-4h1.5l0,1.43 C16.4,14.55,17.64,14,19,14c2.76,0,5,2.24,5,5s-2.24,5-5,5c-2.42,0-4.44-1.72-4.9-4L15.64,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,10.5v-5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h6v-1.5h-6V9 h11v1.5H17z M12,12h1l0,1.35c0.73-0.83,1.81-1.35,3-1.35c2.21,0,4,1.79,4,4c0,2.21-1.79,4-4,4c-2.04,0-3.72-1.53-3.97-3.5l1.01,0 C13.28,17.92,14.51,19,16,19c1.66,0,3-1.34,3-3s-1.34-3-3-3c-0.89,0-1.69,0.39-2.24,1L15,14v1h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"donut_small\": {\n    \"name\": \"donut_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9.16V2c-5 .5-9 4.79-9 10s4 9.5 9 10v-7.16c-1-.41-2-1.52-2-2.84s1-2.43 2-2.84zM14.86 11H22c-.48-4.75-4-8.53-9-9v7.16c1 .3 1.52.98 1.86 1.84zM13 14.84V22c5-.47 8.52-4.25 9-9h-7.14c-.34.86-.86 1.54-1.86 1.84z\\\"></path>\"\n      }\n    }\n  },\n  \"pending\": {\n    \"name\": \"pending\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M7,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6.5,11c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,10.55,7.05,11,6.5,11z M10,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11,10.55,10.55,11,10,11z M13.5,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.5,10.55,14.05,11,13.5,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"description\": {\n    \"name\": \"description\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z\\\"></path>\"\n      }\n    }\n  },\n  \"card_travel\": {\n    \"name\": \"card_travel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down_off_alt\": {\n    \"name\": \"thumb_down_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.89 18.28l.57-2.89c.12-.59-.04-1.2-.42-1.66-.38-.46-.94-.73-1.54-.73H4v-1.08L6.57 6h8.09c.18 0 .34.16.34.34v7.84l-4.11 4.1M10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22zm10-7h2V4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_contact_calendar\": {\n    \"name\": \"perm_contact_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"try\": {\n    \"name\": \"try\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M13.57,11.57L12,15l-1.57-3.43L7,10l3.43-1.57 L12,5l1.57,3.43L17,10L13.57,11.57z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_task\": {\n    \"name\": \"add_task\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z\\\"></path>\"\n      }\n    }\n  },\n  \"private_connectivity\": {\n    \"name\": \"private_connectivity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.93,11c-0.49-3.39-3.4-6-6.93-6s-6.44,2.61-6.93,6H2v2h3.07c0.49,3.39,3.4,6,6.93,6s6.44-2.61,6.93-6H22v-2H18.93z M15,14.5c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1v-1c0-1.21,1.08-2.18,2.34-1.97C13.32,7.69,14,8.61,14,9.61 v0.89c0.55,0,1,0.45,1,1V14.5z M12.75,13c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 S12.75,12.59,12.75,13z M13,9.5v1h-2v-1c0-0.55,0.45-1,1-1S13,8.95,13,9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.45,9.25C15.08,6.57,12.78,4.5,10,4.5S4.92,6.57,4.55,9.25H2v1.5h2.55C4.92,13.43,7.22,15.5,10,15.5s5.08-2.07,5.45-4.75 H18v-1.5H15.45z M12.5,12c0,0.28-0.22,0.5-0.5,0.5H8c-0.28,0-0.5-0.22-0.5-0.5V9c0-0.28,0.22-0.5,0.5-0.5h0.5V8 c0-0.82,0.67-1.5,1.5-1.5s1.5,0.68,1.5,1.5v0.5H12c0.28,0,0.5,0.22,0.5,0.5V12z M10.75,8v0.5h-1.5V8c0-0.41,0.34-0.75,0.75-0.75 S10.75,7.59,10.75,8z M9.4,10.5c0-0.33,0.27-0.6,0.6-0.6s0.6,0.27,0.6,0.6c0,0.33-0.27,0.6-0.6,0.6S9.4,10.83,9.4,10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"visibility\": {\n    \"name\": \"visibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"https\": {\n    \"name\": \"https\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\\\"></path>\"\n      }\n    }\n  },\n  \"code\": {\n    \"name\": \"code\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_circle\": {\n    \"name\": \"account_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 4c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm0 14c-2.03 0-4.43-.82-6.14-2.88C7.55 15.8 9.68 15 12 15s4.45.8 6.14 2.12C16.43 19.18 14.03 20 12 20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 3.5c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 11c-2.05 0-3.87-.95-5.07-2.44 1.45-.98 3.19-1.56 5.07-1.56s3.62.58 5.07 1.56c-1.2 1.49-3.02 2.44-5.07 2.44z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"delete_forever\": {\n    \"name\": \"delete_forever\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_circle_down\": {\n    \"name\": \"arrow_circle_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7h-1v3H7l3,3l3-3H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"loyalty\": {\n    \"name\": \"loyalty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_accounts\": {\n    \"name\": \"manage_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M10.67,13.02C10.45,13.01,10.23,13,10,13c-2.42,0-4.68,0.67-6.61,1.82C2.51,15.34,2,16.32,2,17.35V20h9.26 C10.47,18.87,10,17.49,10,16C10,14.93,10.25,13.93,10.67,13.02z\\\"></path><path d=\\\"M20.75,16c0-0.22-0.03-0.42-0.06-0.63l1.14-1.01l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L18,11h-2l-0.3,1.49 c-0.4,0.15-0.76,0.36-1.08,0.63l-1.45-0.49l-1,1.73l1.14,1.01c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-1.14,1.01 l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L16,21h2l0.3-1.49c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1.01 C20.72,16.42,20.75,16.22,20.75,16z M17,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S18.1,18,17,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_protected_setup\": {\n    \"name\": \"wifi_protected_setup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z\\\"></path></g><g><path d=\\\"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15,4H9v6l1.8-1.8c1.22,0.91,2.01,2.35,2.01,3.99c0,0.75-0.18,1.45-0.47,2.09c1.49-0.98,2.47-2.67,2.47-4.59 c0-1.52-0.62-2.89-1.61-3.89L15,4z\\\"></path></g><g><path d=\\\"M7.19,7.84c0-0.75,0.18-1.45,0.47-2.09c-1.49,0.98-2.47,2.67-2.47,4.59c0,1.52,0.62,2.89,1.61,3.89L5,16h6v-5.97 l-1.8,1.8C7.99,10.91,7.19,9.47,7.19,7.84z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"not_started\": {\n    \"name\": \"not_started\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M11,16H9V8h2V16z M12,16V8l5,4L12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M9,13H8V7h1V13z M10,13V7l4,3L10,13z\\\"></path>\"\n      }\n    }\n  },\n  \"join_inner\": {\n    \"name\": \"join_inner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><g><path d=\\\"M9.04,16.87C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5c0.36,0,0.71,0.05,1.04,0.13 c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C9.92,17.99,9.43,17.43,9.04,16.87z\\\"></path></g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M6.5,14c-2.21,0-4-1.79-4-4s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18 C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"highlight_alt\": {\n    \"name\": \"highlight_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5h-2V3h2v2zm-2 16h2v-2.59L19.59 21 21 19.59 18.41 17H21v-2h-6v6zm4-12h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 17h2v-2H3v2zm2 4v-2H3c0 1.1.9 2 2 2zM19 3v2h2c0-1.1-.9-2-2-2zm-8 2h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm0-8h2V3c-1.1 0-2 .9-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"rule\": {\n    \"name\": \"rule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"maximize\": {\n    \"name\": \"maximize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"payment\": {\n    \"name\": \"payment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_indicator\": {\n    \"name\": \"drag_indicator\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"event_seat\": {\n    \"name\": \"event_seat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M4,18v3h3v-3h10v3h3v-6H4V18z M19,10h3v3h-3V10z M2,10h3v3H2V10z M17,13H7V5c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"browse_gallery\": {\n    \"name\": \"browse_gallery\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9S13.97,3,9,3z M11.79,16.21L8,12.41V7h2v4.59l3.21,3.21L11.79,16.21z\\\"></path><path d=\\\"M17.99,3.52v2.16C20.36,6.8,22,9.21,22,12c0,2.79-1.64,5.2-4.01,6.32v2.16C21.48,19.24,24,15.91,24,12 C24,8.09,21.48,4.76,17.99,3.52z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,3.08V4.6c2.56,0.47,4.5,2.71,4.5,5.4s-1.94,4.93-4.5,5.4v1.52c3.39-0.49,6-3.39,6-6.92C20,6.47,17.39,3.57,14,3.08z\\\"></path><path d=\\\"M7,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C14,6.13,10.87,3,7,3z M9.08,12.83L6.25,10V6h1.5v3.38l2.39,2.39 L9.08,12.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"list\": {\n    \"name\": \"list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z\\\"></path>\"\n      }\n    }\n  },\n  \"output\": {\n    \"name\": \"output\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17,17 22,12 17,7 15.59,8.41 18.17,11 9,11 9,13 18.17,13 15.59,15.59\\\"></polygon><path d=\\\"M19,19H5V5h14v2h2V5c0-1.1-0.89-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.11,0,2-0.9,2-2v-2h-2V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14,14 18,10 14,6 12.94,7.06 15.13,9.25 8,9.25 8,10.75 15.13,10.75 12.94,12.94\\\"></polygon><path d=\\\"M15.5,15.5h-11v-11h11V6H17V4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"touch_app\": {\n    \"name\": \"touch_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M9,11.24V7.5C9,6.12,10.12,5,11.5,5S14,6.12,14,7.5v3.74c1.21-0.81,2-2.18,2-3.74C16,5.01,13.99,3,11.5,3S7,5.01,7,7.5 C7,9.06,7.79,10.43,9,11.24z M18.84,15.87l-4.54-2.26c-0.17-0.07-0.35-0.11-0.54-0.11H13v-6C13,6.67,12.33,6,11.5,6 S10,6.67,10,7.5v10.74c-3.6-0.76-3.54-0.75-3.67-0.75c-0.31,0-0.59,0.13-0.79,0.33l-0.79,0.8l4.94,4.94 C9.96,23.83,10.34,24,10.75,24h6.79c0.75,0,1.33-0.55,1.44-1.28l0.75-5.27c0.01-0.07,0.02-0.14,0.02-0.2 C19.75,16.63,19.37,16.09,18.84,15.87z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"donut_large\": {\n    \"name\": \"donut_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11,5.08V2C6,2.5,2,6.81,2,12s4,9.5,9,10v-3.08c-3-0.48-6-3.4-6-6.92S8,5.56,11,5.08z M18.97,11H22c-0.47-5-4-8.53-9-9 v3.08C16,5.51,18.54,8,18.97,11z M13,18.92V22c5-0.47,8.53-4,9-9h-3.03C18.54,16,16,18.49,13,18.92z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"troubleshoot\": {\n    \"name\": \"troubleshoot\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,20.59l-4.69-4.69C18.37,14.55,19,12.85,19,11c0-4.42-3.58-8-8-8c-4.08,0-7.44,3.05-7.93,7h2.02C5.57,7.17,8.03,5,11,5 c3.31,0,6,2.69,6,6s-2.69,6-6,6c-2.42,0-4.5-1.44-5.45-3.5H3.4C4.45,16.69,7.46,19,11,19c1.85,0,3.55-0.63,4.9-1.69L20.59,22 L22,20.59z\\\"></path><polygon points=\\\"8.43,9.69 9.65,15 11.29,15 12.55,11.22 13.5,13.5 15.5,13.5 15.5,12 14.5,12 13.25,9 11.71,9 10.59,12.37 9.35,7 7.7,7 6.45,11 1,11 1,12.5 7.55,12.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.01,16.94l-4.27-4.27C14.53,11.65,15,10.38,15,9c0-3.31-2.69-6-6-6C6.03,3,3.57,5.16,3.09,8h1.53 C5.08,6,6.86,4.5,9,4.5c2.48,0,4.5,2.02,4.5,4.5s-2.02,4.5-4.5,4.5c-1.76,0-3.27-1.02-4.01-2.5H3.35c0.82,2.33,3.04,4,5.65,4 c1.39,0,2.66-0.48,3.68-1.27L16.95,18L18.01,16.94z\\\"></path><polygon points=\\\"7,7.56 8.11,12 9.36,12 10.29,9.2 11.19,11 12.5,11 12.5,10 11.81,10 10.81,8 9.64,8 8.78,10.57 7.64,6 6.36,6 5.61,9 1,9 1,10 6.39,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"terminal\": {\n    \"name\": \"terminal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.11,4,20,4z M20,18H4V8h16V18z M18,17h-6v-2 h6V17z M7.5,17l-1.41-1.41L8.67,13l-2.59-2.59L7.5,9l4,4L7.5,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,14.5V7h13v7.5H3.5z M15,13.5h-5V12h5V13.5z M6.25,13.5l-1.06-1.06l1.69-1.69L5.19,9.06L6.25,8L9,10.75L6.25,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_bluetooth\": {\n    \"name\": \"settings_bluetooth\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_square\": {\n    \"name\": \"edit_square\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,17V9.93L13.93,3l0,0H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-8.93L14.07,17H7z\\\"></path><polygon points=\\\"9,15 13.24,15 20.44,7.8 16.2,3.56 9,10.76\\\"></polygon><path d=\\\"M22.91,2.49l-1.41-1.41c-0.78-0.78-2.05-0.78-2.83,0l-1.06,1.06l4.24,4.24l1.06-1.06C23.7,4.54,23.7,3.27,22.91,2.49z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.56,2.5L17.5,1.44c-0.59-0.59-1.54-0.59-2.12,0l-0.71,0.71l3.18,3.18l0.71-0.71C19.15,4.03,19.15,3.08,18.56,2.5z\\\"></path><polygon points=\\\"8,12 11.18,12 16.79,6.39 13.61,3.21 8,8.82\\\"></polygon><path d=\\\"M6.5,13.5V8.2L11.7,3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5V8.3l-5.2,5.2H6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"group_work\": {\n    \"name\": \"group_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_accounts\": {\n    \"name\": \"no_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.18,10.94c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6c-0.52,0-1,0.12-1.44,0.32L15.18,10.94z\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,15c-2.32,0-4.45,0.8-6.14,2.12 C4.7,15.73,4,13.95,4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2C13.17,15.05,12.59,15,12,15z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"offline_bolt\": {\n    \"name\": \"offline_bolt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z\\\"></path>\"\n      }\n    }\n  },\n  \"integration_instructions\": {\n    \"name\": \"integration_instructions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v14c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,14.17l-1.41,1.42L6,12 l3.59-3.59L11,9.83L8.83,12L11,14.17z M12,4.25c-0.41,0-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75s0.75,0.34,0.75,0.75 S12.41,4.25,12,4.25z M14.41,15.59L13,14.17L15.17,12L13,9.83l1.41-1.42L18,12L14.41,15.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"currency_exchange\": {\n    \"name\": \"currency_exchange\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67 C15.39,8.03,14.72,6.56,13,6.24V5h-2v1.26C8.52,6.82,8.51,9.12,8.51,9.22c0,2.27,2.25,2.91,3.35,3.31 c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75c0.63,2.19,2.28,2.78,2.9,2.96V19 h2v-1.24c0.4-0.09,2.9-0.59,2.9-3.22C15.9,13.15,15.29,11.93,12.89,11.1z M3,21H1v-6h6v2l-2.48,0c1.61,2.41,4.36,4,7.48,4 c4.97,0,9-4.03,9-9h2c0,6.08-4.92,11-11,11c-3.72,0-7.01-1.85-9-4.67L3,21z M1,12C1,5.92,5.92,1,12,1c3.72,0,7.01,1.85,9,4.67L21,3 h2v6h-6V7l2.48,0C17.87,4.59,15.12,3,12,3c-4.97,0-9,4.03-9,9H1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.06,12c0,2.06-1.96,2.46-2.37,2.53v0.98H9.31v-1.02c-0.58-0.14-1.88-0.61-2.37-2.33l1.3-0.53 c0.05,0.17,0.46,1.64,1.89,1.64c0.73,0,1.56-0.37,1.56-1.26c0-0.76-0.55-1.15-1.79-1.59c-0.86-0.31-2.63-0.81-2.63-2.6 c0-0.08,0.01-1.89,2.06-2.33V4.5h1.38v0.98c1.45,0.25,1.98,1.4,2.09,1.75l-1.24,0.53c-0.09-0.28-0.47-1.05-1.49-1.05 c-0.55,0-1.42,0.29-1.42,1.09c0,0.74,0.67,1.03,2.07,1.5C12.58,9.94,13.06,10.9,13.06,12z M6,14l0-1.5l-5,0l0,5l1.5,0l0-2.52 C4.11,17.4,6.87,19,10,19c4.97,0,9-4.03,9-9h-1.5c0,4.14-3.36,7.5-7.5,7.5c-2.67,0-5.02-1.4-6.35-3.5L6,14z M17.5,5.02 C15.89,2.6,13.13,1,10,1c-4.97,0-9,4.03-9,9h1.5c0-4.14,3.36-7.5,7.5-7.5c2.67,0,5.02,1.4,6.35,3.5L14,6v1.5h5v-5h-1.5L17.5,5.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm_add\": {\n    \"name\": \"alarm_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"restore\": {\n    \"name\": \"restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z\\\"></path>\"\n      }\n    }\n  },\n  \"search_off\": {\n    \"name\": \"search_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z\\\"></path><polygon points=\\\"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,11.29c0.62-0.77,1-1.73,1-2.79C13,6.01,10.99,4,8.5,4C6.19,4,4.3,5.75,4.05,8h1C5.29,6.31,6.74,5,8.5,5 C10.43,5,12,6.57,12,8.5S10.43,12,8.5,12c-0.17,0-0.34-0.03-0.5-0.05v1C8.17,12.97,8.33,13,8.5,13c1.06,0,2.02-0.38,2.79-1 l3.57,3.57l0.71-0.71L12,11.29z\\\"></path><polygon points=\\\"5.91,9.38 4.5,10.79 3.09,9.38 2.38,10.09 3.79,11.5 2.38,12.91 3.09,13.62 4.5,12.21 5.91,13.62 6.62,12.91 5.21,11.5 6.62,10.09\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"not_accessible\": {\n    \"name\": \"not_accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,11.05l-3.42-3.42c0.32-0.34,0.74-0.57,1.23-0.61c0.48-0.04,0.84,0.07,1.2,0.26c0.19,0.1,0.39,0.22,0.63,0.46l1.29,1.43 c0.98,1.08,2.53,1.85,4.07,1.83v2C17.25,12.99,15.29,12.12,14,11.05z M12,6c1.1,0,2-0.9,2-2s-0.9-2-2-2c-1.1,0-2,0.9-2,2 S10.9,6,12,6z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2h2.17l5.61,5.61l1.41-1.41L2.81,2.81z M10,20c-1.66,0-3-1.34-3-3 c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07 C12.42,19.16,11.31,20,10,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.95,14h1c-0.24,1.69-1.69,3-3.45,3C6.57,17,5,15.43,5,13.5c0-1.76,1.31-3.21,3-3.45v1c-1.14,0.23-2,1.24-2,2.45 C6,14.88,7.12,16,8.5,16C9.71,16,10.72,15.14,10.95,14z M8.5,4.5C8.5,5.33,9.17,6,10,6s1.5-0.67,1.5-1.5S10.83,3,10,3 S8.5,3.67,8.5,4.5z M11,9.59V8.96l0.47,0.43c0.17,0.16,0.35,0.3,0.53,0.43c0.77,0.57,1.68,0.89,2.66,0.89v-1 c-0.94,0-1.81-0.36-2.49-1.04L12,8.52l-1.15-1.05c0,0-0.49-0.47-0.85-0.47C9.57,7,9.21,7.28,9.07,7.66L11,9.59z M16.36,16.36 L3.64,3.64L2.93,4.34L9,10.41V12c0,0.55,0.45,1,1,1h1.59l4.07,4.07L16.36,16.36z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shopping_cart\": {\n    \"name\": \"shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_control_off\": {\n    \"name\": \"noise_control_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c1.44,0,2.79,0.38,3.95,1.05l1.45-1.45C15.85,2.59,13.99,2,12,2S8.15,2.59,6.59,3.59l1.45,1.45 C9.21,4.38,10.56,4,12,4z\\\"></path><path d=\\\"M20,12c0,1.44-0.38,2.79-1.05,3.95l1.45,1.45C21.41,15.85,22,13.99,22,12s-0.59-3.85-1.59-5.41l-1.45,1.45 C19.62,9.21,20,10.56,20,12z\\\"></path><path d=\\\"M12,20c-1.44,0-2.79-0.38-3.95-1.05l-1.45,1.45C8.15,21.41,10.01,22,12,22s3.85-0.59,5.41-1.59l-1.45-1.45 C14.79,19.62,13.44,20,12,20z\\\"></path><path d=\\\"M4,12c0-1.44,0.38-2.79,1.05-3.95L3.59,6.59C2.59,8.15,2,10.01,2,12s0.59,3.85,1.59,5.41l1.45-1.45 C4.38,14.79,4,13.44,4,12z\\\"></path><path d=\\\"M11.5,6C9.02,6,7,8.02,7,10.5c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82 C10.56,17.17,11.71,18,13,18c1.65,0,3-1.35,3-3h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61 l-1.36-1.36C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02C15.72,7.75,13.81,6,11.5,6z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M3.39,5.51C2.51,6.79,2,8.34,2,10s0.51,3.21,1.39,4.49l1.09-1.09C3.86,12.41,3.5,11.25,3.5,10s0.36-2.41,0.97-3.41 L3.39,5.51z\\\"></path><path d=\\\"M16.61,5.51l-1.09,1.09C16.14,7.59,16.5,8.75,16.5,10s-0.36,2.41-0.97,3.41l1.09,1.09C17.49,13.21,18,11.66,18,10 S17.49,6.79,16.61,5.51z\\\"></path><path d=\\\"M10,16.5c-1.25,0-2.41-0.36-3.41-0.97l-1.09,1.09C6.79,17.49,8.34,18,10,18s3.21-0.51,4.49-1.39l-1.09-1.09 C12.41,16.14,11.25,16.5,10,16.5z\\\"></path><path d=\\\"M5.51,3.39l1.09,1.09C7.59,3.86,8.75,3.5,10,3.5s2.41,0.36,3.41,0.97l1.09-1.09C13.21,2.51,11.66,2,10,2 S6.79,2.51,5.51,3.39z\\\"></path><path d=\\\"M9.75,5C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62 C8.8,14.22,9.63,15,10.75,15c1.24,0,2.25-1.01,2.25-2.25h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58 c-0.22-0.9-0.77-1.7-1.69-2.44c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56 C13.08,6.29,11.56,5,9.75,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shop_2\": {\n    \"name\": \"shop_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,9H1v11c0,1.11,0.89,2,2,2h16v-2H3V9z\\\"></path><path d=\\\"M18,5V3c0-1.11-0.89-2-2-2h-4c-1.11,0-2,0.89-2,2v2H5v11c0,1.11,0.89,2,2,2h14c1.11,0,2-0.89,2-2V5H18z M12,3h4v2h-4V3z M12,15V8l5.5,3.5L12,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2.5,7H1v9.5C1,17.33,1.67,18,2.5,18H16v-1.5H2.5V7z\\\"></path><path d=\\\"M15,4V2.5C15,1.67,14.33,1,13.5,1h-4C8.67,1,8,1.67,8,2.5V4H4v9.5C4,14.33,4.67,15,5.5,15h12c0.83,0,1.5-0.67,1.5-1.5V4 H15z M9.5,2.5h4V4h-4V2.5z M10,12.5v-6l4.5,3L10,12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_home\": {\n    \"name\": \"add_home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,11c0.7,0,1.37,0.1,2,0.29V9l-8-6L4,9v12h7.68C11.25,20.09,11,19.08,11,18C11,14.13,14.13,11,18,11z\\\"></path></g><g><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15,9.5c0.34,0,0.68,0.04,1,0.1V7.5L10,3L4,7.5V17h5.88c-0.24-0.62-0.38-1.29-0.38-2C9.5,11.96,11.96,9.5,15,9.5z\\\"></path></g><g><path d=\\\"M15,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C19,12.79,17.21,11,15,11z M17,15.5h-1.5V17h-1v-1.5H13v-1h1.5 V13h1v1.5H17V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"task_alt\": {\n    \"name\": \"task_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M19.79,10.22C19.92,10.79,20,11.39,20,12 c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8c1.58,0,3.04,0.46,4.28,1.25l1.44-1.44C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12 c0,5.52,4.48,10,10,10s10-4.48,10-10c0-1.19-0.22-2.33-0.6-3.39L19.79,10.22z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_open\": {\n    \"name\": \"lock_open\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z\\\"></path>\"\n      }\n    }\n  },\n  \"density_large\": {\n    \"name\": \"density_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"date_range\": {\n    \"name\": \"date_range\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down\": {\n    \"name\": \"swipe_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.8,12.18c-0.2-0.86-0.3-1.76-0.3-2.68c0-2.84,0.99-5.45,2.63-7.5L7.2,3.07C5.82,4.85,5,7.08,5,9.5 c0,0.88,0.11,1.74,0.32,2.56l1.62-1.62L8,11.5L4.5,15L1,11.5l1.06-1.06L3.8,12.18z M13.85,11.62l-2.68-5.37 c-0.37-0.74-1.27-1.04-2.01-0.67C8.41,5.96,8.11,6.86,8.48,7.6l4.81,9.6L10.05,18c-0.33,0.09-0.59,0.33-0.7,0.66L9,19.78l6.19,2.25 c0.5,0.17,1.28,0.02,1.75-0.22l5.51-2.75c0.89-0.45,1.32-1.48,1-2.42l-1.43-4.27c-0.27-0.82-1.04-1.37-1.9-1.37h-4.56 c-0.31,0-0.62,0.07-0.89,0.21L13.85,11.62\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.4,10.51l1.54-1.54l0.71,0.71L3.83,12.5L1,9.67l0.71-0.71l1.69,1.69C3.14,9.82,3,8.93,3,8c0-2.31,0.87-4.41,2.29-6 L6,2.71C4.75,4.12,4,5.97,4,8C4,8.88,4.14,9.72,4.4,10.51z M14.02,8.84L12.5,9.52l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0 C8.29,4.82,8.01,5.56,8.29,6.19l3.54,8L9.61,14.4c-0.57,0.05-1.05,0.42-1.26,0.95l-0.18,0.45l4.7,1.81 c0.37,0.14,0.78,0.13,1.15-0.03l4.82-2.13c0.67-0.3,1.03-1.04,0.84-1.75l-0.92-3.59C18.6,9.49,18.03,9.03,17.38,9L14.02,8.84z\\\"></path></g>\"\n      }\n    }\n  },\n  \"extension\": {\n    \"name\": \"extension\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z\\\"></path>\"\n      }\n    }\n  },\n  \"android\": {\n    \"name\": \"android\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><g><path d=\\\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g></g><g><path d=\\\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_remove\": {\n    \"name\": \"bookmark_remove\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,7h-6V5h6V7z M19,10.9c-0.32,0.07-0.66,0.1-1,0.1c-2.76,0-5-2.24-5-5c0-1.13,0.37-2.16,1-3L7,3C5.9,3,5,3.9,5,5v16l7-3 l7,3V10.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.75,4.25v1.5h4.5v-1.5H12.75z M11,5c0,2.21,1.79,4,4,4v8l-5-2l-5,2V4.5C5,3.67,5.67,3,6.5,3l5.04,0 C11.19,3.59,11,4.27,11,5z\\\"></path>\"\n      }\n    }\n  },\n  \"open_with\": {\n    \"name\": \"open_with\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_data_setting\": {\n    \"name\": \"perm_data_setting\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_sidebar\": {\n    \"name\": \"view_sidebar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,20H2V4h14V20z M18,8h4V4h-4V8z M18,20h4v-4h-4V20z M18,14h4v-4h-4V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,7.33h-3V4h3V7.33z M17,12.67h-3V16h3V12.67z M17,8.33h-3v3.33h3V8.33z M13,4H3v12h10V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"article\": {\n    \"name\": \"article\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_document\": {\n    \"name\": \"edit_document\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"14,19.88 14,22 16.12,22 21.29,16.83 19.17,14.71\\\"></polygon></g><g><path d=\\\"M20,8l-6-6H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H12v-2.95l8-8V8z M13,9V3.5L18.5,9H13z\\\"></path></g><g><path d=\\\"M22.71,14L22,13.29c-0.39-0.39-1.02-0.39-1.41,0L19.88,14L22,16.12l0.71-0.71C23.1,15.02,23.1,14.39,22.71,14z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"11.5,16.23 11.5,18 13.27,18 17.44,13.83 15.67,12.06\\\"></polygon></g><g><path d=\\\"M16,6l-4-4H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18H10v-2.39l6-6V6z M11,7V3l4,4H11z\\\"></path></g><g><path d=\\\"M18.85,11.71l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.71,0.71l1.77,1.77l0.71-0.71C19.05,12.22,19.05,11.9,18.85,11.71z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"label\": {\n    \"name\": \"label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16z\\\"></path>\"\n      }\n    }\n  },\n  \"important_devices\": {\n    \"name\": \"important_devices\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4c0-1.11-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"fingerprint\": {\n    \"name\": \"fingerprint\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z\\\"></path>\"\n      }\n    }\n  },\n  \"label_important_outline\": {\n    \"name\": \"label_important_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 19H3l4.5-7L3 5h12c.65 0 1.26.31 1.63.84L21 12l-4.37 6.16c-.37.52-.98.84-1.63.84zm-8.5-2H15l3.5-5L15 7H6.5l3.5 5-3.5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_up_off_alt\": {\n    \"name\": \"thumb_up_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.11 5.72l-.57 2.89c-.12.59.04 1.2.42 1.66.38.46.94.73 1.54.73H20v1.08L17.43 18H9.34c-.18 0-.34-.16-.34-.34V9.82l4.11-4.1M14 2L7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.83C7 18.95 8.05 20 9.34 20h8.1c.71 0 1.36-.37 1.72-.97l2.67-6.15c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2zM4 9H2v11h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"logout\": {\n    \"name\": \"logout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z\\\"></path>\"\n      }\n    }\n  },\n  \"work_outline\": {\n    \"name\": \"work_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"unpublished\": {\n    \"name\": \"unpublished\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66 l2.27,2.27L21.19,21.19z M10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18l1.41,1.41L10.59,16.6z M13.59,10.76l-7.1-7.1 C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-5.34-5.34l2.65-2.65l-1.41-1.41L13.59,10.76z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors_off\": {\n    \"name\": \"sensors_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.14,10.96C8.05,11.29,8,11.64,8,12c0,1.1,0.45,2.1,1.17,2.83l-1.42,1.42C6.67,15.16,6,13.66,6,12 c0-0.93,0.21-1.8,0.58-2.59L5.11,7.94C4.4,9.13,4,10.52,4,12c0,2.21,0.9,4.21,2.35,5.65l-1.42,1.42C3.12,17.26,2,14.76,2,12 c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L8.14,10.96z M17.42,14.59C17.79,13.8,18,12.93,18,12 c0-1.66-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12c0,0.36-0.05,0.71-0.14,1.04L17.42,14.59z M20,12 c0,1.48-0.4,2.87-1.11,4.06l1.45,1.45C21.39,15.93,22,14.04,22,12c0-2.76-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.71,8.84C6.58,9.2,6.5,9.59,6.5,10c0,0.96,0.39,1.84,1.03,2.47l-1.06,1.06C5.56,12.63,5,11.38,5,10 c0-0.83,0.22-1.61,0.58-2.3L4.47,6.59C3.86,7.59,3.5,8.75,3.5,10c0,1.79,0.73,3.42,1.91,4.59l-1.06,1.06C2.9,14.21,2,12.21,2,10 c0-1.67,0.51-3.21,1.38-4.5L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L6.71,8.84z M14.59,5.41l1.06-1.06C17.1,5.79,18,7.79,18,10 c0,1.67-0.51,3.22-1.38,4.5l-1.09-1.09c0.61-0.99,0.97-2.16,0.97-3.41C16.5,8.21,15.77,6.58,14.59,5.41z M12.47,7.53l1.06-1.06 C14.44,7.37,15,8.62,15,10c0,0.83-0.2,1.62-0.57,2.31l-1.14-1.14c0.13-0.37,0.2-0.76,0.2-1.18C13.5,9.04,13.11,8.16,12.47,7.53z\\\"></path>\"\n      }\n    }\n  },\n  \"send_and_archive\": {\n    \"name\": \"send_and_archive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 10h-3L2 3v7l9 2-9 2v7l8-3.5V21c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 11h-9v-9h9v9zm-4.5-1L13 16h2v-3h3v3h2l-3.5 4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<path d=\\\"M0 0h20v20H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-3.5L1 2v6l8 2-8 2v6l7-3v3c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10h-8v-8h8v8zm-4-1l-3-3.5h2V11h2v2.5h2L14 17z\\\"></path>\"\n      }\n    }\n  },\n  \"network_ping\": {\n    \"name\": \"network_ping\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15-5.15C18.91,10.95,19.2,11,19.5,11c1.38,0,2.5-1.12,2.5-2.5 S20.88,6,19.5,6S17,7.12,17,8.5c0,0.35,0.07,0.67,0.2,0.97L12,14.67z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4,13l0,1.5h12V13h-5l4.18-4.18C15.43,8.94,15.71,9,16,9c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.26,0.05,0.51,0.14,0.74L10,11.88L3.06,4.94L2,6l7,7H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_as_unread\": {\n    \"name\": \"mark_as_unread\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.83 7h-2.6L10.5 4 4 7.4V17c-1.1 0-2-.9-2-2V7.17c0-.53.32-1.09.8-1.34L10.5 2l7.54 3.83c.43.23.73.7.79 1.17zM20 8H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h13c1.1 0 2-.9 2-2v-9c0-1.1-.9-2-2-2zm0 3.67L13.5 15 7 11.67V10l6.5 3.33L20 10v1.67z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<path d=\\\"M0 0h20v20H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 6h-12C4.67 6 4 6.67 4 7.5v9c0 .83.67 1.5 1.5 1.5h12c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5zM17 9.67L11.5 13 6 9.67V8l5.5 3.33L17 8v1.67zM17 5h-3L9 3 3 5.4V15h-.5c-.83 0-1.5-.67-1.5-1.5V5.17c0-.53.3-1.09.76-1.34L9 1l7.24 2.83c.41.23.7.7.76 1.17z\\\"></path>\"\n      }\n    }\n  },\n  \"bug_report\": {\n    \"name\": \"bug_report\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle_outline\": {\n    \"name\": \"check_circle_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.59 7.58L10 14.17l-3.59-3.58L5 12l5 5 8-8zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"savings\": {\n    \"name\": \"savings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.83,7.5l-2.27-2.27c0.07-0.42,0.18-0.81,0.32-1.15C17.96,3.9,18,3.71,18,3.5C18,2.67,17.33,2,16.5,2 c-1.64,0-3.09,0.79-4,2l-5,0C4.46,4,2,6.46,2,9.5S4.5,21,4.5,21l5.5,0v-2h2v2l5.5,0l1.68-5.59L22,14.47V7.5H19.83z M13,9H8V7h5V9z M16,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,10.55,16.55,11,16,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,6.5l-2-2C14.5,4.14,15,3.52,15,3c0-0.55-0.45-1-1-1c-2.17,0-3.35,1.5-3.35,1.5H6.5C4.05,3.5,2,5.47,2,8 c0,2.33,2,9,2,9h4.5v-1.5H10V17h4.5l1.25-4.5L18,12V6.5H16.5z M11,7.5H7V6h4V7.5z M13.25,9c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25C14,8.66,13.66,9,13.25,9z\\\"></path>\"\n      }\n    }\n  },\n  \"commit\": {\n    \"name\": \"commit\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.9,11L16.9,11c-0.46-2.28-2.48-4-4.9-4s-4.44,1.72-4.9,4h0H2v2h5.1h0c0.46,2.28,2.48,4,4.9,4s4.44-1.72,4.9-4h0H22v-2 H16.9z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,15,12,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.93,9.25C13.58,7.4,11.95,6,10,6S6.42,7.4,6.07,9.25H2v1.5h4.07C6.42,12.6,8.05,14,10,14s3.58-1.4,3.93-3.25H18v-1.5 H13.93z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history\": {\n    \"name\": \"history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z\\\"></path>\"\n      }\n    }\n  },\n  \"assured_workload\": {\n    \"name\": \"assured_workload\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"10\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><polygon points=\\\"22,6 12,1 2,6 2,8 22,8\\\"></polygon><path d=\\\"M2,19v2h12.4c-0.21-0.64-0.32-1.31-0.36-2H2z\\\"></path><polygon points=\\\"19,12.26 19,10 17,10 17,13.26\\\"></polygon><path d=\\\"M20,14l-4,2v2.55c0,2.52,1.71,4.88,4,5.45c2.29-0.57,4-2.93,4-5.45V16L20,14z M19.28,21l-2.03-2.03l1.06-1.06l0.97,0.97 l2.41-2.38l1.06,1.06L19.28,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><polygon points=\\\"18,5 10,1 2,5 2,7 18,7\\\"></polygon><path d=\\\"M12.5,15.5H2V17h10.66C12.61,16.78,12.5,16.29,12.5,15.5z\\\"></path><polygon points=\\\"16,10.82 16,8 14.5,8 14.5,11.57\\\"></polygon><path d=\\\"M17,12l-3,1.5v2.14c0,2.02,1.28,3.91,3,4.36c1.72-0.46,3-2.35,3-4.36V13.5L17,12z M16.43,17.5l-1.55-1.54l0.71-0.71 l0.82,0.81L18.39,14l0.73,0.68L16.43,17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_identity\": {\n    \"name\": \"perm_identity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"install_desktop\": {\n    \"name\": \"install_desktop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,17H4V5h8V3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2v-3h-2V17z\\\"></path><polygon points=\\\"17,14 22,9 20.59,7.59 18,10.17 18,3 16,3 16,10.17 13.41,7.59 12,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,13.5h-13v-9H11V3H3.5C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5V11h-1.5 V13.5z\\\"></path><polygon points=\\\"14.48,11 18,7.48 16.94,6.42 15.25,8.11 15.25,3 13.75,3 13.75,8.14 12.06,6.45 11,7.52\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"production_quantity_limits\": {\n    \"name\": \"production_quantity_limits\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10h-2V8h2V10z M13,6h-2V1h2V6z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18 c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7 H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_basket\": {\n    \"name\": \"shopping_basket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.21 9l-4.38-6.56c-.19-.28-.51-.42-.83-.42-.32 0-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1h-4.79zM9 9l3-4.4L15 9H9zm3 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"space_dashboard\": {\n    \"name\": \"space_dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,21H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h6V21z M13,21h6c1.1,0,2-0.9,2-2v-7h-8V21z M21,10V5c0-1.1-0.9-2-2-2h-6v7H21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,10H17v5.5c0,0.83-0.67,1.5-1.5,1.5h-4.75V10z M4.5,3C3.67,3,3,3.67,3,4.5v10.94C3,16.3,3.7,17,4.56,17h4.69V3H4.5z M17,8.5v-4C17,3.67,16.33,3,15.5,3h-4.75v5.5H17z\\\"></path>\"\n      }\n    }\n  },\n  \"app_blocking\": {\n    \"name\": \"app_blocking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4c0-1.38 1.12-2.5 2.5-2.5.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15 0 1.38-1.12 2.5-2.5 2.5zM17 18H7V6h10v1h2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel_schedule_send\": {\n    \"name\": \"cancel_schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07-3.46C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z\\\"></path><polygon points=\\\"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M2,12.31l6.91-1.48c-0.38,0.6-0.65,1.27-0.79,1.99l-0.51,0.2L2,15.47V12.31z M2,7.69V4.53l9.35,4.09 c-0.44,0.22-0.86,0.49-1.23,0.81L2,7.69z\\\"></path><path d=\\\"M3,6.06l3.7,1.62L3,6.88V6.06 M6.7,12.32L3,13.94v-0.83L6.7,12.32 M1,3v5.5L8,10l-7,1.5V17l7-3.06c0,0.02,0,0.04,0,0.06 c0,3.31,2.69,6,6,6s6-2.69,6-6s-2.69-6-6-6c-0.43,0-0.85,0.05-1.26,0.14L1,3L1,3z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 S16.76,19,14,19L14,19z\\\"></path></g><polygon points=\\\"15.41,11.88 14,13.29 12.59,11.88 11.88,12.59 13.29,14 11.88,15.41 12.59,16.12 14,14.71 15.41,16.12 16.12,15.41 14.71,14 16.12,12.59\\\"></polygon>\"\n      }\n    }\n  },\n  \"assignment_returned\": {\n    \"name\": \"assignment_returned\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_right_alt\": {\n    \"name\": \"arrow_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.01 11H4v2h12.01v3L20 12l-3.99-4z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket_launch\": {\n    \"name\": \"rocket_launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.19,6.35c-2.04,2.29-3.44,5.58-3.57,5.89L2,10.69l4.05-4.05c0.47-0.47,1.15-0.68,1.81-0.55L9.19,6.35L9.19,6.35z M11.17,17c0,0,3.74-1.55,5.89-3.7c5.4-5.4,4.5-9.62,4.21-10.57c-0.95-0.3-5.17-1.19-10.57,4.21C8.55,9.09,7,12.83,7,12.83 L11.17,17z M17.65,14.81c-2.29,2.04-5.58,3.44-5.89,3.57L13.31,22l4.05-4.05c0.47-0.47,0.68-1.15,0.55-1.81L17.65,14.81 L17.65,14.81z M9,18c0,0.83-0.34,1.58-0.88,2.12C6.94,21.3,2,22,2,22s0.7-4.94,1.88-6.12C4.42,15.34,5.17,15,6,15 C7.66,15,9,16.34,9,18z M13,9c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S13,10.1,13,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.47,10.67c0.1-0.24,1.26-3,3.02-4.76c3.86-3.86,7.08-3.56,7.95-3.36c0.2,0.88,0.5,4.09-3.36,7.95 c-1.76,1.76-4.52,2.92-4.76,3.02L6.47,10.67z M12.5,9C13.32,9,14,8.33,14,7.5S13.33,6,12.5,6C11.68,6,11,6.67,11,7.5 S11.67,9,12.5,9z M7.04,5.29c-0.46-0.06-0.92,0.1-1.25,0.43L2.25,9.27l3.28,1.09c0.48-1.18,1.53-3.29,3-4.88L7.04,5.29z M14.71,12.96c0.06,0.46-0.1,0.92-0.43,1.25l-3.55,3.55l-1.09-3.28c1.18-0.48,3.29-1.53,4.88-3L14.71,12.96z M5.25,12.5 c-0.62,0-1.18,0.25-1.59,0.66C2.44,14.38,2,18,2,18s3.62-0.44,4.84-1.66c0.41-0.41,0.66-0.97,0.66-1.59 C7.5,13.51,6.49,12.5,5.25,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"query_builder\": {\n    \"name\": \"query_builder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><path d=\\\"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"new_label\": {\n    \"name\": \"new_label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,12l-4.37,6.16C16.26,18.68,15.65,19,15,19h-3l0-6H9v-3H3V7c0-1.1,0.9-2,2-2h10c0.65,0,1.26,0.31,1.63,0.84L21,12z M10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,10l-3.55,4.44C13.17,14.79,12.73,15,12.28,15H10.5v-4.5h-2v-2H4v-2C4,5.67,4.67,5,5.5,5h6.78 c0.46,0,0.89,0.21,1.17,0.56L17,10z M9,12H7v-2H5.5v2h-2v1.5h2v2H7v-2h2V12z\\\"></path>\"\n      }\n    }\n  },\n  \"exit_to_app\": {\n    \"name\": \"exit_to_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_late\": {\n    \"name\": \"assignment_late\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down_alt\": {\n    \"name\": \"swipe_down_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,13.9c2.28-0.46,4-2.48,4-4.9c0-2.76-2.24-5-5-5S7,6.24,7,9c0,2.42,1.72,4.44,4,4.9v4.27l-1.59-1.59L8,18l4,4l4-4 l-1.41-1.41L13,18.17V13.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,11.93C12.6,11.58,14,9.95,14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,1.95,1.4,3.58,3.25,3.93l0,3.2l-1.19-1.19 L7,15l3,3l3-3l-1.06-1.06l-1.19,1.19L10.75,11.93z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_window\": {\n    \"name\": \"sensor_window\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2L18,2z M7,19h10v-6H7 V19z M10,10h4v1h3V5H7v6h3V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,4v12H5V4H15 M15,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V4C16,3.45,15.55,3,15,3L15,3z M6,10 v5h8v-5H6z M8.5,9V8h3v1H14V5H6v4H8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"foggy\": {\n    \"name\": \"foggy\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.92,7.02C17.45,4.18,14.97,2,12,2C9.82,2,7.83,3.18,6.78,5.06C4.09,5.41,2,7.74,2,10.5C2,13.53,4.47,16,7.5,16h10 c2.48,0,4.5-2.02,4.5-4.5C22,9.16,20.21,7.23,17.92,7.02z M18,17.01c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S17.45,17.01,18,17.01z M7,20.01c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S6.45,20.01,7,20.01z M6,17.01h9c0.55,0,1,0.45,1,1l0,0 c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1l0,0C5,17.46,5.45,17.01,6,17.01z M10,20.01h7c0.55,0,1,0.45,1,1l0,0c0,0.55-0.45,1-1,1h-7 c-0.55,0-1-0.45-1-1l0,0C9,20.46,9.45,20.01,10,20.01z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.44,5.76C14.09,3.63,12.23,2,10,2C8.36,2,6.87,2.88,6.09,4.3C4.07,4.57,2.5,6.3,2.5,8.37c0,2.27,1.85,4.12,4.12,4.12h7.5 c1.86,0,3.38-1.52,3.38-3.38C17.5,7.37,16.16,5.93,14.44,5.76z M14.5,14c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75S14.09,14,14.5,14z M6.25,16.5C6.66,16.5,7,16.84,7,17.25S6.66,18,6.25,18S5.5,17.67,5.5,17.25 S5.84,16.5,6.25,16.5z M4.75,14.75C4.75,14.34,5.09,14,5.5,14h6.75c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75H5.5 C5.09,15.5,4.75,15.17,4.75,14.75z M7.75,17.25c0-0.41,0.34-0.75,0.75-0.75h5.25c0.41,0,0.75,0.34,0.75,0.75S14.16,18,13.75,18H8.5 C8.09,18,7.75,17.67,7.75,17.25z\\\"></path>\"\n      }\n    }\n  },\n  \"energy_savings_leaf\": {\n    \"name\": \"energy_savings_leaf\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3c-4.8,0-9,3.86-9,9c0,2.12,0.74,4.07,1.97,5.61L3,19.59L4.41,21l1.97-1.97C7.93,20.26,9.88,21,12,21 c2.3,0,4.61-0.88,6.36-2.64C20.12,16.61,21,14.3,21,12l0-9L12,3z M15.83,12.26l-5.16,4.63c-0.16,0.15-0.41,0.14-0.56-0.01 c-0.14-0.14-0.16-0.36-0.04-0.52l2.44-3.33l-4.05-0.4c-0.44-0.04-0.63-0.59-0.3-0.89l5.16-4.63c0.16-0.15,0.41-0.14,0.56,0.01 c0.14,0.14,0.16,0.36,0.04,0.52l-2.44,3.33l4.05,0.4C15.98,11.41,16.16,11.96,15.83,12.26z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.73,0-7,3-7,7c0,1.66,0.58,3.19,1.55,4.39L3,15.94L4.06,17l1.55-1.55C6.81,16.42,8.34,17,10,17 c1.79,0,3.58-0.68,4.95-2.05C16.32,13.58,17,11.79,17,10l0-7L10,3z M12.84,10.3l-3.86,3.59c-0.16,0.15-0.4,0.14-0.55-0.01 c-0.14-0.14-0.15-0.37-0.03-0.52l2.02-2.58L7.49,10.6c-0.45-0.03-0.65-0.58-0.32-0.9l3.86-3.59c0.16-0.15,0.4-0.14,0.55,0.01 c0.14,0.14,0.15,0.37,0.03,0.52L9.58,9.22l2.93,0.18C12.97,9.43,13.17,9.99,12.84,10.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane\": {\n    \"name\": \"propane\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,6h-1V5c0-1.1-0.9-2-2-2h-4C8.9,3,8,3.9,8,5v1H7c-3.31,0-6,2.69-6,6s2.69,6,6,6v3h2v-3h6v3h2v-3c3.31,0,6-2.69,6-6 S20.31,6,17,6z M10,5h4v1h-4V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,5h-1V4c0-0.83-0.67-1.5-1.5-1.5h-3C7.67,2.5,7,3.17,7,4v1H6c-2.76,0-5,2.24-5,5s2.24,5,5,5v2h1.5v-2h5v2H14v-2 c2.76,0,5-2.24,5-5S16.76,5,14,5z M8.5,4h3v1h-3V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vertical_shades\": {\n    \"name\": \"vertical_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M10,19V5h4v14H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M8.5,4.5h3v11h-3V4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"curtains\": {\n    \"name\": \"curtains\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M8.19,12c2.04-1.35,3.5-3.94,3.76-7h0.09c0.26,3.06,1.72,5.65,3.76,7 c-2.04,1.35-3.5,3.94-3.76,7h-0.09C11.69,15.94,10.23,13.35,8.19,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M7.35,10C8.6,9.16,9.57,7.68,10,5.88c0.43,1.8,1.4,3.28,2.65,4.12 c-1.25,0.84-2.22,2.32-2.65,4.12C9.57,12.32,8.6,10.84,7.35,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"solar_power\": {\n    \"name\": \"solar_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"3.33,16 11,16 11,13 4,13\\\"></polygon><polygon points=\\\"13,16 20.67,16 20,13 13,13\\\"></polygon><polygon points=\\\"21.11,18 13,18 13,22 22,22\\\"></polygon><polygon points=\\\"2,22 11,22 11,18 2.89,18\\\"></polygon><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.2089 14.6085)\\\" width=\\\"2\\\" x=\\\"16.53\\\" y=\\\"6.06\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.448 6.7885)\\\" width=\\\"3\\\" x=\\\"4.97\\\" y=\\\"6.56\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"18\\\" y=\\\"2\\\"></rect><path d=\\\"M12,7c2.76,0,5-2.24,5-5H7C7,4.76,9.24,7,12,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"10.75,10 10.75,13.25 17.11,13.25 16.5,10\\\"></polygon><polygon points=\\\"2.89,13.25 9.25,13.25 9.25,10 3.5,10\\\"></polygon><polygon points=\\\"2,18 9.25,18 9.25,14.75 2.61,14.75\\\"></polygon><polygon points=\\\"17.39,14.75 10.75,14.75 10.75,18 18,18\\\"></polygon><rect height=\\\"2\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.3314 12.1139)\\\" width=\\\"1.5\\\" x=\\\"13.71\\\" y=\\\"5.46\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9423 5.8107)\\\" width=\\\"2\\\" x=\\\"4.54\\\" y=\\\"5.71\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"2.05\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"2.05\\\"></rect><path d=\\\"M10,6c2.21,0,4-1.79,4-4H6C6,4.21,7.79,6,10,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sunny\": {\n    \"name\": \"sunny\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,4V2c0-0.55,0.45-1,1-1s1,0.45,1,1v2c0,0.55-0.45,1-1,1S11,4.55,11,4z M18.36,7.05l1.41-1.42c0.39-0.39,0.39-1.02,0-1.41 c-0.39-0.39-1.02-0.39-1.41,0l-1.41,1.42c-0.39,0.39-0.39,1.02,0,1.41C17.34,7.44,17.97,7.44,18.36,7.05z M22,11h-2 c-0.55,0-1,0.45-1,1s0.45,1,1,1h2c0.55,0,1-0.45,1-1S22.55,11,22,11z M12,19c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2 C13,19.45,12.55,19,12,19z M5.64,7.05L4.22,5.64c-0.39-0.39-0.39-1.03,0-1.41s1.03-0.39,1.41,0l1.41,1.41 c0.39,0.39,0.39,1.03,0,1.41S6.02,7.44,5.64,7.05z M16.95,16.95c-0.39,0.39-0.39,1.03,0,1.41l1.41,1.41c0.39,0.39,1.03,0.39,1.41,0 c0.39-0.39,0.39-1.03,0-1.41l-1.41-1.41C17.98,16.56,17.34,16.56,16.95,16.95z M2,13h2c0.55,0,1-0.45,1-1s-0.45-1-1-1H2 c-0.55,0-1,0.45-1,1S1.45,13,2,13z M5.64,19.78l1.41-1.41c0.39-0.39,0.39-1.03,0-1.41s-1.03-0.39-1.41,0l-1.41,1.41 c-0.39,0.39-0.39,1.03,0,1.41C4.61,20.17,5.25,20.17,5.64,19.78z M12,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,6,12,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M1,10c0-0.41,0.34-0.75,0.75-0.75h1.5C3.66,9.25,4,9.59,4,10s-0.34,0.75-0.75,0.75h-1.5C1.34,10.75,1,10.41,1,10z M16.75,10.75h1.5c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75h-1.5C16.34,9.25,16,9.59,16,10S16.34,10.75,16.75,10.75z M9.25,1.75v1.5C9.25,3.66,9.59,4,10,4s0.75-0.34,0.75-0.75v-1.5C10.75,1.34,10.41,1,10,1S9.25,1.34,9.25,1.75z M9.25,16.75v1.5 C9.25,18.66,9.59,19,10,19s0.75-0.34,0.75-0.75v-1.5c0-0.41-0.34-0.75-0.75-0.75S9.25,16.34,9.25,16.75z M3.64,4.7L4.7,5.76 c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L4.7,3.64c-0.29-0.29-0.77-0.29-1.06,0S3.34,4.41,3.64,4.7z M14.24,15.3 l1.06,1.06c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0 C13.95,14.53,13.95,15.01,14.24,15.3z M15.3,3.64L14.24,4.7c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06 c0.29-0.29,0.29-0.77,0-1.06C16.07,3.34,15.59,3.34,15.3,3.64z M4.7,14.24L3.64,15.3c-0.29,0.29-0.29,0.77,0,1.06 c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06C5.47,13.95,4.99,13.95,4.7,14.24z M15,10c0,2.76-2.24,5-5,5 s-5-2.24-5-5s2.24-5,5-5S15,7.24,15,10z\\\"></path>\"\n      }\n    }\n  },\n  \"broadcast_on_home\": {\n    \"name\": \"broadcast_on_home\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,6c0-1.1-0.9-2-2-2H4v2h16v2.59c0.73,0.29,1.4,0.69,2,1.17V6z\\\"></path><path d=\\\"M8,9H3c-0.5,0-1,0.5-1,1v9c0,0.5,0.5,1,1,1h5c0.5,0,1-0.5,1-1v-9C9,9.5,8.5,9,8,9z M7,18H4v-7h3V18z\\\"></path><path d=\\\"M17.75,16.97c0.3-0.23,0.5-0.57,0.5-0.97c0-0.69-0.56-1.25-1.25-1.25s-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22 h1.5V16.97z\\\"></path><path d=\\\"M17,13.5c1.38,0,2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16c0-2.21-1.79-4-4-4 c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77C14.5,14.62,15.62,13.5,17,13.5z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,5.5C18,4.67,17.33,4,16.5,4H4v1.5h12.5v2.05c0.55,0.25,1.05,0.59,1.5,0.99V5.5z\\\"></path><path d=\\\"M6.5,7.5H3c-0.55,0-1,0.45-1,1V15c0,0.55,0.45,1,1,1h3.5c0.55,0,1-0.45,1-1V8.5C7.5,7.95,7.05,7.5,6.5,7.5z M6,14.5H3.5V9 H6V14.5z\\\"></path><path d=\\\"M14.5,13.85C14.79,13.67,15,13.37,15,13c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1V13.85z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,11c1.1,0,2,0.9,2,2c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22c0-1.66-1.34-3-3-3s-3,1.34-3,3 c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13C12,11.9,12.9,11,14,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane_tank\": {\n    \"name\": \"propane_tank\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,15v3c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4v-3H4z\\\"></path><path d=\\\"M20,13v-3c0-1.86-1.28-3.41-3-3.86V4c0-1.1-0.9-2-2-2H9C7.9,2,7,2.9,7,4v2.14c-1.72,0.45-3,2-3,3.86v3H20z M9,4h6v2h-2 c0-0.55-0.45-1-1-1s-1,0.45-1,1H9V4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,12.25V15c0,1.66,1.34,3,3,3h6c1.66,0,3-1.34,3-3v-2.75H4z\\\"></path><path d=\\\"M16,10.75V8c0-1.3-0.84-2.4-2-2.82V3.5C14,2.67,13.33,2,12.5,2h-5C6.67,2,6,2.67,6,3.5v1.68C4.84,5.6,4,6.7,4,8v2.75H16z M7.5,3.5h5V5h-1.75c0-0.41-0.34-0.75-0.75-0.75S9.25,4.59,9.25,5H7.5V3.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"vertical_shades_closed\": {\n    \"name\": \"vertical_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M13,5h1.5v14H13V5z M11,19H9.5V5H11V19z M6,5h1.5v14H6V5z M16.5,19V5H18v14H16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M10.75,4.5h1.12v11h-1.12V4.5z M9.25,15.5H8.12v-11h1.12V15.5z M5.5,4.5h1.12v11H5.5 V4.5z M13.38,15.5v-11h1.12v11H13.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nest_cam_wired_stand\": {\n    \"name\": \"nest_cam_wired_stand\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.83,1.01l-4.11,0.42C8.47,1.75,6,4.48,6,7.75s2.47,6,5.72,6.33l1.9,0.19l-0.56,0.85C12.71,15.04,12.36,15,12,15 c-2.76,0-5,2.24-5,5v2c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-2c0-1.67-0.83-3.15-2.09-4.06l0.97-1.45 C17.02,14.56,18,13.66,18,12.5V3C18,1.83,17,0.91,15.83,1.01z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.31,1.01L9.72,1.47C7.02,1.79,5,4.06,5,6.75c0,2.69,2.02,4.96,4.72,5.28l1.37,0.17l-0.57,0.85 C10.35,13.03,10.18,13,10,13c-2.21,0-4,1.79-4,4v1.5C6,18.78,6.22,19,6.5,19h7c0.28,0,0.5-0.22,0.5-0.5V17 c0-1.48-0.81-2.76-2.01-3.45l0.76-1.13l0.56,0.07c0.9,0.11,1.69-0.58,1.69-1.48V2.49C15,1.59,14.21,0.9,13.31,1.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"snowing\": {\n    \"name\": \"snowing\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6 12.75a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5zM4.75 6a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm12 8a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm0-8a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm-9 12a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm0-8a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm3 4a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm0-8a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm3 12a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm0-8a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5 10.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1-5c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm9 6c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-6c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm-6.75 9c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-6c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm2.25 3c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-6c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm2.25 9c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-6c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z\\\"></path></g>\"\n      }\n    }\n  },\n  \"blinds\": {\n    \"name\": \"blinds\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M16,9h2v2h-2V9z M14,11H6V9h8V11z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-6h8v1.82 c-0.45,0.32-0.75,0.84-0.75,1.43c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75c0-0.59-0.3-1.12-0.75-1.43V13h2v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M12.5,7.75h2v1.5h-2V7.75z M11,9.25H5.5v-1.5H11V9.25z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-4.75H11v1.53c-0.3,0.23-0.5,0.57-0.5,0.97c0,0.69,0.56,1.25,1.25,1.25S13,13.94,13,13.25 c0-0.4-0.2-0.75-0.5-0.97v-1.53h2v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_occupied\": {\n    \"name\": \"sensor_occupied\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,11c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,6.34,9,8S10.34,11,12,11z\\\"></path><path d=\\\"M12,12c-1.84,0-3.56,0.5-5.03,1.37C6.36,13.72,6,14.39,6,15.09V17h12v-1.91c0-0.7-0.36-1.36-0.97-1.72 C15.56,12.5,13.84,12,12,12z\\\"></path><path d=\\\"M21.23,8.15l1.85-0.77c-1.22-2.91-3.55-5.25-6.46-6.46l-0.77,1.85C18.27,3.79,20.21,5.73,21.23,8.15z\\\"></path><path d=\\\"M8.15,2.77L7.38,0.92C4.47,2.14,2.14,4.47,0.92,7.38l1.85,0.77C3.79,5.73,5.73,3.79,8.15,2.77z\\\"></path><path d=\\\"M2.77,15.85l-1.85,0.77c1.22,2.91,3.55,5.25,6.46,6.46l0.77-1.85C5.73,20.21,3.79,18.27,2.77,15.85z\\\"></path><path d=\\\"M15.85,21.23l0.77,1.85c2.91-1.22,5.25-3.55,6.46-6.46l-1.85-0.77C20.21,18.27,18.27,20.21,15.85,21.23z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.84,6.73l1.39-0.58c-1.01-2.43-2.96-4.37-5.38-5.38l-0.58,1.39C15.33,3.02,16.98,4.67,17.84,6.73z\\\"></path><path d=\\\"M13.27,17.84l0.58,1.39c2.43-1.01,4.37-2.96,5.38-5.38l-1.39-0.58C16.98,15.33,15.33,16.98,13.27,17.84z\\\"></path><path d=\\\"M2.16,13.27l-1.39,0.58c1.01,2.43,2.96,4.37,5.38,5.38l0.58-1.39C4.67,16.98,3.02,15.33,2.16,13.27z\\\"></path><path d=\\\"M6.73,2.16L6.15,0.77C3.72,1.78,1.78,3.72,0.77,6.15l1.39,0.58C3.02,4.67,4.67,3.02,6.73,2.16z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z\\\"></path><path d=\\\"M10,10c-1.53,0-2.96,0.42-4.2,1.14C5.3,11.44,5,11.99,5,12.57V14h10v-1.43c0-0.58-0.3-1.14-0.8-1.43 C12.96,10.42,11.53,10,10,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bolt\": {\n    \"name\": \"electric_bolt\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.69,2.21L4.33,11.49c-0.64,0.58-0.28,1.65,0.58,1.73L13,14l-4.85,6.76c-0.22,0.31-0.19,0.74,0.08,1.01h0 c0.3,0.3,0.77,0.31,1.08,0.02l10.36-9.28c0.64-0.58,0.28-1.65-0.58-1.73L11,10l4.85-6.76c0.22-0.31,0.19-0.74-0.08-1.01l0,0 C15.47,1.93,15,1.92,14.69,2.21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.72,2.21l-8.56,7.93c-0.32,0.3-0.12,0.83,0.31,0.86l7.33,0.5l-3.64,5.27c-0.24,0.3-0.21,0.73,0.06,1.01h0 c0.29,0.29,0.76,0.3,1.06,0.01l8.56-7.93c0.32-0.3,0.12-0.83-0.31-0.86L9.2,8.5l3.64-5.27c0.24-0.3,0.21-0.73-0.06-1.01l0,0 C12.49,1.93,12.01,1.93,11.72,2.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"blinds_closed\": {\n    \"name\": \"blinds_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h11.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M18,11h-2V9h2V11z M14,11H6V9h8V11z M14,13v2H6v-2H14z M16,13h2v2h-2V13z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-2h8v2H6z M16,19v-2h2v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h8.5c0,0.69,0.56,1.25,1.25,1.25S13,17.69,13,17h5v-1.5H16z M14.5,9.25h-2v-1.5h2V9.25z M11,9.25 H5.5v-1.5H11V9.25z M11,10.75v1.5H5.5v-1.5H11z M12.5,10.75h2v1.5h-2V10.75z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-1.75H11v1.75H5.5z M12.5,15.5v-1.75h2v1.75H12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"oil_barrel\": {\n    \"name\": \"oil_barrel\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,13c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1V5h1c0.55,0,1-0.45,1-1s-0.45-1-1-1H4C3.45,3,3,3.45,3,4s0.45,1,1,1h1v6H4 c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v6H4c-0.55,0-1,0.45-1,1s0.45,1,1,1h16c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1v-6H20z M12,16 c-1.66,0-3-1.32-3-2.95c0-1.3,0.52-1.67,3-4.55c2.47,2.86,3,3.24,3,4.55C15,14.68,13.66,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.25,10.75c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5V4.5h0.75C16.66,4.5,17,4.16,17,3.75S16.66,3,16.25,3 H3.75C3.34,3,3,3.34,3,3.75S3.34,4.5,3.75,4.5H4.5v4.75H3.75C3.34,9.25,3,9.59,3,10s0.34,0.75,0.75,0.75H4.5v4.75H3.75 C3.34,15.5,3,15.84,3,16.25S3.34,17,3.75,17h12.5c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5v-4.75H16.25z M10,13 c-1.24,0-2.25-0.99-2.25-2.21c0-0.98,0.39-1.25,2.25-3.41c1.85,2.15,2.25,2.43,2.25,3.41C12.25,12.01,11.24,13,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"heat_pump\": {\n    \"name\": \"heat_pump\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.75,7.08 c0.82,0.12,1.57,0.44,2.2,0.91l-2.2,2.2V7.08z M11.25,7.08v3.11l-2.2-2.2C9.68,7.52,10.43,7.2,11.25,7.08z M7.99,9.05l2.2,2.2H7.08 C7.2,10.43,7.52,9.68,7.99,9.05z M7.08,12.75h3.11l-2.2,2.2C7.52,14.32,7.2,13.57,7.08,12.75z M11.25,16.92 c-0.82-0.12-1.57-0.44-2.2-0.91l2.2-2.2V16.92z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,12.55,12.55,13,12,13z M12.75,16.92v-3.11l2.2,2.2C14.32,16.48,13.57,16.8,12.75,16.92z M16.01,14.95l-2.2-2.2h3.11C16.8,13.57,16.48,14.32,16.01,14.95z M13.81,11.25l2.2-2.2c0.47,0.64,0.79,1.39,0.91,2.2H13.81z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M10.5,6.3c0.66,0.09,1.26,0.34,1.76,0.73L10.5,8.79V6.3z M9.5,6.3v2.49L7.74,7.03C8.24,6.64,8.84,6.39,9.5,6.3z M7.03,7.74 L8.79,9.5H6.3C6.39,8.84,6.64,8.24,7.03,7.74z M6.3,10.5h2.49l-1.76,1.76C6.64,11.76,6.39,11.16,6.3,10.5z M9.5,13.7 c-0.66-0.09-1.26-0.34-1.76-0.73l1.76-1.76V13.7z M9.25,10c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75S9.25,10.41,9.25,10z M10.5,13.7v-2.49l1.76,1.76C11.76,13.36,11.16,13.61,10.5,13.7z M12.97,12.26 l-1.76-1.76h2.49C13.61,11.16,13.36,11.76,12.97,12.26z M11.21,9.5l1.76-1.76c0.38,0.5,0.64,1.1,0.73,1.76H11.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloudy_snowing\": {\n    \"name\": \"cloudy_snowing\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,18c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1S5,17.45,5,18z M17,18c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1 S17,17.45,17,18z M8,22c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1S8,21.45,8,22z M11,18c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1 S11,17.45,11,18z M14,22c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1S14,21.45,14,22z M17.5,16h-10C4.47,16,2,13.53,2,10.5 c0-2.76,2.09-5.09,4.78-5.44C7.83,3.18,9.82,2,12,2c2.97,0,5.45,2.18,5.92,5.02C20.21,7.23,22,9.16,22,11.5 C22,13.98,19.98,16,17.5,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.75,14.25C4.75,14.66,5.09,15,5.5,15s0.75-0.34,0.75-0.75S5.91,13.5,5.5,13.5S4.75,13.84,4.75,14.25z M13.75,14.25 c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75S13.75,13.84,13.75,14.25z M7,17.25C7,17.66,7.34,18,7.75,18 s0.75-0.34,0.75-0.75S8.16,16.5,7.75,16.5S7,16.84,7,17.25z M9.25,14.25C9.25,14.66,9.59,15,10,15s0.75-0.34,0.75-0.75 S10.41,13.5,10,13.5S9.25,13.84,9.25,14.25z M11.5,17.25c0,0.41,0.34,0.75,0.75,0.75S13,17.66,13,17.25s-0.34-0.75-0.75-0.75 S11.5,16.84,11.5,17.25z M14.44,5.76C14.09,3.63,12.23,2,10,2C8.36,2,6.87,2.88,6.09,4.3C4.07,4.57,2.5,6.3,2.5,8.37 c0,2.27,1.85,4.12,4.12,4.12h7.5c1.86,0,3.38-1.52,3.38-3.38C17.5,7.37,16.16,5.93,14.44,5.76z\\\"></path>\"\n      }\n    }\n  },\n  \"broadcast_on_personal\": {\n    \"name\": \"broadcast_on_personal\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,8c0.7,0,1.38,0.1,2.02,0.27L12,3L4,9v12h6.76C9.66,19.63,9,17.89,9,16C9,11.58,12.58,8,17,8z\\\"></path><path d=\\\"M17,14.75c-0.69,0-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22h1.5v-5.03c0.3-0.23,0.5-0.57,0.5-0.97 C18.25,15.31,17.69,14.75,17,14.75z\\\"></path><path d=\\\"M17,12c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16C21,13.79,19.21,12,17,12z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.38,7.03L8,3L2,7.5V17h7.54C8.58,15.94,8,14.54,8,13C8,9.9,10.36,7.34,13.38,7.03z\\\"></path><path d=\\\"M14,12c-0.55,0-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1v-4.15C14.79,13.67,15,13.37,15,13C15,12.45,14.55,12,14,12z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,10c-1.66,0-3,1.34-3,3c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22C17,11.34,15.66,10,14,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_meter\": {\n    \"name\": \"electric_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2c-4.96,0-9,4.04-9,9c0,3.91,2.51,7.24,6,8.47V22h2v-2.06c0.33,0.04,0.66,0.06,1,0.06s0.67-0.02,1-0.06V22h2v-2.53 c3.49-1.24,6-4.57,6-8.47C21,6.04,16.96,2,12,2z M14.25,14l-3,3l-1.5-1.5L11,14.25L9.75,13l3-3l1.5,1.5L13,12.75L14.25,14z M16,9H8 V7h8V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2C6.13,2,3,5.13,3,9c0,2.98,1.87,5.52,4.5,6.53V18H9v-2.08C9.33,15.97,9.66,16,10,16s0.67-0.03,1-0.08V18h1.5v-2.47 C15.13,14.52,17,11.98,17,9C17,5.13,13.87,2,10,2z M11.75,11.3L9.3,13.75L8.25,12.7l1-1l-1-1l2.45-2.45l1.05,1.05l-1,1L11.75,11.3z M13,7.5H7V6h6V7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"roller_shades\": {\n    \"name\": \"roller_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M6,19v-6h5v1.8c-0.4,0.3-0.8,0.8-0.8,1.4c0,1,0.8,1.8,1.8,1.8s1.8-0.8,1.8-1.8 c0-0.6-0.3-1.1-0.8-1.4V13h5v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M5.5,15.5v-4.75h3.75v1.53c-0.3,0.23-0.5,0.57-0.5,0.97c0,0.69,0.56,1.25,1.25,1.25 s1.25-0.56,1.25-1.25c0-0.4-0.2-0.75-0.5-0.97v-1.53h3.75v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wind_power\": {\n    \"name\": \"wind_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"4\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"1\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"19\\\"></rect><path d=\\\"M13.73,10.61c0.75,0.23,1.3,0.78,1.57,1.46l4.27-7.11c0.65-1.08,0.3-2.48-0.78-3.13c-0.87-0.52-1.99-0.41-2.73,0.29 l-3.43,3.21C12.23,5.7,12,6.23,12,6.78v3.93C12.36,10.56,12.98,10.38,13.73,10.61z\\\"></path><path d=\\\"M10.61,12.27c0.16-0.52,0.48-0.96,0.89-1.27H3.28C2.02,11,1,12.02,1,13.28c0,1.02,0.67,1.91,1.65,2.19l4.51,1.29 c0.53,0.15,1.1,0.08,1.58-0.21l2.69-1.61C10.66,14.32,10.3,13.27,10.61,12.27z\\\"></path><path d=\\\"M22.21,18.61l-2.28-4.1c-0.27-0.48-0.73-0.83-1.26-0.97l-3.18-0.8c0.03,0.32,0,0.66-0.1,0.99 c-0.32,1.06-1.28,1.77-2.39,1.77c-0.61,0-0.99-0.22-1-0.22V21c-1.1,0-2,0.9-2,2h6c0-1.1-0.9-2-2-2v-4.28l4.61,4.61 c0.89,0.89,2.33,0.89,3.22,0C22.55,20.61,22.71,19.5,22.21,18.61z\\\"></path><path d=\\\"M12.56,14.43c0.79,0.24,1.63-0.2,1.87-1c0.24-0.79-0.2-1.63-1-1.87c-0.79-0.24-1.63,0.2-1.87,1 C11.32,13.35,11.77,14.19,12.56,14.43z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"6.5\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g><g><path d=\\\"M10.06,12.43c0.79,0.24,1.63-0.2,1.87-1c0.24-0.79-0.2-1.63-1-1.87c-0.79-0.24-1.63,0.2-1.87,1 C8.82,11.35,9.27,12.19,10.06,12.43z\\\"></path></g><g><path d=\\\"M8.11,10.27C8.27,9.75,8.59,9.31,9,9H2.8C1.81,9,1,9.81,1,10.8c0,0.8,0.53,1.51,1.31,1.73l3.6,1.03 c0.4,0.11,0.83,0.06,1.18-0.16l1.44-0.87C8.05,11.92,7.86,11.08,8.11,10.27z\\\"></path></g><g><path d=\\\"M17.77,15.32l-1.82-3.27c-0.2-0.36-0.54-0.63-0.95-0.73l-2.02-0.5c0.02,0.3,0,0.61-0.1,0.92 c-0.5,1.62-2.03,1.77-2.39,1.77c-0.25,0-0.49-0.04-0.73-0.11c-0.01,0-0.01-0.01-0.02-0.01v4.04H9.58C8.71,17.42,8,18.13,8,19h5 c0-0.87-0.71-1.58-1.58-1.58h-0.17V13.8l3.67,3.67c0.7,0.7,1.85,0.7,2.55,0C18.04,16.9,18.16,16.03,17.77,15.32z\\\"></path></g><g><path d=\\\"M11.23,8.61c0.63,0.19,1.13,0.62,1.43,1.16l3.32-5.54c0.51-0.85,0.24-1.96-0.62-2.47c-0.69-0.41-1.57-0.32-2.16,0.23 l-2.74,2.56C10.17,4.83,10,5.23,10,5.64v2.91C10.18,8.52,10.64,8.43,11.23,8.61z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"roller_shades_closed\": {\n    \"name\": \"roller_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,19V3H4v16H2v2h8.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M6,19v-2h5v2H6z M13,19v-2h5v2H13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h6.75c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25H18v-1.5H16z M9.25,15.5H5.5V14h3.75V15.5z M14.5,15.5h-3.75V14h3.75V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_fan_off\": {\n    \"name\": \"mode_fan_off\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.34,8.36l-2.29,0.82c-0.18-0.13-0.38-0.25-0.58-0.34c0.17-0.83,0.63-1.58,1.36-2.06C16.85,5.44,16.18,2,13.39,2 c-3.08,0-4.9,1.47-5.3,3.26L18.73,15.9c1.5,0.39,3.27-0.51,3.27-2.51C22,9,18.99,7.16,16.34,8.36z\\\"></path></g><g><path d=\\\"M2.81,2.81L1.39,4.22L5.27,8.1C3.77,7.7,2,8.61,2,10.61c0,4.4,3.01,6.24,5.66,5.03l2.29-0.82 c0.18,0.13,0.38,0.25,0.58,0.34c-0.17,0.83-0.63,1.58-1.36,2.06C7.15,18.56,7.82,22,10.61,22c3.08,0,4.9-1.47,5.3-3.26l3.87,3.87 l1.41-1.41L2.81,2.81z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.46,13.34c0.17,0.04,0.35,0.06,0.54,0.06c0.98,0,2-0.76,2-2.08C18,8.52,16.49,7,14.8,7c-0.83,0-1.29,0.22-3.01,0.91 c-0.14-0.12-0.28-0.22-0.44-0.31c0.22-0.99,0.64-1.47,1.1-1.78C13.09,5.39,13.4,4.75,13.4,4c0-0.98-0.76-2-2.08-2 C8.69,2,7.2,3.34,7.03,4.91L15.46,13.34z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99l2.67,2.67C4.37,6.62,4.19,6.6,4,6.6c-0.98,0-2,0.76-2,2.08C2,11.48,3.51,13,5.2,13 c0.83,0,1.29-0.22,3.01-0.91c0.14,0.12,0.28,0.22,0.44,0.31c-0.22,0.99-0.64,1.47-1.1,1.78C6.91,14.61,6.6,15.25,6.6,16 c0,0.98,0.76,2,2.08,2c2.63,0,4.12-1.34,4.29-2.91l3.04,3.04l1.06-1.06L2.93,2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"curtains_closed\": {\n    \"name\": \"curtains_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M11,5h2v14h-2V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M9,4.5h2v11H9V4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shield_moon\": {\n    \"name\": \"shield_moon\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M15.97,14.41c-1.84,2.17-5.21,2.1-6.96-0.07 c-2.19-2.72-0.65-6.72,2.69-7.33c0.34-0.06,0.63,0.27,0.51,0.6c-0.46,1.23-0.39,2.64,0.32,3.86c0.71,1.22,1.89,1.99,3.18,2.2 C16.05,13.72,16.2,14.14,15.97,14.41z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M13.06,11.76 c-1.43,1.69-4.05,1.63-5.41-0.06c-1.71-2.12-0.51-5.23,2.09-5.7c0.27-0.05,0.49,0.21,0.39,0.47c-0.36,0.95-0.3,2.05,0.25,3 s1.47,1.55,2.48,1.71C13.12,11.23,13.24,11.55,13.06,11.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gas_meter\": {\n    \"name\": \"gas_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,4h-1V2h-2v2h-2V2H9v2H8C5.79,4,4,5.79,4,8v10c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4V8C20,5.79,18.21,4,16,4z M12,18 c-1.38,0-2.5-1.1-2.5-2.46c0-1.09,0.43-1.39,2.5-3.79c2.05,2.38,2.5,2.7,2.5,3.79C14.5,16.9,13.38,18,12,18z M16,10H8V8h8V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5h-0.5V2H11v1.5H9V2H7.5v1.5H7c-1.66,0-3,1.34-3,3V15c0,1.66,1.34,3,3,3h6c1.66,0,3-1.34,3-3V6.5 C16,4.84,14.66,3.5,13,3.5z M10,14.5c-1.1,0-2-0.88-2-1.97c0-0.87,0.35-1.11,2-3.03c1.64,1.91,2,2.16,2,3.03 C12,13.62,11.1,14.5,10,14.5z M13,8H7V6.5h6V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sunny_snowing\": {\n    \"name\": \"sunny_snowing\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13 5h-2V1h2v4zM1 11h4v2H1v-2zm18 2v-2h4v2h-4zm-1.34-5.24-1.41-1.41 2.83-2.83 1.41 1.41-2.83 2.83zM3.51 4.93l1.41-1.41 2.83 2.83-1.41 1.41-2.83-2.83zM4.75 17a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm12 0a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm-9 4a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm3-4a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zm3 4a1.25 1.25 0 102.5 0 1.25 1.25 0 00-2.5 0zM17 13v-1c0-2.76-2.24-5-5-5s-5 2.24-5 5v1h10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"5\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"7.5\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M10 6c-2.21 0-4 1.79-4 4v1h8v-1c0-2.21-1.79-4-4-4z\\\"></path><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"1.5\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(-1.836970e-16 1 -1 -1.836970e-16 27 -7)\\\" width=\\\"1.5\\\" x=\\\"16.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 0.7071 -0.7071 0.7071 7.9497 -9.0919)\\\" width=\\\"1.5\\\" x=\\\"14.2\\\" y=\\\"3.55\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1924 5.0503)\\\" width=\\\"1.5\\\" x=\\\"4.3\\\" y=\\\"3.55\\\"></rect><rect height=\\\"1.5\\\" width=\\\"3\\\" x=\\\"1.5\\\" y=\\\"9.25\\\"></rect></g>\"\n      }\n    }\n  },\n  \"shelves\": {\n    \"name\": \"shelves\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19 1v2H5V1H3v22h2v-2h14v2h2V1h-2zm0 4v6h-6V7H7v4H5V5h14zm-2 14v-4h-6v4H5v-6h14v6h-2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5 1v1.5h-11V1H3v18h1.5v-1.5h11V19H17V1h-1.5zm0 3v5.25H11v-3.5H6v3.5H4.5V4h11zM14 16v-3.5H9V16H4.5v-5.25h11V16H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_mode\": {\n    \"name\": \"auto_mode\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.03,3.56c-1.67-1.39-3.74-2.3-6.03-2.51v2.01c1.73,0.19,3.31,0.88,4.61,1.92L19.03,3.56z\\\"></path><path d=\\\"M11,3.06V1.05C8.71,1.25,6.64,2.17,4.97,3.56l1.42,1.42C7.69,3.94,9.27,3.25,11,3.06z\\\"></path><path d=\\\"M4.98,6.39L3.56,4.97C2.17,6.64,1.26,8.71,1.05,11h2.01C3.25,9.27,3.94,7.69,4.98,6.39z\\\"></path><path d=\\\"M20.94,11h2.01c-0.21-2.29-1.12-4.36-2.51-6.03l-1.42,1.42C20.06,7.69,20.75,9.27,20.94,11z\\\"></path><polygon points=\\\"7,12 10.44,13.56 12,17 13.56,13.56 17,12 13.56,10.44 12,7 10.44,10.44\\\"></polygon><path d=\\\"M12,21c-3.11,0-5.85-1.59-7.46-4H7v-2H1v6h2v-2.7c1.99,2.84,5.27,4.7,9,4.7c4.87,0,9-3.17,10.44-7.56l-1.96-0.45 C19.25,18.48,15.92,21,12,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.81,3.13c-1.39-1.18-3.14-1.93-5.06-2.09v1.5c1.51,0.15,2.88,0.75,3.99,1.66L15.81,3.13z\\\"></path><path d=\\\"M10,17.5c-2.66,0-4.98-1.41-6.31-3.5h2.06v-1.5H1v4.75h1.5v-2.29C4.11,17.39,6.86,19,10,19c4.01,0,7.41-2.63,8.57-6.25 l-1.47-0.34C16.09,15.36,13.29,17.5,10,17.5z\\\"></path><path d=\\\"M9.25,2.54v-1.5C7.33,1.19,5.58,1.96,4.2,3.14L5.26,4.2C6.37,3.29,7.74,2.69,9.25,2.54z\\\"></path><path d=\\\"M4.2,5.26L3.14,4.2C1.96,5.59,1.2,7.33,1.04,9.25h1.5C2.69,7.74,3.29,6.37,4.2,5.26z\\\"></path><polygon points=\\\"6,10 8.75,11.25 10,14 11.25,11.25 14,10 11.25,8.75 10,6 8.75,8.75\\\"></polygon><path d=\\\"M17.46,9.25h1.51c-0.16-1.92-0.92-3.67-2.1-5.06L15.8,5.26C16.71,6.37,17.31,7.74,17.46,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sensor_door\": {\n    \"name\": \"sensor_door\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2z M15.5,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 S17,11.17,17,12S16.33,13.5,15.5,13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,3H5C4.45,3,4,3.45,4,4v13h12V4C16,3.45,15.55,3,15,3z M13,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C14,10.55,13.55,11,13,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fire_extinguisher\": {\n    \"name\": \"fire_extinguisher\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"countertops\": {\n    \"name\": \"countertops\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,10V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2v-2H18z M13,18h-2v-6h2V18z\\\"></path>\"\n      }\n    }\n  },\n  \"room_service\": {\n    \"name\": \"room_service\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z\\\"></path>\"\n      }\n    }\n  },\n  \"roofing\": {\n    \"name\": \"roofing\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator_warning\": {\n    \"name\": \"escalator_warning\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airport_shuttle\": {\n    \"name\": \"airport_shuttle\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.65 1.34 3 3 3s3-1.35 3-3h5.5c0 1.65 1.34 3 3 3s3-1.35 3-3H23v-5l-6-6zM3 11V7h4v4H3zm3 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7-6.5H9V7h4v4zm4.5 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM15 11V7h1l4 4h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"grass\": {\n    \"name\": \"grass\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z\\\"></path>\"\n      }\n    }\n  },\n  \"no_drinks\": {\n    \"name\": \"no_drinks\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.83,3H21v2l-6.2,6.97L9.83,7h6.74l1.78-2H7.83L5.83,3z M19.78,22.61L18,20.83V21H6v-2h5v-5l-1.37-1.54L1.39,4.22 l1.41-1.41L3,3l18.19,18.19L19.78,22.61z M16.17,19L13,15.83V19H16.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wheelchair_pickup\": {\n    \"name\": \"wheelchair_pickup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"kitchen\": {\n    \"name\": \"kitchen\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20 9V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v5h16zM8 5h2v3H8V5zm-4 6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9H4zm6 6H8v-5h2v5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fitness_center\": {\n    \"name\": \"fitness_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_touch\": {\n    \"name\": \"do_not_touch\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75V11V5.25C20,4.56,19.44,4,18.75,4 S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3 c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1S13,1.56,13,2.25V10.17z M20,12.75 V11V5.25C20,4.56,19.44,4,18.75,4S17.5,4.56,17.5,5.25V11h-1V3.25C16.5,2.56,15.94,2,15.25,2S14,2.56,14,3.25v7.92l6,6V12.75z M9.5,4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M21.19,21.19L2.81,2.81L1.39,4.22l5.63,5.63L7,9.83 v4.3c-1.11-0.64-2.58-1.47-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26C3.12,12.78,2,13.88,2,13.88 l6.8,7.18c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.65-0.52l-0.02-0.02l1.15,1.15L21.19,21.19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"child_care\": {\n    \"name\": \"child_care\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M22.94 12.66c.04-.21.06-.43.06-.66s-.02-.45-.06-.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66s.02.45.06.66c.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zM7.5 14c.76 1.77 2.49 3 4.5 3s3.74-1.23 4.5-3h-9z\\\"></path>\"\n      }\n    }\n  },\n  \"holiday_village\": {\n    \"name\": \"holiday_village\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,20V8.35L13.65,4h-2.83L16,9.18V20H18z M22,20V6.69L19.31,4h-2.83L20,7.52V20H22z M8,4l-6,6v10h5v-5h2v5h5V10L8,4z M9,13 H7v-2h2V13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.5,16V7.26L11.24,4H9.12L13,7.88V16H14.5z M17.5,16V6.02L15.48,4h-2.12L16,6.64V16H17.5z M7,4L2.5,8.5V16h3.75v-3.75h1.5 V16h3.75V8.5L7,4z M7.75,10.75h-1.5v-1.5h1.5V10.75z\\\"></path>\"\n      }\n    }\n  },\n  \"no_photography\": {\n    \"name\": \"no_photography\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.94,8.12L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-5.1-5.1C16.96,13.71,17,13.36,17,13 c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2 L2.1,2.1l19.8,19.8L20.49,23.31z M14.49,17.32l-1.5-1.5C12.67,15.92,12.35,16,12,16c-1.66,0-3-1.34-3-3c0-0.35,0.08-0.67,0.19-0.98 l-1.5-1.5C7.25,11.24,7,12.09,7,13c0,2.76,2.24,5,5,5C12.91,18,13.76,17.75,14.49,17.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meeting_room\": {\n    \"name\": \"no_meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 11h-1v2h2v-1l9.73 9.73L20.46 23 14 16.54V21H3v-2h2V7.54l-4-4 1.27-1.27L11 11zm3 .49L5.51 3H14v1h5v12.49l-2-2V6h-3v5.49z\\\"></path>\"\n      }\n    }\n  },\n  \"no_food\": {\n    \"name\": \"no_food\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L11.35,8.52z M1,21v1c0,0.55,0.45,1,1,1h13c0.55,0,1-0.45,1-1v-1H1z M21.9,21.9 L2.1,2.1L0.69,3.51l5.7,5.7C3.28,9.87,1,11.99,1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water_damage\": {\n    \"name\": \"water_damage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L2,12h3v8h14v-8h3L12,3z M12,16c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C14,15.1,13.1,16,12,16z\\\"></path>\"\n      }\n    }\n  },\n  \"crib\": {\n    \"name\": \"crib\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,9h-6V4H8C5.79,4,4,5.79,4,8v6c0,1.1,0.9,2,2,2h2v2.93c-0.61-0.35-1.16-0.78-1.65-1.27l-1.42,1.42 C6.74,20.88,9.24,22,12,22c2.76,0,5.26-1.12,7.07-2.93l-1.42-1.42c-0.49,0.49-1.05,0.92-1.65,1.27V16h2c1.1,0,2-0.9,2-2v-3 C20,9.9,19.1,9,18,9z M14,19.75C13.36,19.91,12.69,20,12,20c-0.69,0-1.36-0.09-2-0.25V16h4V19.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,12V9.5C16,8.67,15.33,8,14.5,8H10V4H7C5.34,4,4,5.34,4,7v5c0,0.83,0.67,1.5,1.5,1.5H7v2.27 c-0.59-0.31-1.13-0.7-1.59-1.17l-1.06,1.06C5.79,17.1,7.79,18,10,18c2.21,0,4.21-0.9,5.66-2.34l-1.06-1.06 c-0.47,0.47-1,0.86-1.59,1.17l0-2.27h1.5C15.33,13.5,16,12.83,16,12z M11.5,16.33c-0.48,0.11-0.98,0.17-1.5,0.17 s-1.02-0.06-1.5-0.17V13.5h3V16.33z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator\": {\n    \"name\": \"escalator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3z M17,9h-1.7l-5,9H7 c-0.83,0-1.5-0.67-1.5-1.5S6.17,15,7,15h1.7l5-9H17c0.83,0,1.5,0.67,1.5,1.5S17.83,9,17,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pool\": {\n    \"name\": \"pool\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64-1.11 0-1.73-.37-2.18-.64-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z\\\"></path><circle cx=\\\"16.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"beach_access\": {\n    \"name\": \"beach_access\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.127 14.56l1.43-1.43 6.44 6.443L19.57 21zm4.293-5.73l2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z\\\"></path>\"\n      }\n    }\n  },\n  \"stairs\": {\n    \"name\": \"stairs\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M18,8h-2.42v3.33H13v3.33h-2.58 V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"family_restroom\": {\n    \"name\": \"family_restroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rice_bowl\": {\n    \"name\": \"rice_bowl\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12L22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75C19.53,18.86,22,15.69,22,12z M20,12h-4 V5.08C18.39,6.47,20,9.05,20,12z M14,4.26V12h-4V4.26C10.64,4.1,11.31,4,12,4S13.36,4.1,14,4.26z M4,12c0-2.95,1.61-5.53,4-6.92V12 H4z\\\"></path>\"\n      }\n    }\n  },\n  \"chalet\": {\n    \"name\": \"chalet\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,7.5l7.5,7.5l-1.41,1.41L15,15.33V20h-4v-5H9v5H5v-4.67l-1.09,1.09L2.5,15L10,7.5z M22,6.5h-1.19l0.75-0.75l-0.71-0.71 L19.39,6.5H18.5V5.61l1.45-1.45l-0.71-0.71L18.5,4.19V3h-1v1.19l-0.75-0.75l-0.71,0.71l1.45,1.45V6.5h-0.89l-1.45-1.45l-0.71,0.71 l0.75,0.75H14v1h1.19l-0.75,0.75l0.71,0.71l1.45-1.45h0.89v0.89l-1.45,1.45l0.71,0.71l0.75-0.75V11h1V9.81l0.75,0.75l0.71-0.71 L18.5,8.39V7.5h0.89l1.45,1.45l0.71-0.71L20.81,7.5H22V6.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.27,6.5L2.5,12.27l1.06,1.06l0.88-0.88L4.5,16h3v-4H9v4h3v-3.62l0.94,0.94L14,12.27L8.27,6.5z M18,6.5h-1.39l0.9,0.9 l-0.35,0.35L15.9,6.5H15v0.9l1.25,1.25L15.9,9L15,8.11V9.5h-0.5V8.11L13.6,9l-0.35-0.35L14.5,7.4V6.5h-0.9l-1.25,1.25L12,7.4 l0.9-0.9H11.5V6h1.39L12,5.1l0.35-0.35L13.6,6h0.9V5.1l-1.25-1.25L13.6,3.5l0.9,0.9V3H15v1.39l0.9-0.9l0.35,0.35L15,5.1V6h0.9 l1.25-1.25L17.5,5.1L16.61,6H18V6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fence\": {\n    \"name\": \"fence\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"night_shelter\": {\n    \"name\": \"night_shelter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L4,9v12h16V9L12,3z M9.75,12.5c0.69,0,1.25,0.56,1.25,1.25S10.44,15,9.75,15S8.5,14.44,8.5,13.75S9.06,12.5,9.75,12.5z M17,18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H15c1.1,0,2,0.9,2,2V18z\\\"></path>\"\n      }\n    }\n  },\n  \"no_flash\": {\n    \"name\": \"no_flash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.93,13.93L2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.18,2.18l1.41-1.41L18,18L13.93,13.93z M10,20c-2.21,0-4-1.79-4-4c0-1.95,1.4-3.57,3.25-3.92 l1.57,1.57c-0.26-0.09-0.53-0.15-0.82-0.15c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5c1.38,0,2.5-1.12,2.5-2.5 c0-0.29-0.06-0.56-0.15-0.82l1.57,1.57C13.57,18.6,11.95,20,10,20z M18,15.17L10.83,8h1.75l1.28,1.4h2.54c0.88,0,1.6,0.72,1.6,1.6 V15.17z M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"balcony\": {\n    \"name\": \"balcony\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,10v2H8v-2H10z M16,12v-2h-2v2H16z M21,14v8H3v-8h1v-4c0-4.42,3.58-8,8-8s8,3.58,8,8v4H21z M7,16H5v4h2V16z M11,16H9v4h2 V16z M11,4.08C8.16,4.56,6,7.03,6,10v4h5V4.08z M13,14h5v-4c0-2.97-2.16-5.44-5-5.92V14z M15,16h-2v4h2V16z M19,16h-2v4h2V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.5,8.5V10H7V8.5H8.5z M13,10V8.5h-1.5V10H13z M17,12v6H3v-6h1V8c0-3.31,2.69-6,6-6s6,2.69,6,6v4H17z M6.12,13.5H4.5v3 h1.62V13.5z M9.25,13.5H7.62v3h1.62V13.5z M9.25,12l0-8.44C7.12,3.92,5.5,5.77,5.5,8v4H9.25z M10.75,12h3.75V8 c0-2.23-1.62-4.08-3.75-4.44V12z M12.38,13.5h-1.62v3h1.62V13.5z M15.5,13.5h-1.62v3h1.62V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smoking_rooms\": {\n    \"name\": \"smoking_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16h15v3H2zm18.5 0H22v3h-1.5zM18 16h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z\\\"></path>\"\n      }\n    }\n  },\n  \"tapas\": {\n    \"name\": \"tapas\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M12.5,11.5 c0,1.38-1.12,2.5-2.5,2.5H8v9H6v-9H4c-1.38,0-2.5-1.12-2.5-2.5C1.5,10.12,2.62,9,4,9h2V8H4C2.62,8,1.5,6.88,1.5,5.5 C1.5,4.12,2.62,3,4,3h2V1h2v2h2c1.38,0,2.5,1.12,2.5,2.5C12.5,6.88,11.38,8,10,8H8v1h2C11.38,9,12.5,10.12,12.5,11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"baby_changing_station\": {\n    \"name\": \"baby_changing_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"free_breakfast\": {\n    \"name\": \"free_breakfast\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"no_stroller\": {\n    \"name\": \"no_stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,18c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S4.9,18,6,18z M18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11L17,14.17v-7.9 C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3z M10.67,10.67L2.81,2.81L1.39,4.22 l7.97,7.97L6.7,15.31c-0.55,0.65-0.09,1.65,0.76,1.65h6.66l1.17,1.17C14.54,18.42,14,19.14,14,20c0,1.1,0.9,2,2,2 c0.86,0,1.58-0.54,1.87-1.3l1.91,1.91l1.41-1.41l-4.8-4.8L10.67,10.67z M13.47,5.03c0.27-0.32,0.58-0.72,0.98-1.09 c-2.46-1.19-5.32-1.22-7.81-0.13l4.25,4.25L13.47,5.03z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gite\": {\n    \"name\": \"gite\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6z M4,12h10v5H4V12z M20,17h-4v-6.17l2-2v0l2,2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,8.5l-3-3c0,0,0,0,0,0H7.5V4H6v1.5H5l-3,3V15c0,0,0,0,0,0h9.5H13h5c0,0,0,0,0,0L18,8.5C18,8.5,18,8.5,18,8.5z M3.5,13.5 V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"stroller\": {\n    \"name\": \"stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><circle cx=\\\"16\\\" cy=\\\"20\\\" r=\\\"2\\\"></circle><circle cx=\\\"6\\\" cy=\\\"20\\\" r=\\\"2\\\"></circle></g><path d=\\\"M22,7V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17L15,17 c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7H22z\\\"></path><path d=\\\"M14.3,4.1C13.03,3.4,11.56,3,10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89L14.3,4.1z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elevator\": {\n    \"name\": \"elevator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.5,6c0.69,0,1.25,0.56,1.25,1.25 c0,0.69-0.56,1.25-1.25,1.25S7.25,7.94,7.25,7.25C7.25,6.56,7.81,6,8.5,6z M11,14h-1v4H7v-4H6v-2.5c0-1.1,0.9-2,2-2h1 c1.1,0,2,0.9,2,2V14z M15.5,17L13,13h5L15.5,17z M13,11l2.5-4l2.5,4H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"iron\": {\n    \"name\": \"iron\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,6c-1.66,0-3,1.34-3,3v4c0,0.55-0.45,1-1,1v-4c0-1.66-1.34-3-3-3h-4c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1H6c-2.21,0-4,1.79-4,4v3h15v-2c1.66,0,3-1.34,3-3V9c0-0.55,0.45-1,1-1h1V6H21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,5.5c-1.1,0-2,0.9-2,2V11c0,0.28-0.22,0.5-0.5,0.5H14V8c0-1.1-0.9-2-2-2H8C6.9,6,6,6.9,6,8h1.5c0-0.28,0.22-0.5,0.5-0.5 h4c0.28,0,0.5,0.22,0.5,0.5v1H5c-1.66,0-3,1.34-3,3v2.5h12V13h0.5c1.1,0,2-0.9,2-2V7.5C16.5,7.22,16.72,7,17,7h1V5.5H17z\\\"></path>\"\n      }\n    }\n  },\n  \"bungalow\": {\n    \"name\": \"bungalow\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L4.2,15.5l1.7,1.06L7,14.8V21h4v-5h2v5h4v-6.21l1.1,1.77l1.7-1.06L12,3z M13,14h-2v-2h2V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3l-6,9.6l1.27,0.8L6,12.23V17h3.25v-4h1.5v4H14v-4.77l0.73,1.16L16,12.6L10,3z M10.75,11.5h-1.5V10h1.5V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"backpack\": {\n    \"name\": \"backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><g><g><path d=\\\"M20,8v12c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V8c0-1.86,1.28-3.41,3-3.86V2h3v2h4V2h3v2.14C18.72,4.59,20,6.14,20,8z M6,12v2h10v2h2v-4H6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"house\": {\n    \"name\": \"house\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,8.29V5h-2v1.57L10,4l-7,6h2v6h4v-4h2v4h4v-6h2L15,8.29z M9,9c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1H9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cabin\": {\n    \"name\": \"cabin\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z M12,3L6,7.58V6H4v3.11L1,11.4 l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M13.94,7h-3.89L12,5.52L13.94,7z M7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9z M18,13v2H6v-2H18z M6,19v-2h12v2H6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5h1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5z M18.25,9.8l-0.91,1.19L16,9.97V17H4V9.97l-1.34,1.02L1.75,9.8L4,8.08V5.5h1.5v1.44L10,3.5L18.25,9.8z M10,5.39L8.54,6.5h2.91 L10,5.39z M5.5,8.82V9.5h9V8.82L13.42,8H6.58L5.5,8.82z M5.5,11v1.5h9V11H5.5z M14.5,15.5V14h-9v1.5H14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tty\": {\n    \"name\": \"tty\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14.62,14.38L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03 C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4 c0.56,0.03,1.03-0.44,1.03-1v-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C15.2,14.04,14.86,14.14,14.62,14.38z M14,10h2v2h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"room_preferences\": {\n    \"name\": \"room_preferences\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87,11,18.49,11,17C11,14.62,12.19,12.53,14,11.26z M10,11h2v2h-2V11z M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"checkroom\": {\n    \"name\": \"checkroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"spa\": {\n    \"name\": \"spa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm13.97 21.49c-.63.23-1.29.4-1.97.51.68-.12 1.33-.29 1.97-.51zM12 22c-.68-.12-1.33-.29-1.97-.51.64.22 1.29.39 1.97.51z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z\\\"></path><path d=\\\"M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z\\\"></path>\"\n      }\n    }\n  },\n  \"golf_course\": {\n    \"name\": \"golf_course\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z\\\"></path>\"\n      }\n    }\n  },\n  \"cottage\": {\n    \"name\": \"cottage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h7v-6h2v6h7v-9.38l1.79,1.36L23,11.4L12,3z M10,1c0,1.66-1.34,3-3,3 C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5L5.5,6.94V5.5H4v2.58L1.75,9.8l0.91,1.19L4,9.97V17h5.25v-4.5h1.5V17H16V9.97l1.34,1.02l0.91-1.19L10,3.5z M8.5,1.5 c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5H8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"vaping_rooms\": {\n    \"name\": \"vaping_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M22,16v3H8v-3H22z M11,17.5 c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23 c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38 C20.72,8.62,22,10.54,22,12.76z M19.5,13.36V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-1.85,0-3.35-1.5-3.35-3.35 s1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53C17.9,10.2,19.5,11.55,19.5,13.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,15H7v-2h11V15z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5S11.12,9,12.5,9h1 c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M9,13.65c-0.19,0-0.35,0.16-0.35,0.35S8.81,14.35,9,14.35 S9.35,14.19,9.35,14S9.19,13.65,9,13.65z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5 c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1 c1.93,0,3.5,1.57,3.5,3.5V12H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"casino\": {\n    \"name\": \"casino\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm21.02 19c0 1.1-.9 2-2 2h-14c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_bar\": {\n    \"name\": \"sports_bar\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,9h-1.56C17.79,8.41,18,7.73,18,7c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02 c-1.89,0-3.51,1.11-4.27,2.71C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6C21,9.9,20.1,9,19,9z M7,10.5c-1.1,0-2-0.9-2-2c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65 l0.78,0.65c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5z M19,17h-2v-6h2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,7.5h-1.27C14.47,7.05,14.6,6.54,14.6,6c0-1.79-1.46-3.25-3.25-3.25c-0.24,0-0.47,0.03-0.69,0.07 C10.05,2.31,9.26,2,8.4,2C6.95,2,5.7,2.89,5.17,4.15C3.91,4.55,3,5.73,3,7.12c0,1.51,1.07,2.77,2.5,3.06V17H14v-1.5h1.5 c0.83,0,1.5-0.67,1.5-1.5V9C17,8.17,16.33,7.5,15.5,7.5z M10.79,6c-0.8,0-1.55,0.31-2.12,0.88L7.28,8.27 C6.96,8.59,6.51,8.78,6.02,8.75C5.2,8.7,4.54,8.02,4.5,7.2C4.46,6.27,5.2,5.5,6.12,5.5c0,0,0,0,0,0c0.14,0,0.27-0.1,0.29-0.24 C6.53,4.26,7.39,3.5,8.4,3.5c0.71,0,1.34,0.37,1.69,0.93c0.07,0.12,0.23,0.15,0.34,0.08c0.27-0.16,0.58-0.26,0.92-0.26 c0.96,0,1.75,0.79,1.75,1.75H10.79z M15.5,14H14V9h1.5V14z\\\"></path>\"\n      }\n    }\n  },\n  \"carpenter\": {\n    \"name\": \"carpenter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M14.07,19.88l-1.41-1.41l4.24-4.24l1.41,1.41L14.07,19.88z\\\"></path>\"\n      }\n    }\n  },\n  \"wash\": {\n    \"name\": \"wash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,8C19.88,8,21,6.88,21,5.5C21,3.83,18.5,1,18.5,1S16,3.83,16,5.5C16,6.88,17.12,8,18.5,8z M13.5,9 C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M9.12,5l-7.18,6.79 C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75 c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53 c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"house_siding\": {\n    \"name\": \"house_siding\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"child_friendly\": {\n    \"name\": \"child_friendly\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z\\\"></path>\"\n      }\n    }\n  },\n  \"microwave\": {\n    \"name\": \"microwave\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.8,10.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9 c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10 C7.38,10,6.95,10.41,6.8,10.61z M7.75,15c0.19,0,0.38,0.12,0.71,0.34c0.42,0.28,1,0.66,1.79,0.66c1.16,0,2.01-0.79,2.37-1.19 l-1.42-1.42c-0.15,0.2-0.59,0.61-0.95,0.61c-0.18,0-0.38-0.12-0.69-0.33C9.14,13.39,8.55,13,7.75,13c-1.16,0-2.02,0.79-2.38,1.19 l1.42,1.42C6.95,15.41,7.38,15,7.75,15z M22,6v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16C21.1,4,22,4.9,22,6z M14,6H4v12h10V6z M19,16c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,17,19,16.55,19,16z M19,12 c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,13,19,12.55,19,12z M19,7h-2v2h2V7z\\\"></path>\"\n      }\n    }\n  },\n  \"hot_tub\": {\n    \"name\": \"hot_tub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z\\\"></path>\"\n      }\n    }\n  },\n  \"umbrella\": {\n    \"name\": \"umbrella\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"other_houses\": {\n    \"name\": \"other_houses\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M8,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C9,14.55,8.55,15,8,15z M12,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,14.55,12.55,15,12,15z M16,15 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,14.55,16.55,15,16,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M7,12.5c-0.41,0-0.75-0.34-0.75-0.75 C6.25,11.34,6.59,11,7,11s0.75,0.34,0.75,0.75C7.75,12.16,7.41,12.5,7,12.5z M10,12.5c-0.41,0-0.75-0.34-0.75-0.75 C9.25,11.34,9.59,11,10,11s0.75,0.34,0.75,0.75C10.75,12.16,10.41,12.5,10,12.5z M13,12.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.75,12.16,13.41,12.5,13,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"ac_unit\": {\n    \"name\": \"ac_unit\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z\\\"></path>\"\n      }\n    }\n  },\n  \"all_inclusive\": {\n    \"name\": \"all_inclusive\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L12 10.66 10.48 12h.01L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z\\\"></path>\"\n      }\n    }\n  },\n  \"dry\": {\n    \"name\": \"dry\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3 h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1 h8.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86 c0.64-1.11,1.48-2.58,1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"soap\": {\n    \"name\": \"soap\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.12,5l-7.18,6.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3h6.25H12h5.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1h8.75c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25S19.44,10,18.75,10H8.86c0.64-1.11,1.48-2.58,1.49-2.61 c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7C10.22,6.12,9.12,5,9.12,5L9.12,5z M14,6.25c0.41,0,0.75,0.34,0.75,0.75 S14.41,7.75,14,7.75S13.25,7.41,13.25,7S13.59,6.25,14,6.25 M14,4.75c-1.24,0-2.25,1.01-2.25,2.25S12.76,9.25,14,9.25 S16.25,8.24,16.25,7S15.24,4.75,14,4.75L14,4.75z M19.75,5.5c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5 S19.47,5.5,19.75,5.5 M19.75,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S20.85,4,19.75,4L19.75,4z M16.5,1C15.67,1,15,1.67,15,2.5 S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z\\\"></path></g>\"\n      }\n    }\n  },\n  \"desk\": {\n    \"name\": \"desk\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,6v12h2V8h10v10h2v-2h4v2h2V6H2z M20,8v2h-4V8H20z M16,14v-2h4v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,5v10h1.5V6.5H12V15h1.5v-1.5h3V15H18V5H2z M13.5,6.5h3v2h-3V6.5z M13.5,12v-2h3v2H13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"do_not_step\": {\n    \"name\": \"do_not_step\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.39,4.22l7.9,7.9c0.18,0.2,0.18,0.5-0.01,0.7c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15L6.87,11.1 c-0.11,0.4-0.26,0.78-0.45,1.12l1.4,1.4c0.2,0.2,0.2,0.51,0,0.71c-0.1,0.1-0.23,0.15-0.35,0.15s-0.26-0.05-0.35-0.15l-1.27-1.27 c-0.24,0.29-0.5,0.56-0.77,0.8l1.28,1.28c0.2,0.2,0.2,0.51,0,0.71C6.26,15.95,6.13,16,6,16s-0.26-0.05-0.35-0.15l-1.38-1.38 c-0.69,0.46-1.39,0.79-1.97,1.02C1.52,15.8,1,16.53,1,17.37V20h9.5l3.33-3.33l5.94,5.94l1.41-1.41L2.81,2.81L1.39,4.22z M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2L20.88,9.08z\\\"></path></g>\"\n      }\n    }\n  },\n  \"meeting_room\": {\n    \"name\": \"meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"foundation\": {\n    \"name\": \"foundation\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z\\\"></path>\"\n      }\n    }\n  },\n  \"no_cell\": {\n    \"name\": \"no_cell\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.83,6l-3.7-3.7C5.42,1.55,6.15,1,7,1l10,0.01c1.1,0,2,0.89,2,1.99v13.17l-2-2V6H8.83z M19.78,22.61l-0.91-0.91 C18.58,22.45,17.85,23,17,23H7c-1.1,0-2-0.9-2-2V7.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.17,18L7,9.83V18H15.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"business_center\": {\n    \"name\": \"business_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm10 5h4v2h-4zm0 0h4v2h-4z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16v-1H3.01L3 19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2 2v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-6 0h-4V5h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"corporate_fare\": {\n    \"name\": \"corporate_fare\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z\\\"></path>\"\n      }\n    }\n  },\n  \"food_bank\": {\n    \"name\": \"food_bank\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L4,9v12h16V9L12,3z M12.5,12.5c0,0.83-0.67,1.5-1.5,1.5v4h-1v-4c-0.83,0-1.5-0.67-1.5-1.5v-3h1v3H10v-3h1v3h0.5v-3h1 V12.5z M15,18h-1v-3.5h-1v-3c0-1.1,0.9-2,2-2V18z\\\"></path>\"\n      }\n    }\n  },\n  \"smoke_free\": {\n    \"name\": \"smoke_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 6l6.99 7H2v3h9.99l7 7 1.26-1.25-17-17zm18.5 7H22v3h-1.5zM18 13h1.5v3H18zm.85-8.12c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.92c0-2.23-1.28-4.15-3.15-5.04zM14.5 8.7h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.59c0-1.8-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75V2c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zm2.5 7.23V13h-2.93z\\\"></path>\"\n      }\n    }\n  },\n  \"houseboat\": {\n    \"name\": \"houseboat\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,16c-1.95,0-2.1,1-3.34,1c-1.19,0-1.42-1-3.33-1C3.38,16,3.24,17,2,17v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.08-1,3.32-1s1.37,1,3.32,1c1.91,0,2.14-1,3.33-1c1.18,0,1.45,1,3.35,1v-2c-1.24,0-1.38-1-3.33-1c-1.91,0-2.14,1-3.33,1 C14.1,17,13.95,16,12,16z M20.34,11.34l-1.37,1.37C18.78,12.89,18.52,13,18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61 L7,9.65V13H5.74c-0.27,0-0.52-0.11-0.71-0.29l-1.37-1.37l-1.41,1.41l1.37,1.37C4.18,14.68,4.95,15,5.74,15h12.51 c0.8,0,1.56-0.32,2.12-0.88l1.37-1.37L20.34,11.34z M13,13h-2v-2h2V13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,14.5V16c-1.58,0-1.72-1-2.66-1c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1 c-1.59,0-1.72-1-2.67-1C3.72,15,3.58,16,2,16v-1.5c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1C16.92,13.5,17.05,14.5,18,14.5z M16.74,9.64l-1.07,1.07C15.49,10.89,15.23,11,14.97,11 L14,11V8.09l1.11,0.82L16,7.7l-6-4.4L4,7.7l0.89,1.21L6,8.09V11l-0.97,0c-0.27,0-0.52-0.11-0.71-0.29L3.26,9.64L2.2,10.7l1.07,1.07 c0.47,0.47,1.1,0.73,1.77,0.73h9.93c0.66,0,1.3-0.26,1.77-0.73l1.07-1.07L16.74,9.64z M10.75,11h-1.5V9h1.5V11z\\\"></path>\"\n      }\n    }\n  },\n  \"no_backpack\": {\n    \"name\": \"no_backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l2.76,2.76C4.06,7.31,4,7.64,4,8v12c0,1.1,0.9,2,2,2h12c0.34,0,0.65-0.09,0.93-0.24 l0.85,0.85L21.19,21.19z M6,14v-2h3.17l2,2H6z M14.83,12L6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14 c1.72,0.45,3,2,3,3.86v9.17l-2-2V12H14.83z\\\"></path>\"\n      }\n    }\n  },\n  \"bento\": {\n    \"name\": \"bento\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M16,11V5h4c1.1,0,2,0.9,2,2v4H16z M20,19c1.1,0,2-0.9,2-2v-4h-6v6H20z M14,5v14H4c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2H14z M9.5,12c0-0.83-0.67-1.5-1.5-1.5S6.5,11.17,6.5,12s0.67,1.5,1.5,1.5S9.5,12.83,9.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vape_free\": {\n    \"name\": \"vape_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M16.17,19H8v-3h5.17L1.39,4.22l1.41-1.41 l18.38,18.38l-1.41,1.41L16.17,19z M18.83,16H22v3h-0.17L18.83,16z M11,17.5c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5 c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85 S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38C20.72,8.62,22,10.54,22,12.76z M11.15,8.32 c0-0.01,0-0.01,0-0.02c0-1.85,1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53c1.87,0,3.47,1.35,3.47,3.16 V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-0.01,0-0.01,0-0.02,0L11.15,8.32z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.12,13H18v2h-0.88L15.12,13z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5 S11.12,9,12.5,9h1c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1 c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1 C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1c1.93,0,3.5,1.57,3.5,3.5V12H18z M2.93,2.93L1.87,3.99L10.88,13H7v2h5.88l3.13,3.13 l1.06-1.06L2.93,2.93z M9,14.35c-0.19,0-0.35-0.16-0.35-0.35S8.81,13.65,9,13.65S9.35,13.81,9.35,14S9.19,14.35,9,14.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"charging_station\": {\n    \"name\": \"charging_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M7,1h10c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V3C5,1.9,5.9,1,7,1z M7,6 v12h10V6H7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"villa\": {\n    \"name\": \"villa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,21H3V8l13-5v7H7V21z M19,10c-1.1,0-2,0.9-2,2H9v9h5v-5h2v5h5v-9C21,10.9,20.1,10,19,10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,17H3V6.89L13,3v5.5H6V17z M15.5,8.5C14.67,8.5,14,9.17,14,10H7.5v7h4v-4H13v4h4v-7C17,9.17,16.33,8.5,15.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"storefront\": {\n    \"name\": \"storefront\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M18.91,4.99l1.05,4.37c0.1,0.42,0.01,0.84-0.25,1.17 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5L18.91,4.99z M13,5h1.96l0.54,4.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.04,9.36L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47C4.03,10.21,3.94,9.78,4.04,9.36z M5,19v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apartment\": {\n    \"name\": \"apartment\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,9V4H7v3H3v9h7v-3h1v3h6V9H14z M6,14H5v-1h1V14z M6,12H5v-1h1V12z M6,10H5V9h1V10z M10,11H9v-1h1V11z M10,9H9V8h1V9z M10,7H9V6h1V7z M12,11h-1v-1h1V11z M12,9h-1V8h1V9z M12,7h-1V6h1V7z M15,14h-1v-1h1V14z M15,12h-1v-1h1V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rv_hookup\": {\n    \"name\": \"rv_hookup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 11h4v3h-4z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"bathtub\": {\n    \"name\": \"bathtub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><circle cx=\\\"7\\\" cy=\\\"7\\\" r=\\\"2\\\"></circle></g><g><path d=\\\"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 h14c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,11V5.12C16,3.95,15.05,3,13.88,3c-0.56,0-1.1,0.22-1.5,0.62l-0.83,0.83c-0.17-0.08-0.37-0.12-0.57-0.12 c-0.28,0-0.54,0.08-0.76,0.23l1.93,1.93c0.14-0.22,0.23-0.48,0.23-0.76c0-0.2-0.05-0.39-0.12-0.57l0.83-0.83 C13.3,4.12,13.58,4,13.88,4C14.5,4,15,4.5,15,5.12V11H9.1c-0.2-0.14-0.38-0.3-0.55-0.48L7.62,9.49C7.49,9.35,7.33,9.23,7.16,9.15 C6.95,9.05,6.72,9,6.49,9C5.67,9,5,9.67,5,10.5V11H3v4c0,0.55,0.45,1,1,1v0.5C4,16.78,4.22,17,4.5,17h11c0.28,0,0.5-0.22,0.5-0.5 V16c0.55,0,1-0.45,1-1v-4H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"star_half\": {\n    \"name\": \"star_half\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4V6.1 l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"toggle_on\": {\n    \"name\": \"toggle_on\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"check_box\": {\n    \"name\": \"check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"radio_button_unchecked\": {\n    \"name\": \"radio_button_unchecked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"star\": {\n    \"name\": \"star\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z\\\"></path>\"\n      }\n    }\n  },\n  \"toggle_off\": {\n    \"name\": \"toggle_off\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"star_outline\": {\n    \"name\": \"star_outline\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border_purple500\": {\n    \"name\": \"star_border_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><path d=\\\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radio_button_checked\": {\n    \"name\": \"radio_button_checked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"check_box_outline_blank\": {\n    \"name\": \"check_box_outline_blank\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border\": {\n    \"name\": \"star_border\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_purple500\": {\n    \"name\": \"star_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><path d=\\\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"indeterminate_check_box\": {\n    \"name\": \"indeterminate_check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,13H7v-2h10V13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"vertical_align_center\": {\n    \"name\": \"vertical_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_top\": {\n    \"name\": \"border_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"monetization_on\": {\n    \"name\": \"monetization_on\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z\\\"></path>\"\n      }\n    }\n  },\n  \"format_line_spacing\": {\n    \"name\": \"format_line_spacing\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_link\": {\n    \"name\": \"insert_link\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"area_chart\": {\n    \"name\": \"area_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,13v7h18v-1.5l-9-7L8,17L3,13z M3,7l4,3l5-7l5,4h4v8.97l-9.4-7.31l-3.98,5.48L3,10.44V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,13.08L9.71,7.24l-3.03,4.15L3,8.62V6l3,2l4-5l4,3h3V13.08z M17,15l-7-5.61L7,13.5l-4-3V16h14V15z\\\"></path>\"\n      }\n    }\n  },\n  \"add_comment\": {\n    \"name\": \"add_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 11h-4v4h-2v-4H7V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_textdirection_l_to_r\": {\n    \"name\": \"format_textdirection_l_to_r\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"show_chart\": {\n    \"name\": \"show_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z\\\"></path>\"\n      }\n    }\n  },\n  \"table_chart\": {\n    \"name\": \"table_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 10.02h5V21h-5zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z\\\"></path>\"\n      }\n    }\n  },\n  \"text_decrease\": {\n    \"name\": \"text_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M23,11v2h-8 v-2H23z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,9.25v1.5h-6v-1.5H18z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73L4.49,12.44z M6.07,8.02l0.39-1.16h0.08 l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart\": {\n    \"name\": \"insert_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit\": {\n    \"name\": \"mode_edit\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_text\": {\n    \"name\": \"format_color_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M7.99,10.44h4.04L12.92,13h1.73L10.89,3H9.11L5.35,13h1.73L7.99,10.44z M9.57,6.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98 H8.51L9.57,6.02z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"query_stats\": {\n    \"name\": \"query_stats\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.88,18.47c0.44-0.7,0.7-1.51,0.7-2.39c0-2.49-2.01-4.5-4.5-4.5s-4.5,2.01-4.5,4.5s2.01,4.5,4.49,4.5 c0.88,0,1.7-0.26,2.39-0.7L21.58,23L23,21.58L19.88,18.47z M16.08,18.58c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C18.58,17.46,17.46,18.58,16.08,18.58z M15.72,10.08c-0.74,0.02-1.45,0.18-2.1,0.45l-0.55-0.83l-3.8,6.18 l-3.01-3.52l-3.63,5.81L1,17l5-8l3,3.5L13,6C13,6,15.72,10.08,15.72,10.08z M18.31,10.58c-0.64-0.28-1.33-0.45-2.05-0.49 c0,0,5.12-8.09,5.12-8.09L23,3.18L18.31,10.58z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.44,15.38C16.79,14.84,17,14.19,17,13.5c0-1.93-1.57-3.5-3.5-3.5S10,11.57,10,13.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.44,15.38z M13.5,15.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S14.6,15.5,13.5,15.5z M17.78,2L19,2.87l-3.88,5.9h0C14.61,8.59,14.07,8.5,13.5,8.5L17.78,2z M13.5,8.5c-0.58,0-1.13,0.1-1.65,0.28l0,0l-0.78-1.1 l-3.41,5.36l-2.48-2.97l-2.96,4.81L1,14l4-6.5l2.5,3L11,5L13.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shape_line\": {\n    \"name\": \"shape_line\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,11c2.76,0,5-2.24,5-5S8.76,1,6,1S1,3.24,1,6S3.24,11,6,11z\\\"></path><path d=\\\"M21,14h-5c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-5C23,14.9,22.1,14,21,14z\\\"></path><path d=\\\"M17.71,7.7C18.11,7.89,18.54,8,19,8c1.65,0,3-1.35,3-3s-1.35-3-3-3s-3,1.35-3,3c0,0.46,0.11,0.89,0.3,1.29L6.29,16.3 C5.89,16.11,5.46,16,5,16c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3c0-0.46-0.11-0.89-0.3-1.29L17.71,7.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,9c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C2.79,1,1,2.79,1,5C1,7.21,2.79,9,5,9z\\\"></path><path d=\\\"M17.5,12h-4c-0.83,0-1.5,0.67-1.5,1.5v4c0,0.83,0.67,1.5,1.5,1.5h4c0.83,0,1.5-0.67,1.5-1.5v-4C19,12.67,18.33,12,17.5,12 z\\\"></path><path d=\\\"M14.35,6.71C14.7,6.89,15.08,7,15.5,7C16.88,7,18,5.88,18,4.5S16.88,2,15.5,2S13,3.12,13,4.5c0,0.42,0.11,0.8,0.29,1.15 l-7.64,7.64C5.3,13.11,4.92,13,4.5,13C3.12,13,2,14.12,2,15.5S3.12,18,4.5,18S7,16.88,7,15.5c0-0.42-0.11-0.8-0.29-1.15 L14.35,6.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"border_bottom\": {\n    \"name\": \"border_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_indent_increase\": {\n    \"name\": \"format_indent_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\\\"></path>\"\n      }\n    }\n  },\n  \"padding\": {\n    \"name\": \"padding\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"checklist_rtl\": {\n    \"name\": \"checklist_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9,7.5H2V6h7V7.5z M9,12.5H2V14h7V12.5z M11.64,5.11l-1.06,1.06L13.4,9L18,4.4l-1.06-1.06L13.4,6.88L11.64,5.11z M11.64,11.61l-1.06,1.06l2.83,2.83l4.6-4.6l-1.06-1.06l-3.54,3.54L11.64,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"numbers\": {\n    \"name\": \"numbers\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,10L21,8h-4l1-4h-2l-1,4h-4l1-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1-4h4l-1,4h2l1-4h4l0.5-2h-4l1-4H20.5z M13.5,14h-4l1-4h4L13.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.62,8.5L17,7h-3.25l0.75-3H13l-0.75,3h-3L10,4H8.5L7.75,7H4.38L4,8.5h3.37L6.5,12H3.38L3,13.5h3.12L5.5,16H7l0.62-2.5h3 L10,16h1.5l0.62-2.5h3.5L16,12h-3.5l0.88-3.5H16.62z M11,12H8l0.88-3.5h3L11,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_align_center\": {\n    \"name\": \"format_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"format_underlined\": {\n    \"name\": \"format_underlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_bold\": {\n    \"name\": \"format_bold\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_bottom\": {\n    \"name\": \"align_vertical_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,22H2v-2h20V22z M10,2H7v16h3V2z M17,8h-3v10h3V8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_justify\": {\n    \"name\": \"format_align_justify\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart\": {\n    \"name\": \"pie_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z\\\"></path>\"\n      }\n    }\n  },\n  \"data_array\": {\n    \"name\": \"data_array\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,4 15,6 18,6 18,18 15,18 15,20 20,20 20,4\\\"></polygon><polygon points=\\\"4,20 9,20 9,18 6,18 6,6 9,6 9,4 4,4\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"4,4 4,16 8,16 8,14.5 5.5,14.5 5.5,5.5 8,5.5 8,4\\\"></polygon><polygon points=\\\"12,4 12,5.5 14.5,5.5 14.5,14.5 12,14.5 12,16 16,16 16,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"notes\": {\n    \"name\": \"notes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h12v-2H3v2zM3 6v2h18V6H3zm0 7h18v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"scatter_plot\": {\n    \"name\": \"scatter_plot\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><g><circle cx=\\\"7\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6\\\" r=\\\"3\\\"></circle><circle cx=\\\"16.6\\\" cy=\\\"17.6\\\" r=\\\"3\\\"></circle></g>\"\n      }\n    }\n  },\n  \"align_horizontal_right\": {\n    \"name\": \"align_horizontal_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,2h2v20h-2V2z M2,10h16V7H2V10z M8,17h10v-3H8V17z\\\"></path>\"\n      }\n    }\n  },\n  \"square\": {\n    \"name\": \"square\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"18\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"14\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g>\"\n      }\n    }\n  },\n  \"auto_graph\": {\n    \"name\": \"auto_graph\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.06,9.94L12,9l2.06-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94z M4,14l0.94-2.06L7,11l-2.06-0.94L4,8 l-0.94,2.06L1,11l2.06,0.94L4,14z M8.5,9l1.09-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9z M4.5,20.5l6-6.01l4,4 L23,8.93l-1.41-1.41l-7.09,7.97l-4-4L3,19L4.5,20.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.72,8.28L10,7.5l1.72-0.78L12.5,5l0.78,1.72L15,7.5l-1.72,0.78L12.5,10L11.72,8.28z M3.5,12l0.78-1.72L6,9.5L4.28,8.72 L3.5,7L2.72,8.72L1,9.5l1.72,0.78L3.5,12z M7,8l0.94-2.06L10,5L7.94,4.06L7,2L6.06,4.06L4,5l2.06,0.94L7,8z M17.88,6.5l-5.61,6.31 L9,9.54l-6,6.01l1.06,1.06L9,11.67L12.33,15L19,7.5L17.88,6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"candlestick_chart\": {\n    \"name\": \"candlestick_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"9,4 7,4 7,6 5,6 5,18 7,18 7,20 9,20 9,18 11,18 11,6 9,6\\\"></polygon></g><g><polygon points=\\\"19,8 17,8 17,4 15,4 15,8 13,8 13,15 15,15 15,20 17,20 17,15 19,15\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"7.25,3 5.75,3 5.75,5 4,5 4,15 5.75,15 5.75,17 7.25,17 7.25,15 9,15 9,5 7.25,5\\\"></polygon></g><g><polygon points=\\\"16,7 14.25,7 14.25,3 12.75,3 12.75,7 11,7 11,13 12.75,13 12.75,17 14.25,17 14.25,13 16,13\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"bar_chart\": {\n    \"name\": \"bar_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"7\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"13\\\"></rect><rect height=\\\"16\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"12\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"vertical_align_bottom\": {\n    \"name\": \"vertical_align_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off\": {\n    \"name\": \"money_off\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.53.12-1.03.3-1.48.54l1.47 1.47c.41-.17.91-.27 1.51-.27zM5.33 4.06L4.06 5.33 7.5 8.77c0 2.08 1.56 3.21 3.91 3.91l3.51 3.51c-.34.48-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.82-.55 2.45-1.12l2.22 2.22 1.27-1.27L5.33 4.06z\\\"></path>\"\n      }\n    }\n  },\n  \"format_shapes\": {\n    \"name\": \"format_shapes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z\\\"></path>\"\n      }\n    }\n  },\n  \"rectangle\": {\n    \"name\": \"rectangle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"16\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"12\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"4\\\"></rect></g>\"\n      }\n    }\n  },\n  \"border_style\": {\n    \"name\": \"border_style\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_bulleted_add\": {\n    \"name\": \"format_list_bulleted_add\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21v1z\\\"></path><rect height=\\\"2\\\" width=\\\"13\\\" x=\\\"7\\\" y=\\\"5\\\"></rect><circle cx=\\\"3.5\\\" cy=\\\"18\\\" r=\\\"1.5\\\"></circle><path d=\\\"M18 11H7v2h6.11c1.26-1.24 2.99-2 4.89-2zM7 17v2h4.08c-.05-.33-.08-.66-.08-1s.03-.67.08-1H7z\\\"></path><circle cx=\\\"3.5\\\" cy=\\\"6\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"3.5\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15 10.75c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm2 4.5h-1.5v1.5h-1v-1.5H13v-1h1.5v-1.5h1v1.5H17v1z\\\"></path><rect height=\\\"1.5\\\" width=\\\"11\\\" x=\\\"5.5\\\" y=\\\"5\\\"></rect><path d=\\\"M5.5 13.5V15h4.01c0-.08-.01-.17-.01-.25 0-.43.05-.85.15-1.25H5.5zM15 9.25H5.5v1.5h5.74c.98-.93 2.3-1.5 3.76-1.5z\\\"></path><circle cx=\\\"3\\\" cy=\\\"5.75\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"14.25\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"score\": {\n    \"name\": \"score\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z\\\"></path>\"\n      }\n    }\n  },\n  \"polyline\": {\n    \"name\": \"polyline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"15,16 15,17.26 9,14.26 9,11.09 11.7,8 16,8 16,2 10,2 10,6.9 7.3,10 3,10 3,16 8,16 15,19.5 15,22 21,22 21,16\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"12.5,13.5 12.5,14.49 7.5,11.78 7.5,9.24 9.83,6.5 13,6.5 13,2 8.5,2 8.5,5.75 6.16,8.5 3,8.5 3,13 6.6,13 12.5,16.2 12.5,18 17,18 17,13.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"space_bar\": {\n    \"name\": \"space_bar\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9v4H6V9H4v6h16V9z\\\"></path>\"\n      }\n    }\n  },\n  \"functions\": {\n    \"name\": \"functions\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7z\\\"></path>\"\n      }\n    }\n  },\n  \"format_italic\": {\n    \"name\": \"format_italic\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_left\": {\n    \"name\": \"format_align_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"line_axis\": {\n    \"name\": \"line_axis\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"22,7.43 20.59,6.02 16.56,10.55 9.5,4 2,11.51 3.5,13.01 9.64,6.86 15.23,12.04 13.5,13.99 9.5,9.99 2,17.5 3.5,19 9.5,12.99 13.5,16.99 16.69,13.4 20.59,17.01 22,15.6 18.02,11.9\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"14.68,10.61 18,6.88 16.88,5.89 13.62,9.56 8,4 2,10.01 3.06,11.07 8,6.12 12.62,10.68 11.27,12.2 8,8.93 2,14.94 3.06,16 8,11.05 11.33,14.38 13.69,11.73 17,15.01 18.06,13.95\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"vertical_distribute\": {\n    \"name\": \"vertical_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,10.5v3h10v-3H7z M2,20v2h20v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"border_all\": {\n    \"name\": \"border_all\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart_outlined\": {\n    \"name\": \"pie_chart_outlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\\\"></path>\"\n      }\n    }\n  },\n  \"multiline_chart\": {\n    \"name\": \"multiline_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_distribute\": {\n    \"name\": \"horizontal_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,2h-2v20h2V2z M13.5,7h-3v10h3V7z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_note\": {\n    \"name\": \"edit_note\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,10h11v2H3V10z M3,8h11V6H3V8z M3,16h7v-2H3V16z M18.01,12.87l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71 c0.39,0.39,0.39,1.02,0,1.41l-0.71,0.71L18.01,12.87z M17.3,13.58l-5.3,5.3V21h2.12l5.3-5.3L17.3,13.58z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M16.78,11.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06 l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L16.78,11.99z M16.19,12.58L11.77,17H10v-1.77l4.42-4.42L16.19,12.58z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_center\": {\n    \"name\": \"align_vertical_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"22,11 17,11 17,6 14,6 14,11 10,11 10,3 7,3 7,11 1.84,11 1.84,13 7,13 7,21 10,21 10,13 14,13 14,18 17,18 17,13 22,13\\\"></polygon>\"\n      }\n    }\n  },\n  \"highlight\": {\n    \"name\": \"highlight\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M6,14l3,3v5h6v-5l3-3V9H6V14z M11,2h2v3h-2V2z M3.5,5.88l1.41-1.41l2.12,2.12L5.62,8L3.5,5.88z M16.96,6.59l2.12-2.12 l1.41,1.41L18.38,8L16.96,6.59z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"format_list_numbered\": {\n    \"name\": \"format_list_numbered\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z\\\"></path>\"\n      }\n    }\n  },\n  \"mode\": {\n    \"name\": \"mode\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"3,17.25 3,21 6.75,21 17.81,9.94 14.06,6.19\\\"></polygon></g><g><path d=\\\"M20.71,5.63l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83C21.1,6.65,21.1,6.02,20.71,5.63z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"border_clear\": {\n    \"name\": \"border_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_horizontal_left\": {\n    \"name\": \"align_horizontal_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,7H6v3h16V7z M16,14H6v3h10V14z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_money\": {\n    \"name\": \"attach_money\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z\\\"></path>\"\n      }\n    }\n  },\n  \"publish\": {\n    \"name\": \"publish\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"text_fields\": {\n    \"name\": \"text_fields\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M2.5,4v3h5v12h3V7h5V4H2.5z M21.5,9h-9v3h3v7h3v-7h3V9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"format_list_numbered_rtl\": {\n    \"name\": \"format_list_numbered_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm1-9h1V4h-2v1h1zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zM2 5h14v2H2zm0 12h14v2H2zm0-6h14v2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"post_add\": {\n    \"name\": \"post_add\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z\\\"></path><path d=\\\"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"9\\\"></rect><polygon points=\\\"7,12 7,14 15,14 15,12 12,12\\\"></polygon><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M14,15H5V6h6V5H5C4.45,5,4,5.45,4,6V15c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V9h-1V15z\\\"></path><polygon points=\\\"7,8 7,9 11,9 12,9 12,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"10\\\"></rect><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"12\\\"></rect><polygon points=\\\"15,3 14,3 14,5 14,5 12,5 12,6 14,6 14,8 15,8 15,6 15,6 17,6 17,5 15,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"align_horizontal_center\": {\n    \"name\": \"align_horizontal_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"11,2 13,2 13,7 21,7 21,10 13,10 13,14 18,14 18,17 13,17 13,22 11,22 11,17 6,17 6,14 11,14 11,10 3,10 3,7 11,7\\\"></polygon>\"\n      }\n    }\n  },\n  \"format_list_bulleted\": {\n    \"name\": \"format_list_bulleted\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"hexagon\": {\n    \"name\": \"hexagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"17.2,3 6.8,3 1.6,12 6.8,21 17.2,21 22.4,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"6,3 2,10 6,17 14,17 18,10 14,3\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"superscript\": {\n    \"name\": \"superscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,6l-1,0v1h2v1l-3,0V6c0-0.55,0.45-1,1-1l1,0l0-1h-2V3l2,0c0.55,0,1,0.45,1,1v1C18,5.55,17.55,6,17,6z M5.63,16h1.9 l2.43-3.87h0.08L12.47,16h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,6h-1.9l3.09,4.8L5.63,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bubble_chart\": {\n    \"name\": \"bubble_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7.2\\\" cy=\\\"14.4\\\" r=\\\"3.2\\\"></circle><circle cx=\\\"14.8\\\" cy=\\\"18\\\" r=\\\"2\\\"></circle><circle cx=\\\"15.2\\\" cy=\\\"8.8\\\" r=\\\"4.8\\\"></circle>\"\n      }\n    }\n  },\n  \"border_right\": {\n    \"name\": \"border_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_emoticon\": {\n    \"name\": \"insert_emoticon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"move_down\": {\n    \"name\": \"move_down\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,11c0,2.45,1.76,4.47,4.08,4.91l-1.49-1.49L7,13l4,4.01L7,21l-1.41-1.41l1.58-1.58l0-0.06C3.7,17.54,1,14.58,1,11 c0-3.87,3.13-7,7-7h3v2H8C5.24,6,3,8.24,3,11z\\\"></path><path d=\\\"M22,11V4h-9v7H22z M20,9h-5V6h5V9z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><path d=\\\"M11,9h7V4h-7V9z M12.5,5.5h4v2h-4V5.5z\\\"></path><path d=\\\"M5.57,11.94l1.06-1.06l2.87,2.87l-2.88,2.88l-1.06-1.06l1.06-1.06V14.5H6.25C3.35,14.5,1,12.15,1,9.25 C1,6.35,3.35,4,6.25,4H9.5v1.5H6.25C4.18,5.5,2.5,7.18,2.5,9.25C2.5,11.32,4.18,13,6.25,13h0.37v-0.01L5.57,11.94z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_increase\": {\n    \"name\": \"text_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M20,11h3v2h-3 v3h-2v-3h-3v-2h3V8h2V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,9.25H18v1.5h-2.25V13h-1.5v-2.25H12v-1.5h2.25V7h1.5V9.25z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73 L4.49,12.44z M6.07,8.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"merge_type\": {\n    \"name\": \"merge_type\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_right\": {\n    \"name\": \"format_align_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_page_break\": {\n    \"name\": \"insert_page_break\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2v-3H4L4,20z\\\"></path><path d=\\\"M20,8l-6-6H6C4.9,2,4.01,2.9,4.01,4l0,7H20V8z M13,9V3.5L18.5,9H13z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"1\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,16.5C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-3H4V16.5z\\\"></path><path d=\\\"M16,6l-4-4H5.5C4.67,2,4,2.67,4,3.5V10h12V6z M11,7V3l4,4H11z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"14\\\" y=\\\"11\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mode_comment\": {\n    \"name\": \"mode_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_photo\": {\n    \"name\": \"insert_photo\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_comment\": {\n    \"name\": \"insert_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart_outlined\": {\n    \"name\": \"insert_chart_outlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2.5 2.1h-15V5h15v14.1zm0-16.1h-15c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_invitation\": {\n    \"name\": \"insert_invitation\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_reset\": {\n    \"name\": \"format_color_reset\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 14c0-4-6-10.8-6-10.8s-1.33 1.51-2.73 3.52l8.59 8.59c.09-.42.14-.86.14-1.31zm-.88 3.12L12.5 12.5 5.27 5.27 4 6.55l3.32 3.32C6.55 11.32 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.96-1.5l2.63 2.63 1.27-1.27-2.74-2.74z\\\"></path>\"\n      }\n    }\n  },\n  \"format_clear\": {\n    \"name\": \"format_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.27 5L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21 18 19.73 3.55 5.27 3.27 5zM6 5v.18L8.82 8h2.4l-.72 1.68 2.1 2.1L14.21 8H20V5H6z\\\"></path>\"\n      }\n    }\n  },\n  \"border_left\": {\n    \"name\": \"border_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"title\": {\n    \"name\": \"title\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 4v3h5.5v12h3V7H19V4z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_handle\": {\n    \"name\": \"drag_handle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,9H4v2h16V9z M4,15h16v-2H4V15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"border_vertical\": {\n    \"name\": \"border_vertical\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_top\": {\n    \"name\": \"vertical_align_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_outer\": {\n    \"name\": \"border_outer\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"linear_scale\": {\n    \"name\": \"linear_scale\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19.5,9.5c-1.03,0-1.9,0.62-2.29,1.5h-2.92C13.9,10.12,13.03,9.5,12,9.5s-1.9,0.62-2.29,1.5H6.79 C6.4,10.12,5.53,9.5,4.5,9.5C3.12,9.5,2,10.62,2,12s1.12,2.5,2.5,2.5c1.03,0,1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5 s1.9-0.62,2.29-1.5h2.92c0.39,0.88,1.26,1.5,2.29,1.5c1.38,0,2.5-1.12,2.5-2.5S20.88,9.5,19.5,9.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"attach_file\": {\n    \"name\": \"attach_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"table_rows\": {\n    \"name\": \"table_rows\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,8H3V4h18V8z M21,10H3v4h18V10z M21,16H3v4h18V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M17,7H3V4h14V7z M17,8.5H3v3h14V8.5z M17,13H3v3h14V13z\\\"></path>\"\n      }\n    }\n  },\n  \"format_paint\": {\n    \"name\": \"format_paint\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_rule\": {\n    \"name\": \"horizontal_rule\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill-rule=\\\"evenodd\\\" height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"11\\\"></rect></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"4\\\" y=\\\"9\\\"></rect></g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9\\\"></rect></g>\"\n      }\n    }\n  },\n  \"subscript\": {\n    \"name\": \"subscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,15l-1,0v1h2v1h-3v-2c0-0.55,0.45-1,1-1l1,0l0-1h-2v-1l2,0c0.55,0,1,0.45,1,1v1C18,14.55,17.55,15,17,15z M5.63,14h1.9 l2.43-3.87h0.08L12.47,14h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,4h-1.9l3.09,4.8L5.63,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_inner\": {\n    \"name\": \"border_inner\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"wrap_text\": {\n    \"name\": \"wrap_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"schema\": {\n    \"name\": \"schema\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,7.75v1.5h-2v-1.5h-2V6.5h2V2H4v4.5h2v1.25H4v4.5h2V14H4v4.5h5.5V14h-2v-1.75h2v-1.5h2v1.5H17v-4.5H11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_fill\": {\n    \"name\": \"format_color_fill\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17 s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5 c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z M2,20h20v4H2V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.25,14c0.96,0,1.75-0.79,1.75-1.75c0-1.16-1.75-3.06-1.75-3.06s-1.75,1.9-1.75,3.06C13.5,13.21,14.29,14,15.25,14z\\\"></path><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M7.03,12.6C7.3,12.87,7.65,13,8,13s0.7-0.13,0.97-0.4l3.63-3.63c0.53-0.53,0.53-1.4,0-1.93L5.57,0L4.51,1.06l2.43,2.43 L3.4,7.03c-0.53,0.53-0.53,1.4,0,1.93L7.03,12.6z M8,4.56L11.44,8H4.56L8,4.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_textdirection_r_to_l\": {\n    \"name\": \"format_textdirection_r_to_l\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"pentagon\": {\n    \"name\": \"pentagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"2,9 6,21 18,21 22,9 12,2\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"10,2 2,7.5 5.3,17 14.7,17 18,7.5 10,2\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"strikethrough_s\": {\n    \"name\": \"strikethrough_s\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M6.85,7.08C6.85,4.37,9.45,3,12.24,3c1.64,0,3,0.49,3.9,1.28c0.77,0.65,1.46,1.73,1.46,3.24h-3.01 c0-0.31-0.05-0.59-0.15-0.85c-0.29-0.86-1.2-1.28-2.25-1.28c-1.86,0-2.34,1.02-2.34,1.7c0,0.48,0.25,0.88,0.74,1.21 C10.97,8.55,11.36,8.78,12,9H7.39C7.18,8.66,6.85,8.11,6.85,7.08z M21,12v-2H3v2h9.62c1.15,0.45,1.96,0.75,1.96,1.97 c0,1-0.81,1.67-2.28,1.67c-1.54,0-2.93-0.54-2.93-2.51H6.4c0,0.55,0.08,1.13,0.24,1.58c0.81,2.29,3.29,3.3,5.67,3.3 c2.27,0,5.3-0.89,5.3-4.05c0-0.3-0.01-1.16-0.48-1.94H21V12z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"mode_edit_outline\": {\n    \"name\": \"mode_edit_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"3,17.25 3,21 6.75,21 17.81,9.94 14.06,6.19\\\"></polygon></g><g><path d=\\\"M20.71,5.63l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83C21.1,6.65,21.1,6.02,20.71,5.63z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"11.62,5.38 3,14 3,17 6,17 14.62,8.38\\\"></polygon><path d=\\\"M16.71,4.88l-1.59-1.59c-0.39-0.39-1.02-0.39-1.41,0l-1.03,1.02l3,3l1.03-1.02C17.1,5.9,17.1,5.27,16.71,4.88z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stacked_line_chart\": {\n    \"name\": \"stacked_line_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off_csred\": {\n    \"name\": \"money_off_csred\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.53,7.43c0.42-0.31,0.93-0.47,1.54-0.47s1.11,0.16,1.5,0.49c0.39,0.32,0.65,0.7,0.79,1.12l1.89-0.8 c-0.24-0.71-0.71-1.35-1.4-1.92c-0.5-0.4-1.12-0.65-1.85-0.77V3h-2v2.11c-0.41,0.08-0.79,0.21-1.14,0.39 c-0.35,0.18-0.64,0.39-0.9,0.63l1.43,1.43C10.43,7.52,10.48,7.47,10.53,7.43z M2.81,2.81L1.39,4.22l12.35,12.35 C13.31,16.85,12.79,17,12.19,17c-0.71,0-1.32-0.23-1.83-0.7c-0.5-0.47-0.86-1.07-1.06-1.81l-1.98,0.8 c0.34,1.17,0.95,2.08,1.83,2.73c0.57,0.42,1.19,0.68,1.85,0.83V21h2v-2.08c0.44-0.07,0.87-0.17,1.29-0.35 c0.34-0.14,0.64-0.32,0.92-0.53l4.57,4.57l1.41-1.41L2.81,2.81z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pie_chart_outline\": {\n    \"name\": \"pie_chart_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g enable-background=\\\"new\\\"><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M13,4.07c3.61,0.45,6.48,3.33,6.93,6.93H13V4.07z M4,12 c0-4.06,3.07-7.44,7-7.93v15.87C7.07,19.44,4,16.06,4,12z M13,19.93V13h6.93C19.48,16.61,16.61,19.48,13,19.93z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"type_specimen\": {\n    \"name\": \"type_specimen\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z\\\"></path><path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M16.63,14.5l-0.8-2.3h-3.63 l-0.82,2.3H9.81l3.38-9h1.61l3.38,9H16.63z\\\"></path><polygon points=\\\"13.96,7.17 12.65,10.89 15.34,10.89 14.04,7.17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,2h-10C5.67,2,5,2.67,5,3.5v10C5,14.33,5.67,15,6.5,15h10c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M13.54,12l-0.63-1.79h-2.83L9.46,12H8.24l2.63-7h1.25l2.63,7H13.54z\\\"></path><path d=\\\"M3.5,5H2v11.5C2,17.33,2.67,18,3.5,18H15v-1.5H3.5V5z\\\"></path><polygon points=\\\"11.47,6.3 10.45,9.19 12.55,9.19 11.53,6.3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"margin\": {\n    \"name\": \"margin\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zM7 7h2v2H7zm8 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_indent_decrease\": {\n    \"name\": \"format_indent_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_top\": {\n    \"name\": \"align_vertical_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,22h3V6H7V22z M14,16h3V6h-3V16z\\\"></path>\"\n      }\n    }\n  },\n  \"checklist\": {\n    \"name\": \"checklist\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,7h-9v2h9V7z M22,15h-9v2h9V15z M5.54,11L2,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,11z M5.54,19L2,15.46 l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,7.5h-7V6h7V7.5z M18,12.5h-7V14h7V12.5z M3.06,5.11L2,6.17L4.83,9l4.6-4.6L8.36,3.34L4.83,6.88L3.06,5.11z M3.06,11.61 L2,12.67l2.83,2.83l4.6-4.6L8.36,9.84l-3.54,3.54L3.06,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_drive_file\": {\n    \"name\": \"insert_drive_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z\\\"></path>\"\n      }\n    }\n  },\n  \"data_object\": {\n    \"name\": \"data_object\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,7v2c0,0.55-0.45,1-1,1H2v4h1c0.55,0,1,0.45,1,1v2c0,1.65,1.35,3,3,3h3v-2H7c-0.55,0-1-0.45-1-1v-2 c0-1.3-0.84-2.42-2-2.83v-0.34C5.16,11.42,6,10.3,6,9V7c0-0.55,0.45-1,1-1h3V4H7C5.35,4,4,5.35,4,7z\\\"></path><path d=\\\"M21,10c-0.55,0-1-0.45-1-1V7c0-1.65-1.35-3-3-3h-3v2h3c0.55,0,1,0.45,1,1v2c0,1.3,0.84,2.42,2,2.83v0.34 c-1.16,0.41-2,1.52-2,2.83v2c0,0.55-0.45,1-1,1h-3v2h3c1.65,0,3-1.35,3-3v-2c0-0.55,0.45-1,1-1h1v-4H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,6.25v1.5C4,8.16,3.66,8.5,3.25,8.5H2v3h1.25C3.66,11.5,4,11.84,4,12.25v1.5C4,14.99,5.01,16,6.25,16H8v-1.5H6.25 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.16-0.88-2.11-2-2.24V9.99c1.12-0.12,2-1.08,2-2.24v-1.5c0-0.41,0.34-0.75,0.75-0.75H8V4 H6.25C5.01,4,4,5.01,4,6.25z\\\"></path><path d=\\\"M16.75,8.5C16.34,8.5,16,8.16,16,7.75v-1.5C16,5.01,14.99,4,13.75,4H12v1.5h1.75c0.41,0,0.75,0.34,0.75,0.75v1.5 c0,1.16,0.88,2.11,2,2.24v0.03c-1.12,0.12-2,1.08-2,2.24v1.5c0,0.41-0.34,0.75-0.75,0.75H12V16h1.75c1.24,0,2.25-1.01,2.25-2.25 v-1.5c0-0.41,0.34-0.75,0.75-0.75H18v-3H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"height\": {\n    \"name\": \"height\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><polygon points=\\\"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><polygon points=\\\"11,7 14,7 10,3.01 6,7 9,7 9,13 6,13 10,16.99 14,13 11,13\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"format_size\": {\n    \"name\": \"format_size\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"border_color\": {\n    \"name\": \"border_color\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,24H2v-4h20V24z M13.06,5.19l3.75,3.75L7.75,18H4v-3.75L13.06,5.19z M17.88,7.87l-3.75-3.75 l1.83-1.83c0.39-0.39,1.02-0.39,1.41,0l2.34,2.34c0.39,0.39,0.39,1.02,0,1.41L17.88,7.87z\\\" enable-background=\\\"new\\\"></path>\"\n      }\n    }\n  },\n  \"draw\": {\n    \"name\": \"draw\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.85,10.39l1.06-1.06c0.78-0.78,0.78-2.05,0-2.83L18.5,5.09c-0.78-0.78-2.05-0.78-2.83,0l-1.06,1.06L18.85,10.39z M13.19,7.56L4,16.76V21h4.24l9.19-9.19L13.19,7.56z M19,17.5c0,2.19-2.54,3.5-5,3.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 c1.54,0,3-0.73,3-1.5c0-0.47-0.48-0.87-1.23-1.2l1.48-1.48C18.32,15.45,19,16.29,19,17.5z M4.58,13.35C3.61,12.79,3,12.06,3,11 c0-1.8,1.89-2.63,3.56-3.36C7.59,7.18,9,6.56,9,6c0-0.41-0.78-1-2-1C5.74,5,5.2,5.61,5.17,5.64C4.82,6.05,4.19,6.1,3.77,5.76 C3.36,5.42,3.28,4.81,3.62,4.38C3.73,4.24,4.76,3,7,3c2.24,0,4,1.32,4,3c0,1.87-1.93,2.72-3.64,3.47C6.42,9.88,5,10.5,5,11 c0,0.31,0.43,0.6,1.07,0.86L4.58,13.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.35,8.83l0.71-0.71c0.59-0.59,0.59-1.54,0-2.12L15,4.94c-0.59-0.59-1.54-0.59-2.12,0l-0.71,0.71L15.35,8.83z M11.11,6.71 L4,13.82V17h3.18l7.11-7.11L11.11,6.71z M4.51,11.18C3.59,10.76,3,10.16,3,9.25c0-1.31,1.39-1.99,2.61-2.59 C6.45,6.24,7.5,5.73,7.5,5.25C7.5,4.91,6.83,4.5,6,4.5c-0.94,0-1.36,0.46-1.38,0.48C4.35,5.29,3.88,5.33,3.57,5.07 C3.26,4.81,3.21,4.35,3.46,4.03C3.55,3.93,4.34,3,6,3c1.47,0,3,0.84,3,2.25C9,6.66,7.55,7.37,6.27,8C5.56,8.35,4.5,8.87,4.5,9.25 c0,0.3,0.48,0.56,1.17,0.78L4.51,11.18z M14.14,12.16c0.83,0.48,1.36,1.14,1.36,2.09c0,1.94-2.44,2.75-3.75,2.75 C11.34,17,11,16.66,11,16.25s0.34-0.75,0.75-0.75c0.77,0,2.25-0.49,2.25-1.25c0-0.39-0.38-0.71-0.97-0.97L14.14,12.16z\\\"></path>\"\n      }\n    }\n  },\n  \"border_horizontal\": {\n    \"name\": \"border_horizontal\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"short_text\": {\n    \"name\": \"short_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M4,9h16v2H4V9z M4,13h10v2H4V13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"add_chart\": {\n    \"name\": \"add_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 9.99h2v7H6zm8 3h2v4h-2zm-4-6h2v10h-2zM20 7V4h-2v3h-3v2h3v3h2V9h3V7zm-2 12H4V5h12V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5h-2v5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_quote\": {\n    \"name\": \"format_quote\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z\\\"></path>\"\n      }\n    }\n  },\n  \"move_up\": {\n    \"name\": \"move_up\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,13c0-2.45,1.76-4.47,4.08-4.91L5.59,9.59L7,11l4-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46,1,9.42,1,13 c0,3.87,3.13,7,7,7h3v-2H8C5.24,18,3,15.76,3,13z\\\"></path><path d=\\\"M13,13v7h9v-7H13z M20,18h-5v-3h5V18z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><path d=\\\"M11,16h7v-5h-7V16z M12.5,12.5h4v2h-4V12.5z\\\"></path><path d=\\\"M5.57,8.06l1.06,1.06L9.5,6.25L6.62,3.37L5.56,4.43l1.06,1.06V5.5H6.25C3.35,5.5,1,7.85,1,10.75C1,13.65,3.35,16,6.25,16 H9.5v-1.5H6.25c-2.07,0-3.75-1.68-3.75-3.75C2.5,8.68,4.18,7,6.25,7h0.37v0.01L5.57,8.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_strikethrough\": {\n    \"name\": \"format_strikethrough\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"south_west\": {\n    \"name\": \"south_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel\": {\n    \"name\": \"cancel\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"pivot_table_chart\": {\n    \"name\": \"pivot_table_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8h11V5c0-1.1-.9-2-2-2h-9v5zM3 8h5V3H5c-1.1 0-2 .9-2 2v3zm2 13h3V10H3v9c0 1.1.9 2 2 2zm8 1l-4-4 4-4zm1-9l4-4 4 4z\\\"></path><path d=\\\"M14.58 19H13v-2h1.58c1.33 0 2.42-1.08 2.42-2.42V13h2v1.58c0 2.44-1.98 4.42-4.42 4.42z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_down_circle\": {\n    \"name\": \"arrow_drop_down_circle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 12l-4-4h8l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"north_east\": {\n    \"name\": \"north_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z\\\"></path>\"\n      }\n    }\n  },\n  \"check\": {\n    \"name\": \"check\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"apps_outage\": {\n    \"name\": \"apps_outage\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,8h4V4H4V8z M10,20h4v-4h-4V20z M4,20h4v-4H4V20z M4,14h4v-4H4V14z M10,14h4v-4h-4V14z M16,20h4v-4h-4V20z M19,0 c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S21.76,0,19,0z M19.5,8h-1V7h1V8z M19.5,6h-1V2h1V6z M16,14h4v-2.07 C19.67,11.98,19.34,12,19,12c-1.07,0-2.09-0.24-3-0.68V14z M10,4v4h2.68C12.24,7.09,12,6.07,12,5c0-0.34,0.02-0.67,0.07-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,7H4V4h3V7z M7,8.5H4v3h3V8.5z M11.5,8.5h-3v3h3V8.5z M7,13H4v3h3V13z M11.5,13h-3v3h3V13z M16,13h-3v3h3V13z M20,4 c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S20,1.79,20,4z M16.5,5h-1v1h1V5z M16.5,2h-1v2h1V2z M16,9.5v2h-3V8.61 C13.86,9.17,14.89,9.5,16,9.5z M11.39,7H8.5V4h2C10.5,5.11,10.83,6.14,11.39,7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_down\": {\n    \"name\": \"arrow_drop_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 10l5 5 5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward\": {\n    \"name\": \"arrow_forward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"more_vert\": {\n    \"name\": \"more_vert\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"last_page\": {\n    \"name\": \"last_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"west\": {\n    \"name\": \"west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z\\\"></path>\"\n      }\n    }\n  },\n  \"east\": {\n    \"name\": \"east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_direction\": {\n    \"name\": \"assistant_direction\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><title>Asset 1</title><path d=\\\"M14 10H9c-.6 0-1 .4-1 1v4h2v-3h4v2.5l3.5-3.5L14 7.5V10zm-2-9C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm7.73 11.58l-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58c-.27-.36-.27-.8 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16z\\\"></title>\"\n      }\n    }\n  },\n  \"apps\": {\n    \"name\": \"apps\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"more_horiz\": {\n    \"name\": \"more_horiz\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"menu_open\": {\n    \"name\": \"menu_open\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward_ios\": {\n    \"name\": \"arrow_forward_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><polygon points=\\\"6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><polygon points=\\\"4.59,16.59 6,18 14,10 6,2 4.59,3.41 11.17,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"arrow_back\": {\n    \"name\": \"arrow_back\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_upward\": {\n    \"name\": \"arrow_upward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_left\": {\n    \"name\": \"subdirectory_arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_navigation\": {\n    \"name\": \"assistant_navigation\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm3.57 16L12 15.42 8.43 17l-.37-.37L12 7l3.95 9.63-.38.37z\\\"></path>\"\n      }\n    }\n  },\n  \"waterfall_chart\": {\n    \"name\": \"waterfall_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4h3v16h-3zM3 13h3v7H3zm11-9h3v3h-3zm-4 1h3v4h-3zm-3 5h3v4H7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_downward\": {\n    \"name\": \"arrow_downward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_right\": {\n    \"name\": \"switch_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" transform=\\\"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios\": {\n    \"name\": \"arrow_back_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.67 3.87L9.9 2.1 0 12l9.9 9.9 1.77-1.77L3.54 12z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_right\": {\n    \"name\": \"chevron_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_left\": {\n    \"name\": \"chevron_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios_new\": {\n    \"name\": \"arrow_back_ios_new\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><polygon points=\\\"17.77,3.77 16,2 6,12 16,22 17.77,20.23 9.54,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon points=\\\"14.41,3.41 13,2 5,10 13,18 14.41,16.59 7.83,10\\\"></polygon>\"\n      }\n    }\n  },\n  \"unfold_more\": {\n    \"name\": \"unfold_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen\": {\n    \"name\": \"fullscreen\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"close\": {\n    \"name\": \"close\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z\\\"></path>\"\n      }\n    }\n  },\n  \"payments\": {\n    \"name\": \"payments\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9-1c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-6v11c0 1.1-.9 2-2 2H4v-2h17V7h2z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_more\": {\n    \"name\": \"expand_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen_exit\": {\n    \"name\": \"fullscreen_exit\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_home_work\": {\n    \"name\": \"add_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,11.68V11L8,6l-7,5v10h5v-6h4v6h1.68C11.25,20.09,11,19.08,11,18C11,15.21,12.64,12.81,15,11.68z\\\"></path><path d=\\\"M23,13.11V3H10v1.97l7,5v1.11c0.33-0.05,0.66-0.08,1-0.08C19.96,11,21.73,11.81,23,13.11z M17,7h2v2h-2V7z\\\"></path><g><path d=\\\"M23,18c0-2.76-2.24-5-5-5s-5,2.24-5,5s2.24,5,5,5S23,20.76,23,18z M17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M19,11.23V3H9v1.96l2.5,1.82V6H13v1.5h-0.51l1.01,0.74v1.48C13.98,9.58,14.48,9.5,15,9.5C16.58,9.5,18,10.17,19,11.23z M14.5,6H16v1.5h-1.5V6z\\\"></path></g><g><path d=\\\"M12,10.39V9L6.5,5L1,9v8h4v-4.5h3V17h1.88c-0.24-0.62-0.38-1.29-0.38-2C9.5,13.07,10.5,11.38,12,10.39z\\\"></path></g><g><path d=\\\"M19,15c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4S19,17.21,19,15z M14.5,17v-1.5H13v-1h1.5V13h1v1.5H17v1h-1.5V17 H14.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"offline_share\": {\n    \"name\": \"offline_share\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.6 10.26v1.31L17 9.33 14.6 7.1v1.28c-2.33.32-3.26 1.92-3.6 3.52.83-1.13 1.93-1.64 3.6-1.64zM16 23H6c-1.1 0-2-.9-2-2V5h2v16h10v2zm2-22h-8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 15h-8V4h8v12z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_right\": {\n    \"name\": \"arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 17l5-5-5-5v10z\\\"></path><path d=\\\"M0 24V0h24v24H0z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"app_settings_alt\": {\n    \"name\": \"app_settings_alt\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.81 12.74l-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48c-.07-.13-.21-.2-.35-.2-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01c-.03-.21-.2-.36-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38c-.05-.02-.1-.03-.15-.03-.14 0-.27.07-.35.2l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63c-.16.12-.2.34-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38c.05.02.1.03.15.03.14 0 .27-.07.35-.2l.85-1.48c.1-.17.06-.39-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM17 17h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1z\\\"></path>\"\n      }\n    }\n  },\n  \"south\": {\n    \"name\": \"south\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z\\\"></path>\"\n      }\n    }\n  },\n  \"maps_home_work\": {\n    \"name\": \"maps_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"1,11 1,21 6,21 6,15 10,15 10,21 15,21 15,11 8,6\\\"></polygon><path d=\\\"M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10z M19,9h-2V7h2V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"menu\": {\n    \"name\": \"menu\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z\\\"></path>\"\n      }\n    }\n  },\n  \"double_arrow\": {\n    \"name\": \"double_arrow\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12\\\"></polygon><polygon points=\\\"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"9.21,15 12.43,15 16,10 12.43,5 9.21,5 12.79,10\\\"></polygon><polygon points=\\\"4.21,15 7.43,15 11,10 7.43,5 4.21,5 7.79,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"home_work\": {\n    \"name\": \"home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"1,11 1,21 6,21 6,15 10,15 10,21 15,21 15,11 8,6\\\"></polygon><path d=\\\"M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10z M19,9h-2V7h2V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9,3v1.96l2.5,1.82V6H13v1.5h-0.51l1.01,0.74V17H19V3H9z M16,14h-1.5v-1.5H16V14z M16,10.75h-1.5v-1.5H16V10.75z M16,7.5 h-1.5V6H16V7.5z\\\"></path></g><g><polygon points=\\\"1,9 1,17 5,17 5,13 8,13 8,17 12,17 12,9 6.5,5\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"north\": {\n    \"name\": \"north\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z\\\"></path>\"\n      }\n    }\n  },\n  \"north_west\": {\n    \"name\": \"north_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z\\\"></path>\"\n      }\n    }\n  },\n  \"campaign\": {\n    \"name\": \"campaign\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM4 9c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1v4h2v-4h1l5 3V6L8 9H4zm11.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_less\": {\n    \"name\": \"expand_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_right\": {\n    \"name\": \"subdirectory_arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_up\": {\n    \"name\": \"arrow_drop_up\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14l5-5 5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less\": {\n    \"name\": \"unfold_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_circle_down\": {\n    \"name\": \"expand_circle_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,15.5L7.5,11l1.42-1.41L12,12.67 l3.08-3.08L16.5,11L12,15.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,12.6L6.63,9.23l1.06-1.06L10,10.48l2.31-2.31l1.06,1.06 L10,12.6z\\\"></path>\"\n      }\n    }\n  },\n  \"legend_toggle\": {\n    \"name\": \"legend_toggle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,15H4v-1h12V15z M16,11H4v1h12V11z M4,9l4-2.78L12,9l4-2.78V5l-4,2.78L8,5L4,7.78L4,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"first_page\": {\n    \"name\": \"first_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z\\\"></path><path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"switch_left\": {\n    \"name\": \"switch_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z\\\"></path>\"\n      }\n    }\n  },\n  \"refresh\": {\n    \"name\": \"refresh\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_east\": {\n    \"name\": \"south_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_left\": {\n    \"name\": \"arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M14 7l-5 5 5 5V7z\\\"></path><path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"play_arrow\": {\n    \"name\": \"play_arrow\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5v14l11-7z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle_on\": {\n    \"name\": \"shuffle_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"library_add\": {\n    \"name\": \"library_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_video\": {\n    \"name\": \"featured_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9H3V5h9v7z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_play_next\": {\n    \"name\": \"queue_play_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h2v-2H3V5h18v8h2V5C23,3.89,22.1,3,21,3z M13,10V7h-2v3H8v2h3v3 h2v-3h3v-2H13z M24,18l-4.5,4.5L18,21l3-3l-3-3l1.5-1.5L24,18z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"pause_circle\": {\n    \"name\": \"pause_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M9,13H7.5V7H9V13z M12.5,13H11V7h1.5V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mic_off\": {\n    \"name\": \"mic_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18l5.98 5.99zM4.27 3L3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z\\\"></path>\"\n      }\n    }\n  },\n  \"radio\": {\n    \"name\": \"radio\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z\\\"></path>\"\n      }\n    }\n  },\n  \"art_track\": {\n    \"name\": \"art_track\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_forward\": {\n    \"name\": \"fast_forward\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add\": {\n    \"name\": \"playlist_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18z M3,16h7v-2H3V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect><polygon points=\\\"14.75,11.25 14.75,8 13.25,8 13.25,11.25 10,11.25 10,12.75 13.25,12.75 13.25,16 14.75,16 14.75,12.75 18,12.75 18,11.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"5k\": {\n    \"name\": \"5k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"forward_30\": {\n    \"name\": \"forward_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z\\\"></path><path d=\\\"M10.06,15.38c-0.29,0-0.62-0.17-0.62-0.54H8.59c0,0.97,0.9,1.23,1.45,1.23c0.87,0,1.51-0.46,1.51-1.25 c0-0.66-0.45-0.9-0.71-1c0.11-0.05,0.65-0.32,0.65-0.92c0-0.21-0.05-1.22-1.44-1.22c-0.62,0-1.4,0.35-1.4,1.16h0.85 c0-0.34,0.31-0.48,0.57-0.48c0.59,0,0.58,0.5,0.58,0.54c0,0.52-0.41,0.59-0.63,0.59H9.56v0.66h0.45c0.65,0,0.7,0.42,0.7,0.64 C10.71,15.11,10.5,15.38,10.06,15.38z\\\"></path><path d=\\\"M13.85,11.68c-0.14,0-1.44-0.08-1.44,1.82v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82V13.5 C15.3,11.59,13.99,11.68,13.85,11.68z M14.45,14.35c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01c0.38,0,0.6,0.26,0.6,1.01V14.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"note\": {\n    \"name\": \"note\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 10l-6-6H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99l16-.01c1.1 0 2-.89 2-1.99v-8zm-7-4.5l5.5 5.5H15V5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"9k\": {\n    \"name\": \"9k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"1k_plus\": {\n    \"name\": \"1k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zm5.75-2.5H18V14h-1v-1.5h-1.5v-1H17V10h1v1.5h1.5v1z\\\"></path>\"\n      }\n    }\n  },\n  \"2k\": {\n    \"name\": \"2k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9.5H8v1h3V15H6.5v-2.5c0-.55.45-1 1-1h2v-1h-3V9H10c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1zm8 2.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"skip_previous\": {\n    \"name\": \"skip_previous\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 6h2v12H6zm3.5 6l8.5 6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"library_add_check\": {\n    \"name\": \"library_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M4,16h10v1H4c-0.55,0-1-0.45-1-1V6h1V16z M17,4v9c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h9 C16.55,3,17,3.45,17,4z M15.04,6.38l-0.71-0.71l-4.24,4.24L8.67,8.5L7.96,9.21l2.12,2.12L15.04,6.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"queue\": {\n    \"name\": \"queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"movie\": {\n    \"name\": \"movie\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"airplay\": {\n    \"name\": \"airplay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><polygon points=\\\"6,22 18,22 12,16\\\"></polygon><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"control_camera\": {\n    \"name\": \"control_camera\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.54 5.54L13.77 7.3 12 5.54 10.23 7.3 8.46 5.54 12 2zm2.92 10l-1.76-1.77L18.46 12l-1.76-1.77 1.76-1.77L22 12zm-10 2.92l1.77-1.76L12 18.46l1.77-1.76 1.77 1.76L12 22zm-2.92-10l1.76 1.77L5.54 12l1.76 1.77-1.76 1.77L2 12z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle>\"\n      }\n    }\n  },\n  \"replay_10\": {\n    \"name\": \"replay_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11.99,5V1l-5,5l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6h-2c0,4.42,3.58,8,8,8s8-3.58,8-8S16.41,5,11.99,5z\\\"></path><g><path d=\\\"M10.89,16h-0.85v-3.26l-1.01,0.31v-0.69l1.77-0.63h0.09V16z\\\"></path><path d=\\\"M15.17,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1c0.18,0.07,0.33,0.18,0.46,0.33 s0.23,0.34,0.3,0.57s0.11,0.5,0.11,0.82V14.24z M14.32,13.38c0-0.19-0.01-0.35-0.04-0.48s-0.07-0.23-0.12-0.31 s-0.11-0.14-0.19-0.17s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31 s-0.04,0.29-0.04,0.48v0.97c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05 s0.18-0.02,0.25-0.05s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32s0.04-0.29,0.04-0.48V13.38z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"videocam_off\": {\n    \"name\": \"videocam_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6.5l-4 4V7c0-.55-.45-1-1-1H9.82L21 17.18V6.5zM3.27 2L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.54-.18L19.73 21 21 19.73 3.27 2z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check_circle\": {\n    \"name\": \"playlist_add_check_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M7,7h7v2H7V7z M7,10h7v2H7V10z M10,15H7v-2h3V15z M14.05,18.36l-2.83-2.83l1.41-1.41l1.41,1.41L17.59,12L19,13.41L14.05,18.36z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M6,6h5.5v1.5H6V6z M6,8.5h5.5V10H6V8.5z M8.5,12.5H6V11h2.5 V12.5z M11.76,15l-2.12-2.12l1.06-1.06l1.06,1.06l2.47-2.47l1.06,1.06L11.76,15z\\\"></path>\"\n      }\n    }\n  },\n  \"6k_plus\": {\n    \"name\": \"6k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.5 12.5H8V14H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"8k_plus\": {\n    \"name\": \"8k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.5 12.5H8V14H6.5zm0-2.5H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"mic\": {\n    \"name\": \"mic\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_5\": {\n    \"name\": \"replay_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z\\\"></path><g><path d=\\\"M10.69,13.9l0.25-2.17h2.39v0.71h-1.7l-0.11,0.92c0.03-0.02,0.07-0.03,0.11-0.05s0.09-0.04,0.15-0.05 s0.12-0.03,0.18-0.04s0.13-0.02,0.2-0.02c0.21,0,0.39,0.03,0.55,0.1s0.3,0.16,0.41,0.28s0.2,0.27,0.25,0.45s0.09,0.38,0.09,0.6 c0,0.19-0.03,0.37-0.09,0.54s-0.15,0.32-0.27,0.45s-0.27,0.24-0.45,0.31s-0.39,0.12-0.64,0.12c-0.18,0-0.36-0.03-0.53-0.08 s-0.32-0.14-0.46-0.24s-0.24-0.24-0.32-0.39s-0.13-0.33-0.13-0.53h0.84c0.02,0.18,0.08,0.32,0.19,0.41s0.25,0.15,0.42,0.15 c0.11,0,0.2-0.02,0.27-0.06s0.14-0.1,0.18-0.17s0.08-0.15,0.11-0.25s0.03-0.2,0.03-0.31s-0.01-0.21-0.04-0.31 s-0.07-0.17-0.13-0.24s-0.13-0.12-0.21-0.15s-0.19-0.05-0.3-0.05c-0.08,0-0.15,0.01-0.2,0.02s-0.11,0.03-0.15,0.05 s-0.08,0.05-0.12,0.07s-0.07,0.06-0.1,0.09L10.69,13.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"play_circle_filled\": {\n    \"name\": \"play_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"repeat\": {\n    \"name\": \"repeat\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_play_list\": {\n    \"name\": \"featured_play_list\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8H3V9h9v2zm0-4H3V5h9v2z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset\": {\n    \"name\": \"web_asset\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"not_interested\": {\n    \"name\": \"not_interested\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset_off\": {\n    \"name\": \"web_asset_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H20c1.11,0,2,0.9,2,2v12c0,0.34-0.09,0.66-0.23,0.94L20,17.17V8h-9.17L6.83,4z M20.49,23.31L17.17,20H4 c-1.11,0-2-0.9-2-2V6c0-0.34,0.08-0.66,0.23-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M15.17,18l-10-10H4v10H15.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.14,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84L17.78,17.78z M3.5,14.5V7h1.38l7.5,7.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.14,0.73-0.38,1l-1.12-1.12V7H9.12L6.12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_settings\": {\n    \"name\": \"video_settings\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z\\\"></path><polygon points=\\\"15,12 9,8 9,16\\\"></polygon><path d=\\\"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3,5h14v4h1V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5v10c0,0.55,0.45,1,1,1h8v-1H3V5z\\\"></path><path d=\\\"M19.1,14.2l0.87-0.69l-0.88-1.52l-1.03,0.4c-0.16-0.12-0.34-0.22-0.53-0.3L17.38,11h-1.75l-0.16,1.1 c-0.18,0.08-0.36,0.18-0.52,0.3l-1.04-0.41l-0.88,1.52l0.87,0.7c-0.02,0.2-0.03,0.4,0,0.6l-0.87,0.69l0.88,1.52l1.03-0.4 c0.16,0.12,0.34,0.22,0.53,0.3L15.63,18h1.75l0.16-1.1c0.18-0.08,0.36-0.18,0.52-0.3l1.04,0.41l0.88-1.52l-0.87-0.7 C19.12,14.59,19.12,14.4,19.1,14.2z M16.5,15.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C17.5,15.05,17.05,15.5,16.5,15.5z\\\"></path><polygon points=\\\"8,13 12.5,10 8,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"recent_actors\": {\n    \"name\": \"recent_actors\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption\": {\n    \"name\": \"closed_caption\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_up\": {\n    \"name\": \"volume_up\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z\\\"></path>\"\n      }\n    }\n  },\n  \"explicit\": {\n    \"name\": \"explicit\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h4v2h-4v2h4v2H9V7h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_play\": {\n    \"name\": \"playlist_play\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"16,13 16,21 22,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,10.5 13,17 18,13.75\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"volume_down_alt\": {\n    \"name\": \"volume_down_alt\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,7.97v8.05c1.48-0.73,2.5-2.25,2.5-4.02S15.48,8.71,14,7.97z M3,9v6h4l5,5V4L7,9H3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M3,8v4h3l4,4V4L6,8H3z M11.5,13.15v-6.3c1.18,0.56,2,1.76,2,3.15S12.68,12.59,11.5,13.15z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_down\": {\n    \"name\": \"volume_down\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z\\\"></path>\"\n      }\n    }\n  },\n  \"missed_video_call\": {\n    \"name\": \"missed_video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"lyrics\": {\n    \"name\": \"lyrics\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,9c0-2.04,1.24-3.79,3-4.57V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9c1.1,0,2-0.9,2-2v-2.42 C15.24,12.8,14,11.05,14,9z M10,14H6v-2h4V14z M13,11H6V9h7V11z M13,8H6V6h7V8z\\\"></path><path d=\\\"M20,6.18C19.69,6.07,19.35,6,19,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V3h2V1h-4V6.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,7.5c0-1.48,0.81-2.76,2-3.45V3.5C14,2.67,13.33,2,12.5,2h-9C2.67,2,2,2.67,2,3.5V18l3-3h7.5c0.83,0,1.5-0.67,1.5-1.5 v-2.56C12.81,10.25,12,8.97,12,7.5z M8,12H5v-1.5h3V12z M11,9.25H5v-1.5h6V9.25z M11,6.5H5V5h6V6.5z\\\"></path><path d=\\\"M17,5.21C16.69,5.08,16.36,5,16,5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-5H20V1h-3V5.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interpreter_mode\": {\n    \"name\": \"interpreter_mode\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.5,16.5c-0.83,0-1.5-0.67-1.5-1.5v-2.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5V15C22,15.83,21.33,16.5,20.5,16.5z M20,20h1c0,0,0-1.54,0-1.54c1.69-0.24,3-1.7,3-3.46h-1c0,1.38-1.12,2.5-2.5,2.5S18,16.38,18,15h-1c0,1.76,1.31,3.22,3,3.46 C20,18.46,20,20,20,20z M9,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c0.47,0,0.92,0.08,1.34,0.23C9.5,5.26,9,6.57,9,8 c0,1.43,0.5,2.74,1.34,3.77C9.92,11.92,9.47,12,9,12z M7.11,13.13C5.79,14.05,5,15.57,5,17.22V20H1v-2.78 c0-1.12,0.61-2.15,1.61-2.66C3.85,13.92,5.37,13.37,7.11,13.13z M11,8c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4 S11,10.21,11,8z M18.32,20c-1.67-0.81-2.82-2.52-2.82-4.5c0-0.89,0.23-1.73,0.64-2.45C15.77,13.02,15.39,13,15,13 c-2.53,0-4.71,0.7-6.39,1.56C7.61,15.07,7,16.1,7,17.22V20L18.32,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,10c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,5.34,9,7S10.34,10,12,10z M16.87,13.38c-0.62,0-1.12-0.5-1.12-1.12v-1.88 c0-0.62,0.5-1.12,1.13-1.12c0.62,0,1.12,0.5,1.12,1.12v1.88C18,12.87,17.5,13.38,16.87,13.38z M16.5,16h0.75c0,0,0-1.15,0-1.15 c1.27-0.18,2.25-1.28,2.25-2.6h-0.75c0,1.03-0.84,1.88-1.88,1.88S15,13.28,15,12.25h-0.75c0,1.32,0.98,2.42,2.25,2.6 C16.5,14.85,16.5,16,16.5,16z M8.38,9.67C7.83,8.92,7.5,8,7.5,7c0-1,0.33-1.92,0.88-2.67C7.96,4.12,7.5,4,7,4C5.34,4,4,5.34,4,7 s1.34,3,3,3C7.5,10,7.96,9.88,8.38,9.67z M4.5,16H1v-1.91c0-0.7,0.36-1.36,0.97-1.72c1.29-0.76,2.76-1.23,4.33-1.35 C5.89,11.22,4.5,12.2,4.5,14.09V16z M6,16v-1.91c0-0.7,0.36-1.36,0.97-1.72C8.44,11.5,10.16,11,12,11c0.49,0,0.97,0.04,1.45,0.1 c-0.82,1.84-0.03,4.01,1.79,4.9H6z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_off\": {\n    \"name\": \"closed_caption_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.5 5.5v13h-15v-13h15zM19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"7k_plus\": {\n    \"name\": \"7k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 15H6.25l1.38-4.5H5V9h3.5c.67 0 1.15.65.96 1.29L8 15zm8 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"stop_circle\": {\n    \"name\": \"stop_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M16,16H8V8h8V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M13,13H7V7h6V13z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle_outline\": {\n    \"name\": \"pause_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"hd\": {\n    \"name\": \"hd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 12H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_from_queue\": {\n    \"name\": \"remove_from_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M21,3H3C1.89,3,1,3.89,1,5v12c0,1.1,0.89,2,2,2h5v2h8v-2h5c1.1,0,1.99-0.9,1.99-2L23,5C23,3.89,22.1,3,21,3z M21,17H3V5 h18V17z M16,10v2H8v-2H16z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"skip_next\": {\n    \"name\": \"skip_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pause\": {\n    \"name\": \"pause\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h4V5H6v14zm8-14v14h4V5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_disabled\": {\n    \"name\": \"closed_caption_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H19c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-3.38-3.38C17.84,14.59,18,14.32,18,14v-1h-1.5v0.5h-0.17 l-1.83-1.83V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v0.17L6.83,4z M19.78,22.61L17.17,20H5c-1.11,0-2-0.9-2-2V6 c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M11,13.83L10.17,13H9.5v0.5h-2v-3h0.17L6.4,9.22 C6.16,9.41,6,9.68,6,10v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V13.83z\\\"></path>\"\n      }\n    }\n  },\n  \"audio_file\": {\n    \"name\": \"audio_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M16,13h-3v3.75 c0,1.24-1.01,2.25-2.25,2.25S8.5,17.99,8.5,16.75c0-1.24,1.01-2.25,2.25-2.25c0.46,0,0.89,0.14,1.25,0.38V11h4V13z M13,9V3.5 L18.5,9H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V6L12,2z M13.5,11H11v3 c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2c0.37,0,0.7,0.11,1,0.28V9h3.5V11z M11,7V3l4,4H11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8k\": {\n    \"name\": \"8k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 12.5h1.5V14H8zM8 10h1.5v1.5H8zm11-7H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"4k\": {\n    \"name\": \"4k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 10.5h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.5zm6 1.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing_disabled\": {\n    \"name\": \"hearing_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11,8c0,0.45-0.15,0.85-0.4,1.19L7.81,6.4C8.15,6.15,8.55,6,9,6C10.1,6,11,6.9,11,8z M17.07,17.07L2.93,2.93L2.22,3.64 l2.27,2.27C4.19,6.54,4,7.25,4,8h1c0-0.47,0.09-0.92,0.24-1.34l1.82,1.82C7.24,9.2,7.8,9.76,8.52,9.94l2.1,2.1c0,0,0,0,0,0 c-0.6,0.46-1.23,0.93-1.56,1.92c-0.39,1.16-0.81,1.58-1.42,1.9C7.42,15.95,7.17,16,6.92,16c-0.65,0-1.26-0.42-1.62-1H4.2 c0.42,1.12,1.5,2,2.72,2c0.4,0,0.8-0.08,1.16-0.24c0.96-0.5,1.51-1.21,1.93-2.49c0.23-0.69,0.64-1,1.21-1.43 c0.04-0.03,0.07-0.06,0.11-0.09l5.03,5.03L17.07,17.07z M9.04,4C11.26,4,13,5.71,13,7.9c0,0.72-0.22,1.51-0.63,2.24 c-0.1,0.19-0.21,0.34-0.32,0.49l0.72,0.72c0.16-0.22,0.32-0.45,0.47-0.72C13.73,9.75,14,8.78,14,7.9C14,5.15,11.83,3,9.04,3 C7.75,3,6.59,3.5,5.7,4.29l0.71,0.71C7.12,4.38,8.03,4,9.04,4z M16,8c0-2.19-1-4.14-2.58-5.42l-0.72,0.72C14.1,4.39,15,6.09,15,8 c0,1.55-0.6,2.95-1.57,4.02l0.71,0.71C15.29,11.48,16,9.83,16,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fiber_dvr\": {\n    \"name\": \"fiber_dvr\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M17.5,10.5h2v1h-2V10.5z M4.5,10.5h2v3h-2V10.5z M21,3H3C1.89,3,1,3.89,1,5v14c0,1.1,0.89,2,2,2h18c1.11,0,2-0.9,2-2V5 C23,3.89,22.11,3,21,3z M8,13.5C8,14.35,7.35,15,6.5,15H3V9h3.5C7.35,9,8,9.65,8,10.5V13.5z M12.62,15h-1.5L9.37,9h1.5l1,3.43 l1-3.43h1.5L12.62,15z M21,11.5c0,0.6-0.4,1.15-0.9,1.4L21,15h-1.5l-0.85-2H17.5v2H16V9h3.5c0.85,0,1.5,0.65,1.5,1.5V11.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"video_library\": {\n    \"name\": \"video_library\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l6 4.5-6 4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing\": {\n    \"name\": \"hearing\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"games\": {\n    \"name\": \"games\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"4k_plus\": {\n    \"name\": \"4k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 10.5h-1V15H8v-1.5H5V9h1.5v3H8V9h1.5v3h1v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"call_to_action\": {\n    \"name\": \"call_to_action\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3v-3h18v3z\\\"></path>\"\n      }\n    }\n  },\n  \"play_disabled\": {\n    \"name\": \"play_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm11.75 11.47l-.11-.11.11.11z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5.19V5l11 7-2.55 1.63L8 5.19zm12 14.54l-5.11-5.11L8 7.73 4.27 4 3 5.27l5 5V19l5.33-3.4 5.4 5.4L20 19.73z\\\"></path>\"\n      }\n    }\n  },\n  \"slow_motion_video\": {\n    \"name\": \"slow_motion_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.05 9.79L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_manual_record\": {\n    \"name\": \"fiber_manual_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"8\\\"></circle>\"\n      }\n    }\n  },\n  \"sort_by_alpha\": {\n    \"name\": \"sort_by_alpha\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm.75.75h22.5v22.5H.75z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.94 4.66h-4.72l2.36-2.36zm-4.69 14.71h4.66l-2.33 2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_queue\": {\n    \"name\": \"add_to_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_30\": {\n    \"name\": \"replay_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z\\\"></path><g><path d=\\\"M9.56,13.49h0.45c0.21,0,0.37-0.05,0.48-0.16s0.16-0.25,0.16-0.43c0-0.08-0.01-0.15-0.04-0.22s-0.06-0.12-0.11-0.17 s-0.11-0.09-0.18-0.11s-0.16-0.04-0.25-0.04c-0.08,0-0.15,0.01-0.22,0.03s-0.13,0.05-0.18,0.1s-0.09,0.09-0.12,0.15 s-0.05,0.13-0.05,0.2H8.65c0-0.18,0.04-0.34,0.11-0.48s0.17-0.27,0.3-0.37s0.27-0.18,0.44-0.23s0.35-0.08,0.54-0.08 c0.21,0,0.41,0.03,0.59,0.08s0.33,0.13,0.46,0.23s0.23,0.23,0.3,0.38s0.11,0.33,0.11,0.53c0,0.09-0.01,0.18-0.04,0.27 s-0.07,0.17-0.13,0.25s-0.12,0.15-0.2,0.22s-0.17,0.12-0.28,0.17c0.24,0.09,0.42,0.21,0.54,0.39s0.18,0.38,0.18,0.61 c0,0.2-0.04,0.38-0.12,0.53s-0.18,0.29-0.32,0.39s-0.29,0.19-0.48,0.24s-0.38,0.08-0.6,0.08c-0.18,0-0.36-0.02-0.53-0.07 s-0.33-0.12-0.46-0.23s-0.25-0.23-0.33-0.38s-0.12-0.34-0.12-0.55h0.85c0,0.08,0.02,0.15,0.05,0.22s0.07,0.12,0.13,0.17 s0.12,0.09,0.2,0.11s0.16,0.04,0.25,0.04c0.1,0,0.19-0.01,0.27-0.04s0.15-0.07,0.2-0.12s0.1-0.11,0.13-0.18s0.04-0.15,0.04-0.24 c0-0.11-0.02-0.21-0.05-0.29s-0.08-0.15-0.14-0.2s-0.13-0.09-0.22-0.11s-0.18-0.04-0.29-0.04H9.56V13.49z\\\"></path><path d=\\\"M15.3,14.24c0,0.32-0.03,0.6-0.1,0.82s-0.17,0.42-0.29,0.57s-0.28,0.26-0.45,0.33s-0.37,0.1-0.59,0.1 s-0.41-0.03-0.59-0.1s-0.33-0.18-0.46-0.33s-0.23-0.34-0.3-0.57s-0.11-0.5-0.11-0.82V13.5c0-0.32,0.03-0.6,0.1-0.82 s0.17-0.42,0.29-0.57s0.28-0.26,0.45-0.33s0.37-0.1,0.59-0.1s0.41,0.03,0.59,0.1s0.33,0.18,0.46,0.33s0.23,0.34,0.3,0.57 s0.11,0.5,0.11,0.82V14.24z M14.45,13.38c0-0.19-0.01-0.35-0.04-0.48c-0.03-0.13-0.07-0.23-0.12-0.31s-0.11-0.14-0.19-0.17 s-0.16-0.05-0.25-0.05s-0.18,0.02-0.25,0.05s-0.14,0.09-0.19,0.17s-0.09,0.18-0.12,0.31s-0.04,0.29-0.04,0.48v0.97 c0,0.19,0.01,0.35,0.04,0.48s0.07,0.24,0.12,0.32s0.11,0.14,0.19,0.17s0.16,0.05,0.25,0.05s0.18-0.02,0.25-0.05 s0.14-0.09,0.19-0.17s0.09-0.19,0.11-0.32c0.03-0.13,0.04-0.29,0.04-0.48V13.38z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"video_label\": {\n    \"name\": \"video_label\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check\": {\n    \"name\": \"playlist_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"20.59,11.93 16.34,16.17 14.22,14.05 12.81,15.46 16.34,19 22,13.34\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"16.94,9.34 13.4,12.88 11.64,11.11 10.58,12.17 13.4,15 18,10.4\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"subtitles\": {\n    \"name\": \"subtitles\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"library_books\": {\n    \"name\": \"library_books\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_rewind\": {\n    \"name\": \"fast_rewind\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"subscriptions\": {\n    \"name\": \"subscriptions\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6 4l-6-3.27v6.53L16 16z\\\"></path>\"\n      }\n    }\n  },\n  \"9k_plus\": {\n    \"name\": \"9k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.5 10H8v1.5H6.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"av_timer\": {\n    \"name\": \"av_timer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"web\": {\n    \"name\": \"web\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_mute\": {\n    \"name\": \"volume_mute\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 9v6h4l5 5V4l-5 5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"movie_edit\": {\n    \"name\": \"movie_edit\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M4 10h18V6c0-1.1-.9-2-2-2h-3l2 4h-3l-2-4h-2l2 4h-3L9 4H7l2 4H6L4 4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h8v-2H4v-8z\\\"></path></g><g><polygon points=\\\"14,18.88 14,21 16.12,21 21.29,15.83 19.17,13.71\\\"></polygon></g><g><path d=\\\"m22.71 13-.71-.71c-.39-.39-1.02-.39-1.41 0l-.71.71L22 15.12l.71-.71c.39-.39.39-1.02 0-1.41z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M3.5 8.5H18v-3c0-.83-.67-1.5-1.5-1.5h-3L15 7h-2l-1.5-3H10l1.5 3h-2L8 4H6.5L8 7H6L4.5 4h-1C2.67 4 2 4.67 2 5.5v9c0 .83.67 1.5 1.5 1.5H10v-1.5H3.5v-6z\\\"></path></g><g><polygon points=\\\"11.5,15.23 11.5,17 13.27,17 17.44,12.83 15.67,11.06\\\"></polygon></g><g><path d=\\\"m18.85 10.71-1.06-1.06c-.2-.2-.51-.2-.71 0l-.71.71 1.77 1.77.71-.71c.2-.2.2-.52 0-.71z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"volume_off\": {\n    \"name\": \"volume_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z\\\"></path>\"\n      }\n    }\n  },\n  \"replay\": {\n    \"name\": \"replay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"surround_sound\": {\n    \"name\": \"surround_sound\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12c0-2.05.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66l-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12c0 2.05-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"forward_10\": {\n    \"name\": \"forward_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z\\\"></path><polygon points=\\\"10.86,15.94 10.86,11.67 10.77,11.67 9,12.3 9,12.99 10.01,12.68 10.01,15.94\\\"></polygon><path d=\\\"M12.25,13.44v0.74c0,1.9,1.31,1.82,1.44,1.82c0.14,0,1.44,0.09,1.44-1.82v-0.74c0-1.9-1.31-1.82-1.44-1.82 C13.55,11.62,12.25,11.53,12.25,13.44z M14.29,13.32v0.97c0,0.77-0.21,1.03-0.59,1.03c-0.38,0-0.6-0.26-0.6-1.03v-0.97 c0-0.75,0.22-1.01,0.59-1.01C14.07,12.3,14.29,12.57,14.29,13.32z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"snooze\": {\n    \"name\": \"snooze\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-3-9h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle\": {\n    \"name\": \"play_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M9.5,16.5v-9l7,4.5L9.5,16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M8,13.5v-7l5.5,3.5L8,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pause_circle_filled\": {\n    \"name\": \"pause_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle_outline\": {\n    \"name\": \"play_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"video_file\": {\n    \"name\": \"video_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H6.01c-1.1,0-2,0.89-2,2L4,20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M13,9V3.5L18.5,9H13z M14,14l2-1.06v4.12 L14,16v1c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V6L12,2z M13,14 c0,0-0.78-0.55-1.5-1.05V14c0,0.28-0.22,0.5-0.5,0.5H7.5C7.22,14.5,7,14.28,7,14v-3.5C7,10.22,7.22,10,7.5,10H11 c0.28,0,0.5,0.22,0.5,0.5v1.05L13,10.5V14z M11,7V3l4,4H11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one\": {\n    \"name\": \"repeat_one\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_circle\": {\n    \"name\": \"playlist_add_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M7,7h7v2H7V7z M10,15H7v-2h3V15z M7,12v-2h7v2H7z M19,15h-2v2h-2v-2h-2v-2h2v-2h2v2h2V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M6,6h5.5v1.5H6V6z M8.5,12.5H6V11h2.5V12.5z M6,10V8.5h5.5 V10H6z M15.5,12.5H14V14h-1.5v-1.5H11V11h1.5V9.5H14V11h1.5V12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_remove\": {\n    \"name\": \"playlist_remove\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M3,16h7v-2H3V16z M14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14 L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M12.07,17.02l1.94-1.95l1.94,1.95l1.07-1.07l-1.95-1.94 l1.95-1.94L15.95,11l-1.94,1.95L12.07,11L11,12.07l1.95,1.94L11,15.95L12.07,17.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_5\": {\n    \"name\": \"forward_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8c4.42,0,8-3.58,8-8 H18z\\\"></path><path d=\\\"M12.03,15.38c-0.44,0-0.58-0.31-0.6-0.56h-0.84c0.03,0.85,0.79,1.25,1.44,1.25c0.93,0,1.44-0.63,1.44-1.43 c0-1.33-0.97-1.44-1.3-1.44c-0.2,0-0.43,0.05-0.64,0.16l0.11-0.92h1.7v-0.71h-2.39l-0.25,2.17l0.67,0.17 c0.13-0.13,0.28-0.23,0.57-0.23c0.4,0,0.69,0.23,0.69,0.75C12.62,14.64,12.65,15.38,12.03,15.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"5k_plus\": {\n    \"name\": \"5k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 7.5h-3v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H5v-1.5h3v-1H5V9h4.5v1.5zM16 15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"6k\": {\n    \"name\": \"6k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 12.5h1.5V14H8zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 7.5H8v1h2c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"10k\": {\n    \"name\": \"10k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 10.5h1.5v3H10zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 15H6v-4.5H4.5V9h3v6zm5.5-1c0 .55-.45 1-1 1H9.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H12c.55 0 1 .45 1 1v4zm6.5 1h-1.75L16 12.75V15h-1.5V9H16v2.25L17.75 9h1.75l-2.25 3 2.25 3z\\\"></path>\"\n      }\n    }\n  },\n  \"3k\": {\n    \"name\": \"3k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 11c0 .55-.45 1-1 1H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10c.55 0 1 .45 1 1v4zm7 1h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"library_music\": {\n    \"name\": \"library_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_smart_record\": {\n    \"name\": \"fiber_smart_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><g><circle cx=\\\"9\\\" cy=\\\"12\\\" r=\\\"8\\\"></circle><path d=\\\"M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sd\": {\n    \"name\": \"sd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H7c-.55 0-1-.45-1-1V10c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1H9.5v-.5h-2v1H10c.55 0 1 .45 1 1V14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-1h1.5v.5h2zm5 0h2v-3h-2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"high_quality\": {\n    \"name\": \"high_quality\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 11H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"loop\": {\n    \"name\": \"loop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_pin\": {\n    \"name\": \"fiber_pin\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 10.5h2v1h-2zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .85-.65 1.5-1.5 1.5h-2v2H4V9h3.5c.85 0 1.5.65 1.5 1.5v1zm3.5 3.5H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"album\": {\n    \"name\": \"album\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_new\": {\n    \"name\": \"fiber_new\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M8.5,15H7.3 l-2.55-3.5V15H3.5V9h1.25l2.5,3.5V9H8.5V15z M13.5,10.26H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4V10.26z M20.5,14 c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25V14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"queue_music\": {\n    \"name\": \"queue_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,6H3v2h12V6z M15,10H3v2h12V10z M3,16h8v-2H3V16z M17,6v8.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 s3-1.34,3-3V8h3V6H17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8\\\"></rect><path d=\\\"M18,5h-4v6.21C13.69,11.08,13.36,11,13,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-7H18V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"repeat_on\": {\n    \"name\": \"repeat_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"repeat_one_on\": {\n    \"name\": \"repeat_one_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"video_call\": {\n    \"name\": \"video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"new_releases\": {\n    \"name\": \"new_releases\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"7k\": {\n    \"name\": \"7k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 15H7.75l1.38-4.5H6.5V9H10c.67 0 1.15.65.96 1.29L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z\\\"></path>\"\n      }\n    }\n  },\n  \"5g\": {\n    \"name\": \"5g\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,13h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4V13z\\\"></path><path d=\\\"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,10.5h2V12h-3V8h4c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V9.5h-3V10.5z\\\"></path></g><g><path d=\\\"M9,8H6v1.5h2c0.55,0,1,0.45,1,1V12c0,0.55-0.45,1-1,1H5v-1h3v-1.5H5V7h4V8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"3k_plus\": {\n    \"name\": \"3k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9.5 14c0 .55-.45 1-1 1H5v-1.5h3v-1H6v-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v4zm6.5 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm4-2.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"1k\": {\n    \"name\": \"1k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.5 12H9v-4.5H7.5V9h3v6zm7 0h-1.75L14 12.75V15h-1.5V9H14v2.25L15.75 9h1.75l-2.25 3 2.25 3z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_circle_filled\": {\n    \"name\": \"replay_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3L8 7l4-4v3c3.31 0 6 2.69 6 6z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      },\n      \"36\": {\n        \"width\": 36,\n        \"path\": \"<path d=\\\"M0 0h36v36H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M33 18c0 8.28-6.72 15-15 15-8.28 0-15-6.72-15-15C3 9.72 9.72 3 18 3c8.28 0 15 6.72 15 15zM18 9V4.5l-6 6 6 6V12c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H9c0 4.97 4.03 9 9 9s9-4.03 9-9-4.03-9-9-9z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"speed\": {\n    \"name\": \"speed\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44zm-9.79 6.84a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_none\": {\n    \"name\": \"mic_none\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2V4.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\\\"></path>\"\n      }\n    }\n  },\n  \"stop\": {\n    \"name\": \"stop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 6h12v12H6z\\\"></path>\"\n      }\n    }\n  },\n  \"music_video\": {\n    \"name\": \"music_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"equalizer\": {\n    \"name\": \"equalizer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam\": {\n    \"name\": \"videocam\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle\": {\n    \"name\": \"shuffle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z\\\"></path>\"\n      }\n    }\n  },\n  \"branding_watermark\": {\n    \"name\": \"branding_watermark\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-9v-6h9v6z\\\"></path>\"\n      }\n    }\n  },\n  \"2k_plus\": {\n    \"name\": \"2k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9.5 8.5c0 .55-.45 1-1 1h-2v1h3V15H5v-2.5c0-.55.45-1 1-1h2v-1H5V9h3.5c.55 0 1 .45 1 1v1.5zm4.75 3.5l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM20 12.5h-1.5V14h-1v-1.5H16v-1h1.5V10h1v1.5H20v1z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_landscape\": {\n    \"name\": \"crop_landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_pound\": {\n    \"name\": \"currency_pound\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,21c1.93,0,3.62-1.17,4-3l-1.75-0.88C16,18.21,15.33,19,14,19l-4.9,0c0.83-1,1.5-2.34,1.5-4c0-0.35-0.03-0.69-0.08-1 L14,14v-2l-4.18,0C9,10.42,8,9.6,8,8c0-1.93,1.57-3.5,3.5-3.5c1.5,0,2.79,0.95,3.28,2.28L16.63,6c-0.8-2.05-2.79-3.5-5.13-3.5 C8.46,2.5,6,4.96,6,8c0,1.78,0.79,2.9,1.49,4L6,12v2l2.47,0c0.08,0.31,0.13,0.64,0.13,1c0,2.7-2.6,4-2.6,4v2H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.75,4c1.23,0,2.27,0.81,2.62,1.93l1.39-0.59C13.18,3.69,11.6,2.5,9.75,2.5C7.4,2.5,5.5,4.4,5.5,6.75 c0,1.44,0.67,2.33,1.23,3.25L5.5,10v1.5l1.91,0c0.06,0.25,0.09,0.51,0.09,0.8c0,2.2-2,3.2-2,3.2V17H12c1.44,0,2.6-1.01,2.92-2.3 l-1.42-0.6c-0.05,0.78-0.7,1.4-1.5,1.4l-4.18,0C8.47,14.72,9,13.65,9,12.3c0-0.28-0.02-0.55-0.06-0.8l3.06,0V10l-3.55,0 C7.79,8.65,7,8.02,7,6.75C7,5.23,8.23,4,9.75,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3mp\": {\n    \"name\": \"3mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"control_point\": {\n    \"name\": \"control_point\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_small\": {\n    \"name\": \"photo_size_select_small\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_weak\": {\n    \"name\": \"hdr_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_strong\": {\n    \"name\": \"center_focus_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_2\": {\n    \"name\": \"exposure_neg_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17s.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46-.18-.44-.44-.81-.78-1.11-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_16_9\": {\n    \"name\": \"crop_16_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,7H5C3.9,7,3,7.9,3,9v6c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,15H5V9h14V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,7h-11C3.67,7,3,7.67,3,8.5v3C3,12.33,3.67,13,4.5,13h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,7.67,16.33,7,15.5,7z M15.5,11.5h-11v-3h11V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_awesome_motion\": {\n    \"name\": \"auto_awesome_motion\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H4c-1.11 0-2 .9-2 2v10h2V4h10V2zm4 4H8c-1.11 0-2 .9-2 2v10h2V8h10V6zm2 4h-8c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_free\": {\n    \"name\": \"crop_free\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"24mp\": {\n    \"name\": \"24mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm8.5 1h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10zm-3 4H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"4mp\": {\n    \"name\": \"4mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3-8.5h-1v1.5h-1.5V10h-3V5.5H11v3h1.5v-3H14v3h1V10zm.5 8.5H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_horizontal_select\": {\n    \"name\": \"panorama_horizontal_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z\\\"></path>\"\n      }\n    }\n  },\n  \"portrait\": {\n    \"name\": \"portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_one\": {\n    \"name\": \"looks_one\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_bitcoin\": {\n    \"name\": \"currency_bitcoin\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.06,11.57C17.65,10.88,18,9.98,18,9c0-1.86-1.27-3.43-3-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2 c2.21,0,4-1.79,4-4C19,13.55,18.22,12.27,17.06,11.57z M10,7h4c1.1,0,2,0.9,2,2s-0.9,2-2,2h-4V7z M15,17h-5v-4h5c1.1,0,2,0.9,2,2 S16.1,17,15,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.38,10.75c0.9,0,1.62,0.73,1.62,1.62S13.27,14,12.38,14H8.5v-3.25H12.38z M11.38,6C12.27,6,13,6.73,13,7.62 s-0.73,1.62-1.62,1.62H8.5V6H11.38z M8,15.5V17h1.5v-1.5H11V17h1.5l0-1.5c1.67-0.07,3-1.44,3-3.12c0-1.21-0.69-2.26-1.7-2.78 c0.44-0.54,0.7-1.22,0.7-1.97c0-1.33-0.83-2.46-2-2.92l0-1.71H11v1.5H9.5V3H8v1.5H5.5V6H7v8H5.5v1.5H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_wide_angle\": {\n    \"name\": \"panorama_wide_angle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_shade\": {\n    \"name\": \"wb_shade\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 12v2.5l5.5 5.5H22zm0 8h3l-3-3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_3_2\": {\n    \"name\": \"crop_3_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,6H5C3.9,6,3,6.9,3,8v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M19,16H5V8h14V16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,6h-11C3.67,6,3,6.67,3,7.5v5C3,13.33,3.67,14,4.5,14h11c0.83,0,1.5-0.67,1.5-1.5v-5C17,6.67,16.33,6,15.5,6z M15.5,12.5h-11v-5h11V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hide_image\": {\n    \"name\": \"hide_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,5c0-1.1-0.9-2-2-2H5.83L21,18.17V5z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61l1.41-1.41L2.81,2.81z M6,17l3-4l2.25,3l0.82-1.1l2.1,2.1 H6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"exposure\": {\n    \"name\": \"exposure\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_3\": {\n    \"name\": \"filter_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_linear\": {\n    \"name\": \"blur_linear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"60fps_select\": {\n    \"name\": \"60fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,6v6h-3V6H18z M18,4h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M11,6V4H6 C4.9,4,4,4.9,4,6v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H6V6H11z M9,10v2H6v-2H9z M5,22H3v-5h2V22z M9,22H7v-5h2 V22z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip_camera_android\": {\n    \"name\": \"flip_camera_android\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z\\\"></path><path d=\\\"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z\\\"></path><path d=\\\"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,10c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S8,8.9,8,10z\\\"></path><path d=\\\"M7,7H4.83C5.86,5.21,7.79,4,10,4c2.61,0,4.82,1.67,5.65,4h1.06C15.85,5.11,13.17,3,10,3C7.44,3,5.22,4.39,4,6.44V4H3v4h4 V7z\\\"></path><path d=\\\"M13,12v1h2.17c-1.04,1.79-2.96,3-5.17,3c-2.61,0-4.82-1.67-5.65-4H3.29c0.86,2.89,3.54,5,6.71,5c2.56,0,4.78-1.39,6-3.44 V16h1v-4H13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"15mp\": {\n    \"name\": \"15mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM16.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H12V10h3V9h-3V5.5h4.5V7zm-1 7H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flare\": {\n    \"name\": \"flare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"monochrome_photos\": {\n    \"name\": \"monochrome_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M-74 29h48v48h-48V29z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_cloudy\": {\n    \"name\": \"wb_cloudy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.36 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_off\": {\n    \"name\": \"motion_photos_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.84 20.84L3.16 3.16 1.89 4.43l1.89 1.89C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.77l1.89 1.89 1.27-1.28zM12 20c-4.41 0-8-3.59-8-8 0-1.55.45-3 1.22-4.23l1.46 1.46C6.25 10.06 6 11 6 12c0 3.31 2.69 6 6 6 1 0 1.94-.25 2.77-.68l1.46 1.46C15 19.55 13.55 20 12 20zM6.32 3.77C7.93 2.66 9.89 2 12 2c5.52 0 10 4.48 10 10 0 2.11-.66 4.07-1.77 5.68l-1.45-1.45C19.55 15 20 13.55 20 12c0-4.41-3.59-8-8-8-1.55 0-3 .45-4.23 1.22L6.32 3.77zM18 12c0 1-.25 1.94-.68 2.77L9.23 6.68C10.06 6.25 11 6 12 6c3.31 0 6 2.69 6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_twilight\": {\n    \"name\": \"wb_twilight\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7069 -0.7074 0.7074 0.7069 -0.3887 15.676)\\\" width=\\\"3\\\" x=\\\"17.22\\\" y=\\\"7.31\\\"></rect><rect height=\\\"2\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"18\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2992 6.1783)\\\" width=\\\"2\\\" x=\\\"4.31\\\" y=\\\"6.78\\\"></rect><path d=\\\"M5,16h14c0-3.87-3.13-7-7-7S5,12.13,5,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"14.5\\\"></rect><rect height=\\\"2.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1972 12.8523)\\\" width=\\\"2.5\\\" x=\\\"14.16\\\" y=\\\"5.91\\\"></rect><rect height=\\\"2.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.3852 5.1557)\\\" width=\\\"1.5\\\" x=\\\"3.78\\\" y=\\\"5.41\\\"></rect><path d=\\\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grain\": {\n    \"name\": \"grain\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera\": {\n    \"name\": \"photo_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3.2\\\"></circle><path d=\\\"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_din\": {\n    \"name\": \"crop_din\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"logo_dev\": {\n    \"name\": \"logo_dev\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.68,14.98H6V9h1.71 c1.28,0,1.71,1.03,1.71,1.71l0,2.56C9.42,13.95,9,14.98,7.68,14.98z M12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25 c-0.4,0.01-0.74-0.31-0.75-0.71V9.75c-0.01-0.4,0.31-0.74,0.71-0.75h2.28l0,1.07h-1.92v1.39H12.38z M16.88,14.23 c-0.48,1.11-1.33,0.89-1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z\\\"></path><path d=\\\"M7.77,10.12H7.14v3.77h0.63c0.14,0,0.28-0.05,0.42-0.16c0.14-0.1,0.21-0.26,0.21-0.47v-2.52c0-0.21-0.07-0.37-0.21-0.47 C8.05,10.17,7.91,10.12,7.77,10.12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.46,8.43H5.93v3.15h0.53c0.12,0,0.23-0.04,0.35-0.13c0.12-0.09,0.18-0.22,0.18-0.39v-2.1c0-0.18-0.06-0.31-0.18-0.39 C6.69,8.47,6.58,8.43,6.46,8.43z\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M6.38,12.49h-1.4V7.49h1.43c1.07,0,1.43,0.86,1.43,1.43l0,2.14C7.84,11.63,7.49,12.49,6.38,12.49z M10.31,9.55v0.89H9.33v1.16 h1.61v0.89H9.06c-0.34,0.01-0.62-0.26-0.63-0.59V8.12C8.43,7.78,8.7,7.5,9.03,7.5h1.91l0,0.89H9.33v1.16H10.31z M14.07,11.87 c-0.4,0.93-1.11,0.74-1.43,0L11.47,7.5h0.98l0.9,3.43l0.89-3.43h0.98L14.07,11.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"image_search\": {\n    \"name\": \"image_search\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z\\\"></path>\"\n      }\n    }\n  },\n  \"timelapse\": {\n    \"name\": \"timelapse\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"11mp\": {\n    \"name\": \"11mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 5.5v6H9.5V7H8V5.5h3zm5 0v6h-1.5V7H13V5.5h3zm-.5 8.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_original\": {\n    \"name\": \"crop_original\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z\\\"></path>\"\n      }\n    }\n  },\n  \"13mp\": {\n    \"name\": \"13mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H12V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_5_4\": {\n    \"name\": \"crop_5_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,4H5C3.9,4,3,4.9,3,6v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,18H5V6h14V18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,4h-11C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h11c0.83,0,1.5-0.67,1.5-1.5v-9C17,4.67,16.33,4,15.5,4z M15.5,14.5h-11v-9h11V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"timer_10\": {\n    \"name\": \"timer_10\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 7.72V9.4l3-1V18h2V6h-.25L0 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59C21.49 9.07 21 9 20.46 9c-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27-.58 0-1.11.09-1.59.27-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_red_eye\": {\n    \"name\": \"remove_red_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9_plus\": {\n    \"name\": \"filter_9_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8c0-1.11-.9-2-2-2h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_video\": {\n    \"name\": \"switch_video\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"photo\": {\n    \"name\": \"photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"video_stable\": {\n    \"name\": \"video_stable\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h2.95l-2.33,8.73L16.82,18 H4z M20,18h-2.95l2.34-8.73L7.18,6H20V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"healing\": {\n    \"name\": \"healing\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_next\": {\n    \"name\": \"navigate_next\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_5\": {\n    \"name\": \"looks_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9\": {\n    \"name\": \"filter_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2zm0 4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dirty_lens\": {\n    \"name\": \"dirty_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.95 19H20V7H4v12h7.24c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33zM20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm-1.86 13.01c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z\\\"></path>\"\n      }\n    }\n  },\n  \"raw_on\": {\n    \"name\": \"raw_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-1C8,9.7,7.3,9,6.5,9z M6.5,11.5h-2v-1h2V11.5z\\\"></path><path d=\\\"M10.25,9l-1.5,6h1.5l0.38-1.5h1.75l0.37,1.5h1.5l-1.5-6H10.25z M11,12l0.25-1h0.5L12,12H11z\\\"></path><polygon points=\\\"19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 15.5,15 16.98,15 17.74,11.96 18.5,15 19.98,15 21.48,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"raw_off\": {\n    \"name\": \"raw_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.15,14.32 17.74,11.96 18.5,15 19.98,15 21.48,9 19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 14.72,11.9\\\"></polygon><path d=\\\"M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38-1.5h0.04 l9.11,9.11l1.41-1.41L2.81,2.81L1.39,4.22z M6.5,11.5h-2v-1h2V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_5\": {\n    \"name\": \"filter_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama\": {\n    \"name\": \"panorama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_none\": {\n    \"name\": \"filter_none\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_camera_ios\": {\n    \"name\": \"flip_camera_ios\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M12,18 c-2.76,0-5-2.24-5-5H5l2.5-2.5L10,13H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M16.5,15.5L14,13h2c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5h2 L16.5,15.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,5h-2l-2-2H8L6,5H4C3.45,5,3,5.45,3,6v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V6C17,5.45,16.55,5,16,5z M10,14 c-2.21,0-4-1.79-4-4H4.5l2-2l2,2H7c0,1.65,1.35,3,3,3c0.44,0,0.85-0.1,1.23-0.27l0.73,0.73C11.38,13.8,10.72,14,10,14z M13.5,12 l-2-2H13c0-1.65-1.35-3-3-3C9.56,7,9.15,7.1,8.77,7.27L8.04,6.54C8.62,6.2,9.28,6,10,6c2.21,0,4,1.79,4,4h1.5L13.5,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_7\": {\n    \"name\": \"brightness_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"12mp\": {\n    \"name\": \"12mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zM15.5 9h-2v1h3v1.5H12V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm0 5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_photos\": {\n    \"name\": \"add_to_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_actual\": {\n    \"name\": \"photo_size_select_actual\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z\\\"></path>\"\n      }\n    }\n  },\n  \"burst_mode\": {\n    \"name\": \"burst_mode\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_wide_angle_select\": {\n    \"name\": \"panorama_wide_angle_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_lira\": {\n    \"name\": \"currency_lira\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0,5-2.24,5-5h2c0,3.87-3.13,7-7,7H9v-5.16 l-3,1.88l0-2.36l3-1.88v-2.36L6,13l0-2.36L9,8.76z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8,7.32L5.5,8.89v1.77L8,9.09v1.77l-2.5,1.57v1.77L8,12.63V17h1.5c3.04,0,5.5-2.46,5.5-5.5h-1.5c0,2.21-1.79,4-4,4v-3.81 l3-1.88V8.04l-3,1.88V8.15l3-1.88V4.5l-3,1.88V3H8V7.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"slideshow\": {\n    \"name\": \"slideshow\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_auto\": {\n    \"name\": \"wb_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_auto\": {\n    \"name\": \"motion_photos_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M12,18 c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M11.29,7.5h1.43l3.01,8h-1.39l-0.72-2.04h-3.23L9.66,15.5H8.28 L11.29,7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_enhanced_select\": {\n    \"name\": \"hdr_enhanced_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm1 7h-2V9H9V7h2V5h2v2h2v2h-2v2zm11 9h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zm-6-1.5c0 .6-.4 1.1-.9 1.4L18 22h-1.5l-.9-2h-1.1v2H13v-6h3.5c.8 0 1.5.7 1.5 1.5v1zm-1.5 0v-1h-2v1h2zm-13-.5v-2H5v6H3.5v-2.5h-2V22H0v-6h1.5v2h2zm6.5-2c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5H6.5v-6H10zm0 4.5v-3H8v3h2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_6\": {\n    \"name\": \"filter_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_on\": {\n    \"name\": \"mic_external_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM16 2c2.21 0 4 1.79 4 4v16h-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 2.21-1.79 4-4 4s-4-1.79-4-4H5L4 8h6L9 18H8c0 1.1.9 2 2 2s2-.9 2-2V6c0-2.21 1.79-4 4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_8\": {\n    \"name\": \"filter_8\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_drama\": {\n    \"name\": \"filter_drama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_album\": {\n    \"name\": \"photo_album\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M11,4h5v7l-2.5-1.5L11,11V4z M7,18 l2.38-3.17L11,17l2.62-3.5L17,18H7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M14.5,2h-9C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-13C16,2.67,15.33,2,14.5,2z M9,4 h4v6l-2-1l-2,1V4z M6,15l2.12-2.83L9.5,14l1.88-2.5L14,15H6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"image_not_supported\": {\n    \"name\": \"image_not_supported\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.9,21.9l-8.49-8.49l0,0L3.59,3.59l0,0L2.1,2.1L0.69,3.51L3,5.83V19c0,1.1,0.9,2,2,2h13.17l2.31,2.31L21.9,21.9z M5,18 l3.5-4.5l2.5,3.01L12.17,15l3,3H5z M21,18.17L5.83,3H19c1.1,0,2,0.9,2,2V18.17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><g><path d=\\\"M5.41,4H15c0.55,0,1,0.45,1,1v9.59L5.41,4z M16.36,17.78L14.59,16H5c-0.55,0-1-0.45-1-1V5.41L2.22,3.64l0.71-0.71 l14.14,14.14L16.36,17.78z M12.59,14l-2.18-2.18l-1.05,1.32L8,11.33L6,14H12.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"looks_6\": {\n    \"name\": \"looks_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_frames\": {\n    \"name\": \"filter_frames\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_5\": {\n    \"name\": \"brightness_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"16mp\": {\n    \"name\": \"16mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 9H15v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm3 6c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H13zm2.5 2.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"vrpano\": {\n    \"name\": \"vrpano\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.69,4.05C18.66,4.73,15.86,5.5,12,5.5c-3.89,0-6.95-0.84-8.69-1.43C2.67,3.85,2,4.33,2,5.02V19 c0,0.68,0.66,1.17,1.31,0.95C5.36,19.26,8.1,18.5,12,18.5c3.87,0,6.66,0.76,8.69,1.45C21.34,20.16,22,19.68,22,19V5 C22,4.32,21.34,3.84,20.69,4.05z M12,15c-2.34,0-4.52,0.15-6.52,0.41l3.69-4.42l2,2.4L14,10l4.51,5.4C16.52,15.15,14.3,15,12,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8mp\": {\n    \"name\": \"8mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9H13v1.5h-1.5zm0-2.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H11c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flash_off\": {\n    \"name\": \"flash_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.27 3L2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73 3.27 3zM17 10h-4l4-8H7v2.18l8.46 8.46L17 10z\\\"></path>\"\n      }\n    }\n  },\n  \"animation\": {\n    \"name\": \"animation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 2c-2.71 0-5.05 1.54-6.22 3.78-1.28.67-2.34 1.72-3 3C3.54 9.95 2 12.29 2 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78 1.28-.67 2.34-1.72 3-3C20.46 14.05 22 11.71 22 9c0-3.87-3.13-7-7-7zM9 20c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3c-2.76 0-5-2.24-5-5 0-1.12.37-2.16 1-3 0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7 .84-.63 1.87-1 3-1 2.76 0 5 2.24 5 5 0 1.12-.37 2.16-1 3z\\\"></path><path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"flip\": {\n    \"name\": \"flip\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_7_5\": {\n    \"name\": \"crop_7_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,5H5C3.9,5,3,5.9,3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7C21,5.9,20.1,5,19,5z M19,17H5V7h14V17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,5h-11C3.67,5,3,5.67,3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5z M15.5,13.5h-11v-7h11V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tonality\": {\n    \"name\": \"tonality\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_1\": {\n    \"name\": \"brightness_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"10\\\"></circle>\"\n      }\n    }\n  },\n  \"collections\": {\n    \"name\": \"collections\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"image_aspect_ratio\": {\n    \"name\": \"image_aspect_ratio\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"flash_auto\": {\n    \"name\": \"flash_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z\\\"></path>\"\n      }\n    }\n  },\n  \"vignette\": {\n    \"name\": \"vignette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_vintage\": {\n    \"name\": \"filter_vintage\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nature\": {\n    \"name\": \"nature\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z\\\"></path>\"\n      }\n    }\n  },\n  \"thermostat_auto\": {\n    \"name\": \"thermostat_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,12V6c0-1.66-1.34-3-3-3S5,4.34,5,6v6c-1.21,0.91-2,2.37-2,4c0,1.12,0.38,2.14,1,2.97V19h0.02c0.91,1.21,2.35,2,3.98,2 s3.06-0.79,3.98-2H12v-0.03c0.62-0.83,1-1.85,1-2.97C13,14.37,12.21,12.91,11,12z M5,16c0-0.94,0.45-1.84,1.2-2.4L7,13V6 c0-0.55,0.45-1,1-1s1,0.45,1,1v7l0.8,0.6c0.75,0.57,1.2,1.46,1.2,2.4H5z M18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22 L18.62,4z M16.47,9.39l1.31-3.72h0.08l1.31,3.72H16.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"looks\": {\n    \"name\": \"looks\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_on\": {\n    \"name\": \"grid_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant\": {\n    \"name\": \"assistant\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"texture\": {\n    \"name\": \"texture\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_twighlight\": {\n    \"name\": \"wb_twighlight\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.954 8.66l2.12-2.12 1.415 1.414-2.13 2.12zM17.9 14c-.5-2.85-2.95-5-5.9-5s-5.45 2.15-5.9 5h11.8zM2 16h20v4H2zm9-12h2v3h-2zM3.54 7.925L4.954 6.51l2.122 2.122-1.415 1.415z\\\"></path>\"\n      }\n    }\n  },\n  \"contrast\": {\n    \"name\": \"contrast\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,22c5.52,0,10-4.48,10-10S17.52,2,12,2S2,6.48,2,12S6.48,22,12,22z M13,4.07c3.94,0.49,7,3.85,7,7.93s-3.05,7.44-7,7.93 V4.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10.75,3.55C13.98,3.92,16.5,6.67,16.5,10 s-2.52,6.08-5.75,6.45V3.55z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flash_on\": {\n    \"name\": \"flash_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 2v11h3v9l7-12h-4l4-8z\\\"></path>\"\n      }\n    }\n  },\n  \"filter\": {\n    \"name\": \"filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"incomplete_circle\": {\n    \"name\": \"incomplete_circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera_front\": {\n    \"name\": \"photo_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 10.48l4-3.98v11l-4-3.98V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v4.48zm-2-.79V6H4v12h12V9.69zM10 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0 1c1.34 0 4 .67 4 2v1H6v-1c0-1.33 2.66-2 4-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_center_focus\": {\n    \"name\": \"filter_center_focus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_front\": {\n    \"name\": \"camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm5-8H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_filter\": {\n    \"name\": \"photo_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.02 10v9H5V5h9V3H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zM17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_2\": {\n    \"name\": \"exposure_plus_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46-.18-.44-.44-.81-.78-1.11-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_photosphere\": {\n    \"name\": \"panorama_photosphere\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.4 11.32v2.93c-.1.05-2.17.85-3.33 1.17-.94.26-3.84.73-6.07.73-3.7 0-7-.7-9.16-1.8-.08-.04-.16-.06-.24-.1V9.76c6.02-2.84 12.6-2.92 18.8 0v1.56zm-9.39 8.88c-2.5 0-4.87-1.15-6.41-3.12 4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zm10.49 4.71c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83z\\\"></path>\"\n      }\n    }\n  },\n  \"edit\": {\n    \"name\": \"edit\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_1\": {\n    \"name\": \"exposure_plus_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"circle\": {\n    \"name\": \"circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"9mp\": {\n    \"name\": \"9mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 6.5H13V8h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-1-8c0 .55-.45 1-1 1H10V10h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm1 3.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"movie_creation\": {\n    \"name\": \"movie_creation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"leak_remove\": {\n    \"name\": \"leak_remove\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3zM3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.71 0 5.19-.99 7.11-2.62l2.5 2.5C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3 3 4.27zM14 3h-2c0 1.5-.37 2.91-1.02 4.16l1.46 1.46C13.42 6.98 14 5.06 14 3zm5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.52l1.6 1.6zm-4.56-4.56l1.46 1.46C18.09 12.37 19.5 12 21 12v-2c-2.06 0-3.98.58-5.62 1.56z\\\"></path>\"\n      }\n    }\n  },\n  \"10mp\": {\n    \"name\": \"10mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 7H15v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-1 3.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_on\": {\n    \"name\": \"hdr_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"gradient\": {\n    \"name\": \"gradient\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_high\": {\n    \"name\": \"auto_fix_high\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.5 5.6L10 7 8.6 4.5 10 2 7.5 3.4 5 2l1.4 2.5L5 7zm12 9.8L17 14l1.4 2.5L17 19l2.5-1.4L22 19l-1.4-2.5L22 14zM22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z\\\"></path>\"\n      }\n    }\n  },\n  \"cases\": {\n    \"name\": \"cases\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 6V4l-2-2h-5L9 4v2H5v11s1 2 2 2h13s2-.98 2-2V6h-4zM4 9H2v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H4V9zm7-4c0-.55.53-1 1-1h3c.46 0 1 .54 1 1v1h-5V5zM5 6h17v11c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V6z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_stories\": {\n    \"name\": \"auto_stories\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1l-5 5v11l5-4.5V1zM1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5V6c-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6zm22 13.5V6c-.6-.45-1.25-.75-2-1v13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5v2c1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5v-1.1z\\\"></path>\"\n      }\n    }\n  },\n  \"add_a_photo\": {\n    \"name\": \"add_a_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,4V1h2v3h3v2H5v3H3V6H0V4H3z M6,10V7h3V4h7l1.83,2H21c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10H6z M13,19c2.76,0,5-2.24,5-5s-2.24-5-5-5s-5,2.24-5,5S10.24,19,13,19z M9.8,14c0,1.77,1.43,3.2,3.2,3.2s3.2-1.43,3.2-3.2 s-1.43-3.2-3.2-3.2S9.8,12.23,9.8,14z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_on\": {\n    \"name\": \"blur_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"compare\": {\n    \"name\": \"compare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_1\": {\n    \"name\": \"exposure_neg_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_off\": {\n    \"name\": \"mic_external_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.19 21.19L2.81 2.81 1.39 4.22 5.17 8H4l1 10h1c0 2.21 1.79 4 4 4s4-1.79 4-4v-1.17l5.78 5.78 1.41-1.42zM12 18c0 1.1-.9 2-2 2s-2-.9-2-2h1l.56-5.61L12 14.83V18zm2-12v5.17l-2-2V6c0-2.21 1.79-4 4-4s4 1.79 4 4v11.17l-2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2zm-4-1c0 .62-.2 1.18-.52 1.66L5.33 2.51C5.81 2.19 6.38 2 7 2c1.66 0 3 1.34 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"transform\": {\n    \"name\": \"transform\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_back\": {\n    \"name\": \"video_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M5,16 l2.38-3.17L9,15l2.62-3.5L15,16H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"adjust\": {\n    \"name\": \"adjust\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"tune\": {\n    \"name\": \"tune\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_before\": {\n    \"name\": \"navigate_before\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_cw\": {\n    \"name\": \"rotate_90_degrees_cw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4.64,19.37c3.03,3.03,7.67,3.44,11.15,1.25l-1.46-1.46c-2.66,1.43-6.04,1.03-8.28-1.21c-2.73-2.73-2.73-7.17,0-9.9 C7.42,6.69,9.21,6.03,11,6.03V9l4-4l-4-4v3.01c-2.3,0-4.61,0.87-6.36,2.63C1.12,10.15,1.12,15.85,4.64,19.37z M11,13l6,6l6-6l-6-6 L11,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9,11l5,5l5-5l-5-5L9,11z\\\"></path><path d=\\\"M2,11c0,3.87,3.13,7,7,7c1.43,0,2.76-0.43,3.86-1.17l-1.09-1.09C10.96,16.22,10.01,16.5,9,16.5c-3.03,0-5.5-2.47-5.5-5.5 S5.97,5.5,9,5.5v2.25l3-3l-3-3V4C5.13,4,2,7.13,2,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"autofps_select\": {\n    \"name\": \"autofps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12.03,6.3 11.97,6.3 10.95,9.19 13.05,9.19\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"17\\\"></rect><path d=\\\"M12,15c3.31,0,6-2.69,6-6s-2.69-6-6-6S6,5.69,6,9S8.69,15,12,15z M11.37,5h1.25l2.63,7h-1.21l-0.63-1.79h-2.83L9.96,12 H8.74L11.37,5z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"17\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wb_iridescent\": {\n    \"name\": \"wb_iridescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 14.5h14v-6H5v6zM11 .55V3.5h2V.55h-2zm8.04 2.5l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 22.45V19.5h-2v2.95h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 4.46l1.79 1.79 1.41-1.41-1.79-1.79-1.41 1.41zm1.41 15.49l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_front\": {\n    \"name\": \"video_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M10,8 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S8.9,8,10,8z M14,16H6v-0.57c0-0.81,0.48-1.53,1.22-1.85C8.07,13.21,9.01,13,10,13 c0.99,0,1.93,0.21,2.78,0.58C13.52,13.9,14,14.62,14,15.43V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_fish_eye\": {\n    \"name\": \"panorama_fish_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off\": {\n    \"name\": \"hdr_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1l-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_awesome_mosaic\": {\n    \"name\": \"auto_awesome_mosaic\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5v14c0 1.1.89 2 2 2h6V3H5c-1.11 0-2 .9-2 2zm16-2h-6v8h8V5c0-1.1-.9-2-2-2zm-6 18h6c1.1 0 2-.9 2-2v-6h-8v8z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_right\": {\n    \"name\": \"rotate_right\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_tilt_shift\": {\n    \"name\": \"filter_tilt_shift\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"music_off\": {\n    \"name\": \"music_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.27 3L3 4.27l9 9v.28c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4v-1.73L19.73 21 21 19.73 4.27 3zM14 7h4V3h-6v5.18l2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_off\": {\n    \"name\": \"auto_fix_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 1l-2.5 1.4L18 1l1.4 2.5L18 6l2.5-1.4L23 6l-1.4-2.5L23 1zm-8.34 6.22l2.12 2.12-2.44 2.44.81.81 2.55-2.55c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0L11.4 8.84l.81.81 2.45-2.43zm-.78 6.65l-3.75-3.75-6.86-6.86L2 4.53l6.86 6.86-6.57 6.57c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0l6.57-6.57L19.47 22l1.27-1.27-6.86-6.86z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_rupee\": {\n    \"name\": \"currency_rupee\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.66,7C13.1,5.82,11.9,5,10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58,0.84,1.26,1.05,2L18,7v2l-2.02,0c-0.25,2.8-2.61,5-5.48,5 H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0,3.22-1.3,3.46-3L6,9V7L13.66,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.4,17h2.11l-5.4-5.5h0.65c2.26,0,4.11-1.77,4.24-4l1.51,0l0-1.5l-1.69,0c-0.17-0.56-0.46-1.07-0.82-1.5l2.51,0l0-1.5 l-9,0v1.5l3.25,0c1.07,0,1.99,0.61,2.45,1.5L5.5,6v1.5l5.99,0c-0.13,1.4-1.3,2.5-2.74,2.5L6,10v1.5L11.4,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"crop\": {\n    \"name\": \"crop\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"14mp\": {\n    \"name\": \"14mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm7.5 4.5h-1v1.5H15V10h-3V5.5h1.5v3H15v-3h1.5v3h1V10zm-2 4H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"22mp\": {\n    \"name\": \"22mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm6.5 0h-2v1h3v1.5H13V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm-1 5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"straighten\": {\n    \"name\": \"straighten\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_incandescent\": {\n    \"name\": \"wb_incandescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.55 18.54l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 22.45h2V19.5h-2v2.95zM4 10.5H1v2h3v-2zm11-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_roll\": {\n    \"name\": \"camera_roll\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_photo\": {\n    \"name\": \"assistant_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_pause\": {\n    \"name\": \"motion_photos_pause\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,6,12,6z M11,15H9V9h2V15z M15,15h-2V9h2V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M10,5c-2.76,0-5,2.24-5,5c0,2.76,2.24,5,5,5 s5-2.24,5-5C15,7.24,12.76,5,10,5z M9.25,12.5h-1.5v-5h1.5V12.5z M12.25,12.5h-1.5v-5h1.5V12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_circular\": {\n    \"name\": \"blur_circular\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"face_retouching_natural\": {\n    \"name\": \"face_retouching_natural\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M20.77 8.58l-.92 2.01c.09.46.15.93.15 1.41 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-.05.01-.1 0-.14 2.6-.98 4.69-2.99 5.74-5.55C11.58 8.56 14.37 10 17.5 10c.45 0 .89-.04 1.33-.1l-.6-1.32-.88-1.93-1.93-.88-2.79-1.27 2.79-1.27.71-.32C14.87 2.33 13.47 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.47-.33-2.87-.9-4.13l-.33.71z\\\"></path><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M20.6 5.6L19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_rear\": {\n    \"name\": \"camera_rear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z\\\"></path>\"\n      }\n    }\n  },\n  \"deblur\": {\n    \"name\": \"deblur\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3v18c4.97,0,9-4.03,9-9C21,7.03,16.97,3,12,3z\\\"></path><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"10\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"14\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"21\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5.5\\\" cy=\\\"11.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"11.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"17\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"8.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><path d=\\\"M10,3v14c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"face_retouching_off\": {\n    \"name\": \"face_retouching_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49 C21.53,15.44,22,13.78,22,12c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z\\\"></path><path d=\\\"M1.89,3.72l2.19,2.19C2.78,7.6,2,9.71,2,12c0,5.52,4.48,10,10,10c2.29,0,4.4-0.78,6.09-2.08l2.19,2.19l1.41-1.41 L3.31,2.31L1.89,3.72z M16.66,18.49C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_yen\": {\n    \"name\": \"currency_yen\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.92,11 18,11 18,13 13,13 13,15 18,15 18,17 13,17 13,21 11,21 11,17 6,17 6,15 11,15 11,13 6,13 6,11 10.08,11 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"11.29,9.5 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 8.71,9.5 5.5,9.5 5.5,11 9.25,11 9.25,12.5 5.5,12.5 5.5,14 9.25,14 9.25,17 10.75,17 10.75,14 14.5,14 14.5,12.5 10.75,12.5 10.75,11 14.5,11 14.5,9.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_7\": {\n    \"name\": \"filter_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_2\": {\n    \"name\": \"brightness_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_square\": {\n    \"name\": \"crop_square\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_left\": {\n    \"name\": \"rotate_left\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_paused\": {\n    \"name\": \"motion_photos_paused\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"photo_camera_back\": {\n    \"name\": \"photo_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3.17L9 3h6l1.83 2H20zm0 14V7H4v12h16zm-6-7l-3 3.72L9 13l-3 4h12l-4-5z\\\"></path>\"\n      }\n    }\n  },\n  \"hevc\": {\n    \"name\": \"hevc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"5.5,11 4.5,11 4.5,9 3,9 3,15 4.5,15 4.5,12.5 5.5,12.5 5.5,15 7,15 7,9 5.5,9\\\"></polygon><path d=\\\"M21,11v-1c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-1v-3h1V11H21z\\\"></path><polygon points=\\\"14.25,13.5 13.5,9 12,9 13,15 15.5,15 16.5,9 15,9\\\"></polygon><polygon points=\\\"8,9 8,15 11.5,15 11.5,13.5 9.5,13.5 9.5,12.5 11.5,12.5 11.5,11 9.5,11 9.5,10.5 11.5,10.5 11.5,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lens\": {\n    \"name\": \"lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_off\": {\n    \"name\": \"blur_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-.2 4.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm11 7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM2.5 5.27l3.78 3.78L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27zM10 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm11-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"broken_image\": {\n    \"name\": \"broken_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0zm0 0h24v24H0zm21 19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42l3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l3 2.99 4-4 4 4 4-3.99z\\\"></path>\"\n      }\n    }\n  },\n  \"color_lens\": {\n    \"name\": \"color_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"movie_filter\": {\n    \"name\": \"movie_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_plus\": {\n    \"name\": \"hdr_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"8.5\\\" y=\\\"14.5\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"7.5\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,15.5c0,0.6-0.4,1.1-0.9,1.4L12,19h-1.5l-0.9-2 H8.5v2H7v-6h3.5c0.8,0,1.5,0.7,1.5,1.5V15.5z M12,12h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12V12z M17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13 H16v1.49h1.5V16z M17.5,10.5c0,0.8-0.7,1.5-1.5,1.5h-3V6h3c0.8,0,1.5,0.7,1.5,1.5V10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_photo_alternate\": {\n    \"name\": \"add_photo_alternate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8h-3zM5 19l3-4 2 3 3-4 4 5H5z\\\"></path>\"\n      }\n    }\n  },\n  \"shutter_speed\": {\n    \"name\": \"shutter_speed\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_off\": {\n    \"name\": \"timer_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"1\\\"></rect><path d=\\\"M13,8v2.17l6.98,6.98C20.63,15.91,21,14.5,21,13c0-2.12-0.74-4.07-1.97-5.61l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41 l-1.42,1.42C16.07,4.74,14.12,4,12,4c-1.5,0-2.91,0.37-4.15,1.02L10.83,8H13z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12,3,10.98,3,13c0,4.97,4.02,9,9,9c2.02,0,3.88-0.67,5.38-1.79l2.4,2.4l1.41-1.41 L2.81,2.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><path d=\\\"M10.75,7v1.63l5.5,5.5c0.47-0.94,0.75-2,0.75-3.13c0-1.66-0.58-3.19-1.55-4.39l1.08-1.08l-1.06-1.06l-1.08,1.08 C13.19,4.58,11.66,4,10,4C8.87,4,7.81,4.27,6.87,4.75L9.12,7H10.75z\\\"></path><path d=\\\"M1.87,3.99l2.66,2.66C3.57,7.84,3,9.35,3,11c0,3.87,3.13,7,7,7c1.65,0,3.16-0.57,4.35-1.52l1.66,1.66l1.06-1.06L2.93,2.93 L1.87,3.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"iso\": {\n    \"name\": \"iso\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_zero\": {\n    \"name\": \"exposure_zero\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.14 12.5c0 1-.1 1.85-.3 2.55-.2.7-.48 1.27-.83 1.7-.36.44-.79.75-1.3.95-.51.2-1.07.3-1.7.3-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95-.36-.44-.65-1.01-.85-1.7-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19-.32 0-.61.06-.86.18s-.47.31-.64.58c-.17.27-.31.62-.4 1.06s-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19c.33 0 .62-.06.87-.19s.46-.33.63-.61c.17-.28.3-.64.39-1.09.09-.45.13-.99.13-1.62v-2.66z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_4\": {\n    \"name\": \"brightness_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_ccw\": {\n    \"name\": \"rotate_90_degrees_ccw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z\\\"></path>\"\n      }\n    }\n  },\n  \"collections_bookmark\": {\n    \"name\": \"collections_bookmark\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10l-2.5-1.5L15 12V4h5v8z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_4\": {\n    \"name\": \"looks_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 14h-2v-4H9V7h2v4h2V7h2v10z\\\"></path>\"\n      }\n    }\n  },\n  \"control_point_duplicate\": {\n    \"name\": \"control_point_duplicate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_3\": {\n    \"name\": \"looks_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.01 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4c1.1 0 2 .89 2 2v1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_horizontal\": {\n    \"name\": \"panorama_horizontal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7c-3.09 0-6.18-.55-9.12-1.64-.11-.04-.22-.06-.31-.06-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64 3.09 0 6.18.55 9.12 1.64.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_normal\": {\n    \"name\": \"auto_fix_normal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2l-2.5 1.4L17 2l1.4 2.5L17 7l2.5-1.4L22 7l-1.4-2.5zm-7.63 5.29c-.39-.39-1.02-.39-1.41 0L1.29 18.96c-.39.39-.39 1.02 0 1.41l2.34 2.34c.39.39 1.02.39 1.41 0L16.7 11.05c.39-.39.39-1.02 0-1.41l-2.33-2.35zm-1.03 5.49l-2.12-2.12 2.44-2.44 2.12 2.12-2.44 2.44z\\\"></path>\"\n      }\n    }\n  },\n  \"palette\": {\n    \"name\": \"palette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10c1.38,0,2.5-1.12,2.5-2.5c0-0.61-0.23-1.2-0.64-1.67c-0.08-0.1-0.13-0.21-0.13-0.33 c0-0.28,0.22-0.5,0.5-0.5H16c3.31,0,6-2.69,6-6C22,6.04,17.51,2,12,2z M17.5,13c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5C19,12.33,18.33,13,17.5,13z M14.5,9C13.67,9,13,8.33,13,7.5C13,6.67,13.67,6,14.5,6S16,6.67,16,7.5 C16,8.33,15.33,9,14.5,9z M5,11.5C5,10.67,5.67,10,6.5,10S8,10.67,8,11.5C8,12.33,7.33,13,6.5,13S5,12.33,5,11.5z M11,7.5 C11,8.33,10.33,9,9.5,9S8,8.33,8,7.5C8,6.67,8.67,6,9.5,6S11,6.67,11,7.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.41,0-8,3.59-8,8s3.59,8,8,8c1.1,0,2-0.9,2-2c0-0.49-0.18-0.96-0.51-1.34c-0.06-0.08-0.1-0.17-0.1-0.26 c0-0.22,0.18-0.4,0.4-0.4h1.42c2.65,0,4.8-2.15,4.8-4.8C18,5.23,14.41,2,10,2z M5.5,10.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S6.75,8.81,6.75,9.5C6.75,10.19,6.19,10.75,5.5,10.75z M8,7.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S9.25,5.81,9.25,6.5C9.25,7.19,8.69,7.75,8,7.75z M12,7.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C13.25,7.19,12.69,7.75,12,7.75z M14.5,10.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C15.75,10.19,15.19,10.75,14.5,10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_hdr\": {\n    \"name\": \"filter_hdr\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\\\"></path>\"\n      }\n    }\n  },\n  \"timer\": {\n    \"name\": \"timer\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"1\\\"></rect><path d=\\\"M19.03,7.39l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42C16.07,4.74,14.12,4,12,4c-4.97,0-9,4.03-9,9 c0,4.97,4.02,9,9,9s9-4.03,9-9C21,10.88,20.26,8.93,19.03,7.39z M13,14h-2V8h2V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><path d=\\\"M15.45,6.61l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4c-3.87,0-7,3.13-7,7s3.13,7,7,7c3.87,0,7-3.13,7-7 C17,9.34,16.42,7.81,15.45,6.61z M10.75,12h-1.5V7h1.5V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_camera\": {\n    \"name\": \"switch_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy\": {\n    \"name\": \"view_comfy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,4v7h20V4H2z M10,20h12v-7H10V20z M2,20h6v-7H2V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5.25\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"4\\\"></rect><rect height=\\\"5.25\\\" width=\\\"9.5\\\" x=\\\"8.5\\\" y=\\\"10.75\\\"></rect><rect height=\\\"5.25\\\" width=\\\"5\\\" x=\\\"2\\\" y=\\\"10.75\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"audiotrack\": {\n    \"name\": \"audiotrack\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3v9.28c-.47-.17-.97-.28-1.5-.28C8.01 12 6 14.01 6 16.5S8.01 21 10.5 21c2.31 0 4.2-1.75 4.45-4H15V6h4V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"linked_camera\": {\n    \"name\": \"linked_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"3.2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"14\\\" fill=\\\"none\\\" r=\\\"5\\\"></circle><path d=\\\"M16 3.33c2.58 0 4.67 2.09 4.67 4.67H22c0-3.31-2.69-6-6-6v1.33M16 6c1.11 0 2 .89 2 2h1.33c0-1.84-1.49-3.33-3.33-3.33V6\\\"></path><path d=\\\"M24 0H0v24h24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 9c0-1.11-.89-2-2-2V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-5zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"tag_faces\": {\n    \"name\": \"tag_faces\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_yuan\": {\n    \"name\": \"currency_yuan\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.28,12 18,12 18,14 13,14 13,21 11,21 11,14 6,14 6,12 10.72,12 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"10.97,10 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 9.03,10 5.5,10 5.5,11.5 9.25,11.5 9.25,17 10.75,17 10.75,11.5 14.5,11.5 14.5,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"receipt_long\": {\n    \"name\": \"receipt_long\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><g><path d=\\\"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"10\\\"></rect></g>\"\n      }\n    }\n  },\n  \"20mp\": {\n    \"name\": \"20mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.5 7H16v3h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm2-8c0 .55-.45 1-1 1H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm5.5 5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"21mp\": {\n    \"name\": \"21mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM11 9H9v1h3v1.5H7.5V9c0-.55.45-1 1-1h2V7h-3V5.5H11c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm3-3.5h3v6h-1.5V7H14V5.5zm1.5 8.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"euro\": {\n    \"name\": \"euro\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><path d=\\\"M12,15c-1.63,0-3.06-0.79-3.98-2H12l1-2H7.1C7.04,10.68,7,10.34,7,10s0.04-0.68,0.1-1H12l1-2H8.02C8.94,5.79,10.37,5,12,5 c1.38,0,2.63,0.56,3.54,1.46l1.41-1.41C15.68,3.78,13.93,3,12,3C9.21,3,6.81,4.64,5.68,7H3L2,9h3.08C5.03,9.33,5,9.66,5,10 s0.03,0.67,0.08,1H3l-1,2h3.68c1.12,2.36,3.53,4,6.32,4c1.93,0,3.68-0.78,4.95-2.05l-1.41-1.41C14.63,14.44,13.38,15,12,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"17mp\": {\n    \"name\": \"17mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm5 6h-1.75L14.62 7H12V5.5h3.5c.67 0 1.15.65.96 1.29L15 11.5zm.5 2.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_vertical\": {\n    \"name\": \"panorama_vertical\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8H6.54z\\\"></path>\"\n      }\n    }\n  },\n  \"landscape\": {\n    \"name\": \"landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_portrait\": {\n    \"name\": \"crop_portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_franc\": {\n    \"name\": \"currency_franc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"18,5 18,3 7,3 7,16 5,16 5,18 7,18 7,21 9,21 9,18 13,18 13,16 9,16 9,13 17,13 17,11 9,11 9,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"14.5,4.5 14.5,3 6,3 6,13 4.5,13 4.5,14.5 6,14.5 6,17 7.5,17 7.5,14.5 11,14.5 11,13 7.5,13 7.5,10.5 14,10.5 14,9 7.5,9 7.5,4.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_1\": {\n    \"name\": \"filter_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_4\": {\n    \"name\": \"filter_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"brush\": {\n    \"name\": \"brush\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37l-1.34-1.34c-.39-.39-1.02-.39-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"30fps_select\": {\n    \"name\": \"30fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0,2-0.9,2-2v-1.5C11,9.67,10.83,9,10,9c0.83,0,1-0.67,1-1.5V6c0-1.1-0.9-2-2-2H4z M18,4 c1.1,0,2,0.9,2,2v6c0,1.1-0.9,2-2,2h-3c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H18z M18,6h-3v6h3V6z M5,22H3v-5h2V22z M9,22H7v-5h2V22 z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"details\": {\n    \"name\": \"details\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\\\"></path>\"\n      }\n    }\n  },\n  \"6mp\": {\n    \"name\": \"6mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9H13v1.5h-1.5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm-1-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3.5V7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H11zm4.5 7H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm0-4.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_alt\": {\n    \"name\": \"camera_alt\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3.2\\\"></circle><path d=\\\"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"2mp\": {\n    \"name\": \"2mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2-9.5h-2v1h3v1.5H10V9c0-.55.45-1 1-1h2V7h-3V5.5h3.5c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm2 5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"nature_people\": {\n    \"name\": \"nature_people\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3\": {\n    \"name\": \"timer_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z\\\"></path>\"\n      }\n    }\n  },\n  \"style\": {\n    \"name\": \"style\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z\\\"></path>\"\n      }\n    }\n  },\n  \"7mp\": {\n    \"name\": \"7mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zm-2.5-7h-1.75L12.62 7H10V5.5h3.5c.67 0 1.15.65.96 1.29L13 11.5zm2.5 2.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_on\": {\n    \"name\": \"motion_photos_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M6,12 c0-3.31,2.69-6,6-6s6,2.69,6,6s-2.69,6-6,6S6,15.31,6,12z M7,5.5C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M5,10c0-2.76,2.24-5,5-5s5,2.24,5,5 c0,2.76-2.24,5-5,5S5,12.76,5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_strong\": {\n    \"name\": \"hdr_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 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>\"\n      }\n    }\n  },\n  \"auto_awesome\": {\n    \"name\": \"auto_awesome\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9l1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_rotate\": {\n    \"name\": \"crop_rotate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8c0-1.11-.9-2-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2h2v-2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_sunny\": {\n    \"name\": \"wb_sunny\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_large\": {\n    \"name\": \"photo_size_select_large\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_b_and_w\": {\n    \"name\": \"filter_b_and_w\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z\\\"></path>\"\n      }\n    }\n  },\n  \"loupe\": {\n    \"name\": \"loupe\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"image\": {\n    \"name\": \"image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_2\": {\n    \"name\": \"filter_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"19mp\": {\n    \"name\": \"19mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 7h3V9h-2c-.55 0-1-.45-1-1V6.5c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H12V10zm1.5-2H15V6.5h-1.5V8zM7 5.5h3v6H8.5V7H7V5.5zm5 13h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm6.5-2.5c0 .55-.45 1-1 1h-2v1.5H14v-6h3.5c.55 0 1 .45 1 1V16zm-3-2H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"leak_add\": {\n    \"name\": \"leak_add\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"23mp\": {\n    \"name\": \"23mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 9H8v1h3v1.5H6.5V9c0-.55.45-1 1-1h2V7h-3V5.5H10c.55 0 1 .45 1 1V8c0 .55-.45 1-1 1zm7.5 1.5c0 .55-.45 1-1 1H13V10h3V9h-2V8h2V7h-3V5.5h3.5c.55 0 1 .45 1 1v4zm-2 3.5H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_two\": {\n    \"name\": \"looks_two\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dehaze\": {\n    \"name\": \"dehaze\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 15.5v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"camera\": {\n    \"name\": \"camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.4 10.5l4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z\\\"></path>\"\n      }\n    }\n  },\n  \"18mp\": {\n    \"name\": \"18mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM10 5.5v6H8.5V7H7V5.5h3zm6.5 5c0 .55-.45 1-1 1H13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2.5c.55 0 1 .45 1 1v4zm-3 0H15V9h-1.5v1.5zm0-2.5H15V6.5h-1.5V8zm2 6H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"5mp\": {\n    \"name\": \"5mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 15.5h-1.5V14h-1v3H8v-3H7v4.5H5.5v-5c0-.55.45-1 1-1H11c.55 0 1 .45 1 1v5zm3.5 0H14v-6h3.5c.55 0 1 .45 1 1V16c0 .55-.45 1-1 1h-2v1.5zM14.5 7h-3v1h2c.55 0 1 .45 1 1v1.5c0 .55-.45 1-1 1H10V10h3V9h-3V5.5h4.5V7zm1 7H17v1.5h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_as_pdf\": {\n    \"name\": \"picture_as_pdf\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z\\\"></path>\"\n      }\n    }\n  },\n  \"view_compact\": {\n    \"name\": \"view_compact\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,18h2.5v-2.5H4V18z M4,13.25h2.5v-2.5H4V13.25z M4,8.5h2.5V6H4V8.5z M17.5,6v2.5H20V6H17.5z M13,8.5h2.5V6H13V8.5z M17.5,18H20v-2.5h-2.5V18z M17.5,13.25H20v-2.5h-2.5V13.25z M8.5,18H11v-2.5H8.5V18z M13,18h2.5v-2.5H13V18z M8.5,8.5H11V6H8.5 V8.5z M13,13.25h2.5v-2.5H13V13.25z M8.5,13.25H11v-2.5H8.5V13.25z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"12.5\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"bedtime\": {\n    \"name\": \"bedtime\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.28 2C5.67 1.85 2 5.53 2 10c0 4.42 3.58 8 8 8 2.97 0 5.55-1.62 6.93-4.02-6.01-.2-9.67-6.74-6.65-11.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"music_note\": {\n    \"name\": \"music_note\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_off\": {\n    \"name\": \"grid_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 4v1.45l2 2V4h4v4h-3.45l2 2H14v1.45l2 2V10h4v4h-3.45l2 2H20v1.45l2 2V4c0-1.1-.9-2-2-2H4.55l2 2H8zm8 0h4v4h-4V4zM1.27 1.27L0 2.55l2 2V20c0 1.1.9 2 2 2h15.46l2 2 1.27-1.27L1.27 1.27zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.54V20zm2 0v-1.46L17.46 20H16z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_weak\": {\n    \"name\": \"center_focus_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 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>\"\n      }\n    }\n  },\n  \"colorize\": {\n    \"name\": \"colorize\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.71 5.63l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_6\": {\n    \"name\": \"brightness_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_3\": {\n    \"name\": \"brightness_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_vertical_select\": {\n    \"name\": \"panorama_vertical_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.93 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.05-.11.07-.22.07-.31 0-.34-.24-.57-.64-.57H4.62c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.7 8.91 5.7 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57 0-.1-.02-.2-.07-.31z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_photosphere_select\": {\n    \"name\": \"panorama_photosphere_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.49 8.51c-.47-.23-.93-.44-1.4-.64C19.52 4.41 16.05 2 12 2S4.47 4.41 2.9 7.88c-.47.2-.93.41-1.4.63-.31.15-.5.48-.5.83v5.32c0 .35.19.68.51.83.47.23.93.44 1.39.64 3.55 7.83 14.65 7.82 18.2 0 .47-.2.93-.41 1.39-.63.31-.17.51-.49.51-.84V9.34c0-.35-.19-.68-.51-.83zM12 3.8c2.6 0 4.91 1.23 6.41 3.12-4.1-1.19-8.48-1.26-12.83.01C7.08 5.03 9.4 3.8 12 3.8zM5.6 17.08c4.19 1.22 8.57 1.23 12.82-.01-1.54 1.97-3.9 3.13-6.41 3.13-2.5 0-4.87-1.15-6.41-3.12z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_ruble\": {\n    \"name\": \"currency_ruble\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0,5.5-2.46,5.5-5.5C19,5.46,16.54,3,13.5,3z M13.5,12H9V5h4.5 C15.43,5,17,6.57,17,8.5S15.43,12,13.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.25,3H6v7H4.5v1.5H6V13H4.5v1.5H6V17h1.5v-2.5H11V13H7.5v-1.5h3.75c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mp\": {\n    \"name\": \"mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.5 9H11c.55 0 1 .45 1 1v5h-1.5v-4.5h-1v3H8v-3H7V15H5.5v-5c0-.55.45-1 1-1zm9 6H14V9h3.5c.55 0 1 .45 1 1v2.5c0 .55-.45 1-1 1h-2V15zm0-3H17v-1.5h-1.5V12z\\\"></path>\"\n      }\n    }\n  },\n  \"bedtime_off\": {\n    \"name\": \"bedtime_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21.19 21.19 2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.08 2 9.97 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.62 5.51-1.66l2.27 2.27 1.41-1.42z\\\"></path></g><g><path d=\\\"M12.34 2.02c-2.18-.07-4.19.55-5.85 1.64l4.59 4.59c-.27-2.05.1-4.22 1.26-6.23z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.28 2c-1.79-.05-3.43.47-4.78 1.38l3.79 3.79c-.25-1.69.02-3.49.99-5.17zm-7.35.93L1.87 3.99 3.38 5.5C2.51 6.79 2 8.34 2 10c0 4.42 3.58 8 8 8 1.67 0 3.2-.52 4.48-1.39l1.53 1.53 1.06-1.06L2.93 2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"photo_library\": {\n    \"name\": \"photo_library\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"reply_all\": {\n    \"name\": \"reply_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread\": {\n    \"name\": \"markunread\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"mail\": {\n    \"name\": \"mail\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"biotech\": {\n    \"name\": \"biotech\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56 C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H7z\\\"></path><path d=\\\"M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.59,1.62l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94 l0.94-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z\\\"></path><circle cx=\\\"10.5\\\" cy=\\\"8\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,15c-0.55,0-1,0.45-1,1h10c0-0.55-0.45-1-1-1h-4v-2h3c0.55,0,1-0.45,1-1H8.47v0C7.11,11.98,6,10.87,6,9.5 c0-0.93,0.51-1.73,1.26-2.16C7.1,7.1,7,6.81,7,6.5c0-0.05,0.01-0.11,0.02-0.16C5.83,6.9,5,8.1,5,9.5c0,1.76,1.31,3.2,3,3.45V15H6z\\\"></path><path d=\\\"M8.15,5.04C8.26,5.02,8.38,5,8.5,5C9.33,5,10,5.67,10,6.5c0,0.59-0.34,1.09-0.83,1.34l0.59,1.62l0.94-0.34l0.32,0.88 l0.94-0.34l-0.32-0.88l0.94-0.34l-1.84-5.06L9.8,3.71L9.47,2.83L8.53,3.17l0.32,0.88L7.92,4.39L8.15,5.04z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"weekend\": {\n    \"name\": \"weekend\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,10c-1.1,0-2,0.9-2,2v3H5v-3c0-1.1-0.89-2-2-2s-2,0.9-2,2v5c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2v-5 C23,10.9,22.1,10,21,10z M18,5H6C4.9,5,4,5.9,4,7v2.15c1.16,0.41,2,1.52,2,2.81V14h12v-2.03c0-1.3,0.84-2.4,2-2.81V7 C20,5.9,19.1,5,18,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attribution\": {\n    \"name\": \"attribution\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,8.5c-0.91,0-2.75,0.46-2.75,1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88C14.75,8.97,12.91,8.5,12,8.5z\\\"></path><path d=\\\"M12,2C6.47,2,2,6.47,2,12s4.47,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8s8,3.58,8,8 S16.42,20,12,20z\\\"></path><circle cx=\\\"12\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"stacked_bar_chart\": {\n    \"name\": \"stacked_bar_chart\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"10\\\"></rect><rect height=\\\"5\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"15\\\"></rect><rect height=\\\"8\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"12\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"12\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"8\\\"></rect><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"insights\": {\n    \"name\": \"insights\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z\\\"></path><polygon points=\\\"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93\\\"></polygon><polygon points=\\\"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"12.5,8 13.29,6.28 15,5.5 13.29,4.72 12.5,3 11.74,4.72 10,5.5 11.74,6.28\\\"></polygon><polygon points=\\\"4,10 4.4,8.4 6,8 4.4,7.6 4,6 3.6,7.6 2,8 3.6,8.4\\\"></polygon><path d=\\\"M16.5,6c-1.07,0-1.84,1.12-1.35,2.14l-3.01,3.01c-0.52-0.25-0.99-0.14-1.29,0l-1.01-1.01C9.94,9.95,10,9.73,10,9.5 C10,8.67,9.33,8,8.5,8S7,8.67,7,9.5c0,0.23,0.06,0.45,0.15,0.64l-3.01,3.01C3.95,13.06,3.73,13,3.5,13C2.67,13,2,13.67,2,14.5 S2.67,16,3.5,16S5,15.33,5,14.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01c0.52,0.25,0.99,0.14,1.29,0l1.01,1.01 C10.06,12.05,10,12.27,10,12.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01 C16.89,9.35,18,8.56,18,7.5C18,6.67,17.33,6,16.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upcoming\": {\n    \"name\": \"upcoming\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.16,7.26l-1.41-1.41L16.19,9.4l1.41,1.41C17.6,10.81,21.05,7.29,21.16,7.26z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"3\\\"></rect><path d=\\\"M6.4,10.81L7.81,9.4L4.26,5.84L2.84,7.26C2.95,7.29,6.4,10.81,6.4,10.81z\\\"></path><path d=\\\"M20,12h-5c0,1.66-1.34,3-3,3s-3-1.34-3-3H4c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-5 C22,12.9,21.1,12,20,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"link_off\": {\n    \"name\": \"link_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z\\\"></path><path d=\\\"M0 24V0\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"font_download\": {\n    \"name\": \"font_download\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.93 13.5h4.14L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_search\": {\n    \"name\": \"content_paste_search\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><path d=\\\"M20.3,18.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S12,14,12,16.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l2.7,2.7 l1.4-1.4L20.3,18.9z M16.5,19c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C19,17.9,17.9,19,16.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V7h8V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5S8.29,2.14,8.07,3H4.5 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><path d=\\\"M16.94,15.88c0.35-0.54,0.56-1.19,0.56-1.88c0-1.93-1.57-3.5-3.5-3.5s-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.94,15.88z M14,16c-1.1,0-2-0.9-2-2c0-0.31,0.07-0.61,0.2-0.87 C12.52,12.46,13.21,12,14,12c1.1,0,2,0.9,2,2S15.1,16,14,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"remove_circle_outline\": {\n    \"name\": \"remove_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"ballot\": {\n    \"name\": \"ballot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,9.5h5v-2h-5V9.5z M13,16.5h5v-2h-5V16.5z M19,21H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v14C21,20.1,20.1,21,19,21z M6,11h5V6H6V11z M7,7h3v3H7V7z M6,18h5v-5H6V18z M7,14h3v3H7V14z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"outlined_flag\": {\n    \"name\": \"outlined_flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_format\": {\n    \"name\": \"text_format\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z\\\"></path>\"\n      }\n    }\n  },\n  \"tag\": {\n    \"name\": \"tag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"add_circle_outline\": {\n    \"name\": \"add_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"link\": {\n    \"name\": \"link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"square_foot\": {\n    \"name\": \"square_foot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.24,14.24l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71 l-0.35-0.35l0.71-0.71L8.14,8.14L7.44,8.85L7.08,8.5l0.71-0.71L6.11,6.11L5.4,6.82L5.05,6.46l0.71-0.71L4,4v10.5 C4,15.33,4.67,16,5.5,16H16L14.24,14.24z M6,14V8.83L11.17,14H6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"next_week\": {\n    \"name\": \"next_week\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M20,7h-4V5c0-0.55-0.22-1.05-0.59-1.41C15.05,3.22,14.55,3,14,3h-4C8.9,3,8,3.9,8,5v2H4C2.9,7,2,7.9,2,9v11 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9C22,7.9,21.1,7,20,7z M10,5h4v2h-4V5z M11,18.5l-1-1l3-3l-3-3l1-1l4,4L11,18.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"deselect\": {\n    \"name\": \"deselect\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,13h2v-2H3V13z M7,21h2v-2H7V21z M13,3h-2v2h2V3z M19,3v2h2C21,3.9,20.1,3,19,3z M5,21v-2H3C3,20.1,3.9,21,5,21z M3,17h2 v-2H3V17z M11,21h2v-2h-2V21z M19,13h2v-2h-2V13z M19,9h2V7h-2V9z M15,5h2V3h-2V5z M7.83,5L7,4.17V3h2v2H7.83z M19.83,17L19,16.17 V15h2v2H19.83z M21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19z M9,15 v-3.17L12.17,15H9z M15,12.17V9h-3.17l-2-2H17v7.17L15,12.17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11.88V6H8.12l1.5,1.5h2.88v2.88L14,11.88z M4.5,17v-1.5H3C3,16.33,3.67,17,4.5,17z M3,13.88h1.5v-1.5H3V13.88z M3,10.75h1.5v-1.5H3V10.75z M15.5,10.75H17v-1.5h-1.5V10.75z M15.5,7.62H17v-1.5h-1.5V7.62z M15.5,3v1.5H17 C17,3.67,16.33,3,15.5,3z M12.38,4.5h1.5V3h-1.5V4.5z M9.25,4.5h1.5V3h-1.5V4.5z M6.12,17h1.5v-1.5h-1.5V17z M9.25,17h1.5v-1.5 h-1.5V17z M17.07,17.07L2.93,2.93L1.87,3.99L4,6.12H3v1.5h1.5v-1L6,8.12V14h5.88l1.5,1.5h-1V17h1.5v-1l2.13,2.13L17.07,17.07z M7.62,4.5V3h-1.5v1l0.5,0.5H7.62z M17,13.88v-1.5h-1.5v1l0.5,0.5H17z M10.38,12.5H7.5V9.62L10.38,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add\": {\n    \"name\": \"add\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list\": {\n    \"name\": \"filter_list\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_vote\": {\n    \"name\": \"how_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm-1-5.05l-4.95 4.95-3.54-3.54 4.95-4.95L17 7.95zm-4.24-5.66L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41L14.16 2.3c-.38-.4-1.01-.4-1.4-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"save_as\": {\n    \"name\": \"save_as\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12.4V7l-4-4H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h7.4L21,12.4z M15,15c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3 S15,13.34,15,15z M6,6h9v4H6V6z M19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25z M23.25,16.51l-0.85,0.85l-1.77-1.77 l0.85-0.85c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06C23.45,16,23.45,16.32,23.25,16.51z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,11.46V6l-3-3H5.5C4.67,3,4,3.67,4,4.5v11C4,16.33,4.67,17,5.5,17h6.97L18,11.46z M13.5,8.5h-7v-3h7V8.5z M13.25,12.5 c0,1.24-1.01,2.25-2.25,2.25s-2.25-1.01-2.25-2.25s1.01-2.25,2.25-2.25S13.25,11.26,13.25,12.5z M17.82,13.77l1.41,1.41L15.41,19 H14l0-1.41L17.82,13.77z M18.31,13.27l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63 L18.31,13.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"content_cut\": {\n    \"name\": \"content_cut\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"6\\\" cy=\\\"18\\\" fill=\\\"none\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"12\\\" fill=\\\"none\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" fill=\\\"none\\\" r=\\\"2\\\"></circle><path d=\\\"M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3z\\\"></path>\"\n      }\n    }\n  },\n  \"forward\": {\n    \"name\": \"forward\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8V4l8 8-8 8v-4H4V8z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_reg\": {\n    \"name\": \"how_to_reg\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\" fill-rule=\\\"evenodd\\\"></path><g fill-rule=\\\"evenodd\\\"><path d=\\\"M9 17l3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4\\\"></path><path d=\\\"M15.47 20.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z\\\"></path></g>\"\n      }\n    }\n  },\n  \"inbox\": {\n    \"name\": \"inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H4.99c-1.11 0-1.98.89-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10z\\\"></path>\"\n      }\n    }\n  },\n  \"sort\": {\n    \"name\": \"sort\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"copy_all\": {\n    \"name\": \"copy_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H9C7.9,2,7,2.9,7,4v12c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,16H9V4h9V16z M3,15v-2h2v2H3z M3,9.5h2v2H3V9.5z M10,20h2v2h-2V20z M3,18.5v-2h2v2H3z M5,22c-1.1,0-2-0.9-2-2h2V22z M8.5,22h-2v-2h2V22z M13.5,22L13.5,22l0-2h2 v0C15.5,21.1,14.6,22,13.5,22z M5,6L5,6l0,2H3v0C3,6.9,3.9,6,5,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,2h-8C6.67,2,6,2.67,6,3.5v10C6,14.33,6.67,15,7.5,15h8c0.83,0,1.5-0.67,1.5-1.5v-10C17,2.67,16.33,2,15.5,2z M15.5,13.5h-8v-10h8V13.5z M3,12v-1.5h1.5V12H3z M3,15v-1.5h1.5V15H3z M9,16.5h1.5V18H9V16.5z M3,7.5h1.5V9H3V7.5z M7.5,18H6v-1.5 h1.5V18z M4.5,18C3.67,18,3,17.33,3,16.5h1.5V18z M4.5,6H3c0-0.83,0.67-1.5,1.5-1.5V6z M13.49,16.5c0,0.83-0.67,1.5-1.5,1.5h0v-1.5 L13.49,16.5L13.49,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove\": {\n    \"name\": \"remove\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13H5v-2h14v2z\\\"></path>\"\n      }\n    }\n  },\n  \"content_copy\": {\n    \"name\": \"content_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste\": {\n    \"name\": \"content_paste\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z\\\"></path>\"\n      }\n    }\n  },\n  \"gesture\": {\n    \"name\": \"gesture\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z\\\"></path>\"\n      }\n    }\n  },\n  \"web_stories\": {\n    \"name\": \"web_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2V4z M2,20c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4c0-1.1-0.9-2-2-2H4 C2.9,2,2,2.9,2,4V20z M21,18c0.83,0,1.5-0.67,1.5-1.5v-9C22.5,6.67,21.83,6,21,6V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,2H3.5C2.67,2,2,2.67,2,3.5v13C2,17.33,2.67,18,3.5,18H11c0.83,0,1.5-0.67,1.5-1.5v-13C12.5,2.67,11.83,2,11,2z\\\"></path><path d=\\\"M14,4v12c0.83,0,1.5-0.67,1.5-1.5v-9C15.5,4.67,14.83,4,14,4z\\\"></path><path d=\\\"M17,5v10c0.58-0.21,1-0.76,1-1.41V6.41C18,5.76,17.58,5.21,17,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"block\": {\n    \"name\": \"block\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"send\": {\n    \"name\": \"send\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.01 21L23 12 2.01 3 2 10l15 2-15 2z\\\"></path>\"\n      }\n    }\n  },\n  \"stream\": {\n    \"name\": \"stream\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"20\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"4\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"2\\\"></circle><path d=\\\"M10.05 8.59L6.03 4.55h-.01l-.31-.32-1.42 1.41 4.02 4.05.01-.01.31.32zm3.893.027l4.405-4.392L19.76 5.64l-4.405 4.393zM10.01 15.36l-1.42-1.41-4.03 4.01-.32.33 1.41 1.41 4.03-4.02zm9.75 2.94l-3.99-4.01-.36-.35L14 15.35l3.99 4.01.35.35z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle>\"\n      }\n    }\n  },\n  \"move_to_inbox\": {\n    \"name\": \"move_to_inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"unarchive\": {\n    \"name\": \"unarchive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M20.55,5.22l-1.39-1.68C18.88,3.21,18.47,3,18,3H6C5.53,3,5.12,3.21,4.85,3.55L3.46,5.22C3.17,5.57,3,6.01,3,6.5V19 c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6.5C21,6.01,20.83,5.57,20.55,5.22z M12,9.5l5.5,5.5H14v2h-4v-2H6.5L12,9.5z M5.12,5 l0.82-1h12l0.93,1H5.12z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"reply\": {\n    \"name\": \"reply\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_circle\": {\n    \"name\": \"remove_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"push_pin\": {\n    \"name\": \"push_pin\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,9V4l1,0c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v0 c0,0.55,0.45,1,1,1l1,0v5c0,1.66-1.34,3-3,3h0v2h5.97v7l1,1l1-1v-7H19v-2h0C17.34,12,16,10.66,16,9z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10c-1.1,0-2-0.9-2-2V4h0.5C13.78,4,14,3.78,14,3.5C14,3.22,13.78,3,13.5,3h-7C6.22,3,6,3.22,6,3.5 C6,3.78,6.22,4,6.5,4H7v4c0,1.1-0.9,2-2,2v1h4.5v5.5L10,17l0.5-0.5V11H15V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"block_flipped\": {\n    \"name\": \"block_flipped\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,12c0-5.5-4.5-10-10-10S2,6.5,2,12s4.5,10,10,10S22,17.5,22,12z M5.7,7.1l11.2,11.2c-1.3,1.1-3,1.7-4.9,1.7 c-4.4,0-8-3.6-8-8C4,10.1,4.6,8.4,5.7,7.1z M20,12c0,1.9-0.6,3.6-1.7,4.9L7.1,5.7C8.4,4.6,10.1,4,12,4C16.4,4,20,7.6,20,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M4,10c0-1.48,0.54-2.83,1.42-3.87l8.45,8.45 C12.83,15.46,11.48,16,10,16C6.69,16,4,13.31,4,10z M14.58,13.87L6.13,5.42C7.17,4.54,8.52,4,10,4c3.31,0,6,2.69,6,6 C16,11.48,15.46,12.83,14.58,13.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"inventory\": {\n    \"name\": \"inventory\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-5 12H9v-2h6v2zm5-7H4V4l16-.02V7z\\\"></path>\"\n      }\n    }\n  },\n  \"drafts\": {\n    \"name\": \"drafts\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 13L3.74 7.84 12 3l8.26 4.84L12 13z\\\"></path>\"\n      }\n    }\n  },\n  \"report_off\": {\n    \"name\": \"report_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 7h2v2.92l6.91 6.91 1.09-1.1V8.27L15.73 3H8.27L7.18 4.1 11 7.92zm11.27 14.73l-20-20.01L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.63L21 23l1.27-1.27zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3z\\\"></path>\"\n      }\n    }\n  },\n  \"save_alt\": {\n    \"name\": \"save_alt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_off\": {\n    \"name\": \"content_paste_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M5,19V7.83L16.17,19H5z M17,8V5 h2v11.17l2,2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5.83l5,5H17z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M4.5,15.5V6.62 l8.88,8.88H4.5z M14,7V4.5h1.5v8.88l1.5,1.5V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3 H5.12l4,4H14z M10,3c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.34,9.59,3,10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"create\": {\n    \"name\": \"create\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_go\": {\n    \"name\": \"content_paste_go\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v6h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><polygon points=\\\"18.01,13 16.59,14.41 18.17,15.99 12,15.99 12,17.99 18.17,17.99 16.59,19.58 18.01,20.99 22,16.99\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V7h8V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5S8.29,2.14,8.07,3H4.5 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><polygon points=\\\"15,11 13.94,12.06 15.13,13.25 11,13.25 11,14.75 15.13,14.75 13.94,15.94 15,17 18,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"shield\": {\n    \"name\": \"shield\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z\\\"></path>\"\n      }\n    }\n  },\n  \"file_copy\": {\n    \"name\": \"file_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z\\\"></path>\"\n      }\n    }\n  },\n  \"delete_sweep\": {\n    \"name\": \"delete_sweep\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM14 5h-3l-1-1H6L5 5H2v2h12z\\\"></path>\"\n      }\n    }\n  },\n  \"flag\": {\n    \"name\": \"flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z\\\"></path>\"\n      }\n    }\n  },\n  \"save\": {\n    \"name\": \"save\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z\\\"></path>\"\n      }\n    }\n  },\n  \"report\": {\n    \"name\": \"report\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"undo\": {\n    \"name\": \"undo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"low_priority\": {\n    \"name\": \"low_priority\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5h8v2h-8zm0 5.5h8v2h-8zm0 5.5h8v2h-8zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flag_circle\": {\n    \"name\": \"flag_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,15h-5l-1-2H9.5v5H8V7h6l1,2h3V15 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M15,12h-4l-1-1.5H8V15H7V6h4.5l1,1.5H15V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"report_gmailerrorred\": {\n    \"name\": \"report_gmailerrorred\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3z M19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9z\\\"></path><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"inventory_2\": {\n    \"name\": \"inventory_2\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4C3,2,2,2.9,2,4v3.01C2,7.73,2.43,8.35,3,8.7V20c0,1.1,1.1,2,2,2h14c0.9,0,2-0.9,2-2V8.7c0.57-0.35,1-0.97,1-1.69V4 C22,2.9,21,2,20,2z M15,14H9v-2h6V14z M20,7H4V4h16V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v3c0,0.65,0.42,1.2,1,1.41v8.59C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5V7.91 c0.58-0.21,1-0.76,1-1.41v-3C18,2.67,17.33,2,16.5,2z M16.5,6.5h-13v-3h13V6.5z M12,11.5H8V10h4V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"archive\": {\n    \"name\": \"archive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM12 17.5L6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z\\\"></path>\"\n      }\n    }\n  },\n  \"waves\": {\n    \"name\": \"waves\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z\\\"></path>\"\n      }\n    }\n  },\n  \"policy\": {\n    \"name\": \"policy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21,5l-9-4L3,5v6c0,5.55,3.84,10.74,9,12c2.3-0.56,4.33-1.9,5.88-3.71l-3.12-3.12c-1.94,1.29-4.58,1.07-6.29-0.64 c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29l2.9,2.9C20.29,15.69,21,13.38,21,11V5z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M10,13c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3c0,0.65-0.21,1.24-0.56,1.73l2.1,2.1C15.46,12.52,16,10.94,16,9.31V5 l-6-2L4,5v4.31c0,3.55,2.56,6.88,6,7.69c1.53-0.36,2.89-1.22,3.92-2.37l-2.19-2.19C11.24,12.79,10.65,13,10,13z\\\"></path><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"dynamic_feed\": {\n    \"name\": \"dynamic_feed\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\\\"></path><path d=\\\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\\\"></path><path d=\\\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\\\"></path></g></g><g display=\\\"none\\\"><g display=\\\"inline\\\"></path><g display=\\\"inline\\\"><path d=\\\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\\\"></path><path d=\\\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\\\"></path><path d=\\\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect></g><g><g></rect><g><g><path d=\\\"M4,8H3v7c0,0.55,0.45,1,1,1h9v-1H4V8z\\\"></path></g><g><path d=\\\"M6,6H5v7c0,0.55,0.45,1,1,1h9v-1H6V6z\\\"></path></g><g><path d=\\\"M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M16,11H8V7h8V11z\\\"></path></g></g></g><g display=\\\"none\\\"><g display=\\\"inline\\\"></path><path d=\\\"M4,15V8H3v7c0,0.55,0.45,1,1,1h9v-1H4z\\\" display=\\\"inline\\\"></path><path d=\\\"M6,13V6H5v7c0,0.55,0.45,1,1,1h9v-1H6z\\\" display=\\\"inline\\\"></path><g display=\\\"inline\\\"><path d=\\\"M16,5v6H8V5H16 M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4L16,4z\\\"></path></g><g display=\\\"inline\\\"><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"clear\": {\n    \"name\": \"clear\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z\\\"></path>\"\n      }\n    }\n  },\n  \"add_box\": {\n    \"name\": \"add_box\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"amp_stories\": {\n    \"name\": \"amp_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"15\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"4\\\"></rect><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"6\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><rect height=\\\"11\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"4\\\"></rect><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"16\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"redo\": {\n    \"name\": \"redo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z\\\"></path>\"\n      }\n    }\n  },\n  \"where_to_vote\": {\n    \"name\": \"where_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c3.86 0 7 3.14 7 7 0 5.25-7 13-7 13S5 14.25 5 9c0-3.86 3.14-7 7-7zm-1.53 12L17 7.41 15.6 6l-5.13 5.18L8.4 9.09 7 10.5l3.47 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"font_download_off\": {\n    \"name\": \"font_download_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.58,9.75l-0.87-0.87l0.23-0.66h0.1L12.58,9.75z M10.35,7.52L10.92,6h2.14l2.55,6.79L22,19.17V4c0-1.1-0.9-2-2-2H4.83 L10.35,7.52z M20.49,23.31L19.17,22H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M12.1,14.93l-3.3-3.3 L6.41,18h2.08l1.09-3.07H12.1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.61,8.49l-0.57-1.63H9.95L9.7,7.58L10.61,8.49z M8.56,6.44L9.1,5h1.79l2.27,6.04L18,15.88V3.5C18,2.67,17.33,2,16.5,2 H4.12L8.56,6.44z M2.22,2.22L1.16,3.28L2,4.12V16.5C2,17.33,2.67,18,3.5,18h12.38l0.84,0.84l1.06-1.06L2.22,2.22z M7.99,12.44 L7.08,15H5.35L7.4,9.52l2.92,2.92H7.99z\\\"></path>\"\n      }\n    }\n  },\n  \"add_circle\": {\n    \"name\": \"add_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"select_all\": {\n    \"name\": \"select_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z\\\"></path>\"\n      }\n    }\n  },\n  \"change_circle\": {\n    \"name\": \"change_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12.06,19v-2.01c-0.02,0-0.04,0-0.06,0 c-1.28,0-2.56-0.49-3.54-1.46c-1.71-1.71-1.92-4.35-0.64-6.29l1.1,1.1c-0.71,1.33-0.53,3.01,0.59,4.13c0.7,0.7,1.62,1.03,2.54,1.01 v-2.14l2.83,2.83L12.06,19z M16.17,14.76l-1.1-1.1c0.71-1.33,0.53-3.01-0.59-4.13C13.79,8.84,12.9,8.5,12,8.5c-0.02,0-0.04,0-0.06,0 v2.15L9.11,7.83L11.94,5v2.02c1.3-0.02,2.61,0.45,3.6,1.45C17.24,10.17,17.45,12.82,16.17,14.76z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M9.88,15.62V14c-1.02-0.03-1.98-0.44-2.71-1.17 C6.42,12.07,6,11.07,6,10c0-0.7,0.18-1.38,0.52-1.98l0.74,0.74C7.09,9.15,7,9.57,7,10c0,0.8,0.31,1.55,0.88,2.12 c0.54,0.53,1.27,0.82,2,0.85v-1.59L12,13.5L9.88,15.62z M13.48,11.98l-0.74-0.74C12.91,10.85,13,10.43,13,10 c0-0.8-0.31-1.55-0.88-2.12c-0.54-0.54-1.24-0.85-2-0.88v1.62L8,6.5l2.12-2.12v1.66c1,0.03,1.98,0.41,2.71,1.13 C13.58,7.93,14,8.93,14,10C14,10.7,13.82,11.38,13.48,11.98z\\\"></path>\"\n      }\n    }\n  },\n  \"add_link\": {\n    \"name\": \"add_link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0\\\" fill=\\\"none\\\"></path><path d=\\\"M8 11h8v2H8zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"calculate\": {\n    \"name\": \"calculate\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M13.03,7.06L14.09,6l1.41,1.41 L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M6.25,7.72h5v1.5h-5 V7.72z M11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16z M18,17.25h-5v-1.5h5V17.25z M18,14.75h-5v-1.5h5V14.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M6,7.27h3v1H6V7.27z M10,12.5H8.5V14h-1v-1.5H6v-1h1.5V10h1v1.5H10V12.5z M14,13.25h-3v-1h3V13.25z M14,11.75h-3v-1h3V11.75z M14.27,8.83l-0.71,0.71 L12.5,8.47l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.06-1.06L11.44,6l1.06,1.06L13.56,6l0.71,0.71l-1.06,1.06L14.27,8.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"backspace\": {\n    \"name\": \"backspace\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list_off\": {\n    \"name\": \"filter_list_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.83,8H21V6H8.83L10.83,8z M15.83,13H18v-2h-4.17L15.83,13z M14,16.83V18h-4v-2h3.17l-3-3H6v-2h2.17l-3-3H3V6h0.17 L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L14,16.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.62,5.5H17V7H9.12L7.62,5.5z M12.87,10.75H15v-1.5h-3.63L12.87,10.75z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99 L3.38,5.5H3V7h1.88l2.25,2.25H5v1.5h3.63L10.88,13L8,13v1.5h4v-0.38L16.01,18.13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bolt\": {\n    \"name\": \"bolt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 21h-1l1-7H7.5c-.58 0-.57-.32-.38-.66.19-.34.05-.08.07-.12C8.48 10.94 10.42 7.54 13 3h1l-1 7h3.5c.49 0 .56.33.47.51l-.07.15C12.96 17.55 11 21 11 21z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_email_read\": {\n    \"name\": \"mark_email_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M12,19c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h8.08 C12.03,19.67,12,19.34,12,19z M4,6l8,5l8-5v2l-8,5L4,8V6z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h6.1c-0.07-0.32-0.1-0.66-0.1-1c0-2.76,2.24-5,5-5c0.71,0,1.39,0.15,2,0.42 V5C17,4.45,16.55,4,16,4z M16,6.18L10,10L4,6.18V5l6,3.82L16,5V6.18z M13.76,17l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,12.76 L13.76,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"app_registration\": {\n    \"name\": \"app_registration\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"16\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><polygon points=\\\"14,12.42 14,10 10,10 10,14 12.42,14\\\"></polygon><path d=\\\"M20.88,11.29l-1.17-1.17c-0.16-0.16-0.42-0.16-0.58,0L18.25,11L20,12.75l0.88-0.88C21.04,11.71,21.04,11.45,20.88,11.29z\\\"></path><polygon points=\\\"11,18.25 11,20 12.75,20 19.42,13.33 17.67,11.58\\\"></polygon><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"13\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8.5\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><path d=\\\"M16.41,9.47l-0.88-0.88c-0.12-0.12-0.32-0.12-0.44,0l-0.66,0.66l1.31,1.31l0.66-0.66C16.53,9.78,16.53,9.59,16.41,9.47z\\\"></path><polygon points=\\\"9,14.69 9,16 10.31,16 15.31,11 14,9.69\\\"></polygon><polygon points=\\\"11.5,10.77 11.5,8.5 8.5,8.5 8.5,11.5 10.77,11.5\\\"></polygon><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"import_contacts\": {\n    \"name\": \"import_contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17.5,4.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65c0,0.65,0.73,0.45,0.75,0.45 C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5c1.65,0,3.35,0.3,4.75,1.05 C22.66,21.26,23,20.86,23,20.6V6C21.51,4.88,19.37,4.5,17.5,4.5z M21,18.5c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8 c1.35-0.85,3.8-1.5,5.5-1.5c1.2,0,2.4,0.15,3.5,0.5V18.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"cancel_presentation\": {\n    \"name\": \"cancel_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path><path d=\\\"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied_alt\": {\n    \"name\": \"sentiment_satisfied_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2s-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"live_help\": {\n    \"name\": \"live_help\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"location_on\": {\n    \"name\": \"location_on\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_unread_chat_alt\": {\n    \"name\": \"mark_unread_chat_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"19\\\" cy=\\\"3\\\" r=\\\"3\\\"></circle><path d=\\\"M6,8V6h9.03c-1.21-1.6-1.08-3.21-0.92-4H4.01c-1.1,0-2,0.89-2,2L2,22l4-4h14c1.1,0,2-0.9,2-2V6.97 C21.16,7.61,20.13,8,19,8H6z M14,14H6v-2h8V14z M18,11H6V9h12V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"15.5\\\" cy=\\\"2.75\\\" r=\\\"2.5\\\"></circle><path d=\\\"M14.15,6.5H5V5h7.2c-0.33-0.49-0.9-1.55-0.62-3H3.5C2.67,2,2,2.67,2,3.5V18l3-3h11.5c0.83,0,1.5-0.67,1.5-1.5V5.85 c-0.69,0.56-1.55,0.9-2.5,0.9C15.03,6.75,14.58,6.65,14.15,6.5z M12,12H5v-1.5h7V12z M15,9.25H5v-1.5h10V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"qr_code_2\": {\n    \"name\": \"qr_code_2\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M15,21h-2v-2h2V21z M13,14h-2v5h2V14z M21,12h-2v4h2V12z M19,10h-2v2h2V10z M7,12H5v2h2V12z M5,10H3v2h2V10z M12,5h2V3h-2V5 z M4.5,4.5v3h3v-3H4.5z M9,9H3V3h6V9z M4.5,16.5v3h3v-3H4.5z M9,21H3v-6h6V21z M16.5,4.5v3h3v-3H16.5z M21,9h-6V3h6V9z M19,19v-3 l-4,0v2h2v3h4v-2H19z M17,12l-4,0v2h4V12z M13,10H7v2h2v2h2v-2h2V10z M14,9V7h-2V5h-2v4L14,9z M6.75,5.25h-1.5v1.5h1.5V5.25z M6.75,17.25h-1.5v1.5h1.5V17.25z M18.75,5.25h-1.5v1.5h1.5V5.25z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_access_disabled\": {\n    \"name\": \"desktop_access_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 16c0 1.1-.9 2-2 2h-1l-2-2h3V4H6L4 2h17c1.1 0 2 .9 2 2v12zm-5.5 2l-2-2zm-2.6 0l6 6 1.3-1.3-4.7-4.7-2-2L1.2 1.8 0 3.1l1 1V16c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h.9zM3 16V6.1l9.9 9.9H3z\\\"></path>\"\n      }\n    }\n  },\n  \"call_end\": {\n    \"name\": \"call_end\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 9c-1.6 0-3.15.25-4.6.72v3.1c0 .39-.23.74-.56.9-.98.49-1.87 1.12-2.66 1.85-.18.18-.43.28-.7.28-.28 0-.53-.11-.71-.29L.29 13.08c-.18-.17-.29-.42-.29-.7 0-.28.11-.53.29-.71C3.34 8.78 7.46 7 12 7s8.66 1.78 11.71 4.67c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.71.29-.27 0-.52-.11-.7-.28-.79-.74-1.69-1.36-2.67-1.85-.33-.16-.56-.5-.56-.9v-3.1C15.15 9.25 13.6 9 12 9z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling\": {\n    \"name\": \"wifi_calling\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z\\\"></path><path d=\\\"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.35-0.12-0.75-0.03-1.02,0.24l-2.2,2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2 C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17 c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.67,5.3C16.53,5.19,15.11,4,13,4c-2.12,0-3.53,1.19-3.67,1.3L13,10L16.67,5.3z\\\"></path><path d=\\\"M14.33,12.33c-0.83,0-1.63-0.13-2.38-0.38c-0.23-0.07-0.49-0.02-0.68,0.16l-1.47,1.47c-1.89-0.96-3.43-2.5-4.39-4.39 l1.47-1.47c0.19-0.18,0.24-0.44,0.17-0.67C6.8,6.3,6.67,5.5,6.67,4.67C6.67,4.3,6.37,4,6,4H3.67C3.3,4,3,4.3,3,4.67 C3,10.93,8.07,16,14.33,16C14.7,16,15,15.7,15,15.33V13C15,12.63,14.7,12.33,14.33,12.33z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alternate_email\": {\n    \"name\": \"alternate_email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_ic_call\": {\n    \"name\": \"add_ic_call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM21 6h-3V3h-2v3h-3v2h3v3h2V8h3z\\\"></path>\"\n      }\n    }\n  },\n  \"business\": {\n    \"name\": \"business\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"no_sim\": {\n    \"name\": \"no_sim\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z\\\"></path>\"\n      }\n    }\n  },\n  \"key\": {\n    \"name\": \"key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,10h-8.35C11.83,7.67,9.61,6,7,6c-3.31,0-6,2.69-6,6s2.69,6,6,6c2.61,0,4.83-1.67,5.65-4H13l2,2l2-2l2,2l4-4.04L21,10z M7,15c-1.65,0-3-1.35-3-3c0-1.65,1.35-3,3-3s3,1.35,3,3C10,13.65,8.65,15,7,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.5,8.5h-6.75C10.11,6.48,8.24,5,6,5c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.24,0,4.11-1.48,4.75-3.5h0.75L13,13l1.5-1.5L16,13 l3-3L17.5,8.5z M6,12.5c-1.38,0-2.5-1.12-2.5-2.5S4.62,7.5,6,7.5S8.5,8.62,8.5,10S7.38,12.5,6,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_erase\": {\n    \"name\": \"phonelink_erase\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_enabled\": {\n    \"name\": \"phone_enabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.38 10.79l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 9.39-7.61 17-17 17-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c2.83-1.45 5.15-3.76 6.59-6.59z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_current_landscape\": {\n    \"name\": \"stay_current_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code\": {\n    \"name\": \"qr_code\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,11h8V3H3V11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\\\"></path><path d=\\\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,9h5V4H4V9z M4.94,4.94h3.12v3.12H4.94V4.94z\\\"></path><path d=\\\"M4,16h5v-5H4V16z M4.94,11.94h3.12v3.12H4.94V11.94z\\\"></path><path d=\\\"M11,4v5h5V4H11z M15.06,8.06h-3.12V4.94h3.12V8.06z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"duo\": {\n    \"name\": \"duo\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clear_all\": {\n    \"name\": \"clear_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z\\\"></path>\"\n      }\n    }\n  },\n  \"rss_feed\": {\n    \"name\": \"rss_feed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"6.18\\\" cy=\\\"17.82\\\" r=\\\"2.18\\\"></circle><path d=\\\"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z\\\"></path>\"\n      }\n    }\n  },\n  \"rtt\": {\n    \"name\": \"rtt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><title>ic_dialer_rtt_revised_24px</title><path d=\\\"M9.03 3l-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z\\\"></title>\"\n      }\n    }\n  },\n  \"hourglass_bottom\": {\n    \"name\": \"hourglass_bottom\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,17h8v-4l-3-3l3-3V3H6v4l3,3l-3,3V17z M7,6.59V4h6v2.59l-3,3L7,6.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"portable_wifi_off\": {\n    \"name\": \"portable_wifi_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.56 14.24c.28-.69.44-1.45.44-2.24 0-3.31-2.69-6-6-6-.79 0-1.55.16-2.24.44l1.62 1.62c.2-.03.41-.06.62-.06 2.21 0 4 1.79 4 4 0 .21-.02.42-.05.63l1.61 1.61zM12 4c4.42 0 8 3.58 8 8 0 1.35-.35 2.62-.95 3.74l1.47 1.47C21.46 15.69 22 13.91 22 12c0-5.52-4.48-10-10-10-1.91 0-3.69.55-5.21 1.47l1.46 1.46C9.37 4.34 10.65 4 12 4zM3.27 2.5L2 3.77l2.1 2.1C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02.01.01 7.51 7.51L21 20.23 4.27 3.5l-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_phone\": {\n    \"name\": \"speaker_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z\\\"></path>\"\n      }\n    }\n  },\n  \"person_search\": {\n    \"name\": \"person_search\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M10.35,14.01C7.62,13.91,2,15.27,2,18v2h9.54C9.07,17.24,10.31,14.11,10.35,14.01z\\\"></path><path d=\\\"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 L20.59,22L22,20.59L19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C18,17.1,17.1,18,16,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.14,10.93C7.85,10.59,4,11.52,4,13.21V15h5.35C8.73,13.7,8.93,12.05,10.14,10.93z\\\"></path><circle cx=\\\"9\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M16.06,16.35l-1.48-1.48c0.26-0.4,0.42-0.87,0.42-1.38c0-1.38-1.12-2.5-2.5-2.5S10,12.12,10,13.5c0,1.38,1.12,2.5,2.5,2.5 c0.51,0,0.98-0.15,1.38-0.42l1.48,1.48L16.06,16.35z M12.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S13.33,15,12.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"domain_disabled\": {\n    \"name\": \"domain_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5h2v2h-.9L12 9.9V9h8v8.9l2 2V7H12V3H5.1L8 5.9zm8 6h2v2h-2zM1.3 1.8L.1 3.1 2 5v16h16l3 3 1.3-1.3-21-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm4 8H8v-2h2v2zm0-4H8v-2h2v2zm2 4v-2h2l2 2h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_chat_read\": {\n    \"name\": \"mark_chat_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12,17c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68 V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.17,0.01-0.33,0.03-0.5C12.01,17.34,12,17.17,12,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M13.76,15l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,10.76L13.76,15z M10,13c0-2.76,2.24-5,5-5c0.71,0,1.39,0.15,2,0.42 V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h4.1C10.04,13.68,10,13.34,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"comments_disabled\": {\n    \"name\": \"comments_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.83,14H18v-2h-3.17l-1-1H18V9h-6.17l-1-1H18V6H8.83l-4-4H20c1.1,0,2,0.9,2,2v15.17L16.83,14z M2.1,2.1L0.69,3.51L2,4.83 V16c0,1.1,0.9,2,2,2h11.17l5.31,5.31l1.41-1.41L2.1,2.1z M6,9h0.17l2,2H6V9z M6,14v-2h3.17l2,2H6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.12,12H15v-1.5h-2.38l-1.25-1.25H15v-1.5H9.87L8.62,6.5H15V5H7.12l-3-3H16.5C17.33,2,18,2.67,18,3.5v12.38L14.12,12z M2.22,2.22L1.16,3.28L2,4.12v9.38C2,14.33,2.67,15,3.5,15h9.38l3.84,3.84l1.06-1.06L2.22,2.22z M5,9.25v-1.5h0.63l1.5,1.5H5z M8,12 v-1.5h0.38l1.5,1.5H8z\\\"></path>\"\n      }\n    }\n  },\n  \"mail_lock\": {\n    \"name\": \"mail_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M22,9.97V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h12v-5.03c0-2.76,2.24-5,5-5H22z M20,8l-8,5 L4,8V6l8,5l8-5V8z\\\"></path></g><g><path d=\\\"M23,15v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C24,15.45,23.55,15,23,15z M22,15h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,8.5v-3C18,4.67,17.33,4,16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h10v-4c0-1.93,1.57-3.5,3.5-3.5H18z M10,11L3.5,7.27V5.5L10,9.23l6.5-3.73l0,1.77L10,11z\\\"></path><path d=\\\"M19.5,12H19v-1c0-0.83-0.67-1.5-1.5-1.5S16,10.17,16,11v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C20,12.22,19.78,12,19.5,12z M16.75,12v-1c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1 H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"phonelink_ring\": {\n    \"name\": \"phonelink_ring\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_top\": {\n    \"name\": \"hourglass_top\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,3H6v4l3,3l-3,3v4h8v-4l-3-3l3-3V3z M13,13.41V16H7v-2.59l3-3L13,13.41z\\\"></path></g>\"\n      }\n    }\n  },\n  \"invert_colors_off\": {\n    \"name\": \"invert_colors_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31-1.6,2.94-1.6,4.7C4,17.48,7.58,21,12,21c1.75,0,3.36-0.56,4.67-1.5 l3.1,3.1L21.19,21.19z M12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83V19z M8.38,5.56L12,2l5.65,5.56l0,0 C19.1,8.99,20,10.96,20,13.13c0,1.18-0.27,2.29-0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.08,4.96L10,2l4.53,4.6l0,0c1.07,1.1,1.72,2.6,1.72,4.24c0,0.96-0.23,1.86-0.62,2.67L10,7.88V4.14L8.14,6.02L7.08,4.96z M16.01,18.13l-2.33-2.33C12.65,16.55,11.38,17,10,17c-3.45,0-6.25-2.76-6.25-6.16c0-1.39,0.47-2.67,1.26-3.7L1.87,3.99l1.06-1.06 l14.14,14.14L16.01,18.13z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63c0,2.57,2.13,4.66,4.75,4.66V12.12z\\\"></path>\"\n      }\n    }\n  },\n  \"hub\": {\n    \"name\": \"hub\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.4,18.2C8.78,18.7,9,19.32,9,20c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3c0.44,0,0.85,0.09,1.23,0.26l1.41-1.77 c-0.92-1.03-1.29-2.39-1.09-3.69l-2.03-0.68C4.98,11.95,4.06,12.5,3,12.5c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 c0,0.07,0,0.14-0.01,0.21l2.03,0.68c0.64-1.21,1.82-2.09,3.22-2.32l0-2.16C9.96,5.57,9,4.4,9,3c0-1.66,1.34-3,3-3s3,1.34,3,3 c0,1.4-0.96,2.57-2.25,2.91v2.16c1.4,0.23,2.58,1.11,3.22,2.32l2.03-0.68C18,9.64,18,9.57,18,9.5c0-1.66,1.34-3,3-3s3,1.34,3,3 s-1.34,3-3,3c-1.06,0-1.98-0.55-2.52-1.37l-2.03,0.68c0.2,1.29-0.16,2.65-1.09,3.69l1.41,1.77C17.15,17.09,17.56,17,18,17 c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3c0-0.68,0.22-1.3,0.6-1.8l-1.41-1.77c-1.35,0.75-3.01,0.76-4.37,0L8.4,18.2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.71,12.84c0.84-0.88,1.17-2.06,0.99-3.18l1.59-0.48c0.42,0.78,1.25,1.32,2.2,1.32c1.38,0,2.5-1.12,2.5-2.5 s-1.12-2.5-2.5-2.5C16.12,5.5,15,6.62,15,8c0,0.08,0,0.15,0.01,0.22L13.42,8.7c-0.52-1.15-1.61-2-2.92-2.17l0-1.58 c1.14-0.23,2-1.24,2-2.45C12.5,1.12,11.38,0,10,0S7.5,1.12,7.5,2.5c0,1.21,0.86,2.22,2,2.45l0,1.58C8.2,6.71,7.11,7.55,6.58,8.7 L4.99,8.22C5,8.15,5,8.08,5,8c0-1.38-1.12-2.5-2.5-2.5S0,6.62,0,8s1.12,2.5,2.5,2.5c0.95,0,1.78-0.53,2.2-1.32L6.3,9.66 c-0.18,1.12,0.15,2.3,0.99,3.18l-1.15,1.43C5.8,14.1,5.41,14,5,14c-1.38,0-2.5,1.12-2.5,2.5S3.62,19,5,19s2.5-1.12,2.5-2.5 c0-0.61-0.22-1.17-0.58-1.6l1.15-1.43c1.18,0.71,2.68,0.71,3.86,0l1.15,1.43c-0.36,0.43-0.58,0.99-0.58,1.6c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5S16.38,14,15,14c-0.41,0-0.8,0.1-1.14,0.27L12.71,12.84z\\\"></path>\"\n      }\n    }\n  },\n  \"phone\": {\n    \"name\": \"phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z\\\"></path>\"\n      }\n    }\n  },\n  \"location_off\": {\n    \"name\": \"location_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm11.75 11.47l-.11-.11z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c1.38 0 2.5 1.12 2.5 2.5 0 .74-.33 1.39-.83 1.85l3.63 3.63c.98-1.86 1.7-3.8 1.7-5.48 0-3.87-3.13-7-7-7-1.98 0-3.76.83-5.04 2.15l3.19 3.19c.46-.52 1.11-.84 1.85-.84zm4.37 9.6l-4.63-4.63-.11-.11L3.27 3 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21 20 19.73l-3.63-3.63z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code_scanner\": {\n    \"name\": \"qr_code_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_primary_portrait\": {\n    \"name\": \"stay_primary_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_mail\": {\n    \"name\": \"contact_mail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 8V7l-3 2-3-2v1l3 2 3-2zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_tower\": {\n    \"name\": \"cell_tower\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.3,14.7l1.2-1.2c-1-1-1.5-2.3-1.5-3.5c0-1.3,0.5-2.6,1.5-3.5L7.3,5.3c-1.3,1.3-2,3-2,4.7S6,13.4,7.3,14.7z\\\"></path><path d=\\\"M19.1,2.9l-1.2,1.2c1.6,1.6,2.4,3.8,2.4,5.9c0,2.1-0.8,4.3-2.4,5.9l1.2,1.2c2-2,2.9-4.5,2.9-7.1C22,7.4,21,4.9,19.1,2.9z\\\"></path><path d=\\\"M6.1,4.1L4.9,2.9C3,4.9,2,7.4,2,10c0,2.6,1,5.1,2.9,7.1l1.2-1.2c-1.6-1.6-2.4-3.8-2.4-5.9C3.7,7.9,4.5,5.7,6.1,4.1z\\\"></path><path d=\\\"M16.7,14.7c1.3-1.3,2-3,2-4.7c-0.1-1.7-0.7-3.4-2-4.7l-1.2,1.2c1,1,1.5,2.3,1.5,3.5c0,1.3-0.5,2.6-1.5,3.5L16.7,14.7z\\\"></path><path d=\\\"M14.5,10c0-1.38-1.12-2.5-2.5-2.5S9.5,8.62,9.5,10c0,0.76,0.34,1.42,0.87,1.88L7,22h2l0.67-2h4.67L15,22h2l-3.37-10.12 C14.16,11.42,14.5,10.76,14.5,10z M10.33,18L12,13l1.67,5H10.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.5,11.5l1.06-1.06C6.94,9.81,6.55,8.95,6.55,8s0.39-1.81,1.01-2.44L6.5,4.5C5.6,5.4,5.05,6.63,5.05,8S5.6,10.6,6.5,11.5 z\\\"></path><path d=\\\"M5.41,3.41L4.34,2.34C2.9,3.79,2,5.79,2,8s0.9,4.21,2.34,5.66l1.06-1.06C4.23,11.42,3.5,9.79,3.5,8S4.23,4.58,5.41,3.41z\\\"></path><path d=\\\"M13.5,4.5l-1.06,1.06c0.62,0.62,1.01,1.49,1.01,2.44s-0.39,1.81-1.01,2.44l1.06,1.06c0.9-0.9,1.45-2.13,1.45-3.5 S14.4,5.4,13.5,4.5z\\\"></path><path d=\\\"M15.66,2.34l-1.06,1.06C15.77,4.58,16.5,6.21,16.5,8s-0.73,3.42-1.91,4.59l1.06,1.06C17.1,12.21,18,10.21,18,8 S17.1,3.79,15.66,2.34z\\\"></path><path d=\\\"M12,8c0-1.1-0.9-2-2-2S8,6.9,8,8c0,0.63,0.29,1.18,0.75,1.55L6,18h1.5l0.49-1.5h3.6L12,18h1.5l-2.31-8.4 C11.68,9.23,12,8.66,12,8z M8.47,15l1.46-4.5l1.24,4.5H8.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mark_chat_unread\": {\n    \"name\": \"mark_chat_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3c0,2.76,2.24,5,5,5 C20.13,8,21.16,7.61,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17,6.22V13c0,0.55-0.45,1-1,1H6l-3,3V4c0-0.55,0.45-1,1-1h8.18C12.07,3.31,12,3.65,12,4c0,1.66,1.34,3,3,3 C15.77,7,16.47,6.7,17,6.22z M13,4c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,2.9,13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forum\": {\n    \"name\": \"forum\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_presentation\": {\n    \"name\": \"pause_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path><path d=\\\"M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 8h2v8H9zm4 0h2v8h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"read_more\": {\n    \"name\": \"read_more\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"16\\\" y=\\\"11\\\"></rect><polygon points=\\\"13,12 8,7 8,11 2,11 2,13 8,13 8,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"11,10 8,7 8,9.5 3,9.5 3,10.5 8,10.5 8,13\\\"></polygon><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"co_present\": {\n    \"name\": \"co_present\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v8h2V5h18v16c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g><g><circle cx=\\\"9\\\" cy=\\\"10\\\" r=\\\"4\\\"></circle></g><g><path d=\\\"M15.39,16.56C13.71,15.7,11.53,15,9,15c-2.53,0-4.71,0.7-6.39,1.56C1.61,17.07,1,18.1,1,19.22V22h16v-2.78 C17,18.1,16.39,17.07,15.39,16.56z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.5,3h-15C1.67,3,1,3.67,1,4.5V12h1.5V4.5h15V17c0.83,0,1.5-0.67,1.5-1.5v-11C19,3.67,18.33,3,17.5,3z\\\"></path><circle cx=\\\"7\\\" cy=\\\"9\\\" r=\\\"3\\\"></circle><path d=\\\"M12.03,14.37C10.56,13.5,8.84,13,7,13s-3.56,0.5-5.03,1.37C1.36,14.72,1,15.39,1,16.09V18h12v-1.91 C13,15.39,12.64,14.72,12.03,14.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"call\": {\n    \"name\": \"call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble_outline\": {\n    \"name\": \"chat_bubble_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_current_portrait\": {\n    \"name\": \"stay_current_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"present_to_all\": {\n    \"name\": \"present_to_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_missed\": {\n    \"name\": \"call_missed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"import_export\": {\n    \"name\": \"import_export\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble\": {\n    \"name\": \"chat_bubble\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key_off\": {\n    \"name\": \"vpn_key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.83,18H21v-4h2v-4H12.83L20.83,18z M19.78,22.61l1.41-1.41L2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85,1,9.79,1,12 c0,3.31,2.69,6,6,6c2.21,0,4.15-1.2,5.18-2.99L19.78,22.61z M8.99,11.82C9,11.88,9,11.94,9,12c0,1.1-0.9,2-2,2s-2-0.9-2-2 s0.9-2,2-2c0.06,0,0.12,0,0.18,0.01L8.99,11.82z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,14.88V11.5h2v-3h-8.38L17,14.88z M2.93,2.93L1.87,3.99l1.66,1.66C2.02,6.51,1,8.14,1,10c0,2.76,2.24,5,5,5 c1.87,0,3.48-1.03,4.33-2.55l5.68,5.68l1.06-1.06L2.93,2.93z M6,12c-1.1,0-2-0.9-2-2c0-1.06,0.83-1.94,1.88-2L8,10.12 C7.93,11.17,7.06,12,6,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"voicemail\": {\n    \"name\": \"voicemail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_setup\": {\n    \"name\": \"phonelink_setup\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.82 12.49c.02-.16.04-.32.04-.49 0-.17-.02-.33-.04-.49l1.08-.82c.1-.07.12-.21.06-.32l-1.03-1.73c-.06-.11-.2-.15-.31-.11l-1.28.5c-.27-.2-.56-.36-.87-.49l-.2-1.33c0-.12-.11-.21-.24-.21H5.98c-.13 0-.24.09-.26.21l-.2 1.32c-.31.12-.6.3-.87.49l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.73c-.06.12-.03.25.07.33l1.08.82c-.02.16-.03.33-.03.49 0 .17.02.33.04.49l-1.09.83c-.1.07-.12.21-.06.32l1.03 1.73c.06.11.2.15.31.11l1.28-.5c.27.2.56.36.87.49l.2 1.32c.01.12.12.21.25.21h2.06c.13 0 .24-.09.25-.21l.2-1.32c.31-.12.6-.3.87-.49l1.28.5c.12.05.25 0 .31-.11l1.03-1.73c.06-.11.04-.24-.06-.32l-1.1-.83zM7 13.75c-.99 0-1.8-.78-1.8-1.75s.81-1.75 1.8-1.75 1.8.78 1.8 1.75S8 13.75 7 13.75zM18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_emergency\": {\n    \"name\": \"contact_emergency\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,3H2C0.9,3,0,3.9,0,5v14c0,1.1,0.9,2,2,2h20c1.1,0,1.99-0.9,1.99-2L24,5C24,3.9,23.1,3,22,3z M9,8c1.65,0,3,1.35,3,3 s-1.35,3-3,3s-3-1.35-3-3S7.35,8,9,8z M2.08,19c1.38-2.39,3.96-4,6.92-4s5.54,1.61,6.92,4H2.08z M20.97,9.85l-0.75,1.3l-1.47-0.85 V12h-1.5v-1.7l-1.47,0.85l-0.75-1.3L16.5,9l-1.47-0.85l0.75-1.3l1.47,0.85V6h1.5v1.7l1.47-0.85l0.75,1.3L19.5,9L20.97,9.85z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.5,3h-17C0.67,3,0,3.67,0,4.5v11C0,16.33,0.67,17,1.5,17h17c0.83,0,1.5-0.67,1.5-1.5v-11C20,3.67,19.33,3,18.5,3z M7,7 c1.38,0,2.5,1.12,2.5,2.5S8.38,12,7,12s-2.5-1.12-2.5-2.5S5.62,7,7,7z M1.64,15.5C2.93,13.97,4.85,13,7,13s4.07,0.97,5.36,2.5H1.64 z M17.42,9.32l-0.5,0.87L15.5,9.37V11h-1V9.37l-1.42,0.82l-0.5-0.87L14,8.5l-1.42-0.82l0.5-0.87l1.42,0.82V6h1v1.63l1.42-0.82 l0.5,0.87L16,8.5L17.42,9.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stop_screen_share\": {\n    \"name\": \"stop_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.22 18.02l2 2H24v-2h-2.78zm.77-2l.01-10c0-1.11-.9-2-2-2H7.22l5.23 5.23c.18-.04.36-.07.55-.1V7.02l4 3.73-1.58 1.47 5.54 5.54c.61-.33 1.03-.99 1.03-1.74zM2.39 1.73L1.11 3l1.54 1.54c-.4.36-.65.89-.65 1.48v10c0 1.1.89 2 2 2H0v2h18.13l2.71 2.71 1.27-1.27L2.39 1.73zM7 15.02c.31-1.48.92-2.95 2.07-4.06l1.59 1.59c-1.54.38-2.7 1.18-3.66 2.47z\\\"></path>\"\n      }\n    }\n  },\n  \"spoke\": {\n    \"name\": \"spoke\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,7c0,2.21-1.79,4-4,4S8,9.21,8,7s1.79-4,4-4S16,4.79,16,7z M7,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.21,13,7,13 z M17,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S19.21,13,17,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3C8.34,3,7,4.34,7,6c0,1.66,1.34,3,3,3s3-1.34,3-3C13,4.34,11.66,3,10,3z M14,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3 s3-1.34,3-3C17,12.34,15.66,11,14,11z M6,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C9,12.34,7.66,11,6,11z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_wifi\": {\n    \"name\": \"cell_wifi\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,9.98L6,22h12h4V5.97L18,9.98z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z\\\"></path>\"\n      }\n    }\n  },\n  \"call_missed_outgoing\": {\n    \"name\": \"call_missed_outgoing\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M3,8.41l9,9l7-7V15h2V7h-8v2h4.59L12,14.59L4.41,7L3,8.41z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"call_made\": {\n    \"name\": \"call_made\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z\\\"></path>\"\n      }\n    }\n  },\n  \"send_time_extension\": {\n    \"name\": \"send_time_extension\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6c0-1.1-0.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H5.01c-1.1,0-2,0.9-2,2v3.8C5.7,9.8,6,11.96,6,12.5 c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8c0-2.16,1.37-2.78,2.2-2.94v-9.3l9,4.5V6z\\\"></path><polygon points=\\\"13,12 13,16 17,17 13,18 13,22 23,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,11.32V4.5C17,3.67,16.33,3,15.5,3H12c0-1.1-0.9-2-2-2S8,1.9,8,3H4.5C3.67,3,3,3.67,3,4.5V8c1.1,0,2,0.9,2,2 s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-0.93,0.64-1.71,1.5-1.93V10V7.57l2.17,1.09L17,11.32z\\\"></path><polygon points=\\\"11,10 11,13 14,14 11,15 11,18 19,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"mail_outline\": {\n    \"name\": \"mail_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"email\": {\n    \"name\": \"email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"print_disabled\": {\n    \"name\": \"print_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.1 17H22v-6c0-1.7-1.3-3-3-3h-9l9.1 9zm-.1-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-1-3V3H6v1.1L9 7zM1.2 1.8L0 3l4.9 5C3.3 8.1 2 9.4 2 11v6h4v4h11.9l3 3 1.3-1.3-21-20.9zM8 19v-5h2.9l5 5H8z\\\"></path>\"\n      }\n    }\n  },\n  \"comment\": {\n    \"name\": \"comment\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dialer_sip\": {\n    \"name\": \"dialer_sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3h-1v5h1V3zm-2 2h-2V4h2V3h-3v3h2v1h-2v1h3V5zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_screen_share\": {\n    \"name\": \"mobile_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.2-5.78v1.75l3.2-2.99L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z\\\"></path>\"\n      }\n    }\n  },\n  \"key_off\": {\n    \"name\": \"key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.91,14.09L17,14l2,2l4-4.04L21,10h-8.17L16.91,14.09z M3.98,6.81C2.2,7.85,1,9.79,1,12c0,3.31,2.69,6,6,6 c2.21,0,4.15-1.2,5.18-2.99l7.59,7.59l1.41-1.41L2.81,2.81L1.39,4.22L3.98,6.81z M9.91,12.74C9.58,14.03,8.4,15,7,15 c-1.65,0-3-1.35-3-3c0-1.4,0.97-2.58,2.26-2.91L9.91,12.74z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.06,11.94l0.44-0.44L16,13l3-3l-1.5-1.5h-6.88L14.06,11.94z M10.33,12.46C9.48,13.97,7.87,15,6,15c-2.76,0-5-2.24-5-5 c0-1.86,1.02-3.49,2.53-4.35L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L10.33,12.46z M5.44,7.56C4.33,7.82,3.5,8.81,3.5,10 c0,1.38,1.12,2.5,2.5,2.5c1.19,0,2.18-0.83,2.44-1.94L5.44,7.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stay_primary_landscape\": {\n    \"name\": \"stay_primary_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"dialpad\": {\n    \"name\": \"dialpad\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"more_time\": {\n    \"name\": \"more_time\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8\\\"></polygon><path d=\\\"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z\\\"></path><polygon points=\\\"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8.5,8.05 8.5,12.05 11.67,13.95 12.17,13.13 9.5,11.55 9.5,8.05\\\"></polygon><path d=\\\"M13.9,10c0.07,0.32,0.1,0.66,0.1,1c0,2.76-2.24,5-5,5s-5-2.24-5-5s2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5.35 C10.37,5.13,9.7,5,9,5c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6c0-0.34-0.04-0.67-0.09-1H13.9z\\\"></path><polygon points=\\\"15,6 15,4 14,4 14,6 14,6 12,6 12,7 14,7 14,9 15,9 15,7 15,7 17,7 17,6\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"chat\": {\n    \"name\": \"chat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"ring_volume\": {\n    \"name\": \"ring_volume\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.71 16.67C20.66 13.78 16.54 12 12 12 7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7zM21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM13 2h-2v5h2V2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z\\\"></path>\"\n      }\n    }\n  },\n  \"call_merge\": {\n    \"name\": \"call_merge\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_email_unread\": {\n    \"name\": \"mark_email_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,8.98V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1C14.04,4.32,14,4.66,14,5 c0,1.48,0.65,2.79,1.67,3.71L12,11L4,6v2l8,5l5.3-3.32C17.84,9.88,18.4,10,19,10C20.13,10,21.16,9.61,22,8.98z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,7.22V15c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h8.18C12.07,4.31,12,4.65,12,5 c0,0.79,0.31,1.5,0.81,2.03L10,8.82L4,5v1.18L10,10l3.66-2.33C14.06,7.87,14.52,8,15,8C15.77,8,16.47,7.7,17,7.22z M13,5 c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,3.9,13,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"list_alt\": {\n    \"name\": \"list_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m1.1-2H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM11 7h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"unsubscribe\": {\n    \"name\": \"unsubscribe\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.5 13c-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.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.76.26 2.5.69V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55zM12 10.5L5 7V5l7 3.5L19 5v2l-7 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"message\": {\n    \"name\": \"message\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"domain_verification\": {\n    \"name\": \"domain_verification\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54\\\"></polygon><path d=\\\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V7h10V15z\\\"></path><polygon points=\\\"13.18,9.23 12.47,8.53 8.94,12.06 7.53,10.65 6.82,11.35 8.94,13.47\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"nat\": {\n    \"name\": \"nat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z\\\"></path><path d=\\\"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.93,10.5H10v-1H5.93C5.71,8.64,4.93,8,4,8c-1.1,0-2,0.9-2,2s0.9,2,2,2C4.93,12,5.71,11.36,5.93,10.5z M4,11 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S4.55,11,4,11z\\\"></path><path d=\\\"M18,10l-3-2v1.5h-3.03C11.72,5.87,8.7,3,5,3v1c3.31,0,6,2.69,6,6s-2.69,6-6,6v1c3.7,0,6.72-2.87,6.97-6.5H15V12L18,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"document_scanner\": {\n    \"name\": \"document_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,3H4v3H2V1h5V3z M22,6V1h-5v2h3v3H22z M7,21H4v-3H2v5h5V21z M20,18v3h-3v2h5v-5H20z M19,18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2V18z M15,8H9v2h6V8z M15,11H9v2h6V11z M15,14H9v2h6V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,2.5H3.5V5H2V1h4V2.5z M16.5,5l0-2.5l-2.5,0L14,1l4,0l0,4L16.5,5z M14,17.5h2.5V15H18v4h-4V17.5z M3.5,15l0,2.5l2.5,0 L6,19l-4,0l0-4L3.5,15z M13.57,4H6.43C5.64,4,5,4.67,5,5.5v9C5,15.33,5.64,16,6.43,16h7.14c0.79,0,1.43-0.67,1.43-1.5v-9 C15,4.67,14.36,4,13.57,4z M12,13H8v-1.5h4V13z M12,10.75H8v-1.5h4V10.75z M12,8.5H8V7h4V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"contacts\": {\n    \"name\": \"contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 0H4v2h16V0zM4 24h16v-2H4v2zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_calls\": {\n    \"name\": \"swap_calls\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_received\": {\n    \"name\": \"call_received\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41z\\\"></path>\"\n      }\n    }\n  },\n  \"call_split\": {\n    \"name\": \"call_split\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_disabled\": {\n    \"name\": \"person_add_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M23 20v-2c0-2.3-4.1-3.7-6.9-3.9l6 5.9h.9zm-11.6-5.5C9.2 15.1 7 16.3 7 18v2h9.9l4 4 1.3-1.3-21-20.9L0 3.1l4 4V10H1v2h3v3h2v-3h2.9l2.5 2.5zM6 10v-.9l.9.9H6z\\\"></path>\"\n      }\n    }\n  },\n  \"3p\": {\n    \"name\": \"3p\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4.01c-1.1,0-2,0.9-2,2L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M12,6c1.1,0,2,0.9,2,2s-0.9,2-2,2 s-2-0.9-2-2S10.9,6,12,6z M16,14H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,11.21,11.01,11,12,11c0.99,0,1.93,0.21,2.78,0.58 C15.52,11.9,16,12.62,16,13.43V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sip\": {\n    \"name\": \"sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"15.5\\\" y=\\\"10.5\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M10,10.5H6.5v0.75H9 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H5v-1.5h3.5v-0.75H6c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h4V10.5z M13,15h-2V9h2V15z M19,12c0,0.55-0.45,1-1,1h-2.5v2H14V9h4c0.55,0,1,0.45,1,1V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"forward_to_inbox\": {\n    \"name\": \"forward_to_inbox\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,12.5l3,3l-3,3V16h-3v-1h3V12.5z M11,15H4V6.18L10,10l6-3.82V12h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10 c0,0.55,0.45,1,1,1h7L11,15z M16,5l-6,3.82L4,5H16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_lock\": {\n    \"name\": \"phonelink_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_phone\": {\n    \"name\": \"contact_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_disabled\": {\n    \"name\": \"phone_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.34 14.54l-1.43-1.43c.56-.73 1.05-1.5 1.47-2.32l-2.2-2.2c-.28-.28-.36-.67-.25-1.02.37-1.12.57-2.32.57-3.57 0-.55.45-1 1-1H20c.55 0 1 .45 1 1 0 3.98-1.37 7.64-3.66 10.54zm-2.82 2.81C11.63 19.64 7.97 21 4 21c-.55 0-1-.45-1-1v-3.49c0-.55.45-1 1-1 1.24 0 2.45-.2 3.57-.57.35-.12.75-.03 1.02.24l2.2 2.2c.81-.42 1.58-.9 2.3-1.46L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26z\\\"></path>\"\n      }\n    }\n  },\n  \"textsms\": {\n    \"name\": \"textsms\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key\": {\n    \"name\": \"vpn_key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_share\": {\n    \"name\": \"screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z\\\"></path>\"\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "sphinx_design/compiled/material_round.json",
    "content": "{\n  \"auto_delete\": {\n    \"name\": \"auto_delete\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,9c-0.7,0-1.37,0.1-2,0.29V7c0-1.1-0.9-2-2-2H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4 c3.87,0,7-3.13,7-7C23,12.13,19.87,9,16,9z M16,21c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z\\\"></path><path d=\\\"M14,4c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-2.5l-0.71-0.71C10.61,1.11,10.35,1,10.09,1H5.91C5.65,1,5.39,1.11,5.21,1.29 L4.5,2H2C1.45,2,1,2.45,1,3c0,0.55,0.45,1,1,1H14z\\\"></path><path d=\\\"M15.75,12L15.75,12C15.34,12,15,12.34,15,12.75v3.68c0,0.36,0.19,0.68,0.5,0.86l2.52,1.47c0.33,0.19,0.75,0.09,0.96-0.22 v0c0.23-0.34,0.12-0.81-0.24-1.02L16.5,16.2v-3.45C16.5,12.34,16.16,12,15.75,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,4.5C13,4.22,12.78,4,12.5,4H11l-0.85-0.85C10.05,3.05,9.93,3,9.79,3H6.21C6.07,3,5.95,3.05,5.85,3.15L5,4H3.5 C3.22,4,3,4.22,3,4.5C3,4.78,3.22,5,3.5,5h9C12.78,5,13,4.78,13,4.5z\\\"></path><path d=\\\"M12.5,8c-0.17,0-0.33,0.03-0.5,0.05V7c0-0.55-0.45-1-1-1H5C4.45,6,4,6.45,4,7v7c0,0.55,0.45,1,1,1h3.76 c0.81,1.21,2.18,2,3.74,2c2.49,0,4.5-2.01,4.5-4.5S14.99,8,12.5,8z M12.5,16C10.57,16,9,14.43,9,12.5S10.57,9,12.5,9 s3.5,1.57,3.5,3.5S14.43,16,12.5,16z\\\"></path><path d=\\\"M13,12.42V10.5c0-0.28-0.22-0.5-0.5-0.5h0c-0.28,0-0.5,0.22-0.5,0.5v2.21c0,0.18,0.1,0.34,0.25,0.43l1.92,1.11 c0.24,0.14,0.54,0.06,0.68-0.18v0c0.14-0.24,0.06-0.54-0.18-0.68L13,12.42z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_alert\": {\n    \"name\": \"add_alert\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,22c1.1,0,2-0.9,2-2h-4C10,21.1,10.9,22,12,22z\\\"></path></g><g><path d=\\\"M19,17h-1v-7c0-2.79-1.91-5.14-4.5-5.8V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5v0.7C7.91,4.86,6,7.21,6,10v7H5 c-0.55,0-1,0.45-1,1s0.45,1,1,1h14c0.55,0,1-0.45,1-1S19.55,17,19,17z M14,13h-1v1c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1h-1 c-0.55,0-1-0.45-1-1s0.45-1,1-1h1v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1h1c0.55,0,1,0.45,1,1S14.55,13,14,13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"warning\": {\n    \"name\": \"warning\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4.47 21h15.06c1.54 0 2.5-1.67 1.73-3L13.73 4.99c-.77-1.33-2.69-1.33-3.46 0L2.74 18c-.77 1.33.19 3 1.73 3zM12 14c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_important\": {\n    \"name\": \"notification_important\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm8.29-4.71L19 17v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-1.29 1.29c-.63.63-.19 1.71.7 1.71h15.17c.9 0 1.34-1.08.71-1.71zM13 16h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v2z\\\"></path>\"\n      }\n    }\n  },\n  \"error_outline\": {\n    \"name\": \"error_outline\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 7c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1zm-.01-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-3h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"error\": {\n    \"name\": \"error\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 11c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"warning_amber\": {\n    \"name\": \"warning_amber\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 5.99L19.53 19H4.47L12 5.99M2.74 18c-.77 1.33.19 3 1.73 3h15.06c1.54 0 2.5-1.67 1.73-3L13.73 4.99c-.77-1.33-2.69-1.33-3.46 0L2.74 18zM11 11v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zm0 5h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"recommend\": {\n    \"name\": \"recommend\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M18,11.8c0.02,0.17-0.02,0.35-0.1,0.5l-2.1,4.9 c-0.22,0.51-0.74,0.83-1.3,0.8H9c-1.1,0-2-0.9-2-2v-5c-0.02-0.38,0.13-0.74,0.4-1L12,5l0.69,0.69c0.18,0.19,0.29,0.44,0.3,0.7v0.2 L12.41,10H17c0.55,0,1,0.45,1,1V11.8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plus_one\": {\n    \"name\": \"plus_one\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 8c-.55 0-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V9c0-.55-.45-1-1-1zm5.5-1.21c0 .57.52 1 1.08.89L17 7.4V17c0 .55.45 1 1 1s1-.45 1-1V6.27c0-.65-.6-1.12-1.23-.97l-2.57.62c-.41.09-.7.46-.7.87z\\\"></path>\"\n      }\n    }\n  },\n  \"mood_bad\": {\n    \"name\": \"mood_bad\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.03 0-3.8 1.11-4.75 2.75-.19.33.06.75.44.75h8.62c.38 0 .63-.42.44-.75-.95-1.64-2.72-2.75-4.75-2.75z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_mma\": {\n    \"name\": \"sports_mma\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z\\\"></path><path d=\\\"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8h10.36c0.45,0,0.89-0.36,0.98-0.8l0.8-4C18.99,11.06,19,10.93,19,10.8V8C19,7.45,18.55,7,18,7z M14,10 H8c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v1C15,9.55,14.55,10,14,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,15.5C6,15.78,6.22,16,6.5,16h7c0.28,0,0.5-0.22,0.5-0.5V14H6V15.5z\\\"></path><path d=\\\"M14,7c-0.55,0-1,0.45-1,1l-0.01-3c0-0.55-0.45-1-1-1H6C5.45,4,5,4.45,5,5v4.57c0.01,0.07,0.01,0.13,0.02,0.2l0.57,2.83 C5.63,12.83,5.84,13,6.08,13h7.85c0.23,0,0.45-0.18,0.49-0.4l0.57-2.83c0.01-0.07,0.01-0.13,0.02-0.2V8C15,7.45,14.55,7,14,7z M10.5,9h-3C7.22,9,7,8.78,7,8.5v-1C7,7.22,7.22,7,7.5,7h3C10.78,7,11,7.22,11,7.5v1C11,8.78,10.78,9,10.5,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compost\": {\n    \"name\": \"compost\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.73,21.5c-4.95-0.14-9.08-4.27-9.22-9.22C2.35,6.91,6.67,2.5,12,2.5V1.21c0-0.45,0.54-0.67,0.85-0.35l2.79,2.79 c0.2,0.2,0.2,0.51,0,0.71l-2.79,2.79C12.54,7.46,12,7.24,12,6.79V5.5c-3.58,0-6.5,2.92-6.5,6.5c0,2.21,1.11,4.17,2.81,5.35 c0.51-0.92,1.63-1.62,2.98-1.8c-0.09-0.69-0.26-1.42-0.49-2.03c-0.33,0.28-0.75,0.46-1.22,0.48c-1.14,0.05-2.08-0.99-2.08-2.13 l0-0.86c0-0.29-0.05-0.57-0.14-0.83C7.24,9.84,7.5,9.49,7.86,9.52c1.3,0.09,3.6,0.52,3.64,2.48c0,0.29-0.06,0.56-0.17,0.8 C10.91,12.48,10.47,12.2,10,12c0.58,0.43,1.37,1.37,2,2.6c0.67-1.62,1.68-3.27,3-4.6c-0.76,0.52-1.47,1.12-2.13,1.81 c-0.26-0.42-0.4-0.93-0.36-1.47C12.59,9,13.79,8,15.13,8L16,8c0.56,0,0.97-0.14,1.28-0.31c0.34-0.19,0.76,0.05,0.75,0.44 C17.99,9.87,17.56,13,15,13c-0.49,0-0.94-0.14-1.32-0.38c-0.24,0.64-0.59,1.76-0.76,2.96c1.26,0.22,2.28,0.89,2.77,1.77 c1.57-1.09,2.64-2.85,2.79-4.87C18.5,12.22,18.71,12,18.98,12l1.82,0c0.47,0,0.71,0.24,0.69,0.52 C21.21,17.61,16.91,21.64,11.73,21.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.5,10.12c0-1.48-1.7-1.93-2.73-2.06C6.44,8.02,6.16,8.3,6.21,8.63C6.23,8.8,6.25,9,6.24,9.25l0.01,0.88 c0,0.9,0.73,1.62,1.62,1.62c0.42,0,0.8-0.16,1.09-0.42c0.16,0.4,0.4,1.1,0.42,1.72c-1.06,0.16-1.96,0.73-2.46,1.51 C5.46,13.57,4.5,11.9,4.5,10c0-3.03,2.47-5.5,5.5-5.5l0,0.85c0,0.44,0.52,0.66,0.84,0.37l2.27-2.1c0.21-0.2,0.21-0.53,0-0.73 l-2.27-2.1C10.52,0.48,10,0.71,10,1.15L10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8c4.24,0,7.71-3.3,7.98-7.46C18,10.25,17.77,10,17.48,10 h-1.5c-0.26,0-0.48,0.2-0.5,0.45c-0.14,1.71-1.06,3.2-2.41,4.11c-0.49-0.77-1.36-1.33-2.39-1.5c0.11-0.95,0.33-1.57,0.63-2.38 C11.63,10.88,12,11,12.4,11c1.93,0,2.43-2.26,2.56-3.8c0.03-0.39-0.38-0.67-0.73-0.49C13.93,6.88,13.53,7,13,7h-0.6 c-1.1,0-2,0.9-2,2c0,0.38,0.11,0.74,0.29,1.04c0.14-0.15,1.05-1.09,1.81-1.54c-0.48,0.4-1.78,1.93-2.5,3.71 C9.42,11.08,8.51,10.17,8.25,10c0.44,0.17,0.99,0.58,1.15,0.69C9.46,10.51,9.5,10.32,9.5,10.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"front_hand\": {\n    \"name\": \"front_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,14.5c0,0.28-0.22,0.5-0.5,0.5l0,0c-1.51,0-2.77,1.12-2.97,2.58C15,17.82,14.78,18,14.54,18c-0.3,0-0.54-0.27-0.5-0.57 c0.26-1.77,1.68-3.17,3.46-3.4l0-10.78C17.5,2.56,16.94,2,16.25,2C15.56,2,15,2.56,15,3.25v7.25c0,0.28-0.22,0.5-0.5,0.5 S14,10.78,14,10.5V1.25C14,0.56,13.44,0,12.75,0S11.5,0.56,11.5,1.25v9.25c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5V2.75 c0-0.69-0.56-1.25-1.25-1.25S8,2.06,8,2.75v8.75C8,11.78,7.78,12,7.5,12S7,11.78,7,11.5V5.75C7,5.06,6.44,4.5,5.75,4.5 S4.5,5.06,4.5,5.75v10c0,4.56,3.69,8.25,8.25,8.25S21,20.31,21,15.75v-6.5C21,8.56,20.44,8,19.75,8S18.5,8.56,18.5,9.25V14.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,8.5C11.5,8.78,11.72,9,12,9h0c0.28,0,0.5-0.22,0.5-0.5v-6c0-0.55,0.45-1,1-1s1,0.45,1,1l0,9.04 c-1.51,0.22-2.71,1.4-2.95,2.89c-0.05,0.3,0.19,0.57,0.5,0.57h0c0.24,0,0.45-0.17,0.49-0.41c0.2-1.18,1.23-2.09,2.47-2.09h0 c0.28,0,0.5-0.22,0.5-0.5V7.5c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V13c0,3.87-3.13,7-7,7s-7-3.13-7-7V5c0-0.55,0.45-1,1-1 s1,0.45,1,1v4.5C5.5,9.78,5.72,10,6,10h0c0.28,0,0.5-0.22,0.5-0.5V2.25c0-0.55,0.45-1,1-1s1,0.45,1,1V8.5C8.5,8.78,8.72,9,9,9h0 c0.28,0,0.5-0.22,0.5-0.5V1c0-0.55,0.45-1,1-1s1,0.45,1,1V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"safety_divider\": {\n    \"name\": \"safety_divider\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,5h2v14h-2V5z M5,12c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C3,11.1,3.9,12,5,12z M7.78,13.58 C6.93,13.21,5.99,13,5,13s-1.93,0.21-2.78,0.58C1.48,13.9,1,14.62,1,15.43L1,16h8l0-0.57C9,14.62,8.52,13.9,7.78,13.58z M19,12 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C17,11.1,17.9,12,19,12z M21.78,13.58C20.93,13.21,19.99,13,19,13s-1.93,0.21-2.78,0.58 C15.48,13.9,15,14.62,15,15.43L15,16h8l0-0.57C23,14.62,22.52,13.9,21.78,13.58z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_2\": {\n    \"name\": \"groups_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.27,12h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C14.67,7.04,13.44,6,12,6S9.33,7.04,9.09,8.47l-0.3,1.79 C8.64,11.17,9.34,12,10.27,12z\\\"></path><path d=\\\"M1.66,11.11c-0.13,0.26-0.18,0.57-0.1,0.88c0.16,0.69,0.76,1.03,1.53,1c0,0,1.49,0,1.95,0c0.83,0,1.51-0.58,1.51-1.29 c0-0.14-0.03-0.27-0.07-0.4c-0.01-0.03-0.01-0.05,0.01-0.08c0.09-0.16,0.14-0.34,0.14-0.53c0-0.31-0.14-0.6-0.36-0.82 c-0.03-0.03-0.03-0.06-0.02-0.1c0.07-0.2,0.07-0.43,0.01-0.65C6.1,8.69,5.71,8.4,5.27,8.38c-0.03,0-0.05-0.01-0.07-0.03 C5.03,8.14,4.72,8,4.37,8C4.07,8,3.8,8.1,3.62,8.26C3.59,8.29,3.56,8.29,3.53,8.28c-0.14-0.06-0.3-0.09-0.46-0.09 c-0.65,0-1.18,0.49-1.24,1.12c0,0.02-0.01,0.04-0.03,0.06c-0.29,0.26-0.46,0.65-0.41,1.05c0.03,0.22,0.12,0.43,0.25,0.6 C1.67,11.04,1.67,11.08,1.66,11.11z\\\"></path><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39L6,17 c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1l0-0.61C18,15.21,17.32,14.13,16.24,13.65z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43L0,17c0,0.55,0.45,1,1,1l3.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29 C4.76,14.04,4.39,14,4,14C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l3.5,0 c0.55,0,1-0.45,1-1l0-0.57C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M22,11v-0.5c0-1.1-0.9-2-2-2h-2c-0.42,0-0.65,0.48-0.39,0.81l0.7,0.63C18.12,10.25,18,10.61,18,11c0,1.1,0.9,2,2,2 S22,12.1,22,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.22,10h3.56c0.63,0,1.1-0.58,0.98-1.2l-0.37-1.84C12.16,5.82,11.16,5,10,5S7.84,5.82,7.61,6.96L7.24,8.8 C7.12,9.42,7.59,10,8.22,10z\\\"></path><path d=\\\"M1.63,9.49C1.52,9.7,1.49,9.95,1.54,10.2c0.13,0.55,0.61,0.83,1.22,0.8c0,0,1.19,0,1.56,0C5,11,5.54,10.54,5.54,9.97 c0-0.11-0.02-0.22-0.06-0.32c-0.01-0.02-0.01-0.04,0-0.06c0.07-0.13,0.11-0.27,0.11-0.42c0-0.25-0.11-0.48-0.29-0.66 C5.28,8.49,5.28,8.46,5.29,8.43c0.05-0.16,0.06-0.34,0.01-0.52C5.18,7.56,4.86,7.32,4.51,7.3c-0.02,0-0.04-0.01-0.05-0.03 C4.32,7.11,4.08,7,3.8,7c-0.24,0-0.46,0.08-0.6,0.21C3.18,7.23,3.15,7.23,3.12,7.22C3.01,7.18,2.89,7.15,2.76,7.15 c-0.52,0-0.94,0.39-0.99,0.9c0,0.02-0.01,0.03-0.02,0.05C1.51,8.31,1.38,8.62,1.42,8.94c0.02,0.18,0.09,0.34,0.2,0.48 C1.64,9.44,1.64,9.47,1.63,9.49z\\\"></path><path d=\\\"M16.5,11c0.83,0,1.5-0.67,1.5-1.5c0-0.04-0.01-0.07-0.01-0.11H18V9.01c0-0.83-0.68-1.51-1.51-1.51h-1.61 c-0.32,0-0.49,0.37-0.29,0.61l0.65,0.58C15.09,8.93,15,9.2,15,9.5C15,10.33,15.67,11,16.5,11z\\\"></path><path d=\\\"M13.9,11.93C12.87,11.41,11.54,11,10,11c-1.54,0-2.87,0.41-3.9,0.93C5.42,12.26,5,12.96,5,13.72L5,14c0,0.55,0.45,1,1,1h8 c0.55,0,1-0.45,1-1l0-0.28C15,12.96,14.58,12.26,13.9,11.93z\\\"></path><path d=\\\"M18.74,12.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,15h3 c0.55,0,1-0.45,1-1l0-0.13C20,13.05,19.5,12.31,18.74,12.01z\\\"></path><path d=\\\"M3.5,11.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,12.31,0,13.05,0,13.87L0,14c0,0.55,0.45,1,1,1h3l0-1.28 c0-0.76,0.28-1.45,0.75-1.99C4.36,11.65,3.94,11.6,3.5,11.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"groups\": {\n    \"name\": \"groups\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1l0-0.61 c0-1.18,0.68-2.26,1.76-2.73C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43L0,17 c0,0.55,0.45,1,1,1l3.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1 c0.4,0.68,0.63,1.46,0.63,2.29V18l3.5,0c0.55,0,1-0.45,1-1L24,16.43z M12,6c1.66,0,3,1.34,3,3c0,1.66-1.34,3-3,3s-3-1.34-3-3 C9,7.34,10.34,6,12,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"girl\": {\n    \"name\": \"girl\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,16v3c0,0.55-0.45,1-1,1h-2 c-0.55,0-1-0.45-1-1v-3H9.44c-0.7,0-1.18-0.7-0.94-1.35l1.88-5.03C10.63,8.95,11.28,8.5,12,8.5s1.37,0.45,1.62,1.12l1.88,5.03 C15.74,15.3,15.26,16,14.56,16H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z M10,7.5 c0.48,0,0.92,0.29,1.1,0.74l1.63,4.07c0.13,0.33-0.11,0.69-0.46,0.69H11.5v2.5c0,0.28-0.22,0.5-0.5,0.5H9 c-0.28,0-0.5-0.22-0.5-0.5V13H7.74c-0.35,0-0.6-0.36-0.46-0.69L8.9,8.24C9.08,7.79,9.52,7.5,10,7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"piano\": {\n    \"name\": \"piano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M14,14.5h0.25V19h-4.5v-4.5H10 c0.55,0,1-0.45,1-1V5h2v8.5C13,14.05,13.45,14.5,14,14.5z M5,5h2v8.5c0,0.55,0.45,1,1,1h0.25V19H5V5z M19,19h-3.25v-4.5H16 c0.55,0,1-0.45,1-1V5h2V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7,15.5H4.5v-11H6v7C6,11.78,6.22,12,6.5,12H7V15.5z M12,15.5H8V12h0.5C8.78,12,9,11.78,9,11.5v-7h2v7c0,0.28,0.22,0.5,0.5,0.5H12 V15.5z M15.5,15.5H13V12h0.5c0.28,0,0.5-0.22,0.5-0.5v-7h1.5V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people_outline\": {\n    \"name\": \"people_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h3c.55 0 1-.45 1-1v-.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"group\": {\n    \"name\": \"group\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_off\": {\n    \"name\": \"notifications_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h12.83l1.74 1.74 1.41-1.41L5.41 3.35z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_objects\": {\n    \"name\": \"emoji_objects\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M12.5,14h-1v-2.59L9.67,9.59l0.71-0.71L12,10.5 l1.62-1.62l0.71,0.71l-1.83,1.83V14z M13.5,19c-0.01,0-0.02-0.01-0.03-0.01V19h-2.94v-0.01c-0.01,0-0.02,0.01-0.03,0.01 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5c0.01,0,0.02,0.01,0.03,0.01V18h2.94v0.01c0.01,0,0.02-0.01,0.03-0.01 c0.28,0,0.5,0.22,0.5,0.5C14,18.78,13.78,19,13.5,19z M13.5,17h-3c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h3 c0.28,0,0.5,0.22,0.5,0.5C14,16.78,13.78,17,13.5,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M14.91,7.07c-0.01-0.04-0.01-0.08-0.02-0.12c-0.06-0.28-0.15-0.56-0.26-0.82c-0.02-0.05-0.04-0.09-0.06-0.14 c-0.11-0.26-0.25-0.5-0.4-0.74c-0.03-0.04-0.05-0.08-0.08-0.11c-0.16-0.23-0.34-0.46-0.55-0.66c-0.02-0.02-0.03-0.03-0.05-0.05 c-0.2-0.2-0.42-0.38-0.66-0.54c-0.02-0.02-0.04-0.03-0.06-0.05c-0.24-0.16-0.49-0.29-0.75-0.41c-0.04-0.02-0.09-0.04-0.13-0.06 c-0.26-0.11-0.53-0.19-0.81-0.25c-0.05-0.01-0.1-0.02-0.15-0.03C10.64,3.04,10.34,3.01,10.04,3C10.03,3,10.01,3,10,3 C9.9,3,9.79,3.01,9.69,3.02c-0.06,0-0.12,0-0.18,0.01C9.31,3.04,9.12,3.07,8.93,3.11c-1.94,0.4-3.49,2-3.84,3.95 c-0.31,1.72,0.26,3.3,1.33,4.4C6.78,11.84,7,12.34,7,12.87c0,0.77,0,1.6,0,2.14c0,0.55,0.45,1,1,1h0.28l0,0c0.35,0.6,0.98,1,1.72,1 s1.38-0.4,1.72-1l0,0H12c0.55,0,1-0.45,1-1v-2.13c0-0.52,0.21-1.02,0.58-1.4C14.45,10.57,15,9.35,15,8 C15,7.68,14.96,7.37,14.91,7.07z M8.73,6.73L10,8l1.27-1.27l0.71,0.71L10.5,8.91V11h-1V8.91L8.03,7.44L8.73,6.73z M11.5,15 C11.5,15,11.5,15,11.5,15L10,15l0,0l0,0l-1.5,0v0h0C8.22,15,8,14.78,8,14.5C8,14.22,8.22,14,8.5,14h3h0c0.28,0,0.5,0.22,0.5,0.5 C12,14.78,11.78,15,11.5,15z M11.5,13L11.5,13h-3h0C8.22,13,8,12.78,8,12.5C8,12.22,8.22,12,8.5,12h0h3h0c0.28,0,0.5,0.22,0.5,0.5 C12,12.78,11.78,13,11.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_notifications\": {\n    \"name\": \"edit_notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17.58,6.25l1.77,1.77l-4.84,4.84C14.42,12.95,14.29,13,14.16,13H13.1c-0.28,0-0.5-0.22-0.5-0.5v-1.06 c0-0.13,0.05-0.26,0.15-0.35L17.58,6.25z M20.85,5.81l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.85,0.85l1.77,1.77l0.85-0.85 C21.05,6.32,21.05,6,20.85,5.81z M20,18c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1s0.45-1,1-1h1v-7c0-2.79,1.91-5.14,4.5-5.8V3.5 C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7c0.82,0.21,1.57,0.59,2.21,1.09l-4.52,4.52c-0.38,0.38-0.59,0.88-0.59,1.41V13 c0,1.1,0.9,2,2,2h1.77c0.53,0,1.04-0.21,1.41-0.59L18,12.2V17h1C19.55,17,20,17.45,20,18z M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M16,14.75c0-0.41-0.34-0.75-0.75-0.75H15V9.53l-1.88,1.88C12.75,11.79,12.24,12,11.71,12H11c-1.1,0-2-0.9-2-2V9.33 C9,8.8,9.21,8.29,9.59,7.91l3.12-3.12C12.19,4.47,11.62,4.23,11,4.1V3.03c0-0.53-0.4-1-0.93-1.03C9.48,1.96,9,2.43,9,3v1.1 C6.72,4.56,5,6.58,5,9v5H4.75C4.34,14,4,14.34,4,14.75s0.34,0.75,0.75,0.75h10.5C15.66,15.5,16,15.16,16,14.75z M10,18 c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z M14.32,5.27l1.41,1.41l-3.67,3.67c-0.09,0.09-0.22,0.15-0.35,0.15H11 c-0.28,0-0.5-0.22-0.5-0.5l0-0.71c0-0.13,0.05-0.26,0.15-0.35L14.32,5.27z M14.81,4.77l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0 l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L14.81,4.77z\\\"></path></g>\"\n      }\n    }\n  },\n  \"whatshot\": {\n    \"name\": \"whatshot\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.09 4.56c-.7-1.03-1.5-1.99-2.4-2.85-.35-.34-.94-.02-.84.46.19.94.39 2.18.39 3.29 0 2.06-1.35 3.73-3.41 3.73-1.54 0-2.8-.93-3.35-2.26-.1-.2-.14-.32-.2-.54-.11-.42-.66-.55-.9-.18-.18.27-.35.54-.51.83C4.68 9.08 4 11.46 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8c0-3.49-1.08-6.73-2.91-9.44zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.47-.3 2.98-.93 4.03-1.92.28-.26.74-.14.82.23.23 1.02.35 2.08.35 3.15.01 2.65-2.14 4.8-4.79 4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"roller_skating\": {\n    \"name\": \"roller_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,16c1.1,0,2-0.9,2-2l0-0.88c0-2.1-1.55-3.53-3.03-3.88l-2.7-0.67C13.4,8.35,12.7,7.76,12.32,7H9.5C9.22,7,9,6.78,9,6.5 S9.22,6,9.5,6h2.52L12,5H9.5C9.22,5,9,4.78,9,4.5C9,4.22,9.22,4,9.5,4H12V3c0-1.1-0.9-2-2-2H6C4.9,1,4,1.9,4,3v11c0,1.1,0.9,2,2,2 H18z M5,23c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S6.66,23,5,23z M19,23c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S20.66,23,19,23z M12,23c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,23,12,23z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,13.5c0.83,0,1.5-0.67,1.5-1.5v-1.5c0-1.1-0.72-2.08-1.78-2.4l-3.4-1.03c-0.33-0.1-0.6-0.3-0.79-0.57H8 C7.72,6.5,7.5,6.27,7.5,6S7.72,5.5,8,5.5h2.25v-1H8C7.72,4.5,7.5,4.27,7.5,4S7.72,3.5,8,3.5h2.25v-1c0-0.83-0.67-1.5-1.5-1.5H5 C4.17,1,3.5,1.67,3.5,2.5V12c0,0.83,0.67,1.5,1.5,1.5H15z M6.5,16.75c0-1.24-1.01-2.25-2.25-2.25S2,15.51,2,16.75S3.01,19,4.25,19 S6.5,17.99,6.5,16.75z M18,16.75c0-1.24-1.01-2.25-2.25-2.25s-2.25,1.01-2.25,2.25S14.51,19,15.75,19S18,17.99,18,16.75z M12.25,16.75c0-1.24-1.01-2.25-2.25-2.25s-2.25,1.01-2.25,2.25S8.76,19,10,19S12.25,17.99,12.25,16.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"downhill_skiing\": {\n    \"name\": \"downhill_skiing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18.5,3.4,18.5,4.5z M15.78,20.9l0.76,0.27c0.62,0.21,1.27,0.33,1.96,0.33 c0.68,0,1.34-0.12,1.95-0.33c0.27-0.09,0.57-0.02,0.78,0.18l0,0c0.39,0.4,0.23,1.06-0.3,1.24C20.17,22.86,19.35,23,18.5,23 c-0.86,0-1.68-0.14-2.45-0.41L2.7,17.72c-0.39-0.14-0.59-0.57-0.45-0.95l0,0c0.14-0.39,0.57-0.6,0.96-0.45l6.19,2.25l1.72-4.44 L7.55,10.4C6.65,9.46,6.87,7.93,8,7.28l3.48-2.01c1.1-0.64,2.52-0.1,2.91,1.11l0.33,1.08c0.44,1.42,1.48,2.57,2.83,3.14l0.29-0.89 c0.13-0.39,0.55-0.61,0.94-0.48h0c0.4,0.13,0.61,0.55,0.48,0.95l-0.6,1.85c-0.17,0.52-0.72,0.82-1.24,0.65 c-2.02-0.63-3.64-2.15-4.42-4.1l-2.53,1.45l2.23,2.55c0.49,0.56,0.63,1.34,0.36,2.04l-1.78,4.63l3.09,1.12l2.1-6.44h0l0,0 c0.46,0.18,0.94,0.31,1.44,0.41L15.78,20.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,3.75C12,2.78,12.78,2,13.75,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C12.79,5.5,12,4.72,12,3.75z M15.53,8.16 c-0.26-0.09-0.55,0.06-0.63,0.32l-0.23,0.69c-1.22-0.34-2.17-1.31-2.47-2.55l-0.24-0.97C11.72,4.67,10.61,4.2,9.75,4.7L6.83,6.38 c-0.89,0.5-1.13,1.7-0.37,2.43l3.1,2.94L8,15.8l-5.19-1.87c-0.26-0.09-0.55,0.04-0.64,0.3c-0.09,0.26,0.04,0.55,0.3,0.64l10.38,3.73 C13.52,18.86,14.24,19,15,19c0.84,0,1.63-0.17,2.36-0.48c0.32-0.14,0.4-0.56,0.15-0.81c-0.14-0.14-0.36-0.19-0.55-0.11 C16.36,17.86,15.7,18,15,18c-0.6,0-1.14-0.1-1.67-0.29l-0.35-0.12l1.9-5.83c-0.34-0.04-0.67-0.11-0.98-0.2l0,0l0,0l-1.85,5.7 l-2.62-0.94l1.68-4.37c0.14-0.37,0.05-0.79-0.23-1.07L8.74,8.74L10.9,7.5c0.61,1.68,2.09,2.93,3.89,3.23 c0.24,0.04,0.47-0.12,0.54-0.34l0.52-1.6C15.93,8.52,15.79,8.24,15.53,8.16z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_symbols\": {\n    \"name\": \"emoji_symbols\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M10,5H4C3.45,5,3,5.45,3,6c0,0.55,0.45,1,1,1h2v3c0,0.55,0.45,1,1,1s1-0.45,1-1V7h2c0.55,0,1-0.45,1-1 C11,5.45,10.55,5,10,5z\\\"></path><path d=\\\"M10,2H4C3.45,2,3,2.45,3,3s0.45,1,1,1h6c0.55,0,1-0.45,1-1S10.55,2,10,2z\\\"></path><path d=\\\"M20.89,13.11c-0.39-0.39-1.02-0.39-1.41,0l-6.36,6.36c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0l6.36-6.36 C21.28,14.13,21.28,13.5,20.89,13.11z\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h2c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v3.51 C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5C13,9.88,14.12,11,15.5,11z\\\"></path><path d=\\\"M10.45,18.09c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-0.71,0.71l-0.71-0.71l0.35-0.35 c0.98-0.98,0.98-2.56,0-3.54h0c-0.49-0.49-1.13-0.73-1.77-0.73c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54 l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54C4.22,21.76,4.86,22,5.5,22c0.64,0,1.28-0.24,1.77-0.73l1.06-1.06l0.71,0.71 c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41l-0.71-0.71v0L10.45,18.09z M5.85,14.2c0.12-0.12,0.26-0.15,0.35-0.15 s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9c-0.12-0.12-0.15-0.26-0.15-0.35S5.73,14.32,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15C5.03,19.73,5,19.59,5,19.5s0.03-0.23,0.15-0.35l1.06-1.06l0.71,0.71 L5.85,19.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M5.21,12.67l0.35-0.35c0.13-0.13,0.15-0.28,0.15-0.35c0-0.08-0.02-0.23-0.15-0.35s-0.28-0.15-0.35-0.15 c-0.08,0-0.23,0.02-0.35,0.15c-0.19,0.19-0.19,0.51,0,0.71L5.21,12.67z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.15,15.15C4.02,15.27,4,15.42,4,15.5s0.02,0.23,0.15,0.35C4.27,15.98,4.42,16,4.5,16s0.23-0.02,0.35-0.15 l0.71-0.71c0,0,0,0,0,0l0.35-0.35l-0.71-0.71L4.15,15.15z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.5,5h-4C4.22,5,4,5.22,4,5.5C4,5.78,4.22,6,4.5,6H6v2.5C6,8.78,6.22,9,6.5,9s0.5-0.22,0.5-0.5V6H8.5 C8.78,6,9,5.78,9,5.5C9,5.22,8.78,5,8.5,5z\\\"></path><path d=\\\"M8.5,3h-4C4.22,3,4,3.22,4,3.5S4.22,4,4.5,4h4C8.78,4,9,3.78,9,3.5S8.78,3,8.5,3z\\\"></path><path d=\\\"M16.35,11.5c-0.19-0.19-0.51-0.19-0.7,0l-4.3,4.3c-0.19,0.19-0.19,0.51,0,0.7c0.19,0.19,0.51,0.19,0.7,0l4.3-4.3 C16.54,12.01,16.54,11.69,16.35,11.5z\\\"></path><path d=\\\"M12.71,12.71c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41 C11.68,13.1,12.32,13.1,12.71,12.71z\\\"></path><path d=\\\"M16.71,15.29c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 C17.1,16.32,17.1,15.68,16.71,15.29z\\\"></path><path d=\\\"M12.5,9C13.33,9,14,8.33,14,7.5C14,7.47,14,4,14,4h1.5C15.78,4,16,3.78,16,3.5C16,3.22,15.78,3,15.5,3h-2 C13.22,3,13,3.22,13,3.5v2.59C12.84,6.04,12.68,6,12.5,6C11.67,6,11,6.67,11,7.5S11.67,9,12.5,9z\\\"></path><path d=\\\"M8.39,13.03c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l-0.71-0.71l0.35-0.35c0.59-0.59,0.59-1.54,0-2.12 c-0.29-0.29-0.68-0.44-1.06-0.44c-0.38,0-0.77,0.15-1.06,0.44h0c-0.59,0.59-0.59,1.54,0,2.12l0.35,0.35l-1.06,1.06 c-0.59,0.59-0.59,1.54,0,2.12C3.73,16.85,4.12,17,4.5,17c0.38,0,0.77-0.15,1.06-0.44l1.06-1.06l1.06,1.06c0.2,0.2,0.51,0.2,0.71,0 c0.2-0.2,0.2-0.51,0-0.71l-1.06-1.06l1.06-1.06C8.58,13.54,8.58,13.22,8.39,13.03z M4.85,11.61c0.13-0.13,0.28-0.15,0.35-0.15 c0.08,0,0.23,0.02,0.35,0.15s0.15,0.28,0.15,0.35c0,0.08-0.02,0.23-0.15,0.35l-0.35,0.35l-0.35-0.35 C4.66,12.12,4.66,11.81,4.85,11.61z M5.56,15.15l-0.71,0.71C4.73,15.98,4.58,16,4.5,16s-0.23-0.02-0.35-0.15 C4.02,15.73,4,15.58,4,15.5s0.02-0.23,0.15-0.35l1.06-1.06l0.71,0.71C5.91,14.79,5.56,15.15,5.56,15.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interests\": {\n    \"name\": \"interests\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.02,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.23,13,7.02,13z M13,14v6c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-6 c0-0.55-0.45-1-1-1h-6C13.45,13,13,13.45,13,14z M6.13,3.57l-3.3,5.94C2.46,10.18,2.94,11,3.7,11h6.6c0.76,0,1.24-0.82,0.87-1.49 l-3.3-5.94C7.49,2.89,6.51,2.89,6.13,3.57z M19.25,2.5c-1.06,0-1.81,0.56-2.25,1.17c-0.44-0.61-1.19-1.17-2.25-1.17 C13.19,2.5,12,3.78,12,5.25c0,1.83,2.03,3.17,4.35,5.18c0.37,0.32,0.92,0.32,1.3,0C19.97,8.42,22,7.08,22,5.25 C22,3.78,20.81,2.5,19.25,2.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,11c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3S7.65,11,6,11z M11.5,17h5c0.28,0,0.5-0.22,0.5-0.5v-5 c0-0.28-0.22-0.5-0.5-0.5h-5c-0.28,0-0.5,0.22-0.5,0.5v5C11,16.78,11.22,17,11.5,17z M2.43,8.25C2.24,8.59,2.49,9,2.87,9h6.27 c0.38,0,0.62-0.41,0.43-0.75L6.43,2.76c-0.19-0.34-0.68-0.34-0.87,0L2.43,8.25z M15.72,2.5c-0.81,0-1.39,0.43-1.72,0.89 c-0.33-0.47-0.91-0.89-1.72-0.89c-1.19,0-2.1,0.98-2.1,2.1c0,1.44,1.65,2.49,3.49,4.1c0.19,0.17,0.47,0.17,0.66,0 c1.85-1.61,3.49-2.66,3.49-4.1C17.82,3.48,16.92,2.5,15.72,2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_active\": {\n    \"name\": \"notifications_active\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.68-1.5-1.51-1.5S10.5 3.17 10.5 4v.68C7.63 5.36 6 7.92 6 11v5l-1.3 1.29c-.63.63-.19 1.71.7 1.71h13.17c.89 0 1.34-1.08.71-1.71L18 16zm-6.01 6c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zM6.77 4.73c.42-.38.43-1.03.03-1.43-.38-.38-1-.39-1.39-.02C3.7 4.84 2.52 6.96 2.14 9.34c-.09.61.38 1.16 1 1.16.48 0 .9-.35.98-.83.3-1.94 1.26-3.67 2.65-4.94zM18.6 3.28c-.4-.37-1.02-.36-1.4.02-.4.4-.38 1.04.03 1.42 1.38 1.27 2.35 3 2.65 4.94.07.48.49.83.98.83.61 0 1.09-.55.99-1.16-.38-2.37-1.55-4.48-3.25-6.05z\\\"></path>\"\n      }\n    }\n  },\n  \"follow_the_signs\": {\n    \"name\": \"follow_the_signs\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3.23,21.81C3.11,22.43,3.58,23,4.21,23H4.3 c0.47,0,0.88-0.33,0.98-0.79L6.85,15L9,17v5c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-6.14c0-0.27-0.11-0.52-0.29-0.71L8.95,13.4 l0.6-3c1.07,1.32,2.58,2.23,4.31,2.51c0.6,0.1,1.14-0.39,1.14-1v0c0-0.49-0.36-0.9-0.84-0.98c-1.49-0.25-2.75-1.15-3.51-2.38 L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15l-4.63,1.9C2.25,8.2,2,8.57,2,8.97V12c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1V9.65L5.75,8.9 M21,2h-7c-0.55,0-1,0.45-1,1v5c0,0.55,0.45,1,1,1h2.75v13.25c0,0.41,0.34,0.75,0.75,0.75 s0.75-0.34,0.75-0.75V9H21c0.55,0,1-0.45,1-1V3C22,2.45,21.55,2,21,2z M20.15,5.85l-1.28,1.29c-0.31,0.32-0.85,0.09-0.85-0.35V6.25 h-2.76c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75h2.76V4.21c0-0.45,0.54-0.67,0.85-0.35l1.28,1.29 C20.34,5.34,20.34,5.66,20.15,5.85z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_3\": {\n    \"name\": \"groups_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39L6,17 c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1l0-0.61C18,15.21,17.32,14.13,16.24,13.65z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43L0,17c0,0.55,0.45,1,1,1l3.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29 C4.76,14.04,4.39,14,4,14C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l3.5,0 c0.55,0,1-0.45,1-1l0-0.57C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M12,12c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,7.34,9,9C9,10.66,10.34,12,12,12z\\\"></path><rect height=\\\"3.54\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.6066 6.0503)\\\" width=\\\"3.54\\\" x=\\\"2.23\\\" y=\\\"9.23\\\"></rect><polygon points=\\\"20,9 17.5,13 22.5,13\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.6317 4.818)\\\" width=\\\"2.83\\\" x=\\\"2.09\\\" y=\\\"6.59\\\"></rect><polygon points=\\\"16.5,6.5 14.5,10 18.5,10\\\"></polygon><path d=\\\"M13.9,10.93C12.87,10.41,11.54,10,10,10c-1.54,0-2.87,0.41-3.9,0.93C5.42,11.26,5,11.96,5,12.72L5,13c0,0.55,0.45,1,1,1h8 c0.55,0,1-0.45,1-1l0-0.28C15,11.96,14.58,11.26,13.9,10.93z\\\"></path><path d=\\\"M18.74,11.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,14h3 c0.55,0,1-0.45,1-1l0-0.13C20,12.05,19.5,11.31,18.74,11.01z\\\"></path><path d=\\\"M3.5,10.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,11.31,0,12.05,0,12.87L0,13c0,0.55,0.45,1,1,1h3l0-1.28 c0-0.76,0.28-1.45,0.75-1.99C4.36,10.65,3.94,10.6,3.5,10.6z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications\": {\n    \"name\": \"notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.89 0 1.34-1.08.71-1.71L18 16z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_food_beverage\": {\n    \"name\": \"emoji_food_beverage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M19,19H3c-0.55,0-1,0.45-1,1s0.45,1,1,1h16c0.55,0,1-0.45,1-1S19.55,19,19,19z\\\"></path><path d=\\\"M20,3H9v2.4l1.81,1.45C10.93,6.94,11,7.09,11,7.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C6.22,12,6,11.78,6,11.5V7.24 c0-0.15,0.07-0.3,0.19-0.39L8,5.4V3H6C4.9,3,4,3.9,4,5v8c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,8h-2V5h2V8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M15,5H7.75v2.17l1.14,0.76C8.96,7.97,9,8.05,9,8.13v2.62C9,10.89,8.89,11,8.75,11h-2.5C6.11,11,6,10.89,6,10.75V8.13 c0-0.08,0.04-0.16,0.11-0.21l1.14-0.76V5H5v7c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2V9h1c0.55,0,1-0.45,1-1V6C16,5.45,15.55,5,15,5z M15,8h-1V6h1V8z\\\"></path><path d=\\\"M14.5,15h-10C4.22,15,4,15.22,4,15.5C4,15.78,4.22,16,4.5,16h10c0.28,0,0.5-0.22,0.5-0.5C15,15.22,14.78,15,14.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"domain\": {\n    \"name\": \"domain\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"person_off\": {\n    \"name\": \"person_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8.65,5.82C9.36,4.72,10.6,4,12,4c2.21,0,4,1.79,4,4c0,1.4-0.72,2.64-1.82,3.35L8.65,5.82z M20,17.17 c-0.02-1.1-0.63-2.11-1.61-2.62c-0.54-0.28-1.13-0.54-1.77-0.76L20,17.17z M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41l8.18,8.18c-1.82,0.23-3.41,0.8-4.7,1.46C4.6,15.08,4,16.11,4,17.22L4,20h13.17l1.9,1.9 c0.39,0.39,1.02,0.39,1.41,0l0,0C20.88,21.51,20.88,20.88,20.49,20.49z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.64,9.51C12.46,8.98,13,8.05,13,7c0-1.66-1.34-3-3-3C8.95,4,8.02,4.54,7.49,5.36L11.64,9.51z M15.99,13.87 c-0.07-0.62-0.41-1.18-0.95-1.5c-0.35-0.21-0.72-0.39-1.1-0.56L15.99,13.87z M2.4,3.46L2.4,3.46c-0.29,0.29-0.29,0.77,0,1.06 l6.54,6.54c-1.43,0.15-2.77,0.61-3.96,1.31C4.37,12.72,4,13.38,4,14.09L4,16h9.88l1.6,1.6c0.29,0.29,0.77,0.29,1.06,0l0,0 c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46C3.17,3.17,2.69,3.17,2.4,3.46z\\\"></path>\"\n      }\n    }\n  },\n  \"assist_walker\": {\n    \"name\": \"assist_walker\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12.5\\\" cy=\\\"4.5\\\" r=\\\"2\\\"></circle><path d=\\\"M19.77,17.72l-0.64-6.37C19.06,10.58,18.41,10,17.64,10H16c-1.5-0.02-2.86-0.54-3.76-1.44l-2-1.98 C10.08,6.42,9.62,6,8.83,6C8.32,6,7.81,6.2,7.42,6.59L4.08,9.91c-0.53,0.68-0.51,1.57-0.21,2.13l1.43,2.8L2.75,18.1 c-0.34,0.43-0.26,1.06,0.17,1.4l0,0c0.44,0.34,1.07,0.26,1.41-0.17l2.56-3.29c0.33-0.42,0.47-0.95,0.41-1.48l-0.07-0.53L8,14.75 V19c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-4.29c0-0.53-0.21-1.04-0.59-1.41l-1.53-1.53l2.36-2.36c0.94,0.94,1.72,1.82,3.59,2.32 l-0.75,7.46c-0.04,0.44,0.3,0.83,0.75,0.83h0c0.38,0,0.7-0.29,0.75-0.66l0.33-2.84h3.18l0.14,1.22c-0.44,0.26-0.73,0.74-0.73,1.28 c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5C20.5,18.46,20.21,17.98,19.77,17.72z M15.09,15l0.41-3.5h2l0.41,3.5H15.09z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.25,15.05l-0.64-4.92c-0.06-0.5-0.49-0.88-0.99-0.88H12c-0.48-0.16-0.93-0.41-1.3-0.78L8.66,6.44c0,0-0.01,0-0.01-0.01 L8.64,6.42l0,0c-0.59-0.57-1.52-0.57-2.1,0.01l-2.31,2.3c-0.25,0.35-0.34,0.8-0.25,1.22l0.76,3.28l-1.86,2.48 c-0.25,0.34-0.18,0.81,0.16,1.06h0c0.33,0.24,0.79,0.17,1.04-0.16l1.86-2.49c0.24-0.33,0.34-0.73,0.28-1.13l-0.09-0.56l1.11,1.08 v2.75C7.25,16.66,7.58,17,8,17h0c0.41,0,0.75-0.34,0.75-0.75v-2.83c0-0.4-0.16-0.78-0.44-1.06L6.55,10.6l2.08-2.08 c1.09,1.09,1.34,1.42,2.23,1.87l-0.78,6.04c-0.04,0.3,0.19,0.56,0.5,0.56h0c0.25,0,0.46-0.19,0.5-0.44L11.4,14h2.71l0.16,1.26 c-0.39,0.29-0.62,0.77-0.47,1.33c0.12,0.41,0.45,0.75,0.87,0.86c0.83,0.22,1.58-0.41,1.58-1.21 C16.25,15.65,15.81,15.17,15.25,15.05z M11.53,13l0.36-2.75h1.73l0,0L13.97,13H11.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thunderstorm\": {\n    \"name\": \"thunderstorm\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.92,7.02C17.45,4.18,14.97,2,12,2C9.82,2,7.83,3.18,6.78,5.06C4.09,5.41,2,7.74,2,10.5C2,13.53,4.47,16,7.5,16h10 c2.48,0,4.5-2.02,4.5-4.5C22,9.16,20.21,7.23,17.92,7.02z\\\"></path><path d=\\\"M15.95,20.11l-0.84-0.42l0.9-1.03c0.36-0.42,0.32-1.05-0.09-1.41c-0.42-0.36-1.05-0.32-1.41,0.09l-1.75,2 c-0.2,0.23-0.29,0.55-0.23,0.85c0.06,0.3,0.26,0.56,0.53,0.7l0.84,0.42L13,22.34c-0.36,0.42-0.32,1.05,0.09,1.41 c0.19,0.17,0.42,0.25,0.66,0.25c0.28,0,0.55-0.12,0.75-0.34l1.75-2c0.2-0.23,0.29-0.55,0.23-0.85 C16.42,20.5,16.22,20.24,15.95,20.11z\\\"></path><path d=\\\"M9.95,20.11L9.1,19.68l0.9-1.03c0.36-0.42,0.32-1.05-0.09-1.41c-0.42-0.36-1.05-0.32-1.41,0.09l-1.75,2 c-0.2,0.23-0.29,0.55-0.23,0.85c0.06,0.3,0.26,0.56,0.53,0.7l0.84,0.42L7,22.34c-0.36,0.42-0.32,1.05,0.09,1.41 C7.28,23.92,7.52,24,7.75,24c0.28,0,0.55-0.12,0.75-0.34l1.75-2c0.2-0.23,0.29-0.55,0.23-0.85C10.42,20.5,10.22,20.24,9.95,20.11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.69,6.01c-0.35-2.23-2.25-3.95-4.58-4C10.07,2,10.04,2,10,2C8.19,2,6.6,3.02,5.8,4.52C3.71,4.74,2.05,6.49,2,8.65 C1.95,11,3.81,12.94,6.15,13l8.35,0c1.93,0,3.5-1.57,3.5-3.5C18,7.63,16.54,6.1,14.69,6.01z\\\"></path><path d=\\\"M8.5,16.74l-1.29-0.47l1.11-0.96c0.31-0.27,0.35-0.74,0.08-1.06c-0.27-0.31-0.74-0.35-1.06-0.08l-2.08,1.8 c-0.2,0.17-0.3,0.44-0.25,0.7s0.23,0.48,0.48,0.57l1.29,0.47l-1.11,0.96c-0.31,0.27-0.35,0.74-0.08,1.06 C5.75,19.91,5.96,20,6.17,20c0.17,0,0.35-0.06,0.49-0.18l2.08-1.8c0.2-0.17,0.3-0.44,0.25-0.7S8.75,16.83,8.5,16.74z\\\"></path><path d=\\\"M13.5,16.74l-1.29-0.47l1.11-0.96c0.31-0.27,0.35-0.74,0.08-1.06c-0.27-0.31-0.75-0.35-1.06-0.08l-2.08,1.8 c-0.2,0.17-0.3,0.44-0.25,0.7s0.23,0.48,0.48,0.57l1.29,0.47l-1.11,0.96c-0.31,0.27-0.35,0.74-0.08,1.06 c0.15,0.17,0.36,0.26,0.57,0.26c0.17,0,0.35-0.06,0.49-0.18l2.08-1.8c0.2-0.17,0.3-0.44,0.25-0.7S13.75,16.83,13.5,16.74z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_football\": {\n    \"name\": \"sports_football\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.02,15.62c-0.08,2.42,0.32,4.34,0.67,4.69s2.28,0.76,4.69,0.67L3.02,15.62z\\\"></path><path d=\\\"M13.08,3.28C10.75,3.7,8.29,4.62,6.46,6.46s-2.76,4.29-3.18,6.62l7.63,7.63c2.34-0.41,4.79-1.34,6.62-3.18 s2.76-4.29,3.18-6.62L13.08,3.28z M14.8,10.6l-4.2,4.2c-0.39,0.39-1.01,0.39-1.4,0s-0.39-1.01,0-1.4l4.2-4.2 c0.39-0.39,1.01-0.39,1.4,0S15.19,10.21,14.8,10.6z\\\"></path><path d=\\\"M20.98,8.38c0.08-2.42-0.32-4.34-0.67-4.69s-2.28-0.76-4.69-0.67L20.98,8.38z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.99,7.51c0.04-1.57-0.22-2.81-0.45-3.05c-0.23-0.23-1.47-0.5-3.05-0.45L15.99,7.51z\\\"></path><path d=\\\"M4.01,12.49c-0.04,1.57,0.22,2.81,0.45,3.05s1.47,0.5,3.05,0.45L4.01,12.49z\\\"></path><path d=\\\"M11.18,4.11C9.49,4.34,7.65,4.96,6.31,6.31c-1.34,1.34-1.97,3.19-2.19,4.88l4.71,4.71c1.69-0.23,3.53-0.85,4.88-2.19 s1.97-3.19,2.19-4.88L11.18,4.11z M12.12,8.59l-3.54,3.54c-0.2,0.2-0.51,0.2-0.71,0c-0.2-0.2-0.2-0.51,0-0.71l3.54-3.54 c0.2-0.2,0.51-0.2,0.71,0S12.32,8.39,12.12,8.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"luggage\": {\n    \"name\": \"luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M8.75,18L8.75,18 C8.34,18,8,17.66,8,17.25v-7.5C8,9.34,8.34,9,8.75,9h0C9.16,9,9.5,9.34,9.5,9.75v7.5C9.5,17.66,9.16,18,8.75,18z M12,18L12,18 c-0.41,0-0.75-0.34-0.75-0.75v-7.5C11.25,9.34,11.59,9,12,9h0c0.41,0,0.75,0.34,0.75,0.75v7.5C12.75,17.66,12.41,18,12,18z M13.5,6 h-3V3.5h3V6z M15.25,18L15.25,18c-0.41,0-0.75-0.34-0.75-0.75v-7.5C14.5,9.34,14.84,9,15.25,9h0C15.66,9,16,9.34,16,9.75v7.5 C16,17.66,15.66,18,15.25,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vaccines\": {\n    \"name\": \"vaccines\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,22.5c0.55,0,1-0.45,1-1V17h1c1.1,0,2-0.9,2-2V7.5c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H8V4h0.5c0.55,0,1-0.45,1-1 c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1H6v1.5H3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1V15c0,1.1,0.9,2,2,2h1 v4.5C6,22.05,6.45,22.5,7,22.5z M9,9H7.25C6.84,9,6.5,9.34,6.5,9.75c0,0.41,0.34,0.75,0.75,0.75H9V12H7.25 c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75H9L9,15H5V7.5h4V9z M19.5,10.5V10c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-5 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1v0.5c0,0.5-1.5,1.16-1.5,3V20c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-6.5 C21,11.66,19.5,11,19.5,10.5z M16.5,10.5V10h1v0.5c0,1.6,1.5,2,1.5,3V14h-4c0-0.21,0-0.39,0-0.5C15,12.5,16.5,12.1,16.5,10.5z M15,20c0,0,0-0.63,0-1.5h4V20H15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,9V8.5c0.41,0,0.75-0.34,0.75-0.75C16.5,7.34,16.16,7,15.75,7h-4C11.34,7,11,7.34,11,7.75c0,0.41,0.34,0.75,0.75,0.75 V9c0,0-1.25,1-1.25,2.5v5c0,0.83,0.67,1.5,1.5,1.5h3.5c0.83,0,1.5-0.67,1.5-1.5v-5.25C17,10,15.75,9,15.75,9z M15.5,16.5H12V15h3.5 V16.5z M15.5,12H12v-0.5c0-1.13,1.25-1.25,1.25-2.5V8.5h1V9c0,1.25,1.25,1.37,1.25,2.5V12z M6,10.5C6,10.78,6.22,11,6.5,11H8v1.5 H4.5v-6H8V8H6.5C6.22,8,6,8.22,6,8.5C6,8.78,6.22,9,6.5,9H8v1H6.5C6.22,10,6,10.22,6,10.5z M6.25,18.5C6.66,18.5,7,18.16,7,17.75V14 h1c0.83,0,1.5-0.67,1.5-1.5l0-6c0.41,0,0.75-0.34,0.75-0.75C10.25,5.34,9.91,5,9.5,5H7V3.5h0.5c0.41,0,0.75-0.34,0.75-0.75 C8.25,2.34,7.91,2,7.5,2H5C4.59,2,4.25,2.34,4.25,2.75C4.25,3.16,4.59,3.5,5,3.5h0.5V5H3C2.59,5,2.25,5.34,2.25,5.75 C2.25,6.16,2.59,6.5,3,6.5l0,6C3,13.33,3.67,14,4.5,14h1v3.75C5.5,18.16,5.84,18.5,6.25,18.5z\\\"></path>\"\n      }\n    }\n  },\n  \"boy\": {\n    \"name\": \"boy\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,19c0,0.55-0.45,1-1,1h-2 c-0.55,0-1-0.45-1-1v-4c-0.55,0-1-0.45-1-1v-3.5c0-1.1,0.9-2,2-2h2c1.1,0,2,0.9,2,2V14c0,0.55-0.45,1-1,1V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,12.5h-0.5v3c0,0.28-0.22,0.5-0.5,0.5H9c-0.28,0-0.5-0.22-0.5-0.5v-3H8c-0.28,0-0.5-0.22-0.5-0.5V9 c0-0.83,0.67-1.5,1.5-1.5h2c0.83,0,1.5,0.67,1.5,1.5v3C12.5,12.28,12.28,12.5,12,12.5z M10,6.5c0.69,0,1.25-0.56,1.25-1.25 S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"landslide\": {\n    \"name\": \"landslide\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15.47,13.79 12.89,12.76 6,15.05 2,13.51 2,15.61 6,16.95\\\"></polygon><path d=\\\"M10.57,11.42L8.6,8.8C8.22,8.3,7.63,8,7,8H4c-1.1,0-2,0.9-2,2v1.61l4,1.33L10.57,11.42z\\\"></path><path d=\\\"M6,19.05l-4-1.33V20c0,1.1,0.9,2,2,2h14c1.65,0,2.59-1.88,1.6-3.2l-2.57-3.42L6,19.05z\\\"></path><path d=\\\"M17,4.65V2.64c0-0.95-0.67-1.77-1.61-1.96l-2.58-0.52c-0.52-0.1-1.06,0-1.5,0.3L9.89,1.41C9.33,1.78,9,2.4,9,3.07v1.86 C9,5.6,9.33,6.22,9.89,6.59l1.23,0.82c0.55,0.37,1.24,0.44,1.85,0.19l2.77-1.11C16.5,6.2,17,5.46,17,4.65z\\\"></path><path d=\\\"M17.75,7.6l-1,0.8C16.28,8.78,16,9.35,16,9.96v1.08c0,0.61,0.28,1.18,0.75,1.56l0.8,0.64c0.58,0.47,1.38,0.57,2.06,0.27 l2.2-0.98C22.53,12.21,23,11.49,23,10.7V9.6c0-0.94-0.65-1.75-1.57-1.95l-2-0.44C18.84,7.08,18.22,7.22,17.75,7.6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M14,4.07v-1.9c0-0.69-0.47-1.29-1.14-1.46l-2.22-0.56c-0.41-0.1-0.84-0.03-1.2,0.21L7.67,1.55C7.25,1.83,7,2.3,7,2.8V4.2 c0,0.5,0.25,0.97,0.67,1.25l1.61,1.07c0.45,0.3,1.02,0.33,1.5,0.09l2.39-1.2C13.68,5.16,14,4.64,14,4.07z\\\"></path></g><g><path d=\\\"M14.43,6.43L13.6,7.05C13.22,7.33,13,7.78,13,8.25v1.13c0,0.4,0.16,0.78,0.44,1.06l0.8,0.8 c0.46,0.46,1.15,0.57,1.73,0.28l2.2-1.1C18.68,10.16,19,9.64,19,9.07v-0.9c0-0.69-0.47-1.29-1.14-1.46l-2.17-0.54 C15.25,6.06,14.79,6.16,14.43,6.43z\\\"></path></g><g><polygon points=\\\"12.45,11.73 10.27,10.64 4.94,12.31 2,10.84 2,12.66 5.06,14.19\\\"></polygon></g><g><path d=\\\"M4.94,15.81L2,14.34v2.16C2,17.33,2.67,18,3.5,18h11.3c1.27,0,1.97-1.48,1.15-2.46l-2.22-2.66L4.94,15.81z\\\"></path></g><g><path d=\\\"M8.7,9.56L7.45,7.67C7.17,7.25,6.7,7,6.2,7H3.5C2.67,7,2,7.67,2,8.5v0.66l3.06,1.53L8.7,9.56z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"back_hand\": {\n    \"name\": \"back_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,16c0,4.42-3.58,8-8,8c-3.26,0-6.19-1.99-7.4-5.02l-3.03-7.61C2.26,10.58,3,9.79,3.81,10.05l0.79,0.26 c0.56,0.18,1.02,0.61,1.24,1.16l1.28,3.21C7.2,14.88,7.38,15,7.58,15H8V3.25C8,2.56,8.56,2,9.25,2s1.25,0.56,1.25,1.25v8.25 c0,0.28,0.22,0.5,0.5,0.5l0,0c0.28,0,0.5-0.22,0.5-0.5V1.25C11.5,0.56,12.06,0,12.75,0S14,0.56,14,1.25V11.5 c0,0.28,0.22,0.5,0.5,0.5l0,0c0.28,0,0.5-0.22,0.5-0.5V2.75c0-0.69,0.56-1.25,1.25-1.25c0.69,0,1.25,0.56,1.25,1.25v8.75 c0,0.28,0.22,0.5,0.5,0.5l0,0c0.28,0,0.5-0.22,0.5-0.5V5.75c0-0.69,0.56-1.25,1.25-1.25S21,5.06,21,5.75V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9,10c0.28,0,0.5-0.22,0.5-0.5V1c0-0.55,0.45-1,1-1s1,0.45,1,1v8.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V2.25 c0-0.55,0.45-1,1-1s1,0.45,1,1V9.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V5c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v8.5 c0,3.59-2.91,6.5-6.5,6.5l0,0c-2.69,0-5.11-1.64-6.11-4.14L2.31,9.37C2,8.59,2.73,7.8,3.53,8.05l0.38,0.12 C4.35,8.29,4.7,8.62,4.87,9.04l0.36,0.9l0.93,2.32c0.06,0.14,0.19,0.23,0.34,0.23v-10c0-0.55,0.45-1,1-1s1,0.45,1,1v7 C8.5,9.78,8.72,10,9,10z\\\"></path>\"\n      }\n    }\n  },\n  \"woman_2\": {\n    \"name\": \"woman_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M13.94,8.31c-0.38-0.96-1.42-1.52-2.48-1.24c-0.66,0.17-1.18,0.7-1.43,1.34l-2.48,6.22C7.28,15.29,7.77,16,8.47,16h2.03 v5c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-5h2.03c0.71,0,1.19-0.71,0.93-1.37L13.94,8.31z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6.3,13.3C6.16,13.63,6.4,14,6.76,14H9v3.5 C9,17.78,9.22,18,9.5,18h1c0.28,0,0.5-0.22,0.5-0.5V14h2.24c0.36,0,0.6-0.37,0.46-0.7L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"6_ft_apart\": {\n    \"name\": \"6_ft_apart\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M21.65,14.35l-1.79,1.79C19.54,16.46,19,16.24,19,15.79v-0.8L5,15v0.79c0,0.45-0.54,0.67-0.85,0.35l-1.79-1.79 c-0.2-0.2-0.2-0.51,0-0.71l1.79-1.79C4.46,11.54,5,11.76,5,12.21v0.8L19,13v-0.79c0-0.45,0.54-0.67,0.85-0.35l1.79,1.79 C21.84,13.84,21.84,14.16,21.65,14.35z M10,18.5L10,18.5c0-0.28-0.22-0.5-0.5-0.5h-2C7.22,18,7,18.22,7,18.5v3 C7,21.78,7.22,22,7.5,22h2c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19h1.5C9.78,19,10,18.78,10,18.5z M9,20.5V21H8 v-0.5H9z M17,19h-0.5v2.5c0,0.28-0.22,0.5-0.5,0.5h0c-0.28,0-0.5-0.22-0.5-0.5V19H15c-0.28,0-0.5-0.22-0.5-0.5v0 c0-0.28,0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5v0C17.5,18.78,17.28,19,17,19z M14,18.5c0,0.28-0.22,0.5-0.5,0.5h-1v0.5H13 c0.28,0,0.5,0.22,0.5,0.5c0,0.28-0.22,0.5-0.5,0.5h-0.5v1c0,0.28-0.22,0.5-0.5,0.5c-0.28,0-0.5-0.22-0.5-0.5v-3 c0-0.28,0.22-0.5,0.5-0.5h1.5C13.78,18,14,18.22,14,18.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fitbit\": {\n    \"name\": \"fitbit\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.89,13.89c1.04,0,1.89-0.85,1.89-1.89s-0.85-1.89-1.89-1.89C18.85,10.11,18,10.96,18,12S18.85,13.89,19.89,13.89z M15.65,13.68c0.93,0,1.68-0.75,1.68-1.68s-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68S14.72,13.68,15.65,13.68z M15.65,9.42 c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68C13.97,8.67,14.72,9.42,15.65,9.42z M15.65,17.93c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68 C13.97,17.17,14.72,17.93,15.65,17.93z M11.41,13.47c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,13.47,11.41,13.47z M11.41,9.21c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,9.21,11.41,9.21z M11.41,17.73c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 C9.93,17.07,10.59,17.73,11.41,17.73z M11.41,22c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47 c-0.81,0-1.47,0.66-1.47,1.47C9.93,21.34,10.59,22,11.41,22z M11.41,4.94c0.81,0,1.47-0.66,1.47-1.47S12.22,2,11.41,2 c-0.81,0-1.47,0.66-1.47,1.47S10.59,4.94,11.41,4.94z M7.16,13.26c0.7,0,1.26-0.57,1.26-1.26s-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26S6.46,13.26,7.16,13.26z M7.16,17.51c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,16.94,6.46,17.51,7.16,17.51z M7.16,9.02c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,8.45,6.46,9.02,7.16,9.02z M3.29,13.05c0.58,0,1.05-0.47,1.05-1.05s-0.47-1.05-1.05-1.05 c-0.58,0-1.05,0.47-1.05,1.05S2.71,13.05,3.29,13.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.31,11.51c0.83,0,1.51-0.68,1.51-1.51s-0.68-1.51-1.51-1.51c-0.83,0-1.51,0.68-1.51,1.51S15.48,11.51,16.31,11.51z M12.92,11.34c0.74,0,1.34-0.6,1.34-1.34s-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34S12.18,11.34,12.92,11.34z M12.92,7.94 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,7.33,12.18,7.94,12.92,7.94z M12.92,14.74 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,14.14,12.18,14.74,12.92,14.74z M9.52,11.18 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,11.18,9.52,11.18z M9.52,7.77 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,7.77,9.52,7.77z M9.52,14.59 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,14.06,8.87,14.59,9.52,14.59z M9.52,18 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,17.47,8.87,18,9.52,18z M9.52,4.36 c0.65,0,1.18-0.53,1.18-1.18S10.17,2,9.52,2C8.87,2,8.35,2.53,8.35,3.18S8.87,4.36,9.52,4.36z M6.13,11.01 c0.56,0,1.01-0.45,1.01-1.01S6.69,8.99,6.13,8.99c-0.56,0-1.01,0.45-1.01,1.01S5.57,11.01,6.13,11.01z M6.13,14.41 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,13.95,5.57,14.41,6.13,14.41z M6.13,7.61 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,7.16,5.57,7.61,6.13,7.61z M3.04,10.84 c0.46,0,0.84-0.38,0.84-0.84S3.5,9.16,3.04,9.16C2.57,9.16,2.2,9.54,2.2,10S2.57,10.84,3.04,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"precision_manufacturing\": {\n    \"name\": \"precision_manufacturing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.34,4.66,6.96,3.75,5.4,4.06 C4.23,4.29,3.27,5.25,3.05,6.42C2.8,7.76,3.45,8.96,4.48,9.58L7.08,18H5.5C4.67,18,4,18.67,4,19.5v0C4,20.33,4.67,21,5.5,21h10 c0.83,0,1.5-0.67,1.5-1.5v0c0-0.83-0.67-1.5-1.5-1.5h-2.12L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1c0,0.55,0.45,1,1,1 c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.29,7.78l-2.4,1.12L11,7.01V6.99l1.89-1.89l2.4,1.12c0.25,0.12,0.55,0.01,0.66-0.24c0.12-0.25,0.01-0.55-0.24-0.66 l-2.72-1.27C12.8,3.96,12.58,4,12.43,4.15L11,5.57V5.5C11,5.22,10.78,5,10.5,5C10.22,5,10,5.22,10,5.5v1H7.93 C7.67,5.49,6.64,4.78,5.49,5.06c-0.7,0.17-1.28,0.76-1.44,1.47C3.82,7.55,4.37,8.47,5.21,8.84L6.5,14H6c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1.14L7.56,8.23C7.73,8.02,7.86,7.77,7.93,7.5H10v1 C10,8.78,10.22,9,10.5,9C10.78,9,11,8.78,11,8.5V8.43l1.43,1.43c0.15,0.15,0.37,0.19,0.56,0.1l2.72-1.27 c0.25-0.12,0.36-0.41,0.24-0.66C15.84,7.77,15.54,7.66,15.29,7.78z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1 C7,7.55,6.55,8,6,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"king_bed\": {\n    \"name\": \"king_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect fill=\\\"none\\\" height=\\\"3\\\" width=\\\"5\\\" x=\\\"6\\\" y=\\\"7\\\"></rect><rect fill=\\\"none\\\" height=\\\"3\\\" width=\\\"5\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><path d=\\\"M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33l0.51,1.53C3.94,18.81,4.2,19,4.5,19h0 c0.3,0,0.56-0.19,0.66-0.47L5.67,17h12.67l0.51,1.53C18.94,18.81,19.2,19,19.5,19l0,0c0.3,0,0.56-0.19,0.66-0.47L20.67,17H22v-5 C22,10.9,21.1,10,20,10z M11,10H6V8c0-0.55,0.45-1,1-1h4V10z M18,10h-5V7h4c0.55,0,1,0.45,1,1V10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,8V6c0-0.55-0.45-1-1-1H5C4.45,5,4,5.45,4,6v2C3.45,8,3,8.45,3,9v4h1l0.75,2h0.5L6,13h8l0.75,2h0.5L16,13h1V9 C17,8.45,16.55,8,16,8z M9.5,8H5V6.5C5,6.22,5.22,6,5.5,6h4V8z M15,8h-4.5V6h4C14.78,6,15,6.22,15,6.5V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"reduce_capacity\": {\n    \"name\": \"reduce_capacity\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M13.79,13h-1.04v-1.25c0-0.41-0.34-0.75-0.75-0.75 s-0.75,0.34-0.75,0.75V13h-1.04c-0.45,0-0.67,0.54-0.35,0.85l1.79,1.79c0.2,0.2,0.51,0.2,0.71,0l1.79-1.79 C14.46,13.54,14.24,13,13.79,13z\\\"></path>\"\n      }\n    }\n  },\n  \"face_3\": {\n    \"name\": \"face_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M22.91,11.96C22.39,6.32,17.66,2,12,2S1.61,6.32,1.09,11.96l-0.9,9.86C0.09,22.99,1.01,24,2.19,24h19.62 c1.18,0,2.1-1.01,1.99-2.18L22.91,11.96z M4.54,9.13C5.41,9.68,6.43,10,7.5,10C9.36,10,11,9.07,12,7.65C13,9.07,14.64,10,16.5,10 c1.07,0,2.09-0.32,2.96-0.87C19.8,10.02,20,10.99,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8C4,10.99,4.2,10.02,4.54,9.13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M19.81,18.33l-0.93-8.38C18.38,5.42,14.55,2,10,2C5.45,2,1.62,5.42,1.12,9.95l-0.93,8.38C0.09,19.22,0.78,20,1.68,20 h16.65C19.22,20,19.91,19.22,19.81,18.33z M3.9,7.78C4.61,8.24,5.44,8.5,6.32,8.5C7.85,8.5,9.2,7.72,10,6.53 c0.8,1.19,2.15,1.97,3.68,1.97c0.87,0,1.71-0.26,2.42-0.72c0.25,0.7,0.4,1.44,0.4,2.22c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10 C3.5,9.22,3.65,8.47,3.9,7.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public\": {\n    \"name\": \"public\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_volleyball\": {\n    \"name\": \"sports_volleyball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,4.01C3.58,5.84,2,8.73,2,12c0,1.46,0.32,2.85,0.89,4.11L6,14.31V4.01z\\\"></path><path d=\\\"M11,11.42V2.05C9.94,2.16,8.93,2.43,8,2.84v10.32L11,11.42z\\\"></path><path d=\\\"M12,13.15l-8.11,4.68c0.61,0.84,1.34,1.59,2.18,2.2L15,14.89L12,13.15z\\\"></path><path d=\\\"M13,7.96v3.46l8.11,4.68c0.42-0.93,0.7-1.93,0.82-2.98L13,7.96z\\\"></path><path d=\\\"M8.07,21.2C9.28,21.71,10.6,22,12,22c3.34,0,6.29-1.65,8.11-4.16L17,16.04L8.07,21.2z\\\"></path><path d=\\\"M21.92,10.81c-0.55-4.63-4.26-8.3-8.92-8.76v3.6L21.92,10.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.03,16.33C7.93,16.76,8.94,17,10,17c2.41,0,4.54-1.22,5.8-3.08l-2.3-1.33L7.03,16.33z\\\"></path><path d=\\\"M9.5,9.71V3.03C8.61,3.09,7.77,3.32,7,3.68v7.47L9.5,9.71z\\\"></path><path d=\\\"M10,10.58l-5.8,3.35c0.49,0.72,1.11,1.34,1.82,1.83l6.47-3.74L10,10.58z\\\"></path><path d=\\\"M6,4.26C4.19,5.53,3,7.62,3,10c0,1.1,0.26,2.13,0.71,3.05L6,11.73V4.26z\\\"></path><path d=\\\"M10.5,6.82v2.89l5.79,3.34c0.37-0.76,0.61-1.6,0.68-2.49L10.5,6.82z\\\"></path><path d=\\\"M16.97,9.41c-0.29-3.42-3.03-6.14-6.47-6.39v2.64L16.97,9.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kayaking\": {\n    \"name\": \"kayaking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,22c0-0.55,0.45-1,1-1h0c0.87,0,1.73-0.24,2.53-0.7c0.29-0.16,0.65-0.17,0.94,0c1.59,0.9,3.48,0.9,5.06,0 c0.29-0.16,0.65-0.16,0.94,0c1.59,0.9,3.48,0.9,5.06,0c0.29-0.16,0.65-0.16,0.94,0C19.27,20.76,20.13,21,21,21h0c0.55,0,1,0.45,1,1 s-0.45,1-1,1h0c-1.03,0-2.06-0.25-3-0.75h0c-1.92,1.02-4.18,1-6.09-0.05c-1.79,0.87-3.92,0.98-5.58-0.14C5.3,22.69,4.15,23,3,23h0 C2.45,23,2,22.55,2,22z M12,5.5c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,5.5,12,5.5z M21.47,18.45c-0.42,0.14-0.9,0.28-1.41,0.42 c-0.53-0.15-1.03-0.43-1.45-0.77c-0.35-0.29-0.87-0.29-1.23,0C16.72,18.63,15.9,19,15,19s-1.72-0.37-2.39-0.91 c-0.35-0.28-0.87-0.28-1.22,0C10.72,18.63,9.9,19,9,19s-1.72-0.37-2.39-0.91c-0.35-0.29-0.87-0.28-1.23,0 c-0.43,0.35-0.92,0.62-1.45,0.77c-0.51-0.14-0.98-0.28-1.4-0.42c-0.92-0.3-0.92-1.6,0-1.9c1.21-0.39,2.79-0.82,4.6-1.13l1.35-4.17 c0.31-0.95,1.32-1.47,2.27-1.16c0.09,0.03,0.19,0.07,0.27,0.11l0,0l2.47,1.3l2.84-1.5l1.65-3.71l-0.36-0.93 c-0.1-0.25-0.09-0.52,0.02-0.76l0.74-1.68c0.22-0.51,0.82-0.73,1.32-0.51l1.37,0.61c0.5,0.23,0.73,0.82,0.5,1.32l-0.75,1.68 c-0.11,0.24-0.31,0.43-0.56,0.53L19.36,6.9l-3.72,8.34c2.33,0.3,4.35,0.84,5.82,1.31C22.39,16.85,22.4,18.15,21.47,18.45z M15.02,12.96l-0.59,0.31c-0.58,0.31-1.28,0.31-1.86,0l-0.81-0.43l-0.71,2.17C11.36,15.01,11.68,15,12,15c0.71,0,1.4,0.03,2.07,0.08 L15.02,12.96z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,6.25C11.5,7.22,10.72,8,9.75,8S8,7.22,8,6.25S8.78,4.5,9.75,4.5S11.5,5.28,11.5,6.25z M12.88,12.67l3.01-6.77 l0.79-0.3c0.13-0.05,0.23-0.14,0.28-0.26l0.83-1.86c0.11-0.25,0-0.55-0.25-0.66L16.18,2.2c-0.25-0.11-0.55,0-0.66,0.25l-0.83,1.87 c-0.05,0.12-0.06,0.26-0.01,0.38l0.3,0.8l-1.33,3L11.2,9.8l-2-1.12C9.07,8.6,8.92,8.55,8.76,8.52C8.02,8.39,7.3,8.85,7.06,9.57 L6,12.83c-2.04,0.33-3.72,0.83-4.78,1.2c-0.44,0.15-0.44,0.78,0,0.94c0.62,0.22,1.45,0.48,2.45,0.73c0.36-0.19,0.69-0.46,0.98-0.77 c0.19-0.21,0.52-0.21,0.71,0C5.93,15.55,6.68,16,7.5,16c0.82,0,1.56-0.44,2.14-1.06c0.2-0.21,0.53-0.21,0.72,0 C10.94,15.56,11.68,16,12.5,16c0.82,0,1.57-0.45,2.15-1.07c0.19-0.21,0.52-0.21,0.71,0c0.29,0.31,0.62,0.58,0.98,0.77 c1-0.25,1.83-0.51,2.45-0.73c0.44-0.15,0.44-0.78,0-0.94C17.53,13.6,15.42,12.97,12.88,12.67z M11.83,12.57 c-0.59-0.05-1.2-0.07-1.83-0.07c-0.25,0-0.5,0.01-0.74,0.02l0.57-1.77l0.87,0.49c0.3,0.17,0.67,0.17,0.97,0.01l0.98-0.53 L11.83,12.57z M5,18.4c-0.7,0.36-1.46,0.55-2.22,0.59C2.39,19.01,2,18.7,2,18.24c0-0.39,0.3-0.72,0.71-0.75 c0.68-0.04,1.36-0.29,1.98-0.75c0.18-0.14,0.43-0.14,0.61,0c1.37,1.01,3.02,1.01,4.39,0c0.19-0.14,0.43-0.14,0.61,0 c1.37,1.01,3.02,1,4.39,0c0.18-0.14,0.43-0.14,0.61,0c0.62,0.46,1.3,0.7,1.98,0.75C17.7,17.52,18,17.85,18,18.24 c0,0.46-0.39,0.77-0.78,0.75c-0.76-0.04-1.52-0.24-2.22-0.59c-1.57,0.8-3.43,0.8-5,0C8.43,19.2,6.57,19.2,5,18.4z\\\"></path>\"\n      }\n    }\n  },\n  \"man_2\": {\n    \"name\": \"man_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v5c0,0.55,0.45,1,1,1h1.5v5.5c0,0.83,0.67,1.5,1.5,1.5h0c0.83,0,1.5-0.67,1.5-1.5V15H15 c0.55,0,1-0.45,1-1V9C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5v4C7,12.78,7.22,13,7.5,13H9v4c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-4h1.5 c0.28,0,0.5-0.22,0.5-0.5v-4C13,7.67,12.33,7,11.5,7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"severe_cold\": {\n    \"name\": \"severe_cold\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,2c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1V3C21,2.45,20.55,2,20,2z\\\"></path><circle cx=\\\"20\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle><path d=\\\"M12,10.41l3.29-3.29c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L12,7.59V5c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v2.59L8.12,5.71c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L10,10.41V12H8.41L5.12,8.71 c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L5.59,12H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2.59l-1.88,1.88 c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0L8.41,14H10v1.59l-3.29,3.29c-0.39,0.39-0.39,1.02,0,1.41l0,0 c0.39,0.39,1.02,0.39,1.41,0L10,18.41V21c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2.59l1.88,1.88c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L12,15.59V14h1.59l3.29,3.29c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L16.41,14H19 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-7V10.41z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.25,2c-0.41,0-0.75,0.34-0.75,0.75v2.5C15.5,5.66,15.84,6,16.25,6S17,5.66,17,5.25v-2.5C17,2.34,16.66,2,16.25,2z\\\"></path><circle cx=\\\"16.25\\\" cy=\\\"7.75\\\" r=\\\".75\\\"></circle><path d=\\\"M9.75,8.81l2.72-2.72c0.29-0.29,0.29-0.77,0-1.06l0,0c-0.29-0.29-0.77-0.29-1.06,0L9.75,6.69V4.75C9.75,4.34,9.41,4,9,4h0 C8.59,4,8.25,4.34,8.25,4.75v1.94L6.59,5.03c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l2.72,2.72v1.44H6.81 L4.09,7.53c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l1.66,1.66H2.75C2.34,10.25,2,10.59,2,11v0 c0,0.41,0.34,0.75,0.75,0.75h1.94l-1.66,1.66c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0l2.72-2.72h1.44v1.44 l-2.72,2.72c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0l1.66-1.66v1.94C8.25,17.66,8.59,18,9,18h0 c0.41,0,0.75-0.34,0.75-0.75v-1.94l1.66,1.66c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06l-2.72-2.72v-1.44h1.44 l2.72,2.72c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06l-1.66-1.66h1.94c0.41,0,0.75-0.34,0.75-0.75v0 c0-0.41-0.34-0.75-0.75-0.75h-5.5V8.81z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"location_city\": {\n    \"name\": \"location_city\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 11V5.83c0-.53-.21-1.04-.59-1.41L12.7 2.71c-.39-.39-1.02-.39-1.41 0l-1.7 1.7C9.21 4.79 9 5.3 9 5.83V7H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-4zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_soccer\": {\n    \"name\": \"sports_soccer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,5.45l1.55-1.08 c1.14,0.41,2.11,1.16,2.81,2.12l-0.48,1.67l-0.68,0.23L10.5,6.15V5.45z M13.01,9.13l-1.14,3.37H8.12L6.99,9.13L10,7.02L13.01,9.13 z M7.95,4.37L9.5,5.45v0.7L6.31,8.39L5.63,8.15L5.15,6.49C5.84,5.53,6.82,4.78,7.95,4.37z M6.8,13.55l-1.52,0.13 c-0.79-1-1.26-2.26-1.27-3.63l1.3-0.95L6,9.34l1.19,3.53L6.8,13.55z M11.53,15.8c-0.49,0.13-1,0.2-1.53,0.2s-1.04-0.08-1.53-0.2 l-0.81-1.74l0.32-0.55h4.04l0.32,0.55L11.53,15.8z M14.72,13.69l-1.52-0.13l-0.4-0.68L14,9.34l0.69-0.24l1.3,0.95 C15.98,11.42,15.51,12.68,14.72,13.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ios_share\": {\n    \"name\": \"ios_share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,8h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v11H6V10h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6c-1.1,0-2,0.9-2,2 v11c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V10C20,8.9,19.1,8,18,8z\\\"></path><path d=\\\"M12,16L12,16c0.55,0,1-0.45,1-1V5h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79c-0.2-0.2-0.51-0.2-0.71,0L8.85,4.15 C8.54,4.46,8.76,5,9.21,5H11v10C11,15.55,11.45,16,12,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"self_improvement\": {\n    \"name\": \"self_improvement\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M21,14.94L21,14.94c0-0.5-0.36-0.93-0.85-0.98c-1.88-0.21-3.49-1.13-4.75-2.63l-1.34-1.6C13.68,9.26,13.12,9,12.53,9 h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6c-1.25,1.5-2.87,2.42-4.75,2.63C3.36,14.01,3,14.44,3,14.94v0 c0,0.6,0.53,1.07,1.13,1c2.3-0.27,4.32-1.39,5.87-3.19V15l-3.76,1.5c-0.65,0.26-1.16,0.83-1.23,1.53C4.91,19.1,5.74,20,6.79,20H9 v-0.5c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20l7.1,0 c0.85,0,1.65-0.54,1.85-1.37c0.21-0.89-0.27-1.76-1.08-2.08L14,15v-2.25c1.56,1.8,3.57,2.91,5.87,3.19C20.47,16,21,15.54,21,14.94 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,11.48L16,11.48c0-0.26-0.19-0.47-0.45-0.5c-1.46-0.13-2.83-0.9-3.6-2.04C11.58,8.37,10.97,8,10.29,8l-0.5,0 C9.03,8,8.42,8.37,8.04,8.94c-0.76,1.14-2.13,1.91-3.6,2.04C4.19,11,4,11.22,4,11.48v0c0,0.3,0.26,0.52,0.55,0.5 c1.73-0.13,3.05-0.84,3.95-1.94v2.45l-2.72,1.17c-0.38,0.16-0.69,0.5-0.76,0.91C4.88,15.34,5.47,16,6.21,16H8v-0.25 C8,14.78,8.78,14,9.75,14h2c0.14,0,0.25,0.11,0.25,0.25s-0.11,0.25-0.25,0.25h-2c-0.69,0-1.25,0.56-1.25,1.25V16l5.23,0 c0.59,0,1.14-0.39,1.25-0.97c0.11-0.57-0.19-1.13-0.71-1.35L11.5,12.5v-2.45c0.9,1.09,2.22,1.81,3.95,1.94 C15.74,12,16,11.78,16,11.48z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hive\": {\n    \"name\": \"hive\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.09,7.51l1.2-2c0.19-0.32,0.19-0.71,0-1.03l-1.2-2C13.91,2.18,13.58,2,13.23,2h-2.45c-0.35,0-0.68,0.18-0.86,0.49 l-1.2,2c-0.19,0.32-0.19,0.71,0,1.03l1.2,2C10.09,7.82,10.42,8,10.77,8h2.45C13.58,8,13.91,7.82,14.09,7.51z\\\"></path><path d=\\\"M9.91,9.49l-1.2,2c-0.19,0.32-0.19,0.71,0,1.03l1.2,2c0.18,0.3,0.51,0.49,0.86,0.49h2.46c0.35,0,0.68-0.18,0.86-0.49 l1.2-2c0.19-0.32,0.19-0.71,0-1.03l-1.2-2C13.91,9.18,13.58,9,13.23,9h-2.46C10.42,9,10.09,9.18,9.91,9.49z\\\"></path><path d=\\\"M17.01,11.51h2.45c0.35,0,0.68-0.18,0.86-0.49l1.2-2c0.19-0.32,0.19-0.71,0-1.03l-1.2-2c-0.18-0.3-0.51-0.49-0.86-0.49 h-2.45c-0.35,0-0.68,0.18-0.86,0.49l-1.2,2c-0.19,0.32-0.19,0.71,0,1.03l1.2,2C16.34,11.33,16.66,11.51,17.01,11.51z\\\"></path><path d=\\\"M19.47,12.51h-2.46c-0.35,0-0.68,0.18-0.86,0.49l-1.2,2c-0.19,0.32-0.19,0.71,0,1.03l1.2,2c0.18,0.3,0.51,0.49,0.86,0.49 h2.46c0.35,0,0.68-0.18,0.86-0.49l1.2-2c0.19-0.32,0.19-0.71,0-1.03l-1.2-2C20.15,12.7,19.82,12.51,19.47,12.51z\\\"></path><path d=\\\"M7.84,11.03l1.2-2c0.19-0.32,0.19-0.71,0-1.03l-1.2-2C7.66,5.7,7.34,5.51,6.99,5.51H4.53C4.18,5.51,3.85,5.7,3.67,6 l-1.2,2c-0.19,0.32-0.19,0.71,0,1.03l1.2,2c0.18,0.3,0.51,0.49,0.86,0.49h2.45C7.34,11.51,7.66,11.33,7.84,11.03z\\\"></path><path d=\\\"M6.99,12.51H4.53c-0.35,0-0.68,0.18-0.86,0.49l-1.2,2c-0.19,0.32-0.19,0.71,0,1.03l1.2,2c0.18,0.3,0.51,0.49,0.86,0.49 h2.46c0.35,0,0.68-0.18,0.86-0.49l1.2-2c0.19-0.32,0.19-0.71,0-1.03l-1.2-2C7.66,12.7,7.34,12.51,6.99,12.51z\\\"></path><path d=\\\"M9.91,16.49l-1.2,2c-0.19,0.32-0.19,0.71,0,1.03l1.2,2c0.18,0.3,0.51,0.49,0.86,0.49h2.46c0.35,0,0.68-0.18,0.86-0.49 l1.2-2c0.19-0.32,0.19-0.71,0-1.03l-1.2-2c-0.18-0.3-0.51-0.49-0.86-0.49h-2.46C10.42,16,10.09,16.18,9.91,16.49z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.55,6.66h2.83h0l1.26-2.07c0.1-0.16,0.1-0.36,0-0.52l-1.11-1.84C11.44,2.09,11.28,2,11.1,2H8.83 C8.66,2,8.49,2.09,8.4,2.24L7.29,4.08c-0.1,0.16-0.1,0.36,0,0.52L8.55,6.66L8.55,6.66z\\\"></path><path d=\\\"M11.38,13.34H8.55h0l-1.26,2.07c-0.1,0.16-0.1,0.36,0,0.52l1.11,1.84C8.49,17.91,8.66,18,8.83,18h2.27 c0.17,0,0.34-0.09,0.43-0.24l1.11-1.84c0.1-0.16,0.1-0.36,0-0.52L11.38,13.34L11.38,13.34z\\\"></path><path d=\\\"M11.38,7.67H8.55h0L7.29,9.74c-0.1,0.16-0.1,0.36,0,0.52l1.26,2.07h0h2.83h0l1.26-2.07c0.1-0.16,0.1-0.36,0-0.52 L11.38,7.67L11.38,7.67z\\\"></path><path d=\\\"M13.95,9.5h2.27c0.17,0,0.34-0.09,0.43-0.24l1.11-1.83c0.1-0.16,0.1-0.36,0-0.52l-1.11-1.84 c-0.09-0.15-0.25-0.24-0.43-0.24h-2.27c-0.17,0-0.34,0.09-0.43,0.24l-1.11,1.84c-0.1,0.16-0.1,0.36,0,0.52l1.11,1.83 C13.61,9.41,13.77,9.5,13.95,9.5z\\\"></path><path d=\\\"M13.52,10.74l-1.11,1.84c-0.1,0.16-0.1,0.36,0,0.52l1.11,1.84c0.09,0.15,0.25,0.24,0.43,0.24h2.27 c0.17,0,0.34-0.09,0.43-0.24l1.11-1.84c0.1-0.16,0.1-0.36,0-0.52l-1.11-1.84c-0.09-0.15-0.25-0.24-0.43-0.24h-2.27 C13.77,10.5,13.61,10.59,13.52,10.74z\\\"></path><path d=\\\"M6.41,9.26l1.11-1.83c0.1-0.16,0.1-0.36,0-0.52L6.41,5.07C6.32,4.92,6.16,4.83,5.98,4.83H3.71 c-0.17,0-0.34,0.09-0.43,0.24L2.17,6.91c-0.1,0.16-0.1,0.36,0,0.52l1.11,1.83C3.38,9.41,3.54,9.5,3.71,9.5h2.27 C6.16,9.5,6.32,9.41,6.41,9.26z\\\"></path><path d=\\\"M5.98,10.5H3.71c-0.17,0-0.34,0.09-0.43,0.24l-1.11,1.84c-0.1,0.16-0.1,0.36,0,0.52l1.11,1.84 c0.09,0.15,0.25,0.24,0.43,0.24h2.27c0.17,0,0.34-0.09,0.43-0.24l1.11-1.84c0.1-0.16,0.1-0.36,0-0.52l-1.11-1.84 C6.32,10.59,6.16,10.5,5.98,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"poll\": {\n    \"name\": \"poll\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_injury\": {\n    \"name\": \"personal_injury\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8,6c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4S8,8.21,8,6z M17,22h1c1.1,0,2-0.9,2-2l0-4.78 c0-1.12-0.61-2.15-1.61-2.66c-0.43-0.22-0.9-0.43-1.39-0.62L17,22z M12.34,17L15,11.33C14.07,11.12,13.07,11,12,11 c-2.53,0-4.71,0.7-6.39,1.56C4.61,13.07,4,14.1,4,15.22L4,22h2.34C6.12,21.55,6,21.04,6,20.5C6,18.57,7.57,17,9.5,17H12.34z M10,22 l1.41-3H9.5C8.67,19,8,19.67,8,20.5S8.67,22,9.5,22H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,5c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S7,6.66,7,5z M14.5,18c0.83,0,1.5-0.67,1.5-1.5v-4.41 c0-0.7-0.36-1.36-0.97-1.72C14.7,10.17,14.36,10,14,9.84V18H14.5z M10.34,14l2.16-4.68C11.7,9.11,10.86,9,10,9 c-1.84,0-3.56,0.5-5.03,1.37C4.36,10.73,4,11.39,4,12.09V18h1.8c-0.19-0.38-0.3-0.8-0.3-1.25C5.5,15.23,6.73,14,8.25,14H10.34z M8.5,18l1.15-2.5h-1.4C7.56,15.5,7,16.06,7,16.75S7.56,18,8.25,18H8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied\": {\n    \"name\": \"sentiment_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.41-6.11c-.35-.22-.82-.11-1.03.24-.74 1.17-2 1.87-3.38 1.87s-2.64-.7-3.38-1.88c-.22-.35-.68-.46-1.03-.24-.35.22-.46.68-.24 1.03C8.37 16.54 10.1 17.5 12 17.5s3.63-.97 4.65-2.58c.22-.35.11-.81-.24-1.03z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_kabaddi\": {\n    \"name\": \"sports_kabaddi\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"16.5\\\" cy=\\\"2.38\\\" r=\\\"2\\\"></circle><path d=\\\"M24,10.88v-3.7l-4.99-2.11c-0.98-0.41-2.12-0.07-2.71,0.81l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v5.74c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-5l2.1-2l1.62,7.19c0.11,0.47,0.53,0.81,1.02,0.81h0c0.66,0,1.15-0.6,1.02-1.24l-1.94-9.76l-0.62-3.1l1.8,0.7 v2.4c0,0.55,0.45,1,1,1h0C23.55,11.88,24,11.43,24,10.88z\\\"></path><path d=\\\"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z\\\"></path><path d=\\\"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-2.92,2.92 c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54v-2.22L7,16.75v4.13c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-5l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.02,1,2.28,1.69,3.79,1.94c0.64,0.11,1.21-0.45,1.16-1.1v0 c-0.03-0.48-0.4-0.87-0.87-0.94C12.9,11.83,11.97,11.29,11.24,10.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"13.5\\\" cy=\\\"2.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12,10.34c-0.81-0.06-1.53-0.32-2.17-0.78l0,0C9.6,9.4,9.38,9.22,9.17,9.01L7.29,7.12c-0.39-0.39-1.02-0.39-1.41,0 L3.07,9.91c-0.22,0.22-0.32,0.52-0.29,0.82l0.42,3.75l-2.75,2.75l0.71,0.71l3.25-3.25l0.04-2L6,14.03L6,18h1v-4.69l-1.96-2.05 l2.51-2.51l0.9,0.9c1.02,1.02,2.13,1.62,3.56,1.69V10.34z\\\"></path><path d=\\\"M9.5,6.99c0.82,0,1.5-0.68,1.5-1.5c0-0.77-0.59-1.38-1.34-1.47C9.61,4.01,9.56,3.99,9.5,3.99C8.68,3.99,8,4.66,8,5.49 C8,5.67,8.05,5.84,8.11,6C8.32,6.57,8.86,6.99,9.5,6.99z\\\"></path><path d=\\\"M19,9.53V6.18l-3.85-1.53c-0.18-0.08-0.37-0.11-0.56-0.11c-0.5,0-0.96,0.25-1.23,0.68l-0.82,1.32 C12,7.46,11.11,8.15,10.08,8.47c0.24,0.21,0.48,0.39,0.74,0.53c0.06,0.03,0.15,0.08,0.26,0.15c0.73-0.34,1.38-0.82,1.91-1.42 l0.44-0.51l0.67,3.33L12,12.24V18h1v-4.8l2.59-2.16L17.16,18h1.08L15.87,6.09L18,6.81v2.72H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hiking\": {\n    \"name\": \"hiking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M18.25,9c-0.41,0-0.75,0.34-0.75,0.75l0,1.03 c-1.23-0.37-2.22-1.17-2.8-2.18l-1-1.6c-0.41-0.65-1.11-1-1.84-1c-0.78,0-1.59,0.5-1.78,1.44L7.25,21.76C7.12,22.4,7.61,23,8.27,23 c0.49,0,0.91-0.34,1.02-0.81L10.9,15l2.1,2v5c0,0.55,0.45,1,1,1s1-0.45,1-1v-5.64c0-0.55-0.22-1.07-0.62-1.45L12.9,13.5l0.6-3 c1,1.15,2.41,2.01,4,2.34v9.41c0,0.41,0.34,0.75,0.75,0.75S19,22.66,19,22.25V9.75C19,9.34,18.66,9,18.25,9z M7.43,13.13l-2.12-0.41 c-0.54-0.11-0.9-0.63-0.79-1.17l0.76-3.93c0.21-1.08,1.26-1.79,2.34-1.58l1.16,0.23L7.43,13.13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M4.9,10.75l1.64,0.32l0.96-4.91L6.84,6.03C6.03,5.87,5.24,6.4,5.08,7.21l-0.57,2.94C4.46,10.43,4.63,10.69,4.9,10.75z M14.5,8 C14.22,8,14,8.22,14,8.5l0,0.91c-2.11-0.42-2.13-2.19-3.11-2.97c-0.21-0.17-0.45-0.29-0.7-0.36c-0.81-0.23-1.7,0.27-1.88,1.16 c-0.13,0.67-1.46,7.41-1.94,9.87C6.29,17.57,6.64,18,7.11,18c0.36,0,0.67-0.25,0.73-0.6l1.07-5.41l1.58,1.58v3.68 c0,0.41,0.34,0.75,0.75,0.75S12,17.66,12,17.25v-3.89c0-0.27-0.11-0.52-0.29-0.71l-1.17-1.17l0.49-2.48 c0.72,0.95,1.76,1.64,2.97,1.89l0,6.6c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5v-9C15,8.22,14.78,8,14.5,8z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_none\": {\n    \"name\": \"notifications_none\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.29 17.29L18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.9 0 1.34-1.08.71-1.71zM16 17H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"clean_hands\": {\n    \"name\": \"clean_hands\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.99,7l1.37-0.63L16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7z M20,14c1.1,0,2-0.9,2-2 c0-0.78-0.99-2.44-1.58-3.36c-0.2-0.31-0.64-0.31-0.84,0C18.99,9.56,18,11.22,18,12C18,13.1,18.9,14,20,14z M9.24,9.5L15,11.65V11 c0-2.42-1.72-4.44-4-4.9V4h2c0.35,0,0.68,0.06,1,0.18c0.37,0.13,0.78,0.05,1.05-0.22l0,0c0.51-0.51,0.34-1.39-0.33-1.64 C14.19,2.11,13.61,2,13,2H8.5c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5H9.24z M3,11L3,11 c-1.1,0-2,0.9-2,2v7c0,1.1,0.9,2,2,2h0c1.1,0,2-0.9,2-2v-7C5,11.9,4.1,11,3,11z M19.99,17h-6.83c-0.11,0-0.22-0.02-0.33-0.06 l-1.47-0.51c-0.26-0.09-0.39-0.37-0.3-0.63l0,0c0.09-0.26,0.38-0.4,0.64-0.3l1.12,0.43c0.11,0.04,0.24,0.07,0.36,0.07h2.63 c0.65,0,1.18-0.53,1.18-1.18v0c0-0.49-0.31-0.93-0.77-1.11L9.3,11.13C9.08,11.04,8.84,11,8.6,11H7v9.02l6.37,1.81 c0.41,0.12,0.85,0.1,1.25-0.05L22,19l0,0C22,17.89,21.1,17,19.99,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_remove\": {\n    \"name\": \"person_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M2,18v1c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-1 c0-2.66-5.33-4-8-4S2,15.34,2,18z M18,10h4c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1v0 C17,10.45,17.45,10,18,10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86v1.64c0,0.28-0.22,0.5-0.5,0.5h-11C2.22,16,2,15.78,2,15.5v-1.64C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><path d=\\\"M13.5,10h3c0.28,0,0.5-0.22,0.5-0.5v0C17,9.22,16.78,9,16.5,9h-3C13.22,9,13,9.22,13,9.5v0C13,9.78,13.22,10,13.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"female\": {\n    \"name\": \"female\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6c1.93,0,3.5,1.57,3.5,3.5S13.93,13,12,13s-3.5-1.57-3.5-3.5S10.07,6,12,6z M13,14.91c2.56-0.47,4.5-2.71,4.5-5.41 C17.5,6.46,15.04,4,12,4S6.5,6.46,6.5,9.5c0,2.7,1.94,4.94,4.5,5.41V17h-1c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v1c0,0.55,0.45,1,1,1 s1-0.45,1-1v-1h1c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1V14.91z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,5.5c1.52,0,2.75,1.23,2.75,2.75S11.52,11,10,11S7.25,9.77,7.25,8.25S8.48,5.5,10,5.5z M9.25,12.43l0,1.57H8.5 c-0.41,0-0.75,0.34-0.75,0.75S8.09,15.5,8.5,15.5h0.75v0.75C9.25,16.66,9.59,17,10,17s0.75-0.34,0.75-0.75V15.5h0.75 c0.41,0,0.75-0.34,0.75-0.75S11.91,14,11.5,14h-0.75v-1.57c1.99-0.35,3.5-2.09,3.5-4.18C14.25,5.9,12.35,4,10,4S5.75,5.9,5.75,8.25 C5.75,10.34,7.26,12.08,9.25,12.43z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_2\": {\n    \"name\": \"diversity_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.77,15.23L10.77,15.23c0.4-0.4,0.39-1.07-0.04-1.45C8.17,11.47,6.65,9.9,7.07,8.33C7.29,7.52,8.01,7,8.85,7 c1.11,0,1.54,0.65,2.68,2h0.93c1.12-1.31,1.53-2,2.68-2c0.87,0,1.55,0.54,1.77,1.32c0.35-0.04,0.68-0.06,1-0.06 c0.36,0,0.7,0.03,1.03,0.08C18.7,6.43,17.13,5,15.15,5c-0.12,0-0.23,0.03-0.35,0.04c0.26-0.71,0.31-1.53-0.18-2.43 C14.19,1.8,13.4,1.18,12.5,1.04C10.62,0.74,9,2.18,9,4c0,0.37,0.08,0.71,0.2,1.04C9.08,5.03,8.97,5,8.85,5C6.69,5,5,6.69,5,8.85 c0,2.23,1.73,4.01,4.4,6.41C9.79,15.62,10.4,15.6,10.77,15.23z\\\"></path><path d=\\\"M23.52,17.25c-0.54-0.87-1.27-1.23-2.01-1.36c0.07-0.1,0.15-0.18,0.21-0.28c1.08-1.87,0.46-4.18-1.41-5.26 c-1.93-1.11-4.34-0.5-7.75,0.6c-0.51,0.16-0.79,0.7-0.66,1.21v0c0.15,0.55,0.73,0.87,1.28,0.69c3.28-1.06,5.4-1.6,6.55-0.45 c0.59,0.59,0.68,1.48,0.26,2.21c-0.56,0.96-1.33,1-3.07,1.32l-0.47,0.81c0.58,1.62,0.97,2.33,0.39,3.32 c-0.53,0.91-1.61,1.2-2.53,0.68c-0.06-0.03-0.11-0.09-0.17-0.13c-0.3,0.67-0.64,1.24-1.03,1.73c0,0.01,0,0.01,0,0.01 c1.9,1.24,4.34,0.64,5.46-1.29c0.06-0.1,0.09-0.21,0.14-0.32c0.22,0.27,0.48,0.51,0.8,0.69c1.58,0.91,3.64,0.23,4.31-1.55 C24.14,19.02,24,18.03,23.52,17.25z\\\"></path><path d=\\\"M12.1,15.04c-0.72,3.38-1.32,5.48-2.89,5.9c-0.81,0.22-1.62-0.15-2.04-0.88c-0.56-0.96-0.2-1.66,0.39-3.32L7.1,15.93 c-1.7-0.31-2.5-0.33-3.07-1.32c-0.53-0.91-0.24-2,0.68-2.53c0.09-0.05,0.19-0.08,0.29-0.11c-0.27-0.42-0.5-0.87-0.67-1.37 c-0.24-0.11-0.36-0.16-0.6-0.26c-1.88,1.07-2.51,3.4-1.43,5.27c0.06,0.1,0.14,0.18,0.21,0.28c-0.75,0.13-1.48,0.49-2.01,1.36 c-0.48,0.78-0.62,1.77-0.3,2.63c0.68,1.78,2.74,2.46,4.31,1.55c0.32-0.18,0.58-0.42,0.8-0.69c0.05,0.11,0.08,0.22,0.14,0.32 c1.08,1.87,3.39,2.49,5.26,1.41c1.93-1.11,2.61-3.51,3.36-7.01c0.11-0.52-0.21-1.04-0.72-1.17l0,0 C12.78,14.14,12.22,14.48,12.1,15.04z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.99,13c0.3,0.27,0.75,0.26,1.03-0.03c0.3-0.3,0.29-0.8-0.03-1.09C6.74,9.86,5.33,8.48,5.52,7.05 c0.12-0.94,1.03-1.62,1.97-1.54C8.41,5.58,8.85,6.21,9.52,7h0.97c1.26-1.48,1.57-1.5,2.22-1.5c0.81,0,1.46,0.49,1.69,1.19 c0.27-0.03,0.52-0.05,0.77-0.05c0.27,0,0.53,0.02,0.78,0.05C15.67,5.15,14.34,4,12.7,4c-0.09,0-0.17,0.02-0.26,0.03 c0.12-0.55,0.08-1.16-0.33-1.81c-0.4-0.63-1.06-1.11-1.8-1.2C8.79,0.84,7.5,2.02,7.5,3.5c0,0.18,0.02,0.36,0.06,0.53 C7.47,4.02,7.39,4,7.3,4C5.45,4,4,5.45,4,7.3C4,9.27,5.58,10.84,7.99,13z\\\"></path><path d=\\\"M18.75,13.09c-0.16-0.09-0.32-0.16-0.49-0.21c0.05-0.07,0.11-0.13,0.15-0.21c0.92-1.6,0.39-3.58-1.21-4.51 c-1.71-0.99-3.85-0.4-6.93,0.61C9.9,8.89,9.68,9.29,9.78,9.67c0.11,0.42,0.55,0.65,0.96,0.52c2.72-0.89,4.56-1.41,5.72-0.74 c0.89,0.51,1.17,1.57,0.66,2.46c-0.53,0.91-1.33,0.97-2.41,1.17l-0.48,0.84c0.65,1.83,0.51,2.11,0.19,2.67 c-0.51,0.89-1.57,1.17-2.46,0.66c-0.18-0.11-0.35-0.25-0.5-0.42c-0.23,0.51-0.48,0.97-0.77,1.35c0.16,0.14,0.33,0.27,0.52,0.38 c1.6,0.92,3.58,0.39,4.51-1.21c0.04-0.08,0.07-0.16,0.1-0.24c0.13,0.12,0.27,0.22,0.43,0.32c1.2,0.69,2.72,0.28,3.42-0.92 C20.35,15.3,19.95,13.78,18.75,13.09z\\\"></path><path d=\\\"M11.19,11.36c-0.42-0.11-0.84,0.15-0.93,0.57c-0.63,2.97-1.12,4.87-2.44,5.43c-0.87,0.36-1.92-0.08-2.32-0.94 c-0.4-0.83-0.07-1.53,0.28-2.5l-0.48-0.84c-1.91-0.35-2.08-0.61-2.41-1.17c-0.51-0.89-0.23-1.95,0.66-2.46 C3.31,8.98,3.16,8.5,3.08,8.02c-0.1,0.04-0.2,0.08-0.29,0.13c-1.6,0.92-2.13,2.91-1.21,4.51c0.04,0.08,0.11,0.14,0.15,0.21 c-0.17,0.05-0.33,0.12-0.49,0.21c-1.2,0.69-1.61,2.22-0.92,3.42c0.69,1.2,2.22,1.61,3.42,0.92c0.16-0.09,0.3-0.2,0.43-0.32 c0.04,0.08,0.06,0.16,0.1,0.24c0.92,1.6,2.91,2.13,4.51,1.21c1.71-0.99,2.27-3.14,2.94-6.31C11.81,11.85,11.58,11.46,11.19,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications_paused\": {\n    \"name\": \"notifications_paused\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm7.29-4.71L18 16v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-1.29 1.29c-.63.63-.19 1.71.7 1.71h13.17c.9 0 1.34-1.08.71-1.71zM14.5 9.33c0 .31-.11.6-.3.84l-2.5 3.03h1.9c.5 0 .9.4.9.9s-.4.9-.9.9h-2.78c-.73 0-1.32-.59-1.32-1.32v-.01c0-.31.11-.6.3-.84l2.5-3.03h-1.9c-.5 0-.9-.4-.9-.9s.4-.9.9-.9h2.78c.73 0 1.32.59 1.32 1.33z\\\"></path>\"\n      }\n    }\n  },\n  \"school\": {\n    \"name\": \"school\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13.18v2.81c0 .73.4 1.41 1.04 1.76l5 2.73c.6.33 1.32.33 1.92 0l5-2.73c.64-.35 1.04-1.03 1.04-1.76v-2.81l-6.04 3.3c-.6.33-1.32.33-1.92 0L5 13.18zm6.04-9.66-8.43 4.6c-.69.38-.69 1.38 0 1.76l8.43 4.6c.6.33 1.32.33 1.92 0L21 10.09V16c0 .55.45 1 1 1s1-.45 1-1V9.59c0-.37-.2-.7-.52-.88l-9.52-5.19c-.6-.32-1.32-.32-1.92 0z\\\"></path>\"\n      }\n    }\n  },\n  \"blind\": {\n    \"name\": \"blind\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"11.41\\\" cy=\\\"3.5\\\" r=\\\"2\\\"></circle><path d=\\\"M12.04,7.12c-0.17-0.35-0.44-0.65-0.8-0.85C10.63,5.91,9.9,5.93,9.31,6.24l0-0.01L4.92,8.73 C4.3,9.08,3.91,9.74,3.91,10.46V13c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2.54l1.5-0.85c-0.32,1.1-0.5,2.24-0.5,3.39v5.33 l-2,2.67c-0.33,0.44-0.24,1.07,0.2,1.4l0,0c0.44,0.33,1.07,0.24,1.4-0.2l2.04-2.72c0.23-0.31,0.37-0.69,0.4-1.08l0.18-2.94 L10.91,18v4c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-4.87c0-0.41-0.13-0.81-0.36-1.15l-1.6-2.29c0,0,0,0,0-0.01 c-0.11-1.16,0.07-2.32,0.46-3.4c0.75,1.14,1.88,1.98,3.2,2.41l5.7,9.87c0.14,0.24,0.44,0.32,0.68,0.18l0,0 c0.24-0.14,0.32-0.44,0.18-0.68L15.92,13h0c0.54,0,0.98-0.44,0.98-0.98v-0.05c0-0.5-0.37-0.94-0.87-0.99 c-0.95-0.1-2.37-0.52-3.21-2.18\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"9.93\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M17.24,17.3l-3.74-6.48c0.25-0.12,0.43-0.35,0.43-0.65c0-0.37-0.28-0.68-0.65-0.73c-2.42-0.29-2.44-2.19-3.46-3.01 c-0.26-0.21-0.57-0.34-0.89-0.4C8.56,5.97,8.16,6,7.79,6.15L4.85,7.4C4.29,7.63,3.93,8.18,3.93,8.78v1.46 c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75V8.78L6.79,8.2C6.58,8.96,6.43,9.7,6.43,10.49v4l-1.6,2.01 c-0.23,0.28-0.2,0.69,0.05,0.95c0.3,0.3,0.78,0.27,1.05-0.05l1.69-2.03c0.2-0.24,0.32-0.54,0.34-0.85l0.15-2.13l1.31,1.61v3.26 c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75V13.5c0-0.33-0.11-0.65-0.31-0.91l-1.16-1.52 c-0.02-0.22-0.12-1.1,0.28-2.34c0.22,0.33,1.19,1.58,2.86,2.06l3.98,6.89c0.1,0.18,0.33,0.24,0.51,0.14 C17.29,17.71,17.35,17.48,17.24,17.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_emotions\": {\n    \"name\": \"emoji_emotions\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M16.71,14.72C15.8,16.67,14.04,18,12,18s-3.8-1.33-4.71-3.28 C7.13,14.39,7.37,14,7.74,14h8.52C16.63,14,16.87,14.39,16.71,14.72z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8 S17,8.67,17,9.5S16.33,11,15.5,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M9.99,3C6.13,3,3,6.14,3,10s3.13,7,6.99,7c3.87,0,7.01-3.14,7.01-7S13.86,3,9.99,3z M6,8c0-0.55,0.45-1,1-1s1,0.45,1,1 c0,0.55-0.45,1-1,1S6,8.55,6,8z M13.6,11.71C12.97,13.06,11.6,14,10,14s-2.97-0.94-3.6-2.29C6.24,11.38,6.5,11,6.86,11h6.28 C13.5,11,13.76,11.38,13.6,11.71z M13,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14,8.55,13.55,9,13,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"waving_hand\": {\n    \"name\": \"waving_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.07,9.8c-0.2,0.2-0.2,0.51,0,0.71l0,0c1.07,1.07,1.16,2.75,0.28,3.92c-0.15,0.2-0.12,0.47,0.05,0.65 c0.22,0.22,0.57,0.19,0.76-0.05c1.07-1.43,1.06-3.43-0.04-4.85l7.62-7.62c0.49-0.49,1.28-0.49,1.77,0s0.49,1.28,0,1.77l-5.13,5.13 c-0.2,0.2-0.2,0.51,0,0.71s0.51,0.2,0.71,0l6.54-6.54c0.49-0.49,1.28-0.49,1.77,0s0.49,1.28,0,1.77l-6.54,6.54 c-0.2,0.2-0.2,0.51,0,0.71s0.51,0.2,0.71,0l5.48-5.48c0.49-0.49,1.28-0.49,1.77,0s0.49,1.28,0,1.77l-6.19,6.19 c-0.2,0.2-0.2,0.51,0,0.71c0.2,0.2,0.51,0.2,0.71,0l4.07-4.07c0.49-0.49,1.28-0.49,1.77,0c0.49,0.49,0.49,1.28,0,1.77l-7.07,7.07 c-3.22,3.22-8.45,3.22-11.67,0s-3.22-8.45,0-11.67l4.6-4.6c0.49-0.49,1.28-0.49,1.77,0c0.49,0.49,0.49,1.28,0,1.77L6.07,9.8z M7,1.8 c0-0.41-0.34-0.75-0.75-0.75c-0.04,0-0.07,0-0.11,0.01c-2.63,0.38-4.7,2.46-5.08,5.08c0,0.03-0.01,0.07-0.01,0.11 C1.05,6.66,1.39,7,1.8,7c0.38,0,0.69-0.28,0.74-0.64c0.28-1.97,1.84-3.53,3.81-3.81C6.72,2.49,7,2.18,7,1.8z M17,22.2 c0,0.41,0.34,0.75,0.75,0.75c0.04,0,0.07,0,0.11-0.01c2.63-0.38,4.7-2.46,5.08-5.08c0-0.03,0.01-0.07,0.01-0.11 c0-0.41-0.34-0.75-0.75-0.75c-0.38,0-0.69,0.28-0.74,0.64c-0.28,1.97-1.84,3.53-3.81,3.81C17.28,21.51,17,21.82,17,22.2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.56,2.02C3.7,2.23,2.23,3.7,2.02,5.55C2,5.81,1.79,6,1.53,6c-0.28,0-0.5-0.22-0.5-0.5c0-0.01,0-0.03,0-0.04 c0.25-2.32,2.09-4.17,4.41-4.43c0.02,0,0.04,0,0.06,0c0.28,0,0.5,0.22,0.5,0.5C6,1.78,5.81,2,5.56,2.02z M17.98,14.44 c-0.21,1.85-1.68,3.33-3.53,3.53C14.19,18,14,18.21,14,18.47c0,0.28,0.22,0.5,0.5,0.5c0.01,0,0.03,0,0.04,0 c2.32-0.25,4.17-2.09,4.43-4.41c0-0.02,0-0.04,0-0.06c0-0.28-0.22-0.5-0.5-0.5C18.22,14,18,14.19,17.98,14.44z M10.47,8.11 c-0.2,0.2-0.51,0.2-0.71,0v0c-0.2-0.2-0.2-0.51,0-0.71l4.24-4.24c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0L6.21,8.14 c0.91,1.22,0.93,2.9,0.04,4.13c-0.18,0.25-0.54,0.27-0.75,0.05l0,0c-0.17-0.17-0.2-0.44-0.06-0.64c0.7-0.98,0.61-2.34-0.27-3.22l0,0 c-0.2-0.2-0.2-0.51,0-0.71l3.18-3.18c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0L3.05,7.05c-2.73,2.73-2.73,7.17,0,9.9 s7.17,2.73,9.9,0l5.66-5.66c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0l-3.18,3.18c-0.2,0.2-0.51,0.2-0.71,0l0,0 c-0.2-0.2-0.2-0.51,0-0.71l5.13-5.13c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0l-4.42,4.42c-0.2,0.2-0.51,0.2-0.71,0l0,0 c-0.2-0.2-0.2-0.51,0-0.71l5.3-5.3c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0L10.47,8.11z\\\"></path>\"\n      }\n    }\n  },\n  \"cake\": {\n    \"name\": \"cake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.68 5.88c.7-.24 1.22-.9 1.3-1.64.05-.47-.05-.91-.28-1.27L12.42.75c-.19-.33-.67-.33-.87 0l-1.28 2.22c-.17.3-.27.65-.27 1.03 0 1.32 1.3 2.35 2.68 1.88zm3.85 10.04l-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-3.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V8c0-.55-.45-1-1-1s-1 .45-1 1v1H6c-1.66 0-3 1.34-3 3v1.46c0 .85.5 1.67 1.31 1.94.73.24 1.52.06 2.03-.46l2.14-2.13 2.13 2.13c.76.76 2.01.76 2.77 0l2.14-2.13 2.13 2.13c.43.43 1.03.63 1.65.55.99-.13 1.69-1.06 1.69-2.06v-1.42C21 10.34 19.66 9 18 9z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_basketball\": {\n    \"name\": \"sports_basketball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17.09,11h4.86c-0.16-1.61-0.71-3.11-1.54-4.4C18.68,7.43,17.42,9.05,17.09,11z\\\"></path></g><g><path d=\\\"M6.91,11C6.58,9.05,5.32,7.43,3.59,6.6C2.76,7.89,2.21,9.39,2.05,11H6.91z\\\"></path></g><g><path d=\\\"M15.07,11c0.32-2.59,1.88-4.79,4.06-6c-1.6-1.63-3.74-2.71-6.13-2.95V11H15.07z\\\"></path></g><g><path d=\\\"M8.93,11H11V2.05C8.61,2.29,6.46,3.37,4.87,5C7.05,6.21,8.61,8.41,8.93,11z\\\"></path></g><g><path d=\\\"M15.07,13H13v8.95c2.39-0.24,4.54-1.32,6.13-2.95C16.95,17.79,15.39,15.59,15.07,13z\\\"></path></g><g><path d=\\\"M3.59,17.4c1.72-0.83,2.99-2.46,3.32-4.4H2.05C2.21,14.61,2.76,16.11,3.59,17.4z\\\"></path></g><g><path d=\\\"M17.09,13c0.33,1.95,1.59,3.57,3.32,4.4c0.83-1.29,1.38-2.79,1.54-4.4H17.09z\\\"></path></g><g><path d=\\\"M8.93,13c-0.32,2.59-1.88,4.79-4.06,6c1.6,1.63,3.74,2.71,6.13,2.95V13H8.93z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M13.05,9.5h3.92c-0.1-1.43-0.63-2.74-1.47-3.81C14.16,6.48,13.22,7.87,13.05,9.5z\\\"></path></g><g><path d=\\\"M6.95,10.5H3.03c0.1,1.43,0.63,2.74,1.47,3.81C5.84,13.52,6.78,12.13,6.95,10.5z\\\"></path></g><g><path d=\\\"M6.95,9.5c-0.17-1.63-1.1-3.02-2.46-3.81C3.66,6.76,3.13,8.07,3.03,9.5H6.95z\\\"></path></g><g><path d=\\\"M13.05,10.5c0.17,1.63,1.1,3.02,2.46,3.81c0.83-1.07,1.36-2.38,1.47-3.81H13.05z\\\"></path></g><g><path d=\\\"M12.03,10.5H10.5v6.47c1.67-0.12,3.17-0.82,4.31-1.9C13.26,14.1,12.18,12.43,12.03,10.5z\\\"></path></g><g><path d=\\\"M12.03,9.5c0.16-1.93,1.23-3.6,2.79-4.58c-1.14-1.08-2.64-1.78-4.31-1.9V9.5H12.03z\\\"></path></g><g><path d=\\\"M7.97,10.5c-0.16,1.93-1.23,3.6-2.79,4.58c1.14,1.08,2.64,1.78,4.31,1.9V10.5H7.97z\\\"></path></g><g><path d=\\\"M7.97,9.5H9.5V3.03c-1.67,0.12-3.17,0.82-4.31,1.9C6.74,5.9,7.82,7.57,7.97,9.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"surfing\": {\n    \"name\": \"surfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,1.5c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S18.1,1.5,17,1.5z M22,22c0,0.55-0.45,1-1,1h0c-1.03,0-2.05-0.25-3-0.75 c-1.92,1.02-4.18,1-6.09-0.05c-1.79,0.87-3.92,0.98-5.58-0.14C5.3,22.69,4.15,23,3,23h0c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h0 c0.87,0,1.73-0.24,2.53-0.7c0.29-0.16,0.65-0.17,0.94,0c1.59,0.9,3.48,0.9,5.06,0c0.29-0.16,0.65-0.16,0.94,0 c1.59,0.9,3.48,0.9,5.06,0c0.29-0.16,0.65-0.16,0.94,0C19.27,20.76,20.13,21,21,21h0C21.55,21,22,21.45,22,22z M8.04,18.86 C8.35,18.95,8.67,19,9,19c0.9,0,1.72-0.37,2.39-0.91c0.35-0.28,0.87-0.28,1.22,0C13.28,18.63,14.1,19,15,19s1.72-0.37,2.39-0.91 c0.03-0.03,0.07-0.05,0.11-0.07c-0.46-0.39-0.97-0.79-1.5-1.17v-2.87c0-0.61-0.28-1.19-0.77-1.57L12.17,10l2.25-1.52 c1.03,1.79,2.82,3.08,4.93,3.43c0.6,0.1,1.14-0.39,1.14-1c0-0.49-0.36-0.9-0.84-0.98c-1.5-0.25-2.78-1.18-3.51-2.46l-0.88-1.55 c-0.29-0.52-0.77-0.8-1.22-0.89L9.31,4.15c-0.52-0.1-1.06,0.02-1.5,0.32L5.82,5.83C5.37,6.15,5.25,6.77,5.56,7.22 C5.88,7.68,6.5,7.8,6.96,7.49l1.99-1.37l2,0.37L8.8,7.94C8.2,8.35,7.91,9.06,8.03,9.73l0.52,3.1C7.13,12.31,5.83,12,4.85,12 C4.01,12,3,12.25,3,13.28C3,14.72,5.19,16.9,8.04,18.86z M14,14v1.5c-0.78-0.48-2.34-1.33-3.26-1.75L10.3,11.1L14,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,3.25C15.5,4.22,14.72,5,13.75,5S12,4.22,12,3.25s0.78-1.75,1.75-1.75S15.5,2.28,15.5,3.25z M16.5,9.18 c0,0.46-0.42,0.83-0.87,0.75C14.35,9.7,13.25,8.99,12.5,8l-0.6-0.8L10,8.48l2.64,2.22c0.23,0.19,0.36,0.47,0.36,0.77v2.62 c0.5,0.35,0.98,0.71,1.41,1.07c-0.54,0.5-1.2,0.84-1.91,0.84c-0.82,0-1.56-0.44-2.14-1.06c-0.2-0.21-0.53-0.21-0.72,0 C9.06,15.56,8.32,16,7.5,16c-0.19,0-0.37-0.02-0.55-0.07C4.71,14.38,3,12.66,3,11.52c0-0.45,0.28-1.02,1.47-1.02 c0.68,0,1.56,0.19,2.53,0.51L6.53,8.28c-0.1-0.57,0.13-1.16,0.63-1.5l1.72-1.16L7.54,5.38L5.86,6.52c-0.34,0.23-0.81,0.14-1.04-0.2 c-0.23-0.34-0.14-0.81,0.2-1.04l1.85-1.26c0.21-0.14,0.47-0.2,0.72-0.16l3.83,0.62c0.36,0.06,0.69,0.23,0.91,0.51l1.38,2.1 c0.52,0.69,1.29,1.19,2.18,1.35C16.24,8.51,16.5,8.81,16.5,9.18z M8.4,9.15l0.35,2.55c0.86,0.37,2.18,1.05,2.74,1.42V11.7L8.4,9.15z M5,18.4c-0.7,0.36-1.46,0.55-2.22,0.59C2.39,19.01,2,18.7,2,18.24c0-0.39,0.3-0.72,0.71-0.75c0.68-0.04,1.36-0.29,1.98-0.75 c0.18-0.14,0.43-0.14,0.61,0c1.37,1.01,3.02,1.01,4.39,0c0.19-0.14,0.43-0.14,0.61,0c1.37,1.01,3.02,1,4.39,0 c0.18-0.14,0.43-0.14,0.61,0c0.62,0.46,1.3,0.7,1.98,0.75C17.7,17.52,18,17.85,18,18.24c0,0.46-0.39,0.77-0.78,0.75 c-0.76-0.04-1.52-0.24-2.22-0.59c-1.57,0.8-3.43,0.8-5,0C8.43,19.2,6.57,19.2,5,18.4z\\\"></path>\"\n      }\n    }\n  },\n  \"real_estate_agent\": {\n    \"name\": \"real_estate_agent\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,22c1.1,0,2-0.9,2-2v-7c0-1.1-0.9-2-2-2s-2,0.9-2,2v7C1,21.1,1.9,22,3,22z M11.37,16.43l1.47,0.51 c0.11,0.04,0.22,0.06,0.33,0.06h6.83c1.11,0,2,0.89,2.01,2l0,0l-7.39,2.77c-0.4,0.15-0.84,0.17-1.25,0.05L7,20.02V11H8.6 c0.24,0,0.48,0.04,0.7,0.13l6.93,2.59c0.46,0.17,0.77,0.61,0.77,1.11v0c0,0.65-0.53,1.18-1.18,1.18h-2.63 c-0.12,0-0.24-0.02-0.36-0.07l-1.12-0.43c-0.26-0.1-0.55,0.04-0.64,0.3C10.98,16.06,11.11,16.34,11.37,16.43z M20.16,5.9l-5-3.57 c-0.7-0.5-1.63-0.5-2.32,0l-5,3.57C7.31,6.28,7,6.88,7,7.53V9h1.61c0.25,0,0.51,0.05,0.74,0.14l7.79,3.11 C18.26,12.71,19,13.79,19,15h2V7.53C21,6.88,20.69,6.28,20.16,5.9z M13,10c-0.28,0-0.5-0.22-0.5-0.5C12.5,9.22,12.72,9,13,9 s0.5,0.22,0.5,0.5C13.5,9.78,13.28,10,13,10z M13,8c-0.28,0-0.5-0.22-0.5-0.5C12.5,7.22,12.72,7,13,7s0.5,0.22,0.5,0.5 C13.5,7.78,13.28,8,13,8z M15,10c-0.28,0-0.5-0.22-0.5-0.5C14.5,9.22,14.72,9,15,9s0.5,0.22,0.5,0.5C15.5,9.78,15.28,10,15,10z M15,8c-0.28,0-0.5-0.22-0.5-0.5C14.5,7.22,14.72,7,15,7s0.5,0.22,0.5,0.5C15.5,7.78,15.28,8,15,8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2.5,18C3.33,18,4,17.33,4,16.5v-6C4,9.67,3.33,9,2.5,9S1,9.67,1,10.5v6C1,17.33,1.67,18,2.5,18z M16.38,5.05l-4-2.91 c-0.53-0.38-1.24-0.38-1.76,0l-4,2.91C6.23,5.33,6,5.78,6,6.26V7.5h1.07c0.29,0,0.57,0.05,0.84,0.14l5.93,2.11 c1,0.35,1.66,1.3,1.66,2.36v0.39H17V6.26C17,5.78,16.77,5.33,16.38,5.05z M10.75,8.25c-0.21,0-0.38-0.17-0.38-0.38 s0.17-0.38,0.38-0.38s0.38,0.17,0.38,0.38S10.96,8.25,10.75,8.25z M10.75,6.75c-0.21,0-0.38-0.17-0.38-0.38S10.54,6,10.75,6 s0.38,0.17,0.38,0.38S10.96,6.75,10.75,6.75z M12.25,8.25c-0.21,0-0.38-0.17-0.38-0.38s0.17-0.38,0.38-0.38s0.38,0.17,0.38,0.38 S12.46,8.25,12.25,8.25z M12.25,6.75c-0.21,0-0.38-0.17-0.38-0.38S12.04,6,12.25,6s0.38,0.17,0.38,0.38S12.46,6.75,12.25,6.75z M10.5,14l-1.03-0.34C9.2,13.57,9.05,13.27,9.15,13v0c0.1-0.28,0.42-0.42,0.69-0.3L10.5,13h2.62c0.49,0,0.88-0.39,0.88-0.88v0 c0-0.37-0.23-0.7-0.58-0.83l-6.17-2.2C7.08,9.03,6.91,9,6.74,9H5.5v7.36l5.53,1.51c0.31,0.08,0.64,0.07,0.93-0.05L18,15.5v0 c0-0.83-0.67-1.5-1.5-1.5H10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"person_4\": {\n    \"name\": \"person_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22L4,18c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2l0-0.78C20,16.1,19.39,15.07,18.39,14.56z\\\"></path></g><g><path d=\\\"M12,12c2.21,0,4-1.79,4-4c0-1.37,0-3.5,0-3.5C16,3.67,15.33,3,14.5,3c-0.52,0-0.98,0.27-1.25,0.67 C12.98,3.27,12.52,3,12,3s-0.98,0.27-1.25,0.67C10.48,3.27,10.02,3,9.5,3C8.67,3,8,3.67,8,4.5c0,0,0,2.12,0,3.5 C8,10.21,9.79,12,12,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3c0-1.03,0-2.83,0-2.83v0c0-0.62-0.5-1.12-1.12-1.12c-0.4,0-0.74,0.22-0.94,0.54 C10.74,3.26,10.4,3.04,10,3.04c-0.39,0-0.72,0.21-0.92,0.52C8.88,3.23,8.54,3,8.12,3C7.5,3,7,3.5,7,4.12c0,0,0,1.84,0,2.88 C7,8.66,8.34,10,10,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.73,4,13.39,4,14.09l0,0.41C4,15.33,4.67,16,5.5,16h9 c0.83,0,1.5-0.67,1.5-1.5l0-0.41C16,13.39,15.64,12.73,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sanitizer\": {\n    \"name\": \"sanitizer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,6.5c0-0.56,0.67-1.49,1.11-2.04c0.2-0.25,0.58-0.25,0.77,0c0.44,0.55,1.11,1.48,1.11,2.04C18.5,7.33,17.83,8,17,8 S15.5,7.33,15.5,6.5z M19.5,15c1.38,0,2.5-1.12,2.5-2.5c0-1.25-1.41-3.16-2.11-4.04c-0.2-0.25-0.57-0.25-0.77,0 C18.41,9.34,17,11.25,17,12.5C17,13.88,18.12,15,19.5,15z M12,14h-1v-1c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1H8 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1h1c0.55,0,1-0.45,1-1v0 C13,14.45,12.55,14,12,14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H8C7.45,4,7,3.55,7,3v0 c0-0.55,0.45-1,1-1h5c0.61,0,1.19,0.11,1.72,0.31c0.67,0.25,0.83,1.13,0.33,1.64l0,0C14.77,4.23,14.36,4.31,14,4.18 C13.68,4.06,13.35,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z\\\"></path>\"\n      }\n    }\n  },\n  \"fireplace\": {\n    \"name\": \"fireplace\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,19c0,0.55-0.45,1-1,1h-1v-1 c0-0.55-0.45-1-1-1h-1.15c0.71-0.85,1.15-1.89,1.15-3c0-1.89-1.09-2.84-1.85-3.36c-1.86-1.27-2.23-2.78-2.25-3.72 c-0.01-0.4-0.43-0.63-0.77-0.43c-5.8,3.43-5.15,7-5.13,7.51c0.03,0.96,0.49,2.07,1.24,3H7c-0.55,0-1,0.45-1,1v1H5 c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h14c0.55,0,1,0.45,1,1V19z M13.2,13.74c-0.08-0.46-0.07-0.85,0.08-1.28 c0.54,1.21,2.15,1.64,1.98,3.18c-0.19,1.69-2.11,2.37-3.39,1.32c0.76-0.24,1.4-1.04,1.53-1.63C13.52,14.78,13.29,14.29,13.2,13.74z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,3H4C3.45,3,3,3.45,3,4v12c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M9.45,13.63 c0.57-0.18,1.05-0.78,1.15-1.22c0.1-0.42-0.08-0.78-0.15-1.2c-0.06-0.34-0.05-0.64,0.06-0.96c0.41,0.91,1.61,1.23,1.48,2.39 C11.85,13.9,10.41,14.41,9.45,13.63z M16,15.5c0,0.28-0.22,0.5-0.5,0.5H14v-0.5c0-0.28-0.22-0.5-0.5-0.5h-0.83 c0.81-0.7,1.33-1.71,1.33-2.85c0-1.45-0.87-2.19-1.48-2.59C10.16,8.01,10.8,6,10.8,6C5.42,8.74,5.99,11.74,6,12.15 C6.03,13.1,6.63,14.21,7.53,15H6.5C6.22,15,6,15.22,6,15.5V16H4.5C4.22,16,4,15.78,4,15.5v-11C4,4.22,4.22,4,4.5,4h11 C15.78,4,16,4.22,16,4.5V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"architecture\": {\n    \"name\": \"architecture\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z\\\"></path><path d=\\\"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z\\\"></path><path d=\\\"M14.94,8.6c0.3-1.56-0.6-2.94-1.94-3.42V4c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1.18C9.84,5.6,9,6.7,9,8 c0,1.84,1.66,3.3,3.56,2.95C13.74,10.73,14.71,9.78,14.94,8.6z M12,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,8.55,12.55,9,12,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.67,14.89L6.79,16l0.81-0.77l1.92-5.28C9.19,9.9,8.87,9.79,8.58,9.63L6.67,14.89z\\\"></path><path d=\\\"M11.42,9.63c-0.29,0.16-0.61,0.27-0.95,0.32l1.92,5.28L13.21,16l0.13-1.11L11.42,9.63z\\\"></path><path d=\\\"M11.95,7.47c0.26-1.13-0.44-2.14-1.45-2.4V4.5C10.5,4.22,10.28,4,10,4h0C9.72,4,9.5,4.22,9.5,4.5v0.57 C8.64,5.29,8,6.07,8,7c0,1.26,1.17,2.25,2.48,1.94C11.2,8.78,11.78,8.19,11.95,7.47z M10,8C9.45,8,9,7.55,9,7c0-0.55,0.45-1,1-1 s1,0.45,1,1C11,7.55,10.55,8,10,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"heart_broken\": {\n    \"name\": \"heart_broken\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.57,3.95c-1.92-1.29-4.08-1.17-5.8-0.26L12,9h1.66c0.67,0,1.15,0.65,0.96,1.29l-1.82,6.07c-0.09,0.29-0.52,0.2-0.49-0.1 L13,10h-1.67c-0.66,0-1.14-0.64-0.96-1.27l1.18-4.11c0,0,0,0,0,0C9.7,2.89,6.71,2.32,4.27,4.04C2.82,5.07,2,6.7,2,8.49 c-0.01,3.81,3.53,6.71,8.66,11.3c0.76,0.68,1.92,0.69,2.69,0.01c4.98-4.42,8.87-7.58,8.64-11.62C21.9,6.45,21,4.92,19.57,3.95z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.6,3c-0.77,0-1.52,0.2-2.18,0.56L10,8h1.13c0.68,0,1.16,0.66,0.95,1.3l-1.16,3.66c-0.09,0.29-0.53,0.19-0.49-0.11L11,9 H9.77C9.12,9,8.65,8.39,8.8,7.77L9.63,4.3C8.77,3.49,7.61,3,6.4,3C3.94,3,2,4.95,2,7.43c0,3.08,2.86,5.42,6.99,9.15 c0.57,0.52,1.44,0.52,2.02,0.01C14.92,13.1,18,10.58,18,7.43C18,4.95,16.06,3,13.6,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_nature\": {\n    \"name\": \"emoji_nature\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z\\\"></path><path d=\\\"M15.5,12h-1.09c-0.19-0.54-0.49-1.05-0.93-1.49S12.54,9.78,12,9.59V8.5C12,8.22,11.78,8,11.5,8S11,8.22,11,8.5v0.88 c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17c-0.16,0.16-0.3,0.34-0.43,0.53L6,10.52 c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29c0.23,0.48,0.58,0.87,1,1.16 c-0.38,1.35-0.06,2.85,1,3.91c1.06,1.06,2.57,1.38,3.91,1c0.29,0.42,0.68,0.77,1.16,1C9.78,21.9,10.21,22,10.65,22 c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85l-0.52-1.37c0.18-0.13,0.36-0.27,0.53-0.43 c0.87-0.87,1.24-2.04,1.14-3.17h0.88c0.28,0,0.5-0.22,0.5-0.5C16,12.22,15.78,12,15.5,12z M4.67,14.29 c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13 C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03c-0.02-0.04-0.04-0.08-0.06-0.12 c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.07-0.05-0.11-0.07 c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59 C12.8,12.66,12.84,13.81,12.2,14.6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M16.96,4.8c-0.11-0.33-0.43-0.55-0.79-0.55c-0.02,0-0.04,0-0.06,0H15.5l-0.19-0.6C15.22,3.27,14.88,3,14.5,3h0 c-0.38,0-0.72,0.27-0.81,0.65l-0.19,0.6h-0.61c-0.02,0-0.04,0-0.06,0c-0.36,0-0.68,0.22-0.79,0.55c-0.12,0.35,0.03,0.73,0.35,0.92 l0.54,0.33l-0.24,0.77c-0.14,0.36-0.03,0.78,0.28,1.01C13.12,7.95,13.29,8,13.46,8c0.19,0,0.38-0.07,0.54-0.2l0.51-0.43l0.51,0.43 C15.16,7.93,15.35,8,15.54,8c0.17,0,0.34-0.05,0.49-0.16c0.31-0.23,0.43-0.65,0.28-1.01l-0.24-0.77l0.54-0.33 C16.93,5.53,17.08,5.15,16.96,4.8z M14.5,6C14.22,6,14,5.78,14,5.5C14,5.22,14.22,5,14.5,5S15,5.22,15,5.5C15,5.78,14.78,6,14.5,6 z\\\"></path><path d=\\\"M12.75,10h-0.8c-0.09-0.46-0.32-0.91-0.68-1.27S10.46,8.15,10,8.05v-0.8C10,7.11,9.89,7,9.75,7S9.5,7.11,9.5,7.25V8 C8.86,8,8.22,8.24,7.73,8.73C7.56,8.91,7.43,9.1,7.32,9.31l-1.58-0.6C5.23,8.53,4.67,8.56,4.18,8.79 C3.69,9.02,3.32,9.43,3.14,9.95c-0.36,1.01,0.13,2.1,1.09,2.53c-0.41,0.92-0.25,2.04,0.5,2.79c0.76,0.76,1.88,0.92,2.8,0.5 c0.2,0.46,0.54,0.82,0.99,1.04C8.8,16.94,9.1,17,9.4,17c0.23,0,0.46-0.04,0.68-0.12h0c0.51-0.18,0.92-0.55,1.16-1.04 c0.23-0.49,0.26-1.04,0.08-1.56l-0.6-1.6c0.2-0.11,0.39-0.24,0.56-0.41C11.76,11.78,12,11.14,12,10.5h0.75 c0.14,0,0.25-0.11,0.25-0.25S12.89,10,12.75,10z M4.71,11.6c-0.26-0.09-0.47-0.28-0.59-0.53s-0.13-0.53-0.04-0.79 c0.09-0.26,0.28-0.47,0.53-0.59c0.14-0.07,0.29-0.1,0.45-0.1c0.11,0,0.23,0.02,0.34,0.06l2.94,1.11 C7.46,11.31,5.95,12.04,4.71,11.6z M10.33,15.41c-0.12,0.25-0.33,0.44-0.59,0.53S9.2,16.02,8.95,15.9 c-0.25-0.12-0.44-0.33-0.53-0.59c-0.44-1.24,0.29-2.75,0.84-3.63l1.11,2.93C10.46,14.88,10.45,15.16,10.33,15.41z M10.56,11.56 c-0.07,0.07-0.14,0.12-0.21,0.17l-0.49-1.28c-0.01-0.03-0.03-0.04-0.05-0.07c-0.02-0.04-0.04-0.07-0.07-0.1 c-0.03-0.03-0.06-0.05-0.1-0.07c-0.02-0.01-0.04-0.04-0.07-0.05l-1.32-0.5c0.05-0.08,0.11-0.15,0.18-0.22C8.72,9.16,9.1,9,9.5,9 c0.4,0,0.78,0.16,1.06,0.44S11,10.1,11,10.5C11,10.9,10.84,11.28,10.56,11.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transgender\": {\n    \"name\": \"transgender\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.5,1h-4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1.58l-3.97,3.97C14.23,6.36,13.16,6,12,6S9.77,6.36,8.89,6.97L8.24,6.32 l0.7-0.7c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-0.7,0.7L4.92,3H6.5c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-4 c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1s1-0.45,1-1V4.42l1.91,1.9L4.7,7.03c-0.39,0.39-0.39,1.02,0,1.41s1.02,0.39,1.41,0 l0.71-0.71l0.65,0.65C6.86,9.27,6.5,10.34,6.5,11.5c0,2.7,1.94,4.94,4.5,5.41V19h-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1v1 c0,0.55,0.45,1,1,1s1-0.45,1-1v-1h1c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-1v-2.09c2.56-0.47,4.5-2.71,4.5-5.41 c0-1.16-0.36-2.23-0.97-3.12l3.97-3.96V6c0,0.55,0.45,1,1,1s1-0.45,1-1V2C22.5,1.45,22.05,1,21.5,1z M12,15 c-1.93,0-3.5-1.57-3.5-3.5C8.5,9.57,10.07,8,12,8s3.5,1.57,3.5,3.5C15.5,13.43,13.93,15,12,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,1.5h-2.75c-0.41,0-0.75,0.34-0.75,0.75C13.5,2.66,13.84,3,14.25,3h1.19l-3.16,3.16C11.62,5.74,10.84,5.5,10,5.5 S8.38,5.74,7.72,6.16l-0.6-0.6l0.53-0.53c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L6.06,4.5L4.56,3h1.19 C6.16,3,6.5,2.66,6.5,2.25c0-0.41-0.34-0.75-0.75-0.75H3c-0.55,0-1,0.45-1,1v2.75C2,5.66,2.34,6,2.75,6S3.5,5.66,3.5,5.25V4.06 L5,5.56L4.47,6.09c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.53-0.53l0.56,0.56C6.07,7.89,5.75,8.78,5.75,9.75 c0,2.09,1.51,3.83,3.5,4.18v1.57H8.5c-0.41,0-0.75,0.34-0.75,0.75C7.75,16.66,8.09,17,8.5,17h0.75v0.75c0,0.41,0.34,0.75,0.75,0.75 s0.75-0.34,0.75-0.75V17h0.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-0.75v-1.57c1.99-0.35,3.5-2.09,3.5-4.18 c0-0.97-0.32-1.86-0.87-2.57l3.12-3.12v1.19C16.5,5.66,16.84,6,17.25,6S18,5.66,18,5.25V2.5C18,1.95,17.55,1.5,17,1.5z M10,12.5 c-1.52,0-2.75-1.23-2.75-2.75C7.25,8.23,8.48,7,10,7s2.75,1.23,2.75,2.75C12.75,11.27,11.52,12.5,10,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_hockey\": {\n    \"name\": \"sports_hockey\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z\\\"></path><path d=\\\"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z\\\"></path><g><path d=\\\"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z\\\"></path></g><path d=\\\"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M3,14v2h1v-3C3.45,13,3,13.45,3,14z\\\"></path></g><g><polygon points=\\\"12.32,13 11.1,10.34 14,4 11.8,4 10,7.94 8.2,4 6,4 8.9,10.34 10,12.74 11.5,16 15,16 15,13\\\"></polygon></g><g><path d=\\\"M16,13v3h1v-2C17,13.45,16.55,13,16,13z\\\"></path></g><g><polygon points=\\\"7.68,13 5,13 5,16 8.5,16 9.45,13.94 8.35,11.54\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"person_outline\": {\n    \"name\": \"person_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"group_add\": {\n    \"name\": \"group_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,9V8c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1h-1c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v1c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-1h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H22z\\\"></path><g><path d=\\\"M8,12c2.21,0,4-1.79,4-4s-1.79-4-4-4S4,5.79,4,8S5.79,12,8,12z\\\"></path><path d=\\\"M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z\\\"></path><path d=\\\"M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z\\\"></path><path d=\\\"M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"6\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle></g><g><path d=\\\"M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z\\\"></path></g><g><path d=\\\"M15.03,12.37c-0.92-0.54-1.94-0.92-3.02-1.14c0.92,0.64,1.48,1.71,1.48,2.86V16H16v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3s-1.34-3-3-3C9.79,4,9.58,4.02,9.38,4.06C10.07,4.85,10.5,5.87,10.5,7 c0,1.13-0.43,2.14-1.12,2.93C9.58,9.98,9.79,10,10,10z\\\"></path></g><g><path d=\\\"M18.75,7.75h-1v-1C17.75,6.34,17.41,6,17,6l0,0c-0.41,0-0.75,0.34-0.75,0.75v1h-1c-0.41,0-0.75,0.34-0.75,0.75v0 c0,0.41,0.34,0.75,0.75,0.75h1v1c0,0.41,0.34,0.75,0.75,0.75l0,0c0.41,0,0.75-0.34,0.75-0.75v-1h1c0.41,0,0.75-0.34,0.75-0.75v0 C19.5,8.09,19.16,7.75,18.75,7.75z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"thumb_up_alt\": {\n    \"name\": \"thumb_up_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M13.12 2.06L7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_handball\": {\n    \"name\": \"sports_handball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z\\\"></path><path d=\\\"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.13-1.24-3.01-3.83-2.18-6.07c0.17-0.46-0.01-0.97-0.43-1.21 C10.1,1.33,9.41,1.56,9.2,2.13C8.25,4.64,8.85,7.48,10.66,9.4l-4.65,8.05c-0.28,0.48-0.11,1.09,0.37,1.37 c0.48,0.28,1.09,0.11,1.37-0.37l1-1.73l1.73,1l-2.5,4.33c-0.28,0.48-0.11,1.09,0.37,1.37c0.48,0.28,1.09,0.11,1.37-0.37 l5.79-10.02c0.98,1.34,1.26,3.12,0.66,4.72c-0.17,0.45,0.02,0.96,0.43,1.2c0.53,0.31,1.22,0.08,1.44-0.5 C19.01,15.83,18.45,12.61,15.84,10.41z\\\"></path><path d=\\\"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.23,8.6l-3.46-2c-1.43-0.83-1.93-2.67-1.1-4.1l0.25-0.43c0.14-0.24,0.06-0.54-0.18-0.68C8.5,1.25,8.19,1.33,8.05,1.57 L7.8,2C6.7,3.92,7.35,6.36,9.27,7.47l-4.25,7.36c-0.14,0.24-0.06,0.54,0.18,0.68s0.54,0.06,0.68-0.18l1.25-2.17l1.73,1l-2.75,4.76 c-0.14,0.24-0.06,0.54,0.18,0.68s0.54,0.06,0.68-0.18l5.75-9.96c1.43,0.83,1.93,2.67,1.1,4.1L13.58,14 c-0.14,0.24-0.06,0.54,0.18,0.68c0.24,0.14,0.54,0.06,0.68-0.18l0.25-0.43C15.8,12.15,15.14,9.71,13.23,8.6z\\\"></path><circle cx=\\\"11\\\" cy=\\\"2\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"domain_add\": {\n    \"name\": \"domain_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2V7z M10,19H8v-2h2V19z M10,15H8v-2h2V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M16,19h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V8c0-0.55-0.45-1-1-1h-9V4c0-0.55-0.45-1-1-1H3C2.45,3,2,3.45,2,4v16 c0,0.55,0.45,1,1,1h13V19z M18,11h-2v2h2V11z M18,15h-2v2h2V15z M24,20c0,0.55-0.45,1-1,1h-1v1c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1 h-1c-0.55,0-1-0.45-1-1s0.45-1,1-1h1v-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v1h1C23.55,19,24,19.45,24,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,15.5H3.5V14H5V15.5z M5,12.33H3.5v-1.5H5V12.33z M5,9.17H3.5v-1.5H5V9.17z M5,6H3.5V4.5H5V6z M8.5,15.5H7V14h1.5V15.5z M8.5,12.33H7v-1.5h1.5V12.33z M8.5,9.17H7v-1.5h1.5V9.17z M7,6V4.5h1.5V6H7z M18,12.5V7c0-0.55-0.45-1-1-1h-7V4c0-0.55-0.45-1-1-1 H3C2.45,3,2,3.45,2,4v12c0,0.55,0.45,1,1,1h10.5v-1.5H10v-1.67h1.5v-1.5H10v-1.67h1.5v-1.5H10V7.5h6.5v5H18z M13.5,9.17H15v1.5 h-1.5V9.17z M13.5,12.33H15v1.5h-1.5V12.33z M19.5,16.25c0-0.41-0.34-0.75-0.75-0.75H18v-0.75c0-0.41-0.34-0.75-0.75-0.75 s-0.75,0.34-0.75,0.75v0.75h-0.75c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75h0.75v0.75c0,0.41,0.34,0.75,0.75,0.75 S18,18.16,18,17.75V17h0.75C19.16,17,19.5,16.66,19.5,16.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sports_gymnastics\": {\n    \"name\": \"sports_gymnastics\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M13,22c-0.56,0-1.02-0.44-1.05-1l-0.45-9L8,11H2c-0.55,0-1-0.45-1-1 s0.45-1,1-1h5l6.26-4.47c0.42-0.3,1-0.23,1.34,0.16c0.38,0.45,0.3,1.12-0.18,1.46L11.14,8.5H14l7.09-4.09 c0.41-0.24,0.93-0.15,1.24,0.21c0.36,0.43,0.3,1.07-0.14,1.41L14.5,12l-0.45,9C14.02,21.56,13.56,22,13,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.95,4.52c0.29,0.33,0.23,0.84-0.13,1.1L9.2,7.5h2.3l5.93-3.2c0.33-0.18,0.74-0.1,0.98,0.18l0,0 c0.31,0.36,0.24,0.91-0.15,1.18L12,10l-0.45,7.25c-0.03,0.42-0.38,0.75-0.8,0.75c-0.42,0-0.77-0.33-0.8-0.75L9.5,10.3L7,9.5H1.75 C1.34,9.5,1,9.16,1,8.75C1,8.34,1.34,8,1.75,8H6l4.94-3.6C11.26,4.18,11.7,4.23,11.95,4.52z M4,5.5C4,6.33,4.67,7,5.5,7 S7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_luggage\": {\n    \"name\": \"no_luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l2.92,2.92C5.02,7.9,5,7.95,5,8v11 c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1c0.34,0,0.65-0.09,0.93-0.24 l1.14,1.14c0.39,0.39,1.02,0.39,1.41,0C20.88,21.51,20.88,20.88,20.49,20.49z M8.75,18C8.34,18,8,17.66,8,17.25v-6.42l1.5,1.5v4.92 C9.5,17.66,9.16,18,8.75,18z M12,18c-0.41,0-0.75-0.34-0.75-0.75v-3.17l1.5,1.5v1.67C12.75,17.66,12.41,18,12,18z M12,9 c0.41,0,0.75,0.34,0.75,0.75v0.17l1.75,1.75V9.75C14.5,9.34,14.84,9,15.25,9S16,9.34,16,9.75v3.42l3,3V8c0-1.1-0.9-2-2-2h-2V3 c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3H8.83l3.03,3.03C11.91,9.02,11.95,9,12,9z M10.5,3.5h3V6h-3V3.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"piano_off\": {\n    \"name\": \"piano_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.49,21.9c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L3,5.83V19 c0,1.1,0.9,2,2,2h13.17l0.9,0.9C19.46,22.29,20.09,22.29,20.49,21.9z M8.25,19H5V7.83l2,2v3.67c0,0.55,0.45,1,1,1h0.25V19z M9.75,19 v-4.5H10c0.46,0,0.82-0.31,0.94-0.73l3.31,3.31V19H9.75z M11,8.17L5.83,3H19c1.1,0,2,0.9,2,2v13.17l-2-2V5h-2v8.5 c0,0.19-0.07,0.36-0.16,0.51L13,10.17V5h-2V8.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M16.54,17.6c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06L3,5.12V15.5 C3,16.33,3.67,17,4.5,17h10.38l0.6,0.6C15.77,17.89,16.25,17.89,16.54,17.6z M7,15.5H4.5V6.62L6,8.12v3.38C6,11.78,6.22,12,6.5,12 H7V15.5z M8,15.5V12h0.5C8.78,12,9,11.78,9,11.5v-0.38l3,3v1.38H8z M5.12,3H15.5C16.33,3,17,3.67,17,4.5v10.38l-1.5-1.5V4.5H14v7 c0,0.11-0.04,0.2-0.1,0.28L11,8.88V4.5H9v2.38L5.12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tsunami\": {\n    \"name\": \"tsunami\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.16,17.98c-2.76,1.76-4.67,0.77-5.61,0.08c-0.34-0.24-0.78-0.23-1.12,0.01c-0.97,0.7-2.83,1.65-5.55-0.06 C5.55,17.8,5.13,17.78,4.81,18c-0.91,0.61-1.53,0.85-2,0.94C2.34,19.03,2,19.44,2,19.91v0c0,0.6,0.54,1.09,1.13,0.98 c0.77-0.14,1.51-0.42,2.2-0.83c2.04,1.21,4.63,1.21,6.67,0c2.06,1.22,4.61,1.22,6.67,0c0.69,0.41,1.44,0.69,2.21,0.83 c0.59,0.11,1.13-0.38,1.13-0.98v-0.01c0-0.47-0.33-0.88-0.8-0.97c-0.49-0.1-1.11-0.34-2.02-0.94 C18.88,17.79,18.47,17.78,18.16,17.98z\\\"></path><path d=\\\"M19.33,12H21c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1l-1.61,0c-1.86,0-3.4-1.5-3.39-3.36c0-0.37,0.06-0.7,0.16-1.05 C16.53,4.3,15.6,3.03,14.27,3C14.18,3,14.09,3,14,3C7.36,3,2.15,8.03,2.01,14.5l0,0.03c-0.04,1.13,1.07,1.98,2.14,1.6 c0.4-0.14,0.78-0.32,1.15-0.54c2.08,1.2,4.64,1.22,6.7-0.02c2.06,1.22,4.61,1.22,6.67,0c0.68,0.41,1.42,0.68,2.18,0.82 c0.6,0.11,1.16-0.36,1.16-0.98v-0.01c0-0.46-0.32-0.88-0.78-0.97c-0.49-0.09-1.12-0.33-2.03-0.94c-0.31-0.21-0.73-0.22-1.05-0.01 c-2.73,1.74-4.63,0.77-5.58,0.09c-0.35-0.25-0.81-0.26-1.16-0.01c-0.15,0.11-0.09,0.06-0.32,0.2C10.39,12.82,10,11.7,10,10.5 c0-2.58,1.77-4.74,4.21-5.33C14.08,5.68,14,6.19,14,6.67C14,9.61,16.39,12,19.33,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.75,14.73c-1.47,1.02-2.64,1.05-4.16,0c-0.35-0.24-0.81-0.24-1.16,0c-1.47,1.02-2.64,1.05-4.17,0 c-0.35-0.24-0.81-0.26-1.15-0.01c-0.68,0.48-1.14,0.67-1.51,0.74C2.26,15.52,2,15.81,2,16.16v0.07c0,0.45,0.41,0.78,0.85,0.7 c0.64-0.12,1.26-0.37,1.83-0.75c1.62,1.11,3.7,1.07,5.38,0.05c1.63,1.04,3.65,1.03,5.27-0.04c0.56,0.37,1.16,0.61,1.78,0.74 C17.57,17,18,16.66,18,16.2l0,0c0-0.35-0.24-0.67-0.59-0.74c-0.37-0.07-0.84-0.26-1.52-0.74C15.55,14.47,15.09,14.49,14.75,14.73z\\\"></path><path d=\\\"M16.5,10.5h0.77c0.4,0,0.73-0.33,0.73-0.73V9.73C18,9.33,17.67,9,17.27,9H16.5c-1.6,0-2.9-1.3-2.9-2.9 c0-0.57,0.18-1.31,0.46-1.91l0,0c0.23-0.46-0.06-1.01-0.57-1.08C13,3.04,12.58,3,12.01,3C6.3,3,2,7.08,2,12.5v0.36 c0,0.67,0.64,1.15,1.28,0.96c0.49-0.14,0.96-0.36,1.4-0.65c1.62,1.11,3.7,1.07,5.38,0.05c1.63,1.04,3.65,1.03,5.27-0.04 c0.56,0.37,1.16,0.61,1.78,0.74C17.57,14,18,13.66,18,13.2v0c0-0.35-0.24-0.67-0.59-0.74c-0.37-0.07-0.84-0.26-1.52-0.74 c-0.34-0.24-0.8-0.23-1.15,0.01c-1.46,1.01-2.64,1.05-4.15,0c-0.36-0.25-0.84-0.25-1.19,0.02c-0.03,0.02-0.05,0.04-0.06,0.04 c-0.51-0.77-0.79-1.66-0.79-2.61c0-2.2,1.51-3.92,3.73-4.35c-0.1,0.44-0.17,0.88-0.17,1.27C12.11,8.53,14.08,10.5,16.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports\": {\n    \"name\": \"sports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,6h-9.77C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13l2.76,0C21.56,10,22,9.55,22,9V7C22,6.45,21.55,6,21,6z M4.5,9 C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S12.66,15,11,15z\\\"></path></g><g><circle cx=\\\"11\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.5,6C8.06,6,6.8,6.68,5.98,7.73C5.99,7.66,6,7.58,6,7.5C6,6.67,5.33,6,4.5,6S3,6.67,3,7.5S3.67,9,4.5,9 c0.33,0,0.62-0.11,0.87-0.28C5,9.57,4.88,10.56,5.13,11.59c0.4,1.66,1.77,2.98,3.45,3.32C11.47,15.48,14,13.29,14,10.5 c0-0.08-0.02-0.16-0.02-0.24c0-0.04,0.01-0.09,0.01-0.12C13.93,9.53,14.37,9,14.97,9h2.53C17.78,9,18,8.78,18,8.5v-2 C18,6.22,17.78,6,17.5,6H9.5z M4.5,8C4.22,8,4,7.78,4,7.5C4,7.22,4.22,7,4.5,7S5,7.22,5,7.5C5,7.78,4.78,8,4.5,8z M11.47,12.02 C11.02,12.61,10.31,13,9.5,13C8.12,13,7,11.88,7,10.5c0-1.27,0.95-2.3,2.17-2.47C9.28,8.02,9.39,8,9.5,8c1.38,0,2.5,1.12,2.5,2.5 C12,11.07,11.8,11.6,11.47,12.02z\\\"></path></g><g><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"man\": {\n    \"name\": \"man\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v5c0,0.55,0.45,1,1,1h1v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6h1c0.55,0,1-0.45,1-1V9 C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V12c0,0.55,0.45,1,1,1h0.5v4c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-4H12 c0.55,0,1-0.45,1-1V8.5C13,7.67,12.33,7,11.5,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"tornado\": {\n    \"name\": \"tornado\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20.11,8l1.16-2c0.77-1.33-0.19-3-1.73-3H4.47c-1.54,0-2.5,1.67-1.73,3l1.16,2H20.11z\\\"></path></g><g><path d=\\\"M7.95,15l2.32,4.01c0.77,1.33,2.69,1.33,3.46,0L16.05,15H7.95z\\\"></path></g><g><polygon points=\\\"18.95,10 5.05,10 6.79,13 17.21,13\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16.6,7l1.04-1.73c0.6-1-0.12-2.27-1.29-2.27H3.65C2.48,3,1.76,4.27,2.36,5.27L3.4,7H16.6z\\\"></path></g><g><path d=\\\"M6.7,12.5l2.01,3.36c0.58,0.97,1.99,0.97,2.57,0l2.01-3.36H6.7z\\\"></path></g><g><polygon points=\\\"15.7,8.5 4.3,8.5 5.8,11 14.2,11\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"emoji_events\": {\n    \"name\": \"emoji_events\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5h-2V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v1H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94 c0.63,1.5,1.98,2.63,3.61,2.96V19H8c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-3v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M19,8 c0,1.3-0.84,2.4-2,2.82V7h2V8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M15,6h-2c0-0.55-0.45-1-1-1H8C7.45,5,7,5.45,7,6H5C4.45,6,4,6.45,4,7v1c0,1.66,1.34,3,3,3h0.18 c0.36,1.01,1.24,1.77,2.32,1.95V15h-2C7.22,15,7,15.22,7,15.5C7,15.78,7.22,16,7.5,16h2h1h2c0.28,0,0.5-0.22,0.5-0.5 c0-0.28-0.22-0.5-0.5-0.5h-2v-2.05c1.08-0.18,1.96-0.94,2.32-1.95H13c1.66,0,3-1.34,3-3V7C16,6.45,15.55,6,15,6z M7,10 c-1.1,0-2-0.9-2-2V7h2V10z M15,8c0,1.1-0.9,2-2,2V7h2V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"face_2\": {\n    \"name\": \"face_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.97,13.52c0-0.01,0-0.02,0-0.04C23.21,12.38,24,10.78,24,9c0-3.31-2.69-6-6-6c-0.26,0-0.52,0.02-0.78,0.06 C16.19,1.23,14.24,0,12,0S7.81,1.23,6.78,3.06C6.52,3.02,6.26,3,6,3C2.69,3,0,5.69,0,9c0,1.78,0.79,3.38,2.02,4.48 c0,0.01,0,0.02,0,0.04C0.79,14.62,0,16.22,0,18c0,3.31,2.69,6,6,6c1.39,0,2.67-0.48,3.69-1.28C10.43,22.9,11.2,23,12,23 s1.57-0.1,2.31-0.28C15.33,23.52,16.61,24,18,24c3.31,0,6-2.69,6-6C24,16.22,23.21,14.62,21.97,13.52z M12,21c-4.41,0-8-3.59-8-8 c0-3.72,2.56-6.85,6-7.74c0,0.02,0,0.03,0,0.05c0,3.34,2.72,6.06,6.06,6.06c1.26,0,2.45-0.39,3.45-1.09 C19.82,11.14,20,12.05,20,13C20,17.41,16.41,21,12,21z\\\"></path><circle cx=\\\"9\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.12,11.5c1.13-0.87,1.87-2.22,1.87-3.75c0-2.62-2.13-4.75-4.75-4.75c-0.28,0-0.55,0.04-0.81,0.08 C13.75,1.29,12.03,0,10,0C7.97,0,6.25,1.29,5.57,3.08C5.3,3.04,5.03,3,4.75,3C2.13,3,0,5.13,0,7.75c0,1.53,0.74,2.88,1.87,3.75 C0.74,12.37,0,13.72,0,15.25C0,17.87,2.13,20,4.75,20c1.24,0,2.36-0.49,3.2-1.28C8.6,18.9,9.29,19,10,19 c0.71,0,1.39-0.1,2.05-0.27C12.89,19.51,14,20,15.24,20c2.62,0,4.75-2.13,4.75-4.75C19.99,13.72,19.25,12.37,18.12,11.5z M10,17.5 c-3.58,0-6.5-2.92-6.5-6.5c0-3.26,2.41-5.96,5.55-6.42C9.29,7.05,11.36,9,13.89,9c0.74,0,1.46-0.17,2.11-0.49 c0.32,0.77,0.5,1.61,0.5,2.49C16.5,14.58,13.58,17.5,10,17.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"man_4\": {\n    \"name\": \"man_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.75,7h-3.5C9.04,7,8.11,8.07,8.27,9.26L9.82,20.7c0.1,0.74,0.74,1.3,1.49,1.3h1.38c0.75,0,1.39-0.55,1.49-1.3 l1.56-11.44C15.89,8.07,14.96,7,13.75,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.75,7h-3.5C7.31,7,6.61,7.85,6.77,8.77l1.57,8.42C8.44,17.66,8.85,18,9.33,18h1.34c0.48,0,0.89-0.34,0.98-0.82 l1.57-8.42C13.39,7.85,12.69,7,11.75,7z\\\"></path><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sentiment_very_dissatisfied\": {\n    \"name\": \"sentiment_very_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 13.5c-2.03 0-3.8 1.11-4.75 2.75-.19.33.06.75.44.75h8.62c.38 0 .63-.42.44-.75-.95-1.64-2.72-2.75-4.75-2.75zm-3.65-2.03l.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-.53.53-.53-.53c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l.53.53-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.65-11.71l-.53.53-.53-.53c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l.53.53-.53.53c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.53-.53.53-.53c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0z\\\"></path>\"\n      }\n    }\n  },\n  \"snowshoeing\": {\n    \"name\": \"snowshoeing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S12.5,4.6,12.5,3.5z M20,11.91c0-0.49-0.36-0.9-0.84-0.98 c-1.53-0.25-2.79-1.16-3.47-2.35l-1-1.58c-0.4-0.6-1-1-1.7-1c-0.68,0-1.28,0.28-4.77,1.76C7.49,8.07,7,8.8,7,9.6V12 c0,0.55,0.45,1,1,1s1-0.45,1-1V9.58l1.79-0.7L9.2,17l-2.88,2.03l-1.14-1.47L4,18.5l2.38,3.04c0.51,0.65,1.16,1.15,1.88,1.41 c0.28,0.1,0.53,0.04,0.72-0.11c0.3-0.23,0.42-0.7,0.12-1.07c-0.08-0.1-0.2-0.17-0.31-0.22c-0.43-0.18-0.82-0.45-1.14-0.83l-0.08-0.1 l2.85-2.01c0.38-0.27,0.65-0.66,0.77-1.1l0.7-2.53l2.11,2v4.52h-2V23h3.87c0.82,0,1.61-0.21,2.26-0.61 c0.26-0.16,0.37-0.39,0.37-0.64c0-0.38-0.3-0.75-0.77-0.75c-0.13,0-0.26,0.04-0.37,0.1c-0.4,0.23-0.87,0.37-1.36,0.4l0-5.16 c0-0.55-0.23-1.07-0.62-1.45l-1.49-1.41l0.6-3c1.07,1.24,2.63,2.15,4.37,2.43C19.46,13.01,20,12.52,20,11.91z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.25,3.75C10.25,2.78,11.03,2,12,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C11.04,5.5,10.25,4.72,10.25,3.75z M6.75,11c0.41,0,0.75-0.34,0.75-0.75V8.79l1.65-0.7L8.03,13.8l-1.85,1.34L5.29,14L4.5,14.61l1.82,2.32C6.92,17.71,7.81,18,8.03,18 c0.39,0,0.66-0.47,0.39-0.81c-0.07-0.08-0.16-0.14-0.26-0.17c-0.4-0.11-0.78-0.35-1.06-0.7l1.97-1.42c0.21-0.15,0.35-0.37,0.4-0.62 l0.45-2.3l1.58,1.58V17L10,17v1h3c0.67,0,1.3-0.22,1.8-0.6c0.14-0.11,0.2-0.25,0.2-0.4c0-0.25-0.19-0.5-0.5-0.5 c-0.11,0-0.21,0.04-0.3,0.1C13.87,16.85,13.45,17,13,17v-3.64c0-0.27-0.11-0.52-0.29-0.71l-1.17-1.17l0.49-2.48 c0.75,0.99,1.85,1.7,3.12,1.92C15.59,11,16,10.65,16,10.19c0-0.37-0.28-0.68-0.65-0.73c-2.46-0.28-2.43-2.2-3.46-3.03 c-0.57-0.46-1.35-0.57-2.03-0.28L6.61,7.53C6.24,7.69,6,8.05,6,8.46v1.79C6,10.66,6.34,11,6.75,11z\\\"></path>\"\n      }\n    }\n  },\n  \"scoreboard\": {\n    \"name\": \"scoreboard\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.5,13.5H16v-3h1.5V13.5z M16,2c-0.55,0-1,0.45-1,1v1H9V3c0-0.55-0.45-1-1-1S7,2.45,7,3v1H4C2.9,4,2,4.9,2,6v12 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2h-3V3C17,2.45,16.55,2,16,2z M9.5,14.25C9.5,14.66,9.16,15,8.75,15H6 c-0.55,0-1-0.45-1-1v-1.5c0-0.55,0.45-1,1-1h2v-1H5.75C5.34,10.5,5,10.16,5,9.75S5.34,9,5.75,9H8.5c0.55,0,1,0.45,1,1v1.5 c0,0.55-0.45,1-1,1h-2v1h2.25C9.16,13.5,9.5,13.84,9.5,14.25z M19,14c0,0.55-0.45,1-1,1h-2.5c-0.55,0-1-0.45-1-1v-4 c0-0.55,0.45-1,1-1H18c0.55,0,1,0.45,1,1V14z M12.75,6.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S11.59,6,12,6 S12.75,6.34,12.75,6.75z M12.75,10.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S11.59,9.5,12,9.5S12.75,9.84,12.75,10.25z M12.75,13.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S11.59,13,12,13S12.75,13.34,12.75,13.75z M12.75,17.25 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S11.59,16.5,12,16.5S12.75,16.84,12.75,17.25z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11h-1V9h1V11z M13.25,2.5c-0.41,0-0.75,0.34-0.75,0.75V4h-5V3.25c0-0.41-0.34-0.75-0.75-0.75S6,2.84,6,3.25V4H3.5 C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4H14V3.25 C14,2.84,13.66,2.5,13.25,2.5z M15,11.5c0,0.28-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5v-3C12,8.22,12.22,8,12.5,8h2 C14.78,8,15,8.22,15,8.5V11.5z M10.5,6c0,0.28-0.22,0.5-0.5,0.5S9.5,6.28,9.5,6S9.72,5.5,10,5.5S10.5,5.72,10.5,6z M7.5,8 C7.78,8,8,8.22,8,8.5V10c0,0.28-0.22,0.5-0.5,0.5H6V11h1.5C7.78,11,8,11.22,8,11.5S7.78,12,7.5,12h-2C5.22,12,5,11.78,5,11.5V10 c0-0.28,0.22-0.5,0.5-0.5H7V9H5.5C5.22,9,5,8.78,5,8.5S5.22,8,5.5,8H7.5z M10.5,8.67c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5S10.5,8.39,10.5,8.67z M10.5,11.33c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5 S10.5,11.06,10.5,11.33z M10.5,14c0,0.28-0.22,0.5-0.5,0.5S9.5,14.28,9.5,14s0.22-0.5,0.5-0.5S10.5,13.72,10.5,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"male\": {\n    \"name\": \"male\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,4h-4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1.58l-3.97,3.97C11.73,9.36,10.66,9,9.5,9C6.46,9,4,11.46,4,14.5 C4,17.54,6.46,20,9.5,20s5.5-2.46,5.5-5.5c0-1.16-0.36-2.23-0.97-3.12L18,7.42V9c0,0.55,0.45,1,1,1s1-0.45,1-1V5 C20,4.45,19.55,4,19,4z M9.5,18C7.57,18,6,16.43,6,14.5C6,12.57,7.57,11,9.5,11s3.5,1.57,3.5,3.5C13,16.43,11.43,18,9.5,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,4h-2.75c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75h1.19l-2.76,2.76C9.99,7.78,9.15,7.5,8.25,7.5 C5.9,7.5,4,9.4,4,11.75C4,14.1,5.9,16,8.25,16s4.25-1.9,4.25-4.25c0-0.9-0.28-1.74-0.76-2.43l2.76-2.76v1.19 c0,0.41,0.34,0.75,0.75,0.75S16,8.16,16,7.75V5C16,4.45,15.55,4,15,4z M8.25,14.5c-1.52,0-2.75-1.23-2.75-2.75S6.73,9,8.25,9 S11,10.23,11,11.75S9.77,14.5,8.25,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flood\": {\n    \"name\": \"flood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.67,19c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1 c-1.54,0-1.96,0.62-2.67,0.88C2.27,20.03,2,20.4,2,20.83v0c0,0.71,0.72,1.19,1.38,0.94C4.15,21.48,4.49,21,5.34,21 c1.24,0,1.38,1,3.33,1c1.95,0,2.1-1,3.34-1c1.22,0,1.4,1,3.33,1c1.93,0,2.1-1,3.33-1c0.84,0,1.18,0.47,1.95,0.77 c0.66,0.26,1.38-0.23,1.38-0.94v-0.01c0-0.42-0.27-0.8-0.67-0.94C20.62,19.62,20.21,19,18.67,19z\\\"></path><path d=\\\"M8.68,17.5c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c0.82,0,1.17,0.46,1.93,0.76 c0.66,0.26,1.38-0.23,1.38-0.94v0c0-0.42-0.26-0.79-0.65-0.94c-0.29-0.11-0.54-0.27-0.83-0.43l-2.02-7.53l1.17,0.47 c0.51,0.21,1.09-0.04,1.29-0.55v0c0.21-0.51-0.05-1.1-0.57-1.29l-9.24-3.54c-0.81-0.31-1.72-0.06-2.27,0.61l-6.23,7.7 c-0.35,0.43-0.28,1.06,0.16,1.4l0,0c0.43,0.34,1.06,0.26,1.39-0.17l0.78-1l0.93,3.48c-0.18-0.02-0.35-0.05-0.56-0.05 c-1.54,0-1.95,0.62-2.66,0.88C2.27,15.53,2,15.91,2,16.33v0c0,0.7,0.69,1.19,1.35,0.95c0.8-0.29,1.18-0.78,2-0.78 C6.54,16.5,6.77,17.5,8.68,17.5z M14.04,10.18l1.42,5.31c-1.34,0.09-1.47-0.99-3.47-0.99c-0.36,0-0.65,0.04-0.91,0.1l-0.91-3.39 L14.04,10.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.47,16.41c-0.57-0.21-0.9-0.71-2.13-0.71c-1.56,0-1.67,0.8-2.66,0.8c-0.96,0-1.13-0.8-2.66-0.8 c-1.56,0-1.68,0.8-2.67,0.8c-1,0-1.1-0.8-2.66-0.8c-1.23,0-1.57,0.5-2.14,0.71C2.22,16.52,2,16.8,2,17.13 c0,0.52,0.52,0.89,1.01,0.72c0.68-0.23,0.95-0.65,1.66-0.65c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8 c0.96,0,1.13,0.8,2.66,0.8c1.55,0,1.68-0.8,2.66-0.8c0.69,0,0.97,0.42,1.66,0.65c0.49,0.17,1.01-0.2,1.01-0.72 C18,16.8,17.78,16.52,17.47,16.41z\\\"></path><path d=\\\"M3.01,14.85c0.68-0.23,0.95-0.65,1.66-0.65c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8 c1.55,0,1.68-0.8,2.66-0.8c0.75,0,0.83,0.5,1.8,0.71c0.45,0.1,0.87-0.26,0.87-0.72c0-0.34-0.23-0.61-0.53-0.71 c0,0-1.85-6.88-1.85-6.88l0.58,0.23c0.38,0.15,0.82-0.03,0.98-0.42v0c0.15-0.38-0.03-0.82-0.42-0.98L8.87,2.28 C8.46,2.11,7.99,2.24,7.71,2.59L2.46,9.28c-0.26,0.33-0.2,0.8,0.13,1.05c0.33,0.26,0.8,0.2,1.05-0.13l0.39-0.49l0.8,3 c-0.06,0-0.1-0.01-0.16-0.01c-1.23,0-1.57,0.5-2.14,0.71C2.22,13.52,2,13.8,2,14.13C2,14.65,2.52,15.02,3.01,14.85z M12.05,8.73 l1.24,4.65c-1.28,0.56-1.53-0.67-3.28-0.67c-0.43,0-0.74,0.06-1,0.15L8.18,9.76L12.05,8.73z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kitesurfing\": {\n    \"name\": \"kitesurfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M6,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S6,4.1,6,3z M16.03,3.97c0.29,0.29,0.77,0.29,1.06,0L20.06,1h-2.12 l-1.91,1.91C15.74,3.2,15.74,3.68,16.03,3.97z M19.15,12c-1.29,0-3.11,0.53-5.06,1.38L13,12.16c-0.38-0.42-0.92-0.66-1.49-0.66H9.6 l0-3.5H11c1.52,0,2.94-0.49,4.09-1.32c0.49-0.35,0.52-1.07,0.09-1.5c-0.35-0.35-0.9-0.38-1.3-0.09C13.06,5.66,12.07,6,11,6H8 C6.9,6,6,6.9,6,8v4.04c0,0.64,0.15,1.27,0.45,1.83L8,16.84c-0.53,0.38-1.03,0.78-1.49,1.17C7.19,18.59,8.06,19,9,19 c1.2,0,2.27-0.66,3-1.5c0.73,0.84,1.8,1.5,3,1.5c0.33,0,0.65-0.05,0.96-0.14C18.81,16.9,21,14.72,21,13.28 C21,12.25,19.99,12,19.15,12z M9.83,15.61L9,13.6l2.5-0.1l0.7,0.77C11.64,14.55,10.42,15.23,9.83,15.61z M22,22c0-0.55-0.45-1-1-1 h0c-0.87,0-1.73-0.24-2.53-0.7c-0.29-0.16-0.65-0.17-0.94,0c-1.59,0.9-3.47,0.9-5.06,0c-0.29-0.16-0.65-0.16-0.94,0 c-1.59,0.9-3.47,0.9-5.06,0c-0.29-0.16-0.65-0.16-0.94,0C4.73,20.76,3.87,21,3,21h0c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h0 c1.15,0,2.3-0.31,3.33-0.94c1.66,1.11,3.78,1.01,5.58,0.14c1.91,1.05,4.17,1.07,6.09,0.05h0c0.95,0.5,1.97,0.75,3,0.75h0 C21.55,23,22,22.55,22,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5,18.4c-0.7,0.36-1.46,0.55-2.22,0.59C2.39,19.01,2,18.7,2,18.24c0-0.39,0.3-0.72,0.71-0.75c0.68-0.04,1.36-0.29,1.98-0.75 c0.18-0.14,0.43-0.14,0.61,0c1.37,1.01,3.02,1.01,4.39,0c0.19-0.14,0.43-0.14,0.61,0c1.37,1.01,3.02,1,4.39,0 c0.18-0.14,0.43-0.14,0.61,0c0.62,0.46,1.3,0.7,1.98,0.75C17.7,17.52,18,17.85,18,18.24c0,0.46-0.39,0.77-0.78,0.75 c-0.76-0.04-1.52-0.24-2.22-0.59c-1.57,0.8-3.43,0.8-5,0C8.43,19.2,6.57,19.2,5,18.4z M8.26,3c0,0.97-0.78,1.75-1.75,1.75 S4.76,3.97,4.76,3s0.78-1.75,1.75-1.75S8.26,2.03,8.26,3z M12.76,3.87c0.2,0.2,0.51,0.2,0.71,0L16.33,1h-1.41l-2.16,2.16 C12.57,3.35,12.57,3.67,12.76,3.87z M15.52,10c-1.1,0-2.7,0.49-4.39,1.25l-0.83-0.92C10.11,10.12,9.84,10,9.56,10H8V7h1 c1.21,0,2.33-0.43,3.19-1.15c0.34-0.28,0.35-0.8,0.04-1.11c-0.28-0.28-0.71-0.29-1.01-0.04C10.62,5.2,9.84,5.5,9,5.5H6.5 C5.67,5.5,5,6.17,5,7v1.46v2.06c0,0.32,0.07,0.63,0.22,0.91l1.28,2.52c-0.42,0.31-0.83,0.63-1.19,0.94c0,0,0.03,0.02,0.06,0.05 C5.94,15.56,6.68,16,7.5,16c0.82,0,1.56-0.44,2.14-1.06c0.2-0.21,0.53-0.21,0.72,0c0.51,0.55,1.15,0.96,1.86,1.04 C14.85,14.3,17,12.3,17,11.02C17,10.2,16.19,10,15.52,10z M7.88,13L7.3,11.5h2.03l0.39,0.44C9.24,12.19,8.36,12.69,7.88,13z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_neutral\": {\n    \"name\": \"sentiment_neutral\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.75 15.5h4.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75h-4.5c-.41 0-.75.34-.75.75s.34.75.75.75z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"water_drop\": {\n    \"name\": \"water_drop\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.66,2.58c-0.38-0.33-0.95-0.33-1.33,0C6.45,6.88,4,10.62,4,13.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2 C20,10.62,17.55,6.88,12.66,2.58z M7.83,14c0.37,0,0.67,0.26,0.74,0.62c0.41,2.22,2.28,2.98,3.64,2.87 c0.43-0.02,0.79,0.32,0.79,0.75c0,0.4-0.32,0.73-0.72,0.75c-2.13,0.13-4.62-1.09-5.19-4.12C7.01,14.42,7.37,14,7.83,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.65,2.55c-0.38-0.33-0.93-0.33-1.31,0C7.7,4,3.5,8.01,3.5,11.5c0,3.59,2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5 C16.5,8.01,12.3,4,10.65,2.55z M7.03,11.93c0.24,1.66,1.79,2.77,3.4,2.54c0.3-0.04,0.57,0.19,0.57,0.49c0,0.28-0.2,0.47-0.42,0.5 c-2.23,0.31-4.22-1.23-4.54-3.39C6,11.77,6.23,11.5,6.54,11.5C6.79,11.5,7,11.68,7.03,11.93z\\\"></path>\"\n      }\n    }\n  },\n  \"co2\": {\n    \"name\": \"co2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-4C15,9.45,14.55,9,14,9z M13.5,13.5h-2v-3h2V13.5z M20.5,15.5h-2v1h2.25c0.41,0,0.75,0.34,0.75,0.75l0,0c0,0.41-0.34,0.75-0.75,0.75H18c-0.55,0-1-0.45-1-1v-1.5c0-0.55,0.45-1,1-1h2 v-1h-2.25c-0.41,0-0.75-0.34-0.75-0.75v0c0-0.41,0.34-0.75,0.75-0.75h2.75c0.55,0,1,0.45,1,1v1.5C21.5,15.05,21.05,15.5,20.5,15.5z M8,14c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v0.25C8,10.66,7.66,11,7.25,11 c-0.33,0-0.6-0.21-0.71-0.5c0,0-2.04,0-2.04,0v3l2.04,0c0.1-0.29,0.38-0.5,0.71-0.5C7.66,13,8,13.34,8,13.75V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,8h-2C9.22,8,9,8.22,9,8.5v3C9,11.78,9.22,12,9.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C12,8.22,11.78,8,11.5,8z M11,11h-1 V9h1V11z M16.5,14h-2c-0.28,0-0.5-0.22-0.5-0.5V12c0-0.28,0.22-0.5,0.5-0.5H16V11h-1.5c-0.28,0-0.5-0.22-0.5-0.5v0 c0-0.28,0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5V12c0,0.28-0.22,0.5-0.5,0.5H15V13h1.5c0.28,0,0.5,0.22,0.5,0.5v0 C17,13.78,16.78,14,16.5,14z M7,8.83c0,0.28-0.22,0.5-0.5,0.5C6.28,9.33,6.1,9.19,6.03,9H5v2l1.03,0c0.07-0.2,0.25-0.34,0.47-0.34 c0.28,0,0.5,0.22,0.5,0.5v0.17C7,11.7,6.7,12,6.34,12H4.67C4.3,12,4,11.7,4,11.34V8.67C4,8.3,4.3,8,4.67,8h1.66C6.7,8,7,8.3,7,8.67 V8.83z\\\"></path>\"\n      }\n    }\n  },\n  \"sign_language\": {\n    \"name\": \"sign_language\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.49,13l-0.93-1.86c-0.37-0.74-0.07-1.64,0.67-2.01l0,0c0.16-0.08,0.34-0.05,0.47,0.07l5.53,5.26 c0.5,0.47,0.78,1.13,0.78,1.81v5.23c0,1.38-1.12,2.5-2.5,2.5h-11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H10v-1H4c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1h6v-1H3c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h7v-1H4.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H12.49z M11.78,7.12c-0.84,0.4-1.17,0.62-1.63,1.19l-2.7-2.85c-0.38-0.4-0.36-1.03,0.04-1.41c0.4-0.38,1.03-0.36,1.41,0.04L11.78,7.12z M9.64,9.21C9.41,9.76,9.35,10.45,9.44,11H8.58L6.31,8.61C5.93,8.21,5.94,7.58,6.35,7.2c0.4-0.38,1.03-0.36,1.41,0.04L9.64,9.21z M20.33,13.91l0.88-0.83c0.5-0.47,0.79-1.13,0.79-1.82V3.64c0-0.17-0.11-0.33-0.27-0.39l0,0c-0.78-0.28-1.64,0.12-1.92,0.9 L19.1,6.11l-5.5-5.8c-0.38-0.4-1.01-0.42-1.41-0.04c-0.4,0.38-0.42,1.01-0.04,1.41l3.79,3.99l-0.73,0.69l-4.82-5.08 c-0.38-0.4-1.01-0.42-1.41-0.04c-0.4,0.38-0.42,1.01-0.04,1.41l3.78,3.98L15.38,9l3.61,3.43l0.61,0.58 C19.89,13.28,20.13,13.58,20.33,13.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.88,12.05c0.4,0.38,0.62,0.9,0.62,1.45V17c0,1.1-0.9,2-2,2H5.12c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75H8.5v-0.75H4c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h4.5V14.5H3.25 c-0.41,0-0.75-0.34-0.75-0.75C2.5,13.34,2.84,13,3.25,13H8.5v-0.75H4.38c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 h5.99l-0.7-1.39c-0.28-0.56-0.05-1.23,0.5-1.51c0.12-0.06,0.26-0.04,0.35,0.05L14.88,12.05z M9.84,6.34 C9.21,6.64,8.96,6.8,8.61,7.23L6.59,5.09C6.3,4.79,6.32,4.32,6.62,4.03c0.3-0.29,0.78-0.27,1.06,0.03L9.84,6.34z M8.23,7.91 C8.06,8.32,8.01,8.84,8.08,9.25H7.43l-1.7-1.79C5.45,7.16,5.46,6.68,5.76,6.4c0.3-0.29,0.78-0.27,1.06,0.03L8.23,7.91z M15.86,4.12 l-0.53,1.46L11.2,1.23c-0.29-0.3-0.76-0.31-1.06-0.03c-0.3,0.29-0.31,0.76-0.03,1.06l2.84,2.99l-0.54,0.52L8.79,1.97 c-0.29-0.3-0.76-0.31-1.06-0.03C7.43,2.22,7.42,2.7,7.7,3l2.83,2.99l4.7,4.68l0.46,0.44c0.21,0.2,0.39,0.43,0.55,0.68l0.62-0.58 c0.4-0.38,0.63-0.91,0.63-1.46V3.73c0-0.13-0.08-0.25-0.2-0.29C16.71,3.23,16.07,3.53,15.86,4.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people\": {\n    \"name\": \"people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"outdoor_grill\": {\n    \"name\": \"outdoor_grill\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93c2.1-0.95,3.64-2.9,4.02-5.24C19.01,8.54,18.52,8,17.92,8 C15.31,8,8.69,8,6.08,8C5.48,8,4.99,8.54,5.09,9.14c0.38,2.34,1.93,4.29,4.02,5.24l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0 c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C16,18.45,16.45,18,17,18z\\\"></path><path d=\\\"M9.5,6.47C9.48,6.75,9.68,7,9.96,7H10c0.24,0,0.44-0.18,0.46-0.42c0.1-0.87,0.04-1.39-0.94-2.54 C9.16,3.61,8.92,3.35,8.99,2.49C9.02,2.23,8.8,2,8.53,2H8.48C8.24,2,8.03,2.19,8.01,2.43c-0.08,0.93,0.2,1.74,0.95,2.53 C9.15,5.17,9.6,5.52,9.5,6.47z\\\"></path><path d=\\\"M11.99,6.47C11.96,6.75,12.17,7,12.45,7h0.03c0.24,0,0.44-0.18,0.46-0.42c0.1-0.87,0.04-1.39-0.94-2.54 c-0.36-0.43-0.61-0.69-0.53-1.55C11.5,2.23,11.28,2,11.01,2h-0.05c-0.24,0-0.45,0.19-0.47,0.43c-0.08,0.93,0.2,1.74,0.95,2.53 C11.63,5.17,12.08,5.52,11.99,6.47z\\\"></path><path d=\\\"M14.5,6.47C14.48,6.75,14.68,7,14.96,7H15c0.24,0,0.44-0.18,0.46-0.42c0.1-0.87,0.04-1.39-0.94-2.54 c-0.36-0.43-0.61-0.69-0.53-1.55C14.02,2.23,13.8,2,13.53,2h-0.05c-0.24,0-0.45,0.19-0.47,0.43c-0.08,0.93,0.2,1.74,0.95,2.53 C14.15,5.17,14.6,5.52,14.5,6.47z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.66,13.88c-0.14-0.21-0.33-0.4-0.54-0.54C14.8,13.13,14.41,13,14,13s-0.8,0.13-1.12,0.34 c-0.21,0.14-0.4,0.33-0.54,0.54c-0.03,0.04-0.04,0.08-0.06,0.12H7.72l1.36-2.09C9.38,11.97,9.69,12,10,12 c0.31,0,0.62-0.03,0.92-0.09l0.77,1.19c0.22-0.26,0.47-0.49,0.76-0.66l-0.54-0.83c1.64-0.68,2.84-2.2,3.05-4.03 C15,7.27,14.78,7,14.47,7H5.53C5.22,7,5,7.27,5.03,7.58c0.21,1.83,1.41,3.35,3.05,4.03l-3,4.62C4.93,16.46,5,16.77,5.23,16.92 c0.23,0.15,0.54,0.08,0.69-0.15L7.07,15H12c0,1.1,0.9,2,2,2s2-0.9,2-2C16,14.59,15.87,14.2,15.66,13.88z M14,16 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,15.55,14.55,16,14,16z\\\"></path><path d=\\\"M8.7,5.72C8.68,5.87,8.79,6,8.94,6c0.12,0,0.23-0.09,0.24-0.22c0.06-0.54,0.04-0.85-0.56-1.56C8.4,3.96,8.25,3.8,8.3,3.26 C8.32,3.12,8.2,3,8.06,3H8.05C7.93,3,7.82,3.1,7.81,3.22C7.75,3.8,7.92,4.29,8.37,4.78C8.49,4.9,8.77,5.12,8.7,5.72z\\\"></path><path d=\\\"M10.2,5.72C10.18,5.87,10.29,6,10.44,6c0.12,0,0.23-0.09,0.24-0.22c0.06-0.54,0.04-0.85-0.56-1.56 C9.9,3.96,9.75,3.8,9.8,3.26C9.82,3.12,9.7,3,9.56,3H9.55C9.43,3,9.32,3.1,9.31,3.22C9.25,3.8,9.42,4.29,9.87,4.78 C9.99,4.9,10.27,5.12,10.2,5.72z\\\"></path><path d=\\\"M11.7,5.72C11.68,5.87,11.79,6,11.94,6c0.12,0,0.23-0.09,0.24-0.22c0.06-0.54,0.04-0.85-0.56-1.56 C11.4,3.96,11.25,3.8,11.3,3.26C11.32,3.12,11.2,3,11.06,3h-0.01c-0.13,0-0.23,0.1-0.24,0.22c-0.06,0.57,0.11,1.07,0.56,1.56 C11.49,4.9,11.77,5.12,11.7,5.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_flags\": {\n    \"name\": \"emoji_flags\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M19,9h-5l-0.72-1.45C13.11,7.21,12.76,7,12.38,7H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4 c0,0.74,0.4,1.38,1,1.72V20c0,0.55,0.45,1,1,1s1-0.45,1-1v-3h5l0.72,1.45c0.17,0.34,0.52,0.55,0.89,0.55H19c0.55,0,1-0.45,1-1v-8 C20,9.45,19.55,9,19,9z M18,17h-4l-1-2H7V9h5l1,2h5V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M14.5,8H12l-0.85-0.85C11.05,7.05,10.93,7,10.79,7H7V5.85C7.29,5.67,7.5,5.37,7.5,5c0-0.55-0.45-1-1-1s-1,0.45-1,1 c0,0.37,0.21,0.67,0.5,0.85v9.65C6,15.78,6.22,16,6.5,16S7,15.78,7,15.5V13h3l0.85,0.85c0.09,0.09,0.22,0.15,0.35,0.15h3.29 c0.28,0,0.5-0.22,0.5-0.5v-5C15,8.22,14.78,8,14.5,8z M14,13h-2.59l-1-1H7V8h3.59l1,1H14V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snowboarding\": {\n    \"name\": \"snowboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S14,4.1,14,3z M6.35,9.53c0.47,0.29,1.09,0.15,1.38-0.32L9.1,7h2.35 l-2.51,3.99c-0.28,0.45-0.37,1-0.25,1.52L9.5,16L6,18.35l-0.47-0.1c-0.96-0.2-1.71-0.85-2.1-1.67c-0.1-0.21-0.28-0.37-0.51-0.42 c-0.43-0.09-0.82,0.2-0.9,0.58C1.98,16.88,2,17.05,2.07,17.2c0.58,1.24,1.71,2.2,3.15,2.51l12.63,2.69c1.44,0.31,2.86-0.11,3.9-1.01 c0.13-0.11,0.21-0.26,0.24-0.41c0.08-0.38-0.16-0.8-0.59-0.89c-0.23-0.05-0.46,0.02-0.64,0.17c-0.69,0.6-1.64,0.88-2.6,0.67 L17,20.69l-0.88-5.43c-0.08-0.49-0.34-0.93-0.72-1.24l-2.72-2.19l1.8-2.89c0.96,1.53,2.54,2.64,4.39,2.96c0.6,0.11,1.13-0.39,1.13-1 c0-0.48-0.35-0.89-0.83-0.98c-1.49-0.28-2.72-1.29-3.3-2.64l-0.52-1.21C15.16,5.64,14.61,5,13.7,5H9.11c-0.69,0-1.33,0.36-1.7,0.94 L6.03,8.15C5.74,8.62,5.88,9.24,6.35,9.53z M8.73,18.93l2.25-1.51c0.47-0.32,0.73-0.88,0.65-1.44l-0.32-2.4l2.84,2.02l0.75,4.64 L8.73,18.93z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M12.75,4.5c0.96,0,1.75-0.78,1.75-1.75C14.5,1.78,13.72,1,12.75,1S11,1.78,11,2.75C11,3.72,11.79,4.5,12.75,4.5z M16.5,9.68c0-0.36-0.26-0.68-0.62-0.73c-1.2-0.19-2.24-0.91-2.83-1.92L12.3,5.76C12.11,5.43,11.68,5,11,5H7.04 C6.7,5,6.39,5.17,6.2,5.45L4.91,7.38c-0.23,0.35-0.14,0.81,0.2,1.06C5.47,8.69,5.97,8.59,6.2,8.22L7.3,6.5h1.93L7.48,9.32 c-0.3,0.48-0.38,1.07-0.22,1.61L8,13.5l-2.75,1.83l-0.66-0.14c-0.72-0.15-1.3-0.61-1.65-1.2c-0.07-0.12-0.19-0.21-0.34-0.24 c-0.29-0.06-0.54,0.13-0.59,0.38c-0.03,0.11,0,0.25,0.06,0.36c0.36,0.63,1.09,1.42,2.31,1.68l8.89,1.89L15,18.42 c1.29,0.27,2.3-0.23,2.79-0.59c0.11-0.08,0.17-0.19,0.2-0.31c0.05-0.25-0.09-0.53-0.39-0.59c-0.14-0.03-0.29,0-0.41,0.09 c-0.55,0.4-1.27,0.58-1.99,0.43L14,17.19l-0.93-4.52c-0.05-0.24-0.18-0.45-0.37-0.59l-2.3-1.77l1.46-2.35 c0.83,1.3,2.19,2.23,3.77,2.48C16.09,10.5,16.5,10.14,16.5,9.68z M7.3,15.76l1.91-1.26c0.33-0.22,0.5-0.61,0.43-1l-0.34-2 l2.34,1.65l0.76,3.7L7.3,15.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wallet\": {\n    \"name\": \"wallet\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,4H6C3.79,4,2,5.79,2,8v8c0,2.21,1.79,4,4,4h12c2.21,0,4-1.79,4-4V8C22,5.79,20.21,4,18,4z M16.14,13.77 c-0.24,0.2-0.57,0.28-0.88,0.2L4.15,11.25C4.45,10.52,5.16,10,6,10h12c0.67,0,1.26,0.34,1.63,0.84L16.14,13.77z M6,6h12 c1.1,0,2,0.9,2,2v0.55C19.41,8.21,18.73,8,18,8H6C5.27,8,4.59,8.21,4,8.55V8C4,6.9,4.9,6,6,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,4H5C3.34,4,2,5.34,2,7v6c0,1.66,1.34,3,3,3h10c1.66,0,3-1.34,3-3V7C18,5.34,16.66,4,15,4z M13.3,11.33 c-0.18,0.15-0.43,0.21-0.66,0.15L3.69,9.29C3.94,8.82,4.43,8.5,5,8.5h10c0.43,0,0.82,0.19,1.1,0.49L13.3,11.33z M16.5,7.42 C16.06,7.16,15.55,7,15,7H5C4.45,7,3.94,7.16,3.5,7.42V7c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5V7.42z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_3\": {\n    \"name\": \"person_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22L4,18c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2l0-0.78C20,16.1,19.39,15.07,18.39,14.56z\\\"></path></g><g><path d=\\\"M10,12c0.17,0,3.83,0,4,0c1.66,0,3-1.34,3-3c0-0.73-0.27-1.4-0.71-1.92C16.42,6.75,16.5,6.38,16.5,6 c0-1.25-0.77-2.32-1.86-2.77C14,2.48,13.06,2,12,2s-2,0.48-2.64,1.23C8.27,3.68,7.5,4.75,7.5,6c0,0.38,0.08,0.75,0.21,1.08 C7.27,7.6,7,8.27,7,9C7,10.66,8.34,12,10,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.4,10c0.14,0,3.06,0,3.2,0c1.33,0,2.4-1.07,2.4-2.4c0-0.59-0.22-1.12-0.57-1.53c0.1-0.27,0.17-0.56,0.17-0.87 c0-1-0.61-1.86-1.49-2.22C11.6,2.39,10.85,2,10,2S8.4,2.39,7.89,2.98C7.01,3.34,6.4,4.2,6.4,5.2c0,0.31,0.06,0.6,0.17,0.87 C6.22,6.48,6,7.01,6,7.6C6,8.93,7.07,10,8.4,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.73,4,13.39,4,14.09l0,0.41C4,15.33,4.67,16,5.5,16h9 c0.83,0,1.5-0.67,1.5-1.5l0-0.41C16,13.39,15.64,12.73,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"construction\": {\n    \"name\": \"construction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.99,17.99l-4.94-4.94l-2.12,2.12l4.94,4.94c0.59,0.59,1.54,0.59,2.12,0C21.57,19.52,21.57,18.57,20.99,17.99z\\\"></path><path d=\\\"M17.65,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7l-1.49-1.49l2.7-2.7C18.77,3.16,18.23,3,17.65,3 c-1.93,0-3.5,1.57-3.5,3.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0,0c0.39-0.39,0.39-1.02,0-1.41l-0.71-0.71l2.12-2.12 c-1.17-1.17-3.07-1.17-4.24,0L5.08,6.32c-0.39,0.39-0.39,1.02,0,1.41l0.71,0.71H3.25c-0.19,0-0.37,0.07-0.5,0.21 c-0.28,0.28-0.28,0.72,0,1l2.54,2.54c0.28,0.28,0.72,0.28,1,0c0.13-0.13,0.21-0.31,0.21-0.5V9.15L7.2,9.85 c0.39,0.39,1.02,0.39,1.41,0l1.78,1.78l-6.35,6.35c-0.59,0.59-0.59,1.54,0,2.12v0c0.59,0.59,1.54,0.59,2.12,0L16.48,9.79 C16.85,9.92,17.24,10,17.65,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.4,12.13l3.18,3.18c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-3.18-3.18L11.4,12.13z\\\"></path><path d=\\\"M15.19,8.78c0.74-0.31,1.3-0.96,1.48-1.74c0.16-0.72,0-1.4-0.35-1.94l-2.08,2.08l-0.71-0.71l2.08-2.08 c-0.54-0.35-1.21-0.51-1.93-0.35c-0.78,0.17-1.43,0.74-1.74,1.47c-0.29,0.68-0.24,1.32-0.02,1.88L10.69,8.6L9.63,7.54l0.35-0.35 c0.2-0.2,0.2-0.51,0-0.71L8.93,5.42L10.34,4C9.56,3.22,8.29,3.22,7.51,4L5.04,6.48c-0.2,0.2-0.2,0.51,0,0.71l0.71,0.71l-2.22,0 c-0.22,0-0.33,0.27-0.18,0.43l2.68,2.68c0.16,0.16,0.43,0.05,0.43-0.18L6.46,8.6l0.7,0.7c0.2,0.2,0.51,0.2,0.71,0l0.35-0.35 l1.06,1.06L5.39,13.9C5,14.29,5,14.93,5.39,15.32l0,0c0.39,0.39,1.02,0.39,1.41,0l6.52-6.52C13.87,9.02,14.51,9.06,15.19,8.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"elderly\": {\n    \"name\": \"elderly\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S11.5,4.6,11.5,3.5z M18.53,11c-1.57,0.01-2.94-0.9-3.6-2.21 l-0.79-1.67l0,0c-0.17-0.35-0.44-0.65-0.8-0.85c-0.62-0.36-1.35-0.34-1.94-0.03l0-0.01L7.01,8.73C6.39,9.08,6,9.74,6,10.46V13 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2.54l1.5-0.85C9.18,10.71,9,11.85,9,13v5.33L7,21c-0.33,0.44-0.24,1.07,0.2,1.4 c0.44,0.33,1.07,0.24,1.4-0.2l2.04-2.72c0.23-0.31,0.37-0.69,0.4-1.08l0.18-2.94L13,18v4c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1 v-4.87c0-0.41-0.13-0.81-0.36-1.15l-1.6-2.29c0,0,0,0,0-0.01c-0.11-1.16,0.07-2.32,0.46-3.4c0.81,1.23,2.05,2.14,3.51,2.52v0.03V13 c0,0.28,0.22,0.5,0.5,0.5S18,13.28,18,13v-0.16V12.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5v10c0,0.28,0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5v-10C20,11.68,19.34,10.99,18.53,11z\\\"></path>\"\n      }\n    }\n  },\n  \"face_5\": {\n    \"name\": \"face_5\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-1.12,0.23-2.18,0.65-3.15C4.74,8.94,4.86,9,5,9c0.28,0,0.5-0.22,0.5-0.5c0-0.25-0.19-0.45-0.43-0.49 c0.15-0.26,0.32-0.51,0.49-0.75C5.53,7.34,5.5,7.41,5.5,7.5C5.5,7.78,5.72,8,6,8s0.5-0.22,0.5-0.5C6.5,7.22,6.28,7,6,7 C5.87,7,5.75,7.05,5.66,7.13c0.52-0.68,1.15-1.28,1.86-1.76C7.51,5.41,7.5,5.45,7.5,5.5C7.5,5.78,7.72,6,8,6s0.5-0.22,0.5-0.5 c0-0.24-0.17-0.43-0.4-0.48c0.16-0.09,0.32-0.17,0.49-0.25C8.68,4.91,8.83,5,9,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.03-0.01-0.06-0.02-0.09c0.39-0.13,0.79-0.23,1.21-0.3C10.58,4.21,10.5,4.34,10.5,4.5C10.5,4.78,10.72,5,11,5 s0.5-0.22,0.5-0.5c0-0.21-0.13-0.38-0.3-0.46C11.46,4.01,11.73,4,12,4s0.54,0.01,0.8,0.04c-0.18,0.08-0.3,0.25-0.3,0.46 C12.5,4.78,12.72,5,13,5s0.5-0.22,0.5-0.5c0-0.16-0.08-0.29-0.19-0.38c0.41,0.07,0.82,0.17,1.21,0.3 C14.51,4.44,14.5,4.47,14.5,4.5C14.5,4.78,14.72,5,15,5c0.17,0,0.32-0.09,0.41-0.23c0.17,0.08,0.33,0.16,0.49,0.25 c-0.23,0.05-0.4,0.24-0.4,0.48C15.5,5.78,15.72,6,16,6s0.5-0.22,0.5-0.5c0-0.05-0.01-0.09-0.03-0.13 c0.71,0.48,1.34,1.08,1.86,1.76C18.25,7.05,18.13,7,18,7c-0.28,0-0.5,0.22-0.5,0.5C17.5,7.78,17.72,8,18,8s0.5-0.22,0.5-0.5 c0-0.09-0.03-0.16-0.07-0.23c0.18,0.24,0.34,0.49,0.49,0.75C18.69,8.05,18.5,8.25,18.5,8.5C18.5,8.78,18.72,9,19,9 c0.14,0,0.26-0.06,0.35-0.15C19.77,9.82,20,10.88,20,12C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"16\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.71,0.12-1.39,0.33-2.03C3.88,7.99,3.94,8,4,8c0.28,0,0.5-0.22,0.5-0.5c0-0.2-0.12-0.37-0.29-0.45 C4.3,6.88,4.4,6.71,4.51,6.54C4.53,6.8,4.74,7,5,7c0.28,0,0.5-0.22,0.5-0.5C5.5,6.22,5.28,6,5,6C4.95,6,4.91,6.01,4.87,6.03 c0.22-0.28,0.45-0.54,0.71-0.77C5.53,5.33,5.5,5.41,5.5,5.5C5.5,5.78,5.72,6,6,6s0.5-0.22,0.5-0.5C6.5,5.22,6.28,5,6,5 C5.93,5,5.87,5.01,5.81,5.04c0.22-0.19,0.45-0.35,0.7-0.51C6.52,4.79,6.73,5,7,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.17-0.09-0.31-0.21-0.4c0.15-0.07,0.3-0.13,0.45-0.19C7.81,3.96,7.9,4,8,4c0.21,0,0.39-0.13,0.46-0.31 C8.8,3.61,9.15,3.55,9.51,3.53C9.52,3.79,9.73,4,10,4s0.48-0.21,0.49-0.47c0.36,0.03,0.71,0.08,1.04,0.17C11.61,3.87,11.79,4,12,4 c0.1,0,0.19-0.04,0.26-0.09c0.15,0.06,0.3,0.12,0.45,0.19c-0.13,0.09-0.21,0.23-0.21,0.4C12.5,4.78,12.72,5,13,5 c0.27,0,0.48-0.21,0.49-0.47c0.24,0.16,0.48,0.32,0.7,0.51C14.13,5.01,14.07,5,14,5c-0.28,0-0.5,0.22-0.5,0.5 C13.5,5.78,13.72,6,14,6s0.5-0.22,0.5-0.5c0-0.09-0.03-0.17-0.08-0.25c0.26,0.24,0.49,0.5,0.71,0.77C15.09,6.01,15.05,6,15,6 c-0.28,0-0.5,0.22-0.5,0.5C14.5,6.78,14.72,7,15,7c0.26,0,0.47-0.2,0.49-0.46c0.11,0.17,0.2,0.34,0.29,0.51 C15.62,7.13,15.5,7.3,15.5,7.5C15.5,7.78,15.72,8,16,8c0.06,0,0.12-0.01,0.17-0.03C16.38,8.61,16.5,9.29,16.5,10 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sports_esports\": {\n    \"name\": \"sports_esports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M11,11H9v2H8v-2H6v-1h2V8h1v2h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.82,13.55l-0.62-5.76C15.08,6.77,14.23,6,13.21,6H6.79C5.77,6,4.92,6.77,4.81,7.78l-0.62,5.76 C4.09,14.32,4.69,15,5.46,15c0.34,0,0.67-0.14,0.91-0.38L8,13h4l1.62,1.62c0.24,0.24,0.57,0.38,0.91,0.38 C15.31,15,15.91,14.32,15.82,13.55z M9.25,9.75H8V11H7.5V9.75H6.25v-0.5H7.5V8H8v1.25h1.25V9.75z M11.5,9C11.22,9,11,8.78,11,8.5 C11,8.22,11.22,8,11.5,8S12,8.22,12,8.5C12,8.78,11.78,9,11.5,9z M12.5,11c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5C13,10.78,12.78,11,12.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mood\": {\n    \"name\": \"mood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.03 0 3.8-1.11 4.75-2.75.19-.33-.05-.75-.44-.75H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_baseball\": {\n    \"name\": \"sports_baseball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3.81,6.28C2.67,7.9,2,9.87,2,12s0.67,4.1,1.81,5.72C6.23,16.95,8,14.68,8,12S6.23,7.05,3.81,6.28z\\\"></path></g><g><path d=\\\"M20.19,6.28C17.77,7.05,16,9.32,16,12s1.77,4.95,4.19,5.72C21.33,16.1,22,14.13,22,12S21.33,7.9,20.19,6.28z\\\"></path></g><g><path d=\\\"M14,12c0-3.28,1.97-6.09,4.79-7.33C17.01,3.02,14.63,2,12,2S6.99,3.02,5.21,4.67C8.03,5.91,10,8.72,10,12 s-1.97,6.09-4.79,7.33C6.99,20.98,9.37,22,12,22s5.01-1.02,6.79-2.67C15.97,18.09,14,15.28,14,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15.22,5.34C13.34,6.06,12,7.87,12,10s1.34,3.94,3.22,4.66C16.32,13.42,17,11.79,17,10C17,8.21,16.32,6.58,15.22,5.34z\\\"></path></g><g><path d=\\\"M11,10c0-2.39,1.41-4.45,3.43-5.42C13.23,3.59,11.68,3,10,3S6.77,3.59,5.57,4.58C7.59,5.55,9,7.61,9,10 s-1.41,4.45-3.43,5.42C6.77,16.41,8.32,17,10,17s3.23-0.59,4.43-1.58C12.41,14.45,11,12.39,11,10z\\\"></path></g><g><path d=\\\"M4.78,5.34C3.68,6.58,3,8.21,3,10c0,1.79,0.68,3.42,1.78,4.66C6.66,13.94,8,12.13,8,10S6.66,6.06,4.78,5.34z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"sick\": {\n    \"name\": \"sick\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M23,7c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.78,0.99-2.44,1.58-3.36c0.2-0.31,0.64-0.31,0.84,0C22.01,4.56,23,6.22,23,7z M21.86,10.38C21.94,10.91,22,11.45,22,12c0,5.52-4.48,10-10.01,10C6.47,22,2,17.52,2,12C2,6.48,6.47,2,11.99,2 c2.45,0,4.69,0.88,6.43,2.34C17.91,5.29,17.5,6.27,17.5,7c0,1.93,1.57,3.5,3.5,3.5C21.3,10.5,21.58,10.45,21.86,10.38z M14.03,10.03 l1.06,1.06c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L15.62,9.5l0.53-0.53c0.29-0.29,0.29-0.77,0-1.06 s-0.77-0.29-1.06,0l-1.06,1.06C13.74,9.26,13.74,9.74,14.03,10.03z M8.38,9.5l-0.53,0.53c-0.29,0.29-0.29,0.77,0,1.06 c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06L8.91,7.91c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06 L8.38,9.5z M16.47,15.8c-1-1.39-2.62-2.3-4.47-2.3c-0.87,0-1.69,0.2-2.43,0.56L5.99,12c0-0.52-0.26-1.02-0.74-1.29 c-0.8-0.46-1.84-0.11-2.17,0.8c-0.21,0.57-0.03,1.25,0.44,1.64c0.52,0.44,1.2,0.45,1.72,0.16l2.97,1.72 c-0.25,0.24-0.48,0.5-0.68,0.78C7.17,16.3,7.53,17,8.15,17c0.23,0,0.46-0.1,0.6-0.3C9.47,15.68,10.65,15,12,15s2.53,0.68,3.25,1.7 c0.14,0.19,0.36,0.3,0.6,0.3h0C16.47,17,16.83,16.3,16.47,15.8z\\\"></path>\"\n      }\n    }\n  },\n  \"nights_stay\": {\n    \"name\": \"nights_stay\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.1 12.08c-2-3.88-.92-7.36.07-9.27.19-.36-.12-.77-.53-.72-5.02.68-8.86 5.07-8.65 10.32.01 0 .01 0 .01.01.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.13 0 5.92-1.44 7.76-3.69.26-.32.04-.79-.37-.82-2.49-.13-6.28-1.53-8.28-5.42z\\\"></path></g><path d=\\\"M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.38 10.05C7.75 6.89 9.03 4.11 9.76 3 6 3.13 3 6.21 3 9.99c0 .4.04.78.1 1.16.29-.09.59-.15.9-.15.86 0 1.68.38 2.24 1.01 1.27.12 2.26 1.19 2.26 2.49 0 .83-.41 1.56-1.04 2.02.79.3 1.65.48 2.55.48 2.45 0 4.6-1.26 5.86-3.17-1.66.16-4.89-.67-6.49-3.78z\\\"></path></g><path d=\\\"M6 13h-.27c-.35-.6-.99-1-1.73-1-1.1 0-2 .9-2 2s.9 2 2 2h2c.83 0 1.5-.67 1.5-1.5S6.83 13 6 13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_account\": {\n    \"name\": \"switch_account\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,20H4V7c0-0.55-0.45-1-1-1S2,6.45,2,7v13c0,1.1,0.9,2,2,2h13c0.55,0,1-0.45,1-1S17.55,20,17,20z M20,2H8 C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M14,5c1.66,0,3,1.34,3,3c0,1.66-1.34,3-3,3 s-3-1.34-3-3C11,6.34,12.34,5,14,5z M7.76,16c1.47-1.83,3.71-3,6.24-3s4.77,1.17,6.24,3H7.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"volcano\": {\n    \"name\": \"volcano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.49,8h-4.14c-0.82,0-1.55,0.5-1.86,1.26L9,13H7.3c-0.79,0-1.51,0.47-1.83,1.19l-2.22,5C2.66,20.51,3.63,22,5.08,22 h14.27c1.33,0,2.29-1.27,1.92-2.55l-2.86-10C18.17,8.59,17.38,8,16.49,8z\\\"></path></g><g><path d=\\\"M14,1L14,1c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V2C15,1.45,14.55,1,14,1z\\\"></path></g><g><path d=\\\"M19.66,3.34L19.66,3.34c-0.39-0.39-1.02-0.39-1.41,0l-1.41,1.41c-0.39,0.39-0.39,1.02,0,1.41v0 c0.39,0.39,1.02,0.39,1.41,0l1.41-1.41C20.05,4.37,20.05,3.73,19.66,3.34z\\\"></path></g><g><path d=\\\"M11.17,4.76L9.76,3.34c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l1.41,1.41 c0.39,0.39,1.02,0.39,1.41,0l0,0C11.56,5.78,11.56,5.15,11.17,4.76z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M13.85,7h-3.68C9.48,7,8.88,7.47,8.72,8.14L8,11H5.99c-0.6,0-1.14,0.36-1.38,0.91l-1.71,4C2.47,16.9,3.2,18,4.27,18 h11.76c0.99,0,1.71-0.94,1.45-1.89l-2.18-8C15.12,7.45,14.53,7,13.85,7z\\\"></path></g><g><path d=\\\"M12,1L12,1c-0.41,0-0.75,0.34-0.75,0.75v1.5C11.25,3.66,11.59,4,12,4h0c0.41,0,0.75-0.34,0.75-0.75v-1.5 C12.75,1.34,12.41,1,12,1z\\\"></path></g><g><path d=\\\"M16.25,2.74L16.25,2.74c-0.29-0.29-0.77-0.29-1.06,0L14.13,3.8c-0.29,0.29-0.29,0.77,0,1.06l0,0 c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06C16.54,3.51,16.54,3.03,16.25,2.74z\\\"></path></g><g><path d=\\\"M9.87,3.8L8.81,2.74c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l1.06,1.06c0.29,0.29,0.77,0.29,1.06,0 l0,0C10.16,4.57,10.16,4.09,9.87,3.8z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"single_bed\": {\n    \"name\": \"single_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33l0.51,1.53C5.94,18.81,6.2,19,6.5,19h0 c0.3,0,0.56-0.19,0.66-0.47L7.67,17h8.67l0.51,1.53C16.94,18.81,17.2,19,17.5,19l0,0c0.3,0,0.56-0.19,0.66-0.47L18.67,17H20v-5 C20,10.9,19.1,10,18,10z M11,10H8V8c0-0.55,0.45-1,1-1h2V10z M16,10h-3V7h2c0.55,0,1,0.45,1,1V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,8V6c0-0.55-0.45-1-1-1H6C5.45,5,5,5.45,5,6v2C4.45,8,4,8.45,4,9v4h1l0.75,2h0.5L7,13h6l0.75,2h0.5L15,13h1V9 C16,8.45,15.55,8,15,8z M9.5,8H6V6.5C6,6.22,6.22,6,6.5,6h3V8z M14,8h-3.5V6h3C13.78,6,14,6.22,14,6.5V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"public_off\": {\n    \"name\": \"public_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M20.49,21.9L20.49,21.9 c-0.39,0.39-1.02,0.39-1.41,0l-1.56-1.56c-2.07,1.37-4.68,2-7.45,1.48c-3.95-0.75-7.13-3.92-7.88-7.88 c-0.52-2.77,0.1-5.38,1.48-7.45L2.1,4.93c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97 C20.88,20.88,20.88,21.51,20.49,21.9z M11,18c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"party_mode\": {\n    \"name\": \"party_mode\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"person\": {\n    \"name\": \"person\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"ice_skating\": {\n    \"name\": \"ice_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M21.87,17c-0.47,0-0.85,0.34-0.98,0.8C20.54,19.07,19.38,20,18,20h-2v-2h1c1.1,0,2-0.9,2-2l0-0.88 c0-2.1-1.55-3.53-3.03-3.88l-2.7-0.67C12.4,10.35,11.7,9.76,11.32,9H8.5C8.22,9,8,8.78,8,8.5S8.22,8,8.5,8h2.52L11,7H8.5 C8.22,7,8,6.78,8,6.5C8,6.22,8.22,6,8.5,6H11V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v11c0,1.1,0.9,2,2,2h1v2H3c-0.55,0-1,0.45-1,1 s0.45,1,1,1h15c2.33,0,4.29-1.6,4.84-3.75C23.01,17.62,22.52,17,21.87,17z M14,20H8v-2h6V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18.16,14c-0.35,0-0.64,0.24-0.72,0.58c-0.26,1.1-1.25,1.92-2.43,1.92h-1.5V15h1c0.83,0,1.5-0.67,1.5-1.5V12 c0-1.1-0.72-2.08-1.78-2.4l-3.4-1.03c-0.33-0.1-0.6-0.3-0.79-0.57H7.5C7.22,8,7,7.77,7,7.5S7.22,7,7.5,7h2.25V6H7.5 C7.22,6,7,5.77,7,5.5S7.22,5,7.5,5h2.25V4c0-0.83-0.67-1.5-1.5-1.5H4.5C3.67,2.5,3,3.17,3,4v9.5C3,14.33,3.67,15,4.5,15h1v1.5H2.75 C2.34,16.5,2,16.84,2,17.25S2.34,18,2.75,18H15c1.9,0,3.5-1.33,3.9-3.12C19,14.43,18.63,14,18.16,14z M12,16.5H7V15h5V16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_golf\": {\n    \"name\": \"sports_golf\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"14\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M16,17H8c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h1c0.55,0,1-0.45,1-1 C17,17.45,16.55,17,16,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3C7.24,3,5,5.24,5,8s2.24,5,5,5s5-2.24,5-5S12.76,3,10,3z M10,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.21,12.21,12,10,12z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><path d=\\\"M12.5,14h-5C7.22,14,7,14.22,7,14.5C7,14.78,7.22,15,7.5,15h1c0.55,0,1,0.45,1,1v1h1v-1c0-0.55,0.45-1,1-1h1 c0.28,0,0.5-0.22,0.5-0.5C13,14.22,12.78,14,12.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"handshake\": {\n    \"name\": \"handshake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.48,10.41c-0.39,0.39-1.04,0.39-1.43,0l-4.47-4.46l-7.05,7.04l-0.66-0.63c-1.17-1.17-1.17-3.07,0-4.24l4.24-4.24 c1.17-1.17,3.07-1.17,4.24,0L16.48,9C16.87,9.39,16.87,10.02,16.48,10.41z M17.18,8.29c0.78,0.78,0.78,2.05,0,2.83 c-1.27,1.27-2.61,0.22-2.83,0l-3.76-3.76l-5.57,5.57c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.42,0l4.62-4.62l0.71,0.71 l-4.62,4.62c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.42,0l4.62-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39-0.39,1.02,0,1.41 c0.39,0.39,1.02,0.39,1.41,0l4.62-4.62l0.71,0.71l-4.62,4.62c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0l8.32-8.34 c1.17-1.17,1.17-3.07,0-4.24l-4.24-4.24c-1.15-1.15-3.01-1.17-4.18-0.06L17.18,8.29z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.62,10.17c1.17-1.17,1.17-3.07,0-4.24l-2.55-2.55c-1.17-1.17-3.07-1.17-4.24,0l-0.27,0.27l3.59,3.58 c0.62,0.62,0.62,1.64,0,2.26c-0.62,0.62-1.64,0.62-2.26,0l-3-3l-4.55,4.55c-0.31,0.31-0.31,0.82,0,1.13c0.31,0.31,0.82,0.31,1.13,0 l3.79-3.79l0.57,0.57l-3.79,3.79c-0.31,0.31-0.31,0.82,0,1.13c0.31,0.31,0.82,0.31,1.13,0l3.79-3.79l0.57,0.57l-3.79,3.79 c-0.31,0.31-0.31,0.82,0,1.13c0.31,0.31,0.82,0.31,1.13,0l3.79-3.79l0.57,0.57l-3.79,3.79c-0.31,0.31-0.31,0.82,0,1.13 c0.31,0.31,0.82,0.31,1.13,0L17.62,10.17z M4.48,4.87 M2.38,5.91c-1.17,1.17-1.17,3.07,0,4.24L3.23,11l5.64-5.64l3.57,3.57 c0.31,0.31,0.83,0.31,1.14,0c0.31-0.31,0.31-0.82,0-1.13L9.15,3.38c-1.17-1.17-3.07-1.17-4.24,0L2.38,5.91z\\\"></path></g>\"\n      }\n    }\n  },\n  \"group_off\": {\n    \"name\": \"group_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8c0-1.42-0.5-2.73-1.33-3.76C14.09,4.1,14.53,4,15,4c2.21,0,4,1.79,4,4s-1.79,4-4,4c-0.06,0-0.12,0-0.18,0l-0.77-0.77 C14.65,10.29,15,9.18,15,8z M7.24,4.41C7.77,4.15,8.37,4,9,4c2.21,0,4,1.79,4,4c0,0.63-0.15,1.23-0.41,1.76L7.24,4.41z M21.19,21.19 c0.39,0.39,0.39,1.02,0,1.41s-1.02,0.39-1.41,0l-2.99-2.99C16.6,19.85,16.32,20,16,20H2c-0.55,0-1-0.45-1-1v-2c0-2.66,5.33-4,8-4 c0.37,0,0.8,0.03,1.25,0.08L9.17,12C9.11,12,9.06,12,9,12c-2.21,0-4-1.79-4-4c0-0.06,0-0.11,0-0.17L1.39,4.22 C1,3.83,1,3.2,1.39,2.81s1.02-0.39,1.41,0L21.19,21.19z M18.89,16.07c-0.29-1.22-1.13-2.19-2.23-2.94C19.42,13.53,23,14.82,23,17v2 c0,0.32-0.15,0.6-0.38,0.79L18.89,16.07z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.61,8.49C10.86,8.05,11,7.54,11,7c0-1.66-1.34-3-3-3C7.46,4,6.95,4.14,6.51,4.39L10.61,8.49z M11.68,9.56 C12.19,8.83,12.5,7.95,12.5,7c0-1.13-0.43-2.15-1.12-2.94C11.58,4.02,11.79,4,12,4c1.66,0,3,1.34,3,3c0,1.62-1.28,2.94-2.88,3 L11.68,9.56z M15.41,13.29c-0.2-0.83-0.69-1.57-1.39-2.06c1.08,0.22,2.1,0.6,3.02,1.14c0.6,0.36,0.97,1.02,0.97,1.72V15 c0,0.25-0.09,0.47-0.23,0.64L15.41,13.29z M1.69,3.81c-0.29-0.29-0.29-0.77,0-1.06s0.77-0.29,1.06,0l14.5,14.5 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0l-2.54-2.54C13.47,15.91,13.25,16,13,16H3c-0.55,0-1-0.45-1-1v-0.91 c0-0.7,0.36-1.36,0.97-1.72C4.44,11.5,6.16,11,8,11c0.31,0,0.62,0.01,0.92,0.04l0,0L7.88,10C6.32,9.93,5.07,8.68,5,7.12L1.69,3.81z\\\"></path>\"\n      }\n    }\n  },\n  \"face_6\": {\n    \"name\": \"face_6\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-0.01,0-0.02,0-0.03 c2.31-0.22,3.43-1.59,4.34-3.41C8.51,8.21,8.85,8,9.24,8h5.53c0.38,0,0.72,0.21,0.89,0.55c0.9,1.8,1.99,3.19,4.34,3.41 c0,0.01,0,0.02,0,0.03C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.17,0.01-0.34,0.03-0.51c2.39-0.08,3.32-2.16,3.65-2.66C7.32,6.62,7.55,6.5,7.8,6.5h4.39c0.25,0,0.48,0.12,0.62,0.33 c0.34,0.51,1.28,2.58,3.65,2.66C16.49,9.66,16.5,9.83,16.5,10C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"add_moderator\": {\n    \"name\": \"add_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,10c1.08,0,2.09,0.25,3,0.68v-4.3c0-0.83-0.52-1.58-1.3-1.87l-6-2.25c-0.45-0.17-0.95-0.17-1.4,0l-6,2.25 C4.52,4.81,4,5.55,4,6.39v4.7c0,5.05,3.41,9.76,8,10.91c0.03-0.01,0.05-0.02,0.08-0.02C10.8,20.71,10,18.95,10,17 C10,13.13,13.13,10,17,10z\\\"></path><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M19.5,17.5h-2v2c0,0.28-0.22,0.5-0.5,0.5 s-0.5-0.22-0.5-0.5v-2h-2c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h2v-2c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5v2h2 c0.28,0,0.5,0.22,0.5,0.5S19.78,17.5,19.5,17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"catching_pokemon\": {\n    \"name\": \"catching_pokemon\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,12c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5C13.38,9.5,14.5,10.62,14.5,12z M22,12 c0,5.52-4.48,10-10,10C6.48,22,2,17.52,2,12S6.48,2,12,2C17.52,2,22,6.48,22,12z M20,12h-4c0-2.21-1.79-4-4-4c-2.21,0-4,1.79-4,4H4 c0,4.41,3.59,8,8,8C16.41,20,20,16.41,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.25,10c0,1.24-1.01,2.25-2.25,2.25S7.75,11.24,7.75,10S8.76,7.75,10,7.75S12.25,8.76,12.25,10z M18,10c0,4.42-3.58,8-8,8 s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M16.5,10h-3.25c0-1.79-1.46-3.25-3.25-3.25S6.75,8.21,6.75,10H3.5c0,3.58,2.92,6.5,6.5,6.5 S16.5,13.58,16.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_moderator\": {\n    \"name\": \"remove_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,11.09v-4.7c0-0.83-0.52-1.58-1.3-1.87l-6-2.25c-0.45-0.17-0.95-0.17-1.4,0L6.78,3.96l12.09,12.09 C19.59,14.52,20,12.83,20,11.09z M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L4,6.83v4.26 c0,4.83,3.13,9.37,7.43,10.75c0.37,0.12,0.77,0.12,1.14,0c1.49-0.48,2.84-1.35,3.97-2.47l2.53,2.53c0.39,0.39,1.02,0.39,1.41,0 C20.88,21.51,20.88,20.88,20.49,20.49z\\\"></path></g>\"\n      }\n    }\n  },\n  \"health_and_safety\": {\n    \"name\": \"health_and_safety\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.5,13h-1C8.67,13,8,12.33,8,11.5v0C8,10.67,8.67,10,9.5,10h1V9c0-0.83,0.67-1.5,1.5-1.5h0c0.83,0,1.5,0.67,1.5,1.5v1h1 c0.83,0,1.5,0.67,1.5,1.5v0c0,0.83-0.67,1.5-1.5,1.5h-1v1c0,0.83-0.67,1.5-1.5,1.5h0c-0.83,0-1.5-0.67-1.5-1.5V13z M11.3,2.26 l-6,2.25C4.52,4.81,4,5.55,4,6.39v4.7c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91v-4.7c0-0.83-0.52-1.58-1.3-1.87l-6-2.25 C12.25,2.09,11.75,2.09,11.3,2.26z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_people\": {\n    \"name\": \"emoji_people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.53,6.99,6.48,5.2,6.07,2.85C5.99,2.36,5.58,2,5.09,2h0 c-0.61,0-1.09,0.54-1,1.14C4.53,5.8,6.47,7.95,9,8.71V21c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-5h2v5c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1V10.05l3.24,3.24c0.39,0.39,1.02,0.39,1.41,0v0c0.39-0.39,0.39-1.02,0-1.41L15.89,8.11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><circle cx=\\\"10\\\" cy=\\\"5\\\" r=\\\"1\\\"></circle><path d=\\\"M12.29,7.29C12.11,7.11,11.85,7,11.59,7H8.5C7.12,7,6,5.88,6,4.5H5C5,6.26,6.31,7.75,8,8v4v3.5h1V12h2v3.5h1V12V8.41 l2.47,2.48l0.68-0.74L12.29,7.29z\\\"></path></g><circle cx=\\\"8.5\\\" cy=\\\"15.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"15.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14.83\\\" cy=\\\"10.54\\\" r=\\\".5\\\"></circle></g>\"\n      }\n    }\n  },\n  \"whatsapp\": {\n    \"name\": \"whatsapp\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19.05,4.91C17.18,3.03,14.69,2,12.04,2c-5.46,0-9.91,4.45-9.91,9.91c0,1.75,0.46,3.45,1.32,4.95L2.05,22l5.25-1.38 c1.45,0.79,3.08,1.21,4.74,1.21h0c0,0,0,0,0,0c5.46,0,9.91-4.45,9.91-9.91C21.95,9.27,20.92,6.78,19.05,4.91z M12.04,20.15 L12.04,20.15c-1.48,0-2.93-0.4-4.2-1.15l-0.3-0.18l-3.12,0.82l0.83-3.04l-0.2-0.31c-0.82-1.31-1.26-2.83-1.26-4.38 c0-4.54,3.7-8.24,8.24-8.24c2.2,0,4.27,0.86,5.82,2.42c1.56,1.56,2.41,3.63,2.41,5.83C20.28,16.46,16.58,20.15,12.04,20.15z M16.56,13.99c-0.25-0.12-1.47-0.72-1.69-0.81c-0.23-0.08-0.39-0.12-0.56,0.12c-0.17,0.25-0.64,0.81-0.78,0.97 c-0.14,0.17-0.29,0.19-0.54,0.06c-0.25-0.12-1.05-0.39-1.99-1.23c-0.74-0.66-1.23-1.47-1.38-1.72c-0.14-0.25-0.02-0.38,0.11-0.51 c0.11-0.11,0.25-0.29,0.37-0.43c0.12-0.14,0.17-0.25,0.25-0.41c0.08-0.17,0.04-0.31-0.02-0.43c-0.06-0.12-0.56-1.34-0.76-1.84 c-0.2-0.48-0.41-0.42-0.56-0.43C8.86,7.33,8.7,7.33,8.53,7.33c-0.17,0-0.43,0.06-0.66,0.31C7.65,7.89,7.01,8.49,7.01,9.71 c0,1.22,0.89,2.4,1.01,2.56c0.12,0.17,1.75,2.67,4.23,3.74c0.59,0.26,1.05,0.41,1.41,0.52c0.59,0.19,1.13,0.16,1.56,0.1 c0.48-0.07,1.47-0.6,1.67-1.18c0.21-0.58,0.21-1.07,0.14-1.18S16.81,14.11,16.56,13.99z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.69,4.23c-1.51-1.51-3.51-2.34-5.65-2.34c-4.4,0-7.98,3.58-7.98,7.98c0,1.41,0.37,2.78,1.07,3.99L2,18l4.23-1.11 c1.17,0.64,2.48,0.97,3.81,0.97h0c4.4,0,7.98-3.58,7.98-7.98C18.03,7.75,17.2,5.74,15.69,4.23z M10.05,16.51L10.05,16.51 c-1.19,0-2.36-0.32-3.38-0.92l-0.24-0.14L3.92,16.1l0.67-2.45L4.43,13.4c-0.66-1.06-1.01-2.28-1.01-3.53 c0-3.66,2.98-6.63,6.64-6.63c1.77,0,3.44,0.69,4.69,1.95c1.25,1.25,1.94,2.92,1.94,4.69C16.68,13.54,13.71,16.51,10.05,16.51z M13.69,11.55c-0.2-0.1-1.18-0.58-1.36-0.65c-0.18-0.07-0.32-0.1-0.45,0.1c-0.13,0.2-0.52,0.65-0.63,0.78 c-0.12,0.13-0.23,0.15-0.43,0.05c-0.2-0.1-0.84-0.31-1.6-0.99C8.62,10.31,8.22,9.66,8.1,9.46S8.09,9.15,8.19,9.05 c0.09-0.09,0.2-0.23,0.3-0.35s0.13-0.2,0.2-0.33c0.07-0.13,0.03-0.25-0.02-0.35c-0.05-0.1-0.45-1.08-0.61-1.48 C7.89,6.15,7.73,6.2,7.61,6.19C7.49,6.19,7.36,6.19,7.22,6.19c-0.13,0-0.35,0.05-0.53,0.25c-0.18,0.2-0.7,0.68-0.7,1.66 c0,0.98,0.71,1.93,0.81,2.06c0.1,0.13,1.41,2.15,3.41,3.01c0.48,0.21,0.85,0.33,1.14,0.42c0.48,0.15,0.91,0.13,1.26,0.08 c0.38-0.06,1.18-0.48,1.35-0.95c0.17-0.47,0.17-0.87,0.12-0.95C14.02,11.69,13.89,11.64,13.69,11.55z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"person_add_alt\": {\n    \"name\": \"person_add_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.39,14.56C13.71,13.7,11.53,13,9,13c-2.53,0-4.71,0.7-6.39,1.56C1.61,15.07,1,16.1,1,17.22V20h16v-2.78 C17,16.1,16.39,15.07,15.39,14.56z M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M20,9V7 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1 v-2h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,12.37C11.56,11.5,9.84,11,8,11s-3.56,0.5-5.03,1.37C2.36,12.72,2,13.39,2,14.09V16h12v-1.91 C14,13.39,13.64,12.72,13.03,12.37z\\\"></path><path d=\\\"M17.25,7.75h-1v-1C16.25,6.34,15.91,6,15.5,6s-0.75,0.34-0.75,0.75v1h-1C13.34,7.75,13,8.09,13,8.5 c0,0.41,0.34,0.75,0.75,0.75h1v1c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75v-1h1C17.66,9.25,18,8.91,18,8.5 C18,8.09,17.66,7.75,17.25,7.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pix\": {\n    \"name\": \"pix\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.45,16.52l-3.01-3.01c-0.11-0.11-0.24-0.13-0.31-0.13s-0.2,0.02-0.31,0.13L8.8,16.53c-0.34,0.34-0.87,0.89-2.64,0.89 l3.71,3.7c1.17,1.17,3.07,1.17,4.24,0l3.72-3.71C16.92,17.41,16.16,17.23,15.45,16.52z\\\"></path><path d=\\\"M8.8,7.47l3.02,3.02c0.08,0.08,0.2,0.13,0.31,0.13s0.23-0.05,0.31-0.13l2.99-2.99c0.71-0.74,1.52-0.91,2.43-0.91 l-3.72-3.71c-1.17-1.17-3.07-1.17-4.24,0l-3.71,3.7C7.95,6.58,8.49,7.16,8.8,7.47z\\\"></path><path d=\\\"M21.11,9.85l-2.25-2.26H17.6c-0.54,0-1.08,0.22-1.45,0.61l-3,3c-0.28,0.28-0.65,0.42-1.02,0.42 c-0.36,0-0.74-0.15-1.02-0.42L8.09,8.17c-0.38-0.38-0.9-0.6-1.45-0.6H5.17l-2.29,2.3c-1.17,1.17-1.17,3.07,0,4.24l2.29,2.3h1.48 c0.54,0,1.06-0.22,1.45-0.6l3.02-3.02c0.28-0.28,0.65-0.42,1.02-0.42c0.37,0,0.74,0.14,1.02,0.42l3.01,3.01 c0.38,0.38,0.9,0.6,1.45,0.6h1.26l2.25-2.26C22.3,12.96,22.3,11.04,21.11,9.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.79,13.58l-2.41-2.41c-0.1-0.1-0.22-0.12-0.28-0.12c-0.06,0-0.18,0.02-0.28,0.12L7.4,13.59 c-0.71,0.71-1.45,0.7-2.13,0.7l3.02,3.01c0.94,0.94,2.46,0.94,3.39,0l3.03-3.02C14,14.28,13.38,14.17,12.79,13.58z\\\"></path><path d=\\\"M7.4,6.41l2.42,2.42C9.9,8.9,10,8.94,10.1,8.94s0.21-0.04,0.28-0.12l2.39-2.39c0.58-0.59,1.21-0.71,1.96-0.71L11.71,2.7 c-0.94-0.94-2.46-0.94-3.39,0L5.29,5.71C6.02,5.71,6.7,5.71,7.4,6.41z\\\"></path><path d=\\\"M17.29,8.28l-1.8-1.81h-1.01c-0.44,0-0.86,0.17-1.16,0.48l-2.4,2.4c-0.22,0.22-0.52,0.34-0.81,0.34 c-0.29,0-0.59-0.12-0.81-0.34L6.87,6.94C6.57,6.63,6.15,6.46,5.72,6.46H4.53L2.7,8.3c-0.94,0.94-0.94,2.46,0,3.39l1.83,1.84h1.18 c0.43,0,0.85-0.17,1.16-0.48l2.42-2.42c0.22-0.22,0.52-0.34,0.81-0.34s0.59,0.11,0.81,0.34l2.41,2.41 c0.08,0.08,0.16,0.15,0.25,0.2c0.27,0.18,0.58,0.28,0.91,0.28h1.01l1.8-1.81c0.36-0.36,0.58-0.8,0.67-1.25 C17.99,10.31,18,10.16,18,10C18,9.38,17.76,8.76,17.29,8.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"scale\": {\n    \"name\": \"scale\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,21c0,0.55,0.45,1,1,1l3.43,0c0.87,0,1.58-0.75,1.5-1.62C21.34,14.18,17.4,11.68,14,11V8c3.31-0.42,6.03-1.86,7.27-3.73 C21.92,3.3,21.15,2,19.98,2H4.02C2.85,2,2.08,3.3,2.73,4.27C3.97,6.14,6.69,7.58,10,8l0,3c-3.4,0.68-7.34,3.18-7.93,9.38 C1.99,21.25,2.7,22,3.57,22L7,22c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H4.13c0.93-6.83,6.65-7.2,7.87-7.2s6.94,0.37,7.87,7.2H17 C16.45,20,16,20.45,16,21z M11.5,21.94c-0.7-0.17-1.27-0.74-1.44-1.44c-0.18-0.74,0.06-1.44,0.53-1.91 c0.55-0.55,2.91-1.57,4.33-2.15c0.41-0.17,0.82,0.24,0.65,0.65c-0.58,1.42-1.6,3.78-2.15,4.33C12.95,21.88,12.25,22.12,11.5,21.94z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,18c-0.83,0-1.5-0.67-1.5-1.5c0-0.41,0.17-0.79,0.44-1.06l0,0c0.38-0.38,1.9-1.05,2.97-1.5 c0.41-0.17,0.82,0.24,0.65,0.65c-0.45,1.07-1.12,2.59-1.5,2.97C10.79,17.83,10.41,18,10,18z M13,17.25c0-0.41,0.34-0.75,0.75-0.75 l2.65,0c-0.77-5.48-5.79-5.65-6.4-5.65c-0.61,0-5.63,0.17-6.4,5.65l2.65,0C6.66,16.5,7,16.84,7,17.25C7,17.66,6.66,18,6.25,18 l-3.2,0c-0.59,0-1.05-0.52-1-1.11C2.48,11.86,5.91,10,8.5,9.5V7C5.49,6.64,3.07,5.2,2.28,3.34C2.01,2.7,2.53,2,3.22,2h13.56 c0.69,0,1.21,0.7,0.94,1.34C16.93,5.2,14.51,6.64,11.5,7v2.5c2.59,0.5,6.02,2.36,6.45,7.39c0.05,0.59-0.41,1.11-1,1.11l-3.2,0 C13.34,18,13,17.66,13,17.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_reaction\": {\n    \"name\": \"add_reaction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M24,4c0,0.55-0.45,1-1,1h-1v1c0,0.55-0.45,1-1,1s-1-0.45-1-1V5h-1c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h1V2 c0-0.55,0.45-1,1-1s1,0.45,1,1v1h1C23.55,3,24,3.45,24,4z M21.52,8.95C21.83,9.91,22,10.94,22,12c0,5.52-4.48,10-10,10S2,17.52,2,12 C2,6.48,6.48,2,12,2c1.5,0,2.92,0.34,4.2,0.94C16.08,3.27,16,3.62,16,4c0,1.35,0.9,2.5,2.13,2.87C18.5,8.1,19.65,9,21,9 C21.18,9,21.35,8.98,21.52,8.95z M7,9.5C7,10.33,7.67,11,8.5,11S10,10.33,10,9.5S9.33,8,8.5,8S7,8.67,7,9.5z M16.31,14H7.69 c-0.38,0-0.63,0.42-0.44,0.75C8.2,16.39,9.97,17.5,12,17.5s3.8-1.11,4.75-2.75C16.94,14.42,16.7,14,16.31,14z M17,9.5 C17,8.67,16.33,8,15.5,8S14,8.67,14,9.5s0.67,1.5,1.5,1.5S17,10.33,17,9.5z\\\"></path>\"\n      }\n    }\n  },\n  \"18_up_rating\": {\n    \"name\": \"18_up_rating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"12.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M9.25,15L9.25,15 c-0.41,0-0.75-0.34-0.75-0.75V10.5H7.75C7.34,10.5,7,10.16,7,9.75v0C7,9.34,7.34,9,7.75,9H9c0.55,0,1,0.45,1,1v4.25 C10,14.66,9.66,15,9.25,15z M16,14c0,0.55-0.45,1-1,1h-2.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H15c0.55,0,1,0.45,1,1V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\".75\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"10.25\\\"></rect><rect height=\\\".75\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"9\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M8.5,12L8.5,12C8.22,12,8,11.78,8,11.5V9H7.5C7.22,9,7,8.78,7,8.5v0C7,8.22,7.22,8,7.5,8h1C8.78,8,9,8.22,9,8.5v3 C9,11.78,8.78,12,8.5,12z M13,11.5c0,0.28-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5v-3C10,8.22,10.22,8,10.5,8h2 C12.78,8,13,8.22,13,8.5V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_cricket\": {\n    \"name\": \"sports_cricket\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15.05,12.81L6.56,4.32c-0.39-0.39-1.02-0.39-1.41,0L2.32,7.15c-0.39,0.39-0.39,1.02,0,1.41l8.49,8.49 c0.39,0.39,1.02,0.39,1.41,0l2.83-2.83C15.44,13.83,15.44,13.2,15.05,12.81z\\\"></path><path d=\\\"M14.34,17.76l3.53,3.53c0.39,0.39,1.03,0.39,1.42,0l0,0c0.39-0.39,0.39-1.03,0-1.42l-3.53-3.53L14.34,17.76z\\\"></path></g><circle cx=\\\"18.5\\\" cy=\\\"5.5\\\" r=\\\"3.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"14.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M12.34,11.51L5.97,5.15c-0.2-0.2-0.51-0.2-0.71,0L3.15,7.26c-0.2,0.2-0.2,0.51,0,0.71l6.36,6.36c0.2,0.2,0.51,0.2,0.71,0 l2.12-2.12C12.53,12.02,12.53,11.71,12.34,11.51z\\\"></path><path d=\\\"M12.34,13.63l-0.71,0.71l2.47,2.47c0.2,0.2,0.51,0.2,0.71,0s0.2-0.51,0-0.71L12.34,13.63z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"facebook\": {\n    \"name\": \"facebook\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_martial_arts\": {\n    \"name\": \"sports_martial_arts\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.06,2.6L11.6,8.7l-1.21-1.04l2.48-1.43c0.57-0.33,0.67-1.11,0.21-1.57l-2.95-2.95c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41l2.03,2.03L5.35,8.26c-0.23,0.13-0.39,0.35-0.46,0.6l-0.96,3.49c-0.07,0.26-0.04,0.53,0.1,0.77 l1.74,3.02c0.28,0.48,0.89,0.64,1.37,0.37h0c0.48-0.28,0.64-0.89,0.37-1.37l-1.53-2.66l0.36-1.29L9.5,13l0.44,8 c0.03,0.56,0.49,1,1.05,1h0c0.56,0,1.02-0.44,1.05-1l0.45-9l7.87-7.96c0.36-0.36,0.38-0.93,0.05-1.32l0,0 C20.07,2.32,19.47,2.27,19.06,2.6z\\\"></path><circle cx=\\\"5\\\" cy=\\\"5\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"4.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16.42,2.3L9.96,7.54L8.27,6.22l2.17-1.25c0.28-0.16,0.34-0.55,0.1-0.79L7.73,1.35c-0.2-0.2-0.51-0.2-0.71,0l0,0 c-0.2,0.2-0.2,0.51,0,0.71l2.36,2.36L4.43,7.28c-0.11,0.07-0.2,0.17-0.23,0.3l-0.83,3c-0.04,0.13-0.02,0.26,0.05,0.38l1.47,2.61 c0.14,0.24,0.44,0.33,0.68,0.19l0,0c0.24-0.14,0.33-0.44,0.19-0.68l-1.37-2.43l0.49-1.78L8.5,11l0.46,6.51 C8.98,17.78,9.22,18,9.49,18H9.5c0.28,0,0.51-0.22,0.53-0.5L10.5,10l6.64-6.92c0.2-0.21,0.2-0.54-0.01-0.74v0 C16.94,2.15,16.63,2.13,16.42,2.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_motorsports\": {\n    \"name\": \"sports_motorsports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,11.39c0-0.65-0.39-1.23-0.98-1.48L5.44,7.55c-1.48,1.68-2.32,3.7-2.8,5.45h7.75C11.28,13,12,12.28,12,11.39z\\\"></path><path d=\\\"M21.96,11.22c-0.41-4.41-4.56-7.49-8.98-7.2c-2.51,0.16-4.44,0.94-5.93,2.04l4.74,2.01c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H2.21C2,16.31,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10C18.67,20,22.41,15.99,21.96,11.22z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.39,12c0.43,0,0.83-0.17,1.14-0.47c0.39-0.39,0.55-0.92,0.44-1.45C10.86,9.54,10.51,9.11,10,8.91L5.81,7.18 C4.35,8.65,3.64,10.56,3.31,12H9.39z\\\"></path><path d=\\\"M10.69,5.02C9,5.15,7.7,5.7,6.67,6.45l3.71,1.53c1.72,0.71,2.17,2.94,0.85,4.25C10.75,12.73,10.08,13,9.39,13H3.12 C3.02,13.65,3,14.07,3,14.07V15c0,0.55,0.45,1,1,1h7.5c3.13,0,5.65-2.62,5.49-5.79C16.83,7.04,13.85,4.78,10.69,5.02z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"diversity_1\": {\n    \"name\": \"diversity_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"4\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M1.22,17.58C0.48,17.9,0,18.62,0,19.43L0,20c0,0.55,0.45,1,1,1l3.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29 C4.76,17.04,4.39,17,4,17C3.01,17,2.07,17.21,1.22,17.58z\\\"></path><circle cx=\\\"20\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M22.78,17.58C21.93,17.21,20.99,17,20,17c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V21l3.5,0 c0.55,0,1-0.45,1-1l0-0.57C24,18.62,23.52,17.9,22.78,17.58z\\\"></path><path d=\\\"M16.24,16.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,17.13,6,18.21,6,19.39L6,20 c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1l0-0.61C18,18.21,17.32,17.13,16.24,16.65z\\\"></path><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3c0-1.66-1.34-3-3-3S9,10.34,9,12z\\\"></path><path d=\\\"M2.48,10.86C2.17,10.1,2,9.36,2,8.6C2,6.02,4.02,4,6.6,4c2.68,0,3.82,1.74,5.4,3.59C13.57,5.76,14.7,4,17.4,4 C19.98,4,22,6.02,22,8.6c0,0.76-0.17,1.5-0.48,2.26c0.65,0.31,1.18,0.82,1.53,1.44C23.65,11.1,24,9.88,24,8.6 C24,4.9,21.1,2,17.4,2c-2.09,0-4.09,0.97-5.4,2.51C10.69,2.97,8.69,2,6.6,2C2.9,2,0,4.9,0,8.6c0,1.28,0.35,2.5,0.96,3.7 C1.31,11.68,1.84,11.17,2.48,10.86z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"3.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M13.49,14.23c-0.97-0.42-2.15-0.73-3.49-0.73c-1.34,0-2.52,0.31-3.49,0.73C5.59,14.63,5,15.53,5,16.53l0,0.97 C5,17.78,5.22,18,5.5,18h9c0.28,0,0.5-0.22,0.5-0.5l0-0.97C15,15.53,14.41,14.63,13.49,14.23z\\\"></path><path d=\\\"M19.15,15.61C18.44,15.27,17.54,15,16.5,15c-0.29,0-0.56,0.02-0.82,0.06c0.21,0.45,0.32,0.95,0.32,1.47V18h3.5 c0.28,0,0.5-0.22,0.5-0.5l0-0.54C20,16.39,19.67,15.86,19.15,15.61z\\\"></path><path d=\\\"M0.85,15.61C0.33,15.86,0,16.39,0,16.96l0,0.54C0,17.78,0.22,18,0.5,18H4v-1.47c0-0.52,0.11-1.02,0.32-1.47 C4.06,15.02,3.79,15,3.5,15C2.46,15,1.56,15.27,0.85,15.61z\\\"></path><path d=\\\"M7.5,10.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C12.5,9.12,11.38,8,10,8S7.5,9.12,7.5,10.5z\\\"></path><path d=\\\"M2.33,10.3C1.79,9.36,1.5,8.44,1.5,7.5c0-2.24,1.76-4,4-4c2.53,0,3.77,2.04,4.5,2.9c0.62-0.73,1.91-2.9,4.5-2.9 c2.24,0,4,1.76,4,4c0,0.94-0.29,1.86-0.83,2.8c0.46,0.25,0.84,0.63,1.07,1.1C19.54,10.12,20,8.86,20,7.5C20,4.42,17.58,2,14.5,2 c-1.74,0-3.41,0.81-4.5,2.09C8.91,2.81,7.24,2,5.5,2C2.42,2,0,4.42,0,7.5c0,1.36,0.46,2.62,1.26,3.9 C1.5,10.93,1.87,10.55,2.33,10.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cyclone\": {\n    \"name\": \"cyclone\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4C16,9.79,14.21,8,12,8z M12,14c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M22,6.11L22,6.11c0-0.46-0.3-0.86-0.74-0.97C19.23,4.6,16.03,4,12,4C9.85,4,7.89,4.86,6.46,6.24 c0.1-0.65,0.28-1.69,0.62-2.96C7.25,2.64,6.78,2,6.11,2h0C5.66,2,5.26,2.3,5.14,2.74C4.6,4.77,4,7.97,4,12 c0,2.15,0.86,4.11,2.24,5.54c-0.65-0.1-1.69-0.28-2.96-0.62C2.64,16.75,2,17.22,2,17.89v0c0,0.46,0.3,0.86,0.74,0.97 C4.77,19.4,7.97,20,12,20c2.15,0,4.11-0.86,5.54-2.24c-0.1,0.65-0.28,1.69-0.62,2.96c-0.17,0.64,0.3,1.28,0.97,1.28h0 c0.46,0,0.86-0.3,0.97-0.74C19.4,19.23,20,16.03,20,12c0-2.15-0.86-4.11-2.24-5.54c0.65,0.1,1.69,0.28,2.96,0.62 C21.36,7.25,22,6.78,22,6.11z M12,18c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,13.5c1.93,0,3.5-1.57,3.5-3.5S11.93,6.5,10,6.5S6.5,8.07,6.5,10S8.07,13.5,10,13.5z M10,8c1.1,0,2,0.9,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,8.9,8.9,8,10,8z\\\"></path><path d=\\\"M18,4.67L18,4.67c0-0.34-0.23-0.65-0.56-0.74C14.15,3.05,11.17,3,10,3C8,3,6.2,3.84,4.93,5.18c0-0.03,0.15-0.97,0.48-2.22 C5.54,2.48,5.17,2,4.67,2h0C4.33,2,4.02,2.23,3.93,2.56C3.05,5.85,3,8.84,3,10c0,2,0.84,3.8,2.18,5.07 c-0.03,0-0.97-0.15-2.22-0.48C2.48,14.46,2,14.83,2,15.33v0c0,0.34,0.23,0.65,0.56,0.74C5.85,16.95,8.83,17,10,17 c2,0,3.8-0.84,5.07-2.18c0,0.03-0.15,0.97-0.48,2.22C14.46,17.52,14.83,18,15.33,18h0c0.34,0,0.65-0.23,0.74-0.56 C16.95,14.15,17,11.17,17,10c0-2-0.84-3.8-2.18-5.07c0.03,0,0.97,0.15,2.22,0.48C17.52,5.54,18,5.17,18,4.67z M15.5,10 c0,3.03-2.47,5.5-5.5,5.5S4.5,13.03,4.5,10S6.97,4.5,10,4.5S15.5,6.97,15.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"deck\": {\n    \"name\": \"deck\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.41,9c0.49,0,0.69-0.63,0.29-0.91L13.15,2.8c-0.69-0.48-1.61-0.48-2.29,0L3.3,8.09C2.9,8.37,3.1,9,3.59,9H11v12 c0,0.55,0.45,1,1,1s1-0.45,1-1V9H20.41z\\\"></path><path d=\\\"M8,16H4.9l-0.57-3.02c-0.1-0.54-0.62-0.9-1.17-0.8c-0.54,0.1-0.9,0.62-0.8,1.17L3,16.74V21c0,0.55,0.45,1,1,1h0.01 c0.55,0,1-0.44,1-0.99L5.02,18H7v3c0,0.55,0.45,1,1,1s1-0.45,1-1v-4C9,16.45,8.55,16,8,16z\\\"></path><path d=\\\"M20.84,12.18c-0.54-0.1-1.06,0.26-1.17,0.8L19.1,16H16c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1s1-0.45,1-1v-3h1.98 l0.02,3.01c0,0.55,0.45,0.99,1,0.99H20c0.55,0,1-0.45,1-1v-4.26l0.64-3.39C21.74,12.81,21.38,12.28,20.84,12.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.58,3.42c-0.35-0.25-0.81-0.25-1.16,0L3,8h6.5v8.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V8H17L10.58,3.42z\\\"></path><path d=\\\"M7.5,13H4.92l-0.47-2.51c-0.05-0.27-0.31-0.45-0.58-0.4c-0.27,0.05-0.45,0.31-0.4,0.58L4,13.5v3C4,16.78,4.22,17,4.5,17 S5,16.78,5,16.5V14h2v2.5C7,16.78,7.22,17,7.5,17S8,16.78,8,16.5v-3C8,13.22,7.78,13,7.5,13z\\\"></path><path d=\\\"M16.13,10.09c-0.27-0.05-0.53,0.13-0.58,0.4L15.08,13H12.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5V14h2v2.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5v-3l0.53-2.82C16.58,10.4,16.4,10.14,16.13,10.09z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"history_edu\": {\n    \"name\": \"history_edu\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,5v0.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.42,0-2.84,0.43-4.05,1.29C1.83,6.53,1.77,7.26,2.21,7.7l2.57,2.57h1.11v1.11 c0.86,0.86,1.98,1.31,3.11,1.36V15H7c-0.55,0-1,0.45-1,1v2c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V5c0-0.55-0.45-1-1-1H10 C9.45,4,9,4.45,9,5z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2 c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1c0-0.55-0.45-1-1-1h-5 v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.5,4C7.22,4,7,4.22,7,4.5v0.23c-0.68-0.32-1.4-0.5-2.13-0.5c-1.1,0-2.21,0.36-3.12,1.09C1.52,5.51,1.5,5.86,1.71,6.07 l1.75,1.75h1.41L4.76,9.13c0.62,0.62,1.42,0.92,2.23,0.92c0,0,0.01,0,0.01,0V12H5.5C5.22,12,5,12.22,5,12.5v2 C5,15.33,5.67,16,6.5,16H14c1.1,0,2-0.9,2-2V4.5C16,4.22,15.78,4,15.5,4H7.5z M6.99,9.05c-0.43,0-0.84-0.12-1.19-0.36l0.15-1.87 H3.87L2.84,5.79c0.61-0.36,1.31-0.55,2.03-0.55c1.07,0,2.07,0.42,2.83,1.17l1.41,1.41l-0.6,0.6C8.1,8.82,7.56,9.05,6.99,9.05z M15,14c0,0.61-0.54,1.09-1.17,0.99C13.34,14.91,13,14.44,13,13.94l0-1.44c0-0.28-0.22-0.5-0.5-0.5H8V9.87 c0.44-0.15,0.86-0.39,1.22-0.74l0.6-0.6L12.29,11H13v-0.71L8.4,5.7C8.28,5.57,8.14,5.48,8,5.37V5h7V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_transportation\": {\n    \"name\": \"emoji_transportation\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.99,14.77l-1.43-4.11c-0.14-0.4-0.52-0.66-0.97-0.66H12.4c-0.46,0-0.83,0.26-0.98,0.66L10,14.77v5.24 c0,0.55,0.45,0.99,1,0.99s1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1s0.99-0.44,1-0.99L21.99,14.77z M11.61,13.34l0.69-2 c0.05-0.2,0.24-0.34,0.46-0.34h6.48c0.21,0,0.4,0.14,0.47,0.34l0.69,2c0.11,0.32-0.13,0.66-0.47,0.66h-7.85 C11.74,14,11.5,13.66,11.61,13.34z M11.99,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.54,17,11.99,17z M19.99,17 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.54,17,19.99,17z\\\"></path><path d=\\\"M14,4.5V9h1V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v4H3C2.45,8,2,8.45,2,9v12h1V9.5C3,9.22,3.22,9,3.5,9h4 C7.78,9,8,8.78,8,8.5v-4C8,4.22,8.22,4,8.5,4h5C13.78,4,14,4.22,14,4.5z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M8,5.25C8,5.11,8.11,5,8.25,5h2.5C10.89,5,11,5.11,11,5.25V8h1V4.5C12,4.22,11.78,4,11.5,4h-4C7.22,4,7,4.22,7,4.5V7H4.5 C4.22,7,4,7.22,4,7.5V16h1V8.25C5,8.11,5.11,8,5.25,8H8V5.25z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"13\\\"></rect><path d=\\\"M15.11,9.34C15.05,9.14,14.85,9,14.64,9H9.36C9.15,9,8.95,9.14,8.89,9.34L8,12v2v0.5V15v0.5C8,15.78,8.22,16,8.5,16 S9,15.78,9,15.5V15h6v0.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V15v-0.5V14v-2L15.11,9.34z M9.72,10h4.56l0.67,2H9.05L9.72,10 z M9.5,14C9.22,14,9,13.78,9,13.5S9.22,13,9.5,13s0.5,0.22,0.5,0.5S9.78,14,9.5,14z M14.5,14c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5S14.78,14,14.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"masks\": {\n    \"name\": \"masks\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M14.3,11.01c-0.4-0.17-0.72-0.36-1.01-0.53C12.83,10.2,12.49,10,12,10c-0.49,0-0.84,0.2-1.31,0.48c-0.28,0.17-0.6,0.35-0.98,0.51 C9.37,11.14,9,10.91,9,10.54v0c0-0.2,0.11-0.38,0.29-0.45c0.34-0.14,0.62-0.31,0.88-0.46C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62 c0.27,0.16,0.55,0.33,0.9,0.48c0.18,0.08,0.29,0.26,0.29,0.45C15,10.91,14.63,11.15,14.3,11.01z M20.5,9c0,3.65-1.49,5.27-3.01,5.98 c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1s1,0.45,1,1V9z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_3\": {\n    \"name\": \"diversity_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.32,13.01c0.96,0.02,1.85,0.5,2.45,1.34C9.5,15.38,10.71,16,12,16c1.29,0,2.5-0.62,3.23-1.66 c0.6-0.84,1.49-1.32,2.45-1.34C16.96,11.78,14.08,11,12,11C9.93,11,7.04,11.78,6.32,13.01z\\\"></path><path d=\\\"M4,13L4,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C1,11.66,2.34,13,4,13z\\\"></path><path d=\\\"M20,13L20,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C17,11.66,18.34,13,20,13z\\\"></path><path d=\\\"M12,10c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,5.34,9,7C9,8.66,10.34,10,12,10z\\\"></path><path d=\\\"M21,14h-3.27c-0.77,0-1.35,0.45-1.68,0.92C16.01,14.98,14.69,17,12,17c-1.43,0-3.03-0.64-4.05-2.08 C7.56,14.37,6.95,14,6.27,14L3,14c-1.1,0-2,0.9-2,2v3c0,0.55,0.45,1,1,1h5c0.55,0,1-0.45,1-1v-1.26c1.15,0.8,2.54,1.26,4,1.26 s2.85-0.46,4-1.26V19c0,0.55,0.45,1,1,1h5c0.55,0,1-0.45,1-1v-3C23,14.9,22.1,14,21,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M7.13,11.23c0.65,0.95,1.73,1.52,2.87,1.52s2.22-0.57,2.87-1.52c0.36-0.53,0.93-0.86,1.56-0.94C13.91,9.78,12.01,9,10,9 c-2.02,0-3.91,0.79-4.43,1.29C6.19,10.37,6.76,10.7,7.13,11.23z\\\"></path></g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"3.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.5,11l-2.78,0c-0.49,0-0.95,0.25-1.23,0.65c-0.81,1.17-2.13,1.85-3.49,1.85c-0.31,0-2.25-0.03-3.49-1.85 C6.27,11.3,5.84,11,5.28,11H2.5C1.67,11,1,11.67,1,12.5v3C1,15.78,1.22,16,1.5,16h5C6.78,16,7,15.78,7,15.5v-1.37 C7.89,14.68,8.92,15,10,15s2.11-0.32,3-0.87v1.37c0,0.28,0.22,0.5,0.5,0.5h5c0.28,0,0.5-0.22,0.5-0.5v-3 C19,11.67,18.33,11,17.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology\": {\n    \"name\": \"psychology\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,8.57c-0.79,0-1.43,0.64-1.43,1.43s0.64,1.43,1.43,1.43s1.43-0.64,1.43-1.43S13.79,8.57,13,8.57z\\\"></path><path d=\\\"M13.21,3c-3.84-0.11-7,2.87-7.19,6.64L4.1,12.2C3.85,12.53,4.09,13,4.5,13H6v3c0,1.1,0.9,2,2,2h1v2c0,0.55,0.45,1,1,1h5 c0.55,0,1-0.45,1-1v-3.68c2.44-1.16,4.1-3.68,4-6.58C19.86,6.12,16.82,3.11,13.21,3z M16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66 c0.08,0.06,0.1,0.16,0.05,0.25l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83 c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4 c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10 c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4 c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06 c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09l0.8,1.38c0.05,0.09,0.03,0.2-0.05,0.26l-0.85,0.66 C15.99,9.73,16,9.86,16,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.16,4.05C8.58,3.68,6.38,5.5,6.06,7.91l-1.54,2.31C4.3,10.55,4.53,11,4.93,11H6v2c0,0.55,0.45,1,1,1h1v1 c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-2.76c1.39-0.93,2.23-2.62,1.94-4.47C14.64,5.86,13.07,4.32,11.16,4.05z M12.33,8.67 c0,0.09-0.01,0.18-0.02,0.26l0.56,0.44c0.05,0.04,0.07,0.11,0.03,0.17l-0.53,0.92c-0.03,0.06-0.1,0.08-0.16,0.06l-0.66-0.27 c-0.14,0.1-0.29,0.19-0.45,0.26L11,11.22c-0.01,0.07-0.06,0.11-0.13,0.11H9.8c-0.07,0-0.12-0.05-0.13-0.11l-0.1-0.71 c-0.16-0.07-0.31-0.15-0.45-0.26l-0.66,0.27c-0.06,0.02-0.13,0-0.16-0.06L7.76,9.54C7.73,9.48,7.74,9.41,7.79,9.37l0.56-0.44 C8.34,8.84,8.33,8.75,8.33,8.67s0.01-0.18,0.02-0.26L7.79,7.97C7.74,7.93,7.73,7.86,7.76,7.8l0.53-0.92 c0.03-0.06,0.1-0.08,0.16-0.06l0.66,0.27c0.14-0.1,0.29-0.19,0.45-0.26l0.1-0.71C9.68,6.05,9.73,6,9.8,6h1.07 c0.07,0,0.12,0.05,0.13,0.11l0.1,0.71c0.16,0.07,0.31,0.15,0.45,0.26l0.66-0.27c0.06-0.02,0.13,0,0.16,0.06l0.53,0.92 c0.03,0.06,0.02,0.13-0.03,0.17l-0.56,0.44C12.33,8.49,12.33,8.58,12.33,8.67z\\\"></path><path d=\\\"M10.33,7.71c-0.52,0-0.95,0.43-0.95,0.95c0,0.52,0.43,0.95,0.95,0.95s0.95-0.43,0.95-0.95 C11.29,8.14,10.86,7.71,10.33,7.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology_alt\": {\n    \"name\": \"psychology_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.94,9.06C19.5,5.73,16.57,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48C3.74,13.14,4.22,14,5,14h1l0,2c0,1.1,0.9,2,2,2h1 v2c0,0.55,0.45,1,1,1h5c0.55,0,1-0.45,1-1l0-3.68C18.62,15.07,20.35,12.24,19.94,9.06z M12.5,14c-0.41,0-0.74-0.33-0.74-0.74 c0-0.41,0.33-0.73,0.74-0.73c0.41,0,0.73,0.32,0.73,0.73C13.23,13.67,12.92,14,12.5,14z M14.26,9.68 c-0.44,0.65-0.86,0.85-1.09,1.27c-0.09,0.17-0.13,0.28-0.13,0.82h-1.06c0-0.29-0.04-0.75,0.18-1.16c0.28-0.51,0.83-0.81,1.14-1.26 c0.33-0.47,0.15-1.36-0.8-1.36c-0.62,0-0.92,0.47-1.05,0.86l-0.96-0.4C10.76,7.67,11.46,7,12.5,7c0.86,0,1.45,0.39,1.75,0.88 C14.51,8.31,14.66,9.1,14.26,9.68z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.87,3.01C8.08,2.83,5.71,4.72,5.13,7.3L3.2,10.2C2.68,10.97,3.24,12,4.16,12h0.83v1.5c0,0.83,0.67,1.5,1.5,1.5H8v1.25 C8,16.66,8.34,17,8.75,17h4c0.41,0,0.75-0.34,0.75-0.75v-3.14c1.53-1,2.53-2.74,2.5-4.71C15.95,5.59,13.67,3.19,10.87,3.01z M10.25,12c-0.35,0-0.63-0.28-0.63-0.63c0-0.35,0.28-0.62,0.63-0.62c0.35,0,0.62,0.27,0.62,0.62C10.88,11.72,10.61,12,10.25,12z M11.76,8.3c-0.38,0.56-0.74,0.73-0.93,1.09c-0.08,0.14-0.11,0.24-0.11,0.71H9.8c0-0.25-0.04-0.65,0.16-0.99 c0.24-0.44,0.71-0.7,0.98-1.08c0.29-0.41,0.13-1.16-0.68-1.16c-0.53,0-0.79,0.4-0.9,0.74L8.53,7.25C8.76,6.58,9.36,6,10.25,6 c0.74,0,1.25,0.34,1.5,0.76C11.97,7.12,12.1,7.8,11.76,8.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elderly_woman\": {\n    \"name\": \"elderly_woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.52,11c-1.57,0-2.94-0.9-3.6-2.21l-0.79-1.67l0,0C14.12,7.1,13.63,6,12.34,6l0,0C8.72,6,6,16.69,6,19h2.5L7,21 c-0.33,0.44-0.24,1.07,0.2,1.4c0.44,0.33,1.07,0.24,1.4-0.2L11,19h2v3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2.71 c0-0.22-0.04-0.43-0.1-0.64L13,13l0.49-2.71c0.81,1.23,2.05,2.14,3.51,2.52V13c0,0.28,0.22,0.5,0.5,0.5S18,13.28,18,13v-0.5 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5v10c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5v-10C20,11.71,19.38,11,18.52,11z\\\"></path><path d=\\\"M11.6,2.91c-0.06,0.19-0.1,0.38-0.1,0.59c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2c-0.21,0-0.4,0.04-0.59,0.1 C12.76,1.25,12.41,1,12,1c-0.55,0-1,0.45-1,1C11,2.41,11.25,2.76,11.6,2.91z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.87,9.02c-0.42-0.09-0.8,0.06-1.06,0.33c-1.91-0.49-1.98-2.15-2.92-2.91c-0.26-0.21-0.57-0.34-0.89-0.4 C6.85,5.45,5.5,14.26,5.5,15h1.6l-1.2,1.5c-0.23,0.28-0.2,0.69,0.05,0.95c0.3,0.3,0.78,0.27,1.05-0.05L9,15h1.5v2.25 c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75V15l-1.46-3.93l0.28-2.33l0,0c0,0,0,0,0,0c0.02,0.03,0.91,1.44,2.68,2.02 l0.03,0.01c0.05,0.14,0.19,0.24,0.35,0.24c0.21,0,0.38-0.17,0.38-0.38v-0.5c0-0.21,0.17-0.38,0.38-0.38S15,9.91,15,10.12v7.51 c0,0.21,0.17,0.38,0.38,0.38s0.38-0.17,0.38-0.38v-7.46C15.75,9.63,15.4,9.13,14.87,9.02z\\\"></path><path d=\\\"M9.34,3.22C9.29,3.39,9.25,3.56,9.25,3.75c0,0.97,0.79,1.75,1.75,1.75c0.96,0,1.75-0.78,1.75-1.75 C12.75,2.78,11.97,2,11,2c-0.29,0-0.57,0.08-0.81,0.21C10.08,1.94,9.81,1.75,9.5,1.75c-0.41,0-0.75,0.34-0.75,0.75 C8.75,2.86,9.01,3.14,9.34,3.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sentiment_dissatisfied\": {\n    \"name\": \"sentiment_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-1.9 0-3.63.97-4.65 2.58-.22.35-.11.81.24 1.03.35.22.81.11 1.03-.24.74-1.18 2-1.88 3.38-1.88s2.64.7 3.38 1.88c.14.23.39.35.64.35.14 0 .27-.04.4-.11.35-.22.46-.68.24-1.03C15.63 14.96 13.9 14 12 14z\\\"></path>\"\n      }\n    }\n  },\n  \"paragliding\": {\n    \"name\": \"paragliding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,17c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,17,12,17z M17.95,14c-0.52,0-0.94,0.4-0.99,0.92 c-0.2,2.03-1.05,2.68-1.48,3.02C14.68,18.54,14,19,12,19s-2.68-0.46-3.48-1.06c-0.43-0.34-1.28-0.99-1.48-3.02 C6.99,14.4,6.57,14,6.05,14c-0.59,0-1.06,0.51-1,1.09c0.22,2.08,1.07,3.47,2.24,4.41c0.5,0.4,1.1,0.7,1.7,0.9L9,24h6v-3.6 c0.6-0.2,1.2-0.5,1.7-0.9c1.17-0.94,2.03-2.32,2.24-4.41C19.01,14.51,18.53,14,17.95,14z M12,0C5.92,0,1,1.9,1,4.25v3.49 C1,8.55,1.88,9,2.56,8.57C2.7,8.48,2.84,8.39,3,8.31L5,13h2l1.5-6.28C9.6,6.58,10.78,6.5,12,6.5s2.4,0.08,3.5,0.22L17,13h2l2-4.69 c0.16,0.09,0.3,0.17,0.44,0.26C22.12,9,23,8.55,23,7.74V4.25C23,1.9,18.08,0,12,0z M5.88,11.24L4.37,7.69 c0.75-0.28,1.6-0.52,2.53-0.71L5.88,11.24z M18.12,11.24L17.1,6.98c0.93,0.19,1.78,0.43,2.53,0.71L18.12,11.24z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M10,14.25c-0.97,0-1.75-0.78-1.75-1.75s0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75S10.97,14.25,10,14.25z M15.18,11.5 c-0.36,0-0.68,0.26-0.73,0.62c-0.3,1.91-1.96,3.38-3.95,3.38h-1c-1.99,0-3.65-1.47-3.95-3.38c-0.06-0.36-0.37-0.62-0.73-0.62 c-0.46,0-0.82,0.41-0.75,0.87c0.31,1.95,1.64,3.55,3.43,4.25V20h5v-3.38c1.79-0.7,3.12-2.3,3.43-4.25 C16,11.91,15.64,11.5,15.18,11.5z M19,3.48v3.17c0,0.61-0.68,0.95-1.19,0.61c-0.1-0.07-0.2-0.13-0.31-0.19L16,10.5h-1.5L13,5.7 c-0.94-0.13-1.95-0.2-3-0.2S7.94,5.57,7,5.7l-1.5,4.8H4L2.5,7.05C2.39,7.12,2.29,7.18,2.19,7.25C1.68,7.59,1,7.26,1,6.64V3.48 C1,1.56,5.03,0,10,0S19,1.56,19,3.48z M5.84,5.89C4.92,6.08,4.1,6.32,3.4,6.61l1.32,3.03L5.84,5.89z M16.6,6.61 c-0.7-0.29-1.52-0.54-2.44-0.72l1.13,3.75L16.6,6.61z\\\"></path>\"\n      }\n    }\n  },\n  \"military_tech\": {\n    \"name\": \"military_tech\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,10.43V3c0-0.55-0.45-1-1-1H8C7.45,2,7,2.45,7,3v7.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-2.22,0.19 C8,16.37,7.82,16.92,8.16,17.21l1.69,1.46l-0.51,2.18c-0.1,0.43,0.37,0.77,0.75,0.54L12,20.23l1.91,1.15 c0.38,0.23,0.85-0.11,0.75-0.54l-0.51-2.18l1.69-1.46c0.33-0.29,0.16-0.84-0.29-0.88l-2.22-0.19l-0.99-2.34l4.18-2.51 C16.82,11.11,17,10.79,17,10.43z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.16,13.29l-2.27-0.19l-0.56-1.31l2.45-1.63C12.92,10.06,13,9.9,13,9.73V3.5C13,3.22,12.78,3,12.5,3h-5 C7.22,3,7,3.22,7,3.5v6.23c0,0.17,0.08,0.32,0.22,0.42l2.45,1.63l-0.56,1.31l-2.27,0.19l1.72,1.49L8.05,17L10,15.82L11.95,17 l-0.52-2.22L13.16,13.29z M9.5,4h1v6.46L10,10.8l-0.5-0.33V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumb_down_alt\": {\n    \"name\": \"thumb_down_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M10.88 21.94l5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.59.58 1.53.58 2.11-.01zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"group_remove\": {\n    \"name\": \"group_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,10c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1s-0.45,1-1,1h-4C18.45,11,18,10.55,18,10z M8,4C5.79,4,4,5.79,4,8s1.79,4,4,4 s4-1.79,4-4S10.21,4,8,4z M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z M12.51,4.05C13.43,5.11,14,6.49,14,8 s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3 C20,15.55,18.41,14.49,16.53,13.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37 C0.36,12.72,0,13.39,0,14.09V16h12v-1.91C12,13.39,11.64,12.72,11.03,12.37z M16,14.09V16h-2.5v-1.91c0-1.15-0.56-2.22-1.48-2.86 c1.08,0.22,2.1,0.6,3.02,1.14C15.64,12.72,16,13.39,16,14.09z M9.38,9.93C10.07,9.14,10.5,8.13,10.5,7s-0.43-2.15-1.12-2.94 C9.58,4.02,9.79,4,10,4c1.66,0,3,1.34,3,3s-1.34,3-3,3C9.79,10,9.58,9.98,9.38,9.93z M14.5,8.5c0-0.41,0.34-0.75,0.75-0.75h3.5 c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75h-3.5C14.84,9.25,14.5,8.91,14.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"recycling\": {\n    \"name\": \"recycling\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.2 7.41c-.23-.14-.31-.45-.17-.68L7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-.72 1.2c-.16.23-.47.31-.71.17L6.2 7.41zm15.52 5.56-1.34-2.24c-.14-.23-.44-.31-.68-.18l-2.6 1.5c-.24.14-.32.45-.18.69L18.87 16h1.09c.61 0 1.2-.26 1.59-.73.3-.37.45-.82.45-1.27 0-.36-.1-.71-.28-1.03zM16 21h1.5c.76 0 1.45-.43 1.79-1.11L20.74 17H16v-.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.35V21zm-6.5-4H5.7l-.84 1.41c-.3.5-.32 1.12-.06 1.65.28.57.87.94 1.52.94H9.5c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-3.38-2.65.7.42c.38.23.85-.12.74-.55l-.96-3.84c-.06-.26-.33-.43-.6-.36l-3.83.96c-.43.11-.52.68-.14.91l.66.4-.41.69c-.35.59-.38 1.31-.07 1.92l1.63 3.26 2.28-3.81zm10.9-9.21-1.3-2.17C15.35 2.37 14.7 2 14 2h-3.53l3.12 5.2-.69.41c-.38.23-.3.81.14.91l3.83.96c.27.07.54-.1.61-.36l.96-3.83c.11-.43-.36-.78-.74-.55l-.68.4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M7.19 7.46 5.47 6.43c-.23-.14-.31-.45-.17-.69l1.51-2.51c.39-.65 1.33-.65 1.72 0l.89 1.49-1.54 2.57c-.15.24-.45.31-.69.17zm8.73 1.27-1.75 1.01c-.24.14-.32.45-.18.69L15.55 13h.85c.57 0 1.09-.32 1.34-.83.23-.46.21-1-.06-1.44l-1.09-1.82c-.14-.24-.44-.31-.67-.18zM4.37 15.08c-.22.37-.24.83-.05 1.22.22.43.66.7 1.14.7H8c.28 0 .5-.22.5-.5v-2c0-.28-.22-.5-.5-.5H5.02l-.65 1.08zm10.1-10.75-.46.27-1.13-1.88c-.26-.44-.75-.72-1.28-.72H8.95l2.49 4.15-.46.28c-.31.18-.24.64.11.73l2.79.7c.21.05.43-.08.48-.29l.7-2.79c.09-.35-.29-.63-.59-.45zM5.3 11.58l.25.15c.38.23.85-.12.74-.55l-.61-2.46c-.07-.27-.34-.43-.61-.36l-2.46.61c-.43.11-.51.68-.13.91l.25.15-.42.69c-.26.44-.28.98-.06 1.44l1.22 2.44 1.83-3.02zM14.4 17c.57 0 1.09-.32 1.34-.83L16.83 14H13v-.57c0-.36-.43-.53-.68-.28l-2.03 2.03c-.16.16-.16.41 0 .57l2.03 2.03c.25.25.68.07.68-.28V17h1.4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"scuba_diving\": {\n    \"name\": \"scuba_diving\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,13c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S1,14.1,1,13z M8.89,10.11l3.56-0.95c0.53-0.14,0.85-0.69,0.71-1.22L12.9,6.97 c-0.14-0.53-0.69-0.85-1.22-0.71L8.11,7.21c-0.8,0.21-1.28,1.04-1.06,1.84l0,0C7.27,9.85,8.09,10.33,8.89,10.11z M22.52,2.52 c-0.29-0.29-0.75-0.29-1.04,0L19,5l-2,4l-9.48,2.87c-0.82,0.2-1.39,0.89-1.5,1.68L5.24,18L3,21c-0.33,0.44-0.24,1.07,0.2,1.4 c0.44,0.33,1.07,0.24,1.4-0.2L7,19l1.14-3.14l5.57-1.77c0.19-0.06,0.38-0.15,0.54-0.27l4.2-2.94c0.36-0.25,0.62-0.61,0.75-1.02 L20.5,5.9l2.06-2.38C22.81,3.22,22.79,2.79,22.52,2.52z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M1,11c0,0.83,0.67,1.5,1.5,1.5S4,11.83,4,11S3.33,9.5,2.5,9.5S1,10.17,1,11z M18.5,2.5c0.28,0.28,0.28,0.72,0,1L17,5 l-1.31,3.49c-0.12,0.33-0.36,0.61-0.67,0.78l-3.89,2.18c-0.09,0.05-0.18,0.09-0.28,0.12l-3.94,1.25l-0.85,2.83l-2.12,2.71 c-0.28,0.35-0.78,0.42-1.14,0.15c-0.37-0.27-0.44-0.8-0.16-1.16l1.71-2.22l0.67-4.04c0.11-0.55,0.53-1.02,1.11-1.17L14,7.5l1.5-3 l2-2C17.78,2.22,18.22,2.22,18.5,2.5z M6.05,7.59L6.05,7.59c-0.19-0.63,0.16-1.3,0.8-1.5l3.11-0.95c0.26-0.08,0.54,0.07,0.62,0.33 l0.41,1.34c0.08,0.26-0.07,0.54-0.33,0.62L7.55,8.39C6.92,8.59,6.25,8.23,6.05,7.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_remove_alt_1\": {\n    \"name\": \"person_remove_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M2,18v1c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-1 c0-2.66-5.33-4-8-4S2,15.34,2,18z M18,10h4c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1v0 C17,10.45,17.45,10,18,10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86v1.64c0,0.28-0.22,0.5-0.5,0.5h-11C2.22,16,2,15.78,2,15.5v-1.64C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><path d=\\\"M13.5,10h3c0.28,0,0.5-0.22,0.5-0.5v0C17,9.22,16.78,9,16.5,9h-3C13.22,9,13,9.22,13,9.5v0C13,9.78,13.22,10,13.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sledding\": {\n    \"name\": \"sledding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,3.4,14,4.5z M18.92,19.24c-0.13,0.39-0.55,0.61-0.95,0.48l-2.61-0.85 L14.9,20.3l3.32,1.08l0,0c1.31,0.43,2.72-0.29,3.15-1.61c0.36-1.12-0.11-2.32-1.07-2.91c-0.32-0.2-0.45-0.6-0.3-0.95 c0.2-0.44,0.71-0.57,1.12-0.31c1.52,0.95,2.25,2.85,1.68,4.62c-0.68,2.1-2.94,3.25-5.04,2.57h0L1.74,17.6 c-0.39-0.13-0.63-0.54-0.52-0.93c0.12-0.41,0.55-0.63,0.95-0.5l3.22,1.05l0.46-1.43l-3.19-1.04c-0.39-0.13-0.63-0.54-0.52-0.93 c0.12-0.41,0.55-0.63,0.95-0.5L4,13.6v-2.78c0-0.8,0.48-1.52,1.21-1.84c0.75-0.32,4.11-1.76,4.26-1.83 c0.41-0.18,0.89-0.21,1.35-0.04c0.91,0.34,1.37,1.36,1.07,2.28l-1.04,3.2L13,12.25c0.89-0.15,1.76,0.32,2.14,1.14l2.08,4.51 l1.22,0.4C18.84,18.42,19.05,18.84,18.92,19.24z M6,14.25l1.01,0.33c-0.22-0.42-0.28-0.92-0.12-1.4L7.92,10L6,10.82V14.25z M13.94,18.41l-6.66-2.16l-0.46,1.43l6.66,2.16L13.94,18.41z M14.63,17.05l-1.18-2.56l-3.97,0.89L14.63,17.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.25,3.75C8.25,2.78,9.03,2,10,2s1.75,0.78,1.75,1.75S10.97,5.5,10,5.5S8.25,4.72,8.25,3.75z M16.76,13.67 c0.1-0.3,0.45-0.44,0.72-0.28c1.36,0.77,1.96,2.52,1.16,4.03c-0.69,1.31-2.29,1.85-3.69,1.39L1.48,14.43 c-0.26-0.09-0.41-0.37-0.32-0.63c0.09-0.26,0.37-0.41,0.63-0.32l2.66,0.86l0.46-1.43l-2.66-0.87c-0.26-0.09-0.41-0.37-0.32-0.63 c0.09-0.26,0.37-0.41,0.63-0.32l0.95,0.31V8.66c0-0.4,0.24-0.76,0.61-0.92L7.9,6.13c0.32-0.14,0.68-0.17,1.04-0.06 c0.79,0.24,1.24,1.08,1,1.87L9.15,10.5l2.09-0.37c0.45-0.08,0.89,0.16,1.08,0.57l1.92,4.2l1.44,0.47c0.26,0.09,0.41,0.37,0.32,0.63 c-0.09,0.26-0.37,0.41-0.63,0.32l-2.38-0.77l-0.46,1.43l2.78,0.9c0.89,0.29,1.91-0.02,2.39-0.82c0.62-1.03,0.23-2.26-0.71-2.8 C16.78,14.14,16.68,13.9,16.76,13.67z M5,11.9l1.17,0.38c-0.31-0.38-0.43-0.89-0.28-1.39l0.8-2.62L5,9V11.9z M12.04,15.24 l-6.18-2.01l-0.46,1.43l6.18,2.01L12.04,15.24z M12.3,14.27l-1.12-2.46L7.7,12.78L12.3,14.27z\\\"></path>\"\n      }\n    }\n  },\n  \"man_3\": {\n    \"name\": \"man_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v5c0,0.55,0.45,1,1,1h1v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6h1c0.55,0,1-0.45,1-1V9 C16,7.9,15.1,7,14,7z\\\"></path><path d=\\\"M11.65,5.9L10.1,4.35c-0.2-0.2-0.2-0.51,0-0.71l1.54-1.54c0.2-0.2,0.51-0.2,0.71,0l1.54,1.54c0.2,0.2,0.2,0.51,0,0.71 L12.35,5.9C12.16,6.09,11.84,6.09,11.65,5.9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5v4C7,12.78,7.22,13,7.5,13h1v4.5C8.5,17.78,8.72,18,9,18h2c0.28,0,0.5-0.22,0.5-0.5V13h1 c0.28,0,0.5-0.22,0.5-0.5v-4C13,7.67,12.33,7,11.5,7z\\\"></path><path d=\\\"M11.65,3.65l-1.29-1.29c-0.2-0.2-0.51-0.2-0.71,0L8.35,3.65c-0.2,0.2-0.2,0.51,0,0.71l1.29,1.29c0.2,0.2,0.51,0.2,0.71,0 l1.29-1.29C11.84,4.16,11.84,3.84,11.65,3.65z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_2\": {\n    \"name\": \"person_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22L4,18c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2l0-0.78C20,16.1,19.39,15.07,18.39,14.56z\\\"></path><path d=\\\"M9.78,12h4.44c1.21,0,2.14-1.06,1.98-2.26l-0.32-2.45C15.57,5.39,13.92,4,12,4S8.43,5.39,8.12,7.29L7.8,9.74 C7.64,10.94,8.57,12,9.78,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.27,10h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C12.67,5.04,11.44,4,10,4S7.33,5.04,7.09,6.47l-0.3,1.79 C6.64,9.17,7.34,10,8.27,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.73,4,13.39,4,14.09l0,0.41C4,15.33,4.67,16,5.5,16h9 c0.83,0,1.5-0.67,1.5-1.5l0-0.41C16,13.39,15.64,12.73,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"people_alt\": {\n    \"name\": \"people_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><g><path d=\\\"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h3c0.55,0,1-0.45,1-1v-2 C23,14.82,19.43,13.53,16.67,13.13z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><circle cx=\\\"9\\\" cy=\\\"8\\\" fill-rule=\\\"evenodd\\\" r=\\\"4\\\"></circle></g><g><path d=\\\"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24 C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76C14.09,11.9,14.53,12,15,12z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M9,13c-2.67,0-8,1.34-8,4v2c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-2 C17,14.34,11.67,13,9,13z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><g><circle cx=\\\"8.5\\\" cy=\\\"7.5\\\" fill-rule=\\\"evenodd\\\" r=\\\"2.5\\\"></circle></g><g><path d=\\\"M10.99,9.95C11.16,9.98,11.33,10,11.5,10c1.38,0,2.5-1.12,2.5-2.5 C14,6.12,12.88,5,11.5,5c-0.17,0-0.34,0.02-0.51,0.05C11.61,5.68,12,6.55,12,7.5S11.61,9.32,10.99,9.95z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M8.5,11C6.66,11,3,11.66,3,13.23v1.27C3,14.78,3.22,15,3.5,15h10 c0.28,0,0.5-0.22,0.5-0.5v-1.27C14,11.66,10.34,11,8.5,11z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M13.73,11.23c0.75,0.48,1.27,1.12,1.27,2V15h1.5c0.28,0,0.5-0.22,0.5-0.5v-1.27 C17,12.18,15.36,11.54,13.73,11.23z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"cookie\": {\n    \"name\": \"cookie\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.27,10.9c-1.21-0.33-2.31-1.46-2.29-2.89c0.01-0.56-0.4-1.02-0.96-1.01C15.83,7.03,14,5.22,14,3.02 c0-0.49-0.35-0.9-0.84-0.96C6.53,1.22,2,6.81,2,12c0,5.52,4.48,10,10,10c5.61,0,10.11-4.62,10-10.18 C21.99,11.38,21.69,11.01,21.27,10.9z M8.5,15C7.67,15,7,14.33,7,13.5S7.67,12,8.5,12s1.5,0.67,1.5,1.5S9.33,15,8.5,15z M10.5,10 C9.67,10,9,9.33,9,8.5S9.67,7,10.5,7S12,7.67,12,8.5S11.33,10,10.5,10z M15,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,15.55,15.55,16,15,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.6,9.16c-1.11-0.21-2.16-1.26-2-2.59c0.04-0.34-0.21-0.62-0.55-0.59c-1.93,0.17-3.56-1.44-3.44-3.37 c0.02-0.25-0.14-0.48-0.38-0.52C5.69,1.2,2,5.85,2,10c0,4.42,3.58,8,8,8c4.56,0,8.2-3.81,7.99-8.37 C17.98,9.41,17.82,9.2,17.6,9.16z M6.75,12.5c-0.69,0-1.25-0.56-1.25-1.25S6.06,10,6.75,10S8,10.56,8,11.25S7.44,12.5,6.75,12.5z M8.75,8.5C8.06,8.5,7.5,7.94,7.5,7.25C7.5,6.56,8.06,6,8.75,6S10,6.56,10,7.25C10,7.94,9.44,8.5,8.75,8.5z M12.5,13.25 c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75S12.92,13.25,12.5,13.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cruelty_free\": {\n    \"name\": \"cruelty_free\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.84,14.52c-0.26-0.19-0.62-0.63-0.79-0.84C17.24,12.01,19,8.87,19,5c0-1.95-0.74-3-2-3c-1.54,0-3.96,2.06-5,5.97 C10.96,4.06,8.54,2,7,2C5.74,2,5,3.05,5,5c0,3.87,1.76,7.01,2.95,8.68c-0.17,0.21-0.53,0.65-0.79,0.84 c-0.5,0.41-1.66,1.37-1.66,2.98c0,2.21,1.79,4,4,4c1.55,0,2.5-0.56,2.5-0.56s0.95,0.56,2.5,0.56c2.21,0,4-1.79,4-4 C18.5,15.89,17.34,14.93,16.84,14.52z M9.35,12.2C8.34,10.7,7,8.12,7,5c0-0.49,0.06-0.8,0.12-0.97c0.94,0.31,3.24,2.71,3.38,7.64 C10.03,11.79,9.66,11.97,9.35,12.2z M10.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75S11,15.59,11,16 C11,16.41,10.78,16.75,10.5,16.75z M12,19.5c-0.55,0-1-0.72-1-1c0-0.28,0.45-0.5,1-0.5s1,0.22,1,0.5C13,18.78,12.55,19.5,12,19.5z M13.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16C14,16.41,13.78,16.75,13.5,16.75z M13.5,11.67 c0.14-4.93,2.44-7.33,3.38-7.64C16.94,4.2,17,4.51,17,5c0,3.12-1.34,5.7-2.35,7.2C14.34,11.97,13.97,11.79,13.5,11.67z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.89,12c-0.21-0.17-0.39-0.39-0.68-0.72c0.54-0.73,2.29-3.37,2.29-6.77C15.5,2.94,15.01,2,14,2c-1.23,0-3.17,1.65-4,4.78 C9.17,3.65,7.23,2,6,2C4.99,2,4.5,2.94,4.5,4.5c0,3.4,1.75,6.04,2.29,6.77C6.5,11.61,6.32,11.82,6.11,12 c-0.37,0.31-1.36,1.13-1.36,2.5c0,1.79,1.46,3.25,3.25,3.25c1.19,0,2-0.43,2-0.43s0.81,0.43,2,0.43c1.79,0,3.25-1.46,3.25-3.25 C15.25,13.13,14.26,12.31,13.89,12z M7.87,10.19C7.08,9.04,6,6.96,6,4.5C6,4,6.06,3.69,6.12,3.53C6.77,3.75,8.84,5.57,8.9,9.76 C8.29,9.88,7.87,10.19,7.87,10.19z M8.8,13.8c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6 C9.2,13.53,9.02,13.8,8.8,13.8z M10,16c-0.44,0-0.8-0.58-0.8-0.8c0-0.22,0.36-0.4,0.8-0.4s0.8,0.18,0.8,0.4 C10.8,15.42,10.44,16,10,16z M11.2,13.8c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6 C11.6,13.53,11.42,13.8,11.2,13.8z M11.1,9.76c0.06-4.19,2.12-6.01,2.78-6.23C13.94,3.69,14,4,14,4.5c0,2.46-1.08,4.54-1.87,5.69 C12.13,10.19,11.71,9.88,11.1,9.76z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_alt_1\": {\n    \"name\": \"person_add_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M9,14c-2.67,0-8,1.34-8,4v1c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-1C17,15.34,11.67,14,9,14z\\\"></path><polygon points=\\\"20,10 20,7 18,7 18,10 15,10 15,12 18,12 18,15 20,15 20,12 23,12 23,10\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"16,9 16,7 15,7 15,9 13,9 13,10 15,10 15,12 16,12 16,10 18,10 18,9\\\"></polygon><path d=\\\"M8,11c-2,0-6,0.96-6,2.86v1.64C2,15.78,2.22,16,2.5,16h11c0.28,0,0.5-0.22,0.5-0.5v-1.64C14,11.96,10,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"social_distance\": {\n    \"name\": \"social_distance\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S4,6.1,4,5z M8.78,8.58C7.93,8.21,6.99,8,6,8S4.07,8.21,3.22,8.58 C2.48,8.9,2,9.62,2,10.43L2,11h8l0-0.57C10,9.62,9.52,8.9,8.78,8.58z M18,7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C16,6.1,16.9,7,18,7z M20.78,8.58C19.93,8.21,18.99,8,18,8c-0.99,0-1.93,0.21-2.78,0.58C14.48,8.9,14,9.62,14,10.43L14,11h8l0-0.57 C22,9.62,21.52,8.9,20.78,8.58z M21.65,16.65l-2.79-2.79C18.54,13.54,18,13.76,18,14.21V16H6v-1.79c0-0.45-0.54-0.67-0.85-0.35 l-2.79,2.79c-0.2,0.2-0.2,0.51,0,0.71l2.79,2.79C5.46,20.46,6,20.24,6,19.79V18h12v1.79c0,0.45,0.54,0.67,0.85,0.35l2.79-2.79 C21.84,17.16,21.84,16.84,21.65,16.65z\\\"></path>\"\n      }\n    }\n  },\n  \"skateboarding\": {\n    \"name\": \"skateboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S13,4.1,13,3z M7.25,22.5c-0.41,0-0.75,0.34-0.75,0.75S6.84,24,7.25,24 S8,23.66,8,23.25S7.66,22.5,7.25,22.5z M15.75,22.5c-0.41,0-0.75,0.34-0.75,0.75S15.34,24,15.75,24s0.75-0.34,0.75-0.75 S16.16,22.5,15.75,22.5z M19.24,19c-0.24,0-0.45,0.11-0.59,0.3c-0.55,0.73-1.42,1.2-2.4,1.2H16v-4.88c0-0.69-0.36-1.34-0.95-1.7 l-3.37-2.08l1.8-2.89c0.96,1.53,2.54,2.64,4.39,2.96c0.6,0.11,1.13-0.39,1.13-0.99v0c0-0.48-0.35-0.89-0.83-0.98 c-1.49-0.28-2.72-1.29-3.3-2.64l-0.52-1.21C14.16,5.64,13.61,5,12.7,5H8.11c-0.69,0-1.33,0.36-1.7,0.94L5.03,8.15 C4.74,8.62,4.88,9.24,5.35,9.53l0,0c0.47,0.29,1.09,0.15,1.38-0.32L8.1,7h2.35l-2.4,3.84c-0.31,0.5-0.39,1.11-0.21,1.67l1.34,4.15 l-3.12,3.76c-0.7-0.16-1.3-0.57-1.71-1.12C4.21,19.11,3.99,19,3.75,19C3.31,19,3,19.36,3,19.75c0,0.15,0.05,0.31,0.15,0.45 c0.82,1.1,2.13,1.8,3.6,1.8h9.5c1.47,0,2.78-0.7,3.6-1.8c0.1-0.14,0.15-0.3,0.15-0.45C20,19.36,19.68,19,19.24,19z M14,20.5H8.6 l2.21-2.67c0.43-0.52,0.57-1.21,0.37-1.86L10.5,13.7l3.5,2.2V20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M7.49,19.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S7.49,18.84,7.49,19.25z M13.26,18.5 c-0.41,0-0.75,0.34-0.75,0.75S12.85,20,13.26,20c0.41,0,0.75-0.34,0.75-0.75S13.67,18.5,13.26,18.5z M12.25,4.5 C13.21,4.5,14,3.72,14,2.75C14,1.78,13.22,1,12.25,1S10.5,1.78,10.5,2.75C10.5,3.72,11.29,4.5,12.25,4.5z M17,16.5 c0,0.12-0.04,0.24-0.13,0.34C16.46,17.29,15.58,18,14.26,18H5.74c-1.25,0-2.13-0.62-2.61-1.16C3.05,16.75,3,16.62,3,16.5 C3,16.24,3.2,16,3.5,16c0.14,0,0.28,0.06,0.38,0.17C4.34,16.68,5,17,5.74,17H6l2-3l-1.23-3.23C6.6,10.33,6.65,9.84,6.9,9.44 L8.73,6.5H6.8L5.7,8.22C5.47,8.59,4.97,8.69,4.61,8.43l0,0c-0.34-0.24-0.43-0.71-0.2-1.06L5.7,5.45C5.89,5.17,6.2,5,6.54,5h3.96 c0.68,0,1.11,0.43,1.3,0.76l0.75,1.27c0.6,1.01,1.63,1.74,2.83,1.92C15.74,9.01,16,9.32,16,9.68v0c0,0.46-0.41,0.82-0.87,0.75 c-1.58-0.25-2.94-1.18-3.77-2.48L10,10.13l3.06,2.07c0.27,0.19,0.44,0.5,0.44,0.83V17h0.76c0.74,0,1.4-0.32,1.86-0.83 c0.1-0.11,0.23-0.17,0.38-0.17C16.8,16,17,16.24,17,16.5z M12,13.4l-3-1.65l0.57,2c0.08,0.28,0.03,0.59-0.13,0.84L7.8,17H12V13.4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"engineering\": {\n    \"name\": \"engineering\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,15c-2.67,0-8,1.34-8,4v1c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-1C17,16.34,11.67,15,9,15z\\\"></path><path d=\\\"M4.74,9h8.53c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13c0-1.48-0.81-2.75-2-3.45V5.5 C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55 C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z\\\"></path><path d=\\\"M9,13c1.86,0,3.41-1.28,3.86-3H5.14C5.59,11.72,7.14,13,9,13z\\\"></path><path d=\\\"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z\\\"></path><path d=\\\"M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.82,8H5h5h0.32c0.14,0,0.25-0.11,0.25-0.25S10.45,7.5,10.32,7.5H10c0-1.02-0.62-1.9-1.5-2.29v0.54 C8.5,5.89,8.39,6,8.25,6S8,5.89,8,5.75v-0.7C7.84,5.02,7.67,5,7.5,5S7.16,5.02,7,5.05v0.7C7,5.89,6.89,6,6.75,6S6.5,5.89,6.5,5.75 V5.21C5.62,5.6,5,6.48,5,7.5H4.82c-0.14,0-0.25,0.11-0.25,0.25S4.68,8,4.82,8z\\\"></path><path d=\\\"M7.5,10.5c1.21,0,2.22-0.86,2.45-2h-4.9C5.28,9.64,6.29,10.5,7.5,10.5z\\\"></path><path d=\\\"M17.27,5.31l0.66-0.59L17.4,3.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L16.04,3h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19L13.6,3.79l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L14.96,8h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C17.28,5.55,17.28,5.43,17.27,5.31z M15.5,6.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C16.39,5.99,15.99,6.39,15.5,6.39z\\\"></path><path d=\\\"M15.3,8.72l-0.59,0.2c-0.07-0.05-0.15-0.1-0.23-0.13l-0.13-0.61H13.6l-0.13,0.61c-0.08,0.04-0.17,0.08-0.24,0.14 l-0.59-0.19l-0.38,0.65l0.46,0.41c-0.01,0.09-0.01,0.18,0,0.26l-0.46,0.42l0.38,0.65l0.6-0.19c0.07,0.05,0.14,0.09,0.22,0.12 l0.14,0.62h0.75l0.13-0.61c0.08-0.04,0.15-0.08,0.22-0.13l0.59,0.19l0.38-0.65l-0.46-0.42c0.01-0.09,0.01-0.17,0-0.26l0.47-0.42 L15.3,8.72z M13.97,10.54c-0.35,0-0.62-0.28-0.62-0.62c0-0.35,0.28-0.62,0.62-0.62c0.35,0,0.62,0.28,0.62,0.62 C14.6,10.26,14.32,10.54,13.97,10.54z\\\"></path><path d=\\\"M7.5,12C5,12,2,13.24,2,15v0.97h11V15C13,13.24,10,12,7.5,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"no_adult_content\": {\n    \"name\": \"no_adult_content\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.54,1.69-4.9L7.59,9h2.83 L7.1,5.69C8.46,4.63,10.15,4,12,4c4.41,0,8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.9-1.9h-2.83l3.31,3.31 C15.54,19.37,13.85,20,12,20C7.59,20,4,16.41,4,12z\\\"></path><polygon points=\\\"14.25,14 12.75,12 14.25,10 12.75,10 12,11 11.25,10 9.75,10 11.25,12 9.75,14 11.25,14 12,13 12.75,14\\\"></polygon><polygon points=\\\"8,10 7.25,11 6.5,10 5,10 6.5,12 5,14 6.5,14 7.25,13 8,14 9.5,14 8,12 9.5,10\\\"></polygon><polygon points=\\\"16,14 16.75,13 17.5,14 19,14 17.5,12 19,10 17.5,10 16.75,11 16,10 14.5,10 16,12 14.5,14\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.52,0.53-2.92,1.41-4.03L6.44,7.5h2.12 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5c0,1.52-0.53,2.92-1.41,4.03l-1.53-1.53h-2.12l2.59,2.59 c-1.11,0.88-2.51,1.41-4.03,1.41C6.42,16.5,3.5,13.58,3.5,10z\\\"></path><polygon points=\\\"10.5,10 11.5,8.5 10.5,8.5 10,9.25 9.5,8.5 8.5,8.5 9.5,10 8.5,11.5 9.5,11.5 10,10.75 10.5,11.5 11.5,11.5\\\"></polygon><polygon points=\\\"7,8.5 6.5,9.25 6,8.5 5,8.5 6,10 5,11.5 6,11.5 6.5,10.75 7,11.5 8,11.5 7,10 8,8.5\\\"></polygon><polygon points=\\\"13.25,11.5 13.75,10.75 14.25,11.5 15.25,11.5 14.25,10 15.25,8.5 14.25,8.5 13.75,9.25 13.25,8.5 12.25,8.5 13.25,10 12.25,11.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"travel_explore\": {\n    \"name\": \"travel_explore\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.3,16.9c0.58-1.01,0.95-2.23,0.51-3.65c-0.53-1.72-2.04-3.05-3.84-3.22c-2.87-0.28-5.23,2.07-4.95,4.95 c0.18,1.79,1.5,3.31,3.22,3.84c1.43,0.44,2.64,0.07,3.65-0.51l2.5,2.5c0.39,0.39,1.01,0.39,1.4,0l0,0c0.39-0.39,0.39-1.01,0-1.4 L19.3,16.9z M15.5,17c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S16.9,17,15.5,17z M12,20v2C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2c4.84,0,8.87,3.44,9.8,8h-2.07c-0.64-2.46-2.4-4.47-4.73-5.41V5c0,1.1-0.9,2-2,2h-2v2c0,0.55-0.45,1-1,1H8v2h2v3 H9l-4.79-4.79C4.08,10.79,4,11.38,4,12C4,16.41,7.59,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.85,8.5h-1.54c-0.48-2.03-1.93-3.68-3.82-4.48V4.5C12.5,5.33,11.83,6,11,6H9v1c0,0.55-0.45,1-1,1H7v2h1v2H7L3.64,8.64 C3.55,9.08,3.5,9.53,3.5,10c0,3.58,2.92,6.5,6.5,6.5V18c-4.42,0-8-3.58-8-8s3.58-8,8-8C13.91,2,17.15,4.8,17.85,8.5z M17.47,16.97 L17.47,16.97c-0.29,0.29-0.77,0.29-1.06,0l-2.03-2.03c-0.79,0.51-1.8,0.72-2.86,0.42c-1.24-0.35-2.21-1.41-2.46-2.68 c-0.47-2.47,1.66-4.59,4.12-4.12c1.27,0.24,2.33,1.21,2.68,2.46c0.3,1.06,0.09,2.07-0.42,2.86l2.03,2.03 C17.76,16.2,17.76,16.68,17.47,16.97z M14.5,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14.5,13.1,14.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_tennis\": {\n    \"name\": \"sports_tennis\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-3.54,3.53 c-0.39,0.39-0.39,1.02,0,1.42l0,0c0.39,0.39,1.02,0.39,1.42,0l3.53-3.54c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54 C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06 c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z\\\"></path><path d=\\\"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.09,10.28c2.2-2.2,2.55-5.4,0.8-7.16c-1.76-1.76-4.96-1.4-7.16,0.8C6.4,5.24,5.75,6.93,5.82,8.44l0,0 c-0.04,0.82,0.29,2.73-0.98,4.01L2.28,15c-0.2,0.2-0.2,0.52,0,0.72s0.52,0.2,0.72,0l2.56-2.56c1.27-1.27,3.19-0.94,4.01-0.98l0,0 C11.07,12.25,12.76,11.6,14.09,10.28z M7.64,10.36C6.27,9,6.63,6.42,8.43,4.62s4.38-2.16,5.75-0.8c1.36,1.36,1.01,3.94-0.8,5.75 S9,11.73,7.64,10.36z\\\"></path><path d=\\\"M16.12,12.88C15.54,12.29,14.77,12,14,12s-1.54,0.29-2.12,0.88c-1.17,1.17-1.17,3.07,0,4.24C12.46,17.71,13.23,18,14,18 s1.54-0.29,2.12-0.88C17.29,15.95,17.29,14.05,16.12,12.88z M15.41,16.41C15.04,16.79,14.53,17,14,17s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C12.96,13.21,13.47,13,14,13s1.04,0.21,1.41,0.59C16.19,14.37,16.19,15.63,15.41,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_add\": {\n    \"name\": \"person_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V8c0-.55-.45-1-1-1s-1 .45-1 1v2H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H6zm9 4c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"coronavirus\": {\n    \"name\": \"coronavirus\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.25,10.5c-0.41,0-0.75,0.34-0.75,0.75h-1.54c-0.15-1.37-0.69-2.63-1.52-3.65l1.09-1.09l0.01,0.01 c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L18.54,4.4c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.76-0.01,1.05l-1.09,1.09 c-1.02-0.82-2.27-1.36-3.64-1.51V3.5h0.01c0.41,0,0.75-0.34,0.75-0.75C13.5,2.34,13.16,2,12.75,2h-1.5c-0.41,0-0.75,0.34-0.75,0.75 c0,0.41,0.33,0.74,0.74,0.75v1.55C9.87,5.19,8.62,5.74,7.6,6.56L6.51,5.47l0.01-0.01c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L4.4,5.46c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.76,0.29,1.05,0.01l1.09,1.09 c-0.82,1.02-1.36,2.26-1.5,3.63H3.5c0-0.41-0.34-0.75-0.75-0.75C2.34,10.5,2,10.84,2,11.25v1.5c0,0.41,0.34,0.75,0.75,0.75 c0.41,0,0.75-0.34,0.75-0.75h1.54c0.15,1.37,0.69,2.61,1.5,3.63l-1.09,1.09c-0.29-0.29-0.76-0.28-1.05,0.01 c-0.29,0.29-0.29,0.77,0,1.06l1.06,1.06c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-0.01-0.01l1.09-1.09 c1.02,0.82,2.26,1.36,3.63,1.51v1.55c-0.41,0.01-0.74,0.34-0.74,0.75c0,0.41,0.34,0.75,0.75,0.75h1.5c0.41,0,0.75-0.34,0.75-0.75 c0-0.41-0.34-0.75-0.75-0.75h-0.01v-1.54c1.37-0.14,2.62-0.69,3.64-1.51l1.09,1.09c-0.29,0.29-0.28,0.76,0.01,1.05 c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0l-0.01,0.01l-1.09-1.09 c0.82-1.02,1.37-2.27,1.52-3.65h1.54c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75v-1.5C22,10.84,21.66,10.5,21.25,10.5z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.2,8,13.75,8z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,12.55,12.55,13,12,13z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11.25,15.55,10.8,16,10.25,16z M13.75,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M14.5,12 c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S14.5,12.55,14.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_rugby\": {\n    \"name\": \"sports_rugby\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M7.76,7.76 c2.64-2.64,6.35-3.12,8.03-3.19c-2.05,0.94-4.46,2.45-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.35,3.12-8.03,3.19c2.05-0.94,4.46-2.45,6.61-4.61c2.16-2.16,3.67-4.58,4.62-6.63 C19.34,10.67,18.56,13.93,16.24,16.24z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7c-0.35-0.35-1.34-0.6-2.6-0.6 c-1.93,0-4.47,0.6-6.24,2.37C3.54,9.39,3.81,14.42,4.7,15.3c0.35,0.35,1.34,0.6,2.6,0.6c1.93,0,4.47-0.6,6.24-2.37 C16.46,10.61,16.19,5.58,15.3,4.7z M7.17,7.17C8.79,5.55,11,5.19,12.16,5.12C10.8,5.64,9.23,6.53,7.88,7.88 c-1.35,1.35-2.24,2.92-2.76,4.28C5.22,10.58,5.75,8.6,7.17,7.17z M12.83,12.83c-1.62,1.62-3.83,1.98-4.99,2.06 c1.35-0.52,2.93-1.41,4.28-2.76c1.35-1.35,2.24-2.92,2.76-4.28C14.78,9.42,14.25,11.4,12.83,12.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"connect_without_contact\": {\n    \"name\": \"connect_without_contact\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,4c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M10.19,4.5L10.19,4.5c-0.41,0-0.76,0.25-0.92,0.63 C8.83,6.23,7.76,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74c1.43-0.45,2.58-1.53,3.12-2.91C11.38,5.19,10.88,4.5,10.19,4.5z M19,17 c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3c-1.26,0-2.33-0.77-2.77-1.87 c-0.15-0.38-0.51-0.63-0.92-0.63h0c-0.69,0-1.19,0.69-0.94,1.33c0.55,1.38,1.69,2.46,3.12,2.91V22h6v-2.5C22,18.67,21.33,18,20.5,18 z M17.25,11.09c0,0,0-0.01,0.01,0c-1.06,0.27-1.9,1.11-2.17,2.17c0,0,0-0.01,0-0.01C14.98,13.68,14.58,14,14.11,14 c-0.55,0-1-0.45-1-1c0-0.05,0.02-0.14,0.02-0.14c0.43-1.85,1.89-3.31,3.75-3.73c0.04,0,0.08-0.01,0.12-0.01c0.55,0,1,0.45,1,1 C18,10.58,17.68,10.98,17.25,11.09z M18,6.06c0,0.51-0.37,0.92-0.86,0.99c0,0,0,0,0,0c-3.19,0.39-5.7,2.91-6.09,6.1c0,0,0,0,0,0 C10.98,13.63,10.56,14,10.06,14c-0.55,0-1-0.45-1-1c0-0.02,0-0.04,0-0.06c0-0.01,0-0.02,0-0.03c0.5-4.12,3.79-7.38,7.92-7.85 c0,0,0.01,0,0.01,0C17.55,5.06,18,5.51,18,6.06z\\\"></path>\"\n      }\n    }\n  },\n  \"woman\": {\n    \"name\": \"woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M16.45,14.63l-2.52-6.32c-0.32-0.79-1.08-1.3-1.94-1.31c-0.85,0-1.62,0.51-1.94,1.31l-2.52,6.32 C7.28,15.29,7.77,16,8.47,16H10v5c0,0.55,0.45,1,1,1h1h1c0.55,0,1-0.45,1-1v-5h1.53C16.23,16,16.72,15.29,16.45,14.63z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6.6,12.61C6.31,13.27,6.8,14,7.52,14H8.5v3c0,0.55,0.45,1,1,1 h1.01c0.55,0,1-0.45,1-1v-3h0.98c0.72,0,1.2-0.73,0.92-1.39L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"science\": {\n    \"name\": \"science\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.54,17.73L15,11V5h1c0.55,0,1-0.45,1-1s-0.45-1-1-1H8C7.45,3,7,3.45,7,4s0.45,1,1,1h1v6l-5.54,6.73 C3.14,18.12,3,18.56,3,19c0.01,1.03,0.82,2,2,2H19c1.19,0,2-0.97,2-2C21,18.56,20.86,18.12,20.54,17.73z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.68,14.58L12.5,9.49V4.5h0.75C13.66,4.5,14,4.16,14,3.75C14,3.34,13.66,3,13.25,3h-6.5C6.34,3,6,3.34,6,3.75 C6,4.16,6.34,4.5,6.75,4.5H7.5v4.99l-4.18,5.09C2.55,15.57,3.26,17,4.5,17H15.5C16.74,17,17.45,15.57,16.68,14.58z\\\"></path>\"\n      }\n    }\n  },\n  \"nordic_walking\": {\n    \"name\": \"nordic_walking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.25,23c-0.41,0-0.75-0.34-0.75-0.75V14H19v8.25C19,22.66,18.66,23,18.25,23z M4.93,23c0.35,0,0.66-0.24,0.73-0.59 L7.53,14H6l-1.8,8.09C4.1,22.56,4.45,23,4.93,23z M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M14,23 c0.55,0,1-0.45,1-1v-5.64c0-0.55-0.22-1.07-0.62-1.45L12.9,13.5l0.6-3c1.07,1.24,2.62,2.13,4.36,2.41c0.6,0.1,1.14-0.38,1.14-0.99 c0-0.49-0.35-0.91-0.83-0.98c-1.53-0.24-2.79-1.14-3.47-2.33l-1-1.6c-0.56-0.89-1.68-1.25-2.66-0.84L7.22,7.78 C6.48,8.1,6,8.82,6,9.62V12c0,0.55,0.45,1,1,1s1-0.45,1-1V9.6l1.8-0.7L7.25,21.76C7.12,22.4,7.61,23,8.27,23 c0.49,0,0.91-0.34,1.02-0.81L10.9,15l2.1,2v5C13,22.55,13.45,23,14,23z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M11.25,18c0.41,0,0.75-0.34,0.75-0.75v-3.89c0-0.27-0.11-0.52-0.29-0.71l-1.17-1.17l0.49-2.48c0.74,0.98,1.82,1.68,3.07,1.91 c0.42,0.08,0.83-0.2,0.89-0.62c0.06-0.42-0.24-0.79-0.64-0.84c-2.46-0.28-2.43-2.2-3.46-3.03c-0.57-0.46-1.35-0.57-2.03-0.28 L5.61,7.53C5.24,7.69,5,8.05,5,8.46v1.79c0,0.42,0.35,0.76,0.77,0.75c0.41-0.01,0.73-0.37,0.73-0.78l0-1.44l1.65-0.7L6.38,17.1 C6.29,17.57,6.64,18,7.11,18c0.37,0,0.68-0.27,0.75-0.63l1.06-5.39l1.58,1.59v3.68C10.5,17.66,10.84,18,11.25,18z M14.5,18 c0.28,0,0.5-0.22,0.5-0.5V12h-1v5.5C14,17.78,14.22,18,14.5,18z M4.23,18c0.23,0,0.44-0.16,0.49-0.39L6.03,12H5l-1.26,5.38 C3.67,17.7,3.91,18,4.23,18L4.23,18z\\\"></path>\"\n      }\n    }\n  },\n  \"face_4\": {\n    \"name\": \"face_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2c-0.96,0-1.88,0.14-2.75,0.39C8.37,0.96,6.8,0,5,0C2.24,0,0,2.24,0,5c0,1.8,0.96,3.37,2.39,4.25 C2.14,10.12,2,11.04,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0.01-0.15 c2.6-0.98,4.68-2.99,5.74-5.55C11.58,8.56,14.37,10,17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12 C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M10,2C9.18,2,8.38,2.12,7.64,2.36C7.01,0.97,5.62,0,4,0C1.79,0,0,1.79,0,4c0,1.62,0.97,3.01,2.36,3.64 C2.12,8.38,2,9.18,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.14,0.03-0.28,0.04-0.42C5.66,8.87,7.38,7.3,8.29,5.29c2.28,2.44,5.34,3.04,7.84,2.55c0.24,0.68,0.38,1.4,0.38,2.16 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"workspace_premium\": {\n    \"name\": \"workspace_premium\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.92,12.75L12,11.93l1.07,0.81c0.39,0.29,0.92-0.08,0.78-0.55l-0.42-1.36l1.2-0.95C15,9.6,14.79,9,14.31,9h-1.4 l-0.43-1.34c-0.15-0.46-0.8-0.46-0.95,0L11.09,9H9.68C9.21,9,9,9.6,9.37,9.89l1.19,0.95l-0.42,1.36 C10,12.67,10.53,13.04,10.92,12.75z M6,21.61c0,0.68,0.67,1.16,1.32,0.95L12,21l4.68,1.56C17.33,22.78,18,22.3,18,21.61v-6.33 c1.24-1.41,2-3.25,2-5.28c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,2.03,0.76,3.87,2,5.28V21.61z M12,4c3.31,0,6,2.69,6,6s-2.69,6-6,6 s-6-2.69-6-6S8.69,4,12,4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.5,14.4v-1.22c1.23-1.18,2-2.84,2-4.68C16.5,4.91,13.59,2,10,2S3.5,4.91,3.5,8.5c0,1.83,0.76,3.48,1.97,4.66v1.5 M5.47,14.66v3.09c0,0.64,0.59,1.11,1.22,0.98L10,18l3.28,0.73c0.62,0.14,1.22-0.34,1.22-0.98V14.4 M10,13.5c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S12.76,13.5,10,13.5z M9.38,10.41L10,9.94l0.61,0.46c0.39,0.29,0.92-0.08,0.78-0.55l-0.24-0.79l0.73-0.58 c0.37-0.29,0.16-0.89-0.31-0.89h-0.84l-0.25-0.78c-0.15-0.46-0.8-0.46-0.95,0L9.27,7.6H8.43c-0.47,0-0.68,0.6-0.31,0.89l0.73,0.58 L8.6,9.87C8.46,10.33,9,10.71,9.38,10.41z\\\"></path>\"\n      }\n    }\n  },\n  \"south_america\": {\n    \"name\": \"south_america\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M4,12c0-1.95,0.7-3.74,1.87-5.13L9,10 v1c0,1.1,0.9,2,2,2v5.59c0,0.27,0.11,0.52,0.29,0.71L12,20C7.58,20,4,16.42,4,12z M13,19.94V18l3.75-5.62 c0.16-0.25,0.25-0.54,0.25-0.83V10.5c0-0.55-0.45-1-1-1h-1.5l-1.4-1.75C12.72,7.28,12.15,7,11.54,7H8V5.07C9.18,4.39,10.54,4,12,4 c4.41,0,8,3.59,8,8C20,16.07,16.94,19.44,13,19.94z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.54,0.54-2.95,1.43-4.07L7.5,8.5v1 C7.5,10.33,8.17,11,9,11v4.17c0,0.22,0.07,0.43,0.2,0.6l0.55,0.73C6.28,16.36,3.5,13.5,3.5,10z M10.5,16.48V15l3.32-4.74 C13.94,10.09,14,9.89,14,9.68V9c0-0.55-0.45-1-1-1h-1.2l-1.15-1.44C10.37,6.21,9.93,6,9.48,6H6.5V4.52C7.51,3.88,8.71,3.5,10,3.5 c3.58,0,6.5,2.92,6.5,6.5C16.5,13.42,13.85,16.22,10.5,16.48z\\\"></path>\"\n      }\n    }\n  },\n  \"share\": {\n    \"name\": \"share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_add\": {\n    \"name\": \"notification_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z M14,9c0,2.61,1.67,4.83,4,5.66L18,17h1c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H5 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h1v-7c0-2.79,1.91-5.14,4.5-5.8V3.5C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7 c0.71,0.18,1.36,0.49,1.95,0.9C14.54,6.14,14,7.51,14,9z M23,8h-2V6c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2h-2 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h2c0.55,0,1-0.45,1-1v0 C24,8.45,23.55,8,23,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M15,11.03C13.52,10.3,12.5,8.77,12.5,7c0-0.73,0.17-1.41,0.48-2.02C12.4,4.56,11.73,4.25,11,4.1V3.03 c0-0.53-0.4-1-0.93-1.03C9.48,1.96,9,2.43,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4.75C4.34,14,4,14.34,4,14.75v0 c0,0.41,0.34,0.75,0.75,0.75h10.5c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H15L15,11.03z M10,18 c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z M19.31,6.31h-1.56V4.75C17.75,4.34,17.41,4,17,4l0,0 c-0.41,0-0.75,0.34-0.75,0.75v1.56h-1.56C14.31,6.31,14,6.62,14,7v0c0,0.38,0.31,0.69,0.69,0.69h1.56v1.56 C16.25,9.66,16.59,10,17,10l0,0c0.41,0,0.75-0.34,0.75-0.75V7.69h1.56C19.69,7.69,20,7.38,20,7v0C20,6.62,19.69,6.31,19.31,6.31z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pages\": {\n    \"name\": \"pages\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5v6h5l-.6-2.38c-.18-.74.48-1.4 1.22-1.22L11 8V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-2.38.6c-.73.18-1.4-.48-1.21-1.21L8 13zm7.38 3.6L13 16v5h6c1.1 0 2-.9 2-2v-6h-5l.6 2.38c.18.74-.48 1.4-1.22 1.22zM19 3h-6v5l2.38-.6c.73-.18 1.4.48 1.21 1.21L16 11h5V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_very_satisfied\": {\n    \"name\": \"sentiment_very_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.88 9.94l.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.88-.88c-.39-.39-1.02-.39-1.41 0l-.89.88c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0l.53-.53zM12 17.5c2.03 0 3.8-1.11 4.75-2.75.19-.33-.05-.75-.44-.75H7.69c-.38 0-.63.42-.44.75.95 1.64 2.72 2.75 4.75 2.75zm1.53-7.03c.29.29.77.29 1.06 0l.53-.53.53.53c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-.88-.88c-.39-.39-1.02-.39-1.41 0l-.88.88c-.3.29-.3.77-.01 1.06zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_callback\": {\n    \"name\": \"phone_callback\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.23 15.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98zM13 11h4c.55 0 1-.45 1-1s-.45-1-1-1h-1.59l4.31-4.31c.39-.39.39-1.02 0-1.41s-1.02-.39-1.41 0L14 7.59V6c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_individual_suite\": {\n    \"name\": \"airline_seat_individual_suite\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V8c0-.55-.45-1-1-1s-1 .45-1 1v7c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-4c0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_lock\": {\n    \"name\": \"vpn_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.92,11c0.44,3.63-1.52,5.85-2.02,6.39C17.64,16.58,16.9,16,16,16h-1v-3c0-0.55-0.45-1-1-1H8v-2h2c0.55,0,1-0.45,1-1V7h2 c1.1,0,2-0.9,2-2V2.46C14.05,2.16,13.05,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c5.73,0,10.51-4.86,9.95-11H19.92z M11,19.93 C7.05,19.44,4,16.08,4,12c0-0.62,0.08-1.21,0.21-1.79L9,15v1c0,1.1,0.9,2,2,2V19.93z M22,4V3.11c0-1-0.68-1.92-1.66-2.08 C19.08,0.82,18,1.79,18,3v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V5C23,4.45,22.55,4,22,4z M21,4h-2V3 c0-0.55,0.45-1,1-1s1,0.45,1,1V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phone_forwarded\": {\n    \"name\": \"phone_forwarded\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.65 5.65l-3.79-3.79c-.32-.32-.86-.1-.86.35V4h-3.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5H18v1.79c0 .45.54.67.85.35l3.79-3.79c.2-.19.2-.51.01-.7zm-3.42 9.61l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_paused\": {\n    \"name\": \"phone_paused\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 3c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm3 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zm.23 11.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi\": {\n    \"name\": \"wifi\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.06 10.06c.51.51 1.32.56 1.87.1 4.67-3.84 11.45-3.84 16.13-.01.56.46 1.38.42 1.89-.09.59-.59.55-1.57-.1-2.1-5.71-4.67-13.97-4.67-19.69 0-.65.52-.7 1.5-.1 2.1zm7.76 7.76l1.47 1.47c.39.39 1.02.39 1.41 0l1.47-1.47c.47-.47.37-1.28-.23-1.59-1.22-.63-2.68-.63-3.91 0-.57.31-.68 1.12-.21 1.59zm-3.73-3.73c.49.49 1.26.54 1.83.13 2.44-1.73 5.72-1.73 8.16 0 .57.4 1.34.36 1.83-.13l.01-.01c.6-.6.56-1.62-.13-2.11-3.44-2.49-8.13-2.49-11.58 0-.69.5-.73 1.51-.12 2.12z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat_angled\": {\n    \"name\": \"airline_seat_flat_angled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.25 14.29l-.69 1.89L9.2 11.71l1.39-3.79c.38-1.03 1.52-1.56 2.56-1.19l6.69 2.41c2.1.76 3.18 3.06 2.41 5.15zm-19.8-1.81l5.55 2V18c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-.63l3.58 1.29c.52.19 1.1-.08 1.29-.6.19-.52-.08-1.1-.6-1.29L3.13 10.59c-.52-.19-1.1.08-1.29.6-.18.52.09 1.1.61 1.29zM7.3 10.2c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"vibration\": {\n    \"name\": \"vibration\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 15c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1zm3 2c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zm18-7v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1zm-2 7c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z\\\"></path>\"\n      }\n    }\n  },\n  \"more\": {\n    \"name\": \"more\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L.37 11.45c-.22.34-.22.77 0 1.11l5.04 7.56c.36.52.97.88 1.66.88H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"support_agent\": {\n    \"name\": \"support_agent\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h0c0.55,0,1-0.45,1-1 l0-4.81c0-3.83,2.95-7.18,6.78-7.29c3.96-0.12,7.22,3.06,7.22,7V19h-7c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h7c1.1,0,2-0.9,2-2 v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6C9.32,6,6.12,6.51,6.01,9.88c1.72-0.4,3.06-1.77,3.4-3.51c0.53,1.15,1.96,2.8,4.43,2.6C13.39,7.26,11.85,6,10,6z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><path d=\\\"M4,14h0.5C4.78,14,5,13.78,5,13.5v-3.33c0-2.66,2.01-4.99,4.67-5.16C12.58,4.82,15,7.13,15,10v5H9.5 C9.22,15,9,15.22,9,15.5v0C9,15.78,9.22,16,9.5,16H15c0.55,0,1-0.45,1-1v-1c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1 c0-3.31-2.69-6-6-6s-6,2.69-6,6c-0.55,0-1,0.45-1,1v2C3,13.55,3.45,14,4,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"voice_chat\": {\n    \"name\": \"voice_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3.62 10.7L14 10.8V13c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.2l2.38-1.9c.65-.52 1.62-.06 1.62.78v3.84c0 .84-.97 1.3-1.62.78z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_normal\": {\n    \"name\": \"airline_seat_legroom_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v5c0 1.1.9 2 2 2h2.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_special\": {\n    \"name\": \"folder_special\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-3.06 10.41L15 15.28l-1.94 1.13c-.38.22-.84-.12-.74-.55l.51-2.2-1.69-1.46c-.33-.29-.16-.84.28-.88l2.23-.19.88-2.06c.17-.4.75-.4.92 0l.88 2.06 2.23.19c.44.04.62.59.28.88l-1.69 1.46.51 2.2c.11.43-.35.77-.72.55z\\\"></path>\"\n      }\n    }\n  },\n  \"ondemand_video\": {\n    \"name\": \"ondemand_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-5.52-5.13l-3.98 2.28c-.67.38-1.5-.11-1.5-.87V8.72c0-.77.83-1.25 1.5-.87l3.98 2.28c.67.39.67 1.35 0 1.74z\\\"></path>\"\n      }\n    }\n  },\n  \"imagesearch_roller\": {\n    \"name\": \"imagesearch_roller\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3v4c0,0.55-0.45,1-1,1H7C6.45,8,6,7.55,6,7V6H4v4h8c1.1,0,2,0.9,2,2v3h1c0.55,0,1,0.45,1,1v6c0,0.55-0.45,1-1,1h-4 c-0.55,0-1-0.45-1-1v-6c0-0.55,0.45-1,1-1h1v-3H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h2V3c0-0.55,0.45-1,1-1h12 C19.55,2,20,2.45,20,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_tree\": {\n    \"name\": \"account_tree\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,11h3c1.11,0,2-0.9,2-2V5c0-1.11-0.9-2-2-2h-3c-1.11,0-2,0.9-2,2v1H9.01V5c0-1.11-0.9-2-2-2H4C2.9,3,2,3.9,2,5v4 c0,1.11,0.9,2,2,2h3c1.11,0,2-0.9,2-2V8H11v7.01c0,1.65,1.34,2.99,2.99,2.99H15v1c0,1.11,0.9,2,2,2h3c1.11,0,2-0.9,2-2v-4 c0-1.11-0.9-2-2-2h-3c-1.11,0-2,0.9-2,2v1h-1.01C13.45,16,13,15.55,13,15.01V8h2v1C15,10.1,15.9,11,17,11z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_audio\": {\n    \"name\": \"bluetooth_audio\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.98 10.28l-1.38 1.38c-.2.2-.2.51 0 .71l1.38 1.38c.28.28.75.15.85-.23.11-.5.17-1 .17-1.52 0-.51-.06-1.01-.18-1.48-.09-.38-.56-.52-.84-.24zm4.12-2.5c-.25-.55-.98-.67-1.4-.24-.26.26-.31.64-.17.98.46 1.07.72 2.24.72 3.47 0 1.24-.26 2.42-.73 3.49-.14.32-.09.69.16.94.41.41 1.1.29 1.35-.23.63-1.3.98-2.76.98-4.3-.01-1.45-.33-2.85-.91-4.11zM11.39 12l3.59-3.58c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.18-1.71.71V9.6L5.09 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L8.57 12l-4.89 4.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l3.89-3.89v6.18c0 .89 1.08 1.34 1.71.71l4.3-4.3c.39-.39.39-1.02 0-1.42L11.39 12zm-.41-6.17l1.88 1.88-1.88 1.88V5.83zm0 12.34v-3.76l1.88 1.88-1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card\": {\n    \"name\": \"sd_card\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.6.88-.6 1.4V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"time_to_leave\": {\n    \"name\": \"time_to_leave\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 19.33 6 18.5V18h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 10H5z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_extra\": {\n    \"name\": \"airline_seat_legroom_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l2.56 5.25c.48.98 1.64 1.39 2.63.94l1.95-.89c.76-.36 1.09-1.3.69-2.06z\\\"></path>\"\n      }\n    }\n  },\n  \"power\": {\n    \"name\": \"power\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.01 7L16 4c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V4c0-.55-.45-1-1-1s-1 .45-1 1v3h-.01C6.9 7 6 7.9 6 8.99v4.66c0 .53.21 1.04.58 1.41L9.5 18v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2l2.92-2.92c.37-.38.58-.89.58-1.42V8.99C18 7.89 17.11 7 16.01 7z\\\"></path>\"\n      }\n    }\n  },\n  \"live_tv\": {\n    \"name\": \"live_tv\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.5 17.15l3.98-2.28c.67-.38.67-1.35 0-1.74l-3.98-2.28c-.67-.38-1.5.11-1.5.87v4.55c0 .77.83 1.26 1.5.88zM21 6h-7.59l2.94-2.94c.2-.2.2-.51 0-.71s-.51-.2-.71 0L12 5.99 8.36 2.35c-.2-.2-.51-.2-.71 0s-.2.51 0 .71L10.59 6H3c-1.1 0-2 .89-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"sms_failed\": {\n    \"name\": \"sms_failed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_off\": {\n    \"name\": \"do_not_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11v2h-1.17l4.51,4.51C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10C9.96,2,8.07,2.61,6.49,3.66L13.83,11H17z M2.1,4.93l1.56,1.56c-1.37,2.07-2,4.68-1.48,7.45c0.75,3.95,3.92,7.13,7.88,7.88c2.77,0.52,5.38-0.1,7.45-1.48l1.56,1.56 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0 C1.71,3.91,1.71,4.54,2.1,4.93z M7,11h1.17l2,2H7V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phone_locked\": {\n    \"name\": \"phone_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5V4.11c0-1-0.68-1.92-1.66-2.08C17.08,1.82,16,2.79,16,4v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4 c0.55,0,1-0.45,1-1V6C21,5.45,20.55,5,20,5z M19,5h-2V4c0-0.55,0.45-1,1-1s1,0.45,1,1V5z\\\"></path><path d=\\\"M15.63,14.4l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3 L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43 c0.56,0.03,1.03-0.44,1.03-1l0-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C16.2,14.07,15.86,14.17,15.63,14.4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17,13.18L17,16c0,0.59-0.51,1.04-1.1,1C9.04,16.46,3.54,10.96,3,4.1C2.96,3.51,3.41,3,4,3l2.82,0 C7.29,3,7.7,3.33,7.8,3.78L8.3,6.01c0.07,0.33-0.03,0.68-0.27,0.92L5.98,8.98c1.15,2.11,2.89,3.85,5,5l2.08-2 c0.24-0.24,0.59-0.34,0.92-0.27l2.23,0.49C16.67,12.3,17,12.71,17,13.18z M17,5.5v3C17,8.78,16.78,9,16.5,9h-4 C12.22,9,12,8.78,12,8.5v-3C12,5.22,12.22,5,12.5,5H13V4c0-0.82,0.67-1.5,1.5-1.5S16,3.18,16,4v1h0.5C16.78,5,17,5.22,17,5.5z M13.75,5h1.5V4c0-0.41-0.34-0.75-0.75-0.75c-0.41,0-0.75,0.34-0.75,0.75V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"do_not_disturb\": {\n    \"name\": \"do_not_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-1.85,0.63-3.55,1.69-4.9L16.9,18.31C15.55,19.37,13.85,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.55,18.31,16.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"phone_in_talk\": {\n    \"name\": \"phone_in_talk\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.88 5.05c3.18.4 5.67 2.89 6.07 6.07.06.51.49.88.99.88.04 0 .08 0 .12-.01.55-.07.94-.57.87-1.12-.51-4.09-3.72-7.3-7.81-7.81-.55-.06-1.05.33-1.11.88-.07.55.32 1.05.87 1.11zm.38 2.11c-.53-.14-1.08.18-1.22.72s.18 1.08.72 1.22c1.05.27 1.87 1.09 2.15 2.15.12.45.52.75.97.75.08 0 .17-.01.25-.03.53-.14.85-.69.72-1.22-.47-1.77-1.84-3.14-3.59-3.59zm5.97 8.1l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_off\": {\n    \"name\": \"wifi_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.06 10.14c.56.46 1.38.42 1.89-.09.59-.59.55-1.57-.1-2.1-3.59-2.94-8.2-4.03-12.55-3.26l2.59 2.59c2.89-.03 5.8.92 8.17 2.86zm-2.27 1.83c-.78-.57-1.63-1-2.52-1.3l2.95 2.95c.24-.58.1-1.27-.43-1.65zm-3.84 4.26c-1.22-.63-2.68-.63-3.91 0-.59.31-.7 1.12-.23 1.59l1.47 1.47c.39.39 1.02.39 1.41 0l1.47-1.47c.49-.47.39-1.28-.21-1.59zm5.73 1.67L4.12 2.34c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L5.05 6.1c-1.01.5-1.99 1.11-2.89 1.85-.65.53-.69 1.51-.1 2.1.51.51 1.32.56 1.87.1 1-.82 2.1-1.46 3.25-1.93l2.23 2.23c-1.13.3-2.21.8-3.19 1.51-.69.5-.73 1.51-.13 2.11l.01.01c.49.49 1.26.54 1.83.13 1.19-.84 2.58-1.26 3.97-1.29l6.37 6.37c.39.39 1.02.39 1.41 0 .39-.37.39-1 0-1.39z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption\": {\n    \"name\": \"no_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zm-3.78-.49c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l1.33 1.33C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l.29.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"tv_off\": {\n    \"name\": \"tv_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 8v9.88l1.85 1.85c.1-.22.15-.47.15-.73V7c0-1.11-.9-2-2-2h-7.59l2.94-2.94c.2-.2.2-.51 0-.71s-.51-.2-.71 0L12 4.99 8.36 1.35c-.2-.2-.51-.2-.71 0s-.2.51 0 .71L10.59 5H8.12l2 2H20c.55 0 1 .45 1 1zM3.12 2.83c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l.82.82C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.29 1.29c.39.39 1.02.39 1.41 0 .36-.36.37-.92.07-1.31h.03L3.12 2.83zM3 18V8c0-.55.45-1 1-1h.46l12 12H4c-.55 0-1-.45-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_eta\": {\n    \"name\": \"drive_eta\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 19.33 6 18.5V18h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 10H5z\\\"></path>\"\n      }\n    }\n  },\n  \"network_locked\": {\n    \"name\": \"network_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12l0-7.58c0-0.89-1.08-1.34-1.71-0.71L3.71,20.29C3.08,20.92,3.52,22,4.41,22H15v-6c0-2.21,1.79-4,4-4H22z M22,17v-1 c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C23,17.45,22.55,17,22,17z M19,16c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-2V16z\\\"></path>\"\n      }\n    }\n  },\n  \"event_note\": {\n    \"name\": \"event_note\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 10H8c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm3-7h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1zm-5-5H8c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_missed\": {\n    \"name\": \"phone_missed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.09 16.2c-6.33-5.59-15.86-5.59-22.18 0-.84.74-.84 2.05-.05 2.84l1.2 1.2c.71.71 1.84.77 2.62.15l1.97-1.57c.47-.37.75-.94.75-1.55V14.7c2.98-.97 6.21-.98 9.2 0v2.58c0 .6.28 1.17.75 1.55l1.96 1.56c.79.62 1.91.56 2.62-.15l1.2-1.2c.8-.79.79-2.1-.04-2.84zM6 9c.55 0 1-.45 1-1V6.43l4.24 4.24c.39.39 1.02.39 1.41 0l5.66-5.66c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-4.95 4.95L8.4 5H10c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"priority_high\": {\n    \"name\": \"priority_high\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"19\\\" r=\\\"2\\\"></circle><path d=\\\"M12 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_alt\": {\n    \"name\": \"do_not_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M4,12c0-4.4,3.6-8,8-8c1.8,0,3.5,0.6,4.9,1.7L5.7,16.9 C4.6,15.5,4,13.8,4,12z M12,20c-1.8,0-3.5-0.6-4.9-1.7L18.3,7.1C19.4,8.5,20,10.2,20,12C20,16.4,16.4,20,12,20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"confirmation_number\": {\n    \"name\": \"confirmation_number\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 8.54V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v2.54c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7V18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76s.43-1.42 1.06-1.76c.6-.33.94-1.01.94-1.7zm-9 8.96h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_disabled\": {\n    \"name\": \"sync_disabled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 5.74v-.19c0-.68-.71-1.11-1.32-.82-.19.09-.36.2-.54.3L9.6 6.49c.24-.18.4-.45.4-.75zM20 12c0-2.21-.91-4.2-2.36-5.64l1.51-1.51c.31-.31.09-.85-.36-.85H14v4.79c0 .45.54.67.85.35l1.39-1.39C17.32 8.85 18 10.34 18 12c0 .85-.18 1.66-.5 2.39l1.48 1.48C19.62 14.72 20 13.41 20 12zM3.57 4.7c-.39.39-.39 1.02 0 1.41l1.65 1.65C4.45 9 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64l-1.51 1.51c-.31.31-.09.85.36.85H9.5c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.35l-1.39 1.39C6.68 15.15 6 13.66 6 12c0-1 .26-1.93.69-2.76l8.07 8.07c-.01.02-.01.02-.01.04-.43.12-.75.48-.75.91v.18c0 .68.71 1.11 1.32.82.31-.14.61-.31.9-.49l1.87 1.87c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.98 4.7c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"wc\": {\n    \"name\": \"wc\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 21v-6.5H5c-.55 0-1-.45-1-1V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v4.5c0 .55-.45 1-1 1h-.5V21c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1zM18 21v-5h1.61c.68 0 1.16-.67.95-1.32l-2.1-6.31C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37l-2.1 6.31c-.22.65.26 1.32.95 1.32H15v5c0 .55.45 1 1 1h1c.55 0 1-.45 1-1zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"sms\": {\n    \"name\": \"sms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"tap_and_play\": {\n    \"name\": \"tap_and_play\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.14 16.09c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.95-2.81-5.29-5.77-5.77zM2 20v3h3c0-1.66-1.34-3-3-3zm1.11-7.94c-.59-.06-1.11.4-1.11.99 0 .5.37.94.87.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.88.99.88.59 0 1.06-.51 1-1.1-.51-5.2-4.63-9.32-9.83-9.84zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_reduced\": {\n    \"name\": \"airline_seat_legroom_reduced\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.97 19.2c.18.96-.55 1.8-1.47 1.8h-2.69c-1.3 0-2.26-1.22-1.94-2.49L15 14H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h3c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.66 0-3-1.34-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_problem\": {\n    \"name\": \"sync_problem\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12c0 2.21.91 4.2 2.36 5.64l-1.51 1.51c-.31.31-.09.85.36.85H8.5c.28 0 .5-.22.5-.5v-4.29c0-.45-.54-.67-.85-.35l-1.39 1.39C5.68 15.15 5 13.66 5 12c0-2.39 1.4-4.46 3.43-5.42.34-.16.57-.47.57-.84v-.19c0-.68-.71-1.11-1.32-.82C4.92 5.99 3 8.77 3 12zm8 5h2v-2h-2v2zm8.79-13H15.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35l1.39-1.39C18.32 8.85 19 10.34 19 12c0 2.39-1.4 4.46-3.43 5.42-.34.16-.57.47-.57.84v.18c0 .68.71 1.11 1.32.82C19.08 18.01 21 15.23 21 12c0-2.21-.91-4.2-2.36-5.64l1.51-1.51c.31-.31.09-.85-.36-.85zM12 13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"video_chat\": {\n    \"name\": \"video_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4C2.9,2,2.01,2.9,2.01,4L2,19.58c0,0.89,1.08,1.34,1.71,0.71L6,18h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M16.15,12.15L15,11.01V13c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V7c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v1.99l1.15-1.14 C16.46,7.53,17,7.76,17,8.2v3.59C17,12.24,16.46,12.47,16.15,12.15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v13.29c0,0.45,0.54,0.67,0.85,0.35L5,15h11.5c0.83,0,1.5-0.67,1.5-1.5v-10 C18,2.67,17.33,2,16.5,2z M13.67,10.25L12.5,9.2V11c0,0.55-0.45,1-1,1h-5c-0.55,0-1-0.45-1-1V6c0-0.55,0.45-1,1-1h5 c0.55,0,1,0.45,1,1v1.8l1.17-1.05c0.32-0.29,0.83-0.06,0.83,0.37v2.75C14.5,10.31,13.99,10.54,13.67,10.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airline_seat_recline_normal\": {\n    \"name\": \"airline_seat_recline_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V8c0-.55-.45-1-1-1s-1 .45-1 1v8c0 2.76 2.24 5 5 5h5c.55 0 1-.45 1-1s-.45-1-1-1H9c-1.66 0-3-1.34-3-3zm13.28 3.35l-3.77-3.77c-.37-.37-.88-.58-1.41-.58h-2.6v-3.68c1.09.89 2.66 1.7 4.2 2.02.67.14 1.3-.36 1.3-1.04 0-.53-.39-.96-.92-1.05-1.42-.24-2.88-1.01-3.75-1.97l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l2.78 2.78c.39.39 1.04.39 1.43 0 .4-.39.4-1.03 0-1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_off\": {\n    \"name\": \"directions_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"m21.71 11.29-9-9a.996.996 0 00-1.41 0L8.21 5.38 13 10.17V7.5l3.15 3.15c.2.2.2.51 0 .71l-.98.98 3.45 3.45 3.09-3.09c.38-.38.38-1.01 0-1.41z\\\"></path></g><g><path d=\\\"M6.79 6.79 3.51 3.51A.996.996 0 102.1 4.92L5.38 8.2l-3.09 3.09a.996.996 0 000 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.28 3.28a.996.996 0 101.41-1.41L6.79 6.79zM9.99 14c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.05.02-.1.03-.15l1.97 1.97V14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"event_busy\": {\n    \"name\": \"event_busy\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.84 16.47l1.91-1.91 1.91 1.91c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06l-1.91-1.91 1.91-1.91c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0l-1.91 1.91-1.91-1.91c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.91 1.91-1.91 1.91c-.29.29-.29.77 0 1.06.29.29.77.29 1.06 0zM19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"sim_card_alert\": {\n    \"name\": \"sim_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,2h-7.17C10.3,2,9.79,2.21,9.41,2.59L4.6,7.42C4.23,7.79,4.02,8.3,4.02,8.82L4,20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2 V4C20,2.9,19.1,2,18,2z M12,17L12,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C13,16.55,12.55,17,12,17z M12,13L12,13c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1v3C13,12.55,12.55,13,12,13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_alt\": {\n    \"name\": \"do_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_on\": {\n    \"name\": \"do_not_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M16,13H8c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1 h8c0.55,0,1,0.45,1,1l0,0C17,12.55,16.55,13,16,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_on\": {\n    \"name\": \"do_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"sync\": {\n    \"name\": \"sync\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z\\\"></path>\"\n      }\n    }\n  },\n  \"network_check\": {\n    \"name\": \"network_check\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM2.06 10.06c.51.51 1.33.55 1.89.09 2.76-2.26 6.24-3.18 9.58-2.76l1.19-2.68c-4.35-.78-8.96.3-12.57 3.25-.64.53-.68 1.51-.09 2.1zm19.88 0c.59-.59.55-1.57-.1-2.1-1.36-1.11-2.86-1.95-4.44-2.53l-.53 2.82c1.13.47 2.19 1.09 3.17 1.89.58.46 1.39.43 1.9-.08zm-4.03 4.03c.6-.6.56-1.63-.14-2.12-.46-.33-.94-.61-1.44-.86l-.55 2.92c.11.07.22.14.32.22.57.4 1.33.32 1.81-.16zm-11.83-.01c.5.5 1.27.54 1.85.13.94-.66 2.01-1.06 3.1-1.22l1.28-2.88c-2.13-.06-4.28.54-6.09 1.84-.69.51-.74 1.53-.14 2.13z\\\"></path>\"\n      }\n    }\n  },\n  \"event_available\": {\n    \"name\": \"event_available\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 10.53c-.29-.29-.77-.29-1.06 0l-4.35 4.35L9 13.29c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.94 1.94c.39.39 1.02.39 1.41 0l4.7-4.7c.3-.29.3-.77.01-1.06zM19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"adb\": {\n    \"name\": \"adb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_video\": {\n    \"name\": \"personal_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat\": {\n    \"name\": \"airline_seat_flat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 11v2H9V9c0-1.1.9-2 2-2h7c2.21 0 4 1.79 4 4zM2 15c0 .55.45 1 1 1h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm5.14-2.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z\\\"></path>\"\n      }\n    }\n  },\n  \"mms\": {\n    \"name\": \"mms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5.63 13.19l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_lock\": {\n    \"name\": \"sync_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,19c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h1.73C5.06,16.54,4,14.4,4,12 c0-3.19,1.87-5.93,4.56-7.22C9.23,4.47,10,4.96,10,5.7c0,0.38-0.22,0.72-0.57,0.88C7.41,7.55,6,9.61,6,12c0,1.77,0.78,3.34,2,4.44 V15c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1V19z M15,4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7.56 c1.22,1.1,2,2.67,2,4.44h2c0-2.4-1.06-4.54-2.73-6H19c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H15z M20,17v-1c0-1.1-0.9-2-2-2 s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C21,17.45,20.55,17,20,17z M19,17h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,14H16v-1c0-0.82-0.67-1.5-1.5-1.5S13,12.18,13,13v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C17,14.22,16.78,14,16.5,14z M15.25,14h-1.5v-1c0-0.41,0.34-0.75,0.75-0.75 c0.41,0,0.75,0.34,0.75,0.75V14z M4,10c0-2.39,1.4-4.45,3.42-5.41C7.92,4.35,8.5,4.72,8.5,5.27c0,0.29-0.17,0.56-0.44,0.68 C6.55,6.68,5.5,8.21,5.5,10c0,1.32,0.59,2.5,1.5,3.32l0-0.54c0-0.41,0.32-0.77,0.73-0.78c0.42-0.01,0.77,0.33,0.77,0.75v2.75 C8.5,15.78,8.28,16,8,16H5.28c-0.41,0-0.77-0.32-0.78-0.73c-0.01-0.42,0.33-0.77,0.75-0.77h0.8C4.8,13.4,4,11.8,4,10z M12.25,8 c-0.41,0-0.75-0.34-0.75-0.75V4.5C11.5,4.22,11.72,4,12,4h2.75c0.41,0,0.75,0.34,0.75,0.75S15.16,5.5,14.75,5.5h-0.8 C15.2,6.6,16,8.2,16,10h-1.5c-0.08-1.32-0.59-2.5-1.5-3.32v0.57C13,7.66,12.66,8,12.25,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_off\": {\n    \"name\": \"do_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 11v2h-.88l4.33 4.33C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55L14.12 11H17zm4.17 9.88L3.12 2.83c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l2.07 2.07C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78l2.07 2.07c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM7 13v-2h1.46l2 2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"do_disturb\": {\n    \"name\": \"do_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_recline_extra\": {\n    \"name\": \"airline_seat_recline_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 20c0-.55-.45-1-1-1H8.93c-1.48 0-2.74-1.08-2.96-2.54L4.16 7.78C4.07 7.33 3.67 7 3.2 7c-.62 0-1.08.57-.96 1.18l1.75 8.58C4.37 19.2 6.47 21 8.94 21H15c.55 0 1-.45 1-1zm-.46-5h-4.19l-1.03-4.1c1.28.72 2.63 1.28 4.1 1.3.58.01 1.05-.49 1.05-1.07 0-.59-.49-1.04-1.08-1.06-1.31-.04-2.63-.56-3.61-1.33L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.09 2.42c.42.33 1.02.29 1.39-.08.45-.45.4-1.18-.1-1.57l-4.29-3.35c-.35-.27-.78-.42-1.23-.42z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card_alert\": {\n    \"name\": \"sd_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.58.88-.58 1.4L4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v3c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"disc_full\": {\n    \"name\": \"disc_full\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 16h2v-2h-2v2zm0-8v3c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_update\": {\n    \"name\": \"system_update\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-2.21-6H13V9c0-.55-.45-1-1-1s-1 .45-1 1v4H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_bluetooth_speaker\": {\n    \"name\": \"phone_bluetooth_speaker\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.23 15.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98zm-2.44-9.25l-2.45 2.45c-.2.2-.2.52 0 .71.2.2.52.2.71 0L17 7.23v3.15c0 .2.12.39.31.47.06.03.13.04.19.04.13 0 .26-.05.36-.15l2.18-2.18c.2-.2.2-.52 0-.71l-1.83-1.83 1.83-1.83c.09-.09.15-.22.15-.36s-.05-.26-.15-.36l-2.18-2.18c-.14-.14-.36-.19-.55-.11-.19.08-.31.26-.31.46v3.15l-1.95-1.95c-.2-.2-.52-.2-.71 0-.2.2-.2.52 0 .71l2.45 2.46zm1.22-3.15l.96.96-.96.96V2.86zm0 4.37l.96.96-.96.96V7.23z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption_gmailerrorred\": {\n    \"name\": \"no_encryption_gmailerrorred\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zm-3.78-.49c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l1.33 1.33C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l.29.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"running_with_errors\": {\n    \"name\": \"running_with_errors\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,18c-0.55,0-1-0.45-1-1v-6c0-0.55,0.45-1,1-1s1,0.45,1,1v6C22,17.55,21.55,18,21,18z M21,20c-0.55,0-1,0.45-1,1 s0.45,1,1,1s1-0.45,1-1S21.55,20,21,20z M18,17.29C16.53,18.95,14.39,20,12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8v9l7.55-7.55 C17.72,3.34,15.02,2,12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c2.25,0,4.33-0.74,6-2V17.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.25,15c-0.41,0-0.75-0.34-0.75-0.75v-5.5C16.5,8.34,16.84,8,17.25,8S18,8.34,18,8.75v5.5C18,14.66,17.66,15,17.25,15z M17.25,16.5c-0.41,0-0.75,0.34-0.75,0.75S16.84,18,17.25,18S18,17.66,18,17.25S17.66,16.5,17.25,16.5z M10,3.5 c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5c2.01,0,3.81-0.92,5-2.35l0,2.1c-1.37,1.1-3.11,1.75-5,1.75c-4.42,0-8-3.58-8-8 s3.58-8,8-8l0,0c2.46,0,4.67,1.11,6.13,2.87L10,11V3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_off\": {\n    \"name\": \"power_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13.66V8.99c0-1-1.01-2-2-1.99V4c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.88l7.63 7.63c.15-.3.25-.63.25-.97zM10 4c0-.55-.45-1-1-1s-1 .45-1 1v.88l2 2V4zm10.15 15.86l-7.66-7.66-5.1-5.1-2.56-2.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l2.63 2.63c-.03.13-.05.27-.05.41v4.66c0 .53.21 1.04.58 1.41L9.5 18v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2l.48-.48 3.76 3.76c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"enhanced_encryption\": {\n    \"name\": \"enhanced_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM15 16h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"turn_slight_right\": {\n    \"name\": \"turn_slight_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.34,5L12.34,5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1v3.66c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V7.41l-5,5V19 c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-6.58c0-0.53,0.21-1.04,0.59-1.41l5-5h-1.24C12.79,6,12.34,5.55,12.34,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.25,16C8.66,16,9,15.66,9,15.25v-4.69l4-4l0,0.94c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75l0-2.5 c0-0.55-0.45-1-1-1L11,4c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75l0.94,0l-4,4C7.66,9.78,7.5,10.16,7.5,10.56v4.69 C7.5,15.66,7.84,16,8.25,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_crash\": {\n    \"name\": \"no_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.5,24c0.82,0,1.5-0.67,1.5-1.5v-7.16c0-0.22-0.04-0.45-0.11-0.66l-1.97-5.67C18.72,8.42,18.16,8,17.5,8h-11 C5.84,8,5.29,8.42,5.08,9.01l-1.97,5.67C3.04,14.89,3,15.11,3,15.34v7.16C3,23.33,3.68,24,4.5,24S6,23.33,6,22.5V22h12v0.5 C18,23.33,18.67,24,19.5,24z M6.85,10h10.29l1.04,3H5.81L6.85,10z M6,17.5C6,16.67,6.67,16,7.5,16S9,16.67,9,17.5S8.33,19,7.5,19 S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19S15,18.33,15,17.5z M16.24,0.71 c0.39,0.39,0.39,1.02,0,1.41l-3.54,3.54c-0.39,0.39-1.02,0.39-1.41,0L9.88,4.24c-0.39-0.39-0.39-1.02,0-1.41l0,0 c0.39-0.39,1.02-0.39,1.41,0L12,3.54l2.83-2.83C15.22,0.32,15.85,0.32,16.24,0.71z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.41,1.53c0.29,0.29,0.29,0.77,0,1.06L9.93,5.07c-0.29,0.29-0.77,0.29-1.06,0L7.81,4.01c-0.29-0.29-0.29-0.77,0-1.06 c0.29-0.29,0.77-0.29,1.06,0L9.4,3.47l1.94-1.94C11.64,1.24,12.11,1.24,12.41,1.53z M16,19c-0.55,0-1-0.45-1-1v-0.5H5V18 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1l0-5.71c0-0.19,0.04-0.38,0.11-0.56l1.52-3.79C4.85,7.37,5.4,7,6.02,7h7.97 c0.61,0,1.16,0.37,1.39,0.94l1.52,3.79C16.96,11.91,17,12.1,17,12.29V18C17,18.55,16.55,19,16,19z M6.02,8.5l-1,2.5h9.97l-1-2.5 H6.02z M6.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1 s0.45,1,1,1c0.55,0,1-0.45,1-1S14.05,13.25,13.5,13.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_location_alt\": {\n    \"name\": \"edit_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M13.54,13H10c-0.55,0-1-0.45-1-1V8.46C9,8.2,9.11,7.94,9.29,7.76l5.32-5.32C13.78,2.16,12.9,2,12,2c-4.2,0-8,3.22-8,8.2 c0,3.18,2.44,6.92,7.33,11.22c0.38,0.33,0.96,0.33,1.34,0C17.56,17.12,20,13.37,20,10.2c0-1.01-0.16-1.94-0.45-2.8l-5.31,5.31 C14.06,12.89,13.8,13,13.54,13z\\\"></path></g><polygon points=\\\"11,11 13.12,11 19.28,4.84 17.16,2.72 11,8.88\\\"></polygon><path d=\\\"M20.71,2L20,1.29c-0.39-0.39-1.02-0.39-1.41,0l-0.72,0.72l2.12,2.12l0.72-0.72C21.1,3.02,21.1,2.39,20.71,2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><polygon points=\\\"9,10 10.41,10 15.44,4.97 14.03,3.56 9,8.59\\\"></polygon></g><g><path d=\\\"M10.62,11.5H8.5c-0.55,0-1-0.45-1-1V8.38c0-0.27,0.11-0.52,0.29-0.71l5.02-5.02C11.96,2.24,11.01,2,10,2 C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s6.5-5.16,6.5-9.5c0-0.74-0.13-1.45-0.36-2.11l-4.82,4.82 C11.14,11.39,10.89,11.5,10.62,11.5z\\\"></path></g><g><path d=\\\"M16.85,2.85l-0.71-0.71c-0.2-0.2-0.51-0.2-0.71,0l-0.71,0.71l1.41,1.41l0.71-0.71C17.05,3.37,17.05,3.05,16.85,2.85z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"temple_hindu\": {\n    \"name\": \"temple_hindu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.6,11 17.4,11 16.5,8 7.5,8\\\"></polygon><path d=\\\"M20 12v1H4v-1c0-.55-.45-1-1-1s-1 .45-1 1v8c0 1.1.9 2 2 2h6v-3c0-1.1.9-2 2-2s2 .9 2 2v3h6c1.1 0 2-.9 2-2v-8c0-.55-.45-1-1-1s-1 .45-1 1zm-4.1-6L15 3V2c0-.55-.45-1-1-1s-1 .45-1 1v1h-2.03V2c0-.55-.45-1-1-1s-1 .45-1 1v1.12L8.1 6h7.8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13.5,7 6.5,7 5.56,9.5 14.44,9.5\\\"></polygon><path d=\\\"M12 3V1.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75V3h-1V1.75c0-.41-.34-.75-.75-.75S8 1.34 8 1.75V3l-.94 2.5h5.88L12 3zm5.25 6c-.41 0-.75.34-.75.75V11h-13V9.75c0-.41-.34-.75-.75-.75S2 9.34 2 9.75V18h6v-2c0-1.1.9-2 2-2s2 .9 2 2v2h6V9.75c0-.41-.34-.75-.75-.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dinner_dining\": {\n    \"name\": \"dinner_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M2.85,19.85l1,1C3.95,20.95,4.07,21,4.21,21h15.59c0.13,0,0.26-0.05,0.35-0.15l1-1c0.31-0.31,0.09-0.85-0.35-0.85H3.21 C2.76,19,2.54,19.54,2.85,19.85z\\\"></path><path d=\\\"M3,18l16.97,0c0,0,0,0,0,0c0.29-3.26-2.28-6-5.48-6c-2.35,0-4.35,1.48-5.14,3.55C8.94,15.32,8.48,15.17,8,15.08V9h1.75 C10.99,9,12,7.99,12,6.75v0h8.25C20.66,6.75,21,6.41,21,6s-0.34-0.75-0.75-0.75H12v0C12,4.01,10.99,3,9.75,3h-6 C3.34,3,3,3.34,3,3.75S3.34,4.5,3.75,4.5H4v0.75H3.75C3.34,5.25,3,5.59,3,6s0.34,0.75,0.75,0.75H4V7.5H3.75 C3.34,7.5,3,7.84,3,8.25S3.34,9,3.75,9H4v7.39C3.56,16.85,3.22,17.39,3,18z M8,4.5h2v0.75H8V4.5z M8,6.75h2V7.5H8V6.75z M5.5,4.5 h1v0.75h-1V4.5z M5.5,6.75h1V7.5h-1V6.75z M5.5,9h1v6.06c-0.35,0.06-0.68,0.17-1,0.3V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,14.5h5h1.3H17c0-2.49-2.01-4.5-4.5-4.5c-2.03,0-3.72,1.35-4.28,3.19C7.86,12.92,7.45,12.73,7,12.61V8h1 c1.1,0,2-0.9,2-2v0h6.5C16.78,6,17,5.78,17,5.5S16.78,5,16.5,5H10v0c0-1.1-0.9-2-2-2H3.5C3.22,3,3,3.22,3,3.5S3.22,4,3.5,4H4v1 H3.5C3.22,5,3,5.22,3,5.5S3.22,6,3.5,6H4v1H3.5C3.22,7,3,7.22,3,7.5S3.22,8,3.5,8H4v5.26C3.58,13.59,3.23,14.01,3,14.5z M8.5,7H7 V6h1.5V7z M8.5,4v1H7V4H8.5z M5,4h1v1H5V4z M5,6h1v1H5V6z M5,8h1v4.51c-0.35,0.02-0.68,0.08-1,0.19V8z\\\"></path><path d=\\\"M2.85,16.35l0.5,0.5C3.45,16.95,3.57,17,3.71,17h12.59c0.13,0,0.26-0.05,0.35-0.15l0.5-0.5c0.31-0.31,0.09-0.85-0.35-0.85 H3.21C2.76,15.5,2.54,16.04,2.85,16.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"maps_ugc\": {\n    \"name\": \"maps_ugc\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M12,4c4.97,0,8.9,4.56,7.82,9.72c-0.68,3.23-3.4,5.74-6.67,6.2c-1.59,0.22-3.14-0.01-4.58-0.7 c-0.27-0.13-0.56-0.19-0.86-0.19c-0.19,0-0.38,0.03-0.56,0.08l-2.31,0.68c-0.38,0.11-0.74-0.24-0.63-0.63l0.7-2.39 c0.13-0.45,0.07-0.92-0.14-1.35C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29 l-1.46,4.96C1.29,22,2,22.71,2.76,22.48l4.96-1.46c1.66,0.79,3.56,1.15,5.58,0.89c4.56-0.59,8.21-4.35,8.66-8.92 C22.53,7.03,17.85,2,12,2L12,2z\\\"></path></g><path d=\\\"M12,8L12,8c-0.55,0-1,0.45-1,1v2H9c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2V9C13,8.45,12.55,8,12,8z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"signpost\": {\n    \"name\": \"signpost\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"13,10 18,10 21,7 18,4 13,4 13,2 11,2 11,4 4,4 4,10 11,10 11,12 6,12 3,15 6,18 11,18 11,22 13,22 13,18 20,18 20,12 13,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,8H15l2-2.25L15,3.5h-4.25V2h-1.5v1.5H4V8h5.25v1.5H5l-2,2.25L5,14h4.25v4h1.5v-4H16V9.5h-5.25V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_laundry_service\": {\n    \"name\": \"local_laundry_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M9.64,16.36c1.3,1.3,3.42,1.3,4.72,0c1.3-1.3,1.3-3.42,0-4.72L9.64,16.36z M18,2.01L6,2C4.89,2,4,2.89,4,4v16 c0,1.11,0.89,2,2,2h12c1.11,0,2-0.89,2-2V4C20,2.89,19.11,2.01,18,2.01z M11,5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S10.45,5,11,5z M8,5c0.55,0,1,0.45,1,1S8.55,7,8,7S7,6.55,7,6S7.45,5,8,5z M12,19c-2.76,0-5-2.24-5-5c0-2.76,2.24-5,5-5s5,2.24,5,5 C17,16.76,14.76,19,12,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_attributes\": {\n    \"name\": \"edit_attributes\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm-6.52 3.6L7.6 14.11c-.1.1-.23.15-.35.15s-.26-.05-.35-.15l-1.86-1.86c-.2-.2-.2-.51 0-.71s.51-.2.71 0l1.51 1.51 3.16-3.16c.2-.2.51-.2.71 0s.17.51-.02.71z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_of_travel\": {\n    \"name\": \"mode_of_travel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,10.2C4,5.22,7.8,2,12,2c4,0,7.64,2.92,7.97,7.5l2.32,0c0.45,0,0.67,0.54,0.35,0.85l-3.29,3.29c-0.2,0.2-0.51,0.2-0.71,0 l-3.29-3.29c-0.31-0.31-0.09-0.85,0.35-0.85l2.26,0C17.65,6.24,15.13,4,12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 c0.64-0.59,1.23-1.16,1.77-1.71c-0.17-0.34-0.27-0.72-0.27-1.12c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S17.38,19,16,19 c-0.24,0-0.47-0.03-0.69-0.1c-0.78,0.82-1.67,1.66-2.65,2.52c-0.38,0.33-0.95,0.33-1.33,0C6.45,17.12,4,13.38,4,10.2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.98,8h-1.52c-0.45,0-0.67,0.54-0.35,0.85l2.29,2.29c0.2,0.2,0.51,0.2,0.71,0l2.29-2.29C18.71,8.54,18.49,8,18.04,8 l-1.56,0C16.23,4.64,13.42,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s1.28-1.01,2.7-2.52c0.1,0.01,0.2,0.02,0.3,0.02 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2c0,0.44,0.14,0.85,0.38,1.18c-0.49,0.51-0.97,0.97-1.38,1.35C8.1,14.3,5,10.97,5,8.5 c0-2.76,2.24-5,5-5C12.59,3.5,14.72,5.48,14.98,8z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control_rodent\": {\n    \"name\": \"pest_control_rodent\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.31,17.38l-2.39-2.13C19.44,12.89,17.56,11,15.5,11c-1.16,0-3.5,0.9-3.5,3.5c0,0.81,0.27,1.55,0.74,2.15 c0.15,0.2,0.14,0.48-0.04,0.66l0,0c-0.21,0.21-0.56,0.19-0.75-0.04C11.35,16.5,11,15.54,11,14.5c0-1.7,0.96-3.17,2.35-3.93 c-0.7-0.36-1.48-0.57-2.28-0.57c-2.38,0-4.37,1.65-4.91,3.87c-1.33-0.39-2.28-1.66-2.15-3.14C4.15,9.16,5.54,8,7.11,8l2,0 c1.58,0,2.75-0.95,2.87-2.25C12.13,4.25,10.96,3,9.5,3H8.05c-0.5,0-0.96,0.34-1.04,0.83C6.91,4.46,7.39,5,8,5h1.5 C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6L7.16,6c-2.67,0-4.99,2.03-5.15,4.7C1.86,13.25,3.62,15.42,6,15.9v0.03 C6,18.73,8.27,21,11.07,21h8.86C21.8,21,22.74,18.66,21.31,17.38z M18,19c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,18.55,18.55,19,18,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.57,13.59l-1.63-1.55C15.31,10.33,13.96,9,12.5,9C11.32,9,10,9.96,10,11.5c0,0.54,0.17,1.03,0.45,1.44 c0.14,0.2,0.13,0.48-0.05,0.65l0,0c-0.21,0.21-0.57,0.2-0.75-0.05C9.24,12.97,9,12.26,9,11.5c0-1.36,0.78-2.52,1.91-3.1 C10.43,8.15,9.91,8,9.36,8C6.44,8,6,10.79,6,11.47c-1.22-0.14-2.15-1.23-1.98-2.53C4.17,7.82,5.19,7,6.33,7l2.08,0 C9.23,7,9.96,6.39,10,5.58C10.04,4.72,9.36,4,8.5,4h-1C7.22,4,7,4.22,7,4.5C7,4.78,7.22,5,7.5,5h1C8.78,5,9,5.22,9,5.5 C9,5.78,8.78,6,8.5,6L6.38,6C4.63,6,3.1,7.33,3,9.07c-0.1,1.79,1.26,3.27,3,3.4C6,13.07,6.34,16,9.36,16h6.24 C16.86,16,17.47,14.45,16.57,13.59z M14.25,15c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S15,13.84,15,14.25 C15,14.66,14.66,15,14.25,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_mall\": {\n    \"name\": \"local_mall\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.33 0-4.29-1.59-4.84-3.75-.17-.63.32-1.25.97-1.25.47 0 .85.34.98.8.35 1.27 1.51 2.2 2.89 2.2s2.54-.93 2.89-2.2c.13-.46.51-.8.98-.8.65 0 1.13.62.97 1.25C16.29 11.41 14.33 13 12 13z\\\"></path>\"\n      }\n    }\n  },\n  \"airlines\": {\n    \"name\": \"airlines\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M19.59,4h-5.01c-0.99,0-1.91,0.49-2.47,1.3L2,20h17l2.56-13.63C21.79,5.14,20.84,4,19.59,4z M14.5,14 c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C17,12.88,15.88,14,14.5,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.69,4h-3.63C11.24,4,10.47,4.41,10,5.08L2.5,16h12.75l1.92-10.22C17.34,4.85,16.63,4,15.69,4z M11.88,11.75 c-1.04,0-1.88-0.84-1.88-1.88S10.84,8,11.88,8s1.88,0.84,1.88,1.88S12.91,11.75,11.88,11.75z\\\"></path>\"\n      }\n    }\n  },\n  \"railway_alert\": {\n    \"name\": \"railway_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M4,11V8h7.29c-0.77-2.6,0.21-4.61,0.37-4.97C2.97,2.67,2,5.02,2,7v9.5C2,18.43,3.57,20,5.5,20l-1.21,0.81 C4.11,20.93,4,21.13,4,21.35v0C4,21.71,4.29,22,4.65,22h10.7c0.36,0,0.65-0.29,0.65-0.65v0c0-0.22-0.11-0.42-0.29-0.54L14.5,20 c1.93,0,3.5-1.57,3.5-3.5V13c-1.91,0-3.63-0.76-4.89-2H4z M10,17c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5C11.5,16.33,10.83,17,10,17z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18,9c-0.28,0-0.5-0.22-0.5-0.5C17.5,8.22,17.72,8,18,8 s0.5,0.22,0.5,0.5C18.5,8.78,18.28,9,18,9z M18.5,6.5C18.5,6.78,18.28,7,18,7s-0.5-0.22-0.5-0.5v-3C17.5,3.22,17.72,3,18,3 s0.5,0.22,0.5,0.5V6.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"connecting_airports\": {\n    \"name\": \"connecting_airports\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.93,10.6c0.39,0,0.66,0.37,0.55,0.74L15.4,15h2.85l0.59-0.78c0.1-0.14,0.26-0.22,0.43-0.22c0.36,0,0.62,0.35,0.52,0.7 L19.4,16l0.39,1.3c0.1,0.35-0.16,0.7-0.52,0.7c-0.17,0-0.33-0.08-0.43-0.22L18.25,17H15.4l1.08,3.66c0.11,0.37-0.17,0.74-0.55,0.74 c-0.2,0-0.39-0.11-0.5-0.28L13,17h-2.97c-0.53,0-1-0.4-1.03-0.93C8.96,15.48,9.43,15,10,15h3l2.43-4.12 C15.54,10.71,15.73,10.6,15.93,10.6z M8.07,2.6c-0.39,0-0.66,0.37-0.55,0.74L8.6,7H5.75L5.16,6.22C5.06,6.08,4.9,6,4.73,6 C4.37,6,4.11,6.35,4.21,6.7L4.6,8L4.21,9.3C4.11,9.65,4.37,10,4.73,10c0.17,0,0.33-0.08,0.43-0.22L5.75,9H8.6l-1.08,3.66 c-0.11,0.37,0.17,0.74,0.55,0.74c0.2,0,0.39-0.11,0.5-0.28L11,9h2.97c0.53,0,1-0.4,1.03-0.93C15.04,7.48,14.57,7,14,7h-3L8.57,2.88 C8.46,2.71,8.27,2.6,8.07,2.6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.24,2.5c0.16,0,0.32,0.09,0.4,0.23L9.6,6l2.12,0c0.41,0,0.77,0.32,0.78,0.73c0.01,0.42-0.33,0.77-0.75,0.77H9.6 l-1.96,3.27C7.55,10.91,7.4,11,7.24,11c-0.32,0-0.54-0.31-0.45-0.61L7.7,7.5H5.45c0,0-0.43,0.58-0.64,0.85 C4.74,8.45,4.62,8.5,4.51,8.5c-0.26,0-0.44-0.24-0.37-0.49C4.29,7.49,4.5,6.75,4.5,6.75L4.14,5.49C4.07,5.24,4.25,5,4.51,5 c0.12,0,0.23,0.06,0.31,0.15L5.45,6H7.7L6.79,3.11C6.7,2.81,6.92,2.5,7.24,2.5z M12.76,17.5c0.32,0,0.54-0.31,0.45-0.61L12.3,14 h2.25l0.63,0.85c0.07,0.1,0.19,0.15,0.31,0.15c0.25,0,0.44-0.24,0.37-0.49l-0.36-1.26l0.36-1.26c0.07-0.24-0.11-0.49-0.37-0.49 c-0.12,0-0.23,0.06-0.31,0.15l-0.63,0.85H12.3l0.91-2.89C13.3,9.31,13.08,9,12.76,9c-0.16,0-0.32,0.09-0.4,0.23L10.4,12.5H8.28 c-0.41,0-0.77,0.32-0.78,0.73C7.49,13.65,7.83,14,8.25,14h2.15l1.96,3.27C12.45,17.41,12.6,17.5,12.76,17.5z\\\"></path>\"\n      }\n    }\n  },\n  \"add_business\": {\n    \"name\": \"add_business\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6h13c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5C2,5.55,2.45,6,3,6z\\\"></path><path d=\\\"M15,17h2v-3h0.18c0.63,0,1.1-0.58,0.98-1.2l-1-5C17.07,7.34,16.66,7,16.18,7H2.82C2.34,7,1.93,7.34,1.84,7.8l-1,5 C0.72,13.42,1.19,14,1.82,14H2v5c0,0.55,0.45,1,1,1h7c0.55,0,1-0.45,1-1v-5h4V17z M9,18H4v-4h5V18z\\\"></path><path d=\\\"M22,18h-2v-2c0-0.55-0.45-1-1-1s-1,0.45-1,1v2h-2c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1 v-2h2c0.55,0,1-0.45,1-1C23,18.45,22.55,18,22,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,5h9C13.78,5,14,4.78,14,4.5C14,4.22,13.78,4,13.5,4h-9C4.22,4,4,4.22,4,4.5C4,4.78,4.22,5,4.5,5z\\\"></path><path d=\\\"M13,14h1v-3h0.61c0.33,0,0.56-0.31,0.49-0.62l-1-4C14.04,6.16,13.84,6,13.61,6H4.39C4.16,6,3.96,6.16,3.91,6.38l-1,4 C2.83,10.69,3.07,11,3.39,11H4v4.5C4,15.78,4.22,16,4.5,16h5c0.28,0,0.5-0.22,0.5-0.5V11h3V14z M9,15H5v-4h4V15z\\\"></path><path d=\\\"M16,15v-1.5c0-0.28-0.22-0.5-0.5-0.5h0c-0.28,0-0.5,0.22-0.5,0.5V15h-1.5c-0.28,0-0.5,0.22-0.5,0.5v0 c0,0.28,0.22,0.5,0.5,0.5H15v1.5c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5V16h1.5c0.28,0,0.5-0.22,0.5-0.5v0 c0-0.28-0.22-0.5-0.5-0.5H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"zoom_out_map\": {\n    \"name\": \"zoom_out_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M15.85,3.85L17.3,5.3l-2.18,2.16c-0.39,0.39-0.39,1.03,0,1.42l0,0c0.39,0.39,1.03,0.39,1.42,0L18.7,6.7l1.45,1.45 C20.46,8.46,21,8.24,21,7.79V3.5C21,3.22,20.78,3,20.5,3h-4.29C15.76,3,15.54,3.54,15.85,3.85z M3.85,8.15L5.3,6.7l2.16,2.18 c0.39,0.39,1.03,0.39,1.42,0l0,0c0.39-0.39,0.39-1.03,0-1.42L6.7,5.3l1.45-1.45C8.46,3.54,8.24,3,7.79,3H3.5 C3.22,3,3,3.22,3,3.5v4.29C3,8.24,3.54,8.46,3.85,8.15z M8.15,20.15L6.7,18.7l2.18-2.16c0.39-0.39,0.39-1.03,0-1.42l0,0 c-0.39-0.39-1.03-0.39-1.42,0L5.3,17.3l-1.45-1.45C3.54,15.54,3,15.76,3,16.21v4.29C3,20.78,3.22,21,3.5,21h4.29 C8.24,21,8.46,20.46,8.15,20.15z M20.15,15.85L18.7,17.3l-2.16-2.18c-0.39-0.39-1.03-0.39-1.42,0l0,0 c-0.39,0.39-0.39,1.03,0,1.42l2.18,2.16l-1.45,1.45C15.54,20.46,15.76,21,16.21,21h4.29c0.28,0,0.5-0.22,0.5-0.5v-4.29 C21,15.76,20.46,15.54,20.15,15.85z\\\"></path></g></g></g></g>\"\n      }\n    }\n  },\n  \"local_printshop\": {\n    \"name\": \"local_printshop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,7V4c0-0.55-0.45-1-1-1H7C6.45,3,6,3.45,6,4v3H18z\\\"></path><path d=\\\"M19,8H5c-1.66,0-3,1.34-3,3v5c0,0.55,0.45,1,1,1h3v2c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-2h3c0.55,0,1-0.45,1-1v-5 C22,9.34,20.66,8,19,8z M16,19H8v-4h8V19z M18,12.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S18.55,12.5,18,12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_railway\": {\n    \"name\": \"directions_railway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5zM4 15.5C4 17.43 5.57 19 7.5 19l-1.14 1.15c-.32.31-.1.85.35.85h10.58c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z\\\"></path>\"\n      }\n    }\n  },\n  \"hvac\": {\n    \"name\": \"hvac\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,16c1.01,0,1.91-0.39,2.62-1H9.38C10.09,15.61,10.99,16,12,16z\\\"></path></g><g><path d=\\\"M8.56,14h6.89c0.26-0.45,0.44-0.96,0.51-1.5h-7.9C8.12,13.04,8.29,13.55,8.56,14z\\\"></path></g><g><path d=\\\"M12,8c-1.01,0-1.91,0.39-2.62,1h5.24C13.91,8.39,13.01,8,12,8z\\\"></path></g><g><path d=\\\"M8.56,10c-0.26,0.45-0.44,0.96-0.51,1.5h7.9c-0.07-0.54-0.24-1.05-0.51-1.5H8.56z\\\"></path></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,18c-3.31,0-6-2.69-6-6 s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M7.42,11.5h5.17c0.22-0.38,0.36-0.8,0.39-1.26H7.02C7.06,10.7,7.2,11.12,7.42,11.5z\\\"></path></g><g><path d=\\\"M10,13c0.88,0,1.67-0.39,2.22-1H7.78C8.33,12.61,9.12,13,10,13z\\\"></path></g><g><path d=\\\"M10,7C9.12,7,8.34,7.39,7.79,7.99h4.42C11.66,7.39,10.88,7,10,7z\\\"></path></g><g><path d=\\\"M7.42,8.49c-0.22,0.38-0.36,0.8-0.4,1.26h5.95c-0.04-0.46-0.18-0.88-0.4-1.26H7.42z\\\"></path></g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M10,14 c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c2.21,0,4,1.79,4,4C14,12.21,12.21,14,10,14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"alt_route\": {\n    \"name\": \"alt_route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M10.15,5.15 L7.35,2.35c-0.2-0.2-0.51-0.2-0.71,0L3.85,5.15C3.54,5.46,3.76,6,4.21,6h1.81C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49 C8.08,7.2,8.03,6.63,8.02,6h1.78C10.24,6,10.46,5.46,10.15,5.15z M20.15,5.15l-2.79-2.79c-0.2-0.2-0.51-0.2-0.71,0l-2.79,2.79 C13.54,5.46,13.76,6,14.21,6h1.78c-0.1,3.68-1.28,4.75-2.54,5.88c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24 L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v4c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-4c0,0,0,0,0,0 c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37h1.8C20.24,6,20.46,5.46,20.15,5.15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.38,9.41l-0.71,0.71c-0.47-0.5-0.93-1.1-1.25-1.96L7.4,7.91C7.66,8.54,8,9.01,8.38,9.41z M9.5,6l-3-3l-3,3h2.53 c0.02,0.43,0.07,0.83,0.14,1.19l0.97-0.24C7.08,6.66,7.04,6.34,7.02,6H9.5z M16.5,6l-3-3l-3,3h2.48c-0.12,2.22-1.02,3.11-1.9,3.96 c-0.39,0.37-0.78,0.75-1.08,1.23c-0.26-0.41-0.58-0.75-0.91-1.07l-0.71,0.71C9.03,11.47,9.5,11.99,9.5,13v3.5 c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5V13c0,0,0,0,0,0h0c0-1.1,0.53-1.61,1.27-2.32c0.94-0.9,2.07-2.03,2.21-4.68 H16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_bar\": {\n    \"name\": \"local_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4.45c0-.8-.65-1.45-1.45-1.45H4.45C3.65 3 3 3.65 3 4.45c0 .35.13.7.37.96L11 14v5H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1h-4v-5l7.63-8.59c.24-.26.37-.61.37-.96zM7.43 7L5.66 5h12.69l-1.78 2H7.43z\\\"></path>\"\n      }\n    }\n  },\n  \"taxi_alert\": {\n    \"name\": \"taxi_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,13c-1.91,0-3.63-0.76-4.89-2H4.81l1.04-3h5.44C11.1,7.37,11,6.7,11,6s0.1-1.37,0.29-2H9C8.45,4,8,4.45,8,5v1H5.5 C4.84,6,4.29,6.42,4.08,7.01L2,13v7.5C2,21.32,2.67,22,3.5,22S5,21.32,5,20.5V20h12v0.5c0,0.82,0.67,1.5,1.5,1.5 s1.5-0.68,1.5-1.5V13l-0.09-0.27C19.3,12.9,18.66,13,18,13z M6.5,17C5.67,17,5,16.33,5,15.5S5.67,14,6.5,14S8,14.67,8,15.5 S7.33,17,6.5,17z M15.5,17c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,17,15.5,17z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18,9c-0.28,0-0.5-0.22-0.5-0.5S17.72,8,18,8 s0.5,0.22,0.5,0.5S18.28,9,18,9z M18.5,6.5C18.5,6.78,18.28,7,18,7s-0.5-0.22-0.5-0.5v-3C17.5,3.22,17.72,3,18,3 s0.5,0.22,0.5,0.5V6.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"emergency\": {\n    \"name\": \"emergency\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.29,8.37l-1-1.73c-0.28-0.48-0.89-0.64-1.37-0.37L14,8.54V4c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4.54L6.07,6.27 C5.59,5.99,4.98,6.16,4.71,6.63l-1,1.73C3.43,8.84,3.59,9.46,4.07,9.73L8,12l-3.93,2.27c-0.48,0.28-0.64,0.89-0.37,1.37l1,1.73 c0.28,0.48,0.89,0.64,1.37,0.37L10,15.46V20c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-4.54l3.93,2.27c0.48,0.28,1.09,0.11,1.37-0.37 l1-1.73c0.28-0.48,0.11-1.09-0.37-1.37L16,12l3.93-2.27C20.41,9.46,20.57,8.84,20.29,8.37z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.31,6.93l-0.5-0.87c-0.28-0.48-0.89-0.64-1.37-0.37L11.5,7.4V4c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v3.4L5.55,5.7 C5.08,5.42,4.46,5.59,4.19,6.07l-0.5,0.87C3.41,7.41,3.58,8.02,4.05,8.3L7,10l-2.95,1.7c-0.48,0.28-0.64,0.89-0.37,1.37l0.5,0.87 c0.28,0.48,0.89,0.64,1.37,0.37l2.95-1.7V16c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-3.4l2.95,1.7c0.48,0.28,1.09,0.11,1.37-0.37 l0.5-0.87c0.28-0.48,0.11-1.09-0.37-1.37L13,10l2.95-1.7C16.42,8.02,16.59,7.41,16.31,6.93z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_car_filled\": {\n    \"name\": \"directions_car_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M18.92,6.01C18.72,5.42,18.16,5,17.5,5h-11C5.84,5,5.29,5.42,5.08,6.01L3,12v7.5C3,20.33,3.67,21,4.5,21h0 C5.33,21,6,20.33,6,19.5V19h12v0.5c0,0.82,0.67,1.5,1.5,1.5h0c0.82,0,1.5-0.67,1.5-1.5V12L18.92,6.01z M7.5,16 C6.67,16,6,15.33,6,14.5S6.67,13,7.5,13S9,13.67,9,14.5S8.33,16,7.5,16z M16.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S17.33,16,16.5,16z M5.81,10l1.04-3h10.29l1.04,3H5.81z\\\"></path></g>\"\n      }\n    }\n  },\n  \"park\": {\n    \"name\": \"park\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.96,12h0.08c0.81,0,1.28-0.91,0.82-1.57l-5.08-7.25c-0.4-0.57-1.24-0.57-1.64,0L6.1,10.43C5.64,11.09,6.12,12,6.93,12 h0.04l-2.9,4.46C3.63,17.12,4.11,18,4.91,18h5.08v2.02c0,1.09,0.89,1.98,1.98,1.98h0c1.09,0,1.98-0.89,1.98-1.98V18h5.15 c0.8,0,1.28-0.89,0.83-1.55L16.96,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.82,10L13.82,10c0.51,0,0.83-0.57,0.56-1l-3.82-6.11c-0.26-0.41-0.85-0.41-1.11,0L5.63,9c-0.27,0.44,0.04,1,0.56,1h0 l-2.54,3.99C3.36,14.43,3.68,15,4.19,15H8.5v1.5c0,0.83,0.67,1.5,1.5,1.5h0c0.83,0,1.5-0.67,1.5-1.5V15h4.31 c0.52,0,0.83-0.57,0.55-1.01L13.82,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"temple_buddhist\": {\n    \"name\": \"temple_buddhist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21.85,9.01c-0.41,0-0.82,0.24-0.95,0.63C20.64,10.43,19.89,11,19.02,11H4.98c-0.87,0-1.62-0.57-1.88-1.36 C2.97,9.25,2.57,9.02,2.16,9.02h0C1.5,9.02,1,9.66,1.21,10.28c0.43,1.27,1.48,2.24,2.79,2.58V20c0,1.1,0.9,2,2,2h4l0-2.89 c0-1,0.68-1.92,1.66-2.08C12.92,16.82,14,17.79,14,19v3h4c1.1,0,2-0.9,2-2v-7.14c0.46-0.12,2.22-0.76,2.81-2.58 C23.01,9.65,22.51,9,21.85,9.01L21.85,9.01z\\\"></path></g><g><path d=\\\"M6,8.86V10h12V8.86c0.46-0.12,2.22-0.76,2.81-2.58c0.2-0.63-0.3-1.27-0.96-1.27l0,0c-0.41,0-0.82,0.24-0.95,0.63 C18.64,6.43,17.89,7,17.02,7H6.98C6.11,7,5.36,6.43,5.1,5.64C4.97,5.25,4.57,5.02,4.16,5.02h0C3.5,5.02,3,5.66,3.21,6.28 C3.64,7.55,4.69,8.53,6,8.86z\\\"></path></g><g><path d=\\\"M11.2,2.07L8.25,6h7.5L12.8,2.07C12.4,1.53,11.6,1.53,11.2,2.07z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M18.14,7.01c-0.35,0-0.63,0.25-0.73,0.58C17.17,8.4,16.41,9,15.52,9H4.48c-0.9,0-1.66-0.6-1.9-1.41 C2.48,7.26,2.2,7.01,1.86,7.01C1.35,7.01,1,7.51,1.14,7.99c0.38,1.29,1.5,2.27,2.86,2.46v6.05C4,17.33,4.67,18,5.5,18H8l0-1.89 c0-1,0.68-1.92,1.66-2.08C10.92,13.82,12,14.79,12,16v2h2.5c0.83,0,1.5-0.67,1.5-1.5v-6.05c0.49-0.07,2.43-0.61,2.9-2.55 C19.01,7.44,18.62,7,18.14,7.01z\\\"></path></g><g><path d=\\\"M9.6,1.52L6.92,5h6.15L10.4,1.52C10.2,1.26,9.8,1.26,9.6,1.52z\\\"></path></g><g><path d=\\\"M4.89,7.16V8H15V7.16c1.18-0.56,1.66-1.49,1.86-2.2c0.13-0.48-0.23-0.95-0.73-0.94c-0.34,0-0.62,0.24-0.71,0.57 c-0.24,0.81-0.99,1.4-1.87,1.42h-7.2C5.46,5.99,4.71,5.39,4.47,4.58C4.38,4.25,4.1,4.01,3.76,4.01c-0.5,0-0.86,0.46-0.73,0.94 C3.23,5.67,3.71,6.6,4.89,7.16z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"money\": {\n    \"name\": \"money\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM6 8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1zM2 6v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2zm17 12H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"emergency_share\": {\n    \"name\": \"emergency_share\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,9c-3.15,0-6,2.41-6,6.15c0,2.35,1.78,5.11,5.34,8.27c0.37,0.33,0.95,0.33,1.33,0C16.22,20.25,18,17.5,18,15.15 C18,11.41,15.15,9,12,9z M12,16.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,16.5,12,16.5z M16.18,6.82 c-0.35,0.35-0.89,0.38-1.3,0.09C14.07,6.34,13.07,6,12,6S9.93,6.34,9.12,6.91c-0.41,0.28-0.95,0.26-1.3-0.09 c-0.43-0.43-0.39-1.15,0.09-1.5C9.06,4.49,10.48,4,12,4s2.94,0.49,4.09,1.32C16.58,5.67,16.61,6.39,16.18,6.82z M4.97,3.97 C4.55,3.54,4.59,2.85,5.05,2.47C6.95,0.93,9.37,0,12.01,0c2.64,0,5.06,0.93,6.95,2.48c0.46,0.38,0.5,1.07,0.08,1.49 c-0.36,0.36-0.93,0.39-1.32,0.07C16.16,2.77,14.17,2,12.01,2C9.83,2,7.84,2.77,6.29,4.04C5.9,4.36,5.33,4.32,4.97,3.97z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.78,3.22c-0.27,0.27-0.7,0.31-0.99,0.06c-1.31-1.11-3-1.78-4.84-1.78c-1.82,0-3.49,0.65-4.79,1.74 c-0.29,0.24-0.72,0.2-0.99-0.06C3.86,2.86,3.89,2.34,4.24,2.05C5.79,0.77,7.78,0,9.95,0c2.2,0,4.21,0.79,5.77,2.1 C16.07,2.38,16.1,2.9,15.78,3.22z M13.29,5.71c0.32-0.32,0.29-0.86-0.07-1.14C12.3,3.9,11.18,3.5,9.95,3.5 c-1.2,0-2.3,0.38-3.2,1.03C6.38,4.8,6.35,5.35,6.67,5.67c0.26,0.26,0.67,0.29,0.96,0.08C8.29,5.28,9.09,5,9.95,5 c0.89,0,1.7,0.29,2.37,0.78C12.62,6,13.03,5.97,13.29,5.71z M15.28,12.28c0,2.75-3.2,5.89-4.62,7.15c-0.38,0.34-0.95,0.34-1.33,0 c-1.42-1.26-4.62-4.41-4.62-7.15C4.72,9.36,7.08,7,10,7S15.28,9.36,15.28,12.28z M10,11c-0.69,0-1.25,0.56-1.25,1.25 c0,0.69,0.56,1.25,1.25,1.25c0.69,0,1.25-0.56,1.25-1.25C11.25,11.56,10.69,11,10,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pin_drop\": {\n    \"name\": \"pin_drop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6 20h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm6-13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-5c3.27 0 7 2.46 7 7.15 0 2.98-2.13 6.12-6.39 9.39-.36.28-.86.28-1.22 0C7.13 15.26 5 12.13 5 9.15 5 4.46 8.73 2 12 2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"roundabout_right\": {\n    \"name\": \"roundabout_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,21c0.55,0,1-0.45,1-1l0-5.09c0-0.98-0.71-1.8-1.67-1.97C5.44,12.63,4,10.98,4,9c0-2.21,1.79-4,4-4 c1.98,0,3.63,1.44,3.94,3.33C12.11,9.29,12.93,10,13.91,10l4.26,0l-0.88,0.88c-0.39,0.39-0.39,1.02,0,1.41 c0.39,0.39,1.02,0.39,1.41,0l2.59-2.59c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41L18.17,8l-4.25,0C13.44,5.16,10.97,3,8,3C4.69,3,2,5.69,2,9c0,2.97,2.16,5.44,5,5.92L7,20 C7,20.55,7.45,21,8,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.75,3c2.37,0,4.33,1.73,4.69,4l3.69,0l-0.66-0.66c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l1.76,1.76 c0.39,0.39,0.39,1.02,0,1.41l-1.76,1.76c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.77,0-1.06l0.66-0.66l-3.69,0 c-0.74,0-1.36-0.54-1.48-1.25C9.72,5.69,8.37,4.5,6.75,4.5l0,0C4.96,4.5,3.5,5.96,3.5,7.75c0,1.62,1.18,2.96,2.73,3.21 c0.72,0.11,1.27,0.67,1.27,1.4l0,3.89C7.5,16.66,7.16,17,6.75,17C6.34,17,6,16.66,6,16.25v-3.81l0,0c-2.27-0.36-4-2.32-4-4.69 C2,5.13,4.13,3,6.75,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"synagogue\": {\n    \"name\": \"synagogue\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,8.94V21h4l0-4.89c0-1,0.68-1.92,1.66-2.08C12.92,13.82,14,14.79,14,16v5h4V8.94c0-0.59-0.26-1.16-0.72-1.54l-4-3.33 c-0.74-0.62-1.82-0.62-2.56,0l-4,3.33C6.26,7.78,6,8.34,6,8.94z M13.5,10c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5S13.5,9.17,13.5,10z\\\"></path><path d=\\\"M3,5C1.9,5,1,5.9,1,7v1h4V7C5,5.9,4.1,5,3,5z\\\"></path><path d=\\\"M3,21h2V9H1v10C1,20.1,1.9,21,3,21z\\\"></path><path d=\\\"M21,5c-1.1,0-2,0.9-2,2v1h4V7C23,5.9,22.1,5,21,5z\\\"></path><path d=\\\"M19,21h2c1.1,0,2-0.9,2-2V9h-4V21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,7.72V17h3v-2.89c0-1,0.68-1.92,1.66-2.08C10.92,11.82,12,12.79,12,14v3h3V7.72c0-0.46-0.21-0.89-0.56-1.17l-3.5-2.8 c-0.55-0.44-1.33-0.44-1.87,0l-3.5,2.8C5.21,6.83,5,7.27,5,7.72z M11.25,8.25c0,0.69-0.56,1.25-1.25,1.25S8.75,8.94,8.75,8.25 S9.31,7,10,7S11.25,7.56,11.25,8.25z\\\"></path><path d=\\\"M17.5,4C16.67,4,16,4.67,16,5.5v1.17h3V5.5C19,4.67,18.33,4,17.5,4z\\\"></path><path d=\\\"M16,17h1.5c0.83,0,1.5-0.67,1.5-1.5v-8h-3V17z\\\"></path><path d=\\\"M2.5,4C1.67,4,1,4.67,1,5.5v1.17h3V5.5C4,4.67,3.33,4,2.5,4z\\\"></path><path d=\\\"M2.5,17H4V7.5H1v8C1,16.33,1.67,17,2.5,17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nightlife\": {\n    \"name\": \"nightlife\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M2.87,5h10.26c0.8,0,1.28,0.89,0.83,1.55L9,14v4h1c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h1v-4L2.04,6.55C1.59,5.89,2.07,5,2.87,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M19,5h1.5C21.33,5,22,5.67,22,6.5v0 C22,7.33,21.33,8,20.5,8H19v9l0,0c0,1.84-1.64,3.28-3.54,2.95c-1.21-0.21-2.2-1.2-2.41-2.41C12.72,15.64,14.16,14,16,14 c0.35,0,0.69,0.06,1,0.17V7C17,5.9,17.9,5,19,5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.25,14.5H7.74v-3.54l3.13-4.38c0.47-0.66,0-1.58-0.81-1.58H3.94C3.13,5,2.66,5.92,3.13,6.58l3.12,4.36v3.56H5.75 C5.34,14.5,5,14.84,5,15.25C5,15.66,5.34,16,5.75,16h2.5C8.66,16,9,15.66,9,15.25C9,14.84,8.66,14.5,8.25,14.5z M5.99,8L4.91,6.5 h4.17L8.01,8H5.99z\\\"></path><path d=\\\"M16,5h-1c-0.83,0-1.5,0.67-1.5,1.5v4.71c-0.48-0.21-1.03-0.28-1.61-0.14c-0.95,0.23-1.7,1.04-1.86,2.01 c-0.26,1.6,1,2.98,2.56,2.92c1.36-0.05,2.4-1.25,2.4-2.61V7h1c0.55,0,1-0.45,1-1C17,5.45,16.55,5,16,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plumbing\": {\n    \"name\": \"plumbing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z\\\"></path><path d=\\\"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z\\\"></path><path d=\\\"M14.33,8.46l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18l-7,7 c-0.7,0.7-0.88,1.84-0.29,2.65c0.74,1.03,2.19,1.12,3.05,0.26L16.45,12c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41 l-2.12-2.12C15.35,8.07,14.72,8.07,14.33,8.46z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.29,4.45l2.83,2.83l0,0c0.78-0.78,0.78-2.05,0-2.83l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0L9.75,5.15l1.41,1.41 L13.29,4.45z\\\"></path><path d=\\\"M4.8,11.52L4.8,11.52c0.39,0.39,1.02,0.39,1.41,0L8.34,9.4L6.92,7.98L4.8,10.1C4.41,10.49,4.41,11.13,4.8,11.52z\\\"></path><path d=\\\"M12.22,6.92l-1.06,1.06L8.34,5.15c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L9.75,9.4L9.04,10.1 l-5.3,5.3c-0.59,0.59-0.59,1.54,0,2.12l0,0c0.59,0.59,1.54,0.59,2.12,0l7.42-7.42l0,0c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41l-1.77-1.77C12.74,6.73,12.42,6.73,12.22,6.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_transit_filled\": {\n    \"name\": \"directions_transit_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19l-1.21,0.81C6.11,19.93,6,20.13,6,20.35v0C6,20.71,6.29,21,6.65,21h10.7 c0.36,0,0.65-0.29,0.65-0.65v0c0-0.22-0.11-0.42-0.29-0.54L16.5,19c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M8.5,16 C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M11,10H6V7h5V10z M15.5,16c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10h-5V7h5V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"badge\": {\n    \"name\": \"badge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M9,12c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5C7.5,12.67,8.17,12,9,12z M12,18H6 v-0.43c0-0.6,0.36-1.15,0.92-1.39C7.56,15.9,8.26,15.75,9,15.75s1.44,0.15,2.08,0.43c0.55,0.24,0.92,0.78,0.92,1.39V18z M13,9h-2V4 h2V9z M17.25,16.5h-2.5c-0.41,0-0.75-0.34-0.75-0.75v0c0-0.41,0.34-0.75,0.75-0.75h2.5c0.41,0,0.75,0.34,0.75,0.75v0 C18,16.16,17.66,16.5,17.25,16.5z M17.25,13.5h-2.5c-0.41,0-0.75-0.34-0.75-0.75v0c0-0.41,0.34-0.75,0.75-0.75h2.5 c0.41,0,0.75,0.34,0.75,0.75v0C18,13.16,17.66,13.5,17.25,13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M16.5,6H12V3.5C12,2.67,11.33,2,10.5,2h-1C8.67,2,8,2.67,8,3.5V6H3.5C2.67,6,2,6.67,2,7.5v9C2,17.33,2.67,18,3.5,18h13 c0.83,0,1.5-0.67,1.5-1.5v-9C18,6.67,17.33,6,16.5,6z M7.5,10c0.69,0,1.25,0.56,1.25,1.25S8.19,12.5,7.5,12.5s-1.25-0.56-1.25-1.25 S6.81,10,7.5,10z M10,15H5v-0.48c0-0.5,0.3-0.95,0.76-1.16C6.3,13.13,6.88,13,7.5,13c0.62,0,1.2,0.13,1.74,0.36 C9.7,13.56,10,14.01,10,14.52V15z M10.5,7.5h-1v-4h1V7.5z M14.25,14h-1.5C12.34,14,12,13.66,12,13.25v0c0-0.41,0.34-0.75,0.75-0.75 h1.5c0.41,0,0.75,0.34,0.75,0.75v0C15,13.66,14.66,14,14.25,14z M14.25,11.5h-1.5c-0.41,0-0.75-0.34-0.75-0.75v0 c0-0.41,0.34-0.75,0.75-0.75h1.5c0.41,0,0.75,0.34,0.75,0.75v0C15,11.16,14.66,11.5,14.25,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"diamond\": {\n    \"name\": \"diamond\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"12.16,3 11.84,3 9.21,8.25 14.79,8.25\\\"></polygon></g><g><path d=\\\"M16.46,8.25h5.16l-2.07-4.14C19.21,3.43,18.52,3,17.76,3h-3.93L16.46,8.25z\\\"></path></g><g><polygon points=\\\"21.38,9.75 12.75,9.75 12.75,20.1\\\"></polygon></g><g><polygon points=\\\"11.25,20.1 11.25,9.75 2.62,9.75\\\"></polygon></g><g><path d=\\\"M7.54,8.25L10.16,3H6.24C5.48,3,4.79,3.43,4.45,4.11L2.38,8.25H7.54z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"9.5,16.44 9.5,8.5 2.44,8.5\\\"></polygon></g><g><polygon points=\\\"9.9,3.31 7.81,7.5 12.16,7.5\\\"></polygon></g><g><polygon points=\\\"10.5,8.5 10.5,16.44 17.56,8.5\\\"></polygon></g><g><path d=\\\"M6.69,7.5L8.94,3H5.02C4.4,3,3.85,3.37,3.62,3.94L2.2,7.5H6.69z\\\"></path></g><g><path d=\\\"M13.3,7.5h4.5l-1.42-3.56C16.15,3.37,15.6,3,14.98,3h-4.12L13.3,7.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"turn_sharp_left\": {\n    \"name\": \"turn_sharp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,6.83l0.88,0.88c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L7.71,3.71c-0.39-0.39-1.02-0.39-1.41,0 L3.71,6.29c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L6,6.83V13c0,1.1,0.9,2,2,2h8v5c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-5c0-1.1-0.9-2-2-2H8V6.83L8,6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,16.25c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75V12c0-0.83-0.67-1.5-1.5-1.5l-6,0l0-4.63l0.66,0.66 c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L6.96,3.71c-0.39-0.39-1.02-0.39-1.41,0L3.78,5.47 c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0L5.5,5.87l0,4.63C5.5,11.33,6.17,12,7,12l6,0V16.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fastfood\": {\n    \"name\": \"fastfood\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.9 5H18V2c0-.55-.45-1-1-1s-1 .45-1 1v3h-3.9c-.59 0-1.05.51-1 1.1l.12 1.21C14.9 8.16 18 10.77 18 15l.02 8h1.7c.84 0 1.53-.65 1.63-1.47L22.89 6.1c.06-.59-.4-1.1-.99-1.1zM15 21H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM2.1 15h12.8c.62 0 1.11-.56.99-1.16-.65-3.23-4.02-4.85-7.39-4.85s-6.73 1.62-7.39 4.85c-.12.6.38 1.16.99 1.16zM15 17H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_boat\": {\n    \"name\": \"directions_boat\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,21c-1.19,0-2.38-0.35-3.47-0.98c-0.33-0.19-0.73-0.19-1.07,0c-2.17,1.26-4.76,1.26-6.93,0 c-0.33-0.19-0.73-0.19-1.07,0C6.38,20.65,5.19,21,4,21H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1c1.38,0,2.74-0.35,4-0.99 c2.52,1.29,5.48,1.29,8,0c1.26,0.65,2.62,0.99,4,0.99h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H20z M3.95,19H4 c1.27,0,2.42-0.55,3.33-1.33c0.39-0.34,0.95-0.34,1.34,0C9.58,18.45,10.73,19,12,19s2.42-0.55,3.33-1.33 c0.39-0.34,0.95-0.34,1.34,0C17.58,18.45,18.73,19,20,19h0.05l1.9-6.68c0.11-0.37,0.04-1.06-0.66-1.28L20,10.62V6c0-1.1-0.9-2-2-2 h-3V2c0-0.55-0.45-1-1-1h-4C9.45,1,9,1.45,9,2v2H6C4.9,4,4,4.9,4,6v4.62l-1.29,0.42c-0.63,0.19-0.81,0.84-0.66,1.28L3.95,19z M6,6 h12v3.97L12.62,8.2c-0.41-0.13-0.84-0.13-1.25,0L6,9.97V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flight\": {\n    \"name\": \"flight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 14.58c0-.36-.19-.69-.49-.89L13 9V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-7.51 4.69c-.3.19-.49.53-.49.89 0 .7.68 1.21 1.36 1L10 13.5V19l-1.8 1.35c-.13.09-.2.24-.2.4v.59c0 .33.32.57.64.48L11.5 21l2.86.82c.32.09.64-.15.64-.48v-.59c0-.16-.07-.31-.2-.4L13 19v-5.5l6.64 2.08c.68.21 1.36-.3 1.36-1z\\\"></path>\"\n      }\n    }\n  },\n  \"hail\": {\n    \"name\": \"hail\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,6c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,6,12,6z M17.95,2L17.95,2c0.59,0,1.06,0.51,1,1.09 C18.93,3.24,18.74,7.15,15,8.4V21c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-5h-2v5c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V10.1 c-0.3,0.1-0.5,0.2-0.6,0.3c-0.46,0.36-1.17,0.87-1.36,2.67C6.99,13.59,6.57,14,6.04,14h0c-0.58,0-1.05-0.49-1-1.07 c0.13-1.6,0.62-2.98,2.07-4.22C8.21,7.81,10,7,12,7s2.68-0.46,3.48-1.06c0.43-0.34,1.28-0.99,1.48-3.02C17.01,2.4,17.43,2,17.95,2z M5,16h1c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1v-4C4,16.45,4.45,16,5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"traffic\": {\n    \"name\": \"traffic\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.96 10.59c.04-.31-.19-.59-.5-.59H17V8.86c1.54-.4 2.72-1.68 2.96-3.27.04-.31-.19-.59-.5-.59H17V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4.54c-.31 0-.54.28-.5.59C4.28 7.18 5.46 8.46 7 8.86V10H4.54c-.31 0-.54.28-.5.59.24 1.59 1.42 2.87 2.96 3.27V15H4.54c-.31 0-.54.28-.5.59.24 1.59 1.42 2.87 2.96 3.27V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.54-.4 2.72-1.68 2.96-3.27.04-.31-.19-.59-.5-.59H17v-1.14c1.54-.4 2.72-1.68 2.96-3.27zM12 19c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control\": {\n    \"name\": \"pest_control\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,14L21,14c0-0.55-0.45-1-1-1h-2.07c-0.05-0.39-0.12-0.77-0.22-1.14l1.72-0.99c0.48-0.28,0.64-0.89,0.37-1.37l0,0 c-0.28-0.48-0.89-0.64-1.37-0.37L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29C15.97,8.48,16,8.25,16,8c0-0.8-0.24-1.55-0.65-2.18 l0.94-0.94c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0l-1.02,1.02c-1.68-0.89-3.1-0.33-3.73,0L9.12,3.46 c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l0.94,0.94C8.24,6.45,8,7.2,8,8c0,0.25,0.03,0.48,0.07,0.72 C7.7,9.1,7.36,9.53,7.08,10L5.57,9.13C5.09,8.86,4.48,9.02,4.21,9.5l0,0c-0.28,0.48-0.11,1.09,0.37,1.37l1.72,0.99 c-0.1,0.37-0.17,0.75-0.22,1.14H4c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2.07c0.05,0.39,0.12,0.77,0.22,1.14l-1.72,0.99 c-0.48,0.28-0.64,0.89-0.37,1.37l0,0c0.28,0.48,0.89,0.64,1.37,0.37L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l1.51,0.87 c0.48,0.28,1.09,0.11,1.37-0.37l0,0c0.28-0.48,0.11-1.09-0.37-1.37l-1.72-0.99c0.1-0.37,0.17-0.75,0.22-1.14H20 C20.55,15,21,14.55,21,14z M12,17L12,17c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v4C13,16.55,12.55,17,12,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,11.5L16,11.5c0-0.28-0.22-0.5-0.5-0.5h-1.54c-0.04-0.38-0.11-0.74-0.22-1.08l1.28-0.74c0.24-0.14,0.32-0.44,0.18-0.68 l0,0c-0.14-0.24-0.44-0.32-0.68-0.18L13.33,9c-0.24-0.4-0.54-0.74-0.87-1.03c0.07-0.39,0.13-1.19-0.48-1.99l0.89-0.89 c0.2-0.2,0.2-0.51,0-0.71l0,0c-0.2-0.2-0.51-0.2-0.71,0l-0.94,0.94c-0.41-0.23-1.35-0.61-2.43,0L7.85,4.39 c-0.2-0.2-0.51-0.2-0.71,0l0,0c-0.2,0.2-0.2,0.51,0,0.71l0.89,0.89C7.41,6.78,7.47,7.58,7.55,7.97C7.21,8.26,6.91,8.6,6.67,9 L5.49,8.32C5.25,8.18,4.94,8.26,4.8,8.5l0,0C4.67,8.74,4.75,9.04,4.99,9.18l1.28,0.74c-0.11,0.34-0.18,0.7-0.22,1.08H4.5 C4.22,11,4,11.22,4,11.5v0C4,11.78,4.22,12,4.5,12h1.54c0.04,0.38,0.11,0.74,0.22,1.08l-1.28,0.74c-0.24,0.14-0.32,0.44-0.18,0.68 l0,0c0.14,0.24,0.44,0.32,0.68,0.18L6.67,14c0.72,1.21,1.94,2,3.33,2s2.61-0.8,3.33-2l1.19,0.69c0.24,0.14,0.54,0.06,0.68-0.18 l0,0c0.14-0.24,0.06-0.54-0.18-0.68l-1.28-0.74c0.11-0.34,0.18-0.7,0.22-1.08h1.54C15.78,12,16,11.78,16,11.5z M10,13.5L10,13.5 c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v3C10.5,13.28,10.28,13.5,10,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"multiple_stop\": {\n    \"name\": \"multiple_stop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,5.21c0-0.45,0.54-0.67,0.85-0.35l2.79,2.79c0.2,0.2,0.2,0.51,0,0.71l-2.79,2.79C17.54,11.46,17,11.24,17,10.79V9h-3 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h3V5.21z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7 C5.45,7,5,7.45,5,8s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h3c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7v-1.79 c0-0.45-0.54-0.67-0.85-0.35l-2.79,2.79c-0.2,0.2-0.2,0.51,0,0.71l2.79,2.79C6.46,19.46,7,19.24,7,18.79V17z M14,17 c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1 s-1,0.45-1,1C17,16.55,17.45,17,18,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"emergency_recording\": {\n    \"name\": \"emergency_recording\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l3.15,3.13 C21.46,16.97,22,16.74,22,16.3V7.7c0-0.44-0.54-0.67-0.85-0.35L18,10.48z M14.5,14.6c-0.28,0.48-0.89,0.64-1.37,0.37L11,13.73V16 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2.27l-2.13,1.23c-0.48,0.28-1.09,0.11-1.37-0.37c-0.28-0.48-0.11-1.09,0.37-1.37L8,12l-2.13-1.23 C5.39,10.49,5.22,9.88,5.5,9.4c0.28-0.48,0.89-0.64,1.37-0.37L9,10.27V8c0-0.55,0.45-1,1-1s1,0.45,1,1v2.27l2.13-1.23 c0.48-0.28,1.09-0.11,1.37,0.37c0.28,0.48,0.11,1.09-0.37,1.37L12,12l2.13,1.23C14.61,13.51,14.78,14.12,14.5,14.6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.15,6.85L15,9V5.5C15,4.67,14.33,4,13.5,4h-9C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h9c0.83,0,1.5-0.67,1.5-1.5 V11l2.15,2.15c0.31,0.31,0.85,0.09,0.85-0.35V7.21C18,6.76,17.46,6.54,17.15,6.85z M12.38,11.95c-0.21,0.36-0.67,0.48-1.02,0.27 l-1.6-0.92V13c0,0.41-0.34,0.75-0.75,0.75S8.25,13.41,8.25,13v-1.7l-1.6,0.92c-0.36,0.21-0.82,0.08-1.02-0.27 c-0.21-0.36-0.08-0.82,0.27-1.02L7.5,10L5.9,9.08C5.54,8.87,5.42,8.41,5.63,8.05c0.21-0.36,0.67-0.48,1.02-0.27l1.6,0.92V7 c0-0.41,0.34-0.75,0.75-0.75S9.75,6.59,9.75,7v1.7l1.6-0.92c0.36-0.21,0.82-0.08,1.02,0.27c0.21,0.36,0.08,0.82-0.27,1.02L10.5,10 l1.6,0.92C12.46,11.13,12.58,11.59,12.38,11.95z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_left\": {\n    \"name\": \"turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.71,13.29c-0.39,0.39-1.02,0.39-1.41,0l-2.59-2.59c-0.39-0.39-0.39-1.02,0-1.41l2.59-2.59c0.39-0.39,1.02-0.39,1.41,0 c0.39,0.39,0.39,1.02,0,1.41L6.83,9L15,9c1.1,0,2,0.9,2,2v8c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1v-8l-8.17,0l0.88,0.88 C8.1,12.27,8.1,12.9,7.71,13.29z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.53,10.72c0.29-0.29,0.29-0.77,0-1.06L5.87,9L12,9v6.25c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75V9 c0-0.83-0.67-1.5-1.5-1.5l-6.13,0l0.66-0.66c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L3.71,7.54 c-0.39,0.39-0.39,1.02,0,1.41l1.76,1.76C5.76,11.01,6.24,11.01,6.53,10.72z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flight_class\": {\n    \"name\": \"flight_class\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M16,4h-2c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M6,4c0.55,0,1,0.45,1,1v3l2.5,8H17 c0.55,0,1,0.45,1,1s-0.45,1-1,1H9.49c-0.88,0-1.66-0.58-1.92-1.43L5.08,8.28C5.03,8.09,5,7.9,5,7.71V5C5,4.45,5.45,4,6,4z M18,20 c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1s0.45-1,1-1h8C17.55,19,18,19.45,18,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,4h-1.5C10.67,4,10,4.67,10,5.5v3.75c0,0.83,0.67,1.5,1.5,1.5H13c0.83,0,1.5-0.67,1.5-1.5V5.5C14.5,4.67,13.83,4,13,4z M5.75,4C6.16,4,6.5,4.34,6.5,4.75V7l1.9,6h5.85c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75H8.4c-0.66,0-1.24-0.43-1.43-1.06 l-1.9-6.22C5.02,7.07,5,6.92,5,6.78V4.75C5,4.34,5.34,4,5.75,4z M7.5,16.25c0-0.41,0.34-0.75,0.75-0.75h6 c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-6C7.84,17,7.5,16.66,7.5,16.25z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_road\": {\n    \"name\": \"remove_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,4L19,4c-0.55,0-1,0.45-1,1v7c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V5C20,4.45,19.55,4,19,4z\\\"></path><path d=\\\"M5,20L5,20c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h0C4.45,4,4,4.45,4,5v14C4,19.55,4.45,20,5,20z\\\"></path><path d=\\\"M12,8L12,8c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C11,7.55,11.45,8,12,8z\\\"></path><path d=\\\"M12,14L12,14c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C11,13.55,11.45,14,12,14z\\\"></path><path d=\\\"M12,20L12,20c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C11,19.55,11.45,20,12,20z\\\"></path><path d=\\\"M21.79,15.71L21.79,15.71c-0.39-0.39-1.02-0.39-1.41,0L19,17.09l-1.38-1.38c-0.39-0.39-1.02-0.39-1.41,0v0 c-0.39,0.39-0.39,1.02,0,1.41l1.38,1.38l-1.38,1.38c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0L19,19.91 l1.38,1.38c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-1.38-1.38l1.38-1.38C22.18,16.73,22.18,16.1,21.79,15.71z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.75,16L4.75,16c0.41,0,0.75-0.34,0.75-0.75V4.75C5.5,4.34,5.16,4,4.75,4h0C4.34,4,4,4.34,4,4.75v10.5 C4,15.66,4.34,16,4.75,16z\\\"></path><path d=\\\"M15.25,4L15.25,4c-0.41,0-0.75,0.34-0.75,0.75v5c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75v-5 C16,4.34,15.66,4,15.25,4z\\\"></path><path d=\\\"M10,11.5L10,11.5c0.41,0,0.75-0.34,0.75-0.75v-1.5c0-0.41-0.34-0.75-0.75-0.75h0c-0.41,0-0.75,0.34-0.75,0.75v1.5 C9.25,11.16,9.59,11.5,10,11.5z\\\"></path><path d=\\\"M10,7L10,7c0.41,0,0.75-0.34,0.75-0.75v-1.5C10.75,4.34,10.41,4,10,4h0C9.59,4,9.25,4.34,9.25,4.75v1.5 C9.25,6.66,9.59,7,10,7z\\\"></path><path d=\\\"M10,16L10,16c0.41,0,0.75-0.34,0.75-0.75v-1.5c0-0.41-0.34-0.75-0.75-0.75h0c-0.41,0-0.75,0.34-0.75,0.75v1.5 C9.25,15.66,9.59,16,10,16z\\\"></path><path d=\\\"M17.47,13.03L17.47,13.03c-0.29-0.29-0.77-0.29-1.06,0l-1.16,1.16l-1.16-1.16c-0.29-0.29-0.77-0.29-1.06,0l0,0 c-0.29,0.29-0.29,0.77,0,1.06l1.16,1.16l-1.16,1.16c-0.29,0.29-0.29,0.77,0,1.06h0c0.29,0.29,0.77,0.29,1.06,0l1.16-1.16 l1.16,1.16c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06l-1.16-1.16l1.16-1.16C17.76,13.8,17.76,13.32,17.47,13.03z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_grocery_store\": {\n    \"name\": \"local_grocery_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM2 4h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.67-1.43c-.16-.35-.52-.57-.9-.57H2c-.55 0-1 .45-1 1s.45 1 1 1zm15 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_road\": {\n    \"name\": \"edit_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,4L17,4c-0.55,0-1,0.45-1,1v6.9l2-2V5C18,4.45,17.55,4,17,4z\\\"></path><path d=\\\"M5,20L5,20c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h0C4.45,4,4,4.45,4,5v14C4,19.55,4.45,20,5,20z\\\"></path><path d=\\\"M11,8L11,8c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C10,7.55,10.45,8,11,8z\\\"></path><path d=\\\"M11,14L11,14c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C10,13.55,10.45,14,11,14z\\\"></path><path d=\\\"M11,20L11,20c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C10,19.55,10.45,20,11,20z\\\"></path><path d=\\\"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73v2.77c0,0.28,0.22,0.5,0.5,0.5h2.77l5.29-5.29 C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,4C4.22,4,4,4.22,4,4.5v11C4,15.78,4.22,16,4.5,16S5,15.78,5,15.5v-11C5,4.22,4.78,4,4.5,4z\\\"></path><path d=\\\"M14,4.5C14,4.22,13.78,4,13.5,4S13,4.22,13,4.5v5.96l1-1V4.5z\\\"></path><path d=\\\"M9,4C8.72,4,8.5,4.22,8.5,4.5v1C8.5,5.78,8.72,6,9,6s0.5-0.22,0.5-0.5v-1C9.5,4.22,9.28,4,9,4z\\\"></path><path d=\\\"M9,14c-0.28,0-0.5,0.22-0.5,0.5v1C8.5,15.78,8.72,16,9,16s0.5-0.22,0.5-0.5v-1C9.5,14.22,9.28,14,9,14z\\\"></path><path d=\\\"M9,9C8.72,9,8.5,9.22,8.5,9.5v1C8.5,10.78,8.72,11,9,11s0.5-0.22,0.5-0.5v-1C9.5,9.22,9.28,9,9,9z\\\"></path><path d=\\\"M18.07,9.64l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0L11,13.88V16h2.12l4.95-4.95C18.46,10.66,18.46,10.03,18.07,9.64z M12.71,15H12v-0.71l3.24-3.24l0.71,0.71L12.71,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"category\": {\n    \"name\": \"category\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.15 3.4L7.43 9.48c-.41.66.07 1.52.85 1.52h7.43c.78 0 1.26-.86.85-1.52L12.85 3.4c-.39-.64-1.31-.64-1.7 0z\\\"></path><circle cx=\\\"17.5\\\" cy=\\\"17.5\\\" r=\\\"4.5\\\"></circle><path d=\\\"M4 21.5h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"fork_right\": {\n    \"name\": \"fork_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,20c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-3c0.73-2.58,3.07-3.47,5.17-3l-0.88,0.88c-0.39,0.39-0.39,1.02,0,1.41 c0.39,0.39,1.02,0.39,1.41,0l2.59-2.59c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41L16.17,12c-1.51-0.33-3.73,0.08-5.17,1.36l0-6.53l0.88,0.88c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59c-0.39-0.39-1.02-0.39-1.41,0L6.71,6.29c-0.39,0.39-0.39,1.02,0,1.41 c0.39,0.39,1.02,0.39,1.41,0L9,6.83V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9,5.87l0,5.48c1.2-1.05,2.74-1.4,4.13-1.11l-0.66-0.66c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l1.76,1.76 c0.39,0.39,0.39,1.02,0,1.41l-1.76,1.76c-0.29,0.29-0.77,0.29-1.06,0l0,0c-0.29-0.29-0.29-0.77,0-1.06l0.66-0.66 C11.26,11.32,9.56,12.28,9,14v2.25C9,16.66,8.66,17,8.25,17S7.5,16.66,7.5,16.25l0-10.38L6.84,6.53c-0.29,0.29-0.77,0.29-1.06,0 c-0.29-0.29-0.29-0.77,0-1.06l1.76-1.76c0.39-0.39,1.02-0.39,1.41,0l1.76,1.76c0.29,0.29,0.29,0.77,0,1.06 c-0.29,0.29-0.77,0.29-1.06,0L9,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_movies\": {\n    \"name\": \"local_movies\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"streetview\": {\n    \"name\": \"streetview\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z\\\"></path><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"5\\\"></circle><path d=\\\"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"soup_kitchen\": {\n    \"name\": \"soup_kitchen\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.15,13.5c-0.46,0-0.8-0.42-0.71-0.87C5.48,12.45,5.5,12.24,5.5,12c0-1-1-2.85-1-3.62c0-0.29,0.03-0.59,0.17-0.93 C4.78,7.18,5.04,7,5.34,7c0.45,0,0.8,0.42,0.71,0.86C6.01,8.04,6,8.21,6,8.38C6,9.15,7,11,7,12c0,0.42-0.08,0.76-0.17,1.01 C6.73,13.31,6.46,13.5,6.15,13.5z M12.65,13.5c0.31,0,0.58-0.19,0.68-0.49c0.09-0.25,0.17-0.59,0.17-1.01c0-1-1-2.85-1-3.62 c0-0.17,0.01-0.34,0.04-0.51C12.63,7.42,12.29,7,11.84,7c-0.29,0-0.56,0.18-0.67,0.45C11.03,7.79,11,8.08,11,8.38 C11,9.15,12,11,12,12c0,0.24-0.02,0.45-0.06,0.63C11.85,13.08,12.19,13.5,12.65,13.5z M9.4,13.5c0.31,0,0.58-0.19,0.68-0.49 c0.09-0.25,0.17-0.59,0.17-1.01c0-1-1-2.85-1-3.62c0-0.17,0.01-0.34,0.04-0.51C9.38,7.42,9.04,7,8.59,7C8.29,7,8.03,7.18,7.92,7.45 C7.78,7.79,7.75,8.08,7.75,8.38c0,0.77,1,2.63,1,3.62c0,0.24-0.02,0.45-0.06,0.63C8.6,13.08,8.94,13.5,9.4,13.5z M20.46,6.37 c0.57,0.07,1.08-0.34,1.12-0.91C21.59,5.28,21.6,5.12,21.6,5c0-1.65-1.35-3-3-3c-1.54,0-2.81,1.16-2.98,2.65L14.53,15H3.99 c-0.6,0-1.07,0.54-0.98,1.14C3.54,19.46,6.39,22,9.75,22c3.48,0,6.34-2.73,6.71-6.23l1.15-10.87C17.66,4.39,18.08,4,18.6,4 c0.55,0,1,0.45,1,1c0,0.07-0.01,0.18-0.01,0.31C19.55,5.84,19.93,6.3,20.46,6.37L20.46,6.37z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M5.08,6c0.3,0,0.52,0.28,0.45,0.58C5.49,6.75,5.48,6.9,5.48,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.37-0.08,0.66-0.16,0.86 C6.02,10.88,5.85,11,5.66,11c-0.3,0-0.53-0.28-0.46-0.58c0.04-0.16,0.07-0.35,0.07-0.58c0-0.77-0.77-2.19-0.77-2.79 c0-0.24,0.03-0.49,0.16-0.79C4.74,6.11,4.9,6,5.08,6z M8.03,11c0.19,0,0.37-0.12,0.44-0.3c0.08-0.2,0.16-0.49,0.16-0.86 c0-0.77-0.77-2.19-0.77-2.79c0-0.16,0.01-0.31,0.05-0.48C7.98,6.28,7.76,6,7.46,6C7.28,6,7.11,6.11,7.04,6.27 C6.9,6.57,6.88,6.81,6.88,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.22-0.03,0.42-0.07,0.58C7.51,10.72,7.73,11,8.03,11z M10.41,11 c0.19,0,0.37-0.12,0.44-0.3c0.08-0.2,0.16-0.49,0.16-0.86c0-0.77-0.77-2.19-0.77-2.79c0-0.16,0.01-0.31,0.05-0.48 C10.36,6.28,10.13,6,9.83,6C9.65,6,9.49,6.11,9.41,6.27c-0.13,0.3-0.16,0.54-0.16,0.79c0,0.59,0.77,2.02,0.77,2.79 c0,0.22-0.03,0.42-0.07,0.58C9.88,10.72,10.11,11,10.41,11z M16.89,5.39c0.44,0.06,0.83-0.28,0.85-0.72c0-0.12,0.01-0.26,0.01-0.4 c0-1.25-1.02-2.28-2.26-2.27c-1.15,0.01-2.1,0.88-2.22,2l-0.94,8.4l-8.82,0c-0.29,0-0.53,0.25-0.5,0.55C3.26,15.78,5.59,18,8.4,18 c2.78,0,5.07-2.18,5.36-4.99l0.99-8.84c0.04-0.38,0.36-0.67,0.75-0.67c0.41,0,0.75,0.34,0.75,0.75c0,0.11,0,0.24-0.01,0.36 C16.22,5,16.51,5.34,16.89,5.39z\\\"></path></g>\"\n      }\n    }\n  },\n  \"castle\": {\n    \"name\": \"castle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,9c-0.55,0-1,0.45-1,1v1h-2V4c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h-2V4c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h-2V4 c0-0.55-0.45-1-1-1S9,3.45,9,4v1H7V4c0-0.55-0.45-1-1-1S5,3.45,5,4v7H3v-1c0-0.55-0.45-1-1-1s-1,0.45-1,1v9c0,1.1,0.9,2,2,2h7v-3 c0-1.1,0.9-2,2-2s2,0.9,2,2v3h7c1.1,0,2-0.9,2-2v-9C23,9.45,22.55,9,22,9z M11,12H9V9h2V12z M15,12h-2V9h2V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.25,7c-0.41,0-0.75,0.34-0.75,0.75V9H16V2.75C16,2.34,15.66,2,15.25,2S14.5,2.34,14.5,2.75V4h-2V2.75 C12.5,2.34,12.16,2,11.75,2S11,2.34,11,2.75V4H9V2.75C9,2.34,8.66,2,8.25,2S7.5,2.34,7.5,2.75V4h-2V2.75C5.5,2.34,5.16,2,4.75,2 S4,2.34,4,2.75V9H2.5V7.75C2.5,7.34,2.16,7,1.75,7S1,7.34,1,7.75v7.75C1,16.33,1.67,17,2.5,17H8v-2c0-1.1,0.9-2,2-2s2,0.9,2,2v2 h5.5c0.83,0,1.5-0.67,1.5-1.5V7.75C19,7.34,18.66,7,18.25,7z M9,10H7.5V7H9V10z M12.5,10H11V7h1.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hardware\": {\n    \"name\": \"hardware\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><g><path d=\\\"M17.59,3.41L15,6V5c0-1.1-0.9-2-2-2H9C6.24,3,4,5.24,4,8h5v3h6V8l2.59,2.59c0.26,0.26,0.62,0.41,1,0.41h0.01 C19.37,11,20,10.37,20,9.59V4.41C20,3.63,19.37,3,18.59,3h-0.01C18.21,3,17.85,3.15,17.59,3.41z\\\"></path></g><g><path d=\\\"M9,13v7c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-7H9z\\\"></path></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M8.5,17H11c0.55,0,1-0.45,1-1v-5.25H7.5V16C7.5,16.55,7.95,17,8.5,17z\\\"></path><path d=\\\"M14.94,3c-0.28,0-0.55,0.11-0.75,0.31L12,5.5v-1C12,3.67,11.33,3,10.5,3H8C5.79,3,4,4.79,4,7h3.5v2.25H12V6.5l2.19,2.19 C14.39,8.89,14.66,9,14.94,9h0C15.53,9,16,8.53,16,7.94V4.06C16,3.47,15.53,3,14.94,3L14.94,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"trip_origin\": {\n    \"name\": \"trip_origin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"pedal_bike\": {\n    \"name\": \"pedal_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H13c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1.6l1.46,4h-4.81l-0.36-1h0.09 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H8C7.45,7,7,7.45,7,8v0c0,0.55,0.45,1,1,1h0.75l1.82,5H9.9c-0.44-2.23-2.31-3.88-4.65-3.99 C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5 c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.42,1.23-1.6,2.08-3.02,1.99C3.31,17.9,2.07,16.64,2,15.14C1.93,13.39,3.27,12,5,12 c1.33,0,2.42,0.83,2.82,2H6c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1H7.82z M14.1,14h-1.4l-0.73-2H15 C14.56,12.58,14.24,13.25,14.1,14z M18.88,18c-1.54-0.06-2.84-1.37-2.88-2.92c-0.02-0.96,0.39-1.8,1.05-2.36l0.62,1.7 c0.19,0.52,0.76,0.79,1.28,0.6l0,0c0.52-0.19,0.79-0.76,0.6-1.28l-0.63-1.73c0,0,0,0,0.01-0.01c1.72-0.04,3.08,1.29,3.08,3 C22,16.72,20.62,18.06,18.88,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.82,9l-1.58-4.34C13.1,4.26,12.72,4,12.3,4h-1.8C10.22,4,10,4.22,10,4.5v0C10,4.78,10.22,5,10.5,5h1.8l1.46,4H8.75 L8.38,8H9.5C9.78,8,10,7.78,10,7.5v0C10,7.22,9.78,7,9.5,7h-3C6.22,7,6,7.22,6,7.5v0C6,7.78,6.22,8,6.5,8h0.82l1.46,4H7.95 C7.7,10.22,6.18,8.9,4.29,9.01c-1.68,0.09-3.1,1.43-3.27,3.1C0.8,14.25,2.41,16,4.5,16c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.78,1.77,3.1,3.66,2.99c1.68-0.09,3.1-1.43,3.27-3.1C19.2,10.75,17.59,9,15.5,9H14.82z M9.11,10h3.92 c-0.53,0.52-0.88,1.22-0.98,2H9.84L9.11,10z M4.5,15C3.1,15,2,13.9,2,12.5c0-1.4,1.22-2.56,2.62-2.5c1.17,0.05,2.11,0.88,2.33,2 H4.5C4.22,12,4,12.22,4,12.5v0C4,12.78,4.22,13,4.5,13h2.45C6.73,14.15,5.73,15,4.5,15z M15.48,15C14.13,14.99,13,13.85,13,12.5 c0-0.94,0.5-1.73,1.24-2.16l0.86,2.36c0.09,0.26,0.38,0.39,0.64,0.3h0c0.26-0.09,0.39-0.38,0.3-0.64l-0.85-2.33 C15.3,10.02,15.4,10,15.5,10c1.4,0,2.5,1.1,2.5,2.5C18,13.91,16.89,15.01,15.48,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"store_mall_directory\": {\n    \"name\": \"store_mall_directory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.16 7.8c-.09-.46-.5-.8-.98-.8H4.82c-.48 0-.89.34-.98.8L3 12v1c0 .55.45 1 1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1s1-.45 1-1v-5c.55 0 1-.45 1-1v-1l-.84-4.2zM12 18H6v-4h6v4zM5 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"local_hotel\": {\n    \"name\": \"local_hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V6c0-.55-.45-1-1-1s-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1v-2h18v2c0 .55.45 1 1 1s1-.45 1-1v-8c0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant_menu\": {\n    \"name\": \"restaurant_menu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83-6.19-6.18c-.48-.48-1.31-.35-1.61.27-.71 1.49-.45 3.32.78 4.56l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L4.4 19.17c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 14.41l6.18 6.18c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"train\": {\n    \"name\": \"train\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H7.8c.13 0 .26-.05.35-.15L10 19h4l1.85 1.85c.09.09.22.15.35.15h1.09c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z\\\"></path>\"\n      }\n    }\n  },\n  \"moving\": {\n    \"name\": \"moving\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.7,17.29c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59c0.39-0.39,1.02-0.39,1.41,0l1.17,1.17c1.17,1.17,3.07,1.17,4.24,0 l4.18-4.17l1.44,1.44c0.31,0.31,0.85,0.09,0.85-0.35V6.5C22,6.22,21.78,6,21.5,6h-4.29c-0.45,0-0.67,0.54-0.35,0.85l1.44,1.44 l-4.17,4.17c-0.39,0.39-1.02,0.39-1.41,0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24,0L2.7,15.88C2.32,16.27,2.32,16.91,2.7,17.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2.53,14.12c-0.29-0.29-0.29-0.77,0-1.06L6.08,9.5c0.98-0.98,2.56-0.98,3.54,0l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0 l3.23-3.23l-1.12-1.12C13.54,5.54,13.76,5,14.21,5h3.29C17.78,5,18,5.22,18,5.5v3.29c0,0.45-0.54,0.67-0.85,0.35l-1.12-1.12 l-3.23,3.23c-0.98,0.98-2.56,0.98-3.54,0l-0.7-0.7c-0.39-0.39-1.02-0.39-1.41,0l-3.56,3.56C3.3,14.41,2.82,14.41,2.53,14.12z\\\"></path>\"\n      }\n    }\n  },\n  \"local_police\": {\n    \"name\": \"local_police\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,12.59l0.63,2.73c0.1,0.43-0.37,0.77-0.75,0.54L12,14.42l-2.39,1.44c-0.38,0.23-0.85-0.11-0.75-0.54L9.5,12.6 l-2.1-1.81C7.06,10.5,7.24,9.95,7.68,9.91l2.78-0.24l1.08-2.56c0.17-0.41,0.75-0.41,0.92,0l1.08,2.55l2.78,0.24 c0.44,0.04,0.62,0.59,0.28,0.88L14.5,12.59z M4.19,4.47C3.47,4.79,3,5.51,3,6.3V11c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V6.3c0-0.79-0.47-1.51-1.19-1.83l-7-3.11c-0.52-0.23-1.11-0.23-1.62,0L4.19,4.47z\\\"></path>\"\n      }\n    }\n  },\n  \"my_location\": {\n    \"name\": \"my_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"car_crash\": {\n    \"name\": \"car_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18,7c-0.28,0-0.5-0.22-0.5-0.5v-3C17.5,3.22,17.72,3,18,3 s0.5,0.22,0.5,0.5v3C18.5,6.78,18.28,7,18,7z M18.5,8.5C18.5,8.78,18.28,9,18,9s-0.5-0.22-0.5-0.5S17.72,8,18,8 S18.5,8.22,18.5,8.5z M19.5,20c0.82,0,1.5-0.67,1.5-1.5v-6.18c-1.05,0.51-2.16,0.69-3.09,0.68c0.06,0.16,0.09,0.33,0.09,0.5 c0,0.83-0.67,1.5-1.5,1.5S15,14.33,15,13.5c0-0.39,0.15-0.74,0.39-1.01c-1.63-0.66-2.96-1.91-3.71-3.49H5.81l1.04-3H11 c0-0.69,0.1-1.37,0.29-2H6.5C5.84,4,5.29,4.42,5.08,5.01l-1.97,5.67C3.04,10.89,3,11.11,3,11.34v7.16C3,19.33,3.67,20,4.5,20 S6,19.33,6,18.5V18h12v0.5C18,19.33,18.68,20,19.5,20z M7.5,15C6.67,15,6,14.33,6,13.5S6.67,12,7.5,12S9,12.67,9,13.5 S8.33,15,7.5,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M19,5c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S19,2.79,19,5z M15.5,6.5C15.5,6.22,15.28,6,15,6s-0.5,0.22-0.5,0.5 S14.72,7,15,7S15.5,6.78,15.5,6.5z M16,16c0.55,0,1-0.45,1-1v-4.88c-0.62,0.24-1.29,0.38-2,0.38c-0.32,0-0.64-0.03-0.94-0.08 c0.27,0.18,0.44,0.48,0.44,0.83c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c0-0.51,0.39-0.93,0.88-0.99C12.14,9.87,11.09,9.06,10.39,8 H5.02l1-2.5h3.51C9.47,4.99,9.51,4.39,9.59,4H6.02C5.4,4,4.85,4.37,4.62,4.94L3.11,8.73C3.04,8.91,3,9.1,3,9.29L3,15 c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-0.5h10V15C15,15.55,15.45,16,16,16z M6.5,12.25c-0.55,0-1-0.45-1-1s0.45-1,1-1 c0.55,0,1,0.45,1,1S7.05,12.25,6.5,12.25z M15.5,3.5C15.5,3.22,15.28,3,15,3s-0.5,0.22-0.5,0.5v1C14.5,4.78,14.72,5,15,5 s0.5-0.22,0.5-0.5V3.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"u_turn_left\": {\n    \"name\": \"u_turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.71,12.29c0.39-0.39,1.02-0.39,1.41,0L6,13.17V9c0-3.31,2.69-6,6-6s6,2.69,6,6v11c0,0.55-0.45,1-1,1s-1-0.45-1-1V9 c0-2.21-1.79-4-4-4S8,6.79,8,9v4.17l0.88-0.88c0.39-0.39,1.02-0.39,1.41,0c0.39,0.39,0.39,1.02,0,1.41l-2.59,2.59 c-0.39,0.39-1.02,0.39-1.41,0l-2.59-2.59C3.32,13.32,3.32,12.68,3.71,12.29z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3.78,9.47c0.29-0.29,0.77-0.29,1.06,0l0.66,0.66l0-2.44c0-2.35,1.72-4.45,4.06-4.67c2.68-0.26,4.94,1.85,4.94,4.48v7.75 c0,0.41-0.34,0.75-0.75,0.75S13,15.66,13,15.25l0-7.58c0-1.62-1.22-3.08-2.84-3.17C8.43,4.41,7,5.79,7,7.5l0,2.63l0.66-0.66 c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06l-1.76,1.76c-0.39,0.39-1.02,0.39-1.41,0l-1.76-1.76 C3.49,10.24,3.49,9.76,3.78,9.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"run_circle\": {\n    \"name\": \"run_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M15.41,11.91c-0.71-0.2-1.63-0.74-2.32-1.66l-0.41,2.35l1.19,1.3 C13.95,13.98,14,14.1,14,14.22v3.28c0,0.28-0.22,0.5-0.5,0.5h0c-0.28,0-0.5-0.22-0.5-0.5v-3.08l-1.11-1.21l-0.43,2.15 c-0.05,0.27-0.32,0.45-0.59,0.39l-2.78-0.57c-0.27-0.06-0.45-0.32-0.39-0.59v0c0.06-0.27,0.32-0.44,0.59-0.39l2.29,0.47l0.96-4.89 L10,10.35v1.15c0,0.28-0.22,0.5-0.5,0.5h0C9.22,12,9,11.78,9,11.5V10c0-0.21,0.13-0.4,0.33-0.47l2.95-1.09 c0.49-0.18,1.02,0.04,1.25,0.51c0.65,1.35,1.55,1.85,2.1,2C15.85,11,16,11.18,16,11.4v0.04C16,11.75,15.71,11.99,15.41,11.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M11,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 s-1-0.45-1-1C10,5.45,10.45,5,11,5z M12.88,10.53c-0.64-0.16-1.47-0.57-2.05-1.31l-0.21,1.19l1.24,1.24 C11.95,11.74,12,11.87,12,12v2.5c0,0.28-0.22,0.5-0.5,0.5h0c-0.28,0-0.5-0.22-0.5-0.5v-2.29l-1-0.99l-0.33,1.64 c-0.05,0.27-0.32,0.45-0.59,0.39L6.9,12.79c-0.27-0.06-0.45-0.32-0.39-0.59l0,0c0.06-0.27,0.32-0.44,0.59-0.39l1.7,0.35l0.62-3.12 L8.5,9.37v0.76c0,0.27-0.22,0.49-0.49,0.49H7.99c-0.27,0-0.49-0.22-0.49-0.49V9.02c0-0.21,0.13-0.4,0.33-0.47l2.34-0.84 c0.46-0.17,1.01,0.06,1.25,0.49c0.52,0.94,1.23,1.27,1.7,1.37c0.22,0.05,0.38,0.25,0.38,0.48v0 C13.5,10.37,13.19,10.61,12.88,10.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bike\": {\n    \"name\": \"electric_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H13c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1.6l1.46,4h-4.81l-0.36-1h0.09 c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5c0,0.55,0.45,1,1,1h0.75l1.82,5H9.9C9.46,8.77,7.59,7.12,5.25,7.01 C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5 C24,9.2,21.8,7,19,7z M6,13h1.82c-0.42,1.23-1.6,2.08-3.02,1.99C3.31,14.9,2.07,13.64,2,12.14C1.93,10.39,3.27,9,5,9 c1.33,0,2.42,0.83,2.82,2H6c-0.55,0-1,0.45-1,1C5,12.55,5.45,13,6,13z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M18.88,15c-1.54-0.06-2.84-1.37-2.88-2.92c-0.02-0.96,0.39-1.8,1.05-2.36l0.62,1.7c0.19,0.52,0.76,0.79,1.28,0.6 c0.52-0.19,0.79-0.76,0.6-1.28l-0.63-1.73c0,0,0,0,0.01-0.01C20.64,8.96,22,10.29,22,12C22,13.72,20.62,15.06,18.88,15z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,7h-0.68l-1.58-4.34C13.1,2.26,12.72,2,12.3,2h-1.8C10.22,2,10,2.22,10,2.5C10,2.78,10.22,3,10.5,3h1.8l1.46,4H8.75 L8.38,6H9.5C9.78,6,10,5.78,10,5.5C10,5.22,9.78,5,9.5,5h-3C6.22,5,6,5.22,6,5.5C6,5.78,6.22,6,6.5,6h0.82l1.46,4H7.95 C7.7,8.22,6.18,6.9,4.29,7.01c-1.68,0.09-3.1,1.43-3.27,3.1C0.8,12.25,2.41,14,4.5,14c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.78,1.77,3.1,3.66,2.99c1.68-0.09,3.1-1.43,3.27-3.1C19.2,8.75,17.59,7,15.5,7z M4.5,11h2.45c-0.23,1.15-1.22,2-2.45,2 C3.1,13,2,11.9,2,10.5C2,9.1,3.22,7.94,4.62,8c1.17,0.05,2.11,0.88,2.33,2H4.5C4.22,10,4,10.22,4,10.5C4,10.78,4.22,11,4.5,11z M9.84,10L9.11,8h3.92c-0.53,0.52-0.88,1.22-0.98,2H9.84z M15.48,13C14.13,12.99,13,11.85,13,10.5c0-0.94,0.5-1.73,1.24-2.16 l0.86,2.36c0.09,0.26,0.38,0.39,0.64,0.3c0.26-0.09,0.39-0.38,0.3-0.64l-0.85-2.33C15.3,8.02,15.4,8,15.5,8c1.4,0,2.5,1.1,2.5,2.5 C18,11.91,16.89,13.01,15.48,13z\\\"></path><polygon points=\\\"9.5,16 7,16 10.5,18 10.5,17 13,17 9.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_hospital\": {\n    \"name\": \"local_hospital\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 11h-3v3c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1v-3H7c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1h3V7c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v3h3c.55 0 1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"tire_repair\": {\n    \"name\": \"tire_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,7c0,0.55,0.45,1,1,1c0.28,0,0.53-0.11,0.71-0.29c0.4-0.4,1.04-2.46,1.04-2.46s-2.06,0.64-2.46,1.04 C18.11,6.47,18,6.72,18,7z\\\"></path><path d=\\\"M19,2c-2.76,0-5,2.24-5,5c0,2.05,1.23,3.81,3,4.58V12c0,0.55,0.45,1,1,1v5c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3 c0-1.65-1.35-3-3-3c-0.35,0-0.69,0.06-1,0.17V5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2v-4 c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.65,1.35,3,3,3s3-1.35,3-3v-5c0.55,0,1-0.45,1-1v-0.42c1.77-0.77,3-2.53,3-4.58 C24,4.24,21.76,2,19,2z M6,19.5l-2-2v-2.83l2,2V19.5z M6,14.5l-2-2V9.67l2,2V14.5z M6,9.5l-2-2V4.67l2,2V9.5z M10,17.5l-2,2v-2.83 l2-2V17.5z M10,12.5l-2,2v-2.83l2-2V12.5z M10,7.5l-2,2V6.67l2-2V7.5z M19,10c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S20.66,10,19,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,5.75c0,0.41,0.34,0.75,0.75,0.75c0.21,0,0.39-0.08,0.53-0.22C15.58,5.98,16,4.5,16,4.5s-1.48,0.42-1.78,0.72 C14.08,5.36,14,5.54,14,5.75z\\\"></path><path d=\\\"M14.75,2C12.68,2,11,3.68,11,5.75c0,1.44,0.81,2.69,2,3.32V9.5c0,0.28,0.22,0.5,0.5,0.5H14v4.75 c0,0.41-0.34,0.75-0.75,0.75c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.24-1.01-2.25-2.25-2.25c-0.26,0-0.52,0.05-0.75,0.13V4.5 C9.5,3.67,8.83,3,8,3H3.5C2.67,3,2,3.67,2,4.5v11C2,16.33,2.67,17,3.5,17H8c0.83,0,1.5-0.67,1.5-1.5v-2.25 c0-0.41,0.34-0.75,0.75-0.75S11,12.84,11,13.25v1.5c0,1.24,1.01,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25V10H16 c0.28,0,0.5-0.22,0.5-0.5V9.07c1.19-0.63,2-1.88,2-3.32C18.5,3.68,16.82,2,14.75,2z M5,15.5L3.5,14v-2.12l1.5,1.5V15.5z M5,11.75 l-1.5-1.5V8.13L5,9.62V11.75z M5,8L3.5,6.5V4.38L5,5.88V8z M8,14l-1.5,1.5v-2.12l1.5-1.5V14z M8,10.25l-1.5,1.5V9.62L8,8.13V10.25 z M8,6.5L6.5,8V5.88L8,4.38V6.5z M14.75,8c-1.24,0-2.25-1.01-2.25-2.25c0-1.24,1.01-2.25,2.25-2.25S17,4.51,17,5.75 C17,6.99,15.99,8,14.75,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"egg\": {\n    \"name\": \"egg\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3C8.5,3,5,9.33,5,14c0,3.87,3.13,7,7,7s7-3.13,7-7C19,9.33,15.5,3,12,3z M13,18c-3,0-5-1.99-5-5c0-0.55,0.45-1,1-1 s1,0.45,1,1c0,2.92,2.42,3,3,3c0.55,0,1,0.45,1,1S13.55,18,13,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-2.75,0-5.5,4.93-5.5,8.56C4.5,14.56,6.96,17,10,17s5.5-2.44,5.5-5.44C15.5,7.93,12.75,3,10,3z M10.25,14.5 C8.37,14.5,7,12.92,7,10.75C7,10.34,7.34,10,7.75,10s0.75,0.34,0.75,0.75c0,1.12,0.54,2.25,1.75,2.25c0.41,0,0.75,0.34,0.75,0.75 S10.66,14.5,10.25,14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_pizza\": {\n    \"name\": \"local_pizza\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C9.01 2 6.28 3.08 4.17 4.88c-.71.61-.86 1.65-.4 2.46l7.36 13.11c.38.68 1.36.68 1.74 0l7.36-13.11c.46-.81.31-1.86-.4-2.46C17.73 3.09 14.99 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"liquor\": {\n    \"name\": \"liquor\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><g><path d=\\\"M3,14c0,1.3,0.84,2.4,2,2.82V20H4c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7 v-3.18C8.16,16.4,9,15.3,9,14V7c0-0.55-0.45-1-1-1H4C3.45,6,3,6.45,3,7V14z M5,8h2v3H5V8z\\\"></path></g><g><path d=\\\"M20.64,8.54l-0.96-0.32C19.27,8.08,19,7.7,19,7.27V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.27,0.81-0.68,0.95l-0.96,0.32C11.55,8.83,11,9.59,11,10.45V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.64,8.54z M16,4h1v1h-1V4z M13,10.44l0.95-0.32C15.18,9.72,16,8.57,16,7.28V7h1v0.28 c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12h-7V10.44z M20,20h-7v-2h7V20z\\\"></path></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M3,11.5c0,1.12,0.74,2.05,1.75,2.37v2.63h-1C3.34,16.5,3,16.84,3,17.25l0,0C3,17.66,3.34,18,3.75,18h3.5 C7.66,18,8,17.66,8,17.25l0,0c0-0.41-0.34-0.75-0.75-0.75h-1v-2.63C7.26,13.55,8,12.62,8,11.5V6c0-0.55-0.45-1-1-1H4 C3.45,5,3,5.45,3,6V11.5z M6.5,6.5V9h-2V6.5H6.5z\\\"></path></g><g><path d=\\\"M17.06,7.62l-0.61-0.25C15.87,7.15,15.5,6.6,15.5,5.98V3c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v2.98 c0,0.61-0.37,1.16-0.94,1.39L9.94,7.62C9.37,7.85,9,8.4,9,9.02v7.48c0,0.83,0.67,1.5,1.5,1.5h6c0.83,0,1.5-0.67,1.5-1.5V9.02 C18,8.4,17.63,7.85,17.06,7.62z M14,3.5v1h-1v-1H14z M11.11,8.77C12.25,8.31,12.99,7.23,13,6h1c0.01,1.23,0.74,2.31,1.88,2.77 l0.61,0.25V10h-6V9.02L11.11,8.77z M10.5,16.5V15h6v1.5H10.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_taxi\": {\n    \"name\": \"local_taxi\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v1H6.5c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_truck\": {\n    \"name\": \"fire_truck\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22.9,10.69l-1.44-4.32C21.18,5.55,20.42,5,19.56,5H19V4c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v1h-2c-1.1,0-2,0.9-2,2 v4H3c-1.1,0-2,0.9-2,2v3c0,1.1,0.9,2,2,2h1c0,1.66,1.34,3,3,3s3-1.34,3-3h4c0,1.66,1.34,3,3,3s3-1.34,3-3h1c1.1,0,2-0.9,2-2v-4.68 C23,11.11,22.97,10.9,22.9,10.69z M7,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,19,7,19z M17,19c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S17.55,19,17,19z M14,11V7h5.56l1.33,4H14z\\\"></path><path d=\\\"M10.25,8.5H10v-2h0.25C10.66,6.5,11,6.16,11,5.75v0C11,5.34,10.66,5,10.25,5h-8.5C1.34,5,1,5.34,1,5.75v0 C1,6.16,1.34,6.5,1.75,6.5H2v2H1.75C1.34,8.5,1,8.84,1,9.25v0C1,9.66,1.34,10,1.75,10h8.5C10.66,10,11,9.66,11,9.25v0 C11,8.84,10.66,8.5,10.25,8.5z M5.25,8.5H3.5v-2h1.75V8.5z M8.5,8.5H6.75v-2H8.5V8.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.84,8.68l-1.43-2.85C17.16,5.32,16.64,5,16.07,5H15.5V3.5C15.5,3.22,15.28,3,15,3h-1.5C13.22,3,13,3.22,13,3.5V5h-1.5 C10.67,5,10,5.67,10,6.5v3H2.5C1.67,9.5,1,10.17,1,11v2.5C1,14.33,1.67,15,2.5,15h0.55c0.23,1.14,1.24,2,2.45,2 c1.21,0,2.22-0.86,2.45-2h4.1c0.23,1.14,1.24,2,2.45,2c1.21,0,2.22-0.86,2.45-2h0.55c0.83,0,1.5-0.67,1.5-1.5V9.35 C19,9.12,18.95,8.89,18.84,8.68z M5.5,15.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,15.5,5.5,15.5z M14.5,15.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.05,15.5,14.5,15.5z M17.5,9.5h-6v-3h4.57l1.43,2.85V9.5z\\\"></path><path d=\\\"M8.5,7.5H8V6h0.5C8.78,6,9,5.78,9,5.5v0C9,5.22,8.78,5,8.5,5h-7C1.22,5,1,5.22,1,5.5v0C1,5.78,1.22,6,1.5,6H2v1.5H1.5 C1.22,7.5,1,7.72,1,8v0c0,0.28,0.22,0.5,0.5,0.5h7C8.78,8.5,9,8.28,9,8v0C9,7.72,8.78,7.5,8.5,7.5z M4.5,7.5H3V6h1.5V7.5z M7,7.5 H5.5V6H7V7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_car\": {\n    \"name\": \"directions_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 20.33 6 19.5V19h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 11H5z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_right\": {\n    \"name\": \"ramp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,21c0.55,0,1-0.45,1-1V6.83l0.88,0.88c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59 c-0.39-0.39-1.02-0.39-1.41,0L8.71,6.29c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L11,6.83v0V9 c0,3.62-2.89,6.22-4.97,7.62c-0.52,0.35-0.59,1.09-0.14,1.53c0.33,0.33,0.87,0.4,1.26,0.13c1.59-1.06,2.89-2.28,3.85-3.59l0,5.3 C11,20.55,11.45,21,12,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,5.87L8.59,6.53c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.77,0-1.06l1.76-1.76c0.39-0.39,1.02-0.39,1.41,0 l1.76,1.76c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0l-0.66-0.66l0,10.38c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75V12c-0.85,1.16-1.93,2.08-2.87,2.74c-0.3,0.21-0.7,0.17-0.96-0.08c-0.33-0.33-0.28-0.88,0.1-1.14 c1.61-1.12,3.72-3.14,3.72-5.81L9.25,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mosque\": {\n    \"name\": \"mosque\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,8h10c0.29,0,0.57,0.06,0.84,0.13C17.93,7.8,18,7.46,18,7.09c0-1.31-0.65-2.53-1.74-3.25L12,1L7.74,3.84 C6.65,4.56,6,5.78,6,7.09C6,7.46,6.07,7.8,6.16,8.13C6.43,8.06,6.71,8,7,8z\\\"></path><path d=\\\"M24,7c0-1.1-2-3-2-3s-2,1.9-2,3c0,0.74,0.4,1.38,1,1.72V13h-2v-2c0-1.1-0.9-2-2-2H7c-1.1,0-2,0.9-2,2v2H3V8.72 C3.6,8.38,4,7.74,4,7c0-1.1-2-3-2-3S0,5.9,0,7c0,0.74,0.4,1.38,1,1.72V21h9v-4c0-1.1,0.9-2,2-2s2,0.9,2,2v4h9V8.72 C23.6,8.38,24,7.74,24,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.67,7h8.67c0.17,0,0.33,0.02,0.49,0.05C14.93,6.71,15,6.36,15,5.99c0-1.23-0.65-2.38-1.71-3.01L10,1L6.71,2.98 C5.65,3.61,5,4.76,5,5.99c0,0.37,0.07,0.72,0.18,1.06C5.34,7.02,5.5,7,5.67,7z\\\"></path><path d=\\\"M19.75,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5c0,0.55,0.3,1.03,0.75,1.29V11H16V9.67C16,8.75,15.25,8,14.33,8H5.67 C4.75,8,4,8.75,4,9.67V11H2.5V6.79C2.95,6.53,3.25,6.05,3.25,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5 c0,0.55,0.3,1.03,0.75,1.29V17h7v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h7V6.79C19.45,6.53,19.75,6.05,19.75,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electrical_services\": {\n    \"name\": \"electrical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,14c0-0.55-0.45-1-1-1h-2v2h2C20.55,15,21,14.55,21,14z\\\"></path><path d=\\\"M20,17h-2v2h2c0.55,0,1-0.45,1-1C21,17.45,20.55,17,20,17z\\\"></path><path d=\\\"M16,12h-2c-1.1,0-2,0.9-2,2h-1c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1c0,1.1,0.9,2,2,2h2c0.55,0,1-0.45,1-1v-6 C17,12.45,16.55,12,16,12z\\\"></path><path d=\\\"M5,13c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5S10.43,4,8.5,4H5C4.45,4,4,4.45,4,5c0,0.55,0.45,1,1,1h3.5 C9.33,6,10,6.67,10,7.5S9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2H7C5.9,15,5,14.1,5,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,11.5c0-0.28-0.22-0.5-0.5-0.5H14v1h1.5C15.78,12,16,11.78,16,11.5z\\\"></path><path d=\\\"M15.5,14H14v1h1.5c0.28,0,0.5-0.22,0.5-0.5C16,14.22,15.78,14,15.5,14z\\\"></path><path d=\\\"M12.5,10H10c-0.55,0-1,0.45-1,1v1H8.5C8.22,12,8,12.22,8,12.5v1C8,13.77,8.23,14,8.5,14H9l0,1c0,0.55,0.45,1,1,1h2.5 c0.28,0,0.5-0.22,0.5-0.5v-5C13,10.22,12.78,10,12.5,10z\\\"></path><path d=\\\"M6.75,9H7.5C8.88,9,10,7.88,10,6.5C10,5.12,8.88,4,7.5,4h-2C5.22,4,5,4.22,5,4.5C5,4.78,5.22,5,5.5,5h2 C8.33,5,9,5.67,9,6.5S8.33,8,7.5,8H6.75C5.23,8,4,9.23,4,10.75s1.23,2.75,2.75,2.75H7v-1H6.75C5.78,12.5,5,11.72,5,10.75 S5.78,9,6.75,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"satellite\": {\n    \"name\": \"satellite\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h3c0 1.66-1.34 3-3 3V5zm0 5.91c0-.49.36-.9.85-.98 2.08-.36 3.72-2 4.08-4.08.08-.49.49-.85.98-.85.61 0 1.09.53 1 1.13-.48 2.96-2.81 5.3-5.77 5.78-.6.1-1.14-.39-1.14-1zm.63 6.28l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_transit\": {\n    \"name\": \"directions_transit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H17.3c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_bike\": {\n    \"name\": \"directions_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.06 1.06 2.38 1.78 3.96 2.02.6.09 1.14-.39 1.14-1 0-.49-.37-.91-.85-.99-1.11-.18-2.02-.71-2.75-1.43l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v4c0 .55.45 1 1 1s1-.45 1-1v-4.4c0-.52-.2-1.01-.55-1.38L10.8 10.5zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"transit_enterexit\": {\n    \"name\": \"transit_enterexit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.5 18H8c-1.1 0-2-.9-2-2V9.5C6 8.67 6.67 8 7.5 8S9 8.67 9 9.5v3.27L14.95 7c.57-.55 1.48-.54 2.04.02s.56 1.47.01 2.04L11.15 15h3.35c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_hydrant_alt\": {\n    \"name\": \"fire_hydrant_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,11h-1V8h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1.35C16.83,3.67,14.61,2,12,2S7.17,3.67,6.35,6H5 C4.45,6,4,6.45,4,7v0c0,0.55,0.45,1,1,1h1v3H5c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v3H5c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1 h14c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1v-3h1c1.1,0,2-0.9,2-2v-2C21,11.9,20.1,11,19,11z M12,17.5c-1.93,0-3.5-1.57-3.5-3.5 s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.93,17.5,12,17.5z\\\"></path><circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"11.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M15.5,9H15V7h0.25C15.66,7,16,6.66,16,6.25v0c0-0.41-0.34-0.75-0.75-0.75h-0.5C14.11,3.48,12.24,2,10,2 S5.89,3.48,5.25,5.5h-0.5C4.34,5.5,4,5.84,4,6.25v0C4,6.66,4.34,7,4.75,7H5v2H4.5C3.67,9,3,9.67,3,10.5v2C3,13.33,3.67,14,4.5,14 H5v2.5H4.75C4.34,16.5,4,16.84,4,17.25l0,0C4,17.66,4.34,18,4.75,18h10.5c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H15V14h0.5c0.83,0,1.5-0.67,1.5-1.5v-2C17,9.67,16.33,9,15.5,9z M10,14.25 c-1.52,0-2.75-1.23-2.75-2.75S8.48,8.75,10,8.75s2.75,1.23,2.75,2.75S11.52,14.25,10,14.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"minor_crash\": {\n    \"name\": \"minor_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.5,24c0.82,0,1.5-0.67,1.5-1.5v-7.16c0-0.22-0.04-0.45-0.11-0.66l-1.97-5.67C18.72,8.42,18.16,8,17.5,8h-11 C5.84,8,5.29,8.42,5.08,9.01l-1.97,5.67C3.04,14.89,3,15.11,3,15.34v7.16C3,23.33,3.68,24,4.5,24S6,23.33,6,22.5V22h12v0.5 C18,23.33,18.67,24,19.5,24z M6.85,10h10.29l1.04,3H5.81L6.85,10z M6,17.5C6,16.67,6.67,16,7.5,16S9,16.67,9,17.5S8.33,19,7.5,19 S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19S15,18.33,15,17.5z M8.71,5.71 c-0.39,0.39-1.02,0.39-1.41,0L5.71,4.12c-0.39-0.39-0.39-1.02,0-1.41s1.02-0.39,1.41,0l1.59,1.59C9.1,4.68,9.1,5.32,8.71,5.71z M18.29,2.71c0.39,0.39,0.39,1.02,0,1.41l-1.59,1.59c-0.39,0.39-1.02,0.39-1.41,0s-0.39-1.02,0-1.41l1.59-1.59 C17.27,2.32,17.9,2.32,18.29,2.71z M12,5c-0.55,0-1-0.45-1-1V1c0-0.55,0.45-1,1-1s1,0.45,1,1v3C13,4.55,12.55,5,12,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.17,2.87l1.3,1.3c0.29,0.29,0.29,0.76,0,1.05c-0.29,0.29-0.76,0.29-1.05,0l-1.3-1.3c-0.29-0.29-0.29-0.76,0-1.05 C5.41,2.59,5.89,2.59,6.17,2.87z M13.83,2.87l-1.3,1.3c-0.29,0.29-0.29,0.76,0,1.05c0.29,0.29,0.76,0.29,1.05,0l1.3-1.3 c0.29-0.29,0.29-0.76,0-1.05C14.59,2.59,14.11,2.59,13.83,2.87z M10.75,3.95v-2.2C10.75,1.34,10.41,1,10,1S9.25,1.34,9.25,1.75v2.2 C9.25,4.36,9.59,4.7,10,4.7S10.75,4.36,10.75,3.95z M17,18v-5.71c0-0.19-0.04-0.38-0.11-0.56l-1.52-3.79C15.15,7.37,14.6,7,13.98,7 H6.02C5.4,7,4.85,7.37,4.62,7.94l-1.52,3.79C3.04,11.91,3,12.1,3,12.29L3,18c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-0.5h10V18 c0,0.55,0.45,1,1,1C16.55,19,17,18.55,17,18z M13.98,8.5l1,2.5H5.02l1-2.5H13.98z M7.5,14.25c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1 s0.45-1,1-1C7.05,13.25,7.5,13.7,7.5,14.25z M14.5,14.25c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1s0.45-1,1-1 C14.05,13.25,14.5,13.7,14.5,14.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_library\": {\n    \"name\": \"local_library\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11.55c-1.82-1.7-4.12-2.89-6.68-3.35C4.11 7.99 3 8.95 3 10.18v6.24c0 1.68.72 2.56 1.71 2.69 2.5.32 4.77 1.35 6.63 2.87.35.29.92.32 1.27.04 1.87-1.53 4.16-2.58 6.68-2.9.94-.13 1.71-1.06 1.71-2.02v-6.92c0-1.23-1.11-2.19-2.32-1.98-2.56.46-4.86 1.65-6.68 3.35zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"local_parking\": {\n    \"name\": \"local_parking\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.79 3H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2s2-.9 2-2v-4h3c3.57 0 6.42-3.13 5.95-6.79C18.56 5.19 15.84 3 12.79 3zm.41 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"factory\": {\n    \"name\": \"factory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,10V8.48c0-0.71-0.71-1.19-1.37-0.93L9,9V8.52C9,7.8,8.27,7.31,7.61,7.6L3.21,9.48C2.48,9.8,2,10.52,2,11.32V20 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V10H14z M9,17c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2c0-0.55,0.45-1,1-1s1,0.45,1,1V17z M13,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2c0-0.55,0.45-1,1-1s1,0.45,1,1V17z M17,17c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2c0-0.55,0.45-1,1-1 s1,0.45,1,1V17z\\\"></path><path d=\\\"M20.12,2h-1.23c-0.51,0-0.93,0.38-0.99,0.88L17.2,8.5h4.6l-0.69-5.62C21.05,2.38,20.62,2,20.12,2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.85,7.5l-0.78-5.08C17.03,2.18,16.82,2,16.57,2h-1.14c-0.25,0-0.46,0.18-0.49,0.42L14.15,7.5h2.35H17.85z\\\"></path><path d=\\\"M10.8,6.31L7.5,7.75V6.78c0-0.36-0.38-0.61-0.71-0.46L2.88,8.1C2.34,8.34,2,8.88,2,9.47v7.03C2,17.33,2.67,18,3.5,18h13 c0.83,0,1.5-0.67,1.5-1.5v-8h-6.5V6.76C11.5,6.4,11.13,6.16,10.8,6.31z M12.5,12.25c0-0.41,0.34-0.75,0.75-0.75S14,11.84,14,12.25 v2c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V12.25z M7.5,14.25C7.5,14.66,7.16,15,6.75,15S6,14.66,6,14.25v-2 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V14.25z M10.75,14.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75v-2 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V14.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_pin_circle\": {\n    \"name\": \"person_pin_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.22.36.32.97.32 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zM7.69 12.49C8.88 11.56 10.37 11 12 11s3.12.56 4.31 1.49C15.45 13.98 13.85 15 12 15s-3.45-1.02-4.31-2.51zM12 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"volunteer_activism\": {\n    \"name\": \"volunteer_activism\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,11L3,11c-1.1,0-2,0.9-2,2v7c0,1.1,0.9,2,2,2h0c1.1,0,2-0.9,2-2v-7C5,11.9,4.1,11,3,11z\\\"></path><path d=\\\"M10,5.3C10,3.45,11.45,2,13.3,2c1.04,0,2.05,0.49,2.7,1.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3 c0,2.1-2.5,4.51-5.33,7.09c-0.38,0.35-0.97,0.35-1.35,0C12.5,9.81,10,7.4,10,5.3\\\"></path><path d=\\\"M19.99,17h-6.83c-0.11,0-0.22-0.02-0.33-0.06l-1.47-0.51c-0.26-0.09-0.39-0.37-0.3-0.63l0,0c0.09-0.26,0.38-0.4,0.64-0.3 l1.12,0.43c0.11,0.04,0.24,0.07,0.36,0.07h2.63c0.65,0,1.18-0.53,1.18-1.18v0c0-0.49-0.31-0.93-0.77-1.11L9.3,11.13 C9.08,11.04,8.84,11,8.6,11H7v9.02l6.37,1.81c0.41,0.12,0.85,0.1,1.25-0.05L22,19l0,0C22,17.89,21.1,17,19.99,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2.5,18L2.5,18C3.33,18,4,17.33,4,16.5v-6C4,9.67,3.33,9,2.5,9h0C1.67,9,1,9.67,1,10.5v6C1,17.33,1.67,18,2.5,18z\\\"></path><path d=\\\"M12.58,9.9c0.38,0.34,0.96,0.34,1.34,0c0.98-0.88,1.9-1.71,2.62-2.5C17.42,6.43,18,5.51,18,4.61 c0-0.73-0.29-1.39-0.76-1.86c-1.03-1.03-2.36-0.8-3.04-0.49c-0.37,0.17-0.7,0.42-0.95,0.72c-0.26-0.3-0.59-0.55-0.95-0.72 c-0.68-0.32-2.01-0.54-3.04,0.49C8.79,3.23,8.5,3.88,8.5,4.61c0,0.89,0.58,1.81,1.46,2.78C10.68,8.18,11.6,9.01,12.58,9.9z\\\"></path><path d=\\\"M10.5,14l-1.03-0.34C9.2,13.57,9.05,13.27,9.15,13v0c0.1-0.28,0.42-0.42,0.69-0.3L10.5,13h2.62 c0.49,0,0.88-0.39,0.88-0.88v0c0-0.37-0.23-0.7-0.58-0.83l-6.17-2.2C7.08,9.03,6.91,9,6.74,9H5.5v7.36l5.53,1.51 c0.31,0.08,0.64,0.07,0.93-0.05L18,15.5v0c0-0.83-0.67-1.5-1.5-1.5H10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bakery_dining\": {\n    \"name\": \"bakery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M18.77,8.55L17.6,8.08c-0.62-0.25-1.31,0.17-1.37,0.84l-0.74,8.08H17l2.6-6.5C19.91,9.73,19.54,8.85,18.77,8.55z\\\"></path></g><g><path d=\\\"M6.4,8.08L5.23,8.55C4.46,8.85,4.09,9.73,4.4,10.5l2.6,6.5h1.5L7.76,8.92C7.7,8.25,7.02,7.83,6.4,8.08z\\\"></path></g><g><path d=\\\"M13.36,6h-2.71C9.76,6,9.07,6.76,9.15,7.64L10,16.99h4l0.85-9.36C14.93,6.76,14.24,6,13.36,6z\\\"></path></g><g><path d=\\\"M3.18,13.72l-1,1.93c-0.19,0.36-0.23,0.78-0.12,1.19c0.29,1.01,1.43,1.41,2.38,0.94l1.05-0.52l-1.4-3.49 C3.93,13.37,3.38,13.34,3.18,13.72z\\\"></path></g><g><path d=\\\"M21.82,15.65l-1-1.93c-0.2-0.38-0.75-0.35-0.91,0.04l-1.4,3.49l1.05,0.52c0.94,0.47,2.09,0.07,2.38-0.94 C22.05,16.43,22.01,16.01,21.82,15.65z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M6,6.5l-1.8,0.71c-0.52,0.2-0.77,0.79-0.56,1.31L5.88,14h1.46L6.68,6.92C6.65,6.59,6.31,6.38,6,6.5z\\\"></path></g><g><path d=\\\"M15.81,7.22L14,6.5c-0.31-0.12-0.65,0.09-0.68,0.42L12.67,14h1.46l2.24-5.48C16.57,8.01,16.32,7.42,15.81,7.22z\\\"></path></g><g><path d=\\\"M11.38,5H8.62c-0.59,0-1.05,0.51-1,1.09L8.35,14h3.3l0.73-7.91C12.43,5.51,11.97,5,11.38,5z\\\"></path></g><g><path d=\\\"M18.1,13.04l-1.39-2.71l-1.6,3.91l1.22,0.62c0.88,0.45,1.92-0.2,1.92-1.2C18.25,13.44,18.2,13.23,18.1,13.04z\\\"></path></g><g><path d=\\\"M1.9,13.04c-0.1,0.19-0.15,0.4-0.15,0.62c0,1,1.04,1.65,1.92,1.2l1.22-0.62l-1.6-3.91L1.9,13.04z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"add_road\": {\n    \"name\": \"add_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,18v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-2h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H20z\\\"></path><path d=\\\"M19,4L19,4c-0.55,0-1,0.45-1,1v7c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V5C20,4.45,19.55,4,19,4z\\\"></path><path d=\\\"M5,20L5,20c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h0C4.45,4,4,4.45,4,5v14C4,19.55,4.45,20,5,20z\\\"></path><path d=\\\"M12,8L12,8c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C11,7.55,11.45,8,12,8z\\\"></path><path d=\\\"M12,14L12,14c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C11,13.55,11.45,14,12,14z\\\"></path><path d=\\\"M12,20L12,20c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2C11,19.55,11.45,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,16L4.5,16C4.78,16,5,15.78,5,15.5v-11C5,4.22,4.78,4,4.5,4h0C4.22,4,4,4.22,4,4.5v11C4,15.78,4.22,16,4.5,16z\\\"></path><path d=\\\"M15.5,4L15.5,4C15.22,4,15,4.22,15,4.5v6c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5v-6C16,4.22,15.78,4,15.5,4z\\\"></path><path d=\\\"M10,6L10,6c0.28,0,0.5-0.22,0.5-0.5v-1C10.5,4.22,10.28,4,10,4h0C9.72,4,9.5,4.22,9.5,4.5v1C9.5,5.78,9.72,6,10,6z\\\"></path><path d=\\\"M10,16L10,16c0.28,0,0.5-0.22,0.5-0.5v-1c0-0.28-0.22-0.5-0.5-0.5h0c-0.28,0-0.5,0.22-0.5,0.5v1C9.5,15.78,9.72,16,10,16z\\\"></path><path d=\\\"M17.5,15H16v-1.5c0-0.28-0.22-0.5-0.5-0.5h0c-0.28,0-0.5,0.22-0.5,0.5V15h-1.5c-0.28,0-0.5,0.22-0.5,0.5v0 c0,0.28,0.22,0.5,0.5,0.5H15v1.5c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5V16h1.5c0.28,0,0.5-0.22,0.5-0.5v0 C18,15.22,17.78,15,17.5,15z\\\"></path><path d=\\\"M10,11L10,11c0.28,0,0.5-0.22,0.5-0.5v-1C10.5,9.22,10.28,9,10,9h0C9.72,9,9.5,9.22,9.5,9.5v1C9.5,10.78,9.72,11,10,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_scooter\": {\n    \"name\": \"electric_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H13c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1 h2.89l1.4,6.25c0,0-0.01,0-0.01,0c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94 c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S5.55,16,5,16z\\\"></path><path d=\\\"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,13,15,13z\\\"></path><path d=\\\"M12,11.99C12,10.34,13.34,9,14.99,9l0.24,0l-1.2-5.22C13.93,3.32,13.52,3,13.05,3H10.5C10.22,3,10,3.22,10,3.5 C10,3.78,10.22,4,10.5,4h2.55l0.95,4.14c-1.57,0.4-2.75,1.72-2.96,3.36H6.93c-0.26-1-1.27-1.71-2.4-1.45 c-0.72,0.17-1.3,0.75-1.47,1.47C2.75,12.83,3.74,14,5,14c0.93,0,1.71-0.64,1.93-1.5H12V11.99z M5,13c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S5.55,13,5,13z\\\"></path><polygon points=\\\"9.5,15 7,15 10.5,17 10.5,16 13,16 9.5,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"u_turn_right\": {\n    \"name\": \"u_turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.29,12.29c-0.39-0.39-1.02-0.39-1.41,0L18,13.17V9c0-3.31-2.69-6-6-6S6,5.69,6,9v11c0,0.55,0.45,1,1,1s1-0.45,1-1V9 c0-2.21,1.79-4,4-4s4,1.79,4,4v4.17l-0.88-0.88c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l2.59,2.59 c0.39,0.39,1.02,0.39,1.41,0l2.59-2.59C20.68,13.32,20.68,12.68,20.29,12.29z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.22,9.47c-0.29-0.29-0.77-0.29-1.06,0l-0.66,0.66l0-2.44c0-2.35-1.72-4.45-4.06-4.67C7.76,2.77,5.5,4.87,5.5,7.5v7.75 C5.5,15.66,5.84,16,6.25,16C6.66,16,7,15.66,7,15.25l0-7.58C7,6.05,8.22,4.59,9.84,4.5C11.57,4.41,13,5.79,13,7.5l0,2.63 l-0.66-0.66c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l1.76,1.76c0.39,0.39,1.02,0.39,1.41,0l1.76-1.76 C16.51,10.24,16.51,9.76,16.22,9.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"beenhere\": {\n    \"name\": \"beenhere\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66l7.57 5.04c.34.22.77.22 1.11 0l7.56-5.04c.53-.36.88-.97.88-1.66V3c0-1.1-.9-2-2-2zm-.7 6.7l-7.59 7.59c-.39.39-1.02.39-1.41 0L5.71 11.7c-.39-.39-.39-1.02 0-1.41s1.02-.39 1.41 0L10 13.17l6.88-6.88c.39-.39 1.02-.39 1.41 0s.4 1.02.01 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"forest\": {\n    \"name\": \"forest\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.14,12h-0.06c0.81,0,1.28-0.91,0.82-1.57L9.82,3.17c-0.4-0.57-1.24-0.57-1.64,0L3.1,10.43C2.64,11.09,3.11,12,3.92,12 H3.86l-2.87,4.46C0.56,17.12,1.04,18,1.83,18H7v2c0,1.1,0.9,2,2,2s2-0.9,2-2v-2h5.17c0.79,0,1.27-0.88,0.84-1.54L14.14,12z\\\"></path><path d=\\\"M23.01,16.46L20.14,12h-0.06c0.81,0,1.28-0.91,0.82-1.57l-5.08-7.26c-0.4-0.57-1.24-0.57-1.64,0l-1.57,2.24l3.11,4.44 c0.43,0.61,0.48,1.41,0.14,2.07c-0.08,0.16-0.18,0.3-0.3,0.43l2.29,3.57c0.4,0.62,0.42,1.4,0.07,2.04 c-0.01,0.02-0.02,0.03-0.03,0.04h4.28C22.96,18,23.44,17.12,23.01,16.46z\\\"></path><path d=\\\"M13,20c0,1.1,0.9,2,2,2s2-0.9,2-2v-1h-4V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.82,10h0.28c0.39,0,0.63-0.43,0.42-0.77l-4.1-6.56c-0.2-0.31-0.65-0.31-0.85,0l-4.1,6.56C3.27,9.57,3.51,10,3.9,10 h0.28l-2.69,4.23C1.28,14.56,1.52,15,1.91,15H6.5v1.5C6.5,17.33,7.17,18,8,18s1.5-0.67,1.5-1.5V15h4.59 c0.39,0,0.63-0.44,0.42-0.77L11.82,10z\\\"></path><path d=\\\"M18.51,14.23L15.82,10h0.28c0.39,0,0.63-0.43,0.42-0.77l-4.1-6.56c-0.2-0.31-0.65-0.31-0.85,0l-0.99,1.58l2.78,4.45 c0.29,0.46,0.3,1.05,0.04,1.52c-0.04,0.07-0.08,0.14-0.13,0.2l2.08,3.27c0.25,0.39,0.29,0.87,0.13,1.31h2.6 C18.48,15,18.72,14.56,18.51,14.23z\\\"></path><path d=\\\"M10.5,16.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5V16h-3V16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_railway_filled\": {\n    \"name\": \"directions_railway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19l-1.21,0.81C6.11,19.93,6,20.13,6,20.35v0 C6,20.71,6.29,21,6.65,21h10.7c0.36,0,0.65-0.29,0.65-0.65v0c0-0.22-0.11-0.42-0.29-0.54L16.5,19c1.93,0,3.5-1.57,3.5-3.5V6 C20,2.5,16.42,2,12,2z M12,16c-0.83,0-1.5-0.67-1.5-1.5S11.17,13,12,13s1.5,0.67,1.5,1.5S12.83,16,12,16z M18,10H6V7h12V10z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"icecream\": {\n    \"name\": \"icecream\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.38,6.24C17.79,3.24,15.14,1,12,1S6.21,3.24,5.62,6.24C4.08,6.81,3,8.29,3,10c0,2.21,1.79,4,4,4 c0.12,0,0.23-0.02,0.34-0.02l3.83,7.31c0.38,0.72,1.41,0.71,1.78-0.01l3.73-7.31C16.79,13.98,16.89,14,17,14c2.21,0,4-1.79,4-4 C21,8.29,19.92,6.81,18.38,6.24z M12.05,18.63l-2.73-5.21C10.15,13.79,11.06,14,12,14c0.95,0,1.88-0.21,2.72-0.6L12.05,18.63z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.92,5.16C14.51,2.8,12.47,1,10,1S5.49,2.8,5.08,5.16C3.88,5.55,3,6.66,3,8c0,1.66,1.34,3,3,3c0.02,0,0.03,0,0.04,0 l3.06,6.19c0.37,0.74,1.43,0.74,1.79,0L13.96,11c0.01,0,0.03,0,0.04,0c1.66,0,3-1.34,3-3C17,6.66,16.12,5.55,14.92,5.16z M10,15.61l-2.49-5.04c0.16-0.1,0.07-0.08,0.37-0.08C8.53,10.81,9.24,11,10,11s1.47-0.19,2.12-0.5c0.3,0,0.21-0.02,0.37,0.08 L10,15.61z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_airport\": {\n    \"name\": \"local_airport\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M21.48,13.7L13.5,9V3.5C13.5,2.67,12.83,2,12,2c-0.83,0-1.5,0.67-1.5,1.5V9l-7.98,4.7C2.2,13.88,2,14.23,2,14.6 c0,0.7,0.67,1.2,1.34,1.01l7.16-2.1V19l-2.26,1.35C8.09,20.44,8,20.61,8,20.78l0,0.5h0v0.08c0,0.33,0.31,0.57,0.62,0.49l2.92-0.73 L12,21l0.38,0.09c0,0,0,0,0,0l0.42,0.11l1.9,0.48l0,0l0.67,0.17c0.32,0.08,0.62-0.16,0.62-0.49v-0.37c0,0,0,0,0,0v-0.21 c0-0.18-0.09-0.34-0.24-0.43L13.5,19v-5.5l7.16,2.1C21.33,15.8,22,15.3,22,14.6C22,14.23,21.8,13.88,21.48,13.7z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M16.77,11.85l-1.4-0.93L11,8V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-4.22,2.81h0l-1.55,1.04C3.09,11.94,3,12.1,3,12.28 c0,0.36,0.35,0.61,0.68,0.49L9,11v4l-1.25,0.83C7.6,15.94,7.5,16.11,7.5,16.3c0,0.36,0.33,0.63,0.68,0.56L10,16.5l0,0l0,0 l1.82,0.36c0.35,0.07,0.68-0.2,0.68-0.56c0-0.19-0.1-0.37-0.25-0.47L11,15v-4l5.32,1.77c0.34,0.11,0.68-0.14,0.68-0.49 C17,12.1,16.91,11.94,16.77,11.85z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tram\": {\n    \"name\": \"tram\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95l-1.19 1.19c-.32.32-.1.86.35.86H7.8c.13 0 .26-.05.35-.15L10 20h4l1.85 1.85c.09.09.22.15.35.15h1.09c.45 0 .67-.54.35-.85l-1.19-1.19C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z\\\"></path>\"\n      }\n    }\n  },\n  \"stadium\": {\n    \"name\": \"stadium\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.11,5.45L3.72,6.64C3.39,6.8,3,6.56,3,6.19V3.81C3,3.44,3.39,3.2,3.72,3.36l2.38,1.19C6.47,4.74,6.47,5.26,6.11,5.45z M18,3.81v2.38c0,0.37,0.39,0.61,0.72,0.45l2.38-1.19c0.37-0.18,0.37-0.71,0-0.89l-2.38-1.19C18.39,3.2,18,3.44,18,3.81z M11,2.81 v2.38c0,0.37,0.39,0.61,0.72,0.45l2.38-1.19c0.37-0.18,0.37-0.71,0-0.89l-2.38-1.19C11.39,2.2,11,2.44,11,2.81z M5,10.04 C6.38,10.53,8.77,11,12,11s5.62-0.47,7-0.96C19,9.86,16.22,9,12,9S5,9.86,5,10.04z M14,17h-4c-0.55,0-1,0.45-1,1l0,3.88 C4.94,21.49,2,20.34,2,19v-9c0-1.66,4.48-3,10-3s10,1.34,10,3v9c0,1.34-2.94,2.48-7,2.87L15,18C15,17.45,14.55,17,14,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,4.5L3,6V3L6,4.5z M15,3v3l3-1.5L15,3z M9,2v3l3-1.5L9,2z M18,8.25c0,0,0,5.87,0,7.25c0,1.11-2.31,2.06-5.5,2.39l0-2.89 c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1l0,2.89C4.31,17.56,2,16.61,2,15.5c0-0.99,0-7.25,0-7.25C2,7.01,5.58,6,10,6 S18,7.01,18,8.25z M4.4,8.3C5.51,8.65,7.42,9,10,9s4.49-0.35,5.6-0.7c0-0.21-2.38-0.8-5.6-0.8S4.4,8.09,4.4,8.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"breakfast_dining\": {\n    \"name\": \"breakfast_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45 C22,4.79,20.21,3,18,3z M15.71,13.7l-3,3c-0.39,0.39-1.02,0.39-1.42,0l-3-3c-0.39-0.39-0.39-1.02,0-1.41l3-3 c0.39-0.39,1.02-0.39,1.41,0l3,3C16.1,12.68,16.1,13.31,15.71,13.7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M18,6c0-1.66-1.34-3-3-3H5C3.34,3,2,4.34,2,6c0,1.3,0.84,2.4,2,2.82v6.68C4,16.33,4.67,17,5.5,17h9 c0.83,0,1.5-0.67,1.5-1.5l0-6.68C17.16,8.4,18,7.3,18,6z M12.71,11.71l-2,2c-0.39,0.39-1.02,0.39-1.41,0l-2-2 c-0.39-0.39-0.39-1.02,0-1.41l2-2c0.39-0.39,1.02-0.39,1.41,0l2,2C13.1,10.68,13.1,11.32,12.71,11.71z\\\"></path></g>\"\n      }\n    }\n  },\n  \"takeout_dining\": {\n    \"name\": \"takeout_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.29,6.75c-0.39-0.39-1.01-0.39-1.4,0L19,7.63l0.03-0.56l-3.46-3.48C15.19,3.21,14.68,3,14.15,3h-4.3 C9.32,3,8.81,3.21,8.43,3.59L4.97,7.07L5,7.57L4.11,6.7C3.72,6.32,3.1,6.32,2.72,6.71L2.7,6.73C2.32,7.12,2.32,7.75,2.72,8.13 L4.66,10h14.69l1.92-1.84C21.67,7.78,21.68,7.14,21.29,6.75z\\\"></path><path d=\\\"M5.79,18.15C5.87,19.19,6.74,20,7.79,20h8.43c1.05,0,1.92-0.81,1.99-1.85l0.49-6.6H5.3L5.79,18.15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.93,16h6.15c0.8,0,1.46-0.63,1.5-1.43L14.8,10H5.2l0.23,4.57C5.47,15.37,6.13,16,6.93,16z\\\"></path><path d=\\\"M16.97,6.03c-0.29-0.29-0.77-0.29-1.06,0l-0.96,0.96L15,6l-2.56-2.56C12.16,3.16,11.78,3,11.38,3H8.62 c-0.4,0-0.78,0.16-1.06,0.44L5,6l0.05,0.99L4.09,6.03c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06L4.94,9h10.12 l1.91-1.91C17.26,6.8,17.26,6.32,16.97,6.03L16.97,6.03z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edit_location\": {\n    \"name\": \"edit_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.18,2.45,6.92,7.34,11.23c0.38,0.33,0.95,0.33,1.33,0C17.55,17.12,20,13.38,20,10.2 C20,5.22,16.2,2,12,2z M9.73,13.5H8.5v-1.44l3.93-3.92l1.43,1.43l-3.77,3.78C9.99,13.45,9.87,13.5,9.73,13.5z M15.28,8.16l-0.7,0.7 l-1.44-1.44l0.7-0.7c0.15-0.15,0.39-0.15,0.54,0l0.9,0.9C15.43,7.77,15.43,8.01,15.28,8.16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_subway_filled\": {\n    \"name\": \"directions_subway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19l-1.21,0.81C6.11,19.93,6,20.13,6,20.35v0C6,20.71,6.29,21,6.65,21h10.7 c0.36,0,0.65-0.29,0.65-0.65v0c0-0.22-0.11-0.42-0.29-0.54L16.5,19c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M8.5,16 C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M11,10H6V7h5V10z M15.5,16c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10h-5V7h5V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_activity\": {\n    \"name\": \"local_activity\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12c0-.76.43-1.42 1.06-1.76.6-.33.94-1.01.94-1.7V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 1.99v2.55c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7V18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76zm-5.5 4.1L12 14.5l-2.5 1.61c-.38.24-.87-.11-.75-.55l.75-2.88-2.3-1.88c-.35-.29-.17-.86.29-.89l2.96-.17 1.08-2.75c.17-.42.77-.42.93 0l1.08 2.76 2.96.17c.45.03.64.6.29.89l-2.3 1.88.76 2.86c.12.45-.37.8-.75.55z\\\"></path>\"\n      }\n    }\n  },\n  \"layers\": {\n    \"name\": \"layers\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.6 18.06c-.36.28-.87.28-1.23 0l-6.15-4.78c-.36-.28-.86-.28-1.22 0-.51.4-.51 1.17 0 1.57l6.76 5.26c.72.56 1.73.56 2.46 0l6.76-5.26c.51-.4.51-1.17 0-1.57l-.01-.01c-.36-.28-.86-.28-1.22 0l-6.15 4.79zm.63-3.02l6.76-5.26c.51-.4.51-1.18 0-1.58l-6.76-5.26c-.72-.56-1.73-.56-2.46 0L4.01 8.21c-.51.4-.51 1.18 0 1.58l6.76 5.26c.72.56 1.74.56 2.46-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"directions\": {\n    \"name\": \"directions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m21.71 11.29-9-9a.996.996 0 00-1.41 0l-9 9a.996.996 0 000 1.41l9 9c.39.39 1.02.39 1.41 0l9-9a.996.996 0 000-1.41zM14 14.5V12h-4v2c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1h5V7.5l3.15 3.15c.2.2.2.51 0 .71L14 14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"add_location_alt\": {\n    \"name\": \"add_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M19,0c0.55,0,1,0.45,1,1v2h2c0.55,0,1,0.45,1,1s-0.45,1-1,1h-2v2c0,0.55-0.45,1-1,1s-1-0.45-1-1V5h-2c-0.55,0-1-0.45-1-1 s0.45-1,1-1h2V1C18,0.45,18.45,0,19,0z M12,12c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,12,12,12z M14.72,2.47 C14.28,2.83,14,3.38,14,4c0,1.1,0.9,2,2,2h1v1c0,1.1,0.9,2,2,2c0.32,0,0.62-0.08,0.89-0.21C19.96,9.24,20,9.71,20,10.2 c0,3.18-2.45,6.92-7.34,11.23c-0.38,0.33-0.95,0.33-1.33,0C6.45,17.12,4,13.38,4,10.2C4,5.22,7.8,2,12,2 C12.94,2,13.86,2.16,14.72,2.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"handyman\": {\n    \"name\": \"handyman\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21.67,18.17l-4.72-4.72c-0.48-0.48-0.99-0.59-1.58-0.59l-2.54,2.54c0,0.59,0.11,1.11,0.59,1.58l4.72,4.72 c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12C22.06,19.2,22.06,18.56,21.67,18.17z\\\"></path></g><g><path d=\\\"M16.63,9.49c0.39,0.39,1.02,0.39,1.41,0l0.71-0.71l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-2.83-2.83 c-0.39-0.39-1.02-0.39-1.41,0l-0.71,0.71V2c0-0.62-0.76-0.95-1.21-0.5l-2.54,2.54c-0.45,0.45-0.12,1.21,0.5,1.21h2.54l-0.71,0.71 c-0.39,0.39-0.39,1.02,0,1.41l0.35,0.35l-2.89,2.89L7.85,6.48v-1c0-0.27-0.11-0.52-0.29-0.71L5.54,2.74 c-0.39-0.39-1.02-0.39-1.41,0L2.71,4.16c-0.39,0.39-0.39,1.02,0,1.41L4.73,7.6c0.19,0.19,0.44,0.29,0.71,0.29h1l4.13,4.13 l-0.85,0.85H8.42c-0.53,0-1.04,0.21-1.41,0.59l-4.72,4.72c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0 l4.72-4.72c0.38-0.38,0.59-0.88,0.59-1.41v-1.29l5.15-5.15L16.63,9.49z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.71,14.59l-3.24-3.24c-0.19-0.19-0.44-0.29-0.71-0.29h-1l-0.34-0.34l-0.71,0.71l0.34,0.34v1 c0,0.27,0.11,0.52,0.29,0.71l3.24,3.24c0.39,0.39,1.02,0.39,1.41,0L16.71,16C17.1,15.61,17.1,14.98,16.71,14.59z\\\"></path><path d=\\\"M12.57,8.14L12.57,8.14l0.53,0.53c0.2,0.2,0.51,0.2,0.71,0l0.71-0.71l1.41,1.41c0.78-0.78,0.78-2.05,0-2.83l-2.12-2.12 c-0.2-0.2-0.51-0.2-0.71,0l-0.39,0.39l0-1.27c0-0.45-0.54-0.67-0.85-0.35L10.1,4.95C9.79,5.26,10.01,5.8,10.45,5.8l1.27,0 l-0.39,0.39c-0.2,0.2-0.2,0.51,0,0.71l0.53,0.53L10,9.29L7.51,6.81l0.12-1.02c0.02-0.15-0.03-0.3-0.14-0.41L5.71,3.59 c-0.2-0.2-0.51-0.2-0.71,0L3.59,5c-0.2,0.2-0.2,0.51,0,0.71l1.78,1.78C5.48,7.6,5.63,7.65,5.78,7.64l1.02-0.12L9.29,10l-1.05,1.05 h-1c-0.27,0-0.52,0.11-0.71,0.29l-3.24,3.24c-0.39,0.39-0.39,1.02,0,1.41L4,16.71c0.39,0.39,1.02,0.39,1.41,0l3.24-3.24 c0.19-0.19,0.29-0.44,0.29-0.71v-1L12.57,8.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"attractions\": {\n    \"name\": \"attractions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M10.44,18.75c0.37-0.46,0.94-0.75,1.57-0.75s1.19,0.29,1.56,0.75c0.39-0.09,0.76-0.21,1.12-0.36l-1.42-3.18 c-0.39,0.15-0.82,0.23-1.26,0.23c-0.46,0-0.9-0.09-1.3-0.25l-1.43,3.19C9.65,18.54,10.03,18.67,10.44,18.75z M5.16,10 C5,10.59,4.91,11.21,4.91,11.85c0,0.75,0.12,1.47,0.33,2.15c0.63,0.05,1.22,0.4,1.56,0.99c0.33,0.57,0.35,1.23,0.11,1.79 c0.27,0.27,0.56,0.53,0.87,0.76l1.52-3.39l0,0c-0.47-0.58-0.75-1.32-0.75-2.13c0-1.89,1.55-3.41,3.46-3.41s3.46,1.53,3.46,3.41 c0,0.82-0.29,1.57-0.78,2.16l1.5,3.35c0.32-0.24,0.62-0.5,0.9-0.79c-0.22-0.55-0.2-1.2,0.12-1.75c0.33-0.57,0.9-0.92,1.52-0.99 c0.22-0.68,0.34-1.41,0.34-2.16c0-0.64-0.09-1.27-0.25-1.86c-0.64-0.04-1.26-0.39-1.6-1c-0.36-0.62-0.35-1.36-0.03-1.95 c-0.91-0.98-2.1-1.71-3.44-2.05C13.4,5.6,12.74,6,12.01,6s-1.39-0.41-1.74-1.01C8.93,5.33,7.74,6.04,6.83,7.02 C7.16,7.62,7.18,8.37,6.81,9C6.45,9.62,5.82,9.97,5.16,10z M3.86,9.58C3.08,8.98,2.84,7.88,3.35,7s1.58-1.23,2.49-0.85 c1.11-1.17,2.56-2.03,4.18-2.42C10.15,2.75,10.99,2,12.01,2s1.85,0.75,1.98,1.73c1.63,0.39,3.07,1.24,4.18,2.42 c0.91-0.38,1.99-0.03,2.49,0.85c0.51,0.88,0.27,1.98-0.51,2.58c0.23,0.77,0.35,1.58,0.35,2.42s-0.12,1.65-0.35,2.42 c0.78,0.6,1.02,1.7,0.51,2.58s-1.58,1.23-2.49,0.85c-0.4,0.43-0.85,0.81-1.34,1.15l0.81,1.8c0.25,0.56-0.16,1.2-0.78,1.2h0 c-0.33,0-0.64-0.2-0.78-0.5l-0.75-1.67c-0.43,0.18-0.88,0.33-1.34,0.44C13.86,21.25,13.02,22,12.01,22s-1.85-0.75-1.98-1.73 C9.55,20.15,9.09,20,8.65,19.81L7.89,21.5C7.75,21.8,7.45,22,7.11,22H7.1c-0.62,0-1.03-0.64-0.77-1.2l0.82-1.83 c-0.47-0.33-0.91-0.71-1.3-1.12c-0.92,0.38-1.99,0.03-2.5-0.85s-0.27-1.98,0.51-2.58C3.62,13.65,3.51,12.84,3.51,12 S3.62,10.35,3.86,9.58z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M17,10c0-0.68-0.1-1.34-0.29-1.97c0.49-0.55,0.6-1.36,0.21-2.03c-0.39-0.67-1.15-0.98-1.87-0.83 c-0.91-0.95-2.08-1.64-3.4-1.96C11.42,2.51,10.77,2,10,2S8.58,2.51,8.35,3.21c-1.32,0.32-2.49,1.01-3.4,1.96 C4.22,5.02,3.46,5.33,3.07,6C2.68,6.67,2.8,7.48,3.29,8.03C3.1,8.66,3,9.32,3,10s0.1,1.34,0.29,1.97C2.8,12.52,2.68,13.33,3.07,14 c0.39,0.67,1.15,0.98,1.87,0.83c0.33,0.35,0.69,0.66,1.09,0.93l-0.55,1.17C5.26,17.43,5.62,18,6.17,18h0 c0.29,0,0.56-0.17,0.68-0.43l0.51-1.09c0.32,0.13,0.65,0.23,0.99,0.32C8.58,17.49,9.23,18,10,18s1.42-0.51,1.65-1.21 c0.34-0.08,0.67-0.19,0.99-0.32l0.51,1.09c0.12,0.26,0.39,0.43,0.68,0.43h0c0.55,0,0.91-0.57,0.68-1.07l-0.55-1.17 c0.4-0.27,0.76-0.59,1.09-0.93c0.72,0.15,1.48-0.16,1.87-0.83c0.39-0.67,0.27-1.48-0.21-2.03C16.9,11.34,17,10.68,17,10z M11.46,15.3c-0.31-0.48-0.85-0.8-1.46-0.8s-1.15,0.32-1.46,0.8c-0.19-0.05-0.37-0.11-0.55-0.18l1.06-2.28 C9.35,12.93,9.67,13,10,13s0.65-0.07,0.95-0.17l1.06,2.28C11.83,15.18,11.65,15.24,11.46,15.3z M15.32,11.38 c-0.57,0.03-1.11,0.34-1.42,0.87c-0.31,0.53-0.3,1.16-0.04,1.67c-0.17,0.16-0.35,0.32-0.53,0.46l-1.1-2.37 C12.7,11.47,13,10.78,13,10c0-1.66-1.34-3-3-3s-3,1.34-3,3c0,0.78,0.3,1.47,0.78,2.01l-1.1,2.37c-0.19-0.14-0.37-0.29-0.53-0.46 c0.26-0.51,0.26-1.14-0.04-1.67c-0.31-0.53-0.85-0.84-1.42-0.87C4.57,10.94,4.5,10.48,4.5,10s0.07-0.94,0.18-1.38 C5.25,8.59,5.8,8.28,6.1,7.75c0.31-0.53,0.3-1.16,0.04-1.67C6.8,5.44,7.62,4.96,8.54,4.7C8.85,5.18,9.39,5.5,10,5.5 s1.15-0.32,1.46-0.8c0.91,0.25,1.73,0.73,2.39,1.38c-0.26,0.51-0.26,1.14,0.04,1.67c0.31,0.53,0.85,0.84,1.42,0.87 c0.11,0.44,0.18,0.9,0.18,1.38S15.43,10.94,15.32,11.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"egg_alt\": {\n    \"name\": \"egg_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,9C17,7,15.99,2,9.97,2C4.95,2,1.94,6,2,11.52C2.06,17.04,6.96,19,9.97,19c2.01,0,2.01,3,6.02,3C19,22,22,19,22,15.02 C22,12,21.01,11,19,9z M12,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.93,15.5,12,15.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.6,7.6C14,6,13.19,2,8.38,2C4.36,2,1.95,5.2,2,9.62S5.97,16,8.38,16c1.61,0,1.61,2,4.82,2C15.6,18,18,15.6,18,12.42 C18,10,17.21,9.2,15.6,7.6z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"map\": {\n    \"name\": \"map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.65 4.98l-5-1.75c-.42-.15-.88-.15-1.3-.01L4.36 4.56C3.55 4.84 3 5.6 3 6.46v11.85c0 1.41 1.41 2.37 2.72 1.86l2.93-1.14c.22-.09.47-.09.69-.01l5 1.75c.42.15.88.15 1.3.01l3.99-1.34c.81-.27 1.36-1.04 1.36-1.9V5.69c0-1.41-1.41-2.37-2.72-1.86l-2.93 1.14c-.22.08-.46.09-.69.01zM15 18.89l-6-2.11V5.11l6 2.11v11.67z\\\"></path>\"\n      }\n    }\n  },\n  \"local_phone\": {\n    \"name\": \"local_phone\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.23 15.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\\\"></path>\"\n      }\n    }\n  },\n  \"snowmobile\": {\n    \"name\": \"snowmobile\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,6c0,0.55,0.45,1,1,1h1.25l1.45,1.3L11,11l-9.12-0.96C0.88,9.93,0,10.72,0,11.73c0,0.75,0.49,1.41,1.21,1.63l3.33,1 l-3.49,1.88C-0.77,17.22-0.07,20,2,20h6c2.21,0,4-1.79,4-4h4l2,2h-2c-0.55,0-1,0.45-1,1s0.45,1,1,1h5c1.13,0,2.11-0.62,2.63-1.55 c0.36-0.65-0.15-1.45-0.9-1.45c-0.34,0-0.68,0.16-0.84,0.47C21.72,17.78,21.38,18,21,18h-0.17l-2.2-2.2C20.58,15.37,22,14.4,22,13 c0-0.89-7.72-7.75-7.72-7.75C14.1,5.09,13.87,5,13.62,5H12C11.45,5,11,5.45,11,6z M8,18H2l5.25-2.83L10,16C10,17.1,9.11,18,8,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M19.08,14.5c-0.29,0-0.55,0.17-0.68,0.43c-0.16,0.34-0.5,0.57-0.9,0.57l-2.22-2.19C16.87,12.96,18,12.17,18,11 c0-0.44-4.96-5.08-6.22-6.24C11.6,4.59,11.36,4.5,11.11,4.5H9.75C9.34,4.5,9,4.84,9,5.25C9,5.66,9.34,6,9.75,6h1.16l1.22,1.14L9.1,9 L1.51,8.52C0.69,8.46,0,9.11,0,9.94c0,0.63,0.42,1.19,1.02,1.36l3.3,0.97l-3.53,1.91C-0.58,14.92-0.06,17,1.5,17h5 c1.93,0,3.5-1.57,3.5-3.5h3.33l2.05,2h-2.13c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75h4.25c1,0,1.86-0.59,2.26-1.44 C20,15.07,19.62,14.5,19.08,14.5z M6.5,15.5h-5l4.87-2.63L8.5,13.5C8.5,14.6,7.6,15.5,6.5,15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"subway\": {\n    \"name\": \"subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"local_car_wash\": {\n    \"name\": \"local_car_wash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22 0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22 0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5 0-.66-.66-1.64-1.11-2.22-.2-.26-.59-.26-.79 0-.44.58-1.1 1.56-1.1 2.22C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01l-1.97 5.67c-.07.21-.11.43-.11.66v7.16c0 .83.67 1.5 1.5 1.5S6 22.33 6 21.5V21h12v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-7.16c0-.22-.04-.45-.11-.66l-1.97-5.67zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.27-3.82c.14-.4.52-.68.95-.68h9.56c.43 0 .81.28.95.68L19 13H5z\\\"></path>\"\n      }\n    }\n  },\n  \"local_cafe\": {\n    \"name\": \"local_cafe\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM3 21h16c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"two_wheeler\": {\n    \"name\": \"two_wheeler\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M20,11c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H19c0.55,0,1-0.45,1-1V7.62c0-0.74-0.78-1.23-1.45-0.89l-2.28,1.14l-2.57-2.57 C13.52,5.11,13.26,5,13,5h-3C9.45,5,9,5.45,9,6v0c0,0.55,0.45,1,1,1h2.17c0.27,0,0.52,0.11,0.71,0.29L14.59,9h-3.35 c-0.16,0-0.31,0.04-0.45,0.11l-3.14,1.57c-0.38,0.19-0.85,0.12-1.15-0.19l-1.2-1.2C5.11,9.11,4.85,9,4.59,9H1c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h3c-2.52,0-4.49,2.32-3.89,4.94c0.33,1.45,1.5,2.62,2.95,2.95C5.68,19.49,8,17.52,8,15l1.41,1.41 C9.79,16.79,10.3,17,10.83,17h1.01c0.72,0,1.38-0.38,1.74-1.01l2.91-5.09l1.01,1.01c-1.13,0.91-1.76,2.41-1.38,4.05 c0.34,1.44,1.51,2.61,2.95,2.94C21.68,19.49,24,17.51,24,15C24,12.79,22.21,11,20,11z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 c1.1,0,2,0.9,2,2C6,16.1,5.1,17,4,17z M20,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C22,16.1,21.1,17,20,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M14.5,9c-0.16,0-0.31,0.02-0.45,0.05L13,8h1c0.28,0,0.5-0.22,0.5-0.5V7.31c0-0.37-0.39-0.61-0.72-0.45L12.5,7.5l-1.35-1.35 C11.05,6.05,10.93,6,10.79,6H9.5C9.22,6,9,6.22,9,6.5C9,6.78,9.22,7,9.5,7h0.88c0.13,0,0.26,0.05,0.35,0.15L11.59,8H9.6 C9.53,8.01,9.47,8.02,9.41,8.04l-2.1,0.84c-0.19,0.07-0.4,0.03-0.54-0.11L6.15,8.15C6.05,8.05,5.93,8,5.79,8H3.5 C3.22,8,3,8.22,3,8.5C3,8.78,3.22,9,3.5,9h2c-1.61,0-2.86,1.52-2.41,3.2c0.22,0.8,0.86,1.46,1.65,1.69 c1.54,0.45,2.95-0.54,3.21-1.94l0.75,0.75C8.9,12.89,9.15,13,9.41,13h0.47c0.38,0,0.73-0.21,0.89-0.55l1.75-3.5l0.52,0.52 C12.42,9.92,12,10.66,12,11.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,10.12,15.88,9,14.5,9z M5.5,13C4.67,13,4,12.33,4,11.5 S4.67,10,5.5,10S7,10.67,7,11.5S6.33,13,5.5,13z M14.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S15.33,13,14.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"straight\": {\n    \"name\": \"straight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,6.83l0.88,0.88c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59c-0.39-0.39-1.02-0.39-1.41,0 L8.71,6.29c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L11,6.83V20c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V6.83 L13,6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,16.25C9.25,16.66,9.59,17,10,17s0.75-0.34,0.75-0.75l0-10.38l0.66,0.66c0.29,0.29,0.77,0.29,1.06,0 c0.29-0.29,0.29-0.77,0-1.06l-1.76-1.76c-0.39-0.39-1.02-0.39-1.41,0L7.53,5.47c-0.29,0.29-0.29,0.77,0,1.06 c0.29,0.29,0.77,0.29,1.06,0l0.66-0.66L9.25,16.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_subway\": {\n    \"name\": \"directions_subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19l-1.15 1.15c-.31.31-.09.85.36.85H17.3c.45 0 .67-.54.35-.85L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_bus_filled\": {\n    \"name\": \"directions_bus_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44v1.56C5,20.33,5.67,21,6.5,21h0 C7.33,21,8,20.33,8,19.5V19h8v0.5c0,0.82,0.67,1.5,1.5,1.5h0c0.82,0,1.5-0.67,1.5-1.5v-1.56c0.62-0.63,1-1.49,1-2.44V6 C20,2.5,16.42,2,12,2z M8.5,16C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M15.5,16 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10H6V7h12V10z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"route\": {\n    \"name\": \"route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,15.18V7c0-2.21-1.79-4-4-4s-4,1.79-4,4v10c0,1.1-0.9,2-2,2s-2-0.9-2-2V8.82C8.16,8.4,9,7.3,9,6c0-1.66-1.34-3-3-3 S3,4.34,3,6c0,1.3,0.84,2.4,2,2.82V17c0,2.21,1.79,4,4,4s4-1.79,4-4V7c0-1.1,0.9-2,2-2s2,0.9,2,2v8.18c-1.16,0.41-2,1.51-2,2.82 c0,1.66,1.34,3,3,3s3-1.34,3-3C21,16.7,20.16,15.6,19,15.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.25,12.13V6c0-1.65-1.35-3-3-3s-3,1.35-3,3v8c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5V7.87C7.26,7.55,8,6.62,8,5.5 C8,4.12,6.88,3,5.5,3S3,4.12,3,5.5c0,1.12,0.74,2.05,1.75,2.37V14c0,1.65,1.35,3,3,3s3-1.35,3-3V6c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5v6.13C12.74,12.45,12,13.38,12,14.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,13.38,16.26,12.45,15.25,12.13 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation_alt\": {\n    \"name\": \"screen_rotation_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.53,9.29C19.16,9.92,18.71,11,17.82,11c-0.27,0-0.52-0.11-0.71-0.29L10.4,4L5.41,9H7c0.55,0,1,0.45,1,1s-0.45,1-1,1H3 c-0.55,0-1-0.45-1-1V6c0-0.55,0.45-1,1-1s1,0.45,1,1v1.59l5-5c0.78-0.78,2.05-0.78,2.83,0L18.53,9.29z\\\"></path><path d=\\\"M5.47,14.71C4.84,14.08,5.29,13,6.18,13c0.27,0,0.52,0.11,0.71,0.29L13.6,20l4.99-5H17c-0.55,0-1-0.45-1-1s0.45-1,1-1h4 c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1.59l-5,5c-0.78,0.78-2.05,0.78-2.83,0L5.47,14.71z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2.75,4.5c0.41,0,0.75,0.34,0.75,0.75v1.19l4-4c0.59-0.59,1.54-0.59,2.12,0l5.28,5.28C15.37,8.19,15.04,9,14.37,9 c-0.2,0-0.39-0.08-0.53-0.22L8.56,3.5l-4,4h1.19c0.41,0,0.75,0.34,0.75,0.75S6.16,9,5.75,9H3C2.45,9,2,8.55,2,8V5.25 C2,4.84,2.34,4.5,2.75,4.5z M17.25,15.5c-0.41,0-0.75-0.34-0.75-0.75v-1.19l-4,4c-0.59,0.59-1.54,0.59-2.12,0L5.1,12.28 C4.63,11.81,4.96,11,5.63,11c0.2,0,0.39,0.08,0.53,0.22l5.28,5.28l4-4h-1.19c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75H17c0.55,0,1,0.45,1,1v2.75C18,15.16,17.66,15.5,17.25,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"zoom_in_map\": {\n    \"name\": \"zoom_in_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,8c0,0.55,0.45,1,1,1l4,0c0.55,0,1-0.45,1-1l0-4c0-0.55-0.45-1-1-1S7,3.45,7,4l0,1.59L4.62,3.21 c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L5.59,7L4,7C3.45,7,3,7.45,3,8z M20,7h-1.59l2.38-2.38 c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0L17,5.59V4c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4 c0.55,0,1-0.45,1-1S20.55,7,20,7z M4,17h1.59l-2.38,2.38c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L7,18.41L7,20 c0,0.55,0.45,1,1,1s1-0.45,1-1l0-4c0-0.55-0.45-1-1-1l-4,0c-0.55,0-1,0.45-1,1C3,16.55,3.45,17,4,17z M21,16c0-0.55-0.45-1-1-1h-4 c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1.59l2.38,2.38c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L18.41,17H20C20.55,17,21,16.55,21,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.25,8l-2.5,0C12.34,8,12,7.66,12,7.25l0-2.5C12,4.34,12.34,4,12.75,4c0.41,0,0.75,0.34,0.75,0.75v0.69l1.91-1.91 c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L14.56,6.5l0.69,0C15.66,6.5,16,6.84,16,7.25C16,7.66,15.66,8,15.25,8z M4,7.25C4,6.84,4.34,6.5,4.75,6.5h0.69L3.53,4.59c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0L6.5,5.44V4.75 C6.5,4.34,6.84,4,7.25,4S8,4.34,8,4.75v2.5C8,7.66,7.66,8,7.25,8h-2.5C4.34,8,4,7.66,4,7.25z M16,12.75c0,0.41-0.34,0.75-0.75,0.75 l-0.69,0l1.91,1.91c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0l-1.91-1.91v0.69c0,0.41-0.34,0.75-0.75,0.75 S12,15.66,12,15.25l0-2.5c0-0.41,0.34-0.75,0.75-0.75l2.5,0C15.66,12,16,12.34,16,12.75z M4.75,12h2.5C7.66,12,8,12.34,8,12.75v2.5 C8,15.66,7.66,16,7.25,16S6.5,15.66,6.5,15.25v-0.69l-1.91,1.91c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.77,0-1.06 l1.91-1.91H4.75C4.34,13.5,4,13.16,4,12.75C4,12.34,4.34,12,4.75,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"safety_check\": {\n    \"name\": \"safety_check\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.3,2.26l-6,2.25C4.52,4.81,4,5.55,4,6.39v4.7c0,4.83,3.13,9.37,7.43,10.75c0.37,0.12,0.77,0.12,1.14,0 c4.3-1.38,7.43-5.91,7.43-10.75v-4.7c0-0.83-0.52-1.58-1.3-1.87l-6-2.25C12.25,2.09,11.75,2.09,11.3,2.26z M12,17 c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S14.76,17,12,17z M14,14c-0.2,0.2-0.51,0.2-0.71,0l-1.65-1.65 c-0.09-0.09-0.15-0.22-0.15-0.35V9.5C11.5,9.22,11.72,9,12,9c0.28,0,0.5,0.22,0.5,0.5v2.29l1.5,1.5C14.2,13.49,14.2,13.8,14,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.46,2.21l-5,1.92C3.88,4.35,3.5,4.91,3.5,5.53v3.74c0,3.88,2.56,7.52,6.07,8.61c0.28,0.09,0.58,0.09,0.86,0 c3.51-1.09,6.07-4.73,6.07-8.61V5.53c0-0.62-0.38-1.18-0.96-1.4l-5-1.92C10.19,2.07,9.81,2.07,9.46,2.21z M10,14 c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z M11.5,11.5c-0.2,0.2-0.51,0.2-0.71,0l-1.15-1.15 C9.55,10.26,9.5,10.13,9.5,10V8.5C9.5,8.22,9.72,8,10,8c0.28,0,0.5,0.22,0.5,0.5v1.29l1,1C11.7,10.99,11.7,11.3,11.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"departure_board\": {\n    \"name\": \"departure_board\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22v1.28c0 .83.67 1.5 1.5 1.5S5 22.33 5 21.5V21h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.28c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm-.25-9c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l2.52 1.51c.34.2.78.09.98-.24.21-.34.1-.79-.25-.99L16.5 8.25v-3.5c0-.41-.34-.75-.75-.75z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant\": {\n    \"name\": \"restaurant\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6v6c0 1.1.9 2 2 2h1v7c0 .55.45 1 1 1s1-.45 1-1V3.13c0-.65-.61-1.13-1.24-.98C17.6 2.68 16 4.51 16 6zm-5 3H9V3c0-.55-.45-1-1-1s-1 .45-1 1v6H5V3c0-.55-.45-1-1-1s-1 .45-1 1v6c0 2.21 1.79 4 4 4v8c0 .55.45 1 1 1s1-.45 1-1v-8c2.21 0 4-1.79 4-4V3c0-.55-.45-1-1-1s-1 .45-1 1v6z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel\": {\n    \"name\": \"hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V6c0-.55-.45-1-1-1s-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1v-2h18v2c0 .55.45 1 1 1s1-.45 1-1v-8c0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"dry_cleaning\": {\n    \"name\": \"dry_cleaning\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1s-1-0.45-1-1s0.45-1,1-1c0.38,0,0.72,0.22,0.88,0.53C13.04,4.84,13.39,5,13.73,5 c0.74,0,1.26-0.79,0.91-1.44c-0.6-1.1-1.86-1.78-3.24-1.51c-1.17,0.23-2.12,1.2-2.34,2.37C8.77,5.98,9.67,7.35,11,7.82v0.63 l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01C3,14.92,4.08,16,5.42,16H7v4c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2v-4h1.58 c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M18.58,14h-1.86c-0.35-0.6-0.98-1-1.72-1H9 c-0.74,0-1.38,0.4-1.72,1H5.42c-0.46,0-0.58-0.65-0.17-0.81l6.75-3l6.75,3C19.17,13.38,19.03,14,18.58,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M16.97,10.87c-0.11-0.62-0.55-1.12-1.13-1.37l-5.09-2.18V6.25c0-0.41-0.34-0.75-0.75-0.75c-0.62,0-1-0.56-1-1 c0-0.55,0.45-1,1-1c0.39,0,0.72,0.22,0.89,0.54c0.14,0.27,0.39,0.46,0.69,0.46c0.54,0,0.92-0.56,0.69-1.04 c-0.46-1.01-1.59-1.66-2.82-1.4C8.5,2.26,7.73,3.05,7.55,4.01c-0.25,1.33,0.55,2.5,1.7,2.86v0.45L4.16,9.5 c-0.57,0.25-1.02,0.75-1.13,1.37C2.83,12.01,3.7,13,4.81,13H6v4c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-4h1.19 C16.3,13,17.17,12.01,16.97,10.87z M15.19,11.5h-1.35C13.67,11.21,13.37,11,13,11H7c-0.37,0-0.67,0.21-0.85,0.5H4.81 c-0.17,0-0.31-0.14-0.31-0.31c0-0.12,0.07-0.23,0.19-0.28L10,8.63l5.31,2.28c0.11,0.05,0.19,0.16,0.19,0.28 C15.5,11.36,15.36,11.5,15.19,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fork_left\": {\n    \"name\": \"fork_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,20c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1v-3c-0.73-2.58-3.07-3.47-5.17-3l0.88,0.88c0.39,0.39,0.39,1.02,0,1.41 c-0.39,0.39-1.02,0.39-1.41,0l-2.59-2.59c-0.39-0.39-0.39-1.02,0-1.41l2.59-2.59c0.39-0.39,1.02-0.39,1.41,0 c0.39,0.39,0.39,1.02,0,1.41L7.83,12c1.51-0.33,3.73,0.08,5.17,1.36l0-6.53l-0.88,0.88c-0.39,0.39-1.02,0.39-1.41,0 c-0.39-0.39-0.39-1.02,0-1.41l2.59-2.59c0.39-0.39,1.02-0.39,1.41,0l2.59,2.59c0.39,0.39,0.39,1.02,0,1.41 c-0.39,0.39-1.02,0.39-1.41,0L15,6.83V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11,5.87l0,5.48c-1.2-1.05-2.74-1.4-4.13-1.11l0.66-0.66c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0 l-1.76,1.76c-0.39,0.39-0.39,1.02,0,1.41l1.76,1.76c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06l-0.66-0.66 C8.74,11.32,10.44,12.28,11,14v2.25c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75l0-10.38l0.66,0.66c0.29,0.29,0.77,0.29,1.06,0 c0.29-0.29,0.29-0.77,0-1.06l-1.76-1.76c-0.39-0.39-1.02-0.39-1.41,0L9.28,5.47c-0.29,0.29-0.29,0.77,0,1.06 c0.29,0.29,0.77,0.29,1.06,0L11,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_right\": {\n    \"name\": \"turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.29,13.29c0.39,0.39,1.02,0.39,1.41,0l2.59-2.59c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41L17.17,9L9,9c-1.1,0-2,0.9-2,2v8c0,0.55,0.45,1,1,1s1-0.45,1-1v-8l8.17,0l-0.88,0.88 C15.9,12.27,15.9,12.9,16.29,13.29z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.47,10.72c-0.29-0.29-0.29-0.77,0-1.06L14.13,9L8,9v6.25C8,15.66,7.66,16,7.25,16S6.5,15.66,6.5,15.25L6.5,9 c0-0.83,0.67-1.5,1.5-1.5l6.13,0l-0.66-0.66c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l1.76,1.76 c0.39,0.39,0.39,1.02,0,1.41l-1.76,1.76C14.24,11.01,13.76,11.01,13.47,10.72z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bike_scooter\": {\n    \"name\": \"bike_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H4C3.45,4,3,4.45,3,5v0c0,0.55,0.45,1,1,1h2.87l1.42,6.25c0,0-0.01,0-0.01,0 C6.12,12.9,4.47,14.73,4.09,17H0v2h6v-1C6,15.79,7.79,14,10,14z\\\"></path><path d=\\\"M18.75,8l-0.56,0l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H12c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2.96l1.1,3H10.4 l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c3.16,0.15,5.88-2.83,5.12-6.1 C23.34,9.57,21.13,8,18.75,8z M18.88,16c-1.54-0.06-2.84-1.37-2.88-2.92c-0.02-0.96,0.39-1.8,1.05-2.36l0.62,1.7 c0.19,0.52,0.76,0.79,1.28,0.6l0,0c0.52-0.19,0.79-0.76,0.6-1.28l-0.63-1.73c0,0,0,0,0.01-0.01C20.64,9.96,22,11.29,22,13 C22,14.72,20.62,16.06,18.88,16z\\\"></path><path d=\\\"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,13c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,13,9,13z M9,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,16,9,16z\\\"></path><path d=\\\"M9.24,12L7.82,5.78C7.72,5.32,7.31,5,6.84,5H4.51c-0.28,0-0.5,0.22-0.5,0.5v0c0,0.28,0.22,0.5,0.5,0.5h2.34l1.17,5.14 c-1.57,0.4-2.75,1.72-2.96,3.36H1v1h5.01v-0.51C6.01,13.34,7.35,12,9,12L9.24,12z\\\"></path><path d=\\\"M15.5,8h-0.68l-1.58-4.34C13.1,3.26,12.72,3,12.3,3h-1.8C10.22,3,10,3.22,10,3.5v0C10,3.78,10.22,4,10.5,4h1.8l1.46,4 h-4.4l0.23,1h3.45c-0.53,0.52-0.88,1.22-0.98,2h-2.01l0.23,1h1.79c0.25,1.78,1.77,3.1,3.66,2.99c1.68-0.09,3.1-1.43,3.27-3.1 C19.2,9.75,17.59,8,15.5,8z M15.48,14C14.13,13.99,13,12.85,13,11.5c0-0.94,0.5-1.73,1.24-2.16l0.86,2.36 c0.09,0.26,0.38,0.39,0.64,0.3l0,0c0.26-0.09,0.39-0.38,0.3-0.64l-0.85-2.33C15.3,9.02,15.4,9,15.5,9c1.4,0,2.5,1.1,2.5,2.5 C18,12.91,16.89,14.01,15.48,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"theater_comedy\": {\n    \"name\": \"theater_comedy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,2h-8c-1.1,0-2,0.9-2,2v3.5h1.5c1.1,0,2,0.9,2,2v4.95c1.04,0.48,2.24,0.68,3.5,0.47c2.93-0.49,5-3.17,5-6.14V4 C23,2.9,22.1,2,21,2z M14,6.5c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S14,7.05,14,6.5z M18.85,10.88h-3.72 c-0.38,0-0.63-0.41-0.44-0.75C15.08,9.47,15.96,9,16.99,9s1.91,0.47,2.3,1.14C19.48,10.47,19.23,10.88,18.85,10.88z M19,7.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S19.55,7.5,19,7.5z\\\"></path><path d=\\\"M11,9H3c-1.1,0-2,0.9-2,2v4.79c0,3.05,2.19,5.77,5.21,6.16C9.87,22.42,13,19.57,13,16v-5C13,9.9,12.1,9,11,9z M4,13.5 c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S4,14.05,4,13.5z M9.3,16.75c-0.38,0.67-1.27,1.14-2.3,1.14s-1.91-0.47-2.3-1.14 C4.51,16.41,4.76,16,5.14,16h3.72C9.24,16,9.49,16.41,9.3,16.75z M9,14.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S9.55,14.5,9,14.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.5,7h-7C1.67,7,1,7.67,1,8.5V13c0,2.76,2.24,5,5,5s5-2.24,5-5V8.5C11,7.67,10.33,7,9.5,7z M3.75,10.5 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S3.75,10.91,3.75,10.5z M7.7,13.8 c-0.35,0.43-0.98,0.71-1.7,0.71s-1.34-0.28-1.7-0.71C4.04,13.48,4.29,13,4.7,13H7.3C7.71,13,7.96,13.48,7.7,13.8z M7.5,11.25 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C8.25,10.91,7.91,11.25,7.5,11.25z\\\"></path></g><g><path d=\\\"M17.5,2h-7C9.67,2,9,2.67,9,3.5V6h1.5C11.33,6,12,6.67,12,7.5v5.08c0.61,0.27,1.29,0.42,2,0.42c2.76,0,5-2.24,5-5V3.5 C19,2.67,18.33,2,17.5,2z M11.75,5.5c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S11.75,5.91,11.75,5.5z M15.3,9.51H12.7c-0.41,0-0.66-0.48-0.4-0.8C12.66,8.28,13.28,8,14,8s1.34,0.28,1.7,0.71 C15.96,9.03,15.71,9.51,15.3,9.51z M15.5,6.25c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 C16.25,5.91,15.91,6.25,15.5,6.25z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_dining\": {\n    \"name\": \"local_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83-6.19-6.18c-.48-.48-1.31-.35-1.61.27-.71 1.49-.45 3.32.78 4.56l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27l-9.05 9.05c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 14.41l6.18 6.18c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"medical_information\": {\n    \"name\": \"medical_information\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M11,4h2v5h-2V4z M7,16H6c-0.55,0-1-0.45-1-1s0.45-1,1-1h1v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1h1 c0.55,0,1,0.45,1,1s-0.45,1-1,1H9v1c0,0.55-0.45,1-1,1s-1-0.45-1-1V16z M13.75,14.5c-0.41,0-0.75-0.34-0.75-0.75S13.34,13,13.75,13 h4.5c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75H13.75z M13.75,17.5c-0.41,0-0.75-0.34-0.75-0.75S13.34,16,13.75,16h2.5 c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75H13.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,6h-4.25V3.5c0-0.83-0.67-1.5-1.5-1.5h-1.5c-0.83,0-1.5,0.67-1.5,1.5V6H3.5C2.67,6,2,6.67,2,7.5v9 C2,17.33,2.67,18,3.5,18h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,6.67,17.33,6,16.5,6z M9.25,3.5h1.5v4h-1.5V3.5z M11.25,12 c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h4c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5H11.25z M11.25,14.5 c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h2.25c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5H11.25z M7.5,14.25 C7.5,14.66,7.16,15,6.75,15S6,14.66,6,14.25v-1H5c-0.41,0-0.75-0.34-0.75-0.75S4.59,11.75,5,11.75h1v-1C6,10.34,6.34,10,6.75,10 s0.75,0.34,0.75,0.75v1h1c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75h-1V14.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_bus\": {\n    \"name\": \"directions_bus\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 16c0 .88.39 1.67 1 2.22v1.28c0 .83.67 1.5 1.5 1.5S8 20.33 8 19.5V19h8v.5c0 .82.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5v-1.28c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z\\\"></path>\"\n      }\n    }\n  },\n  \"layers_clear\": {\n    \"name\": \"layers_clear\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.99 9.79c.51-.4.51-1.18 0-1.58l-6.76-5.26c-.72-.56-1.73-.56-2.46 0L9.41 4.02l7.88 7.88 2.7-2.11zm0 3.49l-.01-.01c-.36-.28-.86-.28-1.22 0l-.05.04 1.4 1.4c.37-.41.34-1.07-.12-1.43zm1.45 5.6L4.12 1.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l3.52 3.52-2.22 1.72c-.51.4-.51 1.18 0 1.58l6.76 5.26c.72.56 1.73.56 2.46 0l.87-.68 1.42 1.42-2.92 2.27c-.36.28-.87.28-1.23 0l-6.15-4.78c-.36-.28-.86-.28-1.22 0-.51.4-.51 1.17 0 1.57l6.76 5.26c.72.56 1.73.56 2.46 0l3.72-2.89 3.07 3.07c.39.39 1.02.39 1.41 0 .41-.39.41-1.02.02-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_left\": {\n    \"name\": \"ramp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,21c-0.55,0-1-0.45-1-1V6.83l-0.88,0.88C9.73,8.1,9.1,8.1,8.71,7.71c-0.39-0.39-0.39-1.02,0-1.41l2.59-2.59 c0.39-0.39,1.02-0.39,1.41,0l2.59,2.59c0.39,0.39,0.39,1.02,0,1.41c-0.39,0.39-1.02,0.39-1.41,0L13,6.83v0V9 c0,3.62,2.89,6.22,4.97,7.62c0.52,0.35,0.59,1.09,0.14,1.53c-0.33,0.33-0.87,0.4-1.26,0.13c-1.59-1.06-2.89-2.28-3.85-3.59l0,5.3 C13,20.55,12.55,21,12,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,5.87l0.66,0.66c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-1.76-1.76c-0.39-0.39-1.02-0.39-1.41,0 L7.53,5.47c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.66-0.66l0,10.38C9.25,16.66,9.59,17,10,17 s0.75-0.34,0.75-0.75V12c0.85,1.16,1.93,2.08,2.87,2.74c0.3,0.21,0.7,0.17,0.96-0.08c0.33-0.33,0.28-0.88-0.1-1.14 c-1.61-1.12-3.72-3.14-3.72-5.81L10.75,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"electric_rickshaw\": {\n    \"name\": \"electric_rickshaw\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M18.4,9H16V6.12L18.4,9z M4,5h3v4H3V6C3,5.45,3.45,5,4,5z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M9,13v-2 h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H9V5h4c0.55,0,1,0.45,1,1v7H9z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S20.55,15,20,15z\\\"></path><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"7,16 9.5,16 9.5,15 13,17 10.5,17 10.5,18\\\"></polygon><path d=\\\"M17,9.05v-1.7c0-0.23-0.08-0.45-0.22-0.62L13.3,2.38C13.11,2.14,12.82,2,12.52,2H2C1.45,2,1,2.45,1,3v8c0,0.55,0.45,1,1,1 h1.05c0.23,1.14,1.24,2,2.45,2s2.22-0.86,2.45-2h6.1c0.28,1.38,1.69,2.34,3.22,1.89c0.77-0.23,1.39-0.85,1.62-1.62 C19.34,10.74,18.38,9.33,17,9.05z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10S7,10.67,7,11.5S6.33,13,5.5,13z M7,7H2V3.5 C2,3.22,2.22,3,2.5,3H7V7z M12,11H8V8h1.5C9.78,8,10,7.78,10,7.5v0C10,7.22,9.78,7,9.5,7H8V3h3.5C11.78,3,12,3.22,12,3.5V11z M13,7 V3.6L15.72,7H13z M16.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,13,16.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_location\": {\n    \"name\": \"add_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M13,7c0-0.55-0.44-1-1-1c-0.55,0-1,0.44-1,1v2H9c-0.55,0-1,0.44-1,1c0,0.55,0.44,1,1,1h2v2 c0,0.55,0.44,1,1,1c0.55,0,1-0.44,1-1v-2h2c0.55,0,1-0.44,1-1c0-0.55-0.44-1-1-1h-2V7z M12,2c4.2,0,8,3.22,8,8.2 c0,3.18-2.45,6.92-7.34,11.23c-0.38,0.33-0.95,0.33-1.33,0C6.45,17.12,4,13.38,4,10.2C4,5.22,7.8,2,12,2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"delivery_dining\": {\n    \"name\": \"delivery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2.65L13.52,14H10v-4c0-0.55-0.45-1-1-1H6 c-2.21,0-4,1.79-4,4v2c0,0.55,0.45,1,1,1h1c0,1.66,1.34,3,3,3s3-1.34,3-3h3.52c0.61,0,1.18-0.28,1.56-0.75l3.48-4.35 C18.85,10.54,19,10.1,19,9.65V7z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\\\"></path><path d=\\\"M6,6h3c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H6C5.45,8,5,7.55,5,7v0C5,6.45,5.45,6,6,6z\\\"></path><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 C20,16.55,19.55,17,19,17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M7.25,5.5h-2.5C4.34,5.5,4,5.84,4,6.25v0C4,6.66,4.34,7,4.75,7h2.5C7.66,7,8,6.66,8,6.25v0C8,5.84,7.66,5.5,7.25,5.5z\\\"></path><path d=\\\"M15.5,7.91V6.5C15.5,5.67,14.83,5,14,5h-1.75c-0.41,0-0.75,0.34-0.75,0.75v0c0,0.41,0.34,0.75,0.75,0.75H14v1.41l-3,3.59 H8V9c0-0.55-0.45-1-1-1H5c-1.66,0-3,1.34-3,3v1c0,0.55,0.45,1,1,1h0.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5H11 c0.44,0,0.87-0.2,1.15-0.54l3-3.59C15.38,8.6,15.5,8.26,15.5,7.91z M6,14c-0.55,0-1-0.45-1-1h2C7,13.55,6.55,14,6,14z\\\"></path><path d=\\\"M15.5,10.5c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5S18,14.38,18,13S16.88,10.5,15.5,10.5z M15.5,14c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S16.05,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"car_rental\": {\n    \"name\": \"car_rental\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M8,7c1.3,0,2.41-0.84,2.83-2H16v1c0,0.55,0.45,1,1,1s1-0.45,1-1V5h0c0.55,0,1-0.45,1-1s-0.45-1-1-1h-7.17 C10.35,1.65,8.95,0.76,7.4,1.06C6.23,1.29,5.28,2.25,5.05,3.42C4.7,5.32,6.15,7,8,7z M8,3c0.55,0,1,0.45,1,1S8.55,5,8,5S7,4.55,7,4 S7.45,3,8,3z M16.39,9H7.61C7.18,9,6.8,9.28,6.66,9.68L5,14.69V21c0,0.55,0.45,1,1,1s1-0.45,1-1v-1h10v1c0,0.55,0.45,1,1,1 s1-0.45,1-1v-6.31l-1.66-5.01C17.2,9.28,16.82,9,16.39,9z M9,17.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,17.5,9,17.5z M15,17.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,17.5,15,17.5z M7.67,13l0.66-2h7.34l0.66,2H7.67z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.26,8.65l-1.2,3.18C5.02,11.94,5,12.06,5,12.18v4.07C5,16.66,5.34,17,5.75,17h0c0.41,0,0.75-0.34,0.75-0.75V16h7v0.25 c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75v-4.07c0-0.12-0.02-0.23-0.06-0.34l-1.16-3.18 C13.63,8.26,13.26,8,12.84,8H7.2C6.78,8,6.41,8.26,6.26,8.65z M7.75,14.25C7.34,14.25,7,13.91,7,13.5s0.34-0.75,0.75-0.75 c0.41,0,0.75,0.34,0.75,0.75S8.16,14.25,7.75,14.25z M12.25,14.25c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75 S13,13.09,13,13.5S12.66,14.25,12.25,14.25z M6.98,11l0.56-1.5h4.95l0.55,1.5H6.98z\\\"></path><path d=\\\"M9.37,2.75C9,1.6,7.83,0.79,6.51,1.05C5.55,1.23,4.77,2,4.56,2.95C4.21,4.56,5.45,6,7,6c1.11,0,2.05-0.74,2.37-1.75h3.13 v1C12.5,5.66,12.84,6,13.25,6h0C13.66,6,14,5.66,14,5.25v-1h0.25C14.66,4.25,15,3.91,15,3.5v0c0-0.41-0.34-0.75-0.75-0.75H9.37z M7,4.5c-0.54,0-1-0.46-1-1s0.46-1,1-1s1,0.46,1,1S7.54,4.5,7,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crisis_alert\": {\n    \"name\": \"crisis_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.5,2.5c0,1.5-1.5,6-1.5,6h-2c0,0-1.5-4.5-1.5-6C9.5,1.12,10.62,0,12,0S14.5,1.12,14.5,2.5z M12,10c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M16.08,5.11c0.18-0.75,0.33-1.47,0.39-2.06C19.75,4.69,22,8.08,22,12c0,5.52-4.48,10-10,10 S2,17.52,2,12c0-3.92,2.25-7.31,5.53-8.95C7.6,3.64,7.74,4.37,7.92,5.11C5.58,6.51,4,9.07,4,12c0,4.42,3.58,8,8,8s8-3.58,8-8 C20,9.07,18.42,6.51,16.08,5.11z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6c0-2,0.98-3.77,2.48-4.86c0.23,0.81,0.65,2.07,0.65,2.07 C8.43,9.93,8,10.92,8,12c0,2.21,1.79,4,4,4s4-1.79,4-4c0-1.08-0.43-2.07-1.13-2.79c0,0,0.41-1.22,0.65-2.07C17.02,8.23,18,10,18,12 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2c0,1.2-1.2,5-1.2,5H9.2C9.2,7,8,3.2,8,2c0-1.1,0.9-2,2-2S12,0.9,12,2z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z M13.12,4.3c2.01,1.1,3.38,3.24,3.38,5.7c0,3.59-2.91,6.5-6.5,6.5 S3.5,13.59,3.5,10c0-2.46,1.37-4.6,3.38-5.7C6.75,3.76,6.64,3.23,6.57,2.77C3.87,4.06,2,6.81,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8 c0-3.19-1.87-5.94-4.57-7.23C13.36,3.23,13.25,3.76,13.12,4.3z M13.5,10c0,1.93-1.57,3.5-3.5,3.5S6.5,11.93,6.5,10 c0-1.07,0.48-2.02,1.23-2.67c-0.11-0.35-0.28-0.9-0.46-1.53C5.91,6.7,5,8.24,5,10c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-1.76-0.91-3.3-2.28-4.19c-0.18,0.63-0.35,1.18-0.46,1.53C13.02,7.98,13.5,8.93,13.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"menu_book\": {\n    \"name\": \"menu_book\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.5,4.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5c-1.45,0-2.99,0.22-4.28,0.79C1.49,5.62,1,6.33,1,7.14 l0,11.28c0,1.3,1.22,2.26,2.48,1.94C4.46,20.11,5.5,20,6.5,20c1.56,0,3.22,0.26,4.56,0.92c0.6,0.3,1.28,0.3,1.87,0 c1.34-0.67,3-0.92,4.56-0.92c1,0,2.04,0.11,3.02,0.36c1.26,0.33,2.48-0.63,2.48-1.94l0-11.28c0-0.81-0.49-1.52-1.22-1.85 C20.49,4.72,18.95,4.5,17.5,4.5z M21,17.23c0,0.63-0.58,1.09-1.2,0.98c-0.75-0.14-1.53-0.2-2.3-0.2c-1.7,0-4.15,0.65-5.5,1.5V8 c1.35-0.85,3.8-1.5,5.5-1.5c0.92,0,1.83,0.09,2.7,0.28c0.46,0.1,0.8,0.51,0.8,0.98V17.23z\\\"></path><g></rect><path d=\\\"M13.98,11.01c-0.32,0-0.61-0.2-0.71-0.52c-0.13-0.39,0.09-0.82,0.48-0.94c1.54-0.5,3.53-0.66,5.36-0.45 c0.41,0.05,0.71,0.42,0.66,0.83c-0.05,0.41-0.42,0.71-0.83,0.66c-1.62-0.19-3.39-0.04-4.73,0.39 C14.13,10.99,14.05,11.01,13.98,11.01z\\\"></path><path d=\\\"M13.98,13.67c-0.32,0-0.61-0.2-0.71-0.52c-0.13-0.39,0.09-0.82,0.48-0.94c1.53-0.5,3.53-0.66,5.36-0.45 c0.41,0.05,0.71,0.42,0.66,0.83c-0.05,0.41-0.42,0.71-0.83,0.66c-1.62-0.19-3.39-0.04-4.73,0.39 C14.13,13.66,14.05,13.67,13.98,13.67z\\\"></path><path d=\\\"M13.98,16.33c-0.32,0-0.61-0.2-0.71-0.52c-0.13-0.39,0.09-0.82,0.48-0.94c1.53-0.5,3.53-0.66,5.36-0.45 c0.41,0.05,0.71,0.42,0.66,0.83c-0.05,0.41-0.42,0.7-0.83,0.66c-1.62-0.19-3.39-0.04-4.73,0.39 C14.13,16.32,14.05,16.33,13.98,16.33z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fort\": {\n    \"name\": \"fort\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,4v1h-2V4c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1h-2V4c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2.17 c0,0.53,0.21,1.04,0.59,1.41L15,9v1H9V9l1.41-1.41C10.79,7.21,11,6.7,11,6.17V4c0-0.55-0.45-1-1-1h0C9.45,3,9,3.45,9,4v1H7V4 c0-0.55-0.45-1-1-1h0C5.45,3,5,3.45,5,4v1H3V4c0-0.55-0.45-1-1-1h0C1.45,3,1,3.45,1,4v2.17C1,6.7,1.21,7.21,1.59,7.59L3,9v6 l-1.41,1.41C1.21,16.79,1,17.3,1,17.83V19c0,1.1,0.9,2,2,2h7l0-2.89c0-1,0.68-1.92,1.66-2.08C12.92,15.82,14,16.79,14,18v3h7 c1.1,0,2-0.9,2-2v-1.17c0-0.53-0.21-1.04-0.59-1.41L21,15V9l1.41-1.41C22.79,7.21,23,6.7,23,6.17V4c0-0.55-0.45-1-1-1h0 C21.45,3,21,3.45,21,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.5,3.75V4.5h-1.75V3.75C15.75,3.34,15.41,3,15,3h0c-0.41,0-0.75,0.34-0.75,0.75V4.5H12.5V3.75 C12.5,3.34,12.16,3,11.75,3h0C11.34,3,11,3.34,11,3.75v1.84c0,0.27,0.11,0.52,0.29,0.71L13,8v1H7V8l1.71-1.71 C8.89,6.11,9,5.85,9,5.59V3.75C9,3.34,8.66,3,8.25,3h0C7.84,3,7.5,3.34,7.5,3.75V4.5H5.75V3.75C5.75,3.34,5.41,3,5,3h0 C4.59,3,4.25,3.34,4.25,3.75V4.5H2.5V3.75C2.5,3.34,2.16,3,1.75,3h0C1.34,3,1,3.34,1,3.75v1.84c0,0.27,0.11,0.52,0.29,0.71L3,8v4 l-1.71,1.71C1.11,13.89,1,14.15,1,14.41V16c0,0.55,0.45,1,1,1h6l0-1.89c0-1,0.68-1.92,1.66-2.08C10.92,12.82,12,13.79,12,15v2h6 c0.55,0,1-0.45,1-1v-1.59c0-0.27-0.11-0.52-0.29-0.71L17,12V8l1.71-1.71C18.89,6.11,19,5.85,19,5.59V3.75C19,3.34,18.66,3,18.25,3 l0,0C17.84,3,17.5,3.34,17.5,3.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_car\": {\n    \"name\": \"electric_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3.11,7.68C3.04,7.89,3,8.11,3,8.34v7.16 C3,16.33,3.67,17,4.5,17h0C5.33,17,6,16.33,6,15.5V15h12v0.5c0,0.82,0.67,1.5,1.5,1.5h0c0.82,0,1.5-0.67,1.5-1.5V8.34 c0-0.22-0.04-0.45-0.11-0.66L18.92,2.01z M6.5,12C5.67,12,5,11.33,5,10.5S5.67,9,6.5,9S8,9.67,8,10.5S7.33,12,6.5,12z M17.5,12 c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5S18.33,12,17.5,12z M5,7l1.27-3.82C6.41,2.78,6.79,2.5,7.22,2.5h9.56 c0.43,0,0.81,0.28,0.95,0.68L19,7H5z\\\"></path><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.28,3.55C14.11,3.21,13.76,3,13.38,3H6.62C6.24,3,5.89,3.21,5.72,3.55L4,7v5c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v0h8 v0c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7L14.28,3.55z M6.93,4h6.15c0.19,0,0.36,0.11,0.45,0.28L14.88,7H5.12l1.36-2.72 C6.56,4.11,6.74,4,6.93,4z M6,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C7,9.55,6.55,10,6,10z M14,10c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C15,9.55,14.55,10,14,10z\\\"></path><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"brunch_dining\": {\n    \"name\": \"brunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,8h2V4h-2V8z M15,22H3c-0.55,0-1-0.45-1-1v-1h14v1C16,21.55,15.55,22,15,22z M18,15.89l-0.4-0.42 c-1.03-1.08-1.6-2.51-1.6-4V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v8.51c0,1.46-0.54,2.87-1.53,3.94L20,15.97V20h1 c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h-2c-0.55,0-1-0.45-1-1V15.89z M7,16v-1c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h4 c0.55,0,1,0.45,1,1v1H2v-1c0-0.55,0.45-1,1-1H7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M2.5,18h10c0.28,0,0.5-0.22,0.5-0.5v-1H2v1C2,17.78,2.22,18,2.5,18z\\\"></path></g><g><path d=\\\"M12.5,13.5H9V12H6v1.5H2.5C2.22,13.5,2,13.72,2,14v1h11v-1C13,13.72,12.78,13.5,12.5,13.5z\\\"></path></g><g><path d=\\\"M18,9.76V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v6.76c0,1.27,0.67,2.44,1.75,3.09V17c0,0.55,0.45,1,1,1h1.5 c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75h-1v-3.65C17.33,12.2,18,11.04,18,9.76z M16.5,3.5V7h-2V3.5H16.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"celebration\": {\n    \"name\": \"celebration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M3.99,21.29l9.04-3.23c1.38-0.49,1.78-2.26,0.74-3.3l-4.53-4.53c-1.04-1.04-2.8-0.64-3.3,0.74l-3.23,9.04 C2.43,20.81,3.19,21.57,3.99,21.29z\\\"></path><path d=\\\"M15.06,12l5.06-5.06c0.49-0.49,1.28-0.49,1.77,0L21.95,7c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06 l-0.06-0.06c-1.07-1.07-2.82-1.07-3.89,0L14,10.94c-0.29,0.29-0.29,0.77,0,1.06l0,0C14.29,12.29,14.77,12.29,15.06,12z\\\"></path><path d=\\\"M10.06,6.88L10,6.94C9.71,7.23,9.71,7.71,10,8l0,0c0.29,0.29,0.77,0.29,1.06,0l0.06-0.06c1.07-1.07,1.07-2.82,0-3.89 L11.07,4C10.77,3.7,10.29,3.7,10,4l0,0c-0.29,0.29-0.29,0.77,0,1.06l0.06,0.06C10.54,5.6,10.54,6.4,10.06,6.88z\\\"></path><path d=\\\"M17.06,11.88L16,12.94c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0l1.06-1.06 c0.49-0.49,1.28-0.49,1.77,0l1.08,1.08c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06l-1.08-1.08 C19.87,10.81,18.13,10.81,17.06,11.88z\\\"></path><path d=\\\"M15.06,5.88L12,8.94c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0l3.06-3.06c1.07-1.07,1.07-2.82,0-3.89 l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l1.06,1.06C15.54,4.6,15.54,5.4,15.06,5.88z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M3.98,17.3L12,14.46c0.69-0.25,0.89-1.13,0.37-1.65L7.19,7.63C6.67,7.11,5.78,7.31,5.54,8L2.7,16.02 C2.42,16.82,3.18,17.58,3.98,17.3z\\\"></path><path d=\\\"M11.19,2.44L11.19,2.44c-0.2,0.2-0.2,0.51,0,0.71l1.06,1.06c0.39,0.39,0.39,1.02,0,1.41l-2.12,2.12 c-0.2,0.2-0.2,0.51,0,0.71l0,0c0.2,0.2,0.51,0.2,0.71,0l2.12-2.12c0.78-0.78,0.78-2.05,0-2.83L11.9,2.44 C11.7,2.25,11.39,2.25,11.19,2.44z\\\"></path><path d=\\\"M8.72,3.5L8.72,3.5c-0.2,0.2-0.2,0.51,0,0.71l0.35,0.35c0.39,0.39,0.39,1.02,0,1.41L8.72,6.33c-0.2,0.2-0.2,0.51,0,0.71 l0,0c0.2,0.2,0.51,0.2,0.71,0l0.35-0.35c0.78-0.78,0.78-2.05,0-2.83L9.42,3.5C9.23,3.31,8.91,3.31,8.72,3.5z\\\"></path><path d=\\\"M17.2,9.16c-0.78-0.78-2.05-0.78-2.83,0l-1.41,1.41c-0.2,0.2-0.2,0.51,0,0.71l0,0c0.2,0.2,0.51,0.2,0.71,0l1.41-1.41 c0.39-0.39,1.02-0.39,1.41,0l1.06,1.06c0.2,0.2,0.51,0.2,0.71,0v0c0.2-0.2,0.2-0.51,0-0.71L17.2,9.16z\\\"></path><path d=\\\"M18.97,5.27l-0.35-0.35c-0.78-0.78-2.05-0.78-2.83,0l-4.24,4.24c-0.2,0.2-0.2,0.51,0,0.71v0c0.2,0.2,0.51,0.2,0.71,0 l4.24-4.24c0.39-0.39,1.02-0.39,1.41,0l0.35,0.35c0.2,0.2,0.51,0.2,0.71,0v0C19.17,5.78,19.17,5.47,18.97,5.27z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_play\": {\n    \"name\": \"local_play\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12c0-.76.43-1.42 1.06-1.76.6-.33.94-1.01.94-1.7V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.89-1.99 1.99v2.55c0 .69.33 1.37.94 1.69C3.58 10.58 4 11.24 4 12s-.43 1.43-1.06 1.76c-.6.33-.94 1.01-.94 1.7v2.25C2 19.1 2.9 20 4 20h16c1.1 0 2-.9 2-2v-2.54c0-.69-.34-1.37-.94-1.7-.63-.34-1.06-1-1.06-1.76zm-5.5 4.1L12 14.5l-2.5 1.61c-.38.24-.87-.11-.75-.55l.75-2.88-2.3-1.88c-.35-.29-.17-.86.29-.89l2.96-.17 1.08-2.75c.17-.42.77-.42.93 0l1.08 2.76 2.96.17c.45.03.64.6.29.89l-2.3 1.88.76 2.86c.12.45-.37.8-.75.55z\\\"></path>\"\n      }\n    }\n  },\n  \"local_pharmacy\": {\n    \"name\": \"local_pharmacy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.89 5h-.53l.71-1.97c.24-.65-.1-1.37-.75-1.6-.65-.24-1.37.1-1.61.75L15.69 5H5.1C3.73 5 2.77 6.34 3.2 7.63L5 13l-1.79 5.37C2.77 19.66 3.74 21 5.1 21h13.78c1.36 0 2.33-1.34 1.9-2.63L19 13l1.78-5.37C21.21 6.34 20.25 5 18.89 5zM15 14h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"design_services\": {\n    \"name\": \"design_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M16.24,11.51l1.57-1.57l-3.75-3.75l-1.57,1.57L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l4.13,4.13L3.15,17.1C3.05,17.2,3,17.32,3,17.46v3.04C3,20.78,3.22,21,3.5,21h3.04 c0.13,0,0.26-0.05,0.35-0.15l4.62-4.62l4.13,4.13c1.32,1.32,2.76,0.07,2.83,0l1.9-1.9c0.78-0.78,0.78-2.05,0-2.83L16.24,11.51z M9.18,11.07L5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27L7.73,6.8c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 l0.48-0.48l1.45,1.45L9.18,11.07z M17.06,18.96l-4.13-4.13l1.9-1.9l1.45,1.45l-0.48,0.48c-0.39,0.39-0.39,1.02,0,1.41 c0.39,0.39,1.02,0.39,1.41,0l0.48-0.48l1.27,1.27L17.06,18.96z\\\"></path><path d=\\\"M20.71,7.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.47-0.47-1.12-0.29-1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M15.71,13.21l-3.46-3.46l1.33-1.33l-2-2l-1.33,1.33L6.79,4.29C6.4,3.9,5.76,3.9,5.37,4.29L4.29,5.37 C3.9,5.76,3.9,6.4,4.29,6.79l3.46,3.46L4,14v1.5C4,15.78,4.22,16,4.5,16H6l3.75-3.75l3.46,3.46c0.39,0.39,1.02,0.39,1.41,0 l1.08-1.08C16.1,14.24,16.1,13.6,15.71,13.21z M8.46,9.54L5,6.08L6.08,5c0,0,0,0,0,0l0.69,0.69L6.56,5.9 c-0.18,0.18-0.18,0.48,0,0.67l0,0c0.18,0.18,0.48,0.18,0.67,0l0.21-0.21l1.06,1.06L8.28,7.62c-0.18,0.18-0.18,0.48,0,0.67l0,0 c0.18,0.18,0.48,0.18,0.67,0l0.21-0.21l0.38,0.38L8.46,9.54z M13.92,15l-3.46-3.46l1.08-1.08l0.4,0.4l-0.21,0.21 c-0.18,0.18-0.18,0.48,0,0.67l0,0c0.18,0.18,0.48,0.18,0.67,0l0.21-0.21l1.06,1.06l-0.21,0.21c-0.18,0.18-0.18,0.48,0,0.67l0,0 c0.18,0.18,0.48,0.18,0.67,0l0.21-0.21L15,13.92L13.92,15z\\\"></path><path d=\\\"M15.62,6.38c0.2-0.2,0.2-0.51,0-0.71l-1.29-1.29c-0.2-0.2-0.51-0.2-0.71,0l-1.34,1.34l2,2L15.62,6.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_post_office\": {\n    \"name\": \"local_post_office\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25l-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z\\\"></path>\"\n      }\n    }\n  },\n  \"local_see\": {\n    \"name\": \"local_see\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M9.5,14c0,1.38,1.12,2.5,2.5,2.5c1.23,0,2.25-0.9,2.46-2.07c-1-1.01-1.83-1.98-2.48-2.93C10.61,11.52,9.5,12.63,9.5,14z\\\"></path></g><g><path d=\\\"M18.65,17.08c-0.37,0.32-0.92,0.32-1.3,0c-1.26-1.08-0.7-0.61-1.3-1.14c-0.83,1.74-2.73,2.87-4.85,2.5 c-1.83-0.32-3.31-1.8-3.63-3.63c-0.42-2.44,1.13-4.58,3.31-5.14C10.3,8.45,10,7.28,10,6.15C10,5.4,10.1,4.68,10.28,4h-0.4 c-0.56,0-1.1,0.24-1.48,0.65L7.17,6H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-6.03 C20.59,15.46,19.35,16.48,18.65,17.08z\\\"></path></g><g><path d=\\\"M17.34,14.42c0.37,0.33,0.95,0.33,1.33,0C22.22,11.25,24,8.5,24,6.15C24,2.42,21.15,0,18,0s-6,2.42-6,6.15 C12,8.5,13.78,11.25,17.34,14.42z M17.27,5.25L18,3l0.73,2.25H21l-1.85,1.47L19.85,9L18,7.59L16.15,9l0.7-2.28L15,5.25H17.27z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"person_pin\": {\n    \"name\": \"person_pin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z\\\"></path>\"\n      }\n    }\n  },\n  \"electric_moped\": {\n    \"name\": \"electric_moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,5c0-1.1-0.9-2-2-2h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2.65L13.52,12H10V8c0-0.55-0.45-1-1-1H6 c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z\\\"></path><path d=\\\"M9,4H6C5.45,4,5,4.45,5,5v0c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v0C10,4.45,9.55,4,9,4z\\\"></path><path d=\\\"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z\\\"></path></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,5.5C15,4.67,14.33,4,13.5,4h-1C12.22,4,12,4.22,12,4.5v0C12,4.78,12.22,5,12.5,5h1C13.78,5,14,5.22,14,5.5v1.29 L10.79,10H9V6.5C9,6.22,8.78,6,8.5,6H6C4.34,6,3,7.34,3,9v2h2c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,7.21V5.5z M7,12 c-0.55,0-1-0.45-1-1h2C8,11.55,7.55,12,7,12z\\\"></path><path d=\\\"M8.5,4h-3C5.22,4,5,4.22,5,4.5v0C5,4.78,5.22,5,5.5,5h3C8.78,5,9,4.78,9,4.5v0C9,4.22,8.78,4,8.5,4z\\\"></path><path d=\\\"M15,9c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,9.9,16.1,9,15,9z M15,12c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,11.55,15.55,12,15,12z\\\"></path></g><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"local_convenience_store\": {\n    \"name\": \"local_convenience_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M21.9,7.89l-1.05-3.37c-0.22-0.9-1-1.52-1.91-1.52H5.05c-0.9,0-1.69,0.63-1.9,1.52L2.1,7.89C1.64,9.86,2.95,11,3,11.06V19 c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-7.94C22.12,9.94,22.09,8.65,21.9,7.89z M13,5h1.96l0.54,3.52C15.59,9.23,15.11,10,14.22,10 C13.55,10,13,9.41,13,8.69V5z M6.44,8.86C6.36,9.51,5.84,10,5.23,10C4.3,10,3.88,9.03,4.04,8.36L5.05,5h1.97L6.44,8.86z M10.5,16H9 v1h1.5c0.28,0,0.5,0.22,0.5,0.5l0,0c0,0.28-0.22,0.5-0.5,0.5h-2C8.22,18,8,17.78,8,17.5v-2C8,15.22,8.22,15,8.5,15H10v-1H8.5 C8.22,14,8,13.78,8,13.5v0C8,13.22,8.22,13,8.5,13h2c0.28,0,0.5,0.22,0.5,0.5v2C11,15.78,10.78,16,10.5,16z M11,8.69 C11,9.41,10.45,10,9.71,10c-0.75,0-1.3-0.7-1.22-1.48L9.04,5H11V8.69z M15.5,18L15.5,18c-0.28,0-0.5-0.22-0.5-0.5V16h-1.5 c-0.28,0-0.5-0.22-0.5-0.5v-2c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5V15h1v-1.5c0-0.28,0.22-0.5,0.5-0.5h0 c0.28,0,0.5,0.22,0.5,0.5v4C16,17.78,15.78,18,15.5,18z M18.77,10c-0.61,0-1.14-0.49-1.21-1.14L16.98,5l1.93-0.01l1.05,3.37 C20.12,9.03,19.71,10,18.77,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"place\": {\n    \"name\": \"place\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.23.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"agriculture\": {\n    \"name\": \"agriculture\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.5,11.97c0.93,0,1.78,0.28,2.5,0.76V7.97c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.06-1.06c0.2-0.2,0.2-0.51,0-0.71 s-0.51-0.2-0.71,0l-2.83,2.83c-0.2,0.2-0.2,0.51,0,0.71l0,0c0.2,0.2,0.51,0.2,0.71,0l1.06-1.06L13,6.68v2.29c0,1.1-0.9,2-2,2 h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14C15.3,13.73,17.19,11.97,19.5,11.97z\\\"></path><path d=\\\"M19.5,12.97c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,12.97,19.5,12.97z M19.5,17.97 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,17.97,19.5,17.97z\\\"></path><path d=\\\"M4,8.97h5c0-1.1-0.9-2-2-2H4c-0.55,0-1,0.45-1,1C3,8.53,3.45,8.97,4,8.97z\\\"></path><path d=\\\"M9.83,13.79l-0.18-0.47l0.93-0.35c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9 C7.26,10.11,6.64,9.97,6,9.97c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.4c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4 l-0.21,0.46l-0.9-0.4C1.13,13.72,1,14.33,1,14.97c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47l-0.93,0.35 c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89l0.46,0.21l-0.4,0.9c0.57,0.22,1.18,0.35,1.82,0.35c0.53,0,1.04-0.11,1.52-0.26L7.18,18.8 l0.47-0.18L8,19.55c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.22-0.57,0.35-1.18,0.35-1.82 c0-0.53-0.11-1.04-0.26-1.52L9.83,13.79z M7.15,17.75c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92 c1.53-0.63,3.29,0.09,3.92,1.62C9.41,15.36,8.68,17.11,7.15,17.75z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,10c0.54,0,1.04,0.13,1.5,0.35V7c0-0.55-0.45-1-1-1h-4.47l-0.8-0.8l0.8-0.8c0.15-0.15,0.15-0.38,0-0.53v0 c-0.15-0.15-0.38-0.15-0.53,0L8.88,6c-0.15,0.15-0.15,0.38,0,0.53v0c0.15,0.15,0.38,0.15,0.53,0l0.8-0.8l0.8,0.8V9 c0,0.55-0.45,1-1,1H9.24C9.72,10.72,10,11.57,10,12.5c0,0.17-0.03,0.33-0.05,0.5h2.1C12.29,11.31,13.74,10,15.5,10z\\\"></path><path d=\\\"M3.5,8H8c0-0.55-0.45-1-1-1H3.5C3.22,7,3,7.22,3,7.5C3,7.78,3.22,8,3.5,8z\\\"></path><path d=\\\"M15.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C18,12.12,16.88,11,15.5,11z M15.5,15 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,15,15.5,15z\\\"></path><path d=\\\"M8.34,11.53L8.2,11.18l0.45-0.19C8.3,10.28,7.72,9.7,7.01,9.35L6.82,9.8L6.47,9.66l0.18-0.44C6.29,9.08,5.91,9,5.5,9 S4.71,9.08,4.34,9.21l0.18,0.44L4.18,9.8L3.99,9.35c-0.72,0.34-1.3,0.92-1.64,1.64l0.45,0.19l-0.14,0.35l-0.44-0.18 C2.08,11.71,2,12.09,2,12.5s0.08,0.79,0.21,1.16l0.44-0.18l0.14,0.35l-0.45,0.19c0.34,0.72,0.92,1.3,1.64,1.64l0.19-0.45 l0.35,0.14l-0.18,0.44C4.71,15.92,5.09,16,5.5,16s0.79-0.08,1.16-0.21l-0.18-0.44l0.35-0.14l0.19,0.45 c0.72-0.34,1.3-0.92,1.64-1.64L8.2,13.82l0.14-0.35l0.44,0.18C8.92,13.29,9,12.91,9,12.5s-0.08-0.79-0.21-1.16L8.34,11.53z M5.5,15C4.12,15,3,13.88,3,12.5C3,11.12,4.12,10,5.5,10S8,11.12,8,12.5C8,13.88,6.88,15,5.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"museum\": {\n    \"name\": \"museum\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.5,11c0.28,0,0.5-0.22,0.5-0.5V9.26c0-0.16-0.08-0.32-0.21-0.41L12.57,2.4c-0.34-0.24-0.8-0.24-1.15,0L2.21,8.85 C2.08,8.94,2,9.1,2,9.26v1.24C2,10.78,2.22,11,2.5,11H4v9H3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1 c0-0.55-0.45-1-1-1h-1v-9H21.5z M16,17c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3l-1.17,1.75c-0.4,0.59-1.27,0.59-1.66,0L10,14v3 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-4.7C8,11.58,8.58,11,9.3,11h0c0.43,0,0.84,0.22,1.08,0.58L12,14l1.61-2.42 C13.86,11.22,14.26,11,14.7,11h0c0.72,0,1.3,0.58,1.3,1.3V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.49,9.06c0.27,0,0.5-0.22,0.5-0.49l0-0.24C17,8.16,16.92,8,16.79,7.9l-6.5-4.61c-0.17-0.12-0.41-0.12-0.58,0l-6.5,4.62 C3.08,8.01,3,8.16,3,8.33l0,0.24c0,0.27,0.23,0.49,0.5,0.49H5v7H3.52c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h12.97 c0.28,0,0.5-0.22,0.5-0.5c0-0.28-0.22-0.5-0.5-0.5H15v-7H16.49z M13,14.56c0,0.28-0.22,0.5-0.5,0.5c-0.28,0-0.5-0.22-0.5-0.5v-3.17 l-1.6,2.13c-0.2,0.27-0.6,0.27-0.8,0L8,11.39v3.17c0,0.28-0.22,0.5-0.5,0.5c-0.28,0-0.5-0.22-0.5-0.5v-5c0-0.28,0.22-0.5,0.5-0.5 h0.23c0.17,0,0.32,0.08,0.42,0.22L10,12.06l1.85-2.78c0.09-0.14,0.25-0.22,0.42-0.22h0.23c0.28,0,0.5,0.22,0.5,0.5V14.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"warehouse\": {\n    \"name\": \"warehouse\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,19V8.35c0-0.82-0.5-1.55-1.26-1.86l-8-3.2c-0.48-0.19-1.01-0.19-1.49,0l-8,3.2C2.5,6.8,2,7.54,2,8.35V19 c0,1.1,0.9,2,2,2h3v-9h10v9h3C21.1,21,22,20.1,22,19z M11,19H9v2h2V19z M13,16h-2v2h2V16z M15,19h-2v2h2V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,17h2.5c0.83,0,1.5-0.67,1.5-1.5V7.04c0-0.63-0.39-1.18-0.97-1.4l-6.5-2.44c-0.34-0.13-0.71-0.13-1.05,0l-6.5,2.44 C2.39,5.85,2,6.41,2,7.04v8.46C2,16.33,2.67,17,3.5,17H6v-7h8V17z M9.25,17h-1.5v-1.5h1.5V17z M10.75,14.5h-1.5V13h1.5V14.5z M12.25,17h-1.5v-1.5h1.5V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_fire_department\": {\n    \"name\": \"local_fire_department\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,12.9l-2.03,2c-0.46,0.46-0.82,1.03-0.93,1.67C8.74,18.41,10.18,20,12,20s3.26-1.59,2.96-3.42 c-0.11-0.64-0.46-1.22-0.93-1.67L12,12.9z\\\"></path></g><g><path d=\\\"M15.56,6.55L15.56,6.55C14.38,8.02,12,7.19,12,5.3V3.77c0-0.8-0.89-1.28-1.55-0.84C8.12,4.49,4,7.97,4,13 c0,2.92,1.56,5.47,3.89,6.86c-0.71-1.02-1.06-2.31-0.81-3.68c0.19-1.04,0.75-1.98,1.51-2.72l2.71-2.67c0.39-0.38,1.01-0.38,1.4,0 l2.73,2.69c0.74,0.73,1.3,1.65,1.48,2.68c0.25,1.36-0.07,2.64-0.77,3.66c1.89-1.15,3.29-3.06,3.71-5.3 c0.61-3.27-0.81-6.37-3.22-8.1C16.3,6.17,15.83,6.22,15.56,6.55z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M11.67,12.5L10,10.63L8.33,12.5c-0.37,0.42-0.58,0.95-0.58,1.5c0,1.24,1.01,2.25,2.25,2.25s2.25-1.01,2.25-2.25 C12.25,13.45,12.04,12.92,11.67,12.5L11.67,12.5z\\\"></path></g><g><path d=\\\"M12.67,5.41L12.67,5.41C11.79,6.52,10,5.89,10,4.47V3.11c0-0.47-0.54-0.74-0.91-0.46C7.41,3.94,4,7.04,4,11 c0,2.2,1.18,4.12,2.95,5.16c-0.44-0.61-0.7-1.36-0.7-2.16c0-0.92,0.34-1.81,0.96-2.5l2.36-2.65c0.23-0.25,0.62-0.25,0.85,0 l2.29,2.56c0.46,0.52,0.82,1.14,0.96,1.83c0.21,1.08-0.04,2.09-0.59,2.89c1.43-0.86,2.5-2.3,2.81-3.99 c0.46-2.47-0.62-5.46-2.46-6.85C13.2,5.11,12.86,5.18,12.67,5.41z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"lunch_dining\": {\n    \"name\": \"lunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.37,14.28c0.79-0.29,1.17-0.78,1.99-0.78c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.09-1,3.33-1c0.81,0,1.17,0.46,1.93,0.76c0.67,0.26,1.39-0.25,1.39-0.96c0-0.43-0.28-0.81-0.69-0.96 c-0.97-0.35-1.22-0.83-2.65-0.83c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.55,0-1.96,0.63-2.68,0.89c-0.39,0.14-0.65,0.52-0.65,0.94C2.01,14.03,2.71,14.52,3.37,14.28z\\\"></path><path d=\\\"M2,19c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-1c0-1.1-0.9-2-2-2H4c-1.1,0-2,0.9-2,2V19z\\\"></path><path d=\\\"M22,9c0.02-4-4.28-6-10-6C6.29,3,2,5,2,9v0c0,0.55,0.45,1,1,1h18C21.55,10,22,9.55,22,9L22,9L22,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.85,8c0.67,0,1.19-0.66,0.96-1.29C17.02,4.59,13.82,3,10,3C6.19,3,2.99,4.59,2.19,6.71C1.95,7.34,2.48,8,3.15,8H16.85z\\\"></path><path d=\\\"M2,15.5C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5v-1c0-0.83-0.67-1.5-1.5-1.5h-13C2.67,13,2,13.67,2,14.5V15.5z\\\"></path><path d=\\\"M15.34,9.25c-1.58,0-1.72,1-2.67,1c-0.95,0-1.08-1-2.67-1c-1.58,0-1.72,1-2.67,1c-0.95,0-1.09-1-2.67-1 c-1.28,0-1.61,0.65-2.19,0.9C2.19,10.28,2,10.54,2,10.85v0c0,0.53,0.54,0.91,1.03,0.71c0.7-0.29,0.96-0.82,1.65-0.82 c0.95,0,1.09,1,2.67,1c1.58,0,1.72-1,2.67-1c0.95,0,1.08,1,2.67,1c1.58,0,1.72-1,2.67-1c0.69,0,0.94,0.53,1.64,0.81 c0.49,0.2,1.03-0.18,1.03-0.71v0c0-0.31-0.19-0.58-0.48-0.7C16.95,9.9,16.61,9.25,15.34,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wrong_location\": {\n    \"name\": \"wrong_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.42,4.5l1.38-1.38c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L19,3.08 l-1.38-1.38c-0.39-0.39-1.02-0.39-1.41,0s-0.39,1.02,0,1.41l1.38,1.38l-1.38,1.38c-0.39,0.39-0.39,1.02,0,1.41l0,0 c0.39,0.39,1.02,0.39,1.41,0L19,5.92l1.38,1.38c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L20.42,4.5z\\\" enable-background=\\\"new\\\"></path><path d=\\\"M19.67,8L19,7.33l-0.59,0.59c-0.7,0.7-1.84,0.88-2.65,0.3c-1.03-0.74-1.12-2.19-0.26-3.05 l0.67-0.67L15.5,3.83c-0.36-0.36-0.54-0.81-0.57-1.28C14.01,2.19,13.02,2,12,2c-4.2,0-8,3.22-8,8.2c0,3.18,2.45,6.92,7.34,11.23 c0.38,0.33,0.95,0.33,1.33,0C17.55,17.12,20,13.38,20,10.2c0-0.76-0.1-1.47-0.26-2.14C19.72,8.04,19.69,8.02,19.67,8z M12,12 c-1.1,0-2-0.9-2-2s0.9-2,2-2c1.1,0,2,0.9,2,2S13.1,12,12,12z\\\" enable-background=\\\"new\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.81,4.75l1.16-1.16c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0l-1.16,1.16l-1.16-1.16 c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06l1.16,1.16l-1.16,1.16c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.16-1.16 l1.16,1.16c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L16.81,4.75z\\\" enable-background=\\\"new\\\"></path><path d=\\\"M16.2,7.68l-0.45-0.45L15.3,7.68c-0.68,0.68-1.79,0.68-2.48,0c-0.68-0.68-0.68-1.79,0-2.47 l0.45-0.45L12.82,4.3c-0.24-0.24-0.39-0.53-0.47-0.85C11.63,3.16,10.83,3,10,3C6.41,3,3.5,5.91,3.5,9.5c0,3.49,4.2,7.5,5.85,8.95 c0.38,0.33,0.93,0.33,1.31,0C12.3,17,16.5,12.99,16.5,9.5c0-0.62-0.09-1.22-0.25-1.79C16.23,7.7,16.22,7.69,16.2,7.68z M10,11 c-0.83,0-1.5-0.67-1.5-1.5C8.5,8.67,9.17,8,10,8s1.5,0.67,1.5,1.5C11.5,10.33,10.83,11,10,11z\\\" enable-background=\\\"new\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bus_alert\": {\n    \"name\": \"bus_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M4,11V8h7.29c-0.77-2.6,0.21-4.61,0.37-4.97C2.97,2.67,2,5.02,2,7v9.5c0,0.95,0.38,1.81,1,2.44v1.56 C3,21.33,3.67,22,4.5,22h0C5.33,22,6,21.33,6,20.5V20h8v0.5c0,0.82,0.67,1.5,1.5,1.5h0c0.82,0,1.5-0.67,1.5-1.5v-1.56 c0.62-0.63,1-1.49,1-2.44V13c-1.91,0-3.63-0.76-4.89-2H4z M6.5,17C5.67,17,5,16.33,5,15.5S5.67,14,6.5,14S8,14.67,8,15.5 S7.33,17,6.5,17z M15,15.5c0,0.83-0.67,1.5-1.5,1.5S12,16.33,12,15.5s0.67-1.5,1.5-1.5S15,14.67,15,15.5z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,6.5C18.5,6.78,18.28,7,18,7s-0.5-0.22-0.5-0.5v-3 C17.5,3.22,17.72,3,18,3s0.5,0.22,0.5,0.5V6.5z M18.5,8.5C18.5,8.78,18.28,9,18,9s-0.5-0.22-0.5-0.5S17.72,8,18,8 S18.5,8.22,18.5,8.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_gas_station\": {\n    \"name\": \"local_gas_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19.77 7.23.01-.01-3.19-3.19c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.58 1.58c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v15c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-6.5h1.5v4.86c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V9c0-.69-.28-1.32-.73-1.77zM12 10H6V6c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v4zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_run\": {\n    \"name\": \"directions_run\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.17 12l.57-2.5 2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45l-1.48-1.41.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.09 1.14-.39 1.14-1 0-.49-.36-.9-.85-.98-1.52-.25-2.78-1.15-3.45-2.33l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L7.21 7.76c-.74.32-1.22 1.04-1.22 1.85v2.37c0 .55.45 1 1 1s1-.45 1-1v-2.4l1.8-.7-1.6 8.1-3.92-.8c-.54-.11-1.07.24-1.18.78V17c-.11.54.24 1.07.78 1.18l4.11.82c1.06.21 2.1-.46 2.34-1.52z\\\"></path>\"\n      }\n    }\n  },\n  \"sailing\": {\n    \"name\": \"sailing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,13V3.59c0-0.49-0.63-0.69-0.91-0.29l-6.54,9.41c-0.23,0.33,0.01,0.79,0.41,0.79h6.54C10.78,13.5,11,13.28,11,13z M20.99,12.98C20.72,7.07,15.9,2.32,13.4,1.23c-0.37-0.16-0.77,0.2-0.67,0.59c0.3,1.13,0.76,3.28,0.76,5.68 c0,2.44-0.49,4.39-0.78,5.35c-0.1,0.32,0.14,0.65,0.48,0.65h7.28C20.76,13.5,21,13.26,20.99,12.98z M20.62,15H3.38 c-0.73,0-1.22,0.76-0.92,1.42c0.43,0.92,1.07,1.71,1.86,2.31c0.38-0.16,0.74-0.38,1.06-0.63c0.35-0.29,0.87-0.29,1.23,0 C7.28,18.63,8.1,19,9,19c0.9,0,1.72-0.37,2.39-0.91c0.35-0.28,0.87-0.28,1.22,0C13.28,18.63,14.1,19,15,19 c0.9,0,1.72-0.37,2.39-0.91c0.35-0.29,0.87-0.28,1.23,0c0.32,0.26,0.67,0.48,1.06,0.63c0.79-0.6,1.43-1.39,1.86-2.31 C21.84,15.76,21.35,15,20.62,15z M22,22c0-0.55-0.45-1-1-1h0c-0.87,0-1.73-0.24-2.53-0.7c-0.29-0.16-0.65-0.17-0.94,0 c-1.59,0.9-3.47,0.9-5.06,0c-0.29-0.16-0.65-0.16-0.94,0c-1.59,0.9-3.47,0.9-5.06,0c-0.29-0.16-0.65-0.16-0.94,0 C4.73,20.76,3.87,21,3,21h0c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h0c1.15,0,2.3-0.31,3.33-0.94c1.66,1.11,3.78,1.01,5.58,0.14 c1.91,1.05,4.17,1.07,6.09,0.05h0c0.95,0.5,1.97,0.75,3,0.75h0C21.55,23,22,22.55,22,22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.54,10.72c-0.23,0.33,0.01,0.78,0.41,0.78H9c0.28,0,0.5-0.22,0.5-0.5l0-7.38c0-0.49-0.64-0.69-0.91-0.28L3.54,10.72z M11.47,1.34c-0.38-0.22-0.84,0.12-0.74,0.55c0.24,0.99,0.56,2.7,0.56,4.61c0,1.99-0.35,3.54-0.59,4.36 c-0.09,0.32,0.15,0.64,0.48,0.64h5.3c0.28,0,0.51-0.24,0.5-0.52C16.76,6.2,13.43,2.45,11.47,1.34z M16.08,15.55 c-0.26-0.17-0.5-0.37-0.71-0.6c-0.2-0.21-0.54-0.21-0.73,0C14.06,15.56,13.32,16,12.5,16c-0.82,0-1.56-0.44-2.13-1.06 c-0.2-0.21-0.53-0.21-0.73,0C9.06,15.56,8.32,16,7.5,16c-0.82,0-1.56-0.44-2.13-1.06c-0.2-0.21-0.54-0.21-0.73,0 c-0.22,0.23-0.46,0.44-0.71,0.6c-0.8-0.59-1.42-1.42-1.75-2.39c-0.11-0.32,0.13-0.66,0.48-0.66h14.71c0.34,0,0.58,0.33,0.48,0.66 C17.5,14.13,16.88,14.96,16.08,15.55z M5,18.4c-0.7,0.36-1.46,0.55-2.22,0.59C2.39,19.01,2,18.7,2,18.24c0-0.39,0.3-0.72,0.71-0.75 c0.68-0.04,1.36-0.29,1.98-0.75c0.18-0.14,0.43-0.14,0.61,0c1.37,1.01,3.02,1.01,4.39,0c0.19-0.14,0.43-0.14,0.61,0 c1.37,1.01,3.02,1,4.39,0c0.18-0.14,0.43-0.14,0.61,0c0.62,0.46,1.3,0.7,1.98,0.75C17.7,17.52,18,17.85,18,18.24 c0,0.46-0.39,0.77-0.78,0.75c-0.76-0.04-1.52-0.24-2.22-0.59c-1.57,0.8-3.43,0.8-5,0C8.43,19.2,6.57,19.2,5,18.4z\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_left\": {\n    \"name\": \"roundabout_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,21c-0.55,0-1-0.45-1-1l0-5.09c0-0.98,0.71-1.8,1.67-1.97C18.56,12.63,20,10.98,20,9c0-2.21-1.79-4-4-4 c-1.98,0-3.63,1.44-3.94,3.33C11.89,9.29,11.07,10,10.09,10l-4.26,0l0.88,0.88c0.39,0.39,0.39,1.02,0,1.41 c-0.39,0.39-1.02,0.39-1.41,0L2.71,9.71c-0.39-0.39-0.39-1.02,0-1.41l2.59-2.59c0.39-0.39,1.02-0.39,1.41,0 c0.39,0.39,0.39,1.02,0,1.41L5.83,8l4.25,0c0.48-2.84,2.94-5,5.92-5c3.31,0,6,2.69,6,6c0,2.97-2.16,5.44-5,5.92L17,20 C17,20.55,16.55,21,16,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.25,3c-2.37,0-4.33,1.73-4.69,4L4.87,7l0.66-0.66c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L2.71,7.04 c-0.39,0.39-0.39,1.02,0,1.41l1.76,1.76c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L4.87,8.5l3.69,0 c0.74,0,1.36-0.54,1.48-1.25c0.24-1.56,1.59-2.75,3.21-2.75l0,0c1.79,0,3.25,1.46,3.25,3.25c0,1.62-1.18,2.96-2.73,3.21 c-0.72,0.11-1.27,0.67-1.27,1.4l0,3.89c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75v-3.81l0,0c2.27-0.36,4-2.32,4-4.69 C18,5.13,15.87,3,13.25,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_transfer\": {\n    \"name\": \"no_transfer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.78,2.95C7.24,2.16,9.48,2,12,2c4.42,0,8,0.5,8,4v10c0,0.35-0.08,0.67-0.19,0.98L13.83,11H18V6H8.83L5.78,2.95z M20.49,21.9c-0.39,0.39-1.02,0.39-1.41,0l-1.01-1.01C17.89,20.96,17.7,21,17.5,21c-0.83,0-1.5-0.68-1.5-1.5V19H8v0.5 C8,20.33,7.33,21,6.5,21S5,20.33,5,19.5v-1.28C4.39,17.67,4,16.88,4,16V6.83l-1.9-1.9c-0.39-0.39-0.39-1.02,0-1.41 c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97C20.88,20.88,20.88,21.51,20.49,21.9z M9,15.5C9,14.67,8.33,14,7.5,14S6,14.67,6,15.5 C6,16.33,6.67,17,7.5,17S9,16.33,9,15.5z M8.17,11L6,8.83V11H8.17z\\\"></path>\"\n      }\n    }\n  },\n  \"church\": {\n    \"name\": \"church\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,12.22v-1.99c0-0.76-0.43-1.45-1.11-1.79L13,6.5V5h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1V2c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v1h-1C9.45,3,9,3.45,9,4v0c0,0.55,0.45,1,1,1h1v1.5L7.11,8.45C6.43,8.79,6,9.48,6,10.24v1.99l-2.81,1.25 C2.47,13.79,2,14.51,2,15.3V20c0,1.1,0.9,2,2,2h6l0-2.89c0-1,0.68-1.92,1.66-2.08C12.92,16.82,14,17.79,14,19v3h6c1.1,0,2-0.9,2-2 v-4.7c0-0.79-0.47-1.51-1.19-1.83L18,12.22z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S12.83,13.5,12,13.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,11V8.85c0-0.53-0.28-1.02-0.73-1.29l-3.52-2.11v-1.2h1c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75h-1 v-1C10.75,1.34,10.41,1,10,1h0C9.59,1,9.25,1.34,9.25,1.75v1h-1C7.84,2.75,7.5,3.09,7.5,3.5v0c0,0.41,0.34,0.75,0.75,0.75h1v1.2 L5.73,7.56C5.28,7.83,5,8.32,5,8.85V11l-1.97,0.66C2.41,11.86,2,12.44,2,13.08v3.42C2,17.33,2.67,18,3.5,18H8l0-1.89 c0-1,0.68-1.92,1.66-2.08C10.92,13.82,12,14.79,12,16v2h4.5c0.83,0,1.5-0.67,1.5-1.5v-3.42c0-0.65-0.41-1.22-1.03-1.42L15,11z M10,11.25c-0.69,0-1.25-0.56-1.25-1.25S9.31,8.75,10,8.75s1.25,0.56,1.25,1.25S10.69,11.25,10,11.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_offer\": {\n    \"name\": \"local_offer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m21.41 11.58-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z\\\"></path>\"\n      }\n    }\n  },\n  \"not_listed_location\": {\n    \"name\": \"not_listed_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12 2c-4.2 0-8 3.22-8 8.2 0 3.18 2.45 6.92 7.34 11.22.38.33.95.33 1.33 0C17.55 17.12 20 13.38 20 10.2 20 5.22 16.2 2 12 2zm.01 14c-.59 0-1.05-.47-1.05-1.05 0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05zm2.51-6.17c-.63.93-1.23 1.21-1.56 1.81-.08.14-.13.26-.16.49-.05.39-.36.68-.75.68h-.03c-.44 0-.79-.38-.75-.82.03-.27.09-.57.25-.84.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.61 0-1.01.32-1.26.7-.19.29-.57.39-.89.25-.42-.18-.6-.7-.34-1.07C10.03 6.55 10.88 6 12 6c1.23 0 2.08.56 2.51 1.26.36.61.58 1.73.01 2.57z\\\"></path></g>\"\n      }\n    }\n  },\n  \"navigation\": {\n    \"name\": \"navigation\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.93 4.26l6.15 14.99c.34.83-.51 1.66-1.33 1.29l-5.34-2.36c-.26-.11-.55-.11-.81 0l-5.34 2.36c-.82.36-1.67-.46-1.33-1.29l6.15-14.99c.33-.83 1.51-.83 1.85 0z\\\"></path>\"\n      }\n    }\n  },\n  \"local_drink\": {\n    \"name\": \"local_drink\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.23 2C4.04 2 3.11 3.04 3.24 4.22l1.77 16.01C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77l1.77-16.01c.13-1.18-.8-2.22-1.99-2.22H5.23zM12 19c-1.66 0-3-1.34-3-3 0-1.55 1.81-3.95 2.62-4.94.2-.25.57-.25.77 0 .81 1 2.62 3.39 2.62 4.94-.01 1.66-1.35 3-3.01 3zm6.33-11H5.67l-.32-2.89c-.06-.59.4-1.11 1-1.11h11.3c.59 0 1.06.52.99 1.11L18.33 8z\\\"></path>\"\n      }\n    }\n  },\n  \"360\": {\n    \"name\": \"360\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77v2.02c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36v1.52c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .66-1.2 1.68-3.32 2.34-.41.13-.68.51-.68.94 0 .67.65 1.16 1.28.96C20.11 15.36 22 13.79 22 12c0-2.76-4.48-5-10-5z\\\"></path>\"\n      }\n    }\n  },\n  \"moped\": {\n    \"name\": \"moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2.65L13.52,14H10v-4c0-0.55-0.45-1-1-1H6 c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\\\"></path><path d=\\\"M9,6H6C5.45,6,5,6.45,5,7v0c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v0C10,6.45,9.55,6,9,6z\\\"></path><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,7.5C15,6.67,14.33,6,13.5,6h-1C12.22,6,12,6.22,12,6.5v0C12,6.78,12.22,7,12.5,7h1C13.78,7,14,7.22,14,7.5v1.29 L10.79,12H9V8.5C9,8.22,8.78,8,8.5,8H6c-1.66,0-3,1.34-3,3v2h2c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V7.5z M7,14 c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z\\\"></path><path d=\\\"M8.5,6h-3C5.22,6,5,6.22,5,6.5v0C5,6.78,5.22,7,5.5,7h3C8.78,7,9,6.78,9,6.5v0C9,6.22,8.78,6,8.5,6z\\\"></path><path d=\\\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_florist\": {\n    \"name\": \"local_florist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c4.56 0 8.33-3.4 8.92-7.8.09-.64-.48-1.21-1.12-1.12-4.4.59-7.8 4.36-7.8 8.92zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zm-8.92 8.7C3.67 18.6 7.44 22 12 22c0-4.56-3.4-8.33-7.8-8.92-.64-.09-1.21.48-1.12 1.12z\\\"></path>\"\n      }\n    }\n  },\n  \"local_atm\": {\n    \"name\": \"local_atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 13c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10zm-6-7c.55 0 1-.45 1-1s-.45-1-1-1h-1v-.01c0-.55-.45-1-1-1s-1 .45-1 1V8h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1h-3c-.55 0-1 .45-1 1s.45 1 1 1h1c0 .55.45 1 1 1s1-.45 1-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h3z\\\"></path>\"\n      }\n    }\n  },\n  \"atm\": {\n    \"name\": \"atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 9.75c0 .41.34.75.75.75h1.5v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h1.5c.41 0 .75-.34.75-.75S13.66 9 13.25 9h-4.5c-.41 0-.75.34-.75.75zM6 9H3c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75v-.75h2v.75c0 .41.34.75.75.75s.75-.34.75-.75V10c0-.55-.45-1-1-1zm-.5 3h-2v-1.5h2V12zM21 9h-4.5c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V10.5h1v2.75c0 .41.34.75.75.75s.75-.34.75-.75v-2.76h1v3.76c0 .41.34.75.75.75s.75-.34.75-.75V10c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"local_shipping\": {\n    \"name\": \"local_shipping\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.5 8H17V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2 0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h1c.55 0 1-.45 1-1v-3.33c0-.43-.14-.85-.4-1.2L20.3 8.4c-.19-.25-.49-.4-.8-.4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5l1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"wine_bar\": {\n    \"name\": \"wine_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,3C6.45,3,6,3.45,6,4l0,5c0,2.97,2.16,5.43,5,5.91V19H9c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h-2v-4.09c2.84-0.48,5-2.94,5-5.91l0-5c0-0.55-0.45-1-1-1H7z M16,8H8l0-3h8C16,5,16,8,16,8z\\\"></path>\"\n      }\n    }\n  },\n  \"transfer_within_a_station\": {\n    \"name\": \"transfer_within_a_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 15.5h-5.52v-.77c0-.36-.44-.54-.69-.29l-1.51 1.52c-.16.16-.16.41 0 .57l1.51 1.52c.26.26.69.08.69-.29V17H22v-1.5zm-.28 4.71l-1.51-1.52c-.26-.26-.69-.08-.69.29v.77H14v1.5h5.52v.77c0 .36.44.54.69.29l1.51-1.52c.16-.16.16-.42 0-.58zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3.23 21.81c-.12.62.35 1.19.98 1.19h.09c.47 0 .88-.33.98-.79L6.85 15 9 17v5c0 .55.45 1 1 1s1-.45 1-1v-5.72c0-.53-.21-1.04-.59-1.41L8.95 13.4l.6-3c1.07 1.32 2.58 2.23 4.31 2.51.6.1 1.14-.39 1.14-1 0-.49-.36-.9-.84-.98-1.49-.25-2.75-1.15-3.51-2.38l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L3.24 7.79C2.49 8.1 2 8.83 2 9.64V12c0 .55.45 1 1 1s1-.45 1-1V9.65l1.75-.75\\\"></path>\"\n      }\n    }\n  },\n  \"ramen_dining\": {\n    \"name\": \"ramen_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,2.84L22,2.84c0-0.45-0.39-0.79-0.83-0.75L4.89,3.9C4.38,3.95,4,4.38,4,4.89V12H3.08c-0.6,0-1.08,0.53-1,1.13 C2.52,16.33,4.83,19,8,20.25V21c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-0.75c3.17-1.25,5.48-3.92,5.92-7.12 c0.08-0.6-0.4-1.13-1-1.13H10.5V8h10.75C21.66,8,22,7.66,22,7.25v0c0-0.41-0.34-0.75-0.75-0.75H10.5V4.78l10.83-1.19 C21.71,3.54,22,3.22,22,2.84z M6.5,5.22V6.5h-1V5.34L6.5,5.22z M5.5,8h1v4h-1V8z M9,12H8V8h1V12z M9,6.5H8V5.06l1-0.11V6.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,2.56L18,2.56c0-0.3-0.26-0.53-0.55-0.5L4.89,3.44C4.38,3.5,4,3.93,4,4.44V9L3.07,9c-0.61,0-1.08,0.55-0.99,1.15 C2.5,13,4.41,15.36,7,16.41V17c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-0.59c2.59-1.05,4.5-3.41,4.92-6.26 C18.01,9.55,17.54,9,16.93,9L9,9V7h8.5C17.78,7,18,6.78,18,6.5v0C18,6.22,17.78,6,17.5,6H9V3.99l8.55-0.94 C17.81,3.03,18,2.81,18,2.56z M5,4.43l1-0.11V6H5V4.43z M5,7h1v2H5V7z M8,9H7V7h1V9z M8,6H7V4.21L8,4.1V6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cleaning_services\": {\n    \"name\": \"cleaning_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,11h-1V4c0-1.66-1.34-3-3-3h0c-1.66,0-3,1.34-3,3v7H8c-2.76,0-5,2.24-5,5v5c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-5 C21,13.24,18.76,11,16,11z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3 c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,9h-1V5c0-1.1-0.9-2-2-2h0C8.9,3,8,3.9,8,5v4H7c-1.66,0-3,1.34-3,3v4c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1v-4 C16,10.34,14.66,9,13,9z M15,16h-2v-1.5c0-0.28-0.22-0.5-0.5-0.5S12,14.22,12,14.5V16h-1.5v-1.5c0-0.28-0.22-0.5-0.5-0.5 s-0.5,0.22-0.5,0.5V16H8v-1.5C8,14.22,7.78,14,7.5,14S7,14.22,7,14.5V16H5v-4c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sos\": {\n    \"name\": \"sos\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,7h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V9C15.5,7.9,14.6,7,13.5,7z M13.5,15h-3V9h3V15z M3,9v2h2 c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2H2c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3v-2H3c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h3 c0.55,0,1,0.45,1,1S6.55,9,6,9H3z M19,9v2h2c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-3c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3v-2h-2 c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h3c0.55,0,1,0.45,1,1s-0.45,1-1,1H19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.38,12c0,0.82,0.68,1.5,1.5,1.5h2.25c0.82,0,1.5-0.68,1.5-1.5V8c0-0.82-0.68-1.5-1.5-1.5H8.88c-0.82,0-1.5,0.68-1.5,1.5 V12z M11.12,12H8.88V8h2.25V12z M5.25,6.5C5.66,6.5,6,6.84,6,7.25S5.66,8,5.25,8H3v1.25h1.5c0.83,0,1.5,0.67,1.5,1.5V12 c0,0.83-0.67,1.5-1.5,1.5H2.25c-0.41,0-0.75-0.34-0.75-0.75S1.84,12,2.25,12H4.5v-1.25H3c-0.83,0-1.5-0.67-1.5-1.5V8 c0-0.83,0.67-1.5,1.5-1.5H5.25z M17.75,6.5c0.41,0,0.75,0.34,0.75,0.75S18.16,8,17.75,8H15.5v1.25H17c0.83,0,1.5,0.67,1.5,1.5V12 c0,0.83-0.67,1.5-1.5,1.5h-2.25c-0.41,0-0.75-0.34-0.75-0.75S14.34,12,14.75,12H17v-1.25h-1.5c-0.83,0-1.5-0.67-1.5-1.5V8 c0-0.83,0.67-1.5,1.5-1.5H17.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_sharp_right\": {\n    \"name\": \"turn_sharp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,6.83l-0.88,0.88c-0.39,0.39-1.02,0.39-1.41,0c-0.39-0.39-0.39-1.02,0-1.41l2.59-2.59c0.39-0.39,1.02-0.39,1.41,0 l2.59,2.59c0.39,0.39,0.39,1.02,0,1.41c-0.39,0.39-1.02,0.39-1.41,0L18,6.83V13c0,1.1-0.9,2-2,2H8v5c0,0.55-0.45,1-1,1h0 c-0.55,0-1-0.45-1-1v-5c0-1.1,0.9-2,2-2h8V6.83L16,6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7,16.25C7,16.66,6.66,17,6.25,17S5.5,16.66,5.5,16.25V12c0-0.83,0.67-1.5,1.5-1.5l6,0l0-4.63l-0.66,0.66 c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.77,0-1.06l1.76-1.76c0.39-0.39,1.02-0.39,1.41,0l1.76,1.76 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L14.5,5.87l0,4.63c0,0.83-0.67,1.5-1.5,1.5l-6,0V16.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_boat_filled\": {\n    \"name\": \"directions_boat_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,21c-1.19,0-2.38-0.35-3.47-0.98c-0.33-0.19-0.73-0.19-1.07,0c-2.17,1.26-4.76,1.26-6.93,0 c-0.33-0.19-0.73-0.19-1.07,0C6.38,20.65,5.19,21,4,21H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1c1.38,0,2.74-0.35,4-0.99 c2.52,1.29,5.48,1.29,8,0c1.26,0.65,2.62,0.99,4,0.99h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H20z M3.95,19H4 c1.27,0,2.42-0.55,3.33-1.33c0.39-0.34,0.95-0.34,1.34,0C9.58,18.45,10.73,19,12,19s2.42-0.55,3.33-1.33 c0.39-0.34,0.95-0.34,1.34,0C17.58,18.45,18.73,19,20,19h0.05l1.9-6.68c0.11-0.37,0.04-1.06-0.66-1.28L20,10.62V6c0-1.1-0.9-2-2-2 h-3V2c0-0.55-0.45-1-1-1h-4C9.45,1,9,1.45,9,2v2H6C4.9,4,4,4.9,4,6v4.62l-1.29,0.42c-0.63,0.19-0.81,0.84-0.66,1.28L3.95,19z M6,6 h12v3.97L12.62,8.2c-0.41-0.13-0.84-0.13-1.25,0L6,9.97V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rate_review\": {\n    \"name\": \"rate_review\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm11 0h-6.5l2-2H17c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"set_meal\": {\n    \"name\": \"set_meal\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.3,17.6L3.83,18.46c-0.41,0.02-0.77-0.3-0.79-0.71l0,0c-0.02-0.41,0.3-0.77,0.71-0.79l16.48-0.86 c0.41-0.02,0.77,0.3,0.79,0.71v0C21.04,17.22,20.72,17.58,20.3,17.6z M20.25,19.48H3.75C3.34,19.48,3,19.82,3,20.23l0,0 c0,0.41,0.34,0.75,0.75,0.75h16.5c0.41,0,0.75-0.34,0.75-0.75l0,0C21,19.82,20.66,19.48,20.25,19.48z M22,5v7c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h16C21.1,3,22,3.9,22,5z M19.12,6.09c-1.25,0.27-2.19,1.11-2.33,2.14 C16.15,7.5,14.06,5.5,10.25,5.5c-3.44,0-5.48,1.63-6.31,2.49c-0.28,0.29-0.28,0.74,0,1.03c0.83,0.86,2.87,2.49,6.31,2.49 c3.81,0,5.9-2,6.54-2.73c0.14,1.02,1.08,1.86,2.33,2.14c0.46,0.1,0.88-0.28,0.88-0.74V6.84C20,6.37,19.57,5.99,19.12,6.09z\\\"></path>\"\n      }\n    }\n  },\n  \"terrain\": {\n    \"name\": \"terrain\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.2 7.07L10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z\\\"></path>\"\n      }\n    }\n  },\n  \"festival\": {\n    \"name\": \"festival\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M23,11v-0.61c0-0.8-0.48-1.54-1.23-1.84c-3.65-1.48-6.81-3.93-8.48-5.37c-0.74-0.64-1.84-0.64-2.58,0 C9.03,4.62,5.88,7.06,2.23,8.55C1.48,8.85,1,9.58,1,10.39V11c0,1.49,0.93,2.75,2.24,3.26c-0.03,1.68-0.16,3.55-0.52,5.29 C2.46,20.81,3.38,22,4.67,22h14.67c1.29,0,2.21-1.19,1.95-2.45c-0.36-1.75-0.5-3.62-0.52-5.29C22.07,13.75,23,12.49,23,11z M12,4.71c1.33,1.14,3.49,2.84,6.11,4.29H5.89C8.51,7.55,10.67,5.85,12,4.71z M13,11h3c0,0.83-0.67,1.5-1.5,1.5S13,11.83,13,11z M9.5,12.5C8.67,12.5,8,11.83,8,11h3C11,11.83,10.33,12.5,9.5,12.5z M6,11c0,0.83-0.67,1.5-1.5,1.5S3,11.83,3,11H6z M4.66,20 c0.39-1.86,0.54-3.82,0.57-5.58c0.68-0.15,1.29-0.49,1.76-0.98c0.25,0.25,0.54,0.45,0.85,0.62c-0.1,1.87-0.26,4-0.52,5.93H4.66z M9.35,20c0.24-1.83,0.39-3.78,0.48-5.53c0.84-0.08,1.61-0.45,2.17-1.02c0.56,0.57,1.32,0.94,2.17,1.02 c0.1,1.75,0.24,3.7,0.48,5.53H9.35z M16.67,20c-0.27-1.94-0.43-4.07-0.52-5.93c0.31-0.17,0.61-0.37,0.85-0.62 c0.47,0.48,1.08,0.83,1.76,0.98c0.03,1.76,0.18,3.72,0.57,5.58H16.67z M19.5,12.5c-0.83,0-1.5-0.67-1.5-1.5h3 C21,11.83,20.33,12.5,19.5,12.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M9.01,2.92C7.56,4.2,4.74,6.47,2.11,7.26C1.46,7.45,1,8.03,1,8.7V9c0,1.23,0.79,2.26,1.89,2.64 c-0.08,1.58-0.2,3.3-0.42,4.62C2.32,17.18,3.02,18,3.95,18h12.1c0.93,0,1.64-0.83,1.48-1.75c-0.17-0.96-0.34-2.42-0.44-4.61 C18.2,11.27,19,10.24,19,9V8.7c0-0.68-0.46-1.25-1.11-1.44c-2.64-0.79-5.46-3.06-6.91-4.34C10.42,2.41,9.58,2.41,9.01,2.92z M9.25,9c0,0.72-0.59,1.31-1.31,1.31S6.63,9.72,6.63,9H9.25z M8.23,11.78c0.7-0.08,1.32-0.39,1.77-0.88 c0.45,0.49,1.07,0.81,1.77,0.88c0.03,0.95,0.13,2.67,0.4,4.72H7.83C8.11,14.45,8.2,12.73,8.23,11.78z M12.06,10.31 c-0.72,0-1.31-0.59-1.31-1.31h2.62C13.37,9.72,12.79,10.31,12.06,10.31z M10,4.05c1.07,0.95,2.79,2.37,4.72,3.45H5.28 C7.21,6.42,8.93,5.01,10,4.05z M2.5,9h2.62c0,0.72-0.59,1.31-1.31,1.31S2.5,9.72,2.5,9z M4.39,11.75c0.58-0.12,1.09-0.43,1.48-0.85 c0.24,0.27,0.54,0.48,0.87,0.64c-0.03,0.88-0.11,2.76-0.43,4.97H3.95C4.18,15.17,4.31,13.37,4.39,11.75z M13.69,16.5 c-0.31-2.21-0.4-4.09-0.43-4.97c0.33-0.16,0.62-0.37,0.87-0.64c0.39,0.42,0.9,0.73,1.48,0.85c0.08,1.62,0.21,3.42,0.44,4.75H13.69z M16.19,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C17.5,9.72,16.91,10.31,16.19,10.31z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_slight_left\": {\n    \"name\": \"turn_slight_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.66,5L11.66,5c0-0.55-0.45-1-1-1H7C6.45,4,6,4.45,6,5v3.66c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7.41l5,5V19 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-6.58c0-0.53-0.21-1.04-0.59-1.41l-5-5h1.24C11.21,6,11.66,5.55,11.66,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.75,16C11.34,16,11,15.66,11,15.25v-4.69l-4-4L7,7.5c0,0.41-0.34,0.75-0.75,0.75C5.84,8.25,5.5,7.91,5.5,7.5l0-2.5 c0-0.55,0.45-1,1-1L9,4c0.41,0,0.75,0.34,0.75,0.75C9.75,5.16,9.41,5.5,9,5.5l-0.94,0l4,4c0.28,0.28,0.44,0.66,0.44,1.06v4.69 C12.5,15.66,12.16,16,11.75,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"medical_services\": {\n    \"name\": \"medical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M15,15h-2v2c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2H9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h2v-2 c0-0.55,0.45-1,1-1s1,0.45,1,1v2h2c0.55,0,1,0.45,1,1C16,14.55,15.55,15,15,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,6h-3V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v2H4C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V7 C17,6.45,16.55,6,16,6z M8,4h4v2H8V4z M12,12h-1.5v1.5c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5V12H8c-0.28,0-0.5-0.22-0.5-0.5 C7.5,11.22,7.72,11,8,11h1.5V9.5C9.5,9.22,9.72,9,10,9s0.5,0.22,0.5,0.5V11H12c0.28,0,0.5,0.22,0.5,0.5C12.5,11.78,12.28,12,12,12 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_walk\": {\n    \"name\": \"directions_walk\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7.24 21.81c-.13.61.35 1.19.98 1.19h.08c.47 0 .87-.32.98-.78L10.9 15l2.1 2v5c0 .55.45 1 1 1s1-.45 1-1v-5.64c0-.55-.22-1.07-.62-1.45L12.9 13.5l.6-3c1.07 1.24 2.62 2.13 4.36 2.41.6.09 1.14-.39 1.14-1 0-.49-.36-.9-.85-.98-1.52-.25-2.78-1.15-3.45-2.33l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L7.22 7.78C6.48 8.1 6 8.82 6 9.63V12c0 .55.45 1 1 1s1-.45 1-1V9.6l1.8-.7\\\"></path>\"\n      }\n    }\n  },\n  \"kebab_dining\": {\n    \"name\": \"kebab_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.75,13v1H8.5c1.38,0,2.5,1.12,2.5,2.5c0,1.38-1.12,2.5-2.5,2.5H7.75v3.25C7.75,22.66,7.41,23,7,23s-0.75-0.34-0.75-0.75 V19H5.5C4.12,19,3,17.88,3,16.5C3,15.12,4.12,14,5.5,14h0.75v-1H4c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h2.25V7H5.5 C4.12,7,3,5.88,3,4.5C3,3.12,4.12,2,5.5,2h0.75V1.75C6.25,1.34,6.59,1,7,1s0.75,0.34,0.75,0.75V2H8.5C9.88,2,11,3.12,11,4.5 C11,5.88,9.88,7,8.5,7H7.75v1H10c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1H7.75z M17.75,13v1h0.75c1.38,0,2.5,1.12,2.5,2.5 c0,1.38-1.12,2.5-2.5,2.5h-0.75v3.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V19H15.5c-1.38,0-2.5-1.12-2.5-2.5 c0-1.38,1.12-2.5,2.5-2.5h0.75v-1H14c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h2.25V7H15.5C14.12,7,13,5.88,13,4.5 C13,3.12,14.12,2,15.5,2h0.75V1.75C16.25,1.34,16.59,1,17,1s0.75,0.34,0.75,0.75V2h0.75C19.88,2,21,3.12,21,4.5 C21,5.88,19.88,7,18.5,7h-0.75v1H20c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1H17.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.5,12H7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2H6.5v2.5C6.5,18.78,6.28,19,6,19s-0.5-0.22-0.5-0.5V16H5c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2h0.5v-1h-2C3.22,11,3,10.78,3,10.5v-3C3,7.22,3.22,7,3.5,7h2V6H5C3.9,6,3,5.1,3,4c0-1.1,0.9-2,2-2h0.5V1.5 C5.5,1.22,5.72,1,6,1s0.5,0.22,0.5,0.5V2H7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2H6.5v1h2C8.78,7,9,7.22,9,7.5v3C9,10.78,8.78,11,8.5,11 h-2V12z M14.5,11h2c0.28,0,0.5-0.22,0.5-0.5v-3C17,7.22,16.78,7,16.5,7h-2V6H15c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-0.5V1.5 C14.5,1.22,14.28,1,14,1s-0.5,0.22-0.5,0.5V2H13c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h0.5v1h-2C11.22,7,11,7.22,11,7.5v3 c0,0.28,0.22,0.5,0.5,0.5h2v1H13c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h0.5v2.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V16H15 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-0.5V11z\\\"></path>\"\n      }\n    }\n  },\n  \"ev_station\": {\n    \"name\": \"ev_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 7.23l.01-.01-3.19-3.19c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06l1.58 1.58c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v15c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-6.5h1.5v4.86c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 16.12V13.5H6.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3h1.14c.38 0 .62.41.43.75l-2.64 4.62c-.25.44-.93.26-.93-.25z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me_disabled\": {\n    \"name\": \"near_me_disabled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6.34l6.95-2.58c0.8-0.3,1.58,0.48,1.29,1.29L17.66,12L12,6.34z M21.9,19.07L4.93,2.1c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41l4.36,4.36l-4.2,1.56C3.27,9.59,3,9.97,3,10.4c0,0.42,0.26,0.8,0.65,0.96l6.42,2.57l2.57,6.42 C12.8,20.74,13.18,21,13.6,21c0.43,0,0.82-0.27,0.97-0.67l1.56-4.2l4.36,4.36c0.39,0.39,1.02,0.39,1.41,0 C22.29,20.09,22.29,19.46,21.9,19.07z\\\"></path>\"\n      }\n    }\n  },\n  \"car_repair\": {\n    \"name\": \"car_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M7,15v-1h10v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V8.69c0,0-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4 c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,3.01,16.28,3,16.28,3H7.72c0,0-0.54,0.01-0.92,0.54C6.78,3.56,6.77,3.58,6.75,3.6 C6.68,3.71,6.61,3.84,6.56,4C6.34,4.66,5,8.69,5,8.69V15c0,0.55,0.45,1,1,1h0C6.55,16,7,15.55,7,15z M9,11.5c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S9.55,11.5,9,11.5z M15,11.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,11.5,15,11.5z M8.33,5h7.34 l0.23,0.69L16.33,7H7.67L8.33,5z\\\"></path><path d=\\\"M4,18.01L4,18.01C4,18.55,4.45,19,4.99,19H11v2.01c0,0.55,0.45,0.99,0.99,0.99h0.01c0.55,0,0.99-0.45,0.99-0.99V19h6.01 c0.55,0,0.99-0.45,0.99-0.99v0c0-0.55-0.45-0.99-0.99-0.99H4.99C4.45,17.01,4,17.46,4,18.01z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M5.75,12c0.41,0,0.75-0.34,0.75-0.75V11h7v0.25c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75V7.18 c0-0.12-0.02-0.23-0.06-0.34l-1.16-3.18C13.63,3.26,13.26,3,12.84,3H7.2C6.78,3,6.41,3.26,6.26,3.65l-1.2,3.18 C5.02,6.94,5,7.06,5,7.18v4.07C5,11.66,5.34,12,5.75,12z M7.75,9.25C7.34,9.25,7,8.91,7,8.5s0.34-0.75,0.75-0.75S8.5,8.09,8.5,8.5 S8.16,9.25,7.75,9.25z M12.25,9.25c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S13,8.09,13,8.5S12.66,9.25,12.25,9.25z M7.54,4.5h4.95L13.04,6H6.98L7.54,4.5z\\\"></path><path d=\\\"M15.25,13H4.75C4.34,13,4,13.34,4,13.75s0.34,0.75,0.75,0.75h4.5v1.75C9.25,16.66,9.59,17,10,17s0.75-0.34,0.75-0.75V14.5 h4.5c0.41,0,0.75-0.34,0.75-0.75S15.66,13,15.25,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"merge\": {\n    \"name\": \"merge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8.71,7.71c-0.39-0.39-0.39-1.02,0-1.41l2.59-2.59c0.39-0.39,1.02-0.39,1.41,0l2.59,2.59c0.39,0.39,0.39,1.02,0,1.41 c-0.39,0.39-1.02,0.39-1.41,0L13,6.83v5.1c0,1.06,0.42,2.08,1.17,2.83l4.12,4.12c0.39,0.39,0.39,1.02,0,1.41s-1.02,0.39-1.41,0 L12,15.41l-4.88,4.88c-0.39,0.39-1.02,0.39-1.41,0c-0.39-0.39-0.39-1.02,0-1.41l4.12-4.12c0.75-0.75,1.17-1.77,1.17-2.83v-5.1 l-0.88,0.88C9.73,8.1,9.1,8.1,8.71,7.71z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.47,16.47c0.29-0.29,0.29-0.77,0-1.06l-2.84-2.84c-0.56-0.56-0.88-1.33-0.88-2.12l0-4.58l0.66,0.66 c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-1.76-1.76c-0.39-0.39-1.02-0.39-1.41,0L7.53,5.47 c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.66-0.66l0,4.58c0,0.8-0.32,1.56-0.88,2.12l-2.84,2.84 c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0L10,13.06l3.41,3.41C13.7,16.76,14.18,16.76,14.47,16.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meals\": {\n    \"name\": \"no_meals\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,18.17l-2-2V14h-1c-1.1,0-2-0.9-2-2V6c0-1.49,1.6-3.32,3.76-3.85C20.39,2,21,2.48,21,3.13V18.17z M21.19,22.61 c-0.39,0.39-1.02,0.39-1.41,0l-9.76-9.76C9.69,12.94,9.36,13,9,13v8c0,0.55-0.45,1-1,1s-1-0.45-1-1v-8c-2.21,0-4-1.79-4-4V5.83 L1.39,4.22C1,3.83,1,3.2,1.39,2.81c0.39-0.39,1.02-0.39,1.41,0l18.38,18.38C21.58,21.58,21.58,22.22,21.19,22.61z M6.17,9L5,7.83V9 H6.17z M13,9V3c0-0.55-0.45-1-1-1s-1,0.45-1,1v5.17l1.85,1.85C12.94,9.69,13,9.36,13,9z M9,3c0-0.55-0.45-1-1-1S7,2.45,7,3v1.17l2,2 V3z\\\"></path>\"\n      }\n    }\n  },\n  \"miscellaneous_services\": {\n    \"name\": \"miscellaneous_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z\\\"></path><path d=\\\"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.69,11.36l1-1.73c0.06-0.11,0.04-0.24-0.06-0.32l-1.06-0.83C11.6,8.33,11.61,8.16,11.61,8c0-0.16-0.01-0.33-0.04-0.49 l1.06-0.83c0.09-0.08,0.12-0.21,0.06-0.32l-1-1.73c-0.06-0.11-0.19-0.15-0.31-0.11l-1.24,0.5C9.88,4.82,9.6,4.66,9.3,4.53 L9.11,3.21C9.09,3.09,8.98,3,8.86,3h-2C6.74,3,6.63,3.09,6.61,3.21L6.42,4.54c-0.3,0.13-0.59,0.29-0.84,0.49l-1.24-0.5 c-0.11-0.04-0.24,0-0.31,0.11l-1,1.73C2.97,6.47,3,6.61,3.09,6.69l1.06,0.83C4.12,7.67,4.11,7.84,4.11,8 c0,0.16,0.01,0.33,0.04,0.49L3.09,9.32C3,9.4,2.97,9.54,3.03,9.64l1,1.73c0.06,0.11,0.19,0.15,0.31,0.11l1.24-0.5 c0.26,0.2,0.54,0.36,0.84,0.49l0.19,1.32C6.63,12.91,6.74,13,6.86,13h2c0.12,0,0.23-0.09,0.25-0.21l0.19-1.32 c0.3-0.13,0.59-0.29,0.84-0.49l1.24,0.5C11.5,11.51,11.62,11.47,11.69,11.36z M7.86,9.5c-0.83,0-1.5-0.68-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5c0.82,0,1.5,0.67,1.5,1.5C9.36,8.82,8.68,9.5,7.86,9.5z\\\"></path><path d=\\\"M16.81,14.79l-0.64-0.5c0.01-0.1,0.02-0.19,0.02-0.29c0-0.1-0.01-0.2-0.02-0.29l0.64-0.5c0.05-0.05,0.07-0.13,0.04-0.19 l-0.6-1.04c-0.04-0.07-0.11-0.09-0.19-0.07l-0.74,0.3c-0.16-0.12-0.32-0.22-0.51-0.29l-0.11-0.79C14.68,11.05,14.61,11,14.54,11 h-1.2c-0.07,0-0.14,0.05-0.15,0.13l-0.11,0.79c-0.18,0.08-0.35,0.17-0.51,0.29l-0.74-0.3c-0.07-0.02-0.14,0-0.19,0.07l-0.6,1.04 c-0.04,0.07-0.02,0.14,0.04,0.19l0.64,0.5c-0.01,0.1-0.02,0.19-0.02,0.29c0,0.1,0.01,0.2,0.02,0.29l-0.64,0.5 c-0.05,0.05-0.07,0.13-0.04,0.19l0.6,1.04c0.04,0.07,0.11,0.09,0.19,0.07l0.74-0.3c0.16,0.12,0.32,0.22,0.51,0.29l0.11,0.79 C13.2,16.95,13.26,17,13.34,17h1.2c0.07,0,0.14-0.05,0.15-0.13l0.11-0.79c0.18-0.08,0.35-0.17,0.5-0.29l0.75,0.3 c0.07,0.02,0.14,0,0.19-0.07l0.6-1.04C16.88,14.92,16.86,14.84,16.81,14.79z M14,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1C15,14.55,14.55,15,14,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compass_calibration\": {\n    \"name\": \"compass_calibration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"4\\\"></circle><path d=\\\"M12 3C8.49 3 5.28 4.29 2.8 6.41c-.44.38-.48 1.06-.06 1.48l3.6 3.6c.36.36.92.39 1.32.08 1.2-.94 2.71-1.5 4.34-1.5 1.64 0 3.14.56 4.34 1.49.4.31.96.28 1.31-.08l3.6-3.6c.42-.42.38-1.1-.07-1.48C18.72 4.28 15.51 3 12 3z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me\": {\n    \"name\": \"near_me\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.75 3.94L4.07 10.08c-.83.35-.81 1.53.02 1.85L9.43 14c.26.1.47.31.57.57l2.06 5.33c.32.84 1.51.86 1.86.03l6.15-14.67c.33-.83-.5-1.66-1.32-1.32z\\\"></path>\"\n      }\n    }\n  },\n  \"home_repair_service\": {\n    \"name\": \"home_repair_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17,16c-0.55,0-1-0.45-1-1H8c0,0.55-0.45,1-1,1s-1-0.45-1-1H2v3c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3h-4 C18,15.55,17.55,16,17,16z\\\"></path></g><path d=\\\"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v4h4v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1h8v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1v1h4v-4C22,8.9,21.1,8,20,8z M15,8H9V6h6V8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M14,12.5c0,0.28-0.22,0.5-0.5,0.5S13,12.78,13,12.5V12H7v0.5C7,12.78,6.78,13,6.5,13S6,12.78,6,12.5V12H3v3 c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1v-3h-3V12.5z\\\"></path></g><path d=\\\"M16,7h-3V5c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5v2H4C3.45,7,3,7.45,3,8v3h3v-0.5C6,10.22,6.22,10,6.5,10S7,10.22,7,10.5 V11h6v-0.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V11h3V8C17,7.45,16.55,7,16,7z M12,7H8V5h4V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airline_stops\": {\n    \"name\": \"airline_stops\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,18c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h1c-0.47-4.21-3.89-7.55-8.12-7.96 C2.37,8.99,2,8.56,2,8.05c0-0.59,0.52-1.06,1.11-1C7.03,7.44,10.37,9.87,12,13.3c1.13-2.43,2.99-4.25,4.78-5.52l-1.92-1.92 C14.54,5.54,14.76,5,15.21,5h5.29C20.78,5,21,5.22,21,5.5v5.29c0,0.45-0.54,0.67-0.85,0.35l-1.94-1.94C15.93,10.78,13.45,13.3,13,17 h1C14.55,17,15,17.45,15,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.25,14.75c0,0.41-0.33,0.75-0.75,0.75h-3c-0.41,0-0.75-0.34-0.75-0.75C7.75,14.33,8.08,14,8.5,14h0.75 c0-3.39-2.9-6.17-6.59-6.47C2.28,7.5,2,7.16,2,6.78C2,6.33,2.39,6,2.84,6.04c3.2,0.28,5.91,2.14,7.16,4.72 c0.72-1.49,1.96-2.87,3.68-4.08l-1.32-1.32c-0.31-0.31-0.09-0.85,0.35-0.85h3.79C16.78,4.5,17,4.72,17,5v3.79 c0,0.45-0.54,0.67-0.85,0.35l-1.39-1.39c-1.78,1.21-4.01,3.28-4.01,6.24h0.75C11.92,14,12.25,14.33,12.25,14.75z\\\"></path>\"\n      }\n    }\n  },\n  \"bedroom_baby\": {\n    \"name\": \"bedroom_baby\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M12,17.99 c-2.37,0-4.61-0.83-6.4-2.35c-0.33-0.28-0.35-0.8-0.04-1.11l0,0c0.27-0.27,0.71-0.29,1.01-0.04c0.19,0.16,0.39,0.31,0.6,0.46 L8,13.49V9.5l-1,0.65c-0.32,0.21-0.73,0.16-0.99-0.12L6,10.01c-0.29-0.3-0.3-0.77-0.03-1.08C6.27,8.6,6.62,8.19,6.83,7.95 C6.92,7.84,6.9,7.67,6.79,7.59c0,0-0.81-0.31-0.79-0.57C6,6.91,9.36,6.99,9.36,6.99c0.18,0,0.34,0.1,0.43,0.25l1.44,2.5 c0.09,0.15,0.25,0.25,0.43,0.25h4.83c0.28,0,0.5,0.22,0.5,0.5v0c0,0.28-0.22,0.5-0.5,0.5H16v2.5l0.84,1.46 c0.2-0.15,0.4-0.3,0.6-0.46c0.3-0.25,0.73-0.23,1.01,0.04v0c0.31,0.31,0.29,0.82-0.04,1.11C16.61,17.16,14.37,17.99,12,17.99z\\\"></path><path d=\\\"M14.69,14.24c-1.74,0.65-3.66,0.65-5.4,0l-0.81,1.41l-0.03,0.06c1.1,0.52,2.28,0.79,3.53,0.79s2.45-0.28,3.55-0.79 l-0.03-0.06L14.69,14.24z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"garage\": {\n    \"name\": \"garage\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><polygon points=\\\"8.33,7.5 7.67,9.5 16.33,9.5 15.67,7.5\\\"></polygon><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,17.69 c0,0.45-0.35,0.81-0.78,0.81h-0.44c-0.44,0-0.78-0.36-0.78-0.81V16.5H7v1.19c0,0.45-0.35,0.81-0.78,0.81H5.78 C5.35,18.5,5,18.14,5,17.69v-6.5C5.82,8.72,6.34,7.16,6.56,6.5c0.05-0.16,0.12-0.29,0.19-0.4C6.77,6.08,6.78,6.06,6.8,6.04 C7.18,5.51,7.72,5.5,7.72,5.5h8.56c0,0,0.54,0.01,0.92,0.53c0.02,0.03,0.03,0.05,0.05,0.07c0.07,0.11,0.14,0.24,0.19,0.4 c0.22,0.66,0.74,2.23,1.56,4.69V17.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feed\": {\n    \"name\": \"feed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8L16,3z M8,7h3c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H8 C7.45,9,7,8.55,7,8v0C7,7.45,7.45,7,8,7z M16,17H8c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h8c0.55,0,1,0.45,1,1v0 C17,16.55,16.55,17,16,17z M16,13H8c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h8c0.55,0,1,0.45,1,1v0C17,12.55,16.55,13,16,13z M15,8 V5l4,4h-3C15.45,9,15,8.55,15,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flatware\": {\n    \"name\": \"flatware\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,7.08c0,1.77-0.84,3.25-2,3.82V20c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-9.1c-1.16-0.57-2-2.05-2-3.82 C10.01,4.83,11.35,3,13,3C14.66,3,16,4.83,16,7.08z M18.27,3.18C17.64,2.99,17,3.49,17,4.15L17,20c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-7h1c0.55,0,1-0.45,1-1V7C21,5.54,20.14,3.74,18.27,3.18z M8.28,3c-0.4,0-0.72,0.32-0.72,0.72V7H6.72V3.72 C6.72,3.32,6.4,3,6,3S5.28,3.32,5.28,3.72V7H4.44V3.72C4.44,3.32,4.12,3,3.72,3S3,3.32,3,3.72V9c0,1.1,0.9,2,2,2v9 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-9c1.1,0,2-0.9,2-2V3.72C9,3.32,8.68,3,8.28,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bathroom\": {\n    \"name\": \"bathroom\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M9,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S9.55,18,9,18z M9,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,15,9,15z M12,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,18,12,18z M12,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.55,15,12,15z M15,18 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,18,15,18z M15,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,15,15,15z M7,11L7,11c0-2.76,2.24-5,5-5h0c2.76,0,5,2.24,5,5v0c0,0.55-0.45,1-1,1H8C7.45,12,7,11.55,7,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair_alt\": {\n    \"name\": \"chair_alt\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,10c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v3c0,1.1,0.9,2,2,2h1v2H7c-1.1,0-2,0.9-2,2v6 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h10v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-6c0-1.1-0.9-2-2-2h-1v-2H17z M7,8V5h10v3 H7z M17,16H7v-2h10V16z M14,12h-4v-2h4V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee\": {\n    \"name\": \"coffee\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18.5,3H6C4.9,3,4,3.9,4,5v5.71c0,3.83,2.95,7.18,6.78,7.29c3.96,0.12,7.22-3.06,7.22-7v-1h0.5c1.93,0,3.5-1.57,3.5-3.5 S20.43,3,18.5,3z M16,5v3H6V5H16z M18.5,8H18V5h0.5C19.33,5,20,5.67,20,6.5S19.33,8,18.5,8z M5,19h14c0.55,0,1,0.45,1,1v0 c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1v0C4,19.45,4.45,19,5,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee_maker\": {\n    \"name\": \"coffee_maker\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,6V4h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h13c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h-3.03C17.2,19.09,18,17.64,18,16v-3c0-1.1-0.9-2-2-2h-6c-1.1,0-2,0.9-2,2v3c0,1.64,0.81,3.09,2.03,4H6V4h2v2 c0,0.55,0.45,1,1,1h8C17.55,7,18,6.55,18,6z\\\"></path><circle cx=\\\"13\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"bedroom_parent\": {\n    \"name\": \"bedroom_parent\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.5,12h-9c-0.55,0-1,0.45-1,1v1h11v-1C17.5,12.45,17.05,12,16.5,12z\\\"></path><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"7.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"12.75\\\" y=\\\"8.5\\\"></rect><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M18.25,17L18.25,17 c-0.41,0-0.75-0.34-0.75-0.75V15.5h-11v0.75C6.5,16.66,6.16,17,5.75,17h0C5.34,17,5,16.66,5,16.25v-3.08 c0-0.66,0.25-1.26,0.65-1.72V9c0-1.1,0.9-2,2-2H11c0.37,0,0.72,0.12,1,0.32C12.28,7.12,12.63,7,13,7h3.35c1.1,0,2,0.9,2,2v2.45 c0.4,0.46,0.65,1.06,0.65,1.72v3.08C19,16.66,18.66,17,18.25,17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"window\": {\n    \"name\": \"window\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11 11V3H5c-1.1 0-2 .9-2 2v6h8zm2 0h8V5c0-1.1-.9-2-2-2h-6v8zm-2 2H3v6c0 1.1.9 2 2 2h6v-8zm2 0v8h6c1.1 0 2-.9 2-2v-6h-8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.25 9.25V3H4.5C3.67 3 3 3.67 3 4.5v4.75h6.25z\\\"></path></g><g><path d=\\\"M10.75 9.25H17V4.5c0-.83-.67-1.5-1.5-1.5h-4.75v6.25z\\\"></path></g><g><path d=\\\"M10.75 10.75V17h4.75c.83 0 1.5-.67 1.5-1.5v-4.75h-6.25z\\\"></path></g><g><path d=\\\"M9.25 10.75H3v4.75c0 .83.67 1.5 1.5 1.5h4.75v-6.25z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"living\": {\n    \"name\": \"living\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.5,11.5c-0.55,0-1,0.45-1,1v2h-7v-2c0-0.55-0.45-1-1-1s-1,0.45-1,1V16c0,0.28,0.22,0.5,0.5,0.5h10 c0.28,0,0.5-0.22,0.5-0.5v-3.5C17.5,11.95,17.05,11.5,16.5,11.5z\\\"></path><path d=\\\"M10,12.5V13h4v-0.5c0-1.3,0.99-2.35,2.25-2.47V9c0-0.83-0.67-1.5-1.5-1.5h-5.5c-0.83,0-1.5,0.67-1.5,1.5v1.03 C9.01,10.15,10,11.2,10,12.5z\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M19,16c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2v-3.5c0-0.92,0.51-1.72,1.25-2.15V9c0-1.66,1.34-3,3-3h5.5c1.66,0,3,1.34,3,3v1.35C18.49,10.78,19,11.58,19,12.5 V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dining\": {\n    \"name\": \"dining\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M11,10.3c0,0.93-0.64,1.71-1.5,1.93 v6.02C9.5,18.66,9.16,19,8.75,19h0C8.34,19,8,18.66,8,18.25v-6.02c-0.86-0.22-1.5-1-1.5-1.93V6.5C6.5,6.22,6.72,6,7,6 s0.5,0.22,0.5,0.5V9h0.75V6.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V9H10V6.5C10,6.22,10.23,6,10.5,6C10.78,6,11,6.22,11,6.5 V10.3z M15.58,12.59l-0.08,0.03v5.63c0,0.41-0.34,0.75-0.75,0.75h0C14.34,19,14,18.66,14,18.25v-5.63l-0.08-0.04 c-0.97-0.47-1.67-1.7-1.67-3.18c0-1.88,1.13-3.4,2.5-3.4c1.38,0,2.5,1.53,2.5,3.41C17.25,10.89,16.55,12.12,15.58,12.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair\": {\n    \"name\": \"chair\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21,9c-1.1,0-2,0.9-2,2v4H5v-4c0-1.1-0.9-2-2-2s-2,0.9-2,2v5c0,1.65,1.35,3,3,3v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1c1.65,0,3-1.35,3-3v-5C23,9.9,22.1,9,21,9z\\\"></path><path d=\\\"M7,11v2h10v-2c0-1.86,1.28-3.41,3-3.86V6c0-1.65-1.35-3-3-3H7C5.35,3,4,4.35,4,6v1.14C5.72,7.59,7,9.14,7,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"table_bar\": {\n    \"name\": \"table_bar\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,7.5C22,5.57,17.52,4,12,4S2,5.57,2,7.5c0,1.81,3.95,3.31,9,3.48V15H9.35c-0.82,0-1.55,0.5-1.86,1.26l-0.99,2.47 C6.27,19.34,6.71,20,7.37,20h0c0.38,0,0.72-0.23,0.86-0.58L9.2,17h5.6l0.97,2.42c0.14,0.35,0.48,0.58,0.86,0.58h0 c0.66,0,1.11-0.66,0.86-1.27l-0.99-2.47C16.2,15.5,15.46,15,14.65,15H13v-4.02C18.05,10.81,22,9.31,22,7.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,6.5C18,5.12,14.42,4,10,4S2,5.12,2,6.5c0,1.3,3.18,2.37,7.25,2.49v3.51H7.61c-0.58,0-1.11,0.33-1.35,0.86l-0.8,1.67 C5.25,15.48,5.58,16,6.08,16h0c0.26,0,0.49-0.15,0.61-0.38L7.5,14h5l0.81,1.62c0.12,0.23,0.35,0.38,0.61,0.38h0 c0.5,0,0.83-0.52,0.62-0.97l-0.8-1.67c-0.25-0.52-0.78-0.86-1.35-0.86h-1.64V8.99C14.82,8.87,18,7.8,18,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_indoor\": {\n    \"name\": \"camera_indoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M10.8,3.65l-6,4.5C4.3,8.53,4,9.12,4,9.75v9c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-9c0-0.63-0.3-1.22-0.8-1.6l-6-4.5 C12.49,3.12,11.51,3.12,10.8,3.65z M15.27,15.67L14,15v1c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1l1.27-0.67C15.6,12.15,16,12.39,16,12.77v2.46C16,15.61,15.6,15.85,15.27,15.67z\\\"></path></g>\"\n      }\n    }\n  },\n  \"door_back\": {\n    \"name\": \"door_back\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,19h-1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1 C21,19.45,20.55,19,20,19z M10,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C11,12.55,10.55,13,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bedroom_child\": {\n    \"name\": \"bedroom_child\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"8.5\\\"></rect><path d=\\\"M15.64,12H8.37c-0.48,0-0.87,0.39-0.87,0.87h0.01V14h9v-1.13C16.51,12.39,16.12,12,15.64,12z\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M17.25,17L17.25,17 c-0.41,0-0.75-0.34-0.75-0.75V15.5h-9v0.75C7.5,16.66,7.16,17,6.75,17h0C6.34,17,6,16.66,6,16.25v-3.38c0-1,0.62-1.85,1.5-2.2V9 c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2v1.67c0.88,0.35,1.5,1.2,1.5,2.2v3.38C18,16.66,17.66,17,17.25,17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"door_front\": {\n    \"name\": \"door_front\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,19h-1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1 C21,19.45,20.55,19,20,19z M14,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,12.55,14.55,13,14,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shower\": {\n    \"name\": \"shower\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><circle cx=\\\"8\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M13,5.08V4c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1.08C7.61,5.57,5,8.47,5,12v1c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1 v-1C19,8.47,16.39,5.57,13,5.08z\\\"></path><circle cx=\\\"8\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle></g>\"\n      }\n    }\n  },\n  \"door_sliding\": {\n    \"name\": \"door_sliding\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2h-5.25v16h-1.5V3H6C4.9,3,4,3.9,4,5v14c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h16 c0.55,0,1-0.45,1-1C21,19.45,20.55,19,20,19z M9,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C10,12.55,9.55,13,9,13z M15,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C16,12.55,15.55,13,15,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"light\": {\n    \"name\": \"light\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M13,6.06V4c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2.06c-4.5,0.5-8,4.31-8,8.93C3,16.1,3.9,17,5.01,17L8,17 c0,2.21,1.79,4,4,4s4-1.79,4-4l2.99,0C20.1,17,21,16.1,21,14.99C21,10.37,17.5,6.56,13,6.06z M12,15l-7,0c0-3.86,3.14-7,7-7 s7,3.14,7,7L12,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_restaurant\": {\n    \"name\": \"table_restaurant\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.96,9.73l-1.43-5C20.41,4.3,20.02,4,19.57,4H4.43C3.98,4,3.59,4.3,3.47,4.73l-1.43,5C1.86,10.36,2.34,11,3,11h2.2 l-1.05,7.88C4.07,19.47,4.53,20,5.13,20h0c0.5,0,0.92-0.37,0.98-0.86L6.67,15h10.67l0.55,4.14c0.07,0.49,0.49,0.86,0.98,0.86h0 c0.6,0,1.06-0.53,0.98-1.12L18.8,11H21C21.66,11,22.14,10.36,21.96,9.73z M6.93,13l0.27-2h9.6l0.27,2H6.93z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.93,7.63l-1.2-3C16.58,4.25,16.21,4,15.8,4H4.2C3.79,4,3.42,4.25,3.27,4.63l-1.2,3C1.81,8.29,2.29,9,3,9h1.27 l-1.11,6.13C3.08,15.58,3.42,16,3.88,16h0c0.36,0,0.66-0.26,0.73-0.61L5.23,12h9.32l0.62,3.39c0.06,0.35,0.37,0.61,0.73,0.61h0 c0.46,0,0.81-0.42,0.73-0.87L15.5,9H17C17.71,9,18.19,8.29,17.93,7.63z M5.5,10.5L5.77,9H14l0.27,1.5H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"podcasts\": {\n    \"name\": \"podcasts\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,12c0,0.74-0.4,1.38-1,1.72V21c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-7.28c-0.6-0.35-1-0.98-1-1.72c0-1.1,0.9-2,2-2 S14,10.9,14,12z M10.75,6.13c-2.27,0.46-4.12,2.28-4.61,4.55c-0.4,1.86,0.07,3.62,1.08,4.94c0.35,0.45,1.03,0.47,1.43,0.07 l0.07-0.07c0.34-0.34,0.34-0.87,0.06-1.25c-0.68-0.9-0.98-2.1-0.66-3.37c0.35-1.42,1.52-2.57,2.95-2.88C13.69,7.52,16,9.49,16,12 c0,0.87-0.28,1.67-0.76,2.32c-0.3,0.41-0.29,0.97,0.07,1.33l0,0c0.44,0.44,1.17,0.37,1.54-0.14C17.57,14.53,18,13.31,18,12 C18,8.28,14.61,5.35,10.75,6.13z M10.83,2.07C6.3,2.58,2.61,6.25,2.07,10.78c-0.35,2.95,0.59,5.67,2.32,7.7 c0.37,0.43,1.03,0.46,1.43,0.06l0.05-0.05c0.35-0.35,0.38-0.92,0.05-1.3c-1.56-1.83-2.33-4.37-1.7-7.06 c0.7-3.01,3.18-5.39,6.22-5.97C15.53,3.18,20,7.08,20,12c0,1.96-0.72,3.76-1.9,5.16c-0.34,0.4-0.31,0.98,0.05,1.35l0,0 c0.42,0.42,1.11,0.39,1.49-0.07C21.11,16.7,22,14.46,22,12C22,6.09,16.87,1.38,10.83,2.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"manage_search\": {\n    \"name\": \"manage_search\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M6,9H3C2.45,9,2,8.55,2,8v0c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v0C7,8.55,6.55,9,6,9z M6,12H3c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v0C7,12.45,6.55,12,6,12z M19.88,18.29l-3.12-3.12c-0.86,0.56-1.89,0.88-3,0.82 c-2.37-0.11-4.4-1.96-4.72-4.31C8.6,8.33,11.49,5.5,14.87,6.07c1.95,0.33,3.57,1.85,4,3.78c0.33,1.46,0.01,2.82-0.7,3.9l3.13,3.13 c0.39,0.39,0.39,1.02,0,1.41l0,0C20.91,18.68,20.27,18.68,19.88,18.29z M17,11c0-1.65-1.35-3-3-3s-3,1.35-3,3s1.35,3,3,3 S17,12.65,17,11z M3,19h8c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H3c-0.55,0-1,0.45-1,1v0C2,18.55,2.45,19,3,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bed\": {\n    \"name\": \"bed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v5c0 .55.45 1 1 1s1-.45 1-1v-1h16v1c0 .55.45 1 1 1s1-.45 1-1v-5c0-.88-.39-1.67-1-2.22zM14 7h4c.55 0 1 .45 1 1v2h-6V8c0-.55.45-1 1-1zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm-1 7v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"doorbell\": {\n    \"name\": \"doorbell\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M10.8,3.9l-6,4.5C4.3,8.78,4,9.37,4,10v9c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-9c0-0.63-0.3-1.22-0.8-1.6l-6-4.5 C12.49,3.37,11.51,3.37,10.8,3.9z M12,17.5c-0.55,0-1-0.45-1-1h2C13,17.05,12.55,17.5,12,17.5z M15.5,16h-7C8.22,16,8,15.78,8,15.5 v0C8,15.22,8.22,15,8.5,15H9v-2.34c0-1.54,0.82-2.82,2.25-3.16V9.25c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V9.5 C14.19,9.84,15,11.12,15,12.66V15h0.5c0.28,0,0.5,0.22,0.5,0.5v0C16,15.78,15.78,16,15.5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"camera_outdoor\": {\n    \"name\": \"camera_outdoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,13c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l1.27,0.67 C19.6,16.85,20,16.61,20,16.23v-2.46c0-0.38-0.4-0.62-0.73-0.44L18,14V13z M10.8,3.9l-6,4.5C4.3,8.78,4,9.37,4,10v9 c0,1.1,0.9,2,2,2h13c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6v-9l6-4.5l6,4.5l0,1h2v-1c0-0.63-0.3-1.22-0.8-1.6l-6-4.5 C12.49,3.37,11.51,3.37,10.8,3.9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"yard\": {\n    \"name\": \"yard\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M8,8.22c0-0.86,0.7-1.56,1.56-1.56 c0.33,0,0.64,0.1,0.89,0.28l-0.01-0.12c0-0.86,0.7-1.56,1.56-1.56s1.56,0.7,1.56,1.56l-0.01,0.12c0.26-0.18,0.56-0.28,0.89-0.28 c0.86,0,1.56,0.7,1.56,1.56c0,0.62-0.37,1.16-0.89,1.4C15.63,9.87,16,10.41,16,11.03c0,0.86-0.7,1.56-1.56,1.56 c-0.33,0-0.64-0.11-0.89-0.28l0.01,0.12c0,0.86-0.7,1.56-1.56,1.56s-1.56-0.7-1.56-1.56l0.01-0.12c-0.26,0.18-0.56,0.28-0.89,0.28 C8.7,12.59,8,11.89,8,11.03c0-0.62,0.37-1.16,0.89-1.4C8.37,9.38,8,8.84,8,8.22z M12,19c-2.83,0-5.21-1.97-5.84-4.61 c-0.18-0.74,0.49-1.4,1.23-1.23C10.03,13.79,12,16.17,12,19c0-2.83,1.97-5.21,4.61-5.84c0.74-0.18,1.4,0.49,1.23,1.23 C17.21,17.03,14.83,19,12,19z\\\"></path><circle cx=\\\"12\\\" cy=\\\"9.62\\\" r=\\\"1.56\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"blender\": {\n    \"name\": \"blender\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.13,15.13l1.69-10.98C17.92,3.55,17.45,3,16.83,3H14v0c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v0H5C3.9,3,3,3.9,3,5v4 c0,1.1,0.9,2,2,2h2.23l0.64,4.13C6.74,16.05,6,17.43,6,19v1c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-1 C18,17.43,17.26,16.05,16.13,15.13z M5,9V5h1.31l0.62,4H5z M12,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.55,19,12,19z M14.29,14H9.72L8.33,5h7.34L14.29,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sim_card\": {\n    \"name\": \"sim_card\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19.99 4c0-1.1-.89-2-1.99-2h-7.17c-.53 0-1.04.21-1.42.59L4.59 7.41C4.21 7.79 4 8.3 4 8.83V20c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM8 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm4 4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm0-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 2c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds\": {\n    \"name\": \"earbuds\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.2,3.01C4.44,2.89,3,4.42,3,6.19L3,16c0,2.76,2.24,5,5,5h0c2.76,0,5-2.24,5-5V8c0-1.66,1.34-3,3-3h0c1.66,0,3,1.34,3,3 v7l-0.83,0c-1.61,0-3.06,1.18-3.17,2.79c-0.12,1.69,1.16,3.1,2.8,3.21c1.76,0.12,3.2-1.42,3.2-3.18L21,8c0-2.76-2.24-5-5-5h0 c-2.76,0-5,2.24-5,5v8c0,1.66-1.34,3-3,3l0,0c-1.66,0-3-1.34-3-3V9l0.83,0C7.44,9,8.89,7.82,9,6.21C9.11,4.53,7.83,3.11,6.2,3.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"smart_toy\": {\n    \"name\": \"smart_toy\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M20,9V7c0-1.1-0.9-2-2-2h-3c0-1.66-1.34-3-3-3S9,3.34,9,5H6C4.9,5,4,5.9,4,7v2c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3v4 c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4c1.66,0,3-1.34,3-3C23,10.34,21.66,9,20,9z M7.5,11.5C7.5,10.67,8.17,10,9,10 s1.5,0.67,1.5,1.5S9.83,13,9,13S7.5,12.33,7.5,11.5z M15,17H9c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v0 C16,16.55,15.55,17,15,17z M15,13c-0.83,0-1.5-0.67-1.5-1.5S14.17,10,15,10s1.5,0.67,1.5,1.5S15.83,13,15,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"videogame_asset\": {\n    \"name\": \"videogame_asset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-11 7H8v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H4c-.55 0-1-.45-1-1s.45-1 1-1h2V9c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1zm5.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smartphone\": {\n    \"name\": \"smartphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_for_education\": {\n    \"name\": \"cast_for_education\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19.2 8.56l-4.22-2.3c-.3-.16-.66-.16-.96 0L9.8 8.56c-.35.19-.35.69 0 .88l4.22 2.3c.3.16.66.16.96 0l4.22-2.3c.34-.19.34-.69 0-.88zM21 3H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6.98 9.74L11 11.09v1.41c0 .37.2.7.52.88l2.5 1.36c.3.16.66.16.96 0l2.5-1.36c.32-.18.52-.52.52-.88v-1.41l-3.02 1.65c-.3.16-.66.16-.96 0zM1 18v3h3c0-1.66-1.34-3-3-3zm1.14-3.91c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zm-.04-4.04c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_screen\": {\n    \"name\": \"smart_screen\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M21,5H3C1.9,5,1,5.9,1,7v10c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V7C23,5.9,22.1,5,21,5z M18,7v10H6V7H18z M14,12 c0-0.41-0.34-0.75-0.75-0.75S12.5,11.59,12.5,12s0.34,0.75,0.75,0.75S14,12.41,14,12z M9,12c0-0.41-0.34-0.75-0.75-0.75 S7.5,11.59,7.5,12s0.34,0.75,0.75,0.75S9,12.41,9,12z M16.5,12c0-0.41-0.34-0.75-0.75-0.75S15,11.59,15,12s0.34,0.75,0.75,0.75 S16.5,12.41,16.5,12z M11.5,12c0-0.41-0.34-0.75-0.75-0.75S10,11.59,10,12s0.34,0.75,0.75,0.75S11.5,12.41,11.5,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"tablet\": {\n    \"name\": \"tablet\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z\\\"></path>\"\n      }\n    }\n  },\n  \"security\": {\n    \"name\": \"security\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.19 1.36l-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62 0zM12 11.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z\\\"></path>\"\n      }\n    }\n  },\n  \"laptop_windows\": {\n    \"name\": \"laptop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 5h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"cast\": {\n    \"name\": \"cast\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM2.14 14.09c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zM1 18v3h3c0-1.66-1.34-3-3-3zm1.1-7.95c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z\\\"></path>\"\n      }\n    }\n  },\n  \"device_unknown\": {\n    \"name\": \"device_unknown\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-6-3h2v2h-2zm-1.48-5.81h.13c.33 0 .59-.23.7-.54.24-.69.91-1.21 1.66-1.21.93 0 1.75.82 1.75 1.75 0 1.32-1.49 1.55-2.23 2.82h-.01c-.08.14-.14.29-.2.45-.01.02-.02.03-.02.05-.01.02-.01.04-.01.05-.1.31-.16.66-.16 1.08h1.76c0-.25.04-.47.12-.67.54-1.47 2.77-1.86 2.48-4.18-.19-1.55-1.43-2.84-2.98-3.04-1.77-.23-3.29.78-3.81 2.3-.2.56.23 1.14.82 1.14z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_mic\": {\n    \"name\": \"headset_mic\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.4 1.02C6.62 1.33 3 5.52 3 10.31V17c0 1.66 1.34 3 3 3h1c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h2v1h-6c-.55 0-1 .45-1 1s.45 1 1 1h5c1.66 0 3-1.34 3-3V10c0-5.17-4.36-9.32-9.6-8.98z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_option_key\": {\n    \"name\": \"keyboard_option_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,6L15,6c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-4C15.45,5,15,5.45,15,6z\\\"></path><path d=\\\"M9.58,6C9.22,5.38,8.56,5,7.85,5H4C3.45,5,3,5.45,3,6v0c0,0.55,0.45,1,1,1h3.85l6.35,11c0.36,0.62,1.02,1,1.73,1H20 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-4.07L9.58,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.43,5.75C8.17,5.29,7.67,5,7.13,5H3.75C3.34,5,3,5.34,3,5.75v0C3,6.16,3.34,6.5,3.75,6.5h3.38l4.47,7.75 c0.27,0.46,0.76,0.75,1.3,0.75h3.34c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75h-3.34L8.43,5.75z\\\"></path><path d=\\\"M12,5.75L12,5.75c0,0.41,0.34,0.75,0.75,0.75h3.5C16.66,6.5,17,6.16,17,5.75v0C17,5.34,16.66,5,16.25,5h-3.5 C12.34,5,12,5.34,12,5.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_board_off\": {\n    \"name\": \"developer_board_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M7.83,5H18v10.17L19.83,17H21c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1v-2h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1V9 h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1V5c0-1.1-0.9-2-2-2H5.83L7.83,5z M15,10h-2c-0.06,0-0.13-0.01-0.19-0.02l-0.79-0.79 C12.01,9.13,12,9.06,12,9V8c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1C16,9.55,15.55,10,15,10z M11,8v0.17L9.83,7H10 C10.55,7,11,7.45,11,8z M16,12v1.17L13.83,11H15C15.55,11,16,11.45,16,12z M1.39,2.81L1.39,2.81C1,3.2,1,3.83,1.39,4.22l0.61,0.61 C2,4.89,2,4.94,2,5v14c0,1.1,0.9,2,2,2h14c0.06,0,0.11,0,0.16-0.01l1.61,1.61c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L2.81,2.81C2.42,2.42,1.78,2.42,1.39,2.81z M4,19V6.83l2,2V11c0,0.55,0.45,1,1,1h2.17l1.02,1.02 C10.13,13.01,10.06,13,10,13H7c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-2c0-0.06-0.01-0.13-0.02-0.19 L12,14.83v0.46V16c0,0.55,0.45,1,1,1h0.38h0.8l2,2H4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.12,14h1.13c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H16v-1.75h1.25c0.41,0,0.75-0.34,0.75-0.75v0 c0-0.41-0.34-0.75-0.75-0.75H16V7.5h1.25C17.66,7.5,18,7.16,18,6.75v0C18,6.34,17.66,6,17.25,6H16V4.5C16,3.67,15.33,3,14.5,3H5.12 l1.5,1.5h7.88v7.88L16.12,14z M8.13,6.01c0.45,0.06,0.8,0.41,0.86,0.86L8.13,6.01z M13,7L13,7c0,0.55-0.45,1-1,1h-1 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h1C12.55,6,13,6.45,13,7z M11.12,9H12c0.55,0,1,0.45,1,1v0.88L11.12,9z M17.25,17.25 L2.75,2.75c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l0.35,0.35C2.01,4.27,2,4.38,2,4.5v11C2,16.33,2.67,17,3.5,17 h11c0.12,0,0.23-0.01,0.34-0.04l1.35,1.35c0.29,0.29,0.77,0.29,1.06,0C17.54,18.02,17.54,17.54,17.25,17.25z M3.5,15.5V5.62L5,7.12 V9c0,0.55,0.45,1,1,1h1.88L10,12.12V13c0,0.55,0.45,1,1,1h0.88l1.5,1.5H3.5z M9,12v1c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1 c0-0.55,0.45-1,1-1h2C8.55,11,9,11.45,9,12z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_right\": {\n    \"name\": \"keyboard_double_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5.7,6.71L5.7,6.71c-0.39,0.39-0.39,1.02,0,1.41L9.58,12L5.7,15.88c-0.39,0.39-0.39,1.02,0,1.41l0,0 c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59c0.39-0.39,0.39-1.02,0-1.41L7.12,6.71C6.73,6.32,6.09,6.32,5.7,6.71z\\\"></path><path d=\\\"M12.29,6.71L12.29,6.71c-0.39,0.39-0.39,1.02,0,1.41L16.17,12l-3.88,3.88c-0.39,0.39-0.39,1.02,0,1.41l0,0 c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59C13.32,6.32,12.68,6.32,12.29,6.71z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.53,5.53L4.53,5.53c-0.29,0.29-0.29,0.77,0,1.06L7.94,10l-3.41,3.41c-0.29,0.29-0.29,0.77,0,1.06l0,0 c0.29,0.29,0.77,0.29,1.06,0l3.76-3.76c0.39-0.39,0.39-1.02,0-1.41L5.59,5.53C5.3,5.24,4.82,5.24,4.53,5.53z\\\"></path><path d=\\\"M10.47,5.53L10.47,5.53c-0.29,0.29-0.29,0.77,0,1.06L13.88,10l-3.41,3.41c-0.29,0.29-0.29,0.77,0,1.06l0,0 c0.29,0.29,0.77,0.29,1.06,0l3.76-3.76c0.39-0.39,0.39-1.02,0-1.41l-3.76-3.76C11.24,5.24,10.76,5.24,10.47,5.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_down\": {\n    \"name\": \"keyboard_double_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.29,5.71L17.29,5.71c-0.39-0.39-1.02-0.39-1.41,0L12,9.58L8.11,5.7c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59C17.68,6.73,17.68,6.1,17.29,5.71z\\\"></path><path d=\\\"M17.29,12.3L17.29,12.3c-0.39-0.39-1.02-0.39-1.41,0L12,16.17l-3.88-3.88c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59C17.68,13.32,17.68,12.69,17.29,12.3z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.42,4.58L14.42,4.58c-0.29-0.29-0.77-0.29-1.06,0L9.95,7.99L6.54,4.58c-0.29-0.29-0.77-0.29-1.06,0l0,0 c-0.29,0.29-0.29,0.77,0,1.06l3.76,3.76c0.39,0.39,1.02,0.39,1.41,0l3.76-3.76C14.71,5.35,14.71,4.87,14.42,4.58z\\\"></path><path d=\\\"M14.42,10.52L14.42,10.52c-0.29-0.29-0.77-0.29-1.06,0l-3.41,3.41l-3.41-3.41c-0.29-0.29-0.77-0.29-1.06,0l0,0 c-0.29,0.29-0.29,0.77,0,1.06l3.76,3.76c0.39,0.39,1.02,0.39,1.41,0l3.76-3.76C14.71,11.29,14.71,10.81,14.42,10.52z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_backspace\": {\n    \"name\": \"keyboard_backspace\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 11H6.83l2.88-2.88c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L3.71 11.3c-.39.39-.39 1.02 0 1.41L8.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.83 13H20c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_mac\": {\n    \"name\": \"tablet_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z\\\"></path>\"\n      }\n    }\n  },\n  \"videogame_asset_off\": {\n    \"name\": \"videogame_asset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M20.7,17.87C21.46,17.59,22,16.85,22,16V8c0-1.1-0.9-2-2-2H8.83L20.7,17.87z M17.5,9c0.83,0,1.5,0.67,1.5,1.5 S18.33,12,17.5,12S16,11.33,16,10.5S16.67,9,17.5,9z M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41l1.2,1.2C2.54,6.41,2,7.15,2,8v8c0,1.1,0.9,2,2,2h11.17l3.9,3.9c0.39,0.39,1.02,0.39,1.41,0h0 C20.88,21.51,20.88,20.88,20.49,20.49z M10,13H9v1c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1H6c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h1v-1 c0-0.05,0.01-0.11,0.01-0.16l3.14,3.14C10.11,12.99,10.05,13,10,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M16.5,5H7.12l9.9,9.9c0.57-0.22,0.98-0.79,0.98-1.46V6.56C18,5.7,17.33,5,16.5,5z M14.5,10.25c-0.69,0-1.25-0.56-1.25-1.25 s0.56-1.25,1.25-1.25S15.75,8.31,15.75,9S15.19,10.25,14.5,10.25z M16.54,16.54L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0 c-0.29,0.29-0.29,0.77,0,1.06L2.98,5.1C2.41,5.32,2,5.89,2,6.56v6.88C2,14.3,2.67,15,3.5,15h9.38l2.6,2.6 c0.29,0.29,0.77,0.29,1.06,0h0C16.83,17.31,16.83,16.83,16.54,16.54z M8.55,10.75h-1v1c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75v-1h-1c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75h1v-1c0-0.03,0-0.05,0-0.07l2.57,2.57 C8.6,10.75,8.58,10.75,8.55,10.75z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_android\": {\n    \"name\": \"tablet_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4.5 22h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm5.75-3H4.75V3h14.5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_off\": {\n    \"name\": \"watch_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7c2.76,0,5,2.24,5,5c0,0.64-0.13,1.25-0.35,1.82l1.5,1.5C18.69,14.33,19,13.2,19,12c0-2.22-1.03-4.19-2.64-5.47 l-0.93-3.1C15.17,2.58,14.4,2,13.51,2h-3.02C9.6,2,8.83,2.58,8.57,3.42L8.04,5.21l2.14,2.14C10.75,7.13,11.36,7,12,7z\\\"></path><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l3.75,3.75C5.31,9.67,5,10.8,5,12c0,2.22,1.03,4.19,2.64,5.47l0.93,3.1 C8.83,21.42,9.6,22,10.49,22h3.02c0.88,0,1.66-0.58,1.92-1.43l0.53-1.78l3.11,3.11c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51C3.12,3.12,2.49,3.12,2.1,3.51z M12,17c-2.76,0-5-2.24-5-5c0-0.64,0.13-1.25,0.35-1.82 l6.47,6.47C13.25,16.87,12.64,17,12,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c1.93,0,3.5,1.57,3.5,3.5c0,0.41-0.08,0.8-0.21,1.17l1.14,1.14C14.79,11.62,15,10.83,15,10 c0-1.65-0.81-3.1-2.04-4.01l-0.68-2.84C12.11,2.48,11.51,2,10.82,2H9.18c-0.69,0-1.3,0.48-1.46,1.15L7.25,5.13l1.59,1.59 C9.2,6.58,9.59,6.5,10,6.5z\\\"></path><path d=\\\"M2.4,3.46L2.4,3.46c-0.29,0.29-0.29,0.77,0,1.06l3.17,3.17C5.21,8.38,5,9.17,5,10c0,1.64,0.8,3.07,2.01,3.99l0.71,2.87 C7.88,17.53,8.49,18,9.17,18h1.65c0.69,0,1.29-0.47,1.46-1.14l0.49-1.97l2.71,2.71c0.29,0.29,0.77,0.29,1.06,0l0,0 c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46C3.17,3.17,2.69,3.17,2.4,3.46z M10,13.5c-1.93,0-3.5-1.57-3.5-3.5 c0-0.41,0.08-0.8,0.21-1.17l4.45,4.45C10.8,13.42,10.41,13.5,10,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_hide\": {\n    \"name\": \"keyboard_hide\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm8 7H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm1-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-6.65 14.65 2.79-2.79a.5.5 0 00-.35-.85H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.19.19.51.19.7 0z\\\"></path>\"\n      }\n    }\n  },\n  \"home_max\": {\n    \"name\": \"home_max\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M19,5H5C2.79,5,1,6.79,1,9v5c0,2.21,1.79,4,4,4h2c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1h2c2.21,0,4-1.79,4-4V9 C23,6.79,21.21,5,19,5z M21,14c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_return\": {\n    \"name\": \"keyboard_return\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 8v3H5.83l2.88-2.88c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L2.71 11.3c-.39.39-.39 1.02 0 1.41L7.3 17.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.83 13H20c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"computer\": {\n    \"name\": \"computer\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 6h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"memory\": {\n    \"name\": \"memory\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M14 9h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 4h-2v-2h2v2zm8-3c0-.55-.45-1-1-1h-1V7c0-1.1-.9-2-2-2h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v1H7c-1.1 0-2 .9-2 2v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2H4c-.55 0-1 .45-1 1s.45 1 1 1h1v2c0 1.1.9 2 2 2h2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2c1.1 0 2-.9 2-2v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1zm-5 7H8c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_capslock\": {\n    \"name\": \"keyboard_capslock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 8.41l3.89 3.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.71 6.3c-.39-.39-1.02-.39-1.41 0l-4.6 4.59c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 8.41zM7 18h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"tv\": {\n    \"name\": \"tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"adf_scanner\": {\n    \"name\": \"adf_scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,12h-1V6c0-1.1-0.9-2-2-2H8C6.9,4,6,4.9,6,6v6H5c-1.66,0-3,1.34-3,3v3c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3 C22,13.34,20.66,12,19,12z M16,12H8V6h8V12z M18,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,16.55,18.55,17,18,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,9.5h-1v-4C15,4.67,14.33,4,13.5,4h-7C5.67,4,5,4.67,5,5.5v4H4c-1.1,0-2,0.9-2,2v3C2,15.33,2.67,16,3.5,16h13 c0.83,0,1.5-0.67,1.5-1.5v-3C18,10.4,17.1,9.5,16,9.5z M13.5,9.5h-7v-4h7V9.5z M14.75,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,13.16,15.16,13.5,14.75,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop\": {\n    \"name\": \"laptop\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zM5 6h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"laptop_chromebook\": {\n    \"name\": \"laptop_chromebook\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M23 18h-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1zm-9.5 0h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm6.5-3H4V6c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v9z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_group\": {\n    \"name\": \"speaker_group\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path><circle cx=\\\"14\\\" cy=\\\"12.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M5 5c-.55 0-1 .45-1 1v15c0 1.1.89 2 2 2h9c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_iphone\": {\n    \"name\": \"phone_iphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard\": {\n    \"name\": \"keyboard\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm8 7H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm1-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker\": {\n    \"name\": \"speaker\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"gamepad\": {\n    \"name\": \"gamepad\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15 7.29V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4.29c0 .13.05.26.15.35l2.5 2.5c.2.2.51.2.71 0l2.5-2.5c.09-.09.14-.21.14-.35zM7.29 9H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4.29c.13 0 .26-.05.35-.15l2.5-2.5c.2-.2.2-.51 0-.71l-2.5-2.5C7.55 9.05 7.43 9 7.29 9zM9 16.71V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.29c0-.13-.05-.26-.15-.35l-2.5-2.5c-.2-.2-.51-.2-.71 0l-2.5 2.5c-.09.09-.14.21-.14.35zm7.35-7.56l-2.5 2.5c-.2.2-.2.51 0 .71l2.5 2.5c.09.09.22.15.35.15H21c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4.29c-.14-.01-.26.04-.36.14z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_up\": {\n    \"name\": \"keyboard_double_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.7,18.29L6.7,18.29c0.39,0.39,1.02,0.39,1.41,0L12,14.42l3.88,3.88c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59c-0.39-0.39-1.02-0.39-1.41,0L6.7,16.88C6.31,17.27,6.31,17.9,6.7,18.29z\\\"></path><path d=\\\"M6.7,11.7L6.7,11.7c0.39,0.39,1.02,0.39,1.41,0L12,7.83l3.88,3.88c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59c-0.39-0.39-1.02-0.39-1.41,0L6.7,10.29C6.31,10.68,6.31,11.31,6.7,11.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.48,15.42L5.48,15.42c0.29,0.29,0.77,0.29,1.06,0l3.41-3.41l3.41,3.41c0.29,0.29,0.77,0.29,1.06,0l0,0 c0.29-0.29,0.29-0.77,0-1.06l-3.76-3.76c-0.39-0.39-1.02-0.39-1.41,0l-3.76,3.76C5.19,14.65,5.19,15.13,5.48,15.42z\\\"></path><path d=\\\"M5.48,9.48L5.48,9.48c0.29,0.29,0.77,0.29,1.06,0l3.41-3.41l3.41,3.41c0.29,0.29,0.77,0.29,1.06,0l0,0 c0.29-0.29,0.29-0.77,0-1.06l-3.76-3.76c-0.39-0.39-1.02-0.39-1.41,0L5.48,8.42C5.19,8.71,5.19,9.19,5.48,9.48z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"watch\": {\n    \"name\": \"watch\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 12c0-2.54-1.19-4.81-3.04-6.27l-.68-4.06C16.12.71 15.28 0 14.31 0H9.7c-.98 0-1.82.71-1.98 1.67l-.67 4.06C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27l.67 4.06c.16.96 1 1.67 1.98 1.67h4.61c.98 0 1.81-.71 1.97-1.67l.68-4.06C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_not_supported\": {\n    \"name\": \"browser_not_supported\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z\\\"></path><path d=\\\"M3.86,3.95c-0.35-0.35-0.92-0.35-1.27,0c-0.35,0.35-0.35,0.92,0,1.27L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l1.42,1.42 c0.35,0.35,0.92,0.35,1.27,0c0.35-0.35,0.35-0.92,0-1.27L3.86,3.95z M5,18V7.64L15.36,18H5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,5v8.38l1,1V5c0-0.55-0.45-1-1-1H5.62l1,1H15z\\\"></path><path d=\\\"M4.09,3.89c-0.2-0.2-0.51-0.2-0.71,0c-0.2,0.2-0.2,0.51,0,0.71L4,5.21V15c0,0.55,0.45,1,1,1h9.79l0.61,0.61 c0.2,0.2,0.51,0.2,0.71,0s0.2-0.51,0-0.71L4.09,3.89z M5,15V6.21L13.79,15H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dock\": {\n    \"name\": \"dock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M9 23h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm7-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"device_hub\": {\n    \"name\": \"device_hub\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 16l-4-4V8.82c1.35-.49 2.26-1.89 1.93-3.46-.25-1.18-1.23-2.12-2.42-2.32C10.63 2.73 9 4.17 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H4c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2.05l4-4.2 4 4.2V20c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds_battery\": {\n    \"name\": \"earbuds_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,7h-1l0,0V6.5C20,6.22,19.78,6,19.5,6l-1,0C18.22,6,18,6.22,18,6.5V7l0,0h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4 c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M14,9.38C14,7.51,12.49,6,10.62,6S7.25,7.51,7.25,9.38v5.25 c0,1.04-0.84,1.88-1.88,1.88S3.5,15.66,3.5,14.62v-4.7C3.66,9.97,3.83,10,4,10c1.1,0,2-0.9,2-2S5.1,6,4,6S2,6.9,2,8 c0,0.04,0,6.62,0,6.62C2,16.49,3.51,18,5.38,18s3.38-1.51,3.38-3.38V9.38c0-1.04,0.84-1.88,1.88-1.88s1.88,0.84,1.88,1.88v4.7 C12.34,14.03,12.17,14,12,14c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2C14,15.96,14,9.38,14,9.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headphones\": {\n    \"name\": \"headphones\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,12v7c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-4c0-1.1-0.9-2-2-2H5v-1c0-3.87,3.13-7,7-7s7,3.13,7,7v1h-2c-1.1,0-2,0.9-2,2v4 c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-7c0-4.97-4.03-9-9-9S3,7.03,3,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"headphones_battery\": {\n    \"name\": \"headphones_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,7h-1V6.5C20,6.22,19.78,6,19.5,6h-1C18.22,6,18,6.22,18,6.5V7h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4 c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z\\\"></path><path d=\\\"M8,6c-3.31,0-6,2.69-6,6v4c0,1.1,0.9,2,2,2s2-0.9,2-2v-1c0-1.1-0.9-2-2-2H3.5v-1c0-2.48,2.02-4.5,4.5-4.5 s4.5,2.02,4.5,4.5v1H12c-1.1,0-2,0.9-2,2v1c0,1.1,0.9,2,2,2s2-0.9,2-2v-4C14,8.69,11.31,6,8,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"start\": {\n    \"name\": \"start\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.29,17.29c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59c0.39-0.39,0.39-1.02,0-1.41L16.7,6.7c-0.39-0.39-1.02-0.39-1.41,0 c-0.38,0.39-0.39,1.03,0,1.42L18.17,11H7c-0.55,0-1,0.45-1,1s0.45,1,1,1h11.17l-2.88,2.88C14.9,16.27,14.9,16.9,15.29,17.29z M3,18 c0.55,0,1-0.45,1-1V7c0-0.55-0.45-1-1-1S2,6.45,2,7v10C2,17.55,2.45,18,3,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.25,15C3.66,15,4,14.66,4,14.25v-8.5C4,5.34,3.66,5,3.25,5C2.84,5,2.5,5.34,2.5,5.75v8.5C2.5,14.66,2.84,15,3.25,15z M12.97,13.47c-0.29-0.29-0.29-0.77,0-1.06l1.66-1.66H6.25c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75h8.38l-1.66-1.66 c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l2.94,2.94c0.29,0.29,0.29,0.77,0,1.06l-2.94,2.94 C13.74,13.76,13.26,13.76,12.97,13.47z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_windows\": {\n    \"name\": \"desktop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"toys\": {\n    \"name\": \"toys\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M22,14c0-1.95-1.4-3.57-3.25-3.92L17.4,6.05C17,4.82,15.85,4,14.56,4H9.44C8.15,4,7,4.82,6.6,6.05L5.81,8.4L4.41,7 l0.29-0.29c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2,2c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 L3,8.41l1.79,1.79C3.18,10.72,2,12.22,2,14c0,1.5,0.83,2.79,2.05,3.48C4.28,18.9,5.51,20,7,20c1.3,0,2.4-0.84,2.82-2h4.37 c0.41,1.16,1.51,2,2.82,2c1.49,0,2.72-1.1,2.95-2.52C21.17,16.79,22,15.5,22,14z M7,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S7.55,18,7,18z M11,10H7.41L7.39,9.98l1.1-3.3C8.63,6.27,9.01,6,9.44,6H11V10z M13,6h1.56c0.43,0,0.81,0.27,0.95,0.68L16.61,10H13 V6z M17,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,18,17,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.55,8.53l-0.83-2.49c-0.31-0.92-1.17-1.54-2.13-1.54H8.41c-0.97,0-1.83,0.62-2.13,1.54L5.73,7.67l-1-1l0.15-0.15 c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L2.47,6.82c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.14-0.14 l0.99,0.99C3.69,9.15,3,10.12,3,11.25c0,0.98,0.51,1.83,1.28,2.32c0.16,1.09,1.09,1.93,2.22,1.93c0.98,0,1.8-0.63,2.11-1.5h2.78 c0.31,0.87,1.14,1.5,2.11,1.5c1.13,0,2.06-0.84,2.22-1.93c0.77-0.49,1.28-1.34,1.28-2.32C17,9.84,15.92,8.68,14.55,8.53z M6.5,14 c-0.41,0-0.75-0.34-0.75-0.75S6.09,12.5,6.5,12.5s0.75,0.34,0.75,0.75S6.91,14,6.5,14z M9.25,8.5H7.04L7.7,6.51 C7.81,6.21,8.09,6,8.41,6h0.84V8.5z M10.75,8.5V6h0.84c0.32,0,0.61,0.21,0.71,0.51l0.66,1.99H10.75z M13.5,14 c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75S13.91,14,13.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_board\": {\n    \"name\": \"developer_board\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M22 8c0-.55-.45-1-1-1h-1V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V9h1c.55 0 1-.45 1-1zm-5 11H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM6.5 13h4c.28 0 .5.22.5.5v3c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5v-3c0-.28.22-.5.5-.5zm6-6h3c.28 0 .5.22.5.5v2c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5v-2c0-.28.22-.5.5-.5zm-6 0h4c.28 0 .5.22.5.5v4c0 .28-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5v-4c0-.28.22-.5.5-.5zm6 4h3c.28 0 .5.22.5.5v5c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"home_mini\": {\n    \"name\": \"home_mini\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,5C4.19,5,2,9.48,2,12c0,3.86,3.13,7,6.99,7h6.02c2.69,0,6.99-2.08,6.99-7C22,12,22,5,12,5z M12,7c7.64,0,7.99,4.51,8,5 H4C4,11.8,4.09,7,12,7z M14.86,17H9.14c-2.1,0-3.92-1.24-4.71-3h15.15C18.78,15.76,16.96,17,14.86,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_control_key\": {\n    \"name\": \"keyboard_control_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5.71,12.71L5.71,12.71c0.39,0.39,1.02,0.39,1.41,0L12,7.83l4.88,4.88c0.39,0.39,1.02,0.39,1.41,0v0 c0.39-0.39,0.39-1.02,0-1.41l-5.59-5.59c-0.39-0.39-1.02-0.39-1.41,0l-5.59,5.59C5.32,11.68,5.32,12.32,5.71,12.71z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.53,10.53L5.53,10.53c0.29,0.29,0.77,0.29,1.06,0L10,7.12l3.41,3.41c0.29,0.29,0.77,0.29,1.06,0l0,0 c0.29-0.29,0.29-0.77,0-1.06l-4.12-4.12c-0.2-0.2-0.51-0.2-0.71,0L5.53,9.47C5.24,9.76,5.24,10.24,5.53,10.53z\\\"></path></g>\"\n      }\n    }\n  },\n  \"connected_tv\": {\n    \"name\": \"connected_tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-1h4c1.1,0,1.99-0.9,1.99-2L22,5 C22,3.9,21.1,3,20,3z M20,17H4V5h16V17z M7,15.97C6.98,14.89,6.11,14.02,5.03,14H5v2h2V15.97z M5.62,12.55 c1.44,0.26,2.58,1.4,2.83,2.84C8.51,15.75,8.82,16,9.18,16h0c0.46,0,0.82-0.41,0.75-0.86c-0.36-2.07-1.99-3.7-4.06-4.06 C5.41,11,5,11.36,5,11.82v0C5,12.19,5.26,12.49,5.62,12.55z M5.64,9.53c3.07,0.3,5.52,2.75,5.83,5.82 c0.04,0.37,0.37,0.65,0.74,0.65c0.45,0,0.79-0.4,0.75-0.85c-0.4-3.74-3.37-6.71-7.11-7.1C5.4,8,5,8.34,5,8.79 C5,9.16,5.27,9.5,5.64,9.53z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_down\": {\n    \"name\": \"keyboard_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8.12 9.29L12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7c-.39-.39-.39-1.02 0-1.41.39-.38 1.03-.39 1.42 0z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_connected\": {\n    \"name\": \"cast_connected\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 16V8c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v.63c3.96 1.28 7.09 4.41 8.37 8.37H18c.55 0 1-.45 1-1zm2-13H3c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-.62-.19-1.2-.51-1.68C2.95 18.52 2.04 18 1 18zm1.14-3.91c-.6-.1-1.14.39-1.14 1 0 .49.36.9.85.98 2.08.36 3.72 2 4.08 4.08.08.49.49.85.98.85.61 0 1.09-.54 1-1.14-.48-2.96-2.82-5.29-5.77-5.77zm-.04-4.04c-.59-.05-1.1.41-1.1 1 0 .51.38.94.88.99 4.27.41 7.67 3.81 8.08 8.08.05.5.48.87.99.87.6 0 1.06-.52 1-1.11-.53-5.19-4.66-9.31-9.85-9.83z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_mac\": {\n    \"name\": \"desktop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-1.63 2.45c-.44.66.03 1.55.83 1.55h5.6c.8 0 1.28-.89.83-1.55L14 18h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v9z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_display\": {\n    \"name\": \"smart_display\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M9.5,14.67V9.33 c0-0.79,0.88-1.27,1.54-0.84l4.15,2.67c0.61,0.39,0.61,1.29,0,1.68l-4.15,2.67C10.38,15.94,9.5,15.46,9.5,14.67z\\\"></path></g>\"\n      }\n    }\n  },\n  \"point_of_sale\": {\n    \"name\": \"point_of_sale\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M16.5,6h-9C7.22,6,7,5.78,7,5.5v-1 C7,4.22,7.22,4,7.5,4h9C16.78,4,17,4.22,17,4.5v1C17,5.78,16.78,6,16.5,6z M20,22H4c-1.1,0-2-0.9-2-2v-1h20v1 C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18h20L18.53,10.19z M9.5,16h-1 C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1 C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,3H6C5.45,3,5,3.45,5,4v1c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V4C15,3.45,14.55,3,14,3z M13.5,5h-7 C6.22,5,6,4.78,6,4.5v0C6,4.22,6.22,4,6.5,4h7C13.78,4,14,4.22,14,4.5v0C14,4.78,13.78,5,13.5,5z M16,17H4c-0.55,0-1-0.45-1-1l0,0 l0-1h14v1l0,0C17,16.55,16.55,17,16,17z M14.26,7.61C14.1,7.24,13.74,7,13.34,7H6.66C6.26,7,5.9,7.24,5.74,7.61L3,14h14L14.26,7.61 z M7.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5C8.25,12.78,8.03,13,7.75,13z M7.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5S6.97,10,7.25,10h0.5c0.28,0,0.5,0.22,0.5,0.5S8.03,11,7.75,11z M7.75,9h-0.5 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5C8.25,8.78,8.03,9,7.75,9z M10.25,13h-0.5 c-0.28,0-0.5-0.22-0.5-0.5S9.47,12,9.75,12h0.5c0.28,0,0.5,0.22,0.5,0.5S10.53,13,10.25,13z M10.25,11h-0.5 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5C10.75,10.78,10.53,11,10.25,11z M10.25,9h-0.5 c-0.28,0-0.5-0.22-0.5-0.5S9.47,8,9.75,8h0.5c0.28,0,0.5,0.22,0.5,0.5S10.53,9,10.25,9z M12.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5S13.03,13,12.75,13z M12.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5 c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5C13.25,10.78,13.03,11,12.75,11z M12.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5 S11.97,8,12.25,8h0.5c0.28,0,0.5,0.22,0.5,0.5S13.03,9,12.75,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"scanner\": {\n    \"name\": \"scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19.8 10.7L5.15 5.35c-.52-.19-1.1.08-1.3.6-.19.53.08 1.11.6 1.3L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm11 0h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_off\": {\n    \"name\": \"phonelink_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 19V9c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93zM21 6c.55 0 1-.45 1-1s-.45-1-1-1H7.39l2 2H21zM1.36 2.21c-.39.39-.39 1.02 0 1.41l1.11 1.11C2.18 5.08 2 5.52 2 6v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20h16.23l1.64 1.64c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.77 2.21c-.39-.39-1.02-.39-1.41 0zM4 17V6.27L14.73 17H4z\\\"></path>\"\n      }\n    }\n  },\n  \"power_input\": {\n    \"name\": \"power_input\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M2 10c0 .55.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm1 5h3c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm7 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm7 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_android\": {\n    \"name\": \"phone_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2.5 20h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5s-.22.5-.5.5zm3.5-3H7V4h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_updated\": {\n    \"name\": \"browser_updated\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M15,3c0.55,0,1,0.45,1,1v6h1.59c0.89,0,1.34,1.08,0.71,1.71l-2.59,2.59c-0.39,0.39-1.02,0.39-1.41,0l-2.59-2.59 C11.08,11.08,11.52,10,12.41,10H14V4C14,3.45,14.45,3,15,3z M6,19.59C6,20.37,6.63,21,7.41,21h9.17c0.78,0,1.41-0.63,1.41-1.41 c0-0.72-0.44-1.03-1-1.59h3c1.1,0,2-0.9,2-2v-2c0-0.55-0.45-1-1-1s-1,0.45-1,1v2H4V5l7,0c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1L4,3 C2.9,3,2,3.9,2,5v11c0,1.1,0.9,2,2,2h3C6.45,18.55,6,18.87,6,19.59z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M15.29,9l-2.04,0V3.75C13.25,3.34,12.91,3,12.5,3h0c-0.41,0-0.75,0.34-0.75,0.75V9L9.71,9C9.26,9,9.04,9.54,9.35,9.85 l2.79,2.79c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79C15.96,9.54,15.74,9,15.29,9z M9.5,4.5h-6v9h13v-2.25c0-0.41,0.34-0.75,0.75-0.75 S18,10.84,18,11.25v2.25c0,0.83-0.67,1.5-1.5,1.5H13l0.29,0.29c0.63,0.63,0.18,1.71-0.71,1.71H7.42c-0.89,0-1.34-1.08-0.71-1.71 L7,15H3.5C2.67,15,2,14.33,2,13.5v-9C2,3.67,2.67,3,3.5,3h6c0.41,0,0.75,0.34,0.75,0.75S9.91,4.5,9.5,4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_alt\": {\n    \"name\": \"keyboard_alt\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M21,4H3C1.9,4,1,4.9,1,6v13c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M7,12v2H5v-2H7z M5,10V8h2v2H5z M11,12v2H9v-2H11z M9,10V8h2v2H9z M16,16.5L16,16.5c0,0.28-0.22,0.5-0.5,0.5h-7C8.22,17,8,16.78,8,16.5l0,0 C8,16.22,8.22,16,8.5,16h7C15.78,16,16,16.22,16,16.5z M15,12v2h-2v-2H15z M13,10V8h2v2H13z M17,14v-2h2v2H17z M19,10h-2V8h2V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headset\": {\n    \"name\": \"headset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.4 1.02C6.62 1.33 3 5.52 3 10.31V17c0 1.66 1.34 3 3 3h1c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h1c1.66 0 3-1.34 3-3v-7c0-5.17-4.36-9.32-9.6-8.98z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_voice\": {\n    \"name\": \"keyboard_voice\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm6.08-3c-.42 0-.77.3-.83.71-.37 2.61-2.72 4.39-5.25 4.39s-4.88-1.77-5.25-4.39c-.06-.41-.42-.71-.83-.71-.52 0-.92.46-.85.97.46 2.97 2.96 5.3 5.93 5.75V21c0 .55.45 1 1 1s1-.45 1-1v-2.28c2.96-.43 5.47-2.78 5.93-5.75.07-.51-.33-.97-.85-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"mouse\": {\n    \"name\": \"mouse\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_tab\": {\n    \"name\": \"keyboard_tab\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12.29 8.12L15.17 11H2c-.55 0-1 .45-1 1s.45 1 1 1h13.17l-2.88 2.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L13.7 6.7c-.39-.39-1.02-.39-1.41 0-.38.39-.39 1.03 0 1.42zM20 7v10c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_command_key\": {\n    \"name\": \"keyboard_command_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.5,3C15.57,3,14,4.57,14,6.5V8h-4V6.5C10,4.57,8.43,3,6.5,3S3,4.57,3,6.5S4.57,10,6.5,10H8v4H6.5 C4.57,14,3,15.57,3,17.5S4.57,21,6.5,21s3.5-1.57,3.5-3.5V16h4v1.5c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S19.43,14,17.5,14H16 v-4h1.5c1.93,0,3.5-1.57,3.5-3.5S19.43,3,17.5,3L17.5,3z M16,8V6.5C16,5.67,16.67,5,17.5,5S19,5.67,19,6.5S18.33,8,17.5,8H16L16,8 z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5V8H6.5L6.5,8z M10,14v-4h4v4H10L10,14z M17.5,19c-0.83,0-1.5-0.67-1.5-1.5 V16h1.5c0.83,0,1.5,0.67,1.5,1.5S18.33,19,17.5,19L17.5,19z M6.5,19C5.67,19,5,18.33,5,17.5S5.67,16,6.5,16H8v1.5 C8,18.33,7.33,19,6.5,19L6.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.25,11.5H13v-3h1.25C15.77,8.5,17,7.27,17,5.75S15.77,3,14.25,3S11.5,4.23,11.5,5.75V7h-3V5.75C8.5,4.23,7.27,3,5.75,3 S3,4.23,3,5.75S4.23,8.5,5.75,8.5H7v3H5.75C4.23,11.5,3,12.73,3,14.25S4.23,17,5.75,17s2.75-1.23,2.75-2.75V13h3v1.25 c0,1.52,1.23,2.75,2.75,2.75S17,15.77,17,14.25S15.77,11.5,14.25,11.5z M13,5.75c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S14.94,7,14.25,7H13V5.75z M5.75,7C5.06,7,4.5,6.44,4.5,5.75S5.06,4.5,5.75,4.5S7,5.06,7,5.75V7H5.75z M7,14.25 c0,0.69-0.56,1.25-1.25,1.25c-0.69,0-1.25-0.56-1.25-1.25S5.06,13,5.75,13H7h0V14.25z M8.5,11.5L8.5,11.5l0-3h3v3H8.5z M14.25,15.5 c-0.69,0-1.25-0.56-1.25-1.25V13h1.25c0.69,0,1.25,0.56,1.25,1.25S14.94,15.5,14.25,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop_mac\": {\n    \"name\": \"laptop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM5 5h14c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1zm7 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"router\": {\n    \"name\": \"router\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.45 5.55c.19.19.5.21.72.04C13.3 4.69 14.65 4.2 16 4.2s2.7.49 3.84 1.39c.21.17.52.15.72-.04l.04-.05c.22-.22.21-.59-.03-.8C19.24 3.57 17.62 3 16 3s-3.24.57-4.57 1.7c-.24.21-.26.57-.03.8l.05.05zm1.7.76c-.25.2-.26.58-.04.8l.04.04c.2.2.5.2.72.04.63-.48 1.38-.69 2.13-.69s1.5.21 2.13.68c.22.17.53.16.72-.04l.04-.04c.23-.23.21-.6-.04-.8-.83-.64-1.84-1-2.85-1s-2.02.36-2.85 1.01zM19 13h-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v3H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_off\": {\n    \"name\": \"headset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,4c3.87,0,7,3.13,7,7v1h-2c-0.6,0-1.13,0.27-1.49,0.68L21,18.17V11c0-4.97-4.03-9-9-9C9.98,2,8.12,2.67,6.62,3.8 l1.43,1.43C9.17,4.45,10.53,4,12,4z\\\"></path><path d=\\\"M21.19,21.19L2.81,2.81c-0.39-0.39-1.02-0.39-1.41,0C1,3.2,1,3.83,1.39,4.22l2.63,2.63C3.37,8.09,3,9.5,3,11v7 c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-4c0-1.1-0.9-2-2-2H5v-1c0-0.94,0.19-1.83,0.52-2.65L15,17.83V18c0,1.1,0.9,2,2,2h0.17l1,1H13 c-0.55,0-1,0.45-1,1s0.45,1,1,1h6c0.36,0,0.68-0.1,0.97-0.26c0.38,0.23,0.89,0.2,1.22-0.13C21.58,22.22,21.58,21.58,21.19,21.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"monitor\": {\n    \"name\": \"monitor\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v11c0,1.1,0.9,2,2,2h3c-0.55,0.55-1,0.87-1,1.59v0C6,20.37,6.63,21,7.41,21h9.17 c0.78,0,1.41-0.63,1.41-1.41v0c0-0.72-0.44-1.03-1-1.59h3c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,16H4V5h16V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"devices_other\": {\n    \"name\": \"devices_other\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V7zm9 5h-2c-.55 0-1 .45-1 1v.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V13c0-.55-.45-1-1-1zm-1 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_up\": {\n    \"name\": \"keyboard_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8.12 14.71L12 10.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 8.71c-.39-.39-1.02-.39-1.41 0L6.7 13.3c-.39.39-.39 1.02 0 1.41.39.38 1.03.39 1.42 0z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_left\": {\n    \"name\": \"keyboard_double_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.29,17.29L18.29,17.29c0.39-0.39,0.39-1.02,0-1.41L14.42,12l3.88-3.88c0.39-0.39,0.39-1.02,0-1.41l0,0 c-0.39-0.39-1.02-0.39-1.41,0l-4.59,4.59c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59C17.27,17.68,17.9,17.68,18.29,17.29z\\\"></path><path d=\\\"M11.7,17.29L11.7,17.29c0.39-0.39,0.39-1.02,0-1.41L7.83,12l3.88-3.88c0.39-0.39,0.39-1.02,0-1.41l0,0 c-0.39-0.39-1.02-0.39-1.41,0l-4.59,4.59c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59C10.68,17.68,11.31,17.68,11.7,17.29z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.37,14.47L15.37,14.47c0.29-0.29,0.29-0.77,0-1.06L11.96,10l3.41-3.41c0.29-0.29,0.29-0.77,0-1.06l0,0 c-0.29-0.29-0.77-0.29-1.06,0l-3.76,3.76c-0.39,0.39-0.39,1.02,0,1.41l3.76,3.76C14.6,14.76,15.07,14.76,15.37,14.47z\\\"></path><path d=\\\"M9.43,14.47L9.43,14.47c0.29-0.29,0.29-0.77,0-1.06L6.02,10l3.41-3.41c0.29-0.29,0.29-0.77,0-1.06l0,0 c-0.29-0.29-0.77-0.29-1.06,0L4.6,9.29c-0.39,0.39-0.39,1.02,0,1.41l3.76,3.76C8.66,14.76,9.13,14.76,9.43,14.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_right\": {\n    \"name\": \"keyboard_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M9.29 15.88L13.17 12 9.29 8.12c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0l4.59 4.59c.39.39.39 1.02 0 1.41L10.7 17.3c-.39.39-1.02.39-1.41 0-.38-.39-.39-1.03 0-1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink\": {\n    \"name\": \"phonelink\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20h11c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H4V7zm19 1h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_left\": {\n    \"name\": \"keyboard_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M14.71 15.88L10.83 12l3.88-3.88c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.39.39-1.03 0-1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3_select\": {\n    \"name\": \"timer_3_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,12L21,12c0,0.55-0.45,1-1,1h-3v1h2.5c0.83,0,1.5,0.68,1.5,1.5v2c0,0.83-0.67,1.5-1.5,1.5H16c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h3v-1h-2.5c-0.82,0-1.5-0.68-1.5-1.5v-2c0-0.82,0.68-1.5,1.5-1.5H20C20.55,11,21,11.45,21,12z M4,6.5L4,6.5 C4,7.33,4.67,8,5.5,8H10v2.5H5.5C4.67,10.5,4,11.17,4,12v0c0,0.83,0.67,1.5,1.5,1.5H10V16H5.5C4.67,16,4,16.67,4,17.5v0 C4,18.33,4.67,19,5.5,19H10c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8c0-1.66-1.34-3-3-3H5.5 C4.67,5,4,5.67,4,6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_no_sim\": {\n    \"name\": \"signal_cellular_no_sim\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5c0-1.1-.9-2-2-2h-6.17c-.53 0-1.04.21-1.42.59L7.95 5.06 19 16.11V5zM3.09 4.44c-.39.39-.39 1.02 0 1.41L5 7.78V19c0 1.11.9 2 2 2h11.23l.91.91c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.5 4.44c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"data_usage\": {\n    \"name\": \"data_usage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3.87v.02c0 .67.45 1.23 1.08 1.43C16.93 6.21 19 8.86 19 12c0 .52-.06 1.01-.17 1.49-.14.64.12 1.3.69 1.64l.01.01c.86.5 1.98.05 2.21-.91.17-.72.26-1.47.26-2.23 0-4.5-2.98-8.32-7.08-9.57-.95-.29-1.92.44-1.92 1.44zm-2.06 15.05c-2.99-.43-5.42-2.86-5.86-5.84-.54-3.6 1.66-6.77 4.83-7.76.64-.19 1.09-.76 1.09-1.43v-.02c0-1-.97-1.73-1.93-1.44-4.51 1.38-7.66 5.86-6.98 10.96.59 4.38 4.13 7.92 8.51 8.51 3.14.42 6.04-.61 8.13-2.53.74-.68.61-1.89-.26-2.39-.58-.34-1.3-.23-1.8.22-1.47 1.34-3.51 2.05-5.73 1.72z\\\"></path>\"\n      }\n    }\n  },\n  \"mobiledata_off\": {\n    \"name\": \"mobiledata_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,7h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79c-0.2-0.2-0.51-0.2-0.71,0l-2.79,2.79C11.54,6.46,11.76,7,12.21,7H14 v4.17l2,2V7z\\\"></path><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l5.9,5.9v6.18l-1.79,0c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.78 c0.2,0.19,0.51,0.19,0.71,0l2.79-2.79c0.32-0.32,0.09-0.85-0.35-0.85l-1.79,0v-4.18l9.07,9.07c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51C3.12,3.12,2.49,3.12,2.1,3.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_full\": {\n    \"name\": \"battery_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_0_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,18L21,18c0.55,0,1-0.45,1-1v-6c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v6C20,17.55,20.45,18,21,18z M21,22L21,22 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C20,21.55,20.45,22,21,22z M18,20v2H2L22,2v6h-2V6.83L6.83,20H18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,9.75v4.5c0,0.41,0.34,0.75,0.75,0.75l0,0c0.41,0,0.75-0.34,0.75-0.75v-4.5C18,9.34,17.66,9,17.25,9l0,0 C16.84,9,16.5,9.34,16.5,9.75z M4.41,18H15v-1.5H5.62L16.5,5.62V7.5H18V4.41c0-0.89-1.08-1.34-1.71-0.71L3.71,16.29 C3.08,16.92,3.52,18,4.41,18z M17.25,18L17.25,18c-0.41,0-0.75-0.34-0.75-0.75l0,0c0-0.41,0.34-0.75,0.75-0.75l0,0 c0.41,0,0.75,0.34,0.75,0.75l0,0C18,17.66,17.66,18,17.25,18z\\\"></path>\"\n      }\n    }\n  },\n  \"graphic_eq\": {\n    \"name\": \"graphic_eq\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 18c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1zm4 4c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1s-1 .45-1 1v18c0 .55.45 1 1 1zm-8-8c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1zm12 4c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1zm3-7v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_friendly\": {\n    \"name\": \"mobile_friendly\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H9c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-1.92-1.92c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l2.47 2.47c.39.39 1.02.39 1.41 0l5.85-5.85c.35-.35.35-.92 0-1.27s-.92-.35-1.27 0l-5.27 5.3z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_off\": {\n    \"name\": \"media_bluetooth_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,6.17V5c0-1.1,0.9-2,2-2h2c1.1,0,2,0.9,2,2v0c0,1.1-0.9,2-2,2h-2v1.17L9,6.17z M19.42,15l2.18,2.17 c0.22,0.22,0.22,0.58,0,0.8l0,0c-0.22,0.22-0.58,0.22-0.8,0l-5.98-5.98c-0.22-0.22-0.22-0.58,0-0.8l0,0c0.22-0.22,0.58-0.22,0.8,0 l2.35,2.35V9.61c0-0.45,0.54-0.67,0.85-0.35l2.82,2.82c0.2,0.2,0.2,0.51,0,0.71L19.42,15z M19.17,13.55l1.13-1.13l-1.13-1.13 V13.55z M20.49,20.49c0.39,0.39,0.39,1.02,0,1.41l0,0c-0.39,0.39-1.02,0.39-1.41,0l-3.28-3.28l-0.16,0.16 c-0.23,0.23-0.62,0.23-0.85,0l0,0c-0.23-0.23-0.23-0.62,0-0.85l0.16-0.16L11,13.83l0,3.02c0,2.07-1.68,4.01-3.74,4.14 C4.94,21.13,3,19.29,3,17c0-2.21,1.79-4,4.01-4c0.73,0,1.41,0.21,2,0.55v-1.72L2.1,4.92c-0.39-0.39-0.39-1.02,0-1.41l0,0 c0.39-0.39,1.02-0.39,1.41,0L20.49,20.49z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_2_bar\": {\n    \"name\": \"network_wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58c0.39,0.39,1.02,0.39,1.42,0L23.27,9.71 c0.41-0.41,0.38-1.08-0.06-1.47C20.22,5.6,16.3,4,12,4z M16.78,13.38C15.4,12.5,13.76,12,12,12c-1.76,0-3.4,0.5-4.78,1.38l-4.3-4.3 C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L16.78,13.38z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.52,3,3.34,4.23,0.84,6.27c-0.46,0.38-0.51,1.07-0.08,1.5l8.54,8.53c0.39,0.39,1.02,0.39,1.41,0l8.54-8.53 c0.42-0.42,0.38-1.12-0.08-1.5C16.66,4.23,13.48,3,10,3z M6.36,11.25L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5 c2.83,0,5.54,0.91,7.79,2.6l-4.15,4.15C12.58,10.43,11.33,10,10,10C8.67,10,7.42,10.43,6.36,11.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bloodtype\": {\n    \"name\": \"bloodtype\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12.66,2.58c-0.38-0.33-0.95-0.33-1.33,0C6.45,6.88,4,10.62,4,13.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2 C20,10.62,17.55,6.88,12.66,2.58z M14,18h-4c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1C15,17.55,14.55,18,14,18z M14,13h-1v1c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1h-1c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h1v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1h1 c0.55,0,1,0.45,1,1C15,12.55,14.55,13,14,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"medication_liquid\": {\n    \"name\": \"medication_liquid\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,5h10c0.55,0,1-0.45,1-1s-0.45-1-1-1H4C3.45,3,3,3.45,3,4S3.45,5,4,5z\\\"></path><path d=\\\"M14,6H4C2.9,6,2,6.9,2,8v11c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V8C16,6.9,15.1,6,14,6z M11.5,15h-1v1 c0,0.83-0.67,1.5-1.5,1.5S7.5,16.83,7.5,16v-1h-1C5.67,15,5,14.33,5,13.5C5,12.67,5.67,12,6.5,12h1v-1c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5v1h1c0.83,0,1.5,0.67,1.5,1.5C13,14.33,12.33,15,11.5,15z\\\"></path><path d=\\\"M20,6c-1.68,0-3,1.76-3,4c0,1.77,0.83,3.22,2,3.76V20c0,0.55,0.45,1,1,1s1-0.45,1-1v-6.24c1.17-0.54,2-1.99,2-3.76 C23,7.76,21.68,6,20,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.84,4.5h7.31C11.62,4.5,12,4.16,12,3.75S11.62,3,11.16,3H3.84C3.38,3,3,3.34,3,3.75S3.38,4.5,3.84,4.5z\\\"></path><path d=\\\"M11.5,5.5h-8C2.67,5.5,2,6.17,2,7v8.5C2,16.33,2.67,17,3.5,17h8c0.83,0,1.5-0.67,1.5-1.5V7C13,6.17,12.33,5.5,11.5,5.5z M9.5,12h-1v1c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1h-1c-0.55,0-1-0.45-1-1s0.45-1,1-1h1V9c0-0.55,0.45-1,1-1s1,0.45,1,1v1h1 c0.55,0,1,0.45,1,1S10.05,12,9.5,12z\\\"></path><path d=\\\"M16.5,5.5c-1.38,0-2.5,1.46-2.5,3.25c0,1.45,0.74,2.67,1.75,3.08v4.42c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75 v-4.42C18.26,11.42,19,10.2,19,8.75C19,6.96,17.88,5.5,16.5,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dark_mode\": {\n    \"name\": \"dark_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.01,3.05C6.51,3.54,3,7.36,3,12c0,4.97,4.03,9,9,9c4.63,0,8.45-3.5,8.95-8c0.09-0.79-0.78-1.42-1.54-0.95 c-0.84,0.54-1.84,0.85-2.91,0.85c-2.98,0-5.4-2.42-5.4-5.4c0-1.06,0.31-2.06,0.84-2.89C12.39,3.94,11.9,2.98,11.01,3.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.23,3.04C5.73,3.42,3,6.39,3,10c0,3.87,3.13,7,7,7c3.6,0,6.57-2.72,6.96-6.22c0.07-0.61-0.61-1.1-1.19-0.74 c-0.65,0.42-1.43,0.66-2.26,0.66c-2.32,0-4.2-1.88-4.2-4.2c0-0.83,0.24-1.6,0.65-2.25C10.3,3.73,9.93,2.98,9.23,3.04z\\\"></path>\"\n      }\n    }\n  },\n  \"reset_tv\": {\n    \"name\": \"reset_tv\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,10h-7.01V8.21c0-0.45-0.54-0.67-0.85-0.35l-2.78,2.79c-0.19,0.2-0.19,0.51,0,0.71l2.78,2.79 c0.31,0.32,0.85,0.09,0.85-0.35V12H20v5H4V5h16v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1l0-2c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v12 c0,1.1,0.9,2,2,2h4v1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-1h4c1.1,0,2-0.9,2-2v-5C22,10.9,21.1,10,20,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_1_bar\": {\n    \"name\": \"signal_cellular_alt_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.5,20C5.67,20,5,19.33,5,18.5v-3C5,14.67,5.67,14,6.5,14S8,14.67,8,15.5v3C8,19.33,7.33,20,6.5,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,16c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3C5,15.55,5.45,16,6,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airplane_ticket\": {\n    \"name\": \"airplane_ticket\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20.19,4H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6 C22,4.9,21.19,4,20.19,4z M17.73,13.3l-8.49,2.26c-0.22,0.06-0.45-0.04-0.56-0.23l-1.12-1.95c-0.18-0.3-0.01-0.69,0.32-0.78h0 c0.16-0.04,0.34-0.01,0.47,0.1l1.05,0.82l2.39-0.64L9.9,9.6c-0.26-0.44-0.02-1.01,0.47-1.15l0,0c0.26-0.07,0.54,0,0.74,0.18 l3.69,3.44l2.44-0.65c0.51-0.14,1.04,0.17,1.18,0.68C18.55,12.62,18.25,13.15,17.73,13.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth\": {\n    \"name\": \"bluetooth\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L7.11 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71L17 17c.39-.39.39-1.02 0-1.41L13.41 12 17 8.42c.39-.39.39-1.03 0-1.42zm-4-1.17l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_nodata\": {\n    \"name\": \"signal_cellular_nodata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,13h-7c-1.1,0-2,0.9-2,2v7H4.41c-0.89,0-1.34-1.08-0.71-1.71L20.29,3.71C20.92,3.08,22,3.52,22,4.41V13z M20.3,14.71 L20.3,14.71c-0.39-0.39-1.02-0.39-1.41,0l-1.39,1.39l-1.39-1.39c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41 l1.39,1.39l-1.39,1.39c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0l1.39-1.38l1.39,1.38 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-1.38-1.39l1.38-1.39C20.69,15.73,20.69,15.1,20.3,14.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_inactive\": {\n    \"name\": \"airplanemode_inactive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,14.6c0,0.7-0.67,1.2-1.34,1.01l-3.15-0.93L10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l7.98,4.7 C21.8,13.88,22,14.23,22,14.6z M13.5,13.5L9.56,9.56L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41 l5.67,5.67L2.52,13.7C2.2,13.88,2,14.23,2,14.6c0,0.7,0.67,1.2,1.34,1.01l7.16-2.1V19l-2.26,1.35C8.09,20.44,8,20.61,8,20.78l0,0.5 h0v0.08c0,0.33,0.31,0.57,0.62,0.49l2.92-0.73L12,21l0.38,0.09c0,0,0,0,0,0l0.42,0.11l1.9,0.48l0,0l0.67,0.17 c0.32,0.08,0.62-0.16,0.62-0.49v-0.37c0,0,0,0,0,0v-0.21c0-0.18-0.09-0.34-0.24-0.43L13.5,19v-2.67l5.57,5.57h0l0,0 c0.39,0.39,1.02,0.39,1.41,0s0.39-1.02,0-1.41L13.5,13.5z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M13.12,11.71L9,7.59V4c0-0.55,0.45-1,1-1s1,0.45,1,1v4l4.37,2.91l1.4,0.93c0.14,0.1,0.23,0.26,0.23,0.43 c0,0.36-0.35,0.61-0.68,0.49L13.12,11.71z M3.28,3.28c-0.2-0.2-0.51-0.2-0.71,0s-0.2,0.51,0,0.71l4.98,4.98l-2.77,1.84h0 l-1.55,1.04C3.09,11.94,3,12.1,3,12.28c0,0.36,0.35,0.61,0.68,0.49L9,11v4l-1.25,0.83C7.6,15.94,7.5,16.11,7.5,16.3 c0,0.36,0.33,0.63,0.68,0.56L10,16.5l0,0l0,0l1.82,0.36c0.35,0.07,0.68-0.2,0.68-0.56c0-0.19-0.1-0.37-0.25-0.47L11,15v-2.59 l5.01,5.01c0.2,0.2,0.51,0.2,0.71,0s0.2-0.51,0-0.71L3.28,3.28z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_auto\": {\n    \"name\": \"brightness_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69zm-5.91 6.71L13.6 14h-3.2l-.49 1.4c-.13.36-.46.6-.84.6-.62 0-1.05-.61-.84-1.19l2.44-6.86c.2-.57.73-.95 1.33-.95.6 0 1.13.38 1.34.94l2.44 6.86c.21.58-.22 1.19-.84 1.19-.39.01-.72-.23-.85-.59z\\\"></path>\"\n      }\n    }\n  },\n  \"device_thermostat\": {\n    \"name\": \"device_thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,13V5c0-1.66-1.34-3-3-3S9,3.34,9,5v8c-1.21,0.91-2,2.37-2,4c0,2.76,2.24,5,5,5s5-2.24,5-5C17,15.37,16.21,13.91,15,13 z M11,11V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-1v1h1v1v1h-1v1h1v1H11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_lock_rotation\": {\n    \"name\": \"screen_lock_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20.41,11.36l-0.35-0.35c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L19,12.77l-4.24,4.24L6.98,9.23 l4.24-4.24l0.35,0.35c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41l-0.35-0.36c-0.79-0.79-2.03-0.79-2.82,0L5.57,7.82 c-0.78,0.78-0.78,2.05,0,2.83l7.78,7.78c0.79,0.79,2.03,0.79,2.82,0l4.24-4.24C21.2,13.41,21.2,12.14,20.41,11.36z\\\"></path><path d=\\\"M10.85,17.85C10.54,17.54,10,17.76,10,18.21v1.53c-3.17-0.82-5.59-3.54-5.95-6.86C3.99,12.37,3.56,12,3.06,12 c-0.6,0-1.07,0.53-1,1.12C2.62,18.11,6.87,22,12,22c0.59,0,1.17-0.06,1.73-0.16c0.4-0.07,0.55-0.56,0.27-0.85L10.85,17.85z\\\"></path><path d=\\\"M16,9h4c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1V3.11c0-1-0.68-1.92-1.66-2.08C17.08,0.82,16,1.79,16,3v1 c-0.55,0-1,0.45-1,1v3C15,8.55,15.45,9,16,9z M17,3c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-2V3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dvr\": {\n    \"name\": \"dvr\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-2-9H9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM7 8H5v2h2V8zm0 4H5v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_disabled\": {\n    \"name\": \"bluetooth_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.29 17.89L6.11 4.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71l3.59-3.59 1.59 1.59c.39.39 1.02.39 1.41 0 .38-.39.38-1.03-.01-1.41zm-6.29.28v-3.76l1.88 1.88L13 18.17zm0-12.34l1.88 1.88-1.47 1.47 1.41 1.41L17 8.42c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v3.36l2 2V5.83z\\\"></path>\"\n      }\n    }\n  },\n  \"h_mobiledata\": {\n    \"name\": \"h_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,11H9V8c0-0.55-0.45-1-1-1h0C7.45,7,7,7.45,7,8v8c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3h6v3c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1V8c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_system_daydream\": {\n    \"name\": \"settings_system_daydream\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.02c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_charging_full\": {\n    \"name\": \"battery_charging_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-1.06 9.24l-2.67 5c-.24.45-.94.28-.94-.24v-3.5H9.83c-.38 0-.62-.4-.44-.74l2.67-5c.24-.45.94-.28.94.24v3.5h1.17c.37 0 .62.4.44.74z\\\"></path>\"\n      }\n    }\n  },\n  \"flourescent\": {\n    \"name\": \"flourescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,15h10c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H7c-1.1,0-2,0.9-2,2v2C5,14.1,5.9,15,7,15z\\\"></path><path d=\\\"M12,2L12,2c-0.56,0-1,0.45-1,1V4c0,0.55,0.45,1,1,1H12c0.55,0,1-0.45,1-1V3C13,2.45,12.55,2,12,2z\\\"></path><path d=\\\"M19.79,5.3L19.79,5.3c-0.39-0.39-1.02-0.39-1.41,0l-0.38,0.38c-0.39,0.39-0.39,1.02,0,1.41l0,0 c0.39,0.39,1.02,0.39,1.41,0l0.38-0.38C20.18,6.33,20.18,5.69,19.79,5.3z\\\"></path><path d=\\\"M12,22L12,22c0.56,0,1-0.45,1-1V20c0-0.55-0.45-1-1-1H12c-0.55,0-1,0.45-1,1V21C11,21.55,11.45,22,12,22z\\\"></path><path d=\\\"M17.99,18.41l0.38,0.39c0.39,0.39,1.02,0.39,1.41,0l0.01-0.01c0.39-0.39,0.39-1.02,0-1.41L19.4,17 c-0.39-0.39-1.02-0.39-1.41,0l0,0C17.6,17.4,17.6,18.03,17.99,18.41z\\\"></path><path d=\\\"M6,5.69L5.61,5.31c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L4.59,7.1c0.39,0.39,1.02,0.39,1.41,0l0,0 C6.38,6.71,6.38,6.07,6,5.69z\\\"></path><path d=\\\"M4.2,18.79L4.2,18.79c0.39,0.4,1.03,0.4,1.42,0L6,18.4c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0 L4.2,17.38C3.81,17.77,3.81,18.4,4.2,18.79z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"light_mode\": {\n    \"name\": \"light_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0 c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2 c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1 C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06 c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41 l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41 c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36 c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,6c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S12.21,6,10,6L10,6z\\\"></path><path d=\\\"M3.75,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2C1.34,9.25,1,9.59,1,10s0.34,0.75,0.75,0.75H3.75z\\\"></path><path d=\\\"M18.25,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2c-0.41,0-0.75,0.34-0.75,0.75s0.34,0.75,0.75,0.75 H18.25z\\\"></path><path d=\\\"M9.25,3.75C9.25,4.16,9.59,4.5,10,4.5c0.41,0,0.75-0.34,0.75-0.75v-2C10.75,1.34,10.41,1,10,1S9.25,1.34,9.25,1.75V3.75z\\\"></path><path d=\\\"M13.89,5.05c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L13.89,5.05z\\\"></path><path d=\\\"M3.99,14.95c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L3.99,14.95z\\\"></path><path d=\\\"M5.05,6.11c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L5.05,3.99c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06 L5.05,6.11z\\\"></path><path d=\\\"M14.95,16.01c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0 c-0.29,0.29-0.29,0.77,0,1.06L14.95,16.01z\\\"></path><path d=\\\"M9.25,18.25C9.25,18.66,9.59,19,10,19c0.41,0,0.75-0.34,0.75-0.75v-2c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75 V18.25z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_1_bar\": {\n    \"name\": \"battery_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V3c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h2 C16.55,4,17,4.45,17,5z M15,6H9v12h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V3c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1v0.5H13z M12.5,5h-5v9.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_password\": {\n    \"name\": \"wifi_password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.49,12.13C16.67,10.79,14.43,10,12,10c-2.43,0-4.67,0.79-6.49,2.13c-0.72,0.53-0.76,1.6-0.13,2.24 c0.53,0.54,1.37,0.57,1.98,0.12C8.67,13.55,10.27,13,12,13c1.73,0,3.33,0.55,4.64,1.49c0.62,0.44,1.45,0.41,1.98-0.12 C19.26,13.73,19.22,12.66,18.49,12.13z M22.8,7.89C19.86,5.46,16.1,4,12,4S4.14,5.46,1.2,7.89C0.53,8.44,0.49,9.47,1.11,10.1l0,0 c0.55,0.55,1.42,0.58,2.02,0.09C5.55,8.2,8.64,7,12,7s6.45,1.2,8.87,3.19c0.6,0.49,1.47,0.46,2.02-0.09l0,0 C23.51,9.47,23.47,8.44,22.8,7.89z M12,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,16,12,16z M23,19v-1c0-1.1-0.9-2-2-2 s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C24,19.45,23.55,19,23,19z M22,19h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,8C7.91,8,5.98,8.68,4.42,9.82c-0.49,0.36-0.53,1.07-0.1,1.5l0.02,0.02c0.34,0.34,0.88,0.38,1.27,0.1 C6.84,10.54,8.36,10,10,10c1.64,0,3.16,0.54,4.4,1.44c0.39,0.28,0.93,0.24,1.27-0.1l0.02-0.02c0.43-0.43,0.38-1.14-0.1-1.5 C14.02,8.68,12.09,8,10,8z M19.17,6.28C16.67,4.23,13.48,3,10,3S3.33,4.23,0.83,6.28c-0.46,0.37-0.5,1.06-0.08,1.48l0.02,0.02 c0.37,0.37,0.95,0.37,1.35,0.04C4.27,6.06,7.01,5,10,5s5.73,1.06,7.89,2.82c0.4,0.33,0.98,0.32,1.35-0.04l0.02-0.02 C19.67,7.34,19.63,6.65,19.17,6.28z M10,13c-0.83,0-1.5,0.67-1.5,1.5S9.17,16,10,16s1.5-0.67,1.5-1.5S10.83,13,10,13z M16.75,16 h1.5v-1c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V16z M20,19c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-2 c0-0.55,0.45-1,1-1v-1c0-0.82,0.67-1.5,1.5-1.5S19,14.18,19,15v1c0.55,0,1,0.45,1,1V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"access_alarm\": {\n    \"name\": \"access_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.87 15.25l-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_channel\": {\n    \"name\": \"wifi_channel\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4.13,21c0.5,0,0.92-0.38,0.99-0.87c0.65-4.89,1.95-9.01,2.88-10c0.91,0.98,2.19,5.01,2.86,9.82 c0.08,0.6,0.59,1.05,1.19,1.05c0.54,0,1.02-0.36,1.16-0.89C13.83,17.73,15.11,15,16,15c0.9,0,2.19,2.83,2.81,5.2 c0.12,0.48,0.56,0.8,1.05,0.8c0.62,0,1.12-0.52,1.09-1.14C20.75,15.89,19.81,3,16,3c-2.51,0-3.77,5.61-4.4,10.57 C10.79,10.66,9.61,8,8,8c-2.92,0-4.41,8.71-4.85,11.87C3.06,20.47,3.53,21,4.13,21z M16,13c-0.99,0-1.82,0.62-2.5,1.5 c0.57-4.77,1.54-8.62,2.5-9.44c0.97,0.81,1.91,4.67,2.49,9.43C17.81,13.62,16.98,13,16,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.15,17c0.47,0,0.84-0.39,0.82-0.86C16.8,13.1,16.06,3,13.12,3c-1.96,0-2.94,4.51-3.42,8.41C9.08,9.12,8.15,7,6.88,7 c-2.28,0-3.43,6.74-3.77,9.15c-0.06,0.46,0.3,0.86,0.77,0.85c0.37-0.01,0.66-0.31,0.71-0.67c0.53-3.88,1.57-7.08,2.29-7.76 c0.72,0.67,1.74,3.83,2.27,7.66c0.07,0.48,0.49,0.82,0.98,0.77c0.38-0.04,0.68-0.33,0.78-0.69c0.49-1.82,1.51-3.8,2.21-3.8 c0.69,0,1.74,2.08,2.23,3.9C15.45,16.75,15.78,17,16.15,17z M13.12,11c-0.81,0-1.49,0.54-2.04,1.28c0.47-4.11,1.31-7.16,2.04-7.74 c0.73,0.58,1.57,3.63,2.04,7.74C14.62,11.54,13.94,11,13.12,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth_drive\": {\n    \"name\": \"bluetooth_drive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.85,6l1.8-1.8c0.2-0.2,0.2-0.51,0-0.71L19.5,1.36c-0.32-0.31-0.85-0.09-0.85,0.35v3.08L16.7,2.85 c-0.19-0.19-0.51-0.19-0.7,0c-0.19,0.19-0.19,0.51,0,0.7L18.44,6L16,8.44c-0.19,0.19-0.19,0.5,0,0.7l0,0c0.19,0.2,0.51,0.2,0.7,0 l1.95-1.95v3.09c0,0.45,0.54,0.67,0.85,0.35l2.14-2.15c0.2-0.2,0.19-0.51,0-0.71L19.85,6z M19.65,2.91l0.94,0.94l-0.94,0.94V2.91z M19.65,9.08V7.2l0.94,0.94L19.65,9.08z\\\"></path><path d=\\\"M15,10H4.81l1.04-3H15V5H5.5C4.84,5,4.29,5.42,4.08,6.01L2,12v7.5C2,20.33,2.67,21,3.5,21S5,20.33,5,19.5V19h12v0.5 c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5V12h-3C15.9,12,15,11.1,15,10z M6.5,16C5.67,16,5,15.33,5,14.5S5.67,13,6.5,13 S8,13.67,8,14.5S7.33,16,6.5,16z M15.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edgesensor_high\": {\n    \"name\": \"edgesensor_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,7L4,7c0.55,0,1,0.45,1,1v5c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V8C3,7.45,3.45,7,4,7z M1,10L1,10c0.55,0,1,0.45,1,1 v5c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-5C0,10.45,0.45,10,1,10z M23,7L23,7c0.55,0,1,0.45,1,1v5c0,0.55-0.45,1-1,1h0 c-0.55,0-1-0.45-1-1V8C22,7.45,22.45,7,23,7z M20,10L20,10c0.55,0,1,0.45,1,1v5c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-5 C19,10.45,19.45,10,20,10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,17H8V7h8V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_0_bar\": {\n    \"name\": \"signal_wifi_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58c0.39,0.39,1.02,0.39,1.42,0L23.27,9.71 c0.41-0.41,0.38-1.08-0.06-1.47C20.22,5.6,16.3,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"note_alt\": {\n    \"name\": \"note_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M8.9,17 H7.5C7.22,17,7,16.78,7,16.5v-1.43c0-0.13,0.05-0.26,0.15-0.35l5.81-5.81l2.12,2.12l-5.83,5.83C9.16,16.95,9.03,17,8.9,17z M16.85,9.27l-1.06,1.06l-2.12-2.12l1.06-1.06c0.2-0.2,0.51-0.2,0.71,0l1.41,1.41C17.05,8.76,17.05,9.07,16.85,9.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gpp_maybe\": {\n    \"name\": \"gpp_maybe\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.3,2.26l-6,2.25C4.52,4.81,4,5.55,4,6.39v4.7c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91v-4.7 c0-0.83-0.52-1.58-1.3-1.87l-6-2.25C12.25,2.09,11.75,2.09,11.3,2.26z M12,16L12,16c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0 c0.55,0,1,0.45,1,1v0C13,15.55,12.55,16,12,16z M12,12L12,12c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3 C13,11.55,12.55,12,12,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"devices_fold\": {\n    \"name\": \"devices_fold\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,3h-3c0-1.43-1.47-2.4-2.79-1.84l-3,1.29C10.48,2.76,10,3.49,10,4.29V19c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M20,19h-5.33l1.12-0.48C16.52,18.2,17,17.48,17,16.68V5h3V19z\\\"></path></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"19\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"15\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"11\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"19\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"6.12\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"9.25\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"12.38\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"15.5\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"15.5\\\"></rect></g><g><path d=\\\"M16.5,3h-3V2.5c0-1.14-1.22-1.86-2.22-1.32l-2.5,1.36C8.3,2.81,8,3.32,8,3.87V15.5C8,16.33,8.67,17,9.5,17h7 c0.83,0,1.5-0.67,1.5-1.5v-11C18,3.67,17.33,3,16.5,3z M16.5,15.5h-5.75l1.97-1.07c0.48-0.26,0.78-0.77,0.78-1.32V4.5h3V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"battery_saver\": {\n    \"name\": \"battery_saver\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,4h-2V3c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v1H8C7.45,4,7,4.45,7,5v16c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5 C17,4.45,16.55,4,16,4z M14,14h-1v1c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-1h-1c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h1v-1 c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v1h1c0.55,0,1,0.45,1,1v0C15,13.55,14.55,14,14,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_4_bar\": {\n    \"name\": \"battery_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V3c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h2 C16.55,4,17,4.45,17,5z M15,6H9v6h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V3c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1v0.5H13z M12.5,5h-5v5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water\": {\n    \"name\": \"water\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,14H22H21.98z M5.35,13c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c0.93,0,1.05,0.45,2.01,0.79c0.63,0.22,1.3-0.24,1.3-0.91c0-0.52-0.23-0.83-0.64-0.97c-0.6-0.22-1.15-0.9-2.69-0.9 c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.54,0-2.13,0.71-2.68,0.91 C2.24,12.05,2,12.35,2,12.89c0,0.67,0.66,1.13,1.29,0.91C4.35,13.44,4.39,13,5.35,13z M18.67,15c-1.95,0-2.09,1-3.33,1 c-1.19,0-1.42-1-3.33-1c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.53,0-2.15,0.71-2.69,0.91C2.24,16.05,2,16.36,2,16.89 c0,0.67,0.66,1.13,1.3,0.91C4.32,17.44,4.38,17,5.34,17c1.24,0,1.38,1,3.33,1c1.95,0,2.1-1,3.34-1c1.19,0,1.42,1,3.33,1 c1.94,0,2.09-1,3.33-1c0.94,0,1.06,0.46,2.03,0.8c0.63,0.22,1.3-0.24,1.3-0.91c0-0.53-0.24-0.83-0.65-0.98 C20.82,15.72,20.21,15,18.67,15z M5.35,9c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c0.93,0,1.05,0.45,2.01,0.79c0.63,0.22,1.3-0.24,1.3-0.91c0-0.52-0.23-0.83-0.64-0.97C20.74,7.68,20.19,7,18.65,7 c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1C10.04,7,9.9,8,8.66,8C7.47,8,7.24,7,5.33,7C3.79,7,3.2,7.71,2.65,7.91 C2.24,8.05,2,8.35,2,8.89c0,0.67,0.66,1.13,1.29,0.91C4.35,9.44,4.39,9,5.35,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thermostat\": {\n    \"name\": \"thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-2-2h-2V5c0-.55.45-1 1-1s1 .45 1 1h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v2h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M23.21,8.24C20.22,5.6,16.3,4,12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58 c0.19,0.19,0.45,0.29,0.7,0.29V14c0-1.1,0.9-2,2-2h6.99l2.29-2.29C23.68,9.3,23.65,8.63,23.21,8.24z\\\"></path><path d=\\\"M20.3,14.71L20.3,14.71c-0.39-0.39-1.02-0.39-1.41,0l-1.39,1.38l-1.39-1.38c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41l1.39,1.39l-1.39,1.39c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0l1.39-1.38 l1.39,1.38c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-1.38-1.39l1.38-1.39C20.69,15.73,20.69,15.1,20.3,14.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_4x4\": {\n    \"name\": \"grid_4x4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,6L22,6c0-0.55-0.45-1-1-1h-2V3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2h-4V3c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v2H7V3c0-0.55-0.45-1-1-1h0C5.45,2,5,2.45,5,3v2H3C2.45,5,2,5.45,2,6v0c0,0.55,0.45,1,1,1h2v4H3 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v4H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-2h4v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h4v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h2 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2v-4h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2V7h2C21.55,7,22,6.55,22,6z M7,7h4v4H7 V7z M7,17v-4h4v4H7z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt\": {\n    \"name\": \"signal_cellular_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 4c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-13c0-.83.67-1.5 1.5-1.5zm-12 10c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5S5 19.33 5 18.5v-3c0-.83.67-1.5 1.5-1.5zm6-5c.83 0 1.5.67 1.5 1.5v8c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5v-8c0-.83.67-1.5 1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_on_select\": {\n    \"name\": \"hdr_on_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.83-0.67-1.5-1.5-1.5H14c-0.55,0-1,0.45-1,1v4.31c0,0.38,0.31,0.69,0.69,0.69h0.11 c0.38,0,0.69-0.31,0.69-0.69V20h1.1l0.72,1.59c0.11,0.25,0.36,0.41,0.63,0.41h0c0.5,0,0.83-0.51,0.64-0.97L17.1,19.9 C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2V18.5z M3.5,18h-2v-1.25C1.5,16.34,1.16,16,0.75,16h0C0.34,16,0,16.34,0,16.75v4.5 C0,21.66,0.34,22,0.75,22h0c0.41,0,0.75-0.34,0.75-0.75V19.5h2v1.75C3.5,21.66,3.84,22,4.25,22h0C4.66,22,5,21.66,5,21.25v-4.5 C5,16.34,4.66,16,4.25,16h0c-0.41,0-0.75,0.34-0.75,0.75V18z M10,16H7.5c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1H10 c0.82,0,1.5-0.67,1.5-1.5v-3C11.5,16.67,10.82,16,10,16z M10,20.5H8v-3h2V20.5z M23.25,20H22v1.25c0,0.41-0.34,0.75-0.75,0.75l0,0 c-0.41,0-0.75-0.34-0.75-0.75V20h-1.25c-0.41,0-0.75-0.34-0.75-0.75l0,0c0-0.41,0.34-0.75,0.75-0.75h1.25v-1.25 c0-0.41,0.34-0.75,0.75-0.75l0,0c0.41,0,0.75,0.34,0.75,0.75v1.25h1.25c0.41,0,0.75,0.34,0.75,0.75l0,0 C24,19.66,23.66,20,23.25,20z M12,4c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4S9.79,4,12,4 M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6 s6-2.69,6-6S15.31,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_null\": {\n    \"name\": \"signal_wifi_statusbar_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58c0.39,0.39,1.02,0.39,1.42,0L23.27,9.71 c0.41-0.41,0.38-1.08-0.06-1.47C20.22,5.6,16.3,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6c3.33,0,6.49,1.08,9.08,3.07L12,18.17 L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_disabled\": {\n    \"name\": \"location_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 13c.55 0 1-.45 1-1s-.45-1-1-1h-1.06c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H22zm-1.56 5.88L5.12 3.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L5.04 6.3C3.97 7.62 3.26 9.23 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c1.77-.2 3.38-.91 4.69-1.98l1.33 1.33c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_0_bar\": {\n    \"name\": \"battery_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V3c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h2 C16.55,4,17,4.45,17,5z M15,6H9v14h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V3c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1v0.5H13z M12.5,5h-5v11.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_2_bar\": {\n    \"name\": \"battery_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V3c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h2 C16.55,4,17,4.45,17,5z M15,6H9v10h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V3c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1v0.5H13z M12.5,5h-5v8h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_3x3\": {\n    \"name\": \"grid_3x3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,9L20,9c0-0.55-0.45-1-1-1h-3V5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3h-4V5c0-0.55-0.45-1-1-1h0C8.45,4,8,4.45,8,5 v3H5C4.45,8,4,8.45,4,9v0c0,0.55,0.45,1,1,1h3v4H5c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h3v3c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-3h4v3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3h3c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-3v-4h3 C19.55,10,20,9.55,20,9z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phishing\": {\n    \"name\": \"phishing\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9c0-1.3-0.84-2.4-2-2.82V3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3.18C13.84,6.6,13,7.7,13,9s0.84,2.4,2,2.82l0,3.01 c0,2.09-1.52,3.96-3.6,4.16C9.02,19.21,7,17.34,7,15v-1h1.79c0.45,0,0.67-0.54,0.35-0.85L5.85,9.85C5.54,9.54,5,9.76,5,10.21 l0,4.58c0,3.05,2.19,5.77,5.21,6.16C13.87,21.42,17,18.57,17,15v-3.18C18.16,11.4,19,10.3,19,9z M16,10c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S16.55,10,16,10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,5.39V2.75C13,2.34,12.66,2,12.25,2h0c-0.41,0-0.75,0.34-0.75,0.75v2.64C10.63,5.7,10,6.52,10,7.5 c0,0.98,0.63,1.8,1.5,2.11l0,3.26c0,1.32-0.96,2.5-2.27,2.62C7.75,15.62,6.5,14.45,6.5,13v-1h1.29c0.45,0,0.67-0.54,0.35-0.85 L5.85,8.85C5.54,8.54,5,8.76,5,9.21l0,3.63c0,2.07,1.68,4.02,3.74,4.15C11.06,17.14,13,15.29,13,13V9.61 c0.87-0.31,1.5-1.13,1.5-2.11C14.5,6.52,13.87,5.7,13,5.39z M12.25,8.25c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 S13,7.09,13,7.5C13,7.91,12.66,8.25,12.25,8.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_4_bar\": {\n    \"name\": \"signal_cellular_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.41 22H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.34-1.71-.71L3.71 20.29c-.63.63-.19 1.71.7 1.71z\\\"></path>\"\n      }\n    }\n  },\n  \"devices\": {\n    \"name\": \"devices\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 7c0-.55.45-1 1-1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v11h-.5c-.83 0-1.5.67-1.5 1.5S.67 20 1.5 20H14v-3H4V7zm19 1h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error_rounded\": {\n    \"name\": \"wifi_tethering_error_rounded\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10.66,7.14c-2.24,0.48-4.04,2.3-4.52,4.54c-0.37,1.75,0.02,3.38,0.89,4.66c0.34,0.51,1.08,0.55,1.51,0.11l0,0 c0.35-0.35,0.37-0.88,0.1-1.28c-0.5-0.76-0.75-1.71-0.61-2.73c0.23-1.74,1.67-3.17,3.41-3.4C13.9,8.71,16,10.61,16,13 c0,0.8-0.24,1.54-0.64,2.16c-0.27,0.41-0.25,0.95,0.1,1.29l0,0c0.43,0.43,1.17,0.4,1.51-0.11C17.62,15.4,18,14.25,18,13 C18,9.25,14.55,6.3,10.66,7.14z M10.25,3.15c-4.05,0.69-7.19,3.69-8.03,7.72c-0.66,3.17,0.2,6.16,1.97,8.38 c0.37,0.46,1.07,0.49,1.49,0.07l0,0c0.36-0.36,0.39-0.93,0.07-1.32c-1.34-1.67-2.03-3.9-1.66-6.28c0.55-3.47,3.42-6.24,6.92-6.65 c2.76-0.33,5.27,0.74,6.93,2.59C18.14,7.87,18.41,8,18.7,8h0c0.85,0,1.34-1.01,0.77-1.65C17.28,3.9,13.91,2.53,10.25,3.15z M12,11 c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59C13.77,14.05,14,13.55,14,13 C14,11.9,13.1,11,12,11z M21,10L21,10c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-4C20,10.45,20.45,10,21,10z M21,18L21,18c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0C20,18.45,20.45,18,21,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_not_disturb_on_total_silence\": {\n    \"name\": \"do_not_disturb_on_total_silence\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.4,6,12,6z M14,13h-4c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v0C15,12.55,14.55,13,14,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_connected\": {\n    \"name\": \"bluetooth_connected\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13c.55-.55.55-1.44 0-1.99V11c-.55-.55-1.45-.55-2 0s-.55 1.45 0 2 1.45.55 2 0zm14-2c-.56-.56-1.45-.56-2-.01V11c-.55.55-.55 1.44 0 1.99V13c.55.55 1.44.55 1.99 0H20c.55-.55.55-1.45 0-2zm-3-4l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L7.11 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 14.41v6.18c0 .89 1.08 1.34 1.71.71L17 17c.39-.39.39-1.02 0-1.42L13.41 12 17 8.42c.39-.39.39-1.03 0-1.42zm-2.12 9.29L13 18.17v-3.76l1.88 1.88zM13 9.59V5.83l1.88 1.88L13 9.59z\\\"></path>\"\n      }\n    }\n  },\n  \"system_security_update\": {\n    \"name\": \"system_security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M14.79,12.21H13V9c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3.21H9.21c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.79 c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79C15.46,12.75,15.24,12.21,14.79,12.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mobile_off\": {\n    \"name\": \"mobile_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16.44L3.61 3.05c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75L20 22.27c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L19 18.44l-2-2zM7 19V9.27L16.73 19H7zM17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17z\\\"></path>\"\n      }\n    }\n  },\n  \"network_wifi_3_bar\": {\n    \"name\": \"network_wifi_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58c0.39,0.39,1.02,0.39,1.42,0L23.27,9.71 c0.41-0.41,0.38-1.08-0.06-1.47C20.22,5.6,16.3,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07l-2.85,2.86 C16.46,10.71,14.31,10,12,10c-2.31,0-4.46,0.71-6.23,1.93L2.92,9.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.52,3,3.34,4.23,0.84,6.27c-0.46,0.38-0.51,1.07-0.08,1.5l8.54,8.53c0.39,0.39,1.02,0.39,1.41,0l8.54-8.53 c0.42-0.42,0.38-1.12-0.08-1.5C16.66,4.23,13.48,3,10,3z M14.71,10.18C13.35,9.08,11.73,8.5,10,8.5c-1.73,0-3.35,0.58-4.71,1.68 L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L14.71,10.18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_standby\": {\n    \"name\": \"mode_standby\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,10.34,15,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_bad\": {\n    \"name\": \"signal_wifi_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M23.21,8.24C20.22,5.6,16.3,4,12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58 c0.19,0.19,0.45,0.29,0.7,0.29V14c0-1.1,0.9-2,2-2h6.99l2.29-2.29C23.68,9.3,23.65,8.63,23.21,8.24z\\\"></path><path d=\\\"M20.3,14.71L20.3,14.71c-0.39-0.39-1.02-0.39-1.41,0l-1.39,1.38l-1.39-1.38c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41l1.39,1.39l-1.39,1.39c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0l1.39-1.38 l1.39,1.38c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-1.38-1.39l1.38-1.39C20.69,15.73,20.69,15.1,20.3,14.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"discount\": {\n    \"name\": \"discount\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12.79,21L3,11.21v2c0,0.53,0.21,1.04,0.59,1.41l7.79,7.79c0.78,0.78,2.05,0.78,2.83,0l6.21-6.21 c0.78-0.78,0.78-2.05,0-2.83L12.79,21z\\\"></path></g><g><path d=\\\"M11.38,17.41c0.78,0.78,2.05,0.78,2.83,0l6.21-6.21c0.78-0.78,0.78-2.05,0-2.83l-7.79-7.79C12.25,0.21,11.74,0,11.21,0H5 C3.9,0,3,0.9,3,2v6.21c0,0.53,0.21,1.04,0.59,1.41L11.38,17.41z M7.25,3C7.94,3,8.5,3.56,8.5,4.25S7.94,5.5,7.25,5.5 S6,4.94,6,4.25S6.56,3,7.25,3z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16.56,11.53l-5.97,5.97L3,9.91v1.5c0,0.4,0.16,0.78,0.44,1.06l6.09,6.09C9.82,18.85,10.21,19,10.59,19 c0.38,0,0.77-0.15,1.06-0.44l4.91-4.91C17.15,13.07,17.15,12.12,16.56,11.53L16.56,11.53z\\\"></path></g><g><path d=\\\"M9.53,14.56c0.59,0.59,1.54,0.59,2.12,0l4.91-4.91c0.59-0.59,0.59-1.54,0-2.12l-6.09-6.09C10.19,1.16,9.81,1,9.41,1H4.5 C3.67,1,3,1.67,3,2.5v4.91c0,0.4,0.16,0.78,0.44,1.06L9.53,14.56z M6.5,3.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S5.95,3.5,6.5,3.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"battery_std\": {\n    \"name\": \"battery_std\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"widgets\": {\n    \"name\": \"widgets\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 14v6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1zm-9 7h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zM3 4v6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm12.95-1.6L11.7 6.64c-.39.39-.39 1.02 0 1.41l4.25 4.25c.39.39 1.02.39 1.41 0l4.25-4.25c.39-.39.39-1.02 0-1.41L17.37 2.4c-.39-.39-1.03-.39-1.42 0z\\\"></path>\"\n      }\n    }\n  },\n  \"flashlight_off\": {\n    \"name\": \"flashlight_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,5V4c0-1.1-0.9-2-2-2H8C7.14,2,6.42,2.54,6.13,3.3L7.83,5H18z\\\"></path><polygon points=\\\"16,11 18,8 18,7 9.83,7 16,13.17\\\"></polygon><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l5.9,5.9L8,20c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-1.17l3.07,3.07 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51C3.12,3.12,2.49,3.12,2.1,3.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_warning\": {\n    \"name\": \"system_security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M12,13c0.55,0,1-0.45,1-1V8c0-0.55-0.45-1-1-1s-1,0.45-1,1v4C11,12.55,11.45,13,12,13z\\\"></path><path d=\\\"M17,1H7C5.9,1,5.01,1.9,5.01,3v18c0,1.1,0.89,2,1.99,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"task\": {\n    \"name\": \"task\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19.41,7.41l-4.83-4.83C14.21,2.21,13.7,2,13.17,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2 V8.83C20,8.3,19.79,7.79,19.41,7.41z M10.23,17.29l-2.12-2.12c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0 l1.41,1.41l3.54-3.54c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41l-4.24,4.24C11.26,17.68,10.62,17.68,10.23,17.29z M14,9c-0.55,0-1-0.45-1-1V3.5L18.5,9H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"share_location\": {\n    \"name\": \"share_location\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.02,20.77L13.02,20.77c0,0.64,0.59,1.13,1.21,0.99c1.12-0.26,2.18-0.7,3.12-1.3c0.53-0.34,0.61-1.1,0.16-1.55l0,0 c-0.32-0.32-0.83-0.4-1.21-0.16c-0.77,0.49-1.62,0.85-2.53,1.05C13.32,19.9,13.02,20.31,13.02,20.77z\\\"></path><path d=\\\"M4.03,12c0-3.79,2.65-6.97,6.2-7.79c0.44-0.1,0.75-0.51,0.75-0.96v0c0-0.64-0.6-1.13-1.22-0.98 C5.33,3.29,2.03,7.26,2.03,12c0,4.74,3.3,8.71,7.73,9.74c0.62,0.15,1.22-0.34,1.22-0.98v0c0-0.46-0.31-0.86-0.75-0.96 C6.68,18.97,4.03,15.79,4.03,12z\\\"></path><path d=\\\"M20.79,11L20.79,11c0.64,0,1.13-0.59,0.99-1.21c-0.26-1.12-0.7-2.17-1.3-3.12c-0.34-0.54-1.1-0.61-1.55-0.16l0,0 c-0.32,0.32-0.4,0.83-0.15,1.21c0.49,0.76,0.85,1.61,1.05,2.53C19.92,10.7,20.33,11,20.79,11z\\\"></path><path d=\\\"M17.35,3.55c-0.95-0.6-2-1.04-3.12-1.3c-0.62-0.14-1.21,0.35-1.21,0.98v0c0,0.45,0.3,0.87,0.74,0.96 c0.91,0.2,1.77,0.57,2.53,1.05c0.39,0.24,0.89,0.17,1.21-0.16l0,0C17.96,4.64,17.89,3.89,17.35,3.55z\\\"></path><path d=\\\"M18.92,17.49L18.92,17.49c0.45,0.45,1.21,0.38,1.55-0.16c0.6-0.94,1.04-2,1.3-3.12c0.14-0.62-0.35-1.21-0.98-1.21h0 c-0.45,0-0.87,0.3-0.96,0.74c-0.2,0.91-0.57,1.77-1.05,2.53C18.52,16.66,18.6,17.17,18.92,17.49z\\\"></path><path d=\\\"M16,11.1C16,8.61,14.1,7,12,7s-4,1.61-4,4.1c0,1.51,1.1,3.28,3.31,5.3c0.39,0.36,0.98,0.36,1.38,0 C14.9,14.37,16,12.61,16,11.1z M12,12c-0.59,0-1.07-0.48-1.07-1.07c0-0.59,0.48-1.07,1.07-1.07s1.07,0.48,1.07,1.07 C13.07,11.52,12.59,12,12,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"password\": {\n    \"name\": \"password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,17h18c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H3c-0.55,0-1-0.45-1-1v0C2,17.45,2.45,17,3,17z M2.5,12.57 c0.36,0.21,0.82,0.08,1.03-0.28L4,11.47l0.48,0.83c0.21,0.36,0.67,0.48,1.03,0.28l0,0c0.36-0.21,0.48-0.66,0.28-1.02L5.3,10.72 h0.95C6.66,10.72,7,10.38,7,9.97v0c0-0.41-0.34-0.75-0.75-0.75H5.3L5.77,8.4C5.98,8.04,5.86,7.58,5.5,7.37l0,0 C5.14,7.17,4.68,7.29,4.47,7.65L4,8.47L3.53,7.65C3.32,7.29,2.86,7.17,2.5,7.37l0,0C2.14,7.58,2.02,8.04,2.23,8.4L2.7,9.22H1.75 C1.34,9.22,1,9.56,1,9.97v0c0,0.41,0.34,0.75,0.75,0.75H2.7l-0.48,0.83C2.02,11.91,2.14,12.37,2.5,12.57L2.5,12.57z M10.5,12.57 L10.5,12.57c0.36,0.21,0.82,0.08,1.03-0.28L12,11.47l0.48,0.83c0.21,0.36,0.67,0.48,1.03,0.28l0,0c0.36-0.21,0.48-0.66,0.28-1.02 l-0.48-0.83h0.95c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H13.3l0.47-0.82c0.21-0.36,0.08-0.82-0.27-1.03l0,0 c-0.36-0.21-0.82-0.08-1.02,0.27L12,8.47l-0.47-0.82c-0.21-0.36-0.67-0.48-1.02-0.27l0,0c-0.36,0.21-0.48,0.67-0.27,1.03 l0.47,0.82H9.75C9.34,9.22,9,9.56,9,9.97v0c0,0.41,0.34,0.75,0.75,0.75h0.95l-0.48,0.83C10.02,11.91,10.14,12.37,10.5,12.57z M23,9.97c0-0.41-0.34-0.75-0.75-0.75H21.3l0.47-0.82c0.21-0.36,0.08-0.82-0.27-1.03l0,0c-0.36-0.21-0.82-0.08-1.02,0.27L20,8.47 l-0.47-0.82c-0.21-0.36-0.67-0.48-1.02-0.27l0,0c-0.36,0.21-0.48,0.67-0.27,1.03l0.47,0.82h-0.95C17.34,9.22,17,9.56,17,9.97v0 c0,0.41,0.34,0.75,0.75,0.75h0.95l-0.48,0.83c-0.21,0.36-0.08,0.82,0.28,1.02l0,0c0.36,0.21,0.82,0.08,1.03-0.28L20,11.47 l0.48,0.83c0.21,0.36,0.67,0.48,1.03,0.28l0,0c0.36-0.21,0.48-0.66,0.28-1.02l-0.48-0.83h0.95C22.66,10.72,23,10.38,23,9.97 L23,9.97z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update\": {\n    \"name\": \"security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M14.79,12.21H13V9c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3.21H9.21c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.79 c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79C15.46,12.75,15.24,12.21,14.79,12.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"developer_mode\": {\n    \"name\": \"developer_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v1c0 .55.45 1 1 1s1-.45 1-1V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V5zm9.12 10.88l3.17-3.17c.39-.39.39-1.02 0-1.41l-3.17-3.17c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41L17.17 12l-2.47 2.47c-.39.39-.39 1.02 0 1.41.39.39 1.03.39 1.42 0zm-6.83-1.42L6.83 12l2.46-2.46c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0L4.7 11.3c-.39.39-.39 1.02 0 1.41l3.17 3.17c.39.39 1.03.39 1.42 0 .4-.39.39-1.03 0-1.42zM17 19H7v-1c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"screenshot\": {\n    \"name\": \"screenshot\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M9.5,8.5h1.75C11.66,8.5,12,8.16,12,7.75v0C12,7.34,11.66,7,11.25,7h-2.5C8.34,7,8,7.34,8,7.75v2.5C8,10.66,8.34,11,8.75,11h0 c0.41,0,0.75-0.34,0.75-0.75V8.5z M12.75,17h2.5c0.41,0,0.75-0.34,0.75-0.75v-2.5c0-0.41-0.34-0.75-0.75-0.75h0 c-0.41,0-0.75,0.34-0.75,0.75v1.75h-1.75c-0.41,0-0.75,0.34-0.75,0.75l0,0C12,16.66,12.34,17,12.75,17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_2_bar\": {\n    \"name\": \"signal_cellular_alt_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.5,20C5.67,20,5,19.33,5,18.5v-3C5,14.67,5.67,14,6.5,14S8,14.67,8,15.5v3C8,19.33,7.33,20,6.5,20z M12.5,20 c-0.83,0-1.5-0.67-1.5-1.5v-8C11,9.67,11.67,9,12.5,9S14,9.67,14,10.5v8C14,19.33,13.33,20,12.5,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,8c0.55,0,1,0.45,1,1v6c0,0.55-0.45,1-1,1s-1-0.45-1-1V9C9,8.45,9.45,8,10,8z M6,16c0.55,0,1-0.45,1-1v-3 c0-0.55-0.45-1-1-1s-1,0.45-1,1v3C5,15.55,5.45,16,6,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dataset\": {\n    \"name\": \"dataset\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,17H7v-4h4V17z M11,11H7V7h4V11 z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M9,14H6v-3h3V14z M9,9H6V6h3V9z M14,14h-3v-3h3V14z M14,9h-3V6h3V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_score\": {\n    \"name\": \"sports_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,6H9V4h2V6z M15,4h-2v2h2V4z M9,14h2v-2H9V14z M19,10V8h-2v2H19z M19,14v-2h-2v2H19z M13,14h2v-2h-2V14z M19,4h-2v2h2 V4z M13,8V6h-2v2H13z M7,10V8h2V6H7V5c0-0.55-0.45-1-1-1h0C5.45,4,5,4.45,5,5v14c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-7h2v-2H7 z M15,12h2v-2h-2V12z M11,10v2h2v-2H11z M9,8v2h2V8H9z M13,10h2V8h-2V10z M15,6v2h2V6H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation\": {\n    \"name\": \"screen_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.23 1.75c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm3.89 18.73L3.52 9.88c-.39-.39-.39-1.02 0-1.41l4.95-4.95c.39-.39 1.02-.39 1.41 0l10.61 10.61c.39.39.39 1.02 0 1.41l-4.95 4.95c-.39.38-1.03.38-1.42-.01zM17.61 1.4C16.04.57 14.06-.03 11.81.02c-.18 0-.26.22-.14.35l3.48 3.48 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.8-2.96-7-6.24-8.74zM8.85 20.16l-1.33 1.33c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.57.83 3.55 1.43 5.8 1.38.18 0 .26-.22.14-.35l-3.48-3.49z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto\": {\n    \"name\": \"hdr_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"12.04,8.04 11.95,8.04 10.35,12.59 13.64,12.59\\\"></polygon><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M15,16.41l-0.78-2.22H9.78l-0.79,2.22 C8.87,16.76,8.53,17,8.16,17h0c-0.62,0-1.05-0.62-0.83-1.2l3.34-8.88C10.88,6.37,11.4,6,12,6h0c0.59,0,1.12,0.37,1.33,0.92 l3.34,8.88c0.22,0.58-0.21,1.2-0.83,1.2h0C15.46,17,15.12,16.76,15,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flashlight_on\": {\n    \"name\": \"flashlight_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,4v1h12V4c0-1.1-0.9-2-2-2H8C6.9,2,6,2.9,6,4z\\\"></path><path d=\\\"M6,7v1l2,3v9c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-9l2-3V7H6z M12,15.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S12.83,15.5,12,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_fixed\": {\n    \"name\": \"gps_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error\": {\n    \"name\": \"wifi_tethering_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10.66,7.14c-2.24,0.48-4.04,2.3-4.52,4.54c-0.37,1.75,0.02,3.38,0.89,4.66c0.34,0.51,1.08,0.55,1.51,0.11l0,0 c0.35-0.35,0.37-0.88,0.1-1.28c-0.5-0.76-0.75-1.71-0.61-2.73c0.23-1.74,1.67-3.17,3.41-3.4C13.9,8.71,16,10.61,16,13 c0,0.8-0.24,1.54-0.64,2.16c-0.27,0.41-0.25,0.95,0.1,1.29l0,0c0.43,0.43,1.17,0.4,1.51-0.11C17.62,15.4,18,14.25,18,13 C18,9.25,14.55,6.3,10.66,7.14z M10.25,3.15c-4.05,0.69-7.19,3.69-8.03,7.72c-0.66,3.17,0.2,6.16,1.97,8.38 c0.37,0.46,1.07,0.49,1.49,0.07l0,0c0.36-0.36,0.39-0.93,0.07-1.32c-1.34-1.67-2.03-3.9-1.66-6.28c0.55-3.47,3.42-6.24,6.92-6.65 c2.76-0.33,5.27,0.74,6.93,2.59C18.14,7.87,18.41,8,18.7,8h0c0.85,0,1.34-1.01,0.77-1.65C17.28,3.9,13.91,2.53,10.25,3.15z M12,11 c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59C13.77,14.05,14,13.55,14,13 C14,11.9,13.1,11,12,11z M21,10L21,10c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-4C20,10.45,20.45,10,21,10z M21,18L21,18c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0C20,18.45,20.45,18,21,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><circle cx=\\\"10\\\" cy=\\\"11\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8.92,6.11C6.95,6.52,5.4,8.17,5.07,10.15c-0.23,1.39,0.12,2.69,0.84,3.72c0.26,0.38,0.81,0.41,1.14,0.08l0,0 C7.3,13.7,7.33,13.3,7.13,13c-0.52-0.75-0.76-1.7-0.55-2.72c0.26-1.31,1.3-2.39,2.6-2.69C11.46,7.07,13.5,8.8,13.5,11 c0,0.75-0.23,1.44-0.63,2.01c-0.21,0.29-0.17,0.69,0.09,0.95l0,0c0.32,0.32,0.87,0.29,1.13-0.08C14.66,13.06,15,12.07,15,11 C15,7.89,12.16,5.44,8.92,6.11z\\\"></path><path d=\\\"M8.39,3.16C5.26,3.76,2.75,6.29,2.15,9.43c-0.48,2.51,0.22,4.86,1.63,6.6c0.28,0.35,0.81,0.38,1.12,0.06 c0.27-0.27,0.3-0.69,0.06-0.98C4.13,14.09,3.6,12.8,3.51,11.4C3.29,7.84,6.33,4.55,9.9,4.5c2.34-0.03,4.39,1.17,5.57,3h1.73 C15.68,4.39,12.22,2.41,8.39,3.16z\\\"></path><path d=\\\"M17.25,9c-0.41,0-0.75,0.34-0.75,0.75v3.5c0,0.41,0.34,0.75,0.75,0.75S18,13.66,18,13.25v-3.5C18,9.34,17.66,9,17.25,9z\\\"></path><circle cx=\\\"17.25\\\" cy=\\\"15.75\\\" r=\\\".75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_off\": {\n    \"name\": \"signal_cellular_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3.41c0-.89-1.08-1.34-1.71-.71l-6.6 6.6L21 17.61V3.41zm.44 17.47L5.62 5.06c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l5.66 5.66-7.16 7.16c-.63.63-.19 1.71.7 1.71h15.32l1.29 1.29c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_lock_portrait\": {\n    \"name\": \"screen_lock_portrait\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,1.99,2,1.99L17,23c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z\\\"></path><path d=\\\"M14,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C15,11.45,14.55,11,14,11z M13,11h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path></g></g><g></path>\"\n      }\n    }\n  },\n  \"pin\": {\n    \"name\": \"pin\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M7.64,14.47 C7.64,14.76,7.4,15,7.11,15H7.02c-0.29,0-0.53-0.24-0.53-0.53V10.5l-0.45,0.33c-0.24,0.18-0.59,0.12-0.76-0.14 c-0.15-0.24-0.1-0.55,0.13-0.72L6.6,9.12C6.71,9.04,6.84,9,6.98,9c0.36,0,0.66,0.29,0.66,0.66V14.47z M13.01,15h-2.67 c-0.4,0-0.72-0.32-0.72-0.72c0-0.19,0.08-0.38,0.21-0.51c0.95-0.95,1.58-1.58,1.92-1.94c0.4-0.42,0.54-0.69,0.54-1.06 c0-0.4-0.31-0.72-0.81-0.72c-0.34,0-0.57,0.16-0.72,0.37c-0.15,0.2-0.41,0.26-0.64,0.16c-0.34-0.14-0.45-0.57-0.22-0.85 c0.15-0.19,0.37-0.38,0.67-0.53c0.69-0.33,1.48-0.2,1.95,0.03c0.86,0.44,0.91,1.24,0.91,1.48c0,0.64-0.31,1.26-0.92,1.86 c-0.25,0.25-0.72,0.71-1.4,1.39l0.03,0.05h1.88c0.27,0,0.49,0.22,0.49,0.49S13.28,15,13.01,15z M18.75,14.15 C18.67,14.28,18.19,15,16.99,15c-0.03,0-1.23,0.06-1.83-0.98c-0.15-0.26-0.04-0.6,0.24-0.71l0.12-0.05 c0.22-0.09,0.47-0.01,0.59,0.19c0.14,0.24,0.39,0.49,0.88,0.49c0.41,0,0.89-0.28,0.89-0.77c0-0.55-0.48-0.79-1.04-0.79l0,0 c-0.27,0-0.49-0.23-0.49-0.5c0-0.26,0.2-0.47,0.45-0.49l0-0.01c0.33,0,0.88-0.14,0.88-0.72c0-0.39-0.31-0.65-0.75-0.65 c-0.32,0-0.53,0.13-0.67,0.3c-0.14,0.18-0.37,0.26-0.58,0.17l-0.08-0.03c-0.3-0.12-0.4-0.5-0.2-0.75C15.67,9.35,16.16,9,16.94,9 c1.09,0,1.54,0.64,1.62,0.75c0.33,0.5,0.28,1.16,0.02,1.57c-0.15,0.22-0.32,0.38-0.52,0.48v0.07c0.28,0.11,0.51,0.28,0.68,0.52 C19.11,12.91,19.07,13.66,18.75,14.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"4g_mobiledata\": {\n    \"name\": \"4g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M8,7L8,7C7.45,7,7,7.45,7,8v4H5V8c0-0.55-0.45-1-1-1h0C3.45,7,3,7.45,3,8v5c0,0.55,0.45,1,1,1h3v2c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-2h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H9V8C9,7.45,8.55,7,8,7z M17,12L17,12c0,0.55,0.45,1,1,1h1v2h-5V9 h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-6c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-3c0-0.55-0.45-1-1-1h-2 C17.45,11,17,11.45,17,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_to_home_screen\": {\n    \"name\": \"add_to_home_screen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 1.01L8 1c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V5h10v14H8v-1c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM11 15c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1h2.59L3.7 14.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L10 11.41V14c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"usb_off\": {\n    \"name\": \"usb_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.6,5.2l2-2.67c0.2-0.27,0.6-0.27,0.8,0l2,2.67C14.65,5.53,14.41,6,14,6h-1v4.17l-2-2V6h-1C9.59,6,9.35,5.53,9.6,5.2z M15.5,12H16v1.17l1.77,1.77C17.91,14.66,18,14.34,18,14v-2h0.5c0.28,0,0.5-0.22,0.5-0.5v-3C19,8.22,18.78,8,18.5,8h-3 C15.22,8,15,8.22,15,8.5v3C15,11.78,15.22,12,15.5,12z M20.49,21.9L20.49,21.9c-0.39,0.39-1.02,0.39-1.41,0l-5.9-5.9H13v2.28 c0.6,0.34,1,0.98,1,1.72c0,1.2-1.07,2.16-2.31,1.98c-0.88-0.13-1.59-0.88-1.68-1.77c-0.08-0.83,0.33-1.55,0.99-1.93V16H8 c-1.1,0-2-0.9-2-2v-2.28C5.4,11.38,5,10.74,5,10c0-0.59,0.26-1.13,0.68-1.5L2.1,4.93c-0.39-0.39-0.39-1.02,0-1.41 c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97C20.88,20.88,20.88,21.51,20.49,21.9z M11,13.83l-2.51-2.51c-0.14,0.16-0.31,0.29-0.49,0.4 V14h3V13.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,5H8.57C8.14,5,7.91,4.5,8.18,4.18l1.43-1.72c0.2-0.24,0.57-0.24,0.77,0l1.43,1.72C12.09,4.5,11.86,5,11.43,5h-0.68 v3.63l-1.5-1.5V5z M13,10h0.25v1.13l1.23,1.23c0.17-0.24,0.27-0.54,0.27-0.86V10H15c0.28,0,0.5-0.22,0.5-0.5v-2 C15.5,7.22,15.28,7,15,7h-2c-0.28,0-0.5,0.22-0.5,0.5v2C12.5,9.78,12.72,10,13,10z M10.75,13v2.21c0.47,0.27,0.78,0.78,0.75,1.37 c-0.04,0.76-0.66,1.38-1.43,1.42c-0.86,0.04-1.57-0.65-1.57-1.5c0-0.55,0.3-1.03,0.75-1.29V13h-2.5c-0.83,0-1.5-0.67-1.5-1.5V9.79 C4.8,9.53,4.5,9.05,4.5,8.5c0-0.51,0.26-0.96,0.65-1.23L2.4,4.52c-0.29-0.29-0.29-0.77,0-1.06l0,0c0.29-0.29,0.77-0.29,1.06,0 l13.08,13.08c0.29,0.29,0.29,0.77,0,1.06v0c-0.29,0.29-0.77,0.29-1.06,0l-4.6-4.6H10.75z M9.25,11.5v-0.13L7.23,9.35 C7.1,9.53,6.94,9.68,6.75,9.79v1.71H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_1_bar\": {\n    \"name\": \"wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"12\\\" cy=\\\"18\\\" r=\\\"2\\\"></circle></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"10\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g>\"\n      }\n    }\n  },\n  \"summarize\": {\n    \"name\": \"summarize\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15.59,3.59C15.21,3.21,14.7,3,14.17,3H5C3.9,3,3.01,3.9,3.01,5L3,19c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41L15.59,3.59z M8,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S8.55,17,8,17z M8,13c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S8.55,13,8,13z M8,9C7.45,9,7,8.55,7,8s0.45-1,1-1s1,0.45,1,1S8.55,9,8,9z M14,9V4.5l5.5,5.5H15 C14.45,10,14,9.55,14,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_medium\": {\n    \"name\": \"brightness_medium\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69zm-8 1.59V7.1c0-.61.55-1.11 1.15-.99C15.91 6.65 18 9.08 18 12s-2.09 5.35-4.85 5.89c-.6.12-1.15-.38-1.15-.99z\\\"></path>\"\n      }\n    }\n  },\n  \"add_alarm\": {\n    \"name\": \"add_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 12h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1zm6.18-6.99L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off_select\": {\n    \"name\": \"hdr_off_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.83-0.67-1.5-1.5-1.5H14c-0.55,0-1,0.45-1,1v4.31c0,0.38,0.31,0.69,0.69,0.69h0.11 c0.38,0,0.69-0.31,0.69-0.69V20h1.1l0.72,1.59c0.11,0.25,0.36,0.41,0.63,0.41h0c0.5,0,0.83-0.51,0.64-0.97L17.1,19.9 C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2V18.5z M3.5,18h-2v-1.25C1.5,16.34,1.16,16,0.75,16h0C0.34,16,0,16.34,0,16.75v4.5 C0,21.66,0.34,22,0.75,22h0c0.41,0,0.75-0.34,0.75-0.75V19.5h2v1.75C3.5,21.66,3.84,22,4.25,22h0C4.66,22,5,21.66,5,21.25v-4.5 C5,16.34,4.66,16,4.25,16h0c-0.41,0-0.75,0.34-0.75,0.75V18z M10,16H7.5c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1H10 c0.82,0,1.5-0.67,1.5-1.5v-3C11.5,16.67,10.82,16,10,16z M10,20.5H8v-3h2V20.5z M23.25,20H22v1.25c0,0.41-0.34,0.75-0.75,0.75l0,0 c-0.41,0-0.75-0.34-0.75-0.75V20h-1.25c-0.41,0-0.75-0.34-0.75-0.75l0,0c0-0.41,0.34-0.75,0.75-0.75h1.25v-1.25 c0-0.41,0.34-0.75,0.75-0.75l0,0c0.41,0,0.75,0.34,0.75,0.75v1.25h1.25c0.41,0,0.75,0.34,0.75,0.75l0,0 C24,19.66,23.66,20,23.25,20z M10.98,4.15L9.42,2.59c5.1-2.42,10.41,2.89,7.99,7.99l-1.56-1.56C16.66,6.06,13.94,3.34,10.98,4.15z M5.63,3.05L5.63,3.05c-0.39,0.39-0.39,1.02,0,1.41l0.96,0.96c-2.42,5.1,2.88,10.41,7.99,7.99l0.95,0.95 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-9.9-9.91C6.66,2.66,6.02,2.66,5.63,3.05z M8.15,6.98l4.87,4.87 C10.06,12.66,7.34,9.94,8.15,6.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"send_to_mobile\": {\n    \"name\": \"send_to_mobile\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,18H7V6h10v0c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V3c0-1.1-0.9-2-2-2L7,1.01C5.9,1.01,5,1.9,5,3v18c0,1.1,0.9,2,2,2 h10c1.1,0,2-0.9,2-2v-3c0-0.55-0.45-1-1-1h0C17.45,17,17,17.45,17,18L17,18z\\\"></path><path d=\\\"M21.65,11.65l-2.79-2.79C18.54,8.54,18,8.76,18,9.21V11h-4c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h4v1.79 c0,0.45,0.54,0.67,0.85,0.35l2.79-2.79C21.84,12.16,21.84,11.84,21.65,11.65z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dataset_linked\": {\n    \"name\": \"dataset_linked\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.09,17H7v-4h3.69c0.95-0.63,2.09-1,3.31-1h6c0.34,0,0.67,0.04,1,0.09V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h3.81C8.3,20.12,8,19.09,8,18C8,17.66,8.04,17.33,8.09,17z M13,7h4v4h-4V7z M7,7h4v4H7V7z\\\"></path><path d=\\\"M12.03,17.66c0.16-0.98,1.09-1.66,2.08-1.66L15,16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1l-0.83,0 c-2.09,0-3.95,1.53-4.15,3.61C9.79,19.99,11.66,22,14,22h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1 C12.79,20,11.82,18.91,12.03,17.66z\\\"></path><path d=\\\"M19.83,14L19,14c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1l0.89,0c1,0,1.92,0.68,2.08,1.66C22.18,18.91,21.21,20,20,20h-1 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1c2.34,0,4.21-2.01,3.98-4.39C23.78,15.53,21.92,14,19.83,14z\\\"></path><path d=\\\"M15,19h4c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v0C14,18.55,14.45,19,15,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,14v-3h3l0.37,0c0.65-0.31,1.37-0.5,2.13-0.5h5c0.17,0,0.33,0.03,0.5,0.05V4.5C17,3.67,16.33,3,15.5,3h-11 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h2.25C6.6,16.52,6.5,16.03,6.5,15.5s0.1-1.02,0.25-1.5H6z M11,6h3v3h-3V6z M6,6h3 v3H6V6z\\\"></path><path d=\\\"M9.53,15.16c0.16-0.98,1.09-1.66,2.08-1.66l0.89,0c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75l-0.8,0 C9.8,12,8.1,13.42,8,15.31C7.9,17.33,9.5,19,11.5,19h1c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75h-1 C10.29,17.5,9.32,16.41,9.53,15.16z\\\"></path><path d=\\\"M16.3,12l-0.8,0c-0.41,0-0.75,0.34-0.75,0.75v0c0,0.41,0.34,0.75,0.75,0.75l0.89,0c1,0,1.92,0.68,2.08,1.66 c0.21,1.25-0.76,2.34-1.97,2.34h-1c-0.41,0-0.75,0.34-0.75,0.75l0,0c0,0.41,0.34,0.75,0.75,0.75h1c2,0,3.6-1.67,3.5-3.69 C19.9,13.42,18.2,12,16.3,12z\\\"></path><path d=\\\"M12.5,16.25h3c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75h-3c-0.41,0-0.75,0.34-0.75,0.75v0 C11.75,15.91,12.09,16.25,12.5,16.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mode_night\": {\n    \"name\": \"mode_night\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.93,2.3C9.89,1.8,7.91,1.95,6.16,2.58C5.44,2.84,5.25,3.8,5.85,4.29C8.08,6.12,9.5,8.89,9.5,12 c0,3.11-1.42,5.88-3.65,7.71c-0.59,0.49-0.42,1.45,0.31,1.7C7.2,21.79,8.33,22,9.5,22c6.05,0,10.85-5.38,9.87-11.6 C18.76,6.48,15.78,3.24,11.93,2.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_4_bar\": {\n    \"name\": \"signal_wifi_statusbar_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58c0.39,0.39,1.02,0.39,1.42,0L23.27,9.71 c0.41-0.41,0.38-1.08-0.06-1.47C20.22,5.6,16.3,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_high\": {\n    \"name\": \"brightness_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"ad_units\": {\n    \"name\": \"ad_units\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M16,19H8c-0.55,0-1-0.45-1-1V6 c0-0.55,0.45-1,1-1h8c0.55,0,1,0.45,1,1v12C17,18.55,16.55,19,16,19z\\\"></path><path d=\\\"M15,6H9C8.45,6,8,6.45,8,7v0c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v0C16,6.45,15.55,6,15,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"4g_plus_mobiledata\": {\n    \"name\": \"4g_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9c0.55,0,1-0.45,1-1s-0.45-1-1-1h-5C9.9,7,9,7.9,9,9v6c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-3c0-0.55-0.45-1-1-1h-2 c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v2h-4V9H16z\\\"></path><path d=\\\"M23,11h-1v-1c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h-1c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v1c0,0.55,0.45,1,1,1s1-0.45,1-1v-1h1 c0.55,0,1-0.45,1-1S23.55,11,23,11z\\\"></path><path d=\\\"M7,12V8c0-0.55-0.45-1-1-1S5,7.45,5,8v4H3V8c0-0.55-0.45-1-1-1S1,7.45,1,8v5c0,0.55,0.45,1,1,1h3v2c0,0.55,0.45,1,1,1 s1-0.45,1-1v-2c0.55,0,1-0.45,1-1S7.55,12,7,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"r_mobiledata\": {\n    \"name\": \"r_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7.8,7.2l0.65,1.52C8.71,9.33,8.27,10,7.61,10h0c-0.37,0-0.7-0.22-0.85-0.56L5.87,7.33H4v1.75C4,9.59,3.59,10,3.08,10 H2.92C2.41,10,2,9.59,2,9.08V3c0-0.55,0.45-1,1-1h4c1.1,0,2,0.9,2,2v1.33C9,6.13,8.47,6.87,7.8,7.2z M7,4H4v1.33h3V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sell\": {\n    \"name\": \"sell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21.41,11.41l-8.83-8.83C12.21,2.21,11.7,2,11.17,2H4C2.9,2,2,2.9,2,4v7.17c0,0.53,0.21,1.04,0.59,1.41l8.83,8.83 c0.78,0.78,2.05,0.78,2.83,0l7.17-7.17C22.2,13.46,22.2,12.2,21.41,11.41z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5 S7.33,8,6.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"play_lesson\": {\n    \"name\": \"play_lesson\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,11c0.34,0,0.67,0.03,1,0.08V4c0-1.1-0.9-2-2-2H5C3.9,2,3,2.9,3,4v16c0,1.1,0.9,2,2,2h7.26C11.47,20.87,11,19.49,11,18 C11,14.13,14.13,11,18,11z M7.76,10.55C7.42,10.75,7,10.51,7,10.12V4h5v6.12c0,0.39-0.42,0.63-0.76,0.43L9.5,9.5L7.76,10.55z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M16.75,19.6v-3.2c0-0.39,0.43-0.63,0.76-0.42l2.56,1.6 c0.31,0.2,0.31,0.65,0,0.85l-2.56,1.6C17.18,20.23,16.75,19.99,16.75,19.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_2_bar\": {\n    \"name\": \"wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,16,12,16z M5.38,14.37c-0.63-0.63-0.59-1.71,0.13-2.24 C7.33,10.79,9.57,10,12,10c2.43,0,4.67,0.79,6.49,2.13c0.72,0.53,0.76,1.6,0.13,2.24c-0.53,0.54-1.37,0.57-1.98,0.12 C15.33,13.55,13.73,13,12,13c-1.73,0-3.33,0.55-4.64,1.49C6.75,14.93,5.91,14.9,5.38,14.37z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,13c-0.83,0-1.5,0.67-1.5,1.5S9.17,16,10,16s1.5-0.67,1.5-1.5S10.83,13,10,13z M4.33,11.33 c0.35,0.35,0.89,0.39,1.29,0.1C6.85,10.53,8.36,10,10,10s3.15,0.53,4.39,1.43c0.4,0.29,0.94,0.24,1.29-0.1 c0.43-0.43,0.39-1.16-0.11-1.52C14,8.67,12.08,8,10,8S6,8.67,4.43,9.81C3.94,10.17,3.89,10.89,4.33,11.33z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_cellular_null\": {\n    \"name\": \"signal_cellular_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.83V19c0 .55-.45 1-1 1H6.83L20 6.83m.29-3.12L3.71 20.29c-.63.63-.19 1.71.7 1.71H20c1.1 0 2-.9 2-2V4.41c0-.89-1.08-1.33-1.71-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling_3\": {\n    \"name\": \"wifi_calling_3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.54,4.8C20.17,3.67,18.41,3,16.49,3c-1.92,0-3.67,0.67-5.05,1.8c-0.34,0.28-0.36,0.79-0.05,1.1l0.01,0.01 c0.27,0.27,0.7,0.29,1,0.05c1.12-0.91,2.54-1.45,4.09-1.45s2.97,0.55,4.09,1.45c0.3,0.24,0.73,0.23,1-0.05l0.01-0.01 C21.9,5.59,21.88,5.07,21.54,4.8z\\\"></path><path d=\\\"M19.45,8.04L19.45,8.04c0.33-0.33,0.28-0.88-0.11-1.15C18.54,6.33,17.55,6,16.49,6s-2.04,0.33-2.85,0.89 c-0.38,0.27-0.44,0.82-0.11,1.15l0,0c0.25,0.25,0.65,0.31,0.94,0.1c0.57-0.4,1.27-0.64,2.02-0.64s1.45,0.24,2.02,0.64 C18.8,8.35,19.2,8.29,19.45,8.04z\\\"></path><path d=\\\"M16.49,8.9c-0.32,0-0.62,0.08-0.89,0.21c-0.3,0.15-0.34,0.56-0.11,0.79l0.65,0.65c0.2,0.2,0.51,0.2,0.71,0l0.65-0.65 c0.23-0.23,0.19-0.64-0.11-0.79C17.12,8.97,16.81,8.9,16.49,8.9z\\\"></path><path d=\\\"M15.63,14.4l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3 L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43 c0.56,0.03,1.03-0.44,1.03-1l0-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C16.2,14.07,15.86,14.17,15.63,14.4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pattern\": {\n    \"name\": \"pattern\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,8 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M18,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S19.1,10,18,10z M17.98,16 c-0.74,0-1.37,0.4-1.72,1h-2.54c-0.34-0.6-0.98-1-1.72-1s-1.37,0.4-1.72,1H8.41l3.07-3.07C11.65,13.97,11.82,14,12,14 c1.1,0,2-0.9,2-2c0-0.18-0.03-0.35-0.07-0.51l3.56-3.56C17.65,7.97,17.82,8,18,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56C12.35,10.03,12.18,10,12,10c-1.1,0-2,0.9-2,2c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56 C6.35,16.03,6.18,16,6,16c-1.1,0-2,0.9-2,2s0.9,2,2,2c0.74,0,1.37-0.4,1.72-1h2.57c0.34,0.6,0.98,1,1.72,1s1.37-0.4,1.72-1h2.55 c0.34,0.6,0.98,1,1.72,1c1.1,0,2-0.9,2-2C19.98,16.9,19.08,16,17.98,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"reviews\": {\n    \"name\": \"reviews\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v15.59c0,0.89,1.08,1.34,1.71,0.71L6,18h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M13.57,11.57 l-1.12,2.44c-0.18,0.39-0.73,0.39-0.91,0l-1.12-2.44l-2.44-1.12c-0.39-0.18-0.39-0.73,0-0.91l2.44-1.12l1.12-2.44 c0.18-0.39,0.73-0.39,0.91,0l1.12,2.44l2.44,1.12c0.39,0.18,0.39,0.73,0,0.91L13.57,11.57z\\\"></path></g>\"\n      }\n    }\n  },\n  \"security_update_good\": {\n    \"name\": \"security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M10.34,14.29c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2.83,2.83 l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L10.34,14.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"quiz\": {\n    \"name\": \"quiz\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,20H4V7c0-0.55-0.45-1-1-1S2,6.45,2,7v13c0,1.1,0.9,2,2,2h13c0.55,0,1-0.45,1-1S17.55,20,17,20z\\\"></path><path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M14.01,15 c-0.59,0-1.05-0.47-1.05-1.05c0-0.59,0.47-1.04,1.05-1.04c0.59,0,1.04,0.45,1.04,1.04C15.04,14.53,14.6,15,14.01,15z M16.51,8.83 c-0.63,0.93-1.23,1.21-1.56,1.81c-0.08,0.14-0.13,0.26-0.16,0.49c-0.05,0.39-0.36,0.68-0.75,0.68h-0.03 c-0.44,0-0.79-0.38-0.75-0.82c0.03-0.28,0.09-0.57,0.25-0.84c0.41-0.73,1.18-1.16,1.63-1.8c0.48-0.68,0.21-1.94-1.14-1.94 c-0.61,0-1.01,0.32-1.26,0.7c-0.19,0.29-0.57,0.39-0.89,0.25l0,0c-0.42-0.18-0.6-0.7-0.34-1.07C12.02,5.55,12.87,5,13.99,5 c1.23,0,2.08,0.56,2.51,1.26C16.87,6.87,17.08,7.99,16.51,8.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_active\": {\n    \"name\": \"airplanemode_active\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M21.48,13.7L13.5,9V3.5C13.5,2.67,12.83,2,12,2c-0.83,0-1.5,0.67-1.5,1.5V9l-7.98,4.7C2.2,13.88,2,14.23,2,14.6 c0,0.7,0.67,1.2,1.34,1.01l7.16-2.1V19l-2.26,1.35C8.09,20.44,8,20.61,8,20.78l0,0.5h0v0.08c0,0.33,0.31,0.57,0.62,0.49l2.92-0.73 L12,21l0.38,0.09c0,0,0,0,0,0l0.42,0.11l1.9,0.48l0,0l0.67,0.17c0.32,0.08,0.62-0.16,0.62-0.49v-0.37c0,0,0,0,0,0v-0.21 c0-0.18-0.09-0.34-0.24-0.43L13.5,19v-5.5l7.16,2.1C21.33,15.8,22,15.3,22,14.6C22,14.23,21.8,13.88,21.48,13.7z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M16.77,11.85l-1.4-0.93L11,8V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-4.22,2.81h0l-1.55,1.04C3.09,11.94,3,12.1,3,12.28 c0,0.36,0.35,0.61,0.68,0.49L9,11v4l-1.25,0.83C7.6,15.94,7.5,16.11,7.5,16.3c0,0.36,0.33,0.63,0.68,0.56L10,16.5l0,0l0,0 l1.82,0.36c0.35,0.07,0.68-0.2,0.68-0.56c0-0.19-0.1-0.37-0.25-0.47L11,15v-4l5.32,1.77c0.34,0.11,0.68-0.14,0.68-0.49 C17,12.1,16.91,11.94,16.77,11.85z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_off\": {\n    \"name\": \"nearby_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.41,13.42L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58-2.58c0.78-0.78,2.05-0.78,2.83,0l8,8 C22.2,11.37,22.2,12.63,21.41,13.42z M20.48,21.9L20.48,21.9c-0.39,0.39-1.02,0.39-1.41,0L16,18.83l-2.58,2.58 c-0.78,0.78-2.05,0.78-2.83,0l-8-8c-0.78-0.78-0.78-2.05,0-2.83L5.17,8L2.1,4.93c-0.39-0.39-0.39-1.02,0-1.41l0,0 c0.39-0.39,1.02-0.39,1.41,0l16.98,16.97C20.87,20.87,20.87,21.51,20.48,21.9z M14.19,17.02l-1.39-1.39l-0.09,0.09 c-0.39,0.39-1.02,0.39-1.42,0l-3.01-3.01c-0.39-0.39-0.39-1.02,0-1.41l0.09-0.09l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M15.71,11.29l-3.01-3.01c-0.39-0.39-1.02-0.39-1.41,0L11.2,8.38l4.42,4.42l0.09-0.09C16.1,12.32,16.1,11.68,15.71,11.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update_warning\": {\n    \"name\": \"security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M12,13c0.55,0,1-0.45,1-1V8c0-0.55-0.45-1-1-1s-1,0.45-1,1v4C11,12.55,11.45,13,12,13z\\\"></path><path d=\\\"M17,1H7C5.9,1,5.01,1.9,5.01,3v18c0,1.1,0.89,2,1.99,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_low\": {\n    \"name\": \"brightness_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31l1.9-1.9c.78-.78.78-2.05 0-2.83L20 8.69V6c0-1.1-.9-2-2-2h-2.69l-1.9-1.9c-.78-.78-2.05-.78-2.83 0L8.69 4H6c-1.1 0-2 .9-2 2v2.69l-1.9 1.9c-.78.78-.78 2.05 0 2.83l1.9 1.9V18c0 1.1.9 2 2 2h2.69l1.9 1.9c.78.78 2.05.78 2.83 0l1.9-1.9H18c1.1 0 2-.9 2-2v-2.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"nfc\": {\n    \"name\": \"nfc\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 18H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1zM16 6h-3c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v7c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V8h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto_select\": {\n    \"name\": \"hdr_auto_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10,16H7.25c-0.41,0-0.75,0.34-0.75,0.75v4.5C6.5,21.66,6.84,22,7.25,22H10c0.83,0,1.5-0.67,1.5-1.5v-3 C11.5,16.67,10.83,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path><path d=\\\"M4.25,16c-0.41,0-0.75,0.34-0.75,0.75V18h-2v-1.25C1.5,16.34,1.16,16,0.75,16S0,16.34,0,16.75v4.5 C0,21.66,0.34,22,0.75,22s0.75-0.34,0.75-0.75V19.5h2v1.75C3.5,21.66,3.84,22,4.25,22S5,21.66,5,21.25v-4.5 C5,16.34,4.66,16,4.25,16z\\\"></path><path d=\\\"M23.25,18.5H22v-1.25c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75v1.25h-1.25c-0.41,0-0.75,0.34-0.75,0.75 S18.84,20,19.25,20h1.25v1.25c0,0.41,0.34,0.75,0.75,0.75S22,21.66,22,21.25V20h1.25c0.41,0,0.75-0.34,0.75-0.75 S23.66,18.5,23.25,18.5z\\\"></path><path d=\\\"M16.5,16h-2.75C13.34,16,13,16.34,13,16.75v4.56c0,0.38,0.31,0.69,0.69,0.69h0.11c0.38,0,0.69-0.31,0.69-0.69V20h1.1 l0.72,1.59c0.11,0.25,0.36,0.41,0.63,0.41c0.5,0,0.83-0.51,0.64-0.97L17.1,19.9c0.5-0.3,0.9-0.8,0.9-1.4v-1 C18,16.67,17.33,16,16.5,16z M16.5,18.5h-2v-1h2V18.5z\\\"></path><polygon points=\\\"11.97,5.3 10.95,8.19 13.05,8.19 12.03,5.3\\\"></polygon><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14.44,11c-0.24,0-0.45-0.15-0.53-0.38l-0.49-1.41h-2.83 l-0.5,1.41C10.01,10.85,9.8,11,9.56,11c-0.39,0-0.67-0.39-0.53-0.76l2.12-5.65C11.29,4.23,11.62,4,12,4s0.71,0.23,0.85,0.59 l2.12,5.65C15.11,10.61,14.84,11,14.44,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_bad\": {\n    \"name\": \"gpp_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18.7,4.51l-6-2.25c-0.45-0.17-0.95-0.17-1.4,0l-6,2.25C4.52,4.81,4,5.55,4,6.39v4.7c0,4.94,3.27,9.57,7.71,10.83 c0.19,0.05,0.39,0.05,0.57,0C16.73,20.66,20,16.03,20,11.09v-4.7C20,5.55,19.48,4.81,18.7,4.51z M14.8,14.79L14.8,14.79 c-0.39,0.39-1.02,0.39-1.41,0.01L12,13.42l-1.39,1.38c-0.39,0.39-1.02,0.39-1.41,0l0,0c-0.39-0.39-0.39-1.02,0-1.41L10.59,12 L9.2,10.61c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0L12,10.59l1.39-1.39c0.39-0.39,1.02-0.39,1.41,0l0,0 c0.39,0.39,0.39,1.02,0,1.41L13.42,12l1.38,1.38C15.19,13.77,15.19,14.4,14.8,14.79z\\\"></path></g>\"\n      }\n    }\n  },\n  \"storm\": {\n    \"name\": \"storm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18.93,8C16.72,4.18,11.82,2.87,8,5.07c-1.41,0.82-2.48,2-3.16,3.37c-0.1-1.75,0.1-3.5,0.59-5.17C5.61,2.63,5.14,2,4.48,2 H4.47C4.04,2,3.64,2.28,3.52,2.7C2.24,7.01,2.65,11.81,5.07,16c1.1,1.91,2.88,3.19,4.86,3.72c1.98,0.53,4.16,0.31,6.07-0.79 c1.41-0.82,2.48-2,3.16-3.37c0.1,1.75-0.09,3.5-0.58,5.18C18.4,21.37,18.87,22,19.53,22h0c0.44,0,0.83-0.28,0.95-0.7 C21.75,16.99,21.35,12.19,18.93,8z M15,17.2c-2.87,1.65-6.54,0.67-8.2-2.2c-0.11-0.2-0.21-0.4-0.3-0.6C5.3,11.64,6.33,8.34,9,6.8 c2.86-1.65,6.54-0.67,8.2,2.2c0.11,0.2,0.21,0.4,0.3,0.6C18.7,12.36,17.67,15.66,15,17.2z M12,10c1.1,0,2,0.9,2,2s-0.9,2-2,2 s-2-0.9-2-2S10.9,10,12,10 M12,8c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S14.21,8,12,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_searching\": {\n    \"name\": \"bluetooth_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.98 10.28l-1.38 1.38c-.2.2-.2.51 0 .71l1.38 1.38c.28.28.75.15.85-.23.11-.5.17-1 .17-1.52 0-.51-.06-1.01-.18-1.48-.09-.38-.56-.52-.84-.24zm4.12-2.5c-.25-.55-.98-.67-1.4-.24-.26.26-.31.64-.17.98.46 1.07.72 2.24.72 3.47 0 1.24-.26 2.42-.73 3.49-.14.32-.09.69.16.94.41.41 1.1.29 1.35-.23.63-1.3.98-2.76.98-4.3-.01-1.45-.33-2.85-.91-4.11zM11.41 12L15 8.42c.39-.39.39-1.02 0-1.42l-4.29-4.29c-.63-.63-1.71-.19-1.71.7v6.18L5.11 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L8.59 12 3.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L9 14.41v6.18c0 .89 1.08 1.34 1.71.71L15 17c.39-.39.39-1.02 0-1.42L11.41 12zM11 5.83l1.88 1.88L11 9.59V5.83zm0 12.34v-3.76l1.88 1.88L11 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_on\": {\n    \"name\": \"media_bluetooth_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,5l0.01,8.55c-0.6-0.34-1.28-0.55-2-0.55C4.79,13,3,14.79,3,17s1.79,4,4.01,4S11,19.21,11,17V7h2c1.1,0,2-0.9,2-2v0 c0-1.1-0.9-2-2-2h-2C9.9,3,9,3.9,9,5z M20.29,11.72l-2.47-2.47c-0.32-0.31-0.85-0.09-0.85,0.35v3.94l-2.33-2.33 c-0.23-0.23-0.61-0.23-0.85,0l0,0c-0.23,0.23-0.23,0.62,0,0.85L16.73,15l-2.93,2.93c-0.23,0.23-0.23,0.61,0,0.85l0,0 c0.23,0.23,0.61,0.23,0.85,0l2.33-2.33v3.94c0,0.45,0.54,0.67,0.85,0.35l2.46-2.46c0.39-0.39,0.39-1.02,0-1.41L18.42,15l1.87-1.86 C20.68,12.75,20.68,12.11,20.29,11.72z M18.17,11.3l1.13,1.13l-1.13,1.13V11.3z M19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wallpaper\": {\n    \"name\": \"wallpaper\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 5c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v6c0 .55.45 1 1 1s1-.45 1-1V5zm5.61 8.49l-2.96 3.7c-.26.33-.03.81.39.81H17c.41 0 .65-.47.4-.8l-2-2.67c-.2-.27-.6-.27-.8 0l-1.63 2.18-2.58-3.22c-.2-.25-.58-.25-.78 0zM17 8.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-6c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1 .45 1 1v5c0 .55.45 1 1 1s1-.45 1-1V4c0-1.1-.9-2-2-2zm0 17c0 .55-.45 1-1 1h-5c-.55 0-1 .45-1 1s.45 1 1 1h6c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5zM3 13c-.55 0-1 .45-1 1v6c0 1.1.9 2 2 2h6c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"edgesensor_low\": {\n    \"name\": \"edgesensor_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7L3,7c0.55,0,1,0.45,1,1v5c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V8C2,7.45,2.45,7,3,7z M21,10L21,10 c0.55,0,1,0.45,1,1v5c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-5C20,10.45,20.45,10,21,10z M16,2.01L8,2C6.9,2,6,2.9,6,4v16 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,17H8V7h8V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"restart_alt\": {\n    \"name\": \"restart_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,5V3.21c0-0.45-0.54-0.67-0.85-0.35L8.35,5.65c-0.2,0.2-0.2,0.51,0,0.71l2.79,2.79C11.46,9.46,12,9.24,12,8.79V7 c3.31,0,6,2.69,6,6c0,2.72-1.83,5.02-4.31,5.75C13.27,18.87,13,19.27,13,19.7v0c0,0.65,0.62,1.16,1.25,0.97 C17.57,19.7,20,16.64,20,13C20,8.58,16.42,5,12,5z\\\"></path><path d=\\\"M6,13c0-1.34,0.44-2.58,1.19-3.59c0.3-0.4,0.26-0.95-0.09-1.31l0,0C6.68,7.68,5.96,7.72,5.6,8.2C4.6,9.54,4,11.2,4,13 c0,3.64,2.43,6.7,5.75,7.67C10.38,20.86,11,20.35,11,19.7v0c0-0.43-0.27-0.83-0.69-0.95C7.83,18.02,6,15.72,6,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"credit_score\": {\n    \"name\": \"credit_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h4c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4v-6h18V6 C22,4.9,21.1,4,20,4z M20,8H4V6h16V8z M14.93,19.17l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83c0.39,0.39,1.02,0.39,1.41,0l5.66-5.66c0.39-0.39,0.39-1.02,0-1.41v0c-0.39-0.39-1.02-0.39-1.41,0L14.93,19.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_find\": {\n    \"name\": \"wifi_find\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11,14c0-3.36,2.64-6,6-6c2.2,0,4.08,1.13,5.13,2.86l0.36-0.37c0.86-0.86,0.76-2.27-0.2-3.01C19.44,5.3,15.87,4,12,4 C8.13,4,4.56,5.3,1.71,7.48c-0.96,0.74-1.06,2.15-0.2,3.01l9.08,9.09c0.78,0.78,2.05,0.78,2.83,0l0.45-0.45 C12.14,18.09,11,16.2,11,14z\\\"></path></g><g><path d=\\\"M20.44,16.03C20.79,15.44,21,14.75,21,14c0-2.24-1.76-4-4-4s-4,1.76-4,4c0,2.24,1.76,4,4,4c0.75,0,1.44-0.21,2.03-0.56 l1.85,1.85c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L20.44,16.03z M17,16c-1.12,0-2-0.88-2-2c0-1.12,0.88-2,2-2 s2,0.88,2,2C19,15.12,18.12,16,17,16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M18.72,5.92C16.29,4.09,13.28,3,10,3S3.71,4.09,1.28,5.92C0.57,6.46,0.52,7.53,1.15,8.16l7.79,7.78 c0.59,0.59,1.53,0.59,2.12,0l0.93-0.93C10.52,14.27,9.5,12.76,9.5,11c0-2.49,2.01-4.5,4.5-4.5c1.76,0,3.27,1.02,4.01,2.5 l0.84-0.84C19.48,7.53,19.43,6.46,18.72,5.92z\\\"></path></g><g><path d=\\\"M16.58,12.52C16.84,12.07,17,11.56,17,11c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.56,0,1.07-0.16,1.52-0.42 l1.89,1.89c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L16.58,12.52z M12.5,11c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 s-0.67,1.5-1.5,1.5S12.5,11.83,12.5,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"punch_clock\": {\n    \"name\": \"punch_clock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,6h-1V3c0-1.1-0.9-2-2-2H8C6.9,1,6,1.9,6,3v3H5C3.9,6,3,6.9,3,8v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8 C21,6.9,20.1,6,19,6z M8,3h8v3H8V3z M12,19c-2.76,0-5-2.24-5-5s2.24-5,5-5c2.76,0,5,2.24,5,5S14.76,19,12,19z\\\"></path><path d=\\\"M12.5,13.79V12c0-0.28-0.22-0.5-0.5-0.5h0c-0.28,0-0.5,0.22-0.5,0.5v2c0,0.13,0.05,0.26,0.15,0.35l1.14,1.14 c0.2,0.2,0.51,0.2,0.71,0c0.2-0.2,0.2-0.51,0-0.71L12.5,13.79z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.5,11.29V10c0-0.28-0.22-0.5-0.5-0.5h0c-0.28,0-0.5,0.22-0.5,0.5v1.5c0,0.13,0.05,0.26,0.15,0.35L10.79,13 c0.2,0.2,0.51,0.2,0.71,0s0.2-0.51,0-0.71L10.5,11.29z\\\"></path><path d=\\\"M15.5,5H15V2.5C15,1.67,14.33,1,13.5,1h-7C5.67,1,5,1.67,5,2.5V5H4.5C3.67,5,3,5.67,3,6.5v10C3,17.33,3.67,18,4.5,18h11 c0.83,0,1.5-0.67,1.5-1.5v-10C17,5.67,16.33,5,15.5,5z M6.5,2.5h7V5h-7V2.5z M10,15.5c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C14,13.71,12.21,15.5,10,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"storage\": {\n    \"name\": \"storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 20h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm0-3h2v2H4v-2zM2 6c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2zm4 1H4V5h2v2zm-2 7h16c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm0-3h2v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"network_cell\": {\n    \"name\": \"network_cell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4.41,22H21c0.55,0,1-0.45,1-1V4.41c0-0.89-1.08-1.34-1.71-0.71L3.71,20.29C3.08,20.92,3.52,22,4.41,22z M20,20h-3V9.83 l3-3V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fluorescent\": {\n    \"name\": \"fluorescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,15h10c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H7c-1.1,0-2,0.9-2,2v2C5,14.1,5.9,15,7,15z\\\"></path><path d=\\\"M12,2L12,2c-0.56,0-1,0.45-1,1V4c0,0.55,0.45,1,1,1H12c0.55,0,1-0.45,1-1V3C13,2.45,12.55,2,12,2z\\\"></path><path d=\\\"M19.79,5.3L19.79,5.3c-0.39-0.39-1.02-0.39-1.41,0l-0.38,0.38c-0.39,0.39-0.39,1.02,0,1.41l0,0 c0.39,0.39,1.02,0.39,1.41,0l0.38-0.38C20.18,6.33,20.18,5.69,19.79,5.3z\\\"></path><path d=\\\"M12,22L12,22c0.56,0,1-0.45,1-1V20c0-0.55-0.45-1-1-1H12c-0.55,0-1,0.45-1,1V21C11,21.55,11.45,22,12,22z\\\"></path><path d=\\\"M17.99,18.41l0.38,0.39c0.39,0.39,1.02,0.39,1.41,0l0.01-0.01c0.39-0.39,0.39-1.02,0-1.41L19.4,17 c-0.39-0.39-1.02-0.39-1.41,0l0,0C17.6,17.4,17.6,18.03,17.99,18.41z\\\"></path><path d=\\\"M6,5.69L5.61,5.31c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L4.59,7.1c0.39,0.39,1.02,0.39,1.41,0l0,0 C6.38,6.71,6.38,6.07,6,5.69z\\\"></path><path d=\\\"M4.2,18.79L4.2,18.79c0.39,0.4,1.03,0.4,1.42,0L6,18.4c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0 L4.2,17.38C3.81,17.77,3.81,18.4,4.2,18.79z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sim_card_download\": {\n    \"name\": \"sim_card_download\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,2h-7.17C10.3,2,9.79,2.21,9.41,2.59L4.59,7.41C4.21,7.79,4,8.3,4,8.83V20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C20,2.9,19.1,2,18,2z M11.65,16.65l-2.79-2.79C8.54,13.54,8.76,13,9.21,13H11v-2.99c0-0.55,0.44-0.99,0.99-1h0 C12.55,9,13,9.45,13,10.01V13h1.79c0.45,0,0.67,0.54,0.35,0.85l-2.79,2.79C12.16,16.84,11.84,16.84,11.65,16.65z\\\"></path></g>\"\n      }\n    }\n  },\n  \"macro_off\": {\n    \"name\": \"macro_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4.2,13.08c-0.64-0.09-1.21,0.48-1.12,1.12C3.67,18.6,7.44,22,12,22C12,17.44,8.6,13.67,4.2,13.08z\\\"></path><path d=\\\"M12,5.5c1.38,0,2.5,1.12,2.5,2.5c0,0.99-0.58,1.84-1.42,2.25l2.48,2.48c0.11,0.02,0.23,0.03,0.35,0.03 c1.38,0,2.5-1.12,2.5-2.5c0-1-0.59-1.85-1.43-2.25c0.84-0.4,1.43-1.25,1.43-2.25c0-1.38-1.12-2.5-2.5-2.5 c-0.53,0-1.01,0.16-1.42,0.44L14.5,3.5C14.5,2.12,13.38,1,12,1S9.5,2.12,9.5,3.5l0.02,0.19C9.12,3.41,8.63,3.25,8.1,3.25 c-0.57,0-1.09,0.2-1.51,0.52l3.16,3.16C10.16,6.08,11.01,5.5,12,5.5z\\\"></path><path d=\\\"M19.98,17.15c0.47-0.91,0.8-1.9,0.94-2.95c0.09-0.64-0.48-1.21-1.12-1.12c-1.05,0.14-2.05,0.47-2.95,0.94L19.98,17.15z\\\"></path><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l3.93,3.93c-0.35,0.52-0.53,1.17-0.38,1.89c0.22,1.13,1.26,1.98,2.41,2 c0.54,0.01,1.02-0.15,1.44-0.43l0.02,0.02L9.5,12.5c0,1.38,1.12,2.5,2.5,2.5c0.05,0,0.1-0.01,0.16-0.02l1.64,1.64 C12.67,18.12,12,19.98,12,22c2.02,0,3.88-0.67,5.38-1.79l1.69,1.69c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41 L3.51,3.51C3.12,3.12,2.49,3.12,2.1,3.51z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4.5c1.1,0,2,0.9,2,2c0,0.92-0.62,1.68-1.46,1.92l1.62,1.62c0.93,0.45,2.07,0.12,2.6-0.79 c0.55-0.96,0.22-2.18-0.73-2.73C14.02,6.51,14,6.51,13.99,6.5c0.01-0.01,0.03-0.01,0.04-0.02c0.96-0.55,1.28-1.78,0.73-2.73 c-0.55-0.96-1.78-1.28-2.73-0.73C12.02,3.03,12.01,3.04,12,3.04c0-0.01,0-0.03,0-0.04c0-1.1-0.9-2-2-2S8,1.9,8,3 c0,0.01,0,0.03,0,0.04C7.99,3.04,7.98,3.03,7.97,3.02c-0.82-0.47-1.84-0.3-2.46,0.37l2.57,2.57C8.32,5.12,9.08,4.5,10,4.5z\\\"></path><path d=\\\"M4.24,11.11c-0.65-0.12-1.24,0.48-1.13,1.13C3.7,15.51,6.57,18,10,18C10,14.56,7.5,11.7,4.24,11.11z\\\"></path><path d=\\\"M16.25,14.13c0.3-0.59,0.52-1.22,0.64-1.9c0.12-0.65-0.48-1.24-1.13-1.13c-0.67,0.12-1.3,0.34-1.89,0.64L16.25,14.13z\\\"></path><path d=\\\"M2.4,3.46L2.4,3.46c-0.29,0.29-0.29,0.77,0,1.06l2.8,2.8C4.89,7.91,4.88,8.63,5.24,9.25c0.54,0.93,1.71,1.26,2.66,0.77 l0.12,0.12c0.07,0.99,0.86,1.78,1.85,1.85l1.66,1.66C10.58,14.85,10,16.35,10,18c1.64,0,3.15-0.57,4.35-1.53l1.13,1.13 c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46C3.17,3.17,2.69,3.17,2.4,3.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_0_bar\": {\n    \"name\": \"signal_cellular_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4.41,22H21c0.55,0,1-0.45,1-1V4.41c0-0.89-1.08-1.34-1.71-0.71L3.71,20.29C3.08,20.92,3.52,22,4.41,22z M20,20H6.83 L20,6.83V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tungsten\": {\n    \"name\": \"tungsten\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,19L12,19c-0.56,0-1,0.45-1,1V21c0,0.55,0.45,1,1,1H12c0.55,0,1-0.45,1-1V20C13,19.45,12.55,19,12,19z\\\"></path><path d=\\\"M5.99,17.09L5.28,17.8c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0l0.71-0.71c0.39-0.39,0.39-1.02,0-1.41 C7.02,16.71,6.38,16.71,5.99,17.09z\\\"></path><path d=\\\"M5,12c0-0.55-0.45-1-1-1H3c-0.55,0-1,0.45-1,1V12c0,0.55,0.45,1,1,1H4C4.55,13,5,12.55,5,12L5,12z\\\"></path><path d=\\\"M21,11H20c-0.55,0-1,0.45-1,1V12c0,0.55,0.45,1,1,1H21c0.55,0,1-0.45,1-1V12C22,11.45,21.55,11,21,11z\\\"></path><path d=\\\"M18.01,17.09c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L18.01,17.09z\\\"></path><path d=\\\"M15,8.02V5c0-1.1-0.9-2-2-2h-2C9.9,3,9,3.9,9,5v3.02c-1.43,1.08-2.28,2.9-1.91,4.91c0.36,1.95,1.9,3.55,3.84,3.95 C14.16,17.56,17,15.11,17,12C17,10.37,16.21,8.94,15,8.02z M13,7.1C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5h2V7.1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"1x_mobiledata\": {\n    \"name\": \"1x_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M5,7h2c0.55,0,1,0.45,1,1v8c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V9H5C4.45,9,4,8.55,4,8v0C4,7.45,4.45,7,5,7z M15.83,11.72l1.92-3.21C18.15,7.85,17.67,7,16.9,7h0c-0.35,0-0.68,0.18-0.86,0.49l-1.37,2.28l-1.38-2.29 C13.11,7.18,12.79,7,12.44,7h0c-0.78,0-1.26,0.85-0.86,1.51l1.92,3.21l-2.26,3.77c-0.4,0.67,0.08,1.51,0.86,1.51h0 c0.35,0,0.68-0.18,0.86-0.49l1.71-2.85l1.71,2.85c0.18,0.3,0.51,0.49,0.86,0.49h0.01c0.78,0,1.26-0.85,0.86-1.51L15.83,11.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_good\": {\n    \"name\": \"fmd_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.18,2.45,6.92,7.34,11.23c0.38,0.33,0.95,0.33,1.33,0C17.55,17.12,20,13.38,20,10.2 C20,5.22,16.2,2,12,2z M12,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C14,11.1,13.1,12,12,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_searching\": {\n    \"name\": \"location_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight\": {\n    \"name\": \"nightlight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M11.57,2.3c2.38-0.59,4.68-0.27,6.63,0.64c0.35,0.16,0.41,0.64,0.1,0.86C15.7,5.6,14,8.6,14,12s1.7,6.4,4.3,8.2 c0.32,0.22,0.26,0.7-0.09,0.86C16.93,21.66,15.5,22,14,22c-6.05,0-10.85-5.38-9.87-11.6C4.74,6.48,7.72,3.24,11.57,2.3z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"30fps\": {\n    \"name\": \"30fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,6.5L2,6.5C2,7.33,2.67,8,3.5,8H8v2.5H4.5C3.67,10.5,3,11.17,3,12v0c0,0.83,0.67,1.5,1.5,1.5H8V16H3.5 C2.67,16,2,16.67,2,17.5v0C2,18.33,2.67,19,3.5,19H8c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8 c0-1.66-1.34-3-3-3H3.5C2.67,5,2,5.67,2,6.5z M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4 c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_bad\": {\n    \"name\": \"fmd_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.18,2.45,6.92,7.34,11.23c0.38,0.33,0.95,0.33,1.33,0C17.55,17.12,20,13.38,20,10.2 C20,5.22,16.2,2,12,2z M12,15L12,15c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C13,14.55,12.55,15,12,15z M12,11L12,11c-0.55,0-1-0.45-1-1V7c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3C13,10.55,12.55,11,12,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_off\": {\n    \"name\": \"signal_wifi_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM4.12 2.01c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l1.35 1.35C1.91 5.76.59 6.82.36 7l10.08 12.56c.8 1 2.32 1 3.12 0l2.35-2.93 2.61 2.61c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 2.01z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_weight\": {\n    \"name\": \"monitor_weight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,12c-1.66,0-3-1.34-3-3 s1.34-3,3-3s3,1.34,3,3S13.66,12,12,12z\\\"></path><circle cx=\\\"10.5\\\" cy=\\\"9\\\" r=\\\".5\\\"></circle><circle cx=\\\"13.5\\\" cy=\\\"9\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"9\\\" r=\\\".5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"screenshot_monitor\": {\n    \"name\": \"screenshot_monitor\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.89,2,2,2h4v1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-1h4c1.1,0,2-0.9,2-2V5 C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><path d=\\\"M6.5,7.5h1.75C8.66,7.5,9,7.16,9,6.75v0C9,6.34,8.66,6,8.25,6H6C5.45,6,5,6.45,5,7v2.25C5,9.66,5.34,10,5.75,10h0 C6.16,10,6.5,9.66,6.5,9.25V7.5z\\\"></path><path d=\\\"M18.25,12L18.25,12c-0.41,0-0.75,0.34-0.75,0.75v1.75h-1.75c-0.41,0-0.75,0.34-0.75,0.75v0c0,0.41,0.34,0.75,0.75,0.75H18 c0.55,0,1-0.45,1-1v-2.25C19,12.34,18.66,12,18.25,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v1c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1h3.5 c0.83,0,1.5-0.67,1.5-1.5v-9C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><path d=\\\"M5.5,6.5H7c0.28,0,0.5-0.22,0.5-0.5v0c0-0.28-0.22-0.5-0.5-0.5H5C4.72,5.5,4.5,5.72,4.5,6v2c0,0.28,0.22,0.5,0.5,0.5h0 c0.28,0,0.5-0.22,0.5-0.5V6.5z\\\"></path><path d=\\\"M15,9.5L15,9.5c-0.28,0-0.5,0.22-0.5,0.5v1.5H13c-0.28,0-0.5,0.22-0.5,0.5v0c0,0.28,0.22,0.5,0.5,0.5h2 c0.28,0,0.5-0.22,0.5-0.5v-2C15.5,9.72,15.28,9.5,15,9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lte_mobiledata\": {\n    \"name\": \"lte_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,14h2c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1V14z M10,10 h1v5c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-5h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-4C9.45,8,9,8.45,9,9v0 C9,9.55,9.45,10,10,10z M21,9L21,9c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v6c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h-2v-1h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2v-1h2C20.55,10,21,9.55,21,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_1_bar\": {\n    \"name\": \"network_wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M15.32,14.84C14.34,14.3,13.2,14,12,14 c-1.2,0-2.34,0.3-3.32,0.84L2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L15.32,14.84z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.52,3,3.34,4.23,0.84,6.27c-0.46,0.38-0.51,1.07-0.08,1.5l8.54,8.53c0.39,0.39,1.02,0.39,1.41,0l8.54-8.53 c0.42-0.42,0.38-1.12-0.08-1.5C16.66,4.23,13.48,3,10,3z M12.56,12.32c-1.53-1.07-3.6-1.07-5.13,0L2.21,7.1 C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L12.56,12.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"g_mobiledata\": {\n    \"name\": \"g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,12L12,12c0,0.55,0.45,1,1,1h1v2H9V9h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H9C7.9,7,7,7.9,7,9v6c0,1.1,0.9,2,2,2h5 c1.1,0,2-0.9,2-2v-3c0-0.55-0.45-1-1-1h-2C12.45,11,12,11.45,12,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"timer_10_select\": {\n    \"name\": \"timer_10_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,8v8h-3V8H13 M13,5h-3C8.34,5,7,6.34,7,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3V8C16,6.34,14.66,5,13,5z M2.5,8H3v9.5 C3,18.33,3.67,19,4.5,19h0C5.33,19,6,18.33,6,17.5V7c0-1.1-0.9-2-2-2H2.5C1.67,5,1,5.67,1,6.5v0C1,7.33,1.67,8,2.5,8z M18.5,11 c-0.83,0-1.5,0.68-1.5,1.5v2c0,0.82,0.67,1.5,1.5,1.5H21v1h-3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h3.5c0.83,0,1.5-0.67,1.5-1.5 v-2c0-0.83-0.67-1.5-1.5-1.5H19v-1h3c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H18.5z\\\"></path>\"\n      }\n    }\n  },\n  \"3g_mobiledata\": {\n    \"name\": \"3g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,8L3,8c0,0.55,0.45,1,1,1h4v2H5c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h3v2H4c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1 h4c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8z M21,12v3 c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h6c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h-6v6h5v-2h-1.5 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1H20C20.55,11,21,11.45,21,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_unknown\": {\n    \"name\": \"battery_unknown\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.14.14-.27.31-.39.47l-.09.15c-.08.12-.14.25-.19.37-.09.22-.16.43-.16.61h-1.6c0-.42.12-.8.29-1.13.06-.11.13-.21.2-.31.03-.05.06-.11.1-.16.11-.14.23-.28.34-.4l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5-.65 0-1.21.41-1.41.99-.11.31-.39.51-.71.51-.52 0-.88-.52-.71-1.01C9.59 8.83 10.69 8 12 8c1.66 0 3 1.34 3 3 0 .66-.27 1.26-.7 1.69z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_suggest\": {\n    \"name\": \"settings_suggest\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18.04,7.99l-0.63-1.4l-1.4-0.63c-0.39-0.18-0.39-0.73,0-0.91l1.4-0.63l0.63-1.4c0.18-0.39,0.73-0.39,0.91,0l0.63,1.4 l1.4,0.63c0.39,0.18,0.39,0.73,0,0.91l-1.4,0.63l-0.63,1.4C18.78,8.38,18.22,8.38,18.04,7.99z M21.28,12.72L20.96,12 c-0.18-0.39-0.73-0.39-0.91,0l-0.32,0.72L19,13.04c-0.39,0.18-0.39,0.73,0,0.91l0.72,0.32L20.04,15c0.18,0.39,0.73,0.39,0.91,0 l0.32-0.72L22,13.96c0.39-0.18,0.39-0.73,0-0.91L21.28,12.72z M16.24,14.37l1.23,0.93c0.4,0.3,0.51,0.86,0.26,1.3l-1.62,2.8 c-0.25,0.44-0.79,0.62-1.25,0.42l-1.43-0.6c-0.2,0.13-0.42,0.26-0.64,0.37l-0.19,1.54c-0.06,0.5-0.49,0.88-0.99,0.88H8.38 c-0.5,0-0.93-0.38-0.99-0.88L7.2,19.59c-0.22-0.11-0.43-0.23-0.64-0.37l-1.43,0.6c-0.46,0.2-1,0.02-1.25-0.42l-1.62-2.8 c-0.25-0.44-0.14-0.99,0.26-1.3l1.23-0.93C3.75,14.25,3.75,14.12,3.75,14s0-0.25,0.01-0.37L2.53,12.7c-0.4-0.3-0.51-0.86-0.26-1.3 l1.62-2.8c0.25-0.44,0.79-0.62,1.25-0.42l1.43,0.6c0.2-0.13,0.42-0.26,0.64-0.37l0.19-1.54C7.45,6.38,7.88,6,8.38,6h3.23 c0.5,0,0.93,0.38,0.99,0.88l0.19,1.54c0.22,0.11,0.43,0.23,0.64,0.37l1.43-0.6c0.46-0.2,1-0.02,1.25,0.42l1.62,2.8 c0.25,0.44,0.14,0.99-0.26,1.3l-1.23,0.93c0.01,0.12,0.01,0.24,0.01,0.37S16.25,14.25,16.24,14.37z M13,14c0-1.66-1.34-3-3-3 s-3,1.34-3,3s1.34,3,3,3S13,15.66,13,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_5_bar\": {\n    \"name\": \"battery_5_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V3c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h2 C16.55,4,17,4.45,17,5z M15,6H9v4h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V3c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1v0.5H13z M12.5,5h-5v3.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gps_off\": {\n    \"name\": \"gps_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 13c.55 0 1-.45 1-1s-.45-1-1-1h-1.06c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H22zm-1.56 5.88L5.12 3.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L5.04 6.3C3.97 7.62 3.26 9.23 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c1.77-.2 3.38-.91 4.69-1.98l1.33 1.33c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"shortcut\": {\n    \"name\": \"shortcut\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20.29,10.29l-3.59-3.59C16.08,6.08,15,6.52,15,7.41V10H8c-2.76,0-5,2.24-5,5v3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3 c0-1.65,1.35-3,3-3h7v2.59c0,0.89,1.08,1.34,1.71,0.71l3.59-3.59C20.68,11.32,20.68,10.68,20.29,10.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_6_bar\": {\n    \"name\": \"battery_6_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V3c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h2 C16.55,4,17,4.45,17,5z M15,6H9v2h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V3c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1v0.5H13z M12.5,5h-5v2h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"data_saver_on\": {\n    \"name\": \"data_saver_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11,11H9c-0.55,0-1,0.45-1,1s0.45,1,1,1h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2h2c0.55,0,1-0.45,1-1s-0.45-1-1-1h-2V9 c0-0.55-0.45-1-1-1s-1,0.45-1,1V11z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92 c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12C22,6.82,18.05,2.55,13,2.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"access_time\": {\n    \"name\": \"access_time\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_3_bar\": {\n    \"name\": \"battery_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V3c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v1h2 C16.55,4,17,4.45,17,5z M15,6H9v8h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V3c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1v0.5H13z M12.5,5h-5v6.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar\": {\n    \"name\": \"signal_wifi_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l10.08 12.56c.8 1 2.32 1 3.12 0L23.64 7z\\\"></path>\"\n      }\n    }\n  },\n  \"splitscreen\": {\n    \"name\": \"splitscreen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,4v5H6V4H18z M18,2H6C4.9,2,4,2.9,4,4v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,15v5H6v-5H18z M18,13H6c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-5C20,13.9,19.1,13,18,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22.92,8H17v7.99l-4.29,4.3c-0.39,0.39-1.02,0.39-1.42,0L0.73,9.71C0.32,9.3,0.35,8.63,0.79,8.24C3.78,5.6,7.7,4,12,4 C16.16,4,19.97,5.51,22.92,8z M20,18c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S20.55,18,20,18z M20,10c-0.55,0-1,0.45-1,1v4 c0,0.55,0.45,1,1,1s1-0.45,1-1v-4C21,10.45,20.55,10,20,10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,9.75v4.55c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V9.75C16.5,9.34,16.84,9,17.25,9S18,9.34,18,9.75z M17.25,16.5c-0.41,0-0.75,0.34-0.75,0.75S16.84,18,17.25,18S18,17.66,18,17.25S17.66,16.5,17.25,16.5z M19.16,6.27 C16.66,4.23,13.48,3,10,3S3.34,4.23,0.84,6.27c-0.46,0.38-0.51,1.07-0.08,1.5l8.54,8.53c0.39,0.39,1.02,0.39,1.41,0L15,12V7.5h4.41 C19.62,7.09,19.54,6.58,19.16,6.27z\\\"></path>\"\n      }\n    }\n  },\n  \"h_plus_mobiledata\": {\n    \"name\": \"h_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11H6V8c0-0.55-0.45-1-1-1h0C4.45,7,4,7.45,4,8v8c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3h6v3c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1V8c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1V11z M21,11h-1v-1c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1h-1 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1h1c0.55,0,1-0.45,1-1v0 C22,11.45,21.55,11,21,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rsvp\": {\n    \"name\": \"rsvp\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.54,9L16.54,9c0.48,0,0.83,0.46,0.69,0.92l-1.27,4.36C15.84,14.71,15.44,15,15,15h0c-0.44,0-0.84-0.29-0.96-0.72 l-1.27-4.36C12.63,9.46,12.98,9,13.46,9h0c0.32,0,0.6,0.21,0.69,0.52L15,12.43l0.85-2.91C15.94,9.21,16.22,9,16.54,9z M5.1,12.9 l0.49,1.14C5.78,14.49,5.45,15,4.96,15h0c-0.28,0-0.53-0.17-0.63-0.42L3.65,13H2.5v1.31C2.5,14.69,2.19,15,1.81,15H1.69 C1.31,15,1,14.69,1,14.31V10c0-0.55,0.45-1,1-1h2.5C5.33,9,6,9.67,6,10.5v1C6,12.1,5.6,12.65,5.1,12.9z M4.5,10.5h-2v1h2V10.5z M21.5,13h-2v1.25c0,0.41-0.34,0.75-0.75,0.75l0,0C18.34,15,18,14.66,18,14.25V10c0-0.55,0.45-1,1-1h2.5c0.83,0,1.5,0.67,1.5,1.5 v1C23,12.33,22.33,13,21.5,13z M21.5,10.5h-2v1h2V10.5z M11.5,9.75L11.5,9.75c0,0.41-0.34,0.75-0.75,0.75H8.5v0.75h2 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7.75C7.34,15,7,14.66,7,14.25v0c0-0.41,0.34-0.75,0.75-0.75H10v-0.75H7.75 C7.34,12.75,7,12.41,7,12v-2c0-0.55,0.45-1,1-1h2.75C11.16,9,11.5,9.34,11.5,9.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lte_plus_mobiledata\": {\n    \"name\": \"lte_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,14h2c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H2c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1V14z M6,10 h1v5c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-5h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6C5.45,8,5,8.45,5,9v0 C5,9.55,5.45,10,6,10z M13,16h3c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2v-1h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2v-1h2 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v6C12,15.55,12.45,16,13,16z M23,11h-1v-1c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v1h-1c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1h1 c0.55,0,1-0.45,1-1v0C24,11.45,23.55,11,23,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarms\": {\n    \"name\": \"access_alarms\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.87 15.25l-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_heart\": {\n    \"name\": \"monitor_heart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.11,12.45L14,10.24l-3.11,6.21C10.73,16.79,10.38,17,10,17s-0.73-0.21-0.89-0.55L7.38,13H2v5c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-5h-6C15.62,13,15.27,12.79,15.11,12.45z\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v5h6c0.38,0,0.73,0.21,0.89,0.55L10,13.76l3.11-6.21c0.34-0.68,1.45-0.68,1.79,0L16.62,11H22V6 C22,4.9,21.1,4,20,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.34,10.36L11.5,8.82l-2.34,4.29C9.03,13.35,8.77,13.5,8.5,13.5s-0.53-0.15-0.66-0.39l-1.29-2.36H2v3.65 C2,15.28,2.72,16,3.6,16h12.8c0.88,0,1.6-0.72,1.6-1.6v-3.65h-5C12.73,10.75,12.47,10.6,12.34,10.36z\\\"></path><path d=\\\"M16.4,4H3.6C2.72,4,2,4.72,2,5.6v3.65h5c0.27,0,0.53,0.15,0.66,0.39l0.84,1.54l2.34-4.29c0.26-0.48,1.05-0.48,1.32,0 l1.29,2.36H18V5.6C18,4.72,17.28,4,16.4,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ssid_chart\": {\n    \"name\": \"ssid_chart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,9.03c0-0.32,0.15-0.62,0.41-0.81L7.14,5.5c0.4-0.29,0.95-0.25,1.3,0.1l3.78,3.78l7.2-5.23C20.07,3.67,21,4.14,21,4.96 c0,0.32-0.15,0.62-0.41,0.81l-7.9,5.73c-0.4,0.29-0.95,0.25-1.29-0.1L7.62,7.62L4.59,9.84C3.93,10.32,3,9.85,3,9.03z M21,16 c0-0.55-0.45-1-1-1h-3.35c-0.23,0-0.45,0.08-0.62,0.22l-3.9,3.12L6.6,12.99c-0.35-0.34-0.88-0.38-1.27-0.1l-1.9,1.35 C3.16,14.43,3,14.74,3,15.06c0,0.81,0.92,1.29,1.58,0.81L5.8,15l5.57,5.39c0.36,0.35,0.93,0.38,1.32,0.06L17,17h3 C20.55,17,21,16.55,21,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3,7.54C3,7.3,3.12,7.07,3.31,6.93l2.66-1.9c0.4-0.28,0.94-0.24,1.29,0.11l2.89,2.89l5.66-4.15C16.3,3.51,17,3.87,17,4.48 c0,0.24-0.11,0.46-0.31,0.6l-6,4.41c-0.4,0.29-0.95,0.25-1.3-0.1L6.5,6.5L4.19,8.15C3.69,8.51,3,8.15,3,7.54z M17,13.25 c0-0.41-0.34-0.75-0.75-0.75h-2.42c-0.22,0-0.43,0.07-0.6,0.2l-3.09,2.32l-4.03-4.1c-0.35-0.35-0.91-0.4-1.31-0.1l-1.5,1.1 C3.11,12.06,3,12.28,3,12.52c0,0.61,0.7,0.97,1.19,0.6l1.11-0.82l4.08,4.08c0.35,0.35,0.91,0.39,1.31,0.09L14,14h2.25 C16.66,14,17,13.66,17,13.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"data_saver_off\": {\n    \"name\": \"data_saver_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12 C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_not_fixed\": {\n    \"name\": \"gps_not_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V2c0-.55-.45-1-1-1s-1 .45-1 1v1.06C6.83 3.52 3.52 6.83 3.06 11H2c-.55 0-1 .45-1 1s.45 1 1 1h1.06c.46 4.17 3.77 7.48 7.94 7.94V22c0 .55.45 1 1 1s1-.45 1-1v-1.06c4.17-.46 7.48-3.77 7.94-7.94H22c.55 0 1-.45 1-1s-.45-1-1-1h-1.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_storage\": {\n    \"name\": \"sd_storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2h-7.17c-.53 0-1.04.21-1.42.59L4.6 7.42c-.37.37-.6.88-.6 1.4V20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm3 0c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"lens_blur\": {\n    \"name\": \"lens_blur\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,13,6,13z M6,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S6.55,17,6,17z M6,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,9,6,9z M3,9.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5S3.28,9.5,3,9.5z M6,5C5.45,5,5,5.45,5,6s0.45,1,1,1s1-0.45,1-1S6.55,5,6,5z M21,10.5c0.28,0,0.5-0.22,0.5-0.5 S21.28,9.5,21,9.5s-0.5,0.22-0.5,0.5S20.72,10.5,21,10.5z M14,7c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S13.45,7,14,7z M14,3.5 c0.28,0,0.5-0.22,0.5-0.5S14.28,2.5,14,2.5S13.5,2.72,13.5,3S13.72,3.5,14,3.5z M3,13.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S3.28,13.5,3,13.5z M10,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S10.28,20.5,10,20.5z M10,3.5c0.28,0,0.5-0.22,0.5-0.5S10.28,2.5,10,2.5S9.5,2.72,9.5,3S9.72,3.5,10,3.5z M10,7c0.55,0,1-0.45,1-1 s-0.45-1-1-1S9,5.45,9,6S9.45,7,10,7z M10,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,12.5,10,12.5z M18,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,13,18,13z M18,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,17,18,17z M18,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,9,18,9z M18,5c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,5,18,5z M21,13.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S21.28,13.5,21,13.5z M14,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S14.55,17,14,17z M14,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S14.28,20.5,14,20.5z M10,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,8.5,10,8.5z M10,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S10.55,17,10,17z M14,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S14.83,12.5,14,12.5z M14,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S14.83,8.5,14,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cable\": {\n    \"name\": \"cable\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,5V4c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h1l0,6.91 c0,1.04-0.76,1.98-1.79,2.08C14.01,19.11,13,18.17,13,17l0-9.86c0-2.13-1.61-3.99-3.74-4.13C6.93,2.86,5,4.7,5,7v7H4 c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0v1c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h0c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1 H7l0-6.91c0-1.04,0.76-1.98,1.79-2.08C9.99,4.89,11,5.83,11,7l0,9.86c0,2.13,1.61,3.99,3.74,4.13C17.07,21.14,19,19.3,19,17v-7h1 c0.55,0,1-0.45,1-1V6C21,5.45,20.55,5,20,5L20,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"e_mobiledata\": {\n    \"name\": \"e_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,8L16,8c0-0.55-0.45-1-1-1H9C8.45,7,8,7.45,8,8v8c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-5v-2h5 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-5V9h5C15.55,9,16,8.55,16,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lan\": {\n    \"name\": \"lan\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,22h4c1.1,0,2-0.9,2-2v-3c0-1.1-0.9-2-2-2h-1v-2c0-1.1-0.9-2-2-2h-3V9h1c1.1,0,2-0.9,2-2V4c0-1.1-0.9-2-2-2h-4 C8.9,2,8,2.9,8,4v3c0,1.1,0.9,2,2,2h1v2H8c-1.1,0-2,0.9-2,2v2H5c-1.1,0-2,0.9-2,2v3c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-3 c0-1.1-0.9-2-2-2H8v-2h8v2h-1c-1.1,0-2,0.9-2,2v3C13,21.1,13.9,22,15,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.5,18h3c0.83,0,1.5-0.67,1.5-1.5v-2c0-0.83-0.67-1.5-1.5-1.5h-0.75v-2.25c0-0.83-0.67-1.5-1.5-1.5h-2.5V7h0.75 C12.33,7,13,6.33,13,5.5v-2C13,2.67,12.33,2,11.5,2h-3C7.67,2,7,2.67,7,3.5v2C7,6.33,7.67,7,8.5,7h0.75v2.25h-2.5 c-0.83,0-1.5,0.67-1.5,1.5V13H4.5C3.67,13,3,13.67,3,14.5v2C3,17.33,3.67,18,4.5,18h3C8.33,18,9,17.33,9,16.5v-2 C9,13.67,8.33,13,7.5,13H6.75v-2.25h6.5V13H12.5c-0.83,0-1.5,0.67-1.5,1.5v2C11,17.33,11.67,18,12.5,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"screen_lock_landscape\": {\n    \"name\": \"screen_lock_landscape\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21,5H3C1.9,5,1.01,5.9,1.01,7L1,17c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V7C23,5.9,22.1,5,21,5z M18,17H6V7h12V17z M14,11 v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C15,11.45,14.55,11,14,11z M13,11 h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path></g><g></path>\"\n      }\n    }\n  },\n  \"screen_search_desktop\": {\n    \"name\": \"screen_search_desktop\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,19H2c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h20c0.55,0,1-0.45,1-1C23,19.45,22.55,19,22,19z\\\"></path><path d=\\\"M4,18h16c1.1,0,1.99-0.9,1.99-2L22,5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v11C2,17.1,2.9,18,4,18z M8.59,8.05 C9.87,6.18,12.45,6,13.97,7.53c1.18,1.18,1.34,3,0.47,4.36L16,13.44c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0 l-1.55-1.55c-1.57,1-3.76,0.64-4.87-1.11C7.79,10.7,7.83,9.17,8.59,8.05z\\\"></path><circle cx=\\\"11.5\\\" cy=\\\"10\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar_lock\": {\n    \"name\": \"signal_wifi_4_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M23.21,8.24C20.22,5.6,16.3,4,12,4S3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l5.62,5.63l4.94,4.95 c0.39,0.39,1.02,0.39,1.42,0l2.34-2.34V15c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71h2.94l1.29-1.29 C23.68,9.3,23.65,8.63,23.21,8.24z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-1.29,1.29c-0.39,0.39-1.02,0.39-1.41,0l-3.54-3.53l-5-4.99c-0.42-0.42-0.38-1.12,0.08-1.5C3.34,4.23,6.52,3,10,3 c3.48,0,6.66,1.23,9.16,3.27c0.46,0.38,0.51,1.07,0.08,1.5L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_error\": {\n    \"name\": \"nearby_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11.29,8.28l-3.01,3.01c-0.39,0.39-0.39,1.02,0,1.41l3.01,3.01c0.39,0.39,1.02,0.39,1.41,0l3.01-3.01 c0.39-0.39,0.39-1.02,0-1.41l-3.01-3.01C12.32,7.89,11.68,7.89,11.29,8.28z\\\"></path><path d=\\\"M10.59,2.59l-8.01,8c-0.78,0.78-0.78,2.05,0,2.83l8.01,8c0.78,0.78,2.05,0.78,2.83,0L18,16.82V13.2l-6,6L4.79,12L12,4.79 l6,6V7.17l-4.58-4.58C12.64,1.8,11.37,1.8,10.59,2.59z\\\"></path><path d=\\\"M20,11v6c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-6c0-0.55-0.45-1-1-1h0C20.45,10,20,10.45,20,11z\\\"></path><circle cx=\\\"21\\\" cy=\\\"21\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"price_check\": {\n    \"name\": \"price_check\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,13V9c0-0.55-0.45-1-1-1H6V6h4c0.55,0,1-0.45,1-1s-0.45-1-1-1H8.5c0-0.55-0.45-1-1-1s-1,0.45-1,1H5C4.45,4,4,4.45,4,5 v4c0,0.55,0.45,1,1,1h4v2H5c-0.55,0-1,0.45-1,1s0.45,1,1,1h1.5c0,0.55,0.45,1,1,1s1-0.45,1-1H10C10.55,14,11,13.55,11,13z\\\"></path><path d=\\\"M18.88,13.22l-4.95,4.95l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83 c0.39,0.39,1.02,0.39,1.41,0l5.66-5.66c0.39-0.39,0.39-1.02,0-1.41v0C19.9,12.83,19.27,12.83,18.88,13.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_4_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M21,18L21,18c0.55,0,1-0.45,1-1v-6c0-0.55-0.45-1-1-1l0,0c-0.55,0-1,0.45-1,1v6C20,17.55,20.45,18,21,18z M21,22L21,22 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C20,21.55,20.45,22,21,22z M4.41,22H18V11c0-1.66,1.34-3,3-3h1 V4.41c0-0.89-1.08-1.34-1.71-0.71L3.71,20.29C3.08,20.92,3.52,22,4.41,22z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M17.25,9c-0.41,0-0.75,0.34-0.75,0.75v4.55c0,0.41,0.34,0.75,0.75,0.75S18,14.71,18,14.3V9.75C18,9.34,17.66,9,17.25,9z\\\"></path><circle cx=\\\"17.25\\\" cy=\\\"17.25\\\" r=\\\".75\\\"></circle><path d=\\\"M16.29,3.71L3.71,16.29C3.08,16.92,3.52,18,4.41,18H15v-7.94c0-0.96,0.5-1.9,1.36-2.34c0.6-0.31,1.13-0.26,1.61-0.1 L18,7.5V4.41C18,3.52,16.92,3.08,16.29,3.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering_off\": {\n    \"name\": \"wifi_tethering_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2.11,3.51L2.11,3.51C1.71,3.9,1.71,4.54,2.1,4.93l1.98,1.98C2.78,8.6,2,10.71,2,13c0,2.36,0.82,4.53,2.19,6.24 c0.37,0.47,1.07,0.5,1.5,0.08l0,0c0.36-0.36,0.39-0.92,0.08-1.32C4.66,16.63,4,14.89,4,13c0-1.75,0.57-3.35,1.51-4.66l1.43,1.43 C6.35,10.7,6,11.81,6,13c0,1.25,0.38,2.4,1.03,3.35c0.34,0.5,1.08,0.54,1.51,0.11l0,0c0.35-0.35,0.37-0.88,0.1-1.29 C8.24,14.54,8,13.8,8,13c0-0.63,0.15-1.23,0.41-1.76l1.61,1.61c0,0.05-0.02,0.1-0.02,0.15c0,0.55,0.23,1.05,0.59,1.41 C10.95,14.77,11.45,15,12,15c0.05,0,0.1-0.01,0.16-0.02l6.91,6.91c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41 L3.51,3.51C3.12,3.12,2.49,3.12,2.11,3.51z M17.7,14.87C17.89,14.28,18,13.65,18,13c0-3.31-2.69-6-6-6c-0.65,0-1.28,0.1-1.87,0.3 l1.71,1.71C11.89,9,11.95,9,12,9c2.21,0,4,1.79,4,4c0,0.05,0,0.11-0.01,0.16L17.7,14.87z M12,5c4.42,0,8,3.58,8,8 c0,1.22-0.27,2.37-0.77,3.4l1.49,1.49C21.53,16.45,22,14.78,22,13c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.46-4.89,1.28l1.48,1.48 C9.63,5.27,10.78,5,12,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"medication\": {\n    \"name\": \"medication\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,3H7C6.45,3,6,3.45,6,4v0c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1v0C18,3.45,17.55,3,17,3z\\\"></path><path d=\\\"M17,6H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M14.5,15h-1v1 c0,0.83-0.67,1.5-1.5,1.5h0c-0.83,0-1.5-0.67-1.5-1.5v-1h-1C8.67,15,8,14.33,8,13.5v0C8,12.67,8.67,12,9.5,12h1v-1 c0-0.83,0.67-1.5,1.5-1.5h0c0.83,0,1.5,0.67,1.5,1.5v1h1c0.83,0,1.5,0.67,1.5,1.5v0C16,14.33,15.33,15,14.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_lock\": {\n    \"name\": \"wifi_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M23.21,8.24C20.22,5.6,16.3,4,12,4S3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l5.62,5.63l4.94,4.95 c0.39,0.39,1.02,0.39,1.42,0l2.34-2.34V15c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71h2.94l1.29-1.29 C23.68,9.3,23.65,8.63,23.21,8.24z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-1.29,1.29c-0.39,0.39-1.02,0.39-1.41,0l-3.54-3.53l-5-4.99c-0.42-0.42-0.38-1.12,0.08-1.5C3.34,4.23,6.52,3,10,3 c3.48,0,6.66,1.23,9.16,3.27c0.46,0.38,0.51,1.07,0.08,1.5L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radar\": {\n    \"name\": \"radar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.74,18.33C21.15,16.6,22,14.4,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12s4.48,10,10,10c2.4,0,4.6-0.85,6.33-2.26 c0.27-0.22,0.53-0.46,0.78-0.71c0.03-0.03,0.05-0.06,0.07-0.08C19.38,18.75,19.57,18.54,19.74,18.33z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.43-1.43c0.69-0.98,1.1-2.17,1.1-3.46c0-3.31-2.69-6-6-6s-6,2.69-6,6 s2.69,6,6,6c1.3,0,2.51-0.42,3.49-1.13l1.42,1.42C15.54,19.37,13.85,20,12,20z M13.92,12.51c0.17-0.66,0.02-1.38-0.49-1.9 l-0.02-0.02c-0.77-0.77-2-0.78-2.78-0.04c-0.01,0.01-0.03,0.02-0.05,0.04c-0.78,0.78-0.78,2.05,0,2.83l0.02,0.02 c0.52,0.51,1.25,0.67,1.91,0.49l1.51,1.51c-0.6,0.36-1.29,0.58-2.04,0.58c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 c0,0.73-0.21,1.41-0.56,2L13.92,12.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi\": {\n    \"name\": \"network_wifi\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.7,4,3.78,5.6,0.79,8.24C0.35,8.63,0.32,9.3,0.73,9.71l10.56,10.58c0.39,0.39,1.02,0.39,1.42,0L23.27,9.71 c0.41-0.41,0.38-1.08-0.06-1.47C20.22,5.6,16.3,4,12,4z M12,8c-2.86,0-5.5,0.94-7.65,2.51L2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cameraswitch\": {\n    \"name\": \"cameraswitch\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,7h-1l-1-1h-4L9,7H8C6.9,7,6,7.9,6,9v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V9C18,7.9,17.1,7,16,7z M12,14 c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M9.45,0.28C9.05,0.36,8.9,0.84,9.19,1.12l3.01,3.01c0.32,0.31,0.85,0.09,0.85-0.35V2.04c4.45,0.44,8.06,3.82,8.84,8.17 c0.08,0.46,0.5,0.78,0.97,0.78c0.62,0,1.09-0.57,0.98-1.18C22.61,2.89,15.79-1.12,9.45,0.28z\\\"></path><path d=\\\"M11.8,19.87c-0.32-0.32-0.85-0.09-0.85,0.35v1.74c-4.45-0.44-8.06-3.82-8.84-8.17c-0.08-0.46-0.5-0.78-0.97-0.78 c-0.62,0-1.09,0.57-0.98,1.18c1.24,6.92,8.06,10.93,14.4,9.53c0.39-0.09,0.55-0.56,0.26-0.85L11.8,19.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"aod\": {\n    \"name\": \"aod\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M8.75,10h6.5c0.41,0,0.75,0.34,0.75,0.75v0c0,0.41-0.34,0.75-0.75,0.75h-6.5C8.34,11.5,8,11.16,8,10.75v0 C8,10.34,8.34,10,8.75,10z M9.75,13h4.5c0.41,0,0.75,0.34,0.75,0.75v0c0,0.41-0.34,0.75-0.75,0.75h-4.5C9.34,14.5,9,14.16,9,13.75 v0C9,13.34,9.34,13,9.75,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_good\": {\n    \"name\": \"gpp_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.3,2.26l-6,2.25C4.52,4.81,4,5.55,4,6.39v4.71c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V6.39 c0-0.83-0.52-1.58-1.3-1.87l-6-2.25C12.25,2.09,11.75,2.09,11.3,2.26z M10.23,14.83l-2.12-2.12c-0.39-0.39-0.39-1.02,0-1.41l0,0 c0.39-0.39,1.02-0.39,1.41,0l1.41,1.41l3.54-3.54c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41l-4.24,4.24 C11.26,15.22,10.62,15.22,10.23,14.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"60fps\": {\n    \"name\": \"60fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z M10,6.5 L10,6.5C10,5.67,9.33,5,8.5,5H5C3.34,5,2,6.34,2,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3v-3c0-1.66-1.34-3-3-3H5V8h3.5 C9.33,8,10,7.33,10,6.5z M8,13v3H5v-3H8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_goldenratio\": {\n    \"name\": \"grid_goldenratio\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21,13h-6v-2h6c0.55,0,1-0.45,1-1s-0.45-1-1-1h-6V3c0-0.55-0.45-1-1-1s-1,0.45-1,1v6h-2V3c0-0.55-0.45-1-1-1S9,2.45,9,3v6 H3c-0.55,0-1,0.45-1,1s0.45,1,1,1h6v2H3c-0.55,0-1,0.45-1,1s0.45,1,1,1h6v6c0,0.55,0.45,1,1,1s1-0.45,1-1v-6h2v6c0,0.55,0.45,1,1,1 s1-0.45,1-1v-6h6c0.55,0,1-0.45,1-1S21.55,13,21,13z M13,13h-2v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"system_security_update_good\": {\n    \"name\": \"system_security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,18H7V6h10V18z M10.34,14.29c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2.83,2.83 l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L10.34,14.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"remember_me\": {\n    \"name\": \"remember_me\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,15.21 C15.5,14.44,13.8,14,12,14s-3.5,0.44-5,1.21V6h10V15.21z\\\"></path><circle cx=\\\"12\\\" cy=\\\"10\\\" r=\\\"3\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering\": {\n    \"name\": \"wifi_tethering\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.56-3.11-6.4-6.75-5.95-2.62.32-4.78 2.41-5.18 5.02-.33 2.15.49 4.11 1.93 5.4.48.43 1.23.33 1.56-.23l.01-.01c.24-.42.14-.93-.22-1.26-1.03-.93-1.59-2.37-1.22-3.94.33-1.42 1.48-2.57 2.9-2.91C13.65 8.49 16 10.47 16 13c0 1.18-.52 2.23-1.33 2.96-.36.32-.47.84-.23 1.26l.01.01c.31.53 1.03.69 1.5.28C17.2 16.41 18 14.8 18 13zm-7.17-9.93c-4.62.52-8.35 4.33-8.78 8.96-.35 3.7 1.32 7.02 4.02 9.01.48.35 1.16.2 1.46-.31.25-.43.14-.99-.26-1.29-2.28-1.69-3.65-4.55-3.16-7.7.54-3.5 3.46-6.29 6.98-6.68C15.91 4.51 20 8.28 20 13c0 2.65-1.29 4.98-3.27 6.44-.4.3-.51.85-.26 1.29.3.52.98.66 1.46.31C20.4 19.22 22 16.3 22 13c0-5.91-5.13-10.62-11.17-9.93z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_alert\": {\n    \"name\": \"battery_alert\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V3c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.34 22h7.32c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1s1 .45 1 1v3z\\\"></path>\"\n      }\n    }\n  },\n  \"usb\": {\n    \"name\": \"usb\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1v2h-3V5h1c.41 0 .65-.47.4-.8l-2-2.67c-.2-.27-.6-.27-.8 0l-2 2.67c-.25.33-.01.8.4.8h1v8H8v-2.07c.83-.44 1.38-1.36 1.14-2.43-.17-.77-.77-1.4-1.52-1.61C6.15 6.48 4.8 7.59 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.1.9 2 2 2h3v3.05c-.86.45-1.39 1.42-1.13 2.49.18.75.79 1.38 1.54 1.58 1.46.39 2.8-.7 2.8-2.12 0-.85-.49-1.58-1.2-1.95V15h3c1.1 0 2-.9 2-2v-2c.55 0 1-.45 1-1V8C19 7.45 18.55 7 18 7z\\\"></path>\"\n      }\n    }\n  },\n  \"access_time_filled\": {\n    \"name\": \"access_time_filled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M16,16 c-0.39,0.39-1.02,0.39-1.41,0l-3.29-3.29C11.11,12.52,11,12.27,11,12V8c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3.59l3,3 C16.39,14.98,16.39,15.61,16,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"air\": {\n    \"name\": \"air\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14.35,17.95c-0.28,0.89-1.01,1.62-1.9,1.9c-1.51,0.48-2.94-0.23-3.59-1.42C8.51,17.78,9.03,17,9.77,17h0.01 c0.34,0,0.68,0.16,0.84,0.46c0.17,0.32,0.5,0.54,0.89,0.54c0.55,0,1-0.45,1-1s-0.45-1-1-1H3c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h8.5C13.46,14,15,15.9,14.35,17.95z M18.91,5.67c-0.29-1.26-1.32-2.29-2.58-2.58c-1.76-0.4-3.37,0.53-4.02,1.98 C12,5.74,12.48,6.5,13.21,6.5h0c0.39,0,0.75-0.22,0.9-0.57C14.34,5.38,14.87,5,15.5,5C16.33,5,17,5.67,17,6.5S16.33,8,15.5,8H3 C2.45,8,2,8.45,2,9v0c0,0.55,0.45,1,1,1h12.5C17.7,10,19.43,7.96,18.91,5.67z M18.4,11L3,11c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h15.5c0.83,0,1.5,0.67,1.5,1.5c0,0.63-0.38,1.16-0.93,1.39c-0.36,0.15-0.57,0.51-0.57,0.9v0 c0,0.73,0.76,1.21,1.43,0.91c1.43-0.64,2.35-2.21,2-3.93C21.59,12.13,20.07,11,18.4,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_change\": {\n    \"name\": \"price_change\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M11,10H8v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v0c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0H7c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1 h3v-1H7c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0h1c0.55,0,1,0.45,1,1v0 C12,9.55,11.55,10,11,10z M15.65,15.9L14,14.25h4l-1.65,1.65C16.16,16.09,15.84,16.09,15.65,15.9z M14,10l1.65-1.65 c0.2-0.2,0.51-0.2,0.71,0L18,10H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_done\": {\n    \"name\": \"cloud_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zm-8.64 6.25c-.39.39-1.02.39-1.41 0L7.2 14.2c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.18l4.48-4.48c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-5.18 5.18z\\\"></path>\"\n      }\n    }\n  },\n  \"difference\": {\n    \"name\": \"difference\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,7c0.55,0,1,0.45,1,1v13h13c0.55,0,1,0.45,1,1s-0.45,1-1,1H4c-1.1,0-2-0.9-2-2V8C2,7.45,2.45,7,3,7z M15.59,1.59 C15.21,1.21,14.7,1,14.17,1H8C6.9,1,6.01,1.9,6.01,3L6,17c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V7.83c0-0.53-0.21-1.04-0.59-1.41 L15.59,1.59z M15.5,15h-4c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v0C16.5,14.55,16.05,15,15.5,15z M15.5,9h-1 v1c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V9h-1c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h1V6c0-0.55,0.45-1,1-1h0 c0.55,0,1,0.45,1,1v1h1c0.55,0,1,0.45,1,1v0C16.5,8.55,16.05,9,15.5,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2.75,6C3.16,6,3.5,6.34,3.5,6.75V17.5h8.75c0.41,0,0.75,0.34,0.75,0.75S12.66,19,12.25,19H3.5C2.67,19,2,18.33,2,17.5 V6.75C2,6.34,2.34,6,2.75,6z M17,5.62v8.88c0,0.83-0.67,1.5-1.5,1.5h-9C5.67,16,5,15.33,5,14.5v-12C5,1.67,5.67,1,6.5,1h5.88 c0.4,0,0.78,0.16,1.06,0.44l3.12,3.12C16.84,4.84,17,5.22,17,5.62z M13.25,11.75c0-0.41-0.34-0.75-0.75-0.75h-3 c-0.41,0-0.75,0.34-0.75,0.75v0c0,0.41,0.34,0.75,0.75,0.75h3C12.91,12.5,13.25,12.16,13.25,11.75L13.25,11.75z M12.5,6.5h-0.75 V5.75C11.75,5.34,11.41,5,11,5h0c-0.41,0-0.75,0.34-0.75,0.75V6.5H9.5c-0.41,0-0.75,0.34-0.75,0.75v0C8.75,7.66,9.09,8,9.5,8h0.75 v0.75c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75V8h0.75c0.41,0,0.75-0.34,0.75-0.75v0 C13.25,6.84,12.91,6.5,12.5,6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_queue\": {\n    \"name\": \"cloud_queue\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"approval\": {\n    \"name\": \"approval\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,16v4c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4c0-1.1-0.9-2-2-2H6C4.9,14,4,14.9,4,16z M17,18H7c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h10c0.55,0,1,0.45,1,1v0C18,17.55,17.55,18,17,18z M12,2C9.54,2,7.48,3.79,7.07,6.13 C6.99,6.65,7.13,7.18,7.43,7.6l3.76,5.26c0.4,0.56,1.23,0.56,1.63,0l3.76-5.26c0.3-0.42,0.44-0.95,0.35-1.47 C16.52,3.79,14.46,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_for_offline\": {\n    \"name\": \"download_for_offline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M11,10V7c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3 h1.79c0.45,0,0.67,0.54,0.35,0.85l-2.79,2.79c-0.2,0.2-0.51,0.2-0.71,0l-2.79-2.79C8.54,10.54,8.76,10,9.21,10H11z M16,17H8 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h8c0.55,0,1,0.45,1,1v0C17,16.55,16.55,17,16,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"text_snippet\": {\n    \"name\": \"text_snippet\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83 C15.21,3.21,14.7,3,14.17,3L14.17,3z M8,15h8c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1v0C7,15.45,7.45,15,8,15z M8,11h8c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1v0C7,11.45,7.45,11,8,11z M8,7h5c0.55,0,1,0.45,1,1v0 c0,0.55-0.45,1-1,1H8C7.45,9,7,8.55,7,8v0C7,7.45,7.45,7,8,7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud\": {\n    \"name\": \"cloud\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_delete\": {\n    \"name\": \"folder_delete\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.5,15.5h-2v-4h2V15.5z M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M18.25,11.5H18v4c0,0.83-0.67,1.5-1.5,1.5h-2c-0.83,0-1.5-0.67-1.5-1.5v-4h-0.25 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.75V9.75C14.5,9.34,14.84,9,15.25,9h0.5c0.41,0,0.75,0.34,0.75,0.75V10 h1.75c0.41,0,0.75,0.34,0.75,0.75C19,11.16,18.66,11.5,18.25,11.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,12.5h-1.5V10H14V12.5z M16.5,6H10L8.44,4.44C8.16,4.16,7.78,4,7.38,4H3.5C2.67,4,2,4.67,2,5.5v9 C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M15,10v2.5c0,0.55-0.45,1-1,1h-1.5 c-0.55,0-1-0.45-1-1V10C11.22,10,11,9.78,11,9.5C11,9.22,11.22,9,11.5,9h1c0-0.28,0.22-0.5,0.5-0.5h0.5C13.78,8.5,14,8.72,14,9h1 c0.28,0,0.5,0.22,0.5,0.5C15.5,9.78,15.28,10,15,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snippet_folder\": {\n    \"name\": \"snippet_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z M22,8v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2L2.01,6C2.01,4.9,2.9,4,4,4h5.17 c0.53,0,1.04,0.21,1.41,0.59L12,6h8C21.1,6,22,6.9,22,8z M19,11.91c0-0.27-0.11-0.52-0.29-0.71l-1.91-1.91 C16.61,9.11,16.35,9,16.09,9H14c-0.55,0-1,0.45-1,1v6c0,0.55,0.45,1,1,1l4,0c0.55,0,1-0.45,1-1V11.91z\\\"></path></g>\"\n      }\n    }\n  },\n  \"topic\": {\n    \"name\": \"topic\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M13,16H7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1C14,15.55,13.55,16,13,16z M17,12H7 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h10c0.55,0,1,0.45,1,1C18,11.55,17.55,12,17,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_download\": {\n    \"name\": \"cloud_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-4.65 4.65c-.2.2-.51.2-.71 0L7 13h3V9h4v4h3z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_sync\": {\n    \"name\": \"cloud_sync\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M24,17.48c0,1.38-1.12,2.5-2.5,2.5L15,20c-1.66,0-3-1.34-3-3c0-1.6,1.26-2.9,2.84-2.98C15.4,12.83,16.6,12,18,12 c1.76,0,3.2,1.3,3.45,2.99c0.02,0,0.03-0.01,0.05-0.01C22.88,14.98,24,16.1,24,17.48z M10,15c0-0.55-0.45-1-1-1s-1,0.45-1,1v1.44 c-1.22-1.1-2-2.67-2-4.44c0-2.38,1.39-4.43,3.4-5.4C9.77,6.42,10,6.04,10,5.63c0-0.71-0.73-1.18-1.37-0.88C5.89,6.03,4,8.79,4,12 c0,2.4,1.06,4.54,2.73,6H5c-0.55,0-1,0.45-1,1s0.45,1,1,1h4c0.55,0,1-0.45,1-1V15z M19,6c0.55,0,1-0.45,1-1s-0.45-1-1-1h-4 c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1s1-0.45,1-1V7.56c0.98,0.89,1.68,2.08,1.92,3.44l2.02,0c-0.25-1.99-1.23-3.74-2.66-5H19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.18,12.25C18.01,10.98,16.92,10,15.6,10c-1.06,0-1.97,0.64-2.35,1.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25h4.88c1.04,0,1.88-0.84,1.88-1.88C20,13.11,19.19,12.28,18.18,12.25z M5.25,16 c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75h0.8C4.8,13.4,4,11.8,4,10c0-2.39,1.4-4.45,3.42-5.41 C7.92,4.35,8.5,4.72,8.5,5.27c0,0.29-0.17,0.56-0.44,0.68C6.55,6.68,5.5,8.21,5.5,10c0,1.32,0.59,2.5,1.5,3.32v-0.57 C7,12.34,7.34,12,7.75,12c0.41,0,0.75,0.34,0.75,0.75v2.5C8.5,15.66,8.16,16,7.75,16H5.25z M13,7.25C13,7.66,12.66,8,12.25,8 S11.5,7.66,11.5,7.25V5c0-0.55,0.45-1,1-1h2.25c0.41,0,0.75,0.34,0.75,0.75S15.16,5.5,14.75,5.5h-0.8 c1.02,0.89,1.73,2.11,1.97,3.5l-1.53,0C14.17,8.09,13.68,7.29,13,6.68V7.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cloud_circle\": {\n    \"name\": \"cloud_circle\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_file_move_rtl\": {\n    \"name\": \"drive_file_move_rtl\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M11.15,16.15l-2.79-2.79c-0.2-0.2-0.2-0.51,0-0.71l2.79-2.79C11.46,9.54,12,9.76,12,10.21V12h3 c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h-3v1.79C12,16.24,11.46,16.46,11.15,16.15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,11.02c-0.01,0.41-0.37,0.73-0.78,0.73H10v1.04c0,0.45-0.54,0.67-0.85,0.35l-1.79-1.79c-0.2-0.2-0.2-0.51,0-0.71 l1.79-1.79C9.46,8.54,10,8.76,10,9.21v1.04h2.25C12.67,10.25,13.01,10.6,13,11.02z M16.5,6H10L8.44,4.44C8.16,4.16,7.78,4,7.38,4 H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_upload\": {\n    \"name\": \"cloud_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l4.65-4.65c.2-.2.51-.2.71 0L17 13h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_open\": {\n    \"name\": \"folder_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 12H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"format_overline\": {\n    \"name\": \"format_overline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,4c0-0.55,0.45-1,1-1h12c0.55,0,1,0.45,1,1s-0.45,1-1,1H6C5.45,5,5,4.55,5,4z M12,7c-3.87,0-7,3.13-7,7 c0,3.87,3.13,7,7,7s7-3.13,7-7C19,10.13,15.87,7,12,7z M12,18.5c-2.49,0-4.5-2.01-4.5-4.5S9.51,9.5,12,9.5s4.5,2.01,4.5,4.5 S14.49,18.5,12,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,3.75c0,0.41-0.34,0.75-0.75,0.75h-8.5C5.34,4.5,5,4.16,5,3.75S5.34,3,5.75,3h8.5C14.66,3,15,3.34,15,3.75z M15.5,11.5 c0,3.04-2.46,5.5-5.5,5.5s-5.5-2.46-5.5-5.5C4.5,8.46,6.96,6,10,6S15.5,8.46,15.5,11.5z M13.5,11.5C13.5,9.57,11.93,8,10,8 s-3.5,1.57-3.5,3.5S8.07,15,10,15S13.5,13.43,13.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attach_email\": {\n    \"name\": \"attach_email\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M21,10V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h11v-5c0-1.66,1.34-3,3-3H21z M11.53,10.67 c-0.32,0.2-0.74,0.2-1.06,0L3.4,6.25C3.15,6.09,3,5.82,3,5.53c0-0.67,0.73-1.07,1.3-0.72L11,9l6.7-4.19 C18.27,4.46,19,4.86,19,5.53c0,0.29-0.15,0.56-0.4,0.72L11.53,10.67z\\\"></path><path d=\\\"M22,14c-0.55,0-1,0.45-1,1v3c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V17 c0,0.55,0.45,1,1,1s1-0.45,1-1v-3.5c0-1.38-1.12-2.5-2.5-2.5S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-3 C23,14.45,22.55,14,22,14z\\\"></path></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,9V3.5C17,2.67,16.33,2,15.5,2h-13C1.67,2,1,2.67,1,3.5v9C1,13.33,1.67,14,2.5,14H12v-2c0-1.66,1.34-3,3-3H17z M9.75,8.57c-0.46,0.27-1.03,0.27-1.49,0L2.89,5.49C2.65,5.35,2.5,5.1,2.5,4.82v0c0-0.59,0.64-0.96,1.15-0.67L9,7.23l5.35-3.07 c0.51-0.29,1.15,0.08,1.15,0.67v0c0,0.27-0.15,0.53-0.39,0.67L9.75,8.57z\\\"></path><path d=\\\"M17.5,12.75l0,2.17c0,0.81-0.61,1.54-1.42,1.58c-0.87,0.05-1.58-0.64-1.58-1.5v-3c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5v2.25c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75l0-2.16c0-1.04-0.76-1.98-1.8-2.08 C14,9.9,13,10.83,13,12l0,2.87c0,1.64,1.27,3.08,2.91,3.12c1.7,0.05,3.09-1.31,3.09-3v-2.25c0-0.41-0.34-0.75-0.75-0.75h0 C17.84,12,17.5,12.34,17.5,12.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"folder_off\": {\n    \"name\": \"folder_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2.81,2.81c-0.39-0.39-1.02-0.39-1.41,0C1,3.2,1,3.83,1.39,4.22l0.85,0.85C2.1,5.35,2.01,5.66,2.01,6L2,18 c0,1.1,0.9,2,2,2h13.17l2.61,2.61c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L2.81,2.81z\\\"></path><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H6.83l14.93,14.93C21.91,18.65,22,18.34,22,18V8C22,6.9,21.1,6,20,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2.75,2.75c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l0.69,0.69C2.15,4.77,2,5.12,2,5.5v9 C2,15.33,2.67,16,3.5,16h10.38l2.31,2.31c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L2.75,2.75z\\\"></path><path d=\\\"M16.5,6H10L8.44,4.44C8.16,4.16,7.78,4,7.38,4H6.12l11.49,11.49C17.85,15.23,18,14.88,18,14.5v-7C18,6.67,17.33,6,16.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_view\": {\n    \"name\": \"grid_view\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,11h4c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v4C3,10.1,3.9,11,5,11z\\\"></path><path d=\\\"M5,21h4c1.1,0,2-0.9,2-2v-4c0-1.1-0.9-2-2-2H5c-1.1,0-2,0.9-2,2v4C3,20.1,3.9,21,5,21z\\\"></path><path d=\\\"M13,5v4c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-4C13.9,3,13,3.9,13,5z\\\"></path><path d=\\\"M15,21h4c1.1,0,2-0.9,2-2v-4c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v4C13,20.1,13.9,21,15,21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"downloading\": {\n    \"name\": \"downloading\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.33,3.55c-0.94-0.6-1.99-1.04-3.12-1.3C13.59,2.11,13,2.59,13,3.23v0c0,0.45,0.3,0.87,0.74,0.97 c0.91,0.2,1.77,0.56,2.53,1.05c0.39,0.25,0.89,0.17,1.22-0.16l0,0C17.94,4.64,17.87,3.89,17.33,3.55z M20.77,11L20.77,11 c0.64,0,1.13-0.59,0.98-1.21c-0.26-1.12-0.7-2.17-1.3-3.12c-0.34-0.54-1.1-0.61-1.55-0.16l0,0c-0.32,0.32-0.4,0.83-0.16,1.22 c0.49,0.77,0.85,1.62,1.05,2.53C19.9,10.7,20.31,11,20.77,11z M18.9,17.49L18.9,17.49c0.45,0.45,1.21,0.38,1.55-0.15 c0.6-0.94,1.04-1.99,1.3-3.11c0.14-0.62-0.35-1.21-0.98-1.21h0c-0.45,0-0.87,0.3-0.97,0.74c-0.2,0.91-0.57,1.76-1.05,2.53 C18.5,16.66,18.58,17.17,18.9,17.49z M13,20.77L13,20.77c0,0.64,0.59,1.13,1.21,0.98c1.12-0.26,2.17-0.7,3.11-1.3 c0.54-0.34,0.61-1.1,0.16-1.55l0,0c-0.32-0.32-0.83-0.4-1.21-0.15c-0.76,0.49-1.61,0.85-2.53,1.05C13.3,19.9,13,20.31,13,20.77z M13,12V8c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v4H9.41c-0.89,0-1.34,1.08-0.71,1.71l2.59,2.59c0.39,0.39,1.02,0.39,1.41,0 l2.59-2.59c0.63-0.63,0.18-1.71-0.71-1.71H13z M11,20.77L11,20.77c0,0.64-0.59,1.13-1.21,0.99C5.33,20.75,2,16.77,2,12 s3.33-8.75,7.79-9.75C10.41,2.11,11,2.59,11,3.23v0c0,0.46-0.31,0.87-0.76,0.97C6.67,5,4,8.19,4,12s2.67,7,6.24,7.8 C10.69,19.9,11,20.31,11,20.77z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upload_file\": {\n    \"name\": \"upload_file\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.41,7.41l-4.83-4.83C14.21,2.21,13.7,2,13.17,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2 V8.83C20,8.3,19.79,7.79,19.41,7.41z M14.8,15H13v3c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H9.21c-0.45,0-0.67-0.54-0.35-0.85l2.8-2.79 c0.2-0.19,0.51-0.19,0.71,0l2.79,2.79C15.46,14.46,15.24,15,14.8,15z M14,9c-0.55,0-1-0.45-1-1V3.5L18.5,9H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"folder_copy\": {\n    \"name\": \"folder_copy\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,6L2,6C1.45,6,1,6.45,1,7v12c0,1.1,0.9,2,2,2h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H3V7C3,6.45,2.55,6,2,6z\\\"></path><path d=\\\"M21,4h-7l-1.41-1.41C12.21,2.21,11.7,2,11.17,2H7C5.9,2,5.01,2.9,5.01,4L5,15c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6 C23,4.9,22.1,4,21,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M1.75,5L1.75,5C1.34,5,1,5.34,1,5.75v9.75C1,16.33,1.67,17,2.5,17h12.43c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H2.5V5.75C2.5,5.34,2.16,5,1.75,5z\\\"></path><path d=\\\"M16.5,4H11L9.44,2.44C9.16,2.16,8.78,2,8.38,2H5.5C4.67,2,4,2.67,4,3.5v9C4,13.33,4.67,14,5.5,14h11 c0.83,0,1.5-0.67,1.5-1.5v-7C18,4.67,17.33,4,16.5,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_done\": {\n    \"name\": \"download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 18h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm5.01-4.1c-.78.77-2.04.77-2.82-.01L6 11.7c-.55-.55-.54-1.44.03-1.97.54-.52 1.4-.5 1.92.02L9.6 11.4l6.43-6.43c.54-.54 1.41-.54 1.95 0l.04.04c.54.54.54 1.42-.01 1.96l-7 6.93z\\\"></path>\"\n      }\n    }\n  },\n  \"folder\": {\n    \"name\": \"folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.59 4.59C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"file_upload\": {\n    \"name\": \"file_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.4,10h1.59v5c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-5h1.59c0.89,0,1.34-1.08,0.71-1.71L12.7,3.7 c-0.39-0.39-1.02-0.39-1.41,0L6.7,8.29C6.07,8.92,6.51,10,7.4,10z M5,19c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1s-0.45-1-1-1H6 C5.45,18,5,18.45,5,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"newspaper\": {\n    \"name\": \"newspaper\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.15,3.85l-0.82,0.82l-0.95-0.96c-0.39-0.39-1.02-0.39-1.42,0L17,4.67l-0.96-0.96c-0.39-0.39-1.03-0.39-1.42,0 l-0.95,0.96l-0.96-0.96c-0.39-0.39-1.02-0.39-1.41,0l-0.96,0.96L9.38,3.71c-0.39-0.39-1.02-0.39-1.42,0L7,4.67L6.04,3.71 c-0.39-0.39-1.03-0.39-1.42,0L3.67,4.67L2.85,3.85C2.54,3.54,2,3.76,2,4.21V19c0,1.1,0.9,2,2,2l16,0c1.1,0,2-0.9,2-2V4.21 C22,3.76,21.46,3.54,21.15,3.85z M11,19H4v-6h7V19z M20,19h-7v-2h7V19z M20,15h-7v-2h7V15z M20,11H4V8h16V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.67,4.33l-0.8-0.8c-0.29-0.29-0.77-0.29-1.06,0L14,4.33l-0.8-0.8c-0.29-0.29-0.77-0.29-1.06,0l-0.8,0.8l-0.8-0.8 c-0.29-0.29-0.77-0.29-1.06,0l-0.8,0.8l-0.8-0.8c-0.29-0.29-0.77-0.29-1.06,0L6,4.33l-0.8-0.8c-0.29-0.29-0.77-0.29-1.06,0 l-0.8,0.8L2.43,3.43C2.27,3.27,2,3.38,2,3.6v11.9C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V3.6 c0-0.22-0.27-0.33-0.43-0.18L16.67,4.33z M16.5,9.5h-13v-3h13V9.5z M10.75,11h5.75v1.5h-5.75V11z M3.5,11h5.75v4.5H3.5V11z M10.75,15.5V14h5.75v1.5H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"drive_file_rename_outline\": {\n    \"name\": \"drive_file_rename_outline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,16l-4,4h8c1.1,0,2-0.9,2-2v0c0-1.1-0.9-2-2-2H15z\\\"></path><path d=\\\"M12.06,7.19l-8.77,8.77C3.11,16.14,3,16.4,3,16.66V19c0,0.55,0.45,1,1,1h2.34c0.27,0,0.52-0.11,0.71-0.29l8.77-8.77 L12.06,7.19z\\\"></path><path d=\\\"M18.71,8.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75L18.71,8.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"drive_file_move\": {\n    \"name\": \"drive_file_move\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M12,15.79V14H9c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h3v-1.79c0-0.45,0.54-0.67,0.85-0.35l2.79,2.79 c0.2,0.2,0.2,0.51,0,0.71l-2.79,2.79C12.54,16.46,12,16.24,12,15.79z\\\"></path></g>\"\n      }\n    }\n  },\n  \"file_download\": {\n    \"name\": \"file_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.59,9H15V4c0-0.55-0.45-1-1-1h-4C9.45,3,9,3.45,9,4v5H7.41c-0.89,0-1.34,1.08-0.71,1.71l4.59,4.59 c0.39,0.39,1.02,0.39,1.41,0l4.59-4.59C17.92,10.08,17.48,9,16.59,9z M5,19c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1s-0.45-1-1-1H6 C5.45,18,5,18.45,5,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"folder_zip\": {\n    \"name\": \"folder_zip\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M18,12h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,6H10L8.44,4.44C8.16,4.16,7.78,4,7.38,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13 c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M15,9h-1.5v1.5H15V12h-1.5v1.5H12V12h1.5v-1.5H12V9h1.5V7.5H15V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"download\": {\n    \"name\": \"download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"rule_folder\": {\n    \"name\": \"rule_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M7.12,15.29l-1.41-1.41c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71l2.83-2.83 c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41l-3.54,3.54C8.14,15.68,7.51,15.68,7.12,15.29z M17.41,13l0.88,0.88 c0.39,0.39,0.39,1.02,0,1.41l0,0c-0.39,0.39-1.02,0.39-1.41,0L16,14.41l-0.88,0.88c-0.39,0.39-1.02,0.39-1.41,0l0,0 c-0.39-0.39-0.39-1.02,0-1.41L14.59,13l-0.88-0.88c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0L16,11.59l0.88-0.88 c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41L17.41,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upload\": {\n    \"name\": \"upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.71 3.7c-.39-.39-1.02-.39-1.41 0L6.71 8.29c-.63.63-.19 1.71.7 1.71H9v5c0 .55.45 1 1 1zm-4 2h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_shared\": {\n    \"name\": \"folder_shared\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_off\": {\n    \"name\": \"cloud_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM3.71 4.56c-.39.39-.39 1.02 0 1.41l2.06 2.06h-.42c-3.28.35-5.76 3.34-5.29 6.79C.46 17.84 3.19 20 6.22 20h11.51l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 4.56c-.39-.39-1.02-.39-1.41 0zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_folder_upload\": {\n    \"name\": \"drive_folder_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M13,13v3c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-3H9.21c-0.45,0-0.67-0.54-0.35-0.85l2.8-2.79 c0.2-0.2,0.51-0.19,0.71,0l2.79,2.79C15.46,12.46,15.24,13,14.8,13H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"workspaces\": {\n    \"name\": \"workspaces\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S8.2,13,6,13z M12,3C9.8,3,8,4.8,8,7s1.8,4,4,4s4-1.8,4-4S14.2,3,12,3z M18,13 c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S20.2,13,18,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"3\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"create_new_folder\": {\n    \"name\": \"create_new_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-8l-1.41-1.41C10.21 4.21 9.7 4 9.17 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2 8h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2h-2c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_off\": {\n    \"name\": \"file_download_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,6.17V4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v5h1.59c0.89,0,1.33,1.08,0.7,1.71l-1.88,1.88L9,6.17z M20.49,20.49 L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l4.5,4.5c-0.26,0.37-0.28,0.91,0.1,1.28l4.59,4.59 c0.35,0.35,0.88,0.37,1.27,0.09L15.17,18H6c-0.55,0-1,0.45-1,1s0.45,1,1,1h11.17l1.9,1.9c0.39,0.39,1.02,0.39,1.41,0 C20.88,21.51,20.88,20.88,20.49,20.49z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,5.88V3.5C8,3.22,8.22,3,8.5,3h3C11.78,3,12,3.22,12,3.5V8h1.79c0.45,0,0.67,0.54,0.35,0.85l-1.59,1.59L8,5.88z M16.54,16.54L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l3.56,3.56C5.7,8.23,5.61,8.61,5.85,8.85 l3.79,3.79c0.2,0.2,0.51,0.2,0.71,0l0.09-0.09l1.94,1.94H5.75C5.34,14.5,5,14.84,5,15.25C5,15.66,5.34,16,5.75,16h8.13l1.6,1.6 c0.29,0.29,0.77,0.29,1.06,0C16.83,17.31,16.83,16.83,16.54,16.54z\\\"></path>\"\n      }\n    }\n  },\n  \"file_open\": {\n    \"name\": \"file_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.17,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h9v-6c0-1.1,0.9-2,2-2h3V8.83c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83 C14.21,2.21,13.7,2,13.17,2z M13,8V3.5L18.5,9H14C13.45,9,13,8.55,13,8z M22.66,17c0,0.55-0.45,1-1,1h-1.24l2.24,2.24 c0.39,0.39,0.39,1.02,0,1.41l0,0c-0.39,0.39-1.02,0.39-1.41,0L19,19.41l0,1.24c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1V17 c0-0.55,0.45-1,1-1h3.66C22.21,16,22.66,16.45,22.66,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,16.99V14.5c0-0.55,0.45-1,1-1h2.49c0.41,0,0.75,0.34,0.75,0.75v0c0,0.41-0.34,0.75-0.75,0.75h-0.93l1.68,1.68 c0.29,0.29,0.29,0.77,0,1.06h0c-0.29,0.29-0.77,0.29-1.06,0l-1.68-1.68v0.93c0,0.41-0.34,0.75-0.75,0.75h0 C14.34,17.74,14,17.41,14,16.99z M11.38,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h7v-4.5c0-0.83,0.67-1.5,1.5-1.5h2 V6.62c0-0.4-0.16-0.78-0.44-1.06l-3.12-3.12C12.16,2.16,11.78,2,11.38,2z M11,6V3l4,4h-3C11.45,7,11,6.55,11,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attachment\": {\n    \"name\": \"attachment\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.75 16H7.17c-2.09 0-3.95-1.53-4.15-3.61C2.79 10.01 4.66 8 7 8h12.36c1.31 0 2.5.94 2.63 2.24.15 1.5-1.02 2.76-2.49 2.76H9c-.55 0-1-.45-1-1s.45-1 1-1h8.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H9.14c-1.31 0-2.5.94-2.63 2.24-.15 1.5 1.02 2.76 2.49 2.76h10.33c2.09 0 3.95-1.53 4.15-3.61.23-2.39-1.64-4.39-3.98-4.39H7.23c-2.87 0-5.44 2.1-5.71 4.96-.3 3.29 2.26 6.04 5.48 6.04h10.75c.41 0 .75-.34.75-.75s-.34-.75-.75-.75z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_done\": {\n    \"name\": \"file_download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.42,4.71L19.42,4.71c-0.39-0.39-1.02-0.39-1.41,0l-8.48,8.49L5.99,9.66c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41l4.24,4.24c0.39,0.39,1.02,0.39,1.41,0l9.19-9.19C19.82,5.73,19.82,5.1,19.42,4.71z\\\"></path><path d=\\\"M6,20h12c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6c-0.55,0-1,0.45-1,1v0C5,19.55,5.45,20,6,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"request_quote\": {\n    \"name\": \"request_quote\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.41,7.41l-4.83-4.83C14.21,2.21,13.7,2,13.17,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2 V8.83C20,8.3,19.79,7.79,19.41,7.41z M14,13c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1c0,0.55-0.45,1-1,1s-1-0.45-1-1h-1 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1c0-0.55,0.45-1,1-1s1,0.45,1,1h1 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1h-3v1H14z M14,8c-0.55,0-1-0.45-1-1V3.5L17.5,8H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"paid\": {\n    \"name\": \"paid\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12.88,17.76v0.36c0,0.48-0.39,0.88-0.88,0.88h0 c-0.48,0-0.88-0.39-0.88-0.88v-0.42c-0.63-0.15-1.93-0.61-2.69-2.1c-0.23-0.44-0.01-0.99,0.45-1.18l0.07-0.03 c0.41-0.17,0.87,0,1.08,0.39c0.32,0.61,0.95,1.37,2.12,1.37c0.93,0,1.98-0.48,1.98-1.61c0-0.96-0.7-1.46-2.28-2.03 c-1.1-0.39-3.35-1.03-3.35-3.31c0-0.1,0.01-2.4,2.62-2.96V5.88C11.12,5.39,11.52,5,12,5h0c0.48,0,0.88,0.39,0.88,0.88v0.37 c1.07,0.19,1.75,0.76,2.16,1.3c0.34,0.44,0.16,1.08-0.36,1.3l0,0C14.32,9,13.9,8.88,13.66,8.57c-0.28-0.38-0.78-0.77-1.6-0.77 c-0.7,0-1.81,0.37-1.81,1.39c0,0.95,0.86,1.31,2.64,1.9c2.4,0.83,3.01,2.05,3.01,3.45C15.9,17.17,13.4,17.67,12.88,17.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"toc\": {\n    \"name\": \"toc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 9h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm15 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"gif_box\": {\n    \"name\": \"gif_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10.5,10.5c0,0.28-0.22,0.5-0.5,0.5 H8.5v2h1v-0.5c0-0.29,0.25-0.53,0.55-0.5c0.26,0.02,0.45,0.26,0.45,0.52V13c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1v-2 c0-0.55,0.45-1,1-1H10C10.28,10,10.5,10.22,10.5,10.5z M12,10c0.28,0,0.5,0.22,0.5,0.5v3c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5 v-3C11.5,10.22,11.72,10,12,10z M14,14c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5 S16.28,11,16,11h-1.5v0.5h1c0.28,0,0.5,0.22,0.5,0.5s-0.22,0.5-0.5,0.5h-1v1C14.5,13.78,14.28,14,14,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M8.5,8.5C8.5,8.78,8.28,9,8,9H6.5v2h1v-0.5c0-0.29,0.25-0.53,0.55-0.5c0.26,0.02,0.45,0.26,0.45,0.52V11c0,0.55-0.45,1-1,1h-1 c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1H8C8.28,8,8.5,8.22,8.5,8.5z M10,12c-0.28,0-0.5-0.22-0.5-0.5v-3C9.5,8.22,9.72,8,10,8 s0.5,0.22,0.5,0.5v3C10.5,11.78,10.28,12,10,12z M14.5,8.5C14.5,8.78,14.28,9,14,9h-1.5v0.5h1c0.28,0,0.5,0.22,0.5,0.5 s-0.22,0.5-0.5,0.5h-1v1c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5v-3C11.5,8.22,11.72,8,12,8h2C14.28,8,14.5,8.22,14.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_bag\": {\n    \"name\": \"shopping_bag\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 4c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2zm2-6c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 6c0 .55-.45 1-1 1s-1-.45-1-1V8h2v2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"webhook\": {\n    \"name\": \"webhook\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,16c0-1.84,1-3.45,2.48-4.32C5.15,11.29,6,11.76,6,12.54c0,0.36-0.19,0.68-0.5,0.86C4.6,13.92,4,14.89,4,16 c0,1.85,1.68,3.31,3.6,2.94c1.42-0.28,2.4-1.61,2.4-3.06v0c0-0.49,0.39-0.88,0.88-0.88l5,0c0.27-0.31,0.67-0.5,1.12-0.5 c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5c-0.44,0-0.84-0.19-1.12-0.5l-3.98,0c-0.46,2.28-2.48,4-4.9,4 C4.24,21,2,18.76,2,16z M16.37,7c0.65,0,1.14-0.62,0.97-1.25C16.79,3.59,14.83,2,12.5,2c-2.76,0-5,2.24-5,5 c0,1.43,0.6,2.71,1.55,3.62l-2.35,3.9C6.02,14.66,5.5,15.27,5.5,16c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 c0-0.16-0.02-0.31-0.07-0.45l2.86-4.75c0.25-0.41,0.13-0.95-0.28-1.19C10.11,9.08,9.5,8.11,9.5,7c0-1.65,1.35-3,3-3 c1.38,0,2.54,0.93,2.89,2.2C15.52,6.66,15.9,7,16.37,7z M17,13c-0.38,0-0.75,0.07-1.09,0.2c-0.4,0.16-0.86-0.04-1.08-0.41 l-2.6-4.32C11.53,8.35,11,7.74,11,7c0-0.83,0.67-1.5,1.5-1.5S14,6.17,14,7c0,0.15-0.02,0.29-0.06,0.43l2.19,3.65 C16.41,11.03,16.7,11,17,11l0,0c2.76,0,5,2.24,5,5c0,2.76-2.24,5-5,5c-0.86,0-1.68-0.22-2.39-0.61c-0.92-0.5-0.58-1.89,0.47-1.89 c0.17,0,0.34,0.05,0.49,0.14C15.99,18.87,16.48,19,17,19c1.65,0,3-1.35,3-3S18.65,13,17,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,2c1.89,0,3.48,1.32,3.89,3.08C14.5,5.55,14.14,6,13.66,6c-0.35,0-0.65-0.24-0.73-0.58c-0.26-1.1-1.25-1.92-2.43-1.92 C9.12,3.5,8,4.62,8,6c0,0.91,0.49,1.72,1.23,2.15c0.33,0.2,0.43,0.64,0.22,0.96L7,12.92c0,0.03,0,0.05,0,0.08 c0,0.53-0.44,0.98-0.97,1C5.46,14.02,5,13.56,5,13c0-0.43,0.27-0.8,0.66-0.94l2.05-3.19C6.96,8.14,6.5,7.12,6.5,6 C6.5,3.79,8.29,2,10.5,2z M3.5,13c0,1.4,1.16,2.54,2.57,2.5c1.34-0.04,2.43-1.22,2.43-2.56v0c0-0.38,0.31-0.69,0.69-0.69h4.15 c0.2-0.18,0.48-0.28,0.78-0.24c0.46,0.05,0.82,0.42,0.88,0.88C15.06,13.49,14.59,14,14,14c-0.25,0-0.49-0.09-0.66-0.25l-3.41,0 C9.58,15.6,7.95,17,6,17c-2.21,0-4-1.79-4-4c0-1.42,0.74-2.66,1.85-3.37C4.35,9.31,5,9.67,5,10.26c0,0.25-0.13,0.49-0.34,0.63 C3.96,11.33,3.5,12.11,3.5,13z M14,9c-0.36,0-0.71,0.05-1.04,0.14l-1.47-2.95C11.5,6.1,11.5,6,11.49,5.9 c-0.05-0.46-0.42-0.83-0.88-0.88c-0.6-0.07-1.11,0.4-1.11,0.99c0,0.39,0.23,0.73,0.56,0.9l1.8,3.59c0.18,0.35,0.61,0.5,0.95,0.31 c0.36-0.19,0.76-0.3,1.2-0.3c1.38,0,2.5,1.12,2.5,2.5c0,1.38-1.12,2.5-2.5,2.5c-0.49,0-0.94-0.14-1.33-0.38 c-0.12-0.08-0.26-0.12-0.4-0.12c-0.76,0-1.03,0.99-0.39,1.39C12.49,16.78,13.22,17,14,17c2.21,0,4-1.79,4-4C18,10.79,16.21,9,14,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"preview\": {\n    \"name\": \"preview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M13.5,13 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5S13.5,12.17,13.5,13z M12,9c-2.73,0-5.06,1.66-6,4 c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9z M12,15.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 c1.38,0,2.5,1.12,2.5,2.5C14.5,14.38,13.38,15.5,12,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"work\": {\n    \"name\": \"work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors\": {\n    \"name\": \"sensors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.54,8.54c0.35,0.35,0.37,0.88,0.1,1.29C8.24,10.45,8,11.2,8,12c0,0.8,0.24,1.55,0.64,2.17c0.27,0.41,0.24,0.95-0.11,1.29 c-0.43,0.43-1.17,0.4-1.51-0.11C6.38,14.4,6,13.24,6,12c0-1.21,0.36-2.33,0.97-3.28C7.33,8.18,8.08,8.08,8.54,8.54z M15.46,15.46 c0.43,0.43,1.17,0.4,1.51-0.11C17.62,14.4,18,13.24,18,12c0-1.24-0.38-2.4-1.03-3.36c-0.34-0.5-1.08-0.54-1.51-0.11 c-0.35,0.35-0.37,0.88-0.11,1.29C15.76,10.45,16,11.2,16,12c0,0.8-0.24,1.55-0.64,2.17C15.09,14.58,15.12,15.12,15.46,15.46z M12,10 c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M18.32,18.32c0.42,0.42,1.12,0.39,1.5-0.08C21.18,16.53,22,14.36,22,12 s-0.82-4.53-2.18-6.24c-0.37-0.47-1.07-0.5-1.5-0.08c-0.36,0.36-0.4,0.92-0.08,1.32c1.1,1.37,1.76,3.11,1.76,5s-0.66,3.63-1.76,5 C17.92,17.39,17.96,17.96,18.32,18.32z M5.68,5.68c-0.42-0.42-1.12-0.39-1.5,0.08C2.82,7.47,2,9.64,2,12s0.82,4.53,2.18,6.24 c0.37,0.47,1.07,0.5,1.5,0.08c0.36-0.36,0.4-0.92,0.08-1.32C4.66,15.63,4,13.89,4,12s0.66-3.63,1.76-5 C6.08,6.61,6.04,6.04,5.68,5.68z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.91,4.91c0.27,0.27,0.3,0.7,0.06,0.99C4.05,7.01,3.5,8.44,3.5,10c0,1.56,0.55,2.99,1.47,4.11 c0.24,0.29,0.21,0.72-0.06,0.99c-0.32,0.32-0.84,0.28-1.13-0.07C2.67,13.65,2,11.9,2,10c0-1.9,0.67-3.65,1.78-5.03 C4.06,4.62,4.59,4.59,4.91,4.91z M15.09,15.09c0.32,0.32,0.84,0.28,1.13-0.07C17.33,13.65,18,11.9,18,10c0-1.9-0.67-3.65-1.78-5.03 c-0.28-0.35-0.81-0.39-1.13-0.07c-0.27,0.27-0.3,0.7-0.06,0.99C15.95,7.01,16.5,8.44,16.5,10c0,1.56-0.55,2.99-1.47,4.11 C14.8,14.4,14.83,14.83,15.09,15.09z M12.95,12.95c0.32,0.32,0.87,0.3,1.14-0.08C14.66,12.06,15,11.07,15,10 c0-1.07-0.34-2.06-0.91-2.87c-0.26-0.37-0.81-0.4-1.14-0.08C12.7,7.3,12.66,7.7,12.87,8c0.4,0.57,0.63,1.26,0.63,2 c0,0.74-0.23,1.44-0.63,2C12.66,12.3,12.7,12.7,12.95,12.95z M7.05,7.05c-0.32-0.32-0.87-0.3-1.14,0.08C5.34,7.94,5,8.93,5,10 c0,1.07,0.34,2.06,0.91,2.87c0.26,0.37,0.81,0.4,1.14,0.08C7.3,12.7,7.34,12.3,7.13,12c-0.4-0.57-0.63-1.26-0.63-2 c0-0.74,0.23-1.44,0.63-2C7.34,7.7,7.3,7.3,7.05,7.05z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75s0.78,1.75,1.75,1.75 s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"launch\": {\n    \"name\": \"launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V3h-6c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_accessibility\": {\n    \"name\": \"settings_accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.74,4.96c-0.13-0.53-0.67-0.85-1.2-0.73C17.16,4.77,14.49,5,12,5S6.84,4.77,4.46,4.24c-0.54-0.12-1.07,0.19-1.2,0.73 L3.24,5.02C3.11,5.56,3.43,6.12,3.97,6.24C5.59,6.61,7.34,6.86,9,7v11c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-5h2v5 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7c1.66-0.14,3.41-0.39,5.03-0.76c0.54-0.12,0.86-0.68,0.73-1.22L20.74,4.96z M12,4 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,4,12,4z M8,24L8,24c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0 C7,23.55,7.45,24,8,24z M12,24L12,24c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C11,23.55,11.45,24,12,24z M16,24L16,24c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C15,23.55,15.45,24,16,24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"install_mobile\": {\n    \"name\": \"install_mobile\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.71,13.29l3.59-3.59c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L19,10.17V4c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v6.17l-1.89-1.88c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l3.59,3.59 C17.69,13.68,18.32,13.68,18.71,13.29z\\\"></path><path d=\\\"M17,18H7V6h7V1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-5h-2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.94,10.29l2.28-2.28c0.29-0.29,0.29-0.77,0-1.06v0c-0.29-0.29-0.77-0.29-1.06,0L16,8.11V3.75C16,3.34,15.66,3,15.25,3h0 c-0.41,0-0.75,0.34-0.75,0.75v4.39l-1.16-1.16c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l2.25,2.25 C14.92,10.68,15.55,10.68,15.94,10.29z\\\"></path><path d=\\\"M14.5,15h-9V5H12V1H5.5C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5V13h-1.5V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pan_tool_alt\": {\n    \"name\": \"pan_tool_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5.2,15.43c0-0.65,0.6-1.13,1.24-0.99L10,15.24V4.5C10,3.67,10.67,3,11.5,3S13,3.67,13,4.5v6h0.91 c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04c0.77,0.38,1.21,1.22,1.09,2.07l-0.63,4.46C19.21,20.27,18.36,21,17.37,21h-6.16 c-0.53,0-1.29-0.21-1.66-0.59l-4.07-4.29C5.3,15.94,5.2,15.69,5.2,15.43z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.66,9H11V4.25C11,3.56,10.44,3,9.75,3h0C9.06,3,8.5,3.56,8.5,4.25V13l-2.12-0.71c-0.54-0.18-1.13-0.04-1.54,0.36L4.5,13 l3.56,3.56C8.34,16.84,8.72,17,9.12,17h5.27c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59L12.66,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_button\": {\n    \"name\": \"smart_button\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.04,17.99 c0.18,0.39,0.73,0.39,0.91,0l0.63-1.4l1.4-0.63c0.39-0.18,0.39-0.73,0-0.91l-1.4-0.63l-0.63-1.4c-0.18-0.39-0.73-0.39-0.91,0 l-0.63,1.4l-1.4,0.63c-0.39,0.18-0.39,0.73,0,0.91l1.4,0.63L14.04,17.99z M16.74,13.43c0.1,0.22,0.42,0.22,0.52,0l0.36-0.8 l0.8-0.36c0.22-0.1,0.22-0.42,0-0.52l-0.8-0.36l-0.36-0.8c-0.1-0.22-0.42-0.22-0.52,0l-0.36,0.8l-0.8,0.36 c-0.22,0.1-0.22,0.42,0,0.52l0.8,0.36L16.74,13.43z\\\"></path></g>\"\n      }\n    }\n  },\n  \"credit_card\": {\n    \"name\": \"credit_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down\": {\n    \"name\": \"thumb_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.88 21.94l5.53-5.54c.37-.37.58-.88.58-1.41V5c0-1.1-.9-2-2-2H6c-.8 0-1.52.48-1.83 1.21L.91 11.82C.06 13.8 1.51 16 3.66 16h5.65l-.95 4.58c-.1.5.05 1.01.41 1.37.59.58 1.53.58 2.11-.01zM21 3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"account_balance\": {\n    \"name\": \"account_balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 11.5v4c0 .83.67 1.5 1.5 1.5S7 16.33 7 15.5v-4c0-.83-.67-1.5-1.5-1.5S4 10.67 4 11.5zm6 0v4c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5zM3.5 22h16c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-16c-.83 0-1.5.67-1.5 1.5S2.67 22 3.5 22zM16 11.5v4c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5zM10.57 1.49l-7.9 4.16c-.41.21-.67.64-.67 1.1C2 7.44 2.56 8 3.25 8h16.51C20.44 8 21 7.44 21 6.75c0-.46-.26-.89-.67-1.1l-7.9-4.16c-.58-.31-1.28-.31-1.86 0z\\\"></path>\"\n      }\n    }\n  },\n  \"shop\": {\n    \"name\": \"shop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-4zm-6-2h4v2h-4V4zM9 17.07V9.83c0-.38.4-.62.74-.44l6.03 3.21c.33.18.36.65.04.86l-6.03 4.02c-.33.22-.78-.01-.78-.41z\\\"></path>\"\n      }\n    }\n  },\n  \"display_settings\": {\n    \"name\": \"display_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.89,2,2,2h4v1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-1h4c1.1,0,2-0.9,2-2V5 C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"8.25\\\"></rect><polygon points=\\\"16.5,9.75 18,9.75 18,8.25 16.5,8.25 16.5,7 15,7 15,11 16.5,11\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"10\\\" y=\\\"12.25\\\"></rect><polygon points=\\\"7.5,15 9,15 9,11 7.5,11 7.5,12.25 6,12.25 6,13.75 7.5,13.75\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v1.5C7,16.78,7.22,17,7.5,17h5c0.28,0,0.5-0.22,0.5-0.5V15 h3.5c0.83,0,1.5-0.67,1.5-1.5v-9C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><polygon points=\\\"14,8 15,8 15,7 14,7 14,6 13,6 13,9 14,9\\\"></polygon><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><polygon points=\\\"6,12 7,12 7,9 6,9 6,10 5,10 5,11 6,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"next_plan\": {\n    \"name\": \"next_plan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,13.97h-5l2.26-2.26 c-0.91-1.06-2.25-1.74-3.76-1.74c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32c0.64-2.62,3-4.56,5.82-4.56c1.78,0,3.37,0.79,4.47,2.03 L18,8.97V13.97z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M14,11.5h-2.99l1.19-1.19 C11.59,9.81,10.84,9.5,10,9.5c-1.39,0-2.58,0.82-3.15,1.99l-0.96-0.32C6.59,9.6,8.17,8.5,10,8.5c1.12,0,2.13,0.41,2.91,1.09L14,8.5 V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"account_balance_wallet\": {\n    \"name\": \"account_balance_wallet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16V8c0-1.1.89-2 2-2h9V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-1h-9c-1.11 0-2-.9-2-2zm3-8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h9V8h-9zm3 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_stream\": {\n    \"name\": \"view_stream\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,17v-2c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2H5C3.9,19,3,18.1,3,17z M3,7v2c0,1.1,0.9,2,2,2h14 c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2H5C3.9,5,3,5.9,3,7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,5h11C16.33,5,17,5.6,17,6.34v1.57c0,0.74-0.67,1.34-1.5,1.34h-11C3.67,9.25,3,8.65,3,7.91V6.34C3,5.6,3.67,5,4.5,5z M4.5,15h11c0.83,0,1.5-0.6,1.5-1.34v-1.57c0-0.74-0.67-1.34-1.5-1.34h-11c-0.83,0-1.5,0.6-1.5,1.34v1.57C3,14.4,3.67,15,4.5,15z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up\": {\n    \"name\": \"swipe_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8.83,19.1c-0.26-0.6,0.09-1.28,0.73-1.41l3.58-0.71L8.79,7.17c-0.34-0.76,0-1.64,0.76-1.98c0.76-0.34,1.64,0,1.98,0.76 l2.43,5.49l0.84-0.37c0.28-0.13,0.59-0.18,0.9-0.17l4.56,0.21c0.86,0.04,1.6,0.63,1.83,1.45l1.23,4.33 c0.27,0.96-0.2,1.97-1.11,2.37l-5.63,2.49c-0.48,0.21-1.26,0.33-1.76,0.14l-5.45-2.27C9.13,19.53,8.93,19.34,8.83,19.1z M6.75,13.38c0.26-0.26,0.29-0.66,0.09-0.95C5.68,10.74,5,8.7,5,6.5c0-0.88,0.11-1.74,0.32-2.56l1.09,1.09 c0.3,0.3,0.79,0.29,1.08-0.02c0.28-0.3,0.25-0.78-0.04-1.07L5.21,1.71c-0.39-0.39-1.02-0.39-1.41,0L1.53,3.97 c-0.3,0.3-0.29,0.79,0.02,1.08c0.3,0.28,0.78,0.25,1.07-0.04L3.8,3.82C3.6,4.68,3.5,5.58,3.5,6.5c0,2.51,0.77,4.85,2.09,6.77 C5.86,13.66,6.41,13.72,6.75,13.38z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.8,8.94l-1.3,0.58l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0C8.29,4.82,8,5.56,8.28,6.19l3.54,8l-2.61,0.25 c-0.33,0.03-0.61,0.25-0.73,0.56l0,0c-0.17,0.45,0.05,0.96,0.5,1.13l3.88,1.5c0.37,0.14,0.78,0.13,1.15-0.03l4.82-2.13 c0.67-0.3,1.03-1.04,0.84-1.75l-0.92-3.59C18.59,9.49,18.03,9.03,17.37,9l-3.12-0.15C14.09,8.85,13.94,8.88,13.8,8.94z M5.59,4.18 L4.4,2.99C4.14,3.78,4,4.62,4,5.5c0,1.86,0.64,3.58,1.71,4.95c0.14,0.18,0.15,0.44,0.01,0.62c-0.2,0.26-0.59,0.26-0.79,0.01 C3.72,9.54,3,7.6,3,5.5c0-0.93,0.14-1.82,0.4-2.66L2.08,4.16C1.89,4.35,1.59,4.38,1.39,4.21C1.16,4.02,1.15,3.68,1.35,3.47 l2.12-2.12c0.2-0.2,0.51-0.2,0.71,0l2.1,2.1C6.47,3.64,6.5,3.94,6.33,4.14C6.14,4.37,5.8,4.39,5.59,4.18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flip_to_front\": {\n    \"name\": \"flip_to_front\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 12h-8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-7 6h2v-2h-2v2zm-4 0h2v-2H7v2z\\\"></path>\"\n      }\n    }\n  },\n  \"update_disabled\": {\n    \"name\": \"update_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l2.31,2.31 C3.57,8.56,3.05,10.09,3,11.74C2.86,16.83,6.94,21,12,21c1.76,0,3.39-0.52,4.78-1.39l2.29,2.29c0.39,0.39,1.02,0.39,1.41,0l0,0 C20.88,21.51,20.88,20.88,20.49,20.49z M10.72,18.89c-2.78-0.49-5.04-2.71-5.58-5.47c-0.34-1.72-0.03-3.36,0.72-4.73l9.46,9.46 C13.98,18.87,12.4,19.18,10.72,18.89z M13,8v2.17l-2-2V8c0-0.55,0.45-1,1-1S13,7.45,13,8z M20.72,14.23 c-0.23,0.92-0.61,1.77-1.1,2.55l-1.47-1.47c0.27-0.5,0.49-1.03,0.63-1.59C18.89,13.3,19.29,13,19.73,13h0 C20.38,13,20.88,13.61,20.72,14.23z M7.24,4.41c1.46-0.93,3.18-1.45,5-1.41c2.65,0.07,5,1.28,6.6,3.16l1.31-1.31 C20.46,4.54,21,4.76,21,5.21V9.5c0,0.28-0.22,0.5-0.5,0.5h-4.29c-0.45,0-0.67-0.54-0.35-0.85l1.55-1.55C16.12,6.02,14.18,5,12,5 c-1.2,0-2.33,0.31-3.32,0.85L7.24,4.41z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,6c0.41,0,0.75,0.34,0.75,0.75v1.88l-1.5-1.5V6.75C9.25,6.34,9.59,6,10,6z M7.32,5.2C8.11,4.75,9.03,4.5,10,4.5 c1.64,0,3.11,0.74,4.12,1.88l-0.76,0.76C13.04,7.46,13.26,8,13.71,8h2.79C16.78,8,17,7.78,17,7.5V4.71c0-0.45-0.54-0.67-0.85-0.35 l-0.96,0.96C13.9,3.9,12.06,3,10,3C8.61,3,7.31,3.41,6.23,4.1L7.32,5.2z M16.2,10c-0.37,0-0.69,0.27-0.74,0.63 c-0.08,0.74-0.32,1.43-0.66,2.05l1.09,1.09c0.55-0.86,0.92-1.85,1.05-2.92C17,10.41,16.66,10,16.2,10z M16.54,17.6 c-0.29,0.29-0.77,0.29-1.06,0l-1.71-1.71c-1.36,0.87-3.03,1.28-4.81,1.03c-3.01-0.43-5.46-2.88-5.89-5.89 C2.82,9.26,3.23,7.58,4.1,6.23L2.4,4.52c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l13.08,13.08 C16.83,16.83,16.83,17.31,16.54,17.6z M12.68,14.8L5.2,7.32C4.75,8.11,4.5,9.03,4.5,10c0,3.03,2.47,5.5,5.5,5.5 C10.97,15.5,11.89,15.25,12.68,14.8z\\\"></path>\"\n      }\n    }\n  },\n  \"delete\": {\n    \"name\": \"delete\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horizontal_circle\": {\n    \"name\": \"swap_horizontal_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.15 3.15c.2.2.2.51 0 .71L15 13.5V11h-4V9h4V6.5zm-6 11l-3.15-3.15c-.2-.2-.2-.51 0-.71L9 10.5V13h4v2H9v2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"polymer\": {\n    \"name\": \"polymer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_composite\": {\n    \"name\": \"settings_input_composite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,2c0-0.55-0.45-1-1-1S3,1.45,3,2v4H2C1.45,6,1,6.45,1,7v5h6V7c0-0.55-0.45-1-1-1H5V2z M9,16 c0,1.3,0.84,2.4,2,2.82V22c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3.18c1.16-0.41,2-1.51,2-2.82v-2H9V16z M1,16 c0,1.3,0.84,2.4,2,2.82V22c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3.18C6.16,18.4,7,17.3,7,16v-2H1V16z M21,6V2c0-0.55-0.45-1-1-1 s-1,0.45-1,1v4h-1c-0.55,0-1,0.45-1,1v5h6V7c0-0.55-0.45-1-1-1H21z M13,2c0-0.55-0.45-1-1-1s-1,0.45-1,1v4h-1C9.45,6,9,6.45,9,7v5 h6V7c0-0.55-0.45-1-1-1h-1V2z M17,16c0,1.3,0.84,2.4,2,2.82V22c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3.18 c1.16-0.41,2-1.51,2-2.82v-2h-6V16z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"horizontal_split\": {\n    \"name\": \"horizontal_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 19h16c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"free_cancellation\": {\n    \"name\": \"free_cancellation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.79,20H5V10h14v2.96c0,0.89,1.08,1.34,1.71,0.71l0,0c0.19-0.19,0.29-0.44,0.29-0.71V6c0-1.1-0.9-2-2-2h-1V3 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1H8V3c0-0.55-0.45-1-1-1h0C6.45,2,6,2.45,6,3v1H5C3.89,4,3.01,4.9,3.01,6L3,20 c0,1.1,0.89,2,2,2h5.79c0.89,0,1.34-1.08,0.71-1.71l0,0C11.31,20.11,11.06,20,10.79,20z M13.71,18.26c0.39-0.39,1.02-0.39,1.41,0 l1.41,1.41l3.54-3.54c0.39-0.39,1.02-0.39,1.41,0c0.39,0.39,0.39,1.02,0,1.41l-4.24,4.24c-0.39,0.39-1.02,0.39-1.41,0l-2.12-2.12 C13.32,19.28,13.32,18.65,13.71,18.26z M11.29,16.29c-0.39,0.39-1.02,0.39-1.41,0L9,15.41l-0.88,0.88c-0.39,0.39-1.02,0.39-1.41,0 s-0.39-1.02,0-1.41L7.59,14l-0.88-0.88c-0.39-0.39-0.39-1.02,0-1.41s1.02-0.39,1.41,0L9,12.59l0.88-0.88c0.39-0.39,1.02-0.39,1.41,0 s0.39,1.02,0,1.41L10.41,14l0.88,0.88C11.68,15.27,11.68,15.9,11.29,16.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,17.25c0-0.41-0.34-0.75-0.75-0.75H4.5V9h11v2.25c0,0.41,0.34,0.75,0.75,0.75c0.41,0,0.75-0.34,0.75-0.75V5.5 C17,4.68,16.33,4,15.5,4H14V2.75C14,2.34,13.66,2,13.25,2S12.5,2.34,12.5,2.75V4h-5V2.75C7.5,2.34,7.16,2,6.75,2S6,2.34,6,2.75V4 H4.5C3.67,4,3,4.68,3,5.5v11C3,17.33,3.67,18,4.5,18h4.75C9.66,18,10,17.66,10,17.25z M17.39,13.37c0.29,0.29,0.29,0.77,0,1.06 l-3.36,3.36c-0.39,0.39-1.02,0.39-1.41,0l-1.59-1.59c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l1.24,1.24l3.01-3.01 C16.63,13.08,17.1,13.08,17.39,13.37z M9.47,13.97c-0.29,0.29-0.77,0.29-1.06,0l-0.66-0.66l-0.66,0.66c-0.29,0.29-0.77,0.29-1.06,0 s-0.29-0.77,0-1.06l0.66-0.66l-0.66-0.66c-0.29-0.29-0.29-0.77,0-1.06s0.77-0.29,1.06,0l0.66,0.66l0.66-0.66 c0.29-0.29,0.77-0.29,1.06,0s0.29,0.77,0,1.06l-0.66,0.66l0.66,0.66C9.76,13.2,9.76,13.68,9.47,13.97z\\\"></path>\"\n      }\n    }\n  },\n  \"theaters\": {\n    \"name\": \"theaters\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket\": {\n    \"name\": \"rocket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.41,2.87c0.35-0.26,0.82-0.26,1.18,0C13.81,3.75,16.5,6.46,16.5,13c0,2.16-0.78,4.76-1.36,6.35 C15,19.74,14.63,20,14.21,20l-4.41,0c-0.42,0-0.8-0.26-0.94-0.65C8.28,17.76,7.5,15.16,7.5,13C7.5,6.46,10.19,3.75,11.41,2.87z M14,11c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14,12.1,14,11z M7.69,20.52c-0.48-1.23-1.52-4.17-1.67-6.87l-1.13,0.75 C4.33,14.78,4,15.4,4,16.07v4.45c0,0.71,0.71,1.19,1.37,0.93L7.69,20.52z M20,20.52v-4.45c0-0.67-0.33-1.29-0.89-1.66l-1.13-0.75 c-0.15,2.69-1.2,5.64-1.67,6.87l2.32,0.93C19.29,21.71,20,21.23,20,20.52z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.32,16c-0.21,0-0.39-0.12-0.47-0.32c-0.32-0.84-1.1-3.11-1.1-5.18c0-4.88,1.98-7.04,2.95-7.79c0.18-0.14,0.42-0.14,0.6,0 c0.97,0.75,2.95,2.91,2.95,7.79c0,2.08-0.78,4.35-1.1,5.18C12.07,15.88,11.89,16,11.68,16H8.32z M11.5,9c0-0.82-0.67-1.5-1.5-1.5 C9.18,7.5,8.5,8.18,8.5,9c0,0.83,0.68,1.5,1.5,1.5C10.83,10.5,11.5,9.83,11.5,9z M4.58,11.8C4.21,12.08,4,12.52,4,12.98v4.21 c0,0.37,0.39,0.61,0.72,0.45l2.37-1.18c-0.5-1.18-1.24-3.4-1.33-5.57L4.58,11.8z M15.42,11.8c0.37,0.28,0.58,0.72,0.58,1.18v4.21 c0,0.37-0.39,0.61-0.72,0.45l-2.37-1.18c0.5-1.18,1.24-3.4,1.33-5.57L15.42,11.8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"css\": {\n    \"name\": \"css\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,10.25C8,10.66,7.66,11,7.25,11c-0.33,0-0.6-0.21-0.71-0.5l-2.04,0v3l2.04,0c0.1-0.29,0.38-0.5,0.71-0.5 C7.66,13,8,13.34,8,13.75V14c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V10.25z M13.04,10.5 c0.1,0.29,0.38,0.5,0.71,0.5c0.41,0,0.75-0.34,0.75-0.75V10c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1H13v1 h-2.04v0c-0.1-0.29-0.38-0.5-0.71-0.5c-0.41,0-0.75,0.34-0.75,0.75V14c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1.5 c0-0.55-0.45-1-1-1H11v-1L13.04,10.5z M19.54,10.5c0.1,0.29,0.38,0.5,0.71,0.5c0.41,0,0.75-0.34,0.75-0.75V10c0-0.55-0.45-1-1-1h-3 c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2.5v1h-2.04v0c-0.1-0.29-0.38-0.5-0.71-0.5C16.34,13,16,13.34,16,13.75V14 c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1h-2.5v-1L19.54,10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.43,11C9.35,10.85,9.19,10.75,9,10.75c-0.28,0-0.5,0.22-0.5,0.5v0.25C8.5,11.78,8.72,12,9,12h2c0.28,0,0.5-0.22,0.5-0.5 v-1.25c0-0.28-0.22-0.5-0.5-0.5H9.5V9l1.07,0c0.09,0.15,0.25,0.25,0.43,0.25c0.28,0,0.5-0.22,0.5-0.5V8.5C11.5,8.22,11.28,8,11,8H9 C8.72,8,8.5,8.22,8.5,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5h1.5V11L9.43,11z M13.93,11c-0.09-0.15-0.25-0.25-0.43-0.25 c-0.28,0-0.5,0.22-0.5,0.5v0.25c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9l1.07,0 c0.09,0.15,0.25,0.25,0.43,0.25c0.28,0,0.5-0.22,0.5-0.5V8.5C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25 c0,0.28,0.22,0.5,0.5,0.5H15V11L13.93,11z M7,8.5C7,8.22,6.78,8,6.5,8h-2C4.22,8,4,8.22,4,8.5v3C4,11.78,4.22,12,4.5,12h2 C6.78,12,7,11.78,7,11.5l0-0.25c0-0.28-0.22-0.5-0.5-0.5c-0.19,0-0.35,0.1-0.43,0.25L5,11V9l1.07,0C6.15,9.15,6.31,9.25,6.5,9.25 c0.28,0,0.5-0.22,0.5-0.5L7,8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"saved_search\": {\n    \"name\": \"saved_search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.73,13.31c1.13-1.55,1.63-3.58,0.98-5.74c-0.68-2.23-2.57-3.98-4.85-4.44C6.21,2.2,2.2,6.22,3.14,10.86 c0.46,2.29,2.21,4.18,4.44,4.85c2.16,0.65,4.19,0.15,5.74-0.98l5.56,5.56c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L14.73,13.31z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5S11.99,14,9.5,14z\\\"></path><polygon points=\\\"10.29,8.44 9.5,6 8.71,8.44 6.25,8.44 8.26,10.03 7.49,12.5 9.5,10.97 11.51,12.5 10.74,10.03 12.75,8.44\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"satellite_alt\": {\n    \"name\": \"satellite_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.95,14.88c-0.4,3.18-2.89,5.67-6.07,6.07C14.37,21.01,14,21.44,14,21.94c0,0.04,0,0.08,0.01,0.12 c0.07,0.55,0.57,0.94,1.12,0.87c4.09-0.51,7.3-3.72,7.81-7.81c0.06-0.55-0.33-1.05-0.88-1.11C21.51,13.94,21.01,14.33,20.95,14.88z M18.84,15.26c0.14-0.53-0.18-1.08-0.72-1.22c-0.54-0.14-1.08,0.18-1.22,0.72c-0.27,1.05-1.09,1.87-2.15,2.15 C14.3,17.03,14,17.43,14,17.88c0,0.08,0.01,0.17,0.03,0.25c0.14,0.53,0.69,0.85,1.22,0.72C17.02,18.38,18.39,17.01,18.84,15.26z M21.8,4.12l-3.54-3.54c-0.78-0.78-2.05-0.78-2.83,0l-3.18,3.18c-0.78,0.78-0.78,2.05,0,2.83l1.24,1.24l-0.71,0.71L11.55,7.3 c-0.78-0.78-2.05-0.78-2.83,0L7.3,8.72c-0.78,0.78-0.78,2.05,0,2.83l1.24,1.24l-0.71,0.71L6.6,12.25c-0.78-0.78-2.05-0.78-2.83,0 l-3.18,3.18c-0.78,0.78-0.78,2.05,0,2.83l3.54,3.54c0.78,0.78,2.05,0.78,2.83,0l3.18-3.18c0.78-0.78,0.78-2.05,0-2.83l-1.24-1.24 l0.71-0.71l1.24,1.24c0.78,0.78,2.05,0.78,2.83,0l1.41-1.41c0.78-0.78,0.78-2.05,0-2.83L13.84,9.6l0.71-0.71l1.24,1.24 c0.78,0.78,2.05,0.78,2.83,0l3.18-3.18C22.58,6.17,22.58,4.9,21.8,4.12z M5.54,20.38L2,16.85l1.06-1.06l3.54,3.54L5.54,20.38z M7.66,18.26l-3.54-3.54l1.06-1.06l3.54,3.54L7.66,18.26z M17.2,8.72l-3.54-3.54l1.06-1.06l3.54,3.54L17.2,8.72z M19.32,6.6 l-3.54-3.54L16.85,2l3.54,3.54L19.32,6.6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,18.2c0-0.38,0.29-0.7,0.67-0.75c2.5-0.3,4.49-2.3,4.79-4.8C17.51,12.28,17.82,12,18.2,12c0.45,0,0.8,0.4,0.74,0.85 c-0.39,3.19-2.92,5.72-6.12,6.1C12.39,19,12,18.65,12,18.2z M15.16,12c-0.35,0-0.65,0.24-0.73,0.58c-0.22,0.91-0.94,1.63-1.85,1.85 C12.24,14.51,12,14.81,12,15.16c0,0.48,0.45,0.84,0.92,0.73c1.47-0.35,2.63-1.51,2.98-2.98C16,12.45,15.64,12,15.16,12z M15.29,0.44l3.18,3.18c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-1.24-1.24l-0.71,0.71l1.24,1.24 c0.59,0.59,0.59,1.54,0,2.12l-1.41,1.41c-0.59,0.59-1.54,0.59-2.12,0l-1.24-1.24l-0.71,0.71l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12 l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-3.18-3.18c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83c0.59-0.59,1.54-0.59,2.12,0l1.24,1.24 l0.71-0.71L6.1,9.63c-0.59-0.59-0.59-1.54,0-2.12L7.51,6.1c0.59-0.59,1.54-0.59,2.12,0l1.24,1.24l0.71-0.71l-1.24-1.24 c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83C13.75-0.15,14.7-0.15,15.29,0.44z M2.56,13.17L1.5,14.23l3.18,3.18l1.06-1.06L2.56,13.17z M4.33,11.4l-1.06,1.06l3.18,3.18l1.06-1.06L4.33,11.4z M12.46,3.27L11.4,4.33l3.18,3.18l1.06-1.06L12.46,3.27z M14.23,1.5 l-1.06,1.06l3.18,3.18l1.06-1.06L14.23,1.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"eject\": {\n    \"name\": \"eject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 17h12c.55 0 1 .45 1 1s-.45 1-1 1H6c-.55 0-1-.45-1-1s.45-1 1-1zm5.17-10.75l-4.8 7.2c-.45.66.03 1.55.83 1.55h9.6c.8 0 1.28-.89.83-1.55l-4.8-7.2c-.39-.6-1.27-.6-1.66 0z\\\"></path>\"\n      }\n    }\n  },\n  \"minimize\": {\n    \"name\": \"minimize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 19h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"print\": {\n    \"name\": \"print\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 8H5c-1.66 0-3 1.34-3 3v4c0 1.1.9 2 2 2h2v2c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h2c1.1 0 2-.9 2-2v-4c0-1.66-1.34-3-3-3zm-4 11H9c-.55 0-1-.45-1-1v-4h8v4c0 .55-.45 1-1 1zm4-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2-9H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"data_thresholding\": {\n    \"name\": \"data_thresholding\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11.38,8.88l1.29,1.29l2.96-2.96 c0.39-0.39,1.02-0.39,1.41,0v0c0.39,0.39,0.39,1.02,0,1.41l-3.67,3.67c-0.39,0.39-1.02,0.39-1.41,0L10.67,11l-2.3,2.3 c-0.39,0.39-1.02,0.39-1.41,0l0,0c-0.39-0.39-0.39-1.02,0-1.41l3-3C10.35,8.48,10.98,8.48,11.38,8.88z M5,16h1.72L5,17.72V16z M5.84,19l3-3h1.83l-3,3H5.84z M9.8,19l3-3h1.62l-3,3H9.8z M13.53,19l3-3h1.62l-3,3H13.53z M19,19h-1.73L19,17.27V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M9.54,7.35l1.15,1.15l1.97-1.97c0.29-0.29,0.77-0.29,1.06,0l0,0c0.29,0.29,0.29,0.77,0,1.06l-2.68,2.68c-0.2,0.2-0.51,0.2-0.71,0 L9.19,9.12l-1.85,1.85c-0.29,0.29-0.77,0.29-1.06,0l0,0c-0.29-0.29-0.29-0.77,0-1.06l2.56-2.56C9.03,7.16,9.35,7.16,9.54,7.35z M4.5,13h1.09L4.5,14.09V13z M4.5,15.5L7,13h1.07l-2.5,2.5H4.5z M6.98,15.5l2.5-2.5h1.07l-2.5,2.5H6.98z M9.46,15.5l2.5-2.5h1.07 l-2.5,2.5H9.46z M15.5,15.5h-1.08l1.08-1.08V15.5z M15.5,13L13,15.5h-1.07l2.5-2.5L15.5,13L15.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tour\": {\n    \"name\": \"tour\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.45,5.37C20.71,4.71,20.23,4,19.52,4H13h-1H7V3c0-0.55-0.45-1-1-1h0C5.45,2,5,2.45,5,3v1v10v8h2v-8h4h1h7.52 c0.71,0,1.19-0.71,0.93-1.37L19,9L20.45,5.37z M15,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S15,7.9,15,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_today\": {\n    \"name\": \"calendar_today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H7V2c0-.55-.45-1-1-1s-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 18H5c-.55 0-1-.45-1-1V8h16v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_cart_checkout\": {\n    \"name\": \"shopping_cart_checkout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2 S18.1,18,17,18z M19,16c0-0.55-0.45-1-1-1H7l1.1-2h7.45c0.75,0,1.41-0.41,1.75-1.03l3.24-6.14c0.25-0.48,0.08-1.08-0.4-1.34 c-0.49-0.27-1.1-0.08-1.36,0.41L15.55,11H8.53L4.54,2.57C4.38,2.22,4.02,2,3.64,2H2C1.45,2,1,2.45,1,3s0.45,1,1,1h1l3.6,7.59 l-1.35,2.44C4.52,15.37,5.48,17,7,17h11C18.55,17,19,16.55,19,16z M11.29,2.71c0.39-0.39,1.02-0.39,1.41,0l2.59,2.59 c0.39,0.39,0.39,1.02,0,1.41l-2.59,2.59c-0.39,0.39-1.02,0.39-1.41,0c-0.39-0.39-0.39-1.02,0-1.41L12.17,7L9,7C8.45,7,8,6.55,8,6 c0-0.55,0.45-1,1-1l3.17,0l-0.88-0.88C10.9,3.73,10.9,3.1,11.29,2.71z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,15C6.33,15,7,15.67,7,16.5C7,17.33,6.33,18,5.5,18S4,17.33,4,16.5C4,15.67,4.67,15,5.5,15z M14.5,15 c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5S13,17.33,13,16.5C13,15.67,13.67,15,14.5,15z M1,2.75C1,3.16,1.34,3.5,1.75,3.5 h1.04l2.73,6.37l-1.08,1.88c-0.58,1,0.14,2.25,1.3,2.25h9.52c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H5.73L6.6,11h6.67 c0.6,0,1.14-0.36,1.38-0.91l2.06-4.81c0.16-0.38-0.01-0.82-0.39-0.98c-0.38-0.16-0.82,0.01-0.98,0.39L13.27,9.5H6.99L4.03,2.61 C3.88,2.24,3.52,2,3.12,2H1.75C1.34,2,1,2.34,1,2.75z M9.47,7.47c0.29,0.29,0.77,0.29,1.06,0l1.76-1.76c0.39-0.39,0.39-1.02,0-1.41 l-1.76-1.76c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06l0.66,0.66H7.75C7.34,4.25,7,4.59,7,5c0,0.41,0.34,0.75,0.75,0.75h2.38 L9.47,6.41C9.18,6.7,9.18,7.18,9.47,7.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"book\": {\n    \"name\": \"book\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z\\\"></path>\"\n      }\n    }\n  },\n  \"report_problem\": {\n    \"name\": \"report_problem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.73 21h18.53c.77 0 1.25-.83.87-1.5l-9.27-16c-.39-.67-1.35-.67-1.73 0l-9.27 16c-.38.67.1 1.5.87 1.5zM13 18h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_calendar\": {\n    \"name\": \"edit_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,22H5c-1.11,0-2-0.9-2-2L3.01,6c0-1.1,0.88-2,1.99-2h1V3c0-0.55,0.45-1,1-1s1,0.45,1,1v1h8V3c0-0.55,0.45-1,1-1 s1,0.45,1,1v1h1c1.1,0,2,0.9,2,2v6h-2v-2H5v10h7V22z M22.13,16.99l0.71-0.71c0.39-0.39,0.39-1.02,0-1.41l-0.71-0.71 c-0.39-0.39-1.02-0.39-1.41,0l-0.71,0.71L22.13,16.99z M21.42,17.7l-5.01,5.01c-0.18,0.18-0.44,0.29-0.7,0.29H14.5 c-0.28,0-0.5-0.22-0.5-0.5v-1.21c0-0.27,0.11-0.52,0.29-0.71l5.01-5.01L21.42,17.7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.5,18h-5C3.67,18,3,17.33,3,16.5v-11C3,4.67,3.67,4,4.5,4H6V2.75C6,2.34,6.34,2,6.75,2S7.5,2.34,7.5,2.75V4h5V2.75 C12.5,2.34,12.84,2,13.25,2S14,2.34,14,2.75V4h1.5C16.33,4,17,4.67,17,5.5V10h-1.5V9h-11v7.5h5V18z M17.78,13.99l0.65-0.65 c0.29-0.29,0.29-0.77,0-1.06l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L17.78,13.99z M17.19,14.58l-4.2,4.2 C12.85,18.92,12.66,19,12.46,19H11.5c-0.28,0-0.5-0.22-0.5-0.5v-0.96c0-0.2,0.08-0.39,0.22-0.53l4.2-4.2L17.19,14.58z\\\"></path>\"\n      }\n    }\n  },\n  \"book_online\": {\n    \"name\": \"book_online\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,6h10v12H7V6z M16,11V9.14 C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1l0,1.76C8,15.49,8.45,16,9,16h6 c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12,14.5L12,14.5c-0.28,0-0.5-0.22-0.5-0.5v0 c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v0C12.5,14.28,12.28,14.5,12,14.5z M12,12.5L12,12.5c-0.28,0-0.5-0.22-0.5-0.5v0 c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v0C12.5,12.28,12.28,12.5,12,12.5z M12,10.5L12,10.5c-0.28,0-0.5-0.22-0.5-0.5v0 c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v0C12.5,10.28,12.28,10.5,12,10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tab\": {\n    \"name\": \"tab\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h9v3c0 .55.45 1 1 1h7v9c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"eco\": {\n    \"name\": \"eco\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37c2.99-2.99,3.83-11.14,4.01-13.38c0.02-0.31-0.23-0.56-0.53-0.53C17.19,4.22,9.04,5.06,6.05,8.05z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.53,7.04c-2.05,2.05-2.05,5.36-0.01,7.41c1.11-2.55,3.07-4.68,5.53-5.95C8.97,10.26,7.51,12.71,7,15.49 c1.95,0.92,4.35,0.59,5.96-1.03c2.31-2.31,2.91-8.75,3.02-10.18c0.01-0.15-0.11-0.28-0.27-0.27C14.28,4.13,7.85,4.73,5.53,7.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_update_alt\": {\n    \"name\": \"system_update_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.35 15.65l2.79-2.79c.31-.31.09-.85-.35-.85H13V4c0-.55-.45-1-1-1s-1 .45-1 1v8H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.19.2.51.2.7.01zM21 3h-5.01c-.54 0-.99.45-.99.99 0 .55.45.99.99.99H20c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h4.01c.54 0 .99-.45.99-.99 0-.55-.45-1-.99-1H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"add_shopping_cart\": {\n    \"name\": \"add_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,9L12,9c0.55,0,1-0.45,1-1V6h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2V2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2H9 C8.45,4,8,4.45,8,5v0c0,0.55,0.45,1,1,1h2v2C11,8.55,11.45,9,12,9z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18 z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03l3.24-6.14 c0.25-0.48,0.08-1.08-0.4-1.34v0c-0.49-0.27-1.1-0.08-1.36,0.41L15.55,11H8.53L4.27,2H2C1.45,2,1,2.45,1,3v0c0,0.55,0.45,1,1,1h1 l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h11c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7L8.1,13z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_later\": {\n    \"name\": \"watch_later\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M15.55,15.8l-4.08-2.51c-0.3-0.18-0.48-0.5-0.48-0.85 V7.75C11,7.34,11.34,7,11.75,7s0.75,0.34,0.75,0.75v4.45l3.84,2.31c0.36,0.22,0.48,0.69,0.26,1.05 C16.38,15.91,15.91,16.02,15.55,15.8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"assessment\": {\n    \"name\": \"assessment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"fit_screen\": {\n    \"name\": \"fit_screen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,4h2c1.1,0,2,0.9,2,2v2c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V6h-2c-0.55,0-1-0.45-1-1v0C17,4.45,17.45,4,18,4z M4,8 l0-2h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4C2.9,4,2,4.9,2,6l0,2c0,0.55,0.45,1,1,1h0C3.55,9,4,8.55,4,8z M20,16v2h-2 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2c1.1,0,2-0.9,2-2v-2c0-0.55-0.45-1-1-1h0C20.45,15,20,15.45,20,16z M6,18H4v-2 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2c0,1.1,0.9,2,2,2h2c0.55,0,1-0.45,1-1v0C7,18.45,6.55,18,6,18z M16,8H8c-1.1,0-2,0.9-2,2 v4c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-4C18,8.9,17.1,8,16,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hls_off\": {\n    \"name\": \"hls_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.83,15h1.67c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1l2.04,0c0.1,0.29,0.38,0.5,0.71,0.5 c0.41,0,0.75-0.34,0.75-0.75V10c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1H19v1h-2.04v0 c-0.1-0.29-0.38-0.5-0.71-0.5c-0.12,0-0.24,0.03-0.34,0.08L17.83,15z M19.07,21.9c0.39,0.39,1.02,0.39,1.41,0s0.39-1.02,0-1.41 L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0s-0.39,1.02,0,1.41l4.48,4.48C6.53,9.51,6.5,9.63,6.5,9.75V11h-2V9.75 C4.5,9.34,4.16,9,3.75,9S3,9.34,3,9.75v4.5C3,14.66,3.34,15,3.75,15s0.75-0.34,0.75-0.75V12.5h2v1.75C6.5,14.66,6.84,15,7.25,15 S8,14.66,8,14.25v-3.42l2,2V14c0,0.55,0.45,1,1,1h1.17L19.07,21.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,12c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1.07c0.09,0.15,0.25,0.25,0.43,0.25 c0.28,0,0.5-0.22,0.5-0.5V8.5C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11l-1.07,0 c-0.09-0.15-0.25-0.25-0.43-0.25c-0.17,0-0.32,0.09-0.41,0.22L14.12,12H15.5z\\\"></path><path d=\\\"M3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l3.7,3.7C6.04,8.3,6,8.39,6,8.5v1H5v-1 C5,8.22,4.78,8,4.5,8S4,8.22,4,8.5v3C4,11.78,4.22,12,4.5,12S5,11.78,5,11.5v-1h1v1C6,11.78,6.22,12,6.5,12S7,11.78,7,11.5V9.12 l2,2v0.38C9,11.78,9.22,12,9.5,12h0.38l5.6,5.6c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"view_kanban\": {\n    \"name\": \"view_kanban\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8,17L8,17c-0.55,0-1-0.45-1-1V8 c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v8C9,16.55,8.55,17,8,17z M12,12L12,12c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1h0 c0.55,0,1,0.45,1,1v3C13,11.55,12.55,12,12,12z M16,15L16,15c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v6 C17,14.55,16.55,15,16,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M6.75,14L6.75,14C6.34,14,6,13.66,6,13.25v-6.5C6,6.34,6.34,6,6.75,6h0C7.16,6,7.5,6.34,7.5,6.75v6.5C7.5,13.66,7.16,14,6.75,14z M10,10L10,10c-0.41,0-0.75-0.34-0.75-0.75v-2.5C9.25,6.34,9.59,6,10,6h0c0.41,0,0.75,0.34,0.75,0.75v2.5 C10.75,9.66,10.41,10,10,10z M13.25,12L13.25,12c-0.41,0-0.75-0.34-0.75-0.75v-4.5C12.5,6.34,12.84,6,13.25,6h0 C13.66,6,14,6.34,14,6.75v4.5C14,11.66,13.66,12,13.25,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_input_component\": {\n    \"name\": \"settings_input_component\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,2c0-0.55-0.45-1-1-1S3,1.45,3,2v4H2C1.45,6,1,6.45,1,7v5h6V7c0-0.55-0.45-1-1-1H5V2z M9,16c0,1.3,0.84,2.4,2,2.82V22 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3.18c1.16-0.41,2-1.51,2-2.82v-2H9V16z M1,16c0,1.3,0.84,2.4,2,2.82V22c0,0.55,0.45,1,1,1 h0c0.55,0,1-0.45,1-1v-3.18C6.16,18.4,7,17.3,7,16v-2H1V16z M21,6V2c0-0.55-0.45-1-1-1s-1,0.45-1,1v4h-1c-0.55,0-1,0.45-1,1v5h6V7 c0-0.55-0.45-1-1-1H21z M13,2c0-0.55-0.45-1-1-1s-1,0.45-1,1v4h-1C9.45,6,9,6.45,9,7v5h6V7c0-0.55-0.45-1-1-1h-1V2z M17,16 c0,1.3,0.84,2.4,2,2.82V22c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3.18c1.16-0.41,2-1.51,2-2.82v-2h-6V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"commute\": {\n    \"name\": \"commute\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-.77.77c-.28.28-.28.72 0 1s.72.28 1 0L7 18h2v-5H4.5c-.28 0-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5h8c.28 0 .5.22.5.5V8h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.24c0 .55.45.99 1 .99s1-.45 1-1v-1h8v1c0 .55.45 1 1 1s.99-.44 1-.99L22 13.77l-1.43-4.11zm-7.8.34h6.48c.21 0 .4.14.47.34l.69 2c.11.32-.13.66-.47.66h-7.85c-.34 0-.58-.34-.47-.66l.69-2c.05-.2.24-.34.46-.34zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angleup\": {\n    \"name\": \"text_rotation_angleup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.61 9.85l.56.56-8.48 8.49c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l8.49-8.49.56.56c.31.32.85.1.85-.34V9.5c0-.28-.22-.5-.5-.5h-2.54c-.44 0-.66.54-.35.85zm-9.13 2.9l3.54-3.54 1.6.67c.36.15.77.07 1.05-.21.49-.49.32-1.31-.32-1.57L5.26 4.5c-.43-.16-.91-.06-1.23.26-.32.32-.42.8-.25 1.23l3.61 9.09c.25.64 1.08.81 1.57.32.28-.28.36-.69.21-1.05l-.69-1.6zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z\\\"></path>\"\n      }\n    }\n  },\n  \"chrome_reader_mode\": {\n    \"name\": \"chrome_reader_mode\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14c0 .55-.45 1-1 1h-8V6h8c.55 0 1 .45 1 1v11zm-1.75-8.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zm0 2.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75zm0 2.5h-5.5c-.41 0-.75.34-.75.75s.34.75.75.75h5.5c.41 0 .75-.34.75-.75s-.34-.75-.75-.75z\\\"></path>\"\n      }\n    }\n  },\n  \"view_cozy\": {\n    \"name\": \"view_cozy\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M10.75,16.75h-3 c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3C11.25,16.53,11.03,16.75,10.75,16.75z M10.75,11.25h-3c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3 C11.25,11.03,11.03,11.25,10.75,11.25z M16.25,16.75h-3c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h3 c0.28,0,0.5,0.22,0.5,0.5v3C16.75,16.53,16.53,16.75,16.25,16.75z M16.25,11.25h-3c-0.28,0-0.5-0.22-0.5-0.5v-3 c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3C16.75,11.03,16.53,11.25,16.25,11.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M9,13.75H6.5c-0.14,0-0.25-0.11-0.25-0.25V11c0-0.14,0.11-0.25,0.25-0.25H9c0.14,0,0.25,0.11,0.25,0.25v2.5 C9.25,13.64,9.14,13.75,9,13.75z M9,9.25H6.5C6.36,9.25,6.25,9.14,6.25,9V6.5c0-0.14,0.11-0.25,0.25-0.25H9 c0.14,0,0.25,0.11,0.25,0.25V9C9.25,9.14,9.14,9.25,9,9.25z M13.5,13.75H11c-0.14,0-0.25-0.11-0.25-0.25V11 c0-0.14,0.11-0.25,0.25-0.25h2.5c0.14,0,0.25,0.11,0.25,0.25v2.5C13.75,13.64,13.64,13.75,13.5,13.75z M13.5,9.25H11 c-0.14,0-0.25-0.11-0.25-0.25V6.5c0-0.14,0.11-0.25,0.25-0.25h2.5c0.14,0,0.25,0.11,0.25,0.25V9C13.75,9.14,13.64,9.25,13.5,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"token\": {\n    \"name\": \"token\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M12.97,2.54c-0.6-0.34-1.34-0.34-1.94,0l-7,3.89L9.1,9.24C9.83,8.48,10.86,8,12,8s2.17,0.48,2.9,1.24l5.07-2.82L12.97,2.54z M10,12c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,13.1,10,12z M3,8.14l5.13,2.85C8.04,11.31,8,11.65,8,12c0,1.86,1.27,3.43,3,3.87 v5.57l-6.97-3.87C3.39,17.22,3,16.55,3,15.82V8.14z M13,21.44v-5.57c1.73-0.44,3-2.01,3-3.87c0-0.35-0.04-0.69-0.13-1.01L21,8.14 l0,7.68c0,0.73-0.39,1.4-1.03,1.75L13,21.44z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M15.98,5.82L10.73,2.9c-0.45-0.25-1-0.25-1.46,0L4.02,5.82l3.8,2.11C8.37,7.36,9.14,7,10,7s1.63,0.36,2.17,0.93L15.98,5.82z M8.5,10c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M9.25,17.08l-5.23-2.9 c-0.48-0.26-0.77-0.77-0.77-1.31V7.11L7.1,9.24C7.03,9.49,7,9.74,7,10c0,1.4,0.96,2.57,2.25,2.91V17.08z M10.75,17.08v-4.18 C12.04,12.57,13,11.4,13,10c0-0.26-0.03-0.51-0.1-0.76l3.85-2.14l0,5.76c0,0.54-0.3,1.05-0.77,1.31L10.75,17.08z\\\"></path>\"\n      }\n    }\n  },\n  \"opacity\": {\n    \"name\": \"opacity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.65,7.56L17.65,7.56L12.7,2.69c-0.39-0.38-1.01-0.38-1.4,0L6.35,7.56l0,0C4.9,8.99,4,10.96,4,13.13 C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87C20,10.96,19.1,8.99,17.65,7.56z M7.75,8.99L12,4.81l4.25,4.18 c0.88,0.87,2.04,2.59,1.67,5.01H6.07C5.7,11.58,6.87,9.85,7.75,8.99z\\\"></path></g>\"\n      }\n    }\n  },\n  \"spellcheck\": {\n    \"name\": \"spellcheck\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.12 16c.69 0 1.15-.69.9-1.32L9.77 3.87C9.56 3.34 9.06 3 8.5 3s-1.06.34-1.27.87L2.98 14.68c-.25.63.22 1.32.9 1.32.4 0 .76-.25.91-.63L5.67 13h5.64l.9 2.38c.15.37.51.62.91.62zm-6.69-5L8.5 5.48 10.57 11H6.43zm14.46 1.29l-7.39 7.39-2.97-2.97c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l3.68 3.68c.39.39 1.02.39 1.41 0l8.08-8.09c.39-.39.39-1.02 0-1.41-.38-.39-1.02-.39-1.4-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_visible\": {\n    \"name\": \"disabled_visible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,5.17,3.93,9.43,8.96,9.95 c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69 C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z M17,13c-3.18,0-5.9,1.87-7,4.5 c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,20c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C19.5,18.88,18.38,20,17,20z M18.5,17.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 S18.5,16.67,18.5,17.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.99,10.38C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98 c-0.73-0.53-1.35-1.18-1.83-1.93C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z M15.5,14.5 c0,0.69-0.56,1.25-1.25,1.25S13,15.19,13,14.5s0.56-1.25,1.25-1.25S15.5,13.81,15.5,14.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5 c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,16.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S15.35,16.5,14.25,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_settings_new\": {\n    \"name\": \"power_settings_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm5.14 2.86c-.39.39-.38 1-.01 1.39 1.13 1.2 1.83 2.8 1.87 4.57.09 3.83-3.08 7.13-6.91 7.17C8.18 19.05 5 15.9 5 12c0-1.84.71-3.51 1.87-4.76.37-.39.37-1-.01-1.38-.4-.4-1.05-.39-1.43.02C3.98 7.42 3.07 9.47 3 11.74c-.14 4.88 3.83 9.1 8.71 9.25 5.1.16 9.29-3.93 9.29-9 0-2.37-.92-4.51-2.42-6.11-.38-.41-1.04-.42-1.44-.02z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_hdmi\": {\n    \"name\": \"settings_input_hdmi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,7V4c0-1.1-0.9-2-2-2H8C6.9,2,6,2.9,6,4v3C5.45,7,5,7.45,5,8v4.7c0,0.2,0.06,0.39,0.17,0.55L8,19v2c0,0.55,0.45,1,1,1h6 c0.55,0,1-0.45,1-1v-2l2.83-5.75C18.94,13.09,19,12.89,19,12.7V8C19,7.45,18.55,7,18,7z M16,7h-2V5.5C14,5.22,13.78,5,13.5,5 S13,5.22,13,5.5V7h-2V5.5C11,5.22,10.78,5,10.5,5S10,5.22,10,5.5V7H8V4h8V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label_off\": {\n    \"name\": \"label_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.59 12.58c.25-.35.25-.81 0-1.16l-3.96-5.58C17.27 5.33 16.67 5 16 5H8.66l10.7 10.73 2.23-3.15zM2.72 4.72l.87.87C3.23 5.95 3 6.45 3 7v10c0 1.1.9 2 2 2h12l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.14 3.31c-.38-.38-1.01-.39-1.4-.01-.41.38-.41 1.03-.02 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel_class\": {\n    \"name\": \"hotel_class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.58 10H2.56c-.49 0-.69.62-.29.91l4.91 3.51-1.89 6.1c-.14.46.39.84.78.55L11 17.31l4.93 3.75c.39.29.92-.08.78-.55l-1.89-6.1 4.91-3.51c.4-.28.2-.91-.29-.91h-6.02l-1.95-6.42c-.14-.47-.81-.47-.96 0L8.58 10zM20.9 20.51l-1.4-4.52 2.91-2.08c.4-.28.2-.91-.29-.91h-1.88l-3.08 2.2 1.46 4.72 1.5 1.14c.39.29.92-.09.78-.55zM17 8l-1.34-4.42c-.14-.47-.81-.47-.96 0l-.57 1.87.78 2.55H17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.06 8H2.43c-.47 0-.68.6-.31.89l3.82 3.04-1.42 4.58c-.14.46.39.84.78.55L9 14.25l3.7 2.81c.39.29.92-.08.78-.55l-1.42-4.58 3.82-3.04c.37-.29.16-.89-.31-.89h-4.63L9.48 3.47c-.15-.46-.8-.46-.95 0L7.06 8zm4.3-3.56.67 2.06h1.58l-.98-3.03c-.15-.46-.8-.46-.95 0l-.32.97zM16.9 10l-3.1 2.47 1.23 3.97.81.62c.39.29.92-.08.78-.55L15.53 13l2.65-2.11c.37-.29.17-.89-.31-.89h-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"expand\": {\n    \"name\": \"expand\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,20h14c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1v0C4,20.45,4.45,20,5,20z M5,2h14c0.55,0,1,0.45,1,1 v0c0,0.55-0.45,1-1,1H5C4.45,4,4,3.55,4,3v0C4,2.45,4.45,2,5,2z M13,9h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79 c-0.2-0.2-0.51-0.2-0.71,0L8.85,8.15C8.54,8.46,8.76,9,9.21,9H11v6H9.21c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.79 c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79c0.31-0.31,0.09-0.85-0.35-0.85H13V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"visibility_off\": {\n    \"name\": \"visibility_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM2.71 3.16c-.39.39-.39 1.02 0 1.41l1.97 1.97C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l2.72 2.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.16c-.39-.39-1.03-.39-1.42 0zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_access_shortcut\": {\n    \"name\": \"switch_access_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M19,20.41 c0,0.78-0.84,1.25-1.51,0.86C14.21,19.36,12,15.79,12,12c0-2.73,1.08-5.27,2.75-7.25l-1.9-1.9C12.54,2.54,12.76,2,13.21,2h5.29 C18.78,2,19,2.22,19,2.5v5.29c0,0.45-0.54,0.67-0.85,0.35l-1.97-1.97C14.84,7.82,14,9.88,14,12c0,3.13,1.86,6.01,4.51,7.55 C18.81,19.73,19,20.06,19,20.41z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,16.85 c0,0.56-0.6,0.92-1.09,0.65C11.78,16.03,10,13.21,10,10c0-2.2,0.83-4.24,2.2-5.8l-1.35-1.35C10.54,2.54,10.76,2,11.21,2H15 c0.28,0,0.5,0.22,0.5,0.5v3.79c0,0.45-0.54,0.67-0.85,0.35l-1.38-1.38C12.17,6.55,11.5,8.21,11.5,10c0,2.65,1.46,4.96,3.61,6.16 C15.35,16.3,15.5,16.56,15.5,16.85z\\\"></path>\"\n      }\n    }\n  },\n  \"find_in_page\": {\n    \"name\": \"find_in_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 19.59V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31-.44-3.35 2.45-6.18 5.83-5.61 1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_in\": {\n    \"name\": \"zoom_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm0-7c-.28 0-.5.22-.5.5V9H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H9v1.5c0 .28.22.5.5.5s.5-.22.5-.5V10h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7.5c0-.28-.22-.5-.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"done\": {\n    \"name\": \"done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.2l-3.5-3.5c-.39-.39-1.01-.39-1.4 0-.39.39-.39 1.01 0 1.4l4.19 4.19c.39.39 1.02.39 1.41 0L20.3 7.7c.39-.39.39-1.01 0-1.4-.39-.39-1.01-.39-1.4 0L9 16.2z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark\": {\n    \"name\": \"bookmark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"subtitles_off\": {\n    \"name\": \"subtitles_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H6.83l8,8H19c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1h-2.17l4.93,4.93C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4 z\\\"></path><path d=\\\"M20,20l-6-6l-1.71-1.71L12,12L3.16,3.16c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l0.49,0.49 C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.25,2.25c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L20,20z M8,13 c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h2C7.55,12,8,12.45,8,13z M14,17c0,0.55-0.45,1-1,1H5 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h8c0.08,0,0.14,0.03,0.21,0.04l0.74,0.74C13.97,16.86,14,16.92,14,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16,4H5.21l8,8h2.29c0.28,0,0.5,0.22,0.5,0.5c0,0.28-0.22,0.5-0.5,0.5h-1.29l2.58,2.58C16.91,15.42,17,15.22,17,15V5 C17,4.45,16.55,4,16,4z\\\"></path><path d=\\\"M3.18,3.39c-0.2-0.2-0.51-0.2-0.71,0c-0.2,0.2-0.2,0.51,0,0.71l0.59,0.59C3.03,4.79,3,4.89,3,5v10c0,0.55,0.45,1,1,1 h10.38l1.53,1.53c0.2,0.2,0.51,0.2,0.71,0c0.2-0.2,0.2-0.51,0-0.71L3.18,3.39z M8.5,12h1.88l1,1H8.5C8.22,13,8,12.78,8,12.5 C8,12.22,8.22,12,8.5,12z M4.5,12h2C6.78,12,7,12.22,7,12.5C7,12.78,6.78,13,6.5,13h-2C4.22,13,4,12.78,4,12.5 C4,12.22,4.22,12,4.5,12z M11.5,15h-7C4.22,15,4,14.78,4,14.5C4,14.22,4.22,14,4.5,14h7c0.28,0,0.5,0.22,0.5,0.5 C12,14.78,11.78,15,11.5,15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"verified\": {\n    \"name\": \"verified\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M9.38,16.01L7,13.61c-0.39-0.39-0.39-1.02,0-1.41 l0.07-0.07c0.39-0.39,1.03-0.39,1.42,0l1.61,1.62l5.15-5.16c0.39-0.39,1.03-0.39,1.42,0l0.07,0.07c0.39,0.39,0.39,1.02,0,1.41 l-5.92,5.94C10.41,16.4,9.78,16.4,9.38,16.01z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,10l-1.77-2.03l0.25-2.69l-2.63-0.6l-1.37-2.32L10,3.43L7.53,2.36L6.15,4.68L3.53,5.28l0.25,2.69L2,10l1.77,2.03 l-0.25,2.69l2.63,0.6l1.37,2.32L10,16.56l2.47,1.07l1.37-2.32l2.63-0.6l-0.25-2.69L18,10z M13.18,8.47l-4.24,4.24 c-0.2,0.2-0.51,0.2-0.71,0L6.82,11.3c-0.2-0.2-0.2-0.51,0-0.71s0.51-0.2,0.71,0l1.06,1.06l3.89-3.89c0.2-0.2,0.51-0.2,0.71,0 S13.38,8.28,13.18,8.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_left\": {\n    \"name\": \"arrow_circle_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10S17.52,2,12,2C6.48,2,2,6.48,2,12z M12,9.21L12,11l3,0c0.55,0,1,0.45,1,1 s-0.45,1-1,1l-3,0l0,1.79c0,0.45-0.54,0.67-0.85,0.35l-2.79-2.79c-0.2-0.2-0.2-0.51,0-0.71l2.79-2.79C11.46,8.54,12,8.76,12,9.21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10,8.21l0,1.04l2.25,0C12.66,9.25,13,9.59,13,10 s-0.34,0.75-0.75,0.75l-2.25,0l0,1.04c0,0.45-0.54,0.67-0.85,0.35l-1.79-1.79c-0.2-0.2-0.2-0.51,0-0.71l1.79-1.79 C9.46,7.54,10,7.76,10,8.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"addchart\": {\n    \"name\": \"addchart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,10c0-0.55,0.45-1,1-1s1,0.45,1,1v7h-2V10z M20,13c-0.55,0-1,0.45-1,1v5H5V5h5c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H5 C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-5C21,13.45,20.55,13,20,13z M21,5h-2V3c0-0.55-0.45-1-1-1s-1,0.45-1,1v2 h-2c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V7h2c0.55,0,1-0.45,1-1C22,5.45,21.55,5,21,5z M16,13 c-0.55,0-1,0.45-1,1v3h2v-3C17,13.45,16.55,13,16,13z M7,12v5h2v-5c0-0.55-0.45-1-1-1S7,11.45,7,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"delete_outline\": {\n    \"name\": \"delete_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM9 9h6c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1zm6.5-5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"redeem\": {\n    \"name\": \"redeem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm10 15H5c-.55 0-1-.45-1-1v-1h16v1c0 .55-.45 1-1 1zm1-5H4V9c0-.55.45-1 1-1h4.08L7.6 10.02c-.33.45-.23 1.08.22 1.4.44.32 1.07.22 1.39-.22L12 7.4l2.79 3.8c.32.44.95.54 1.39.22.45-.32.55-.95.22-1.4L14.92 8H19c.55 0 1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_svideo\": {\n    \"name\": \"settings_input_svideo\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8s8,3.58,8,8 S16.42,20,12,20z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"16\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"16\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15,7.5C15,6.67,14.33,6,13.5,6h-3C9.67,6,9,6.67,9,7.5S9.67,9,10.5,9h3C14.33,9,15,8.33,15,7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"assignment_ind\": {\n    \"name\": \"assignment_ind\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z\\\"></path>\"\n      }\n    }\n  },\n  \"abc\": {\n    \"name\": \"abc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.25,15c-0.41,0-0.75-0.34-0.75-0.75V13.5h-2v0.75C4.5,14.66,4.16,15,3.75,15S3,14.66,3,14.25V10c0-0.55,0.45-1,1-1h3 c0.55,0,1,0.45,1,1v4.25C8,14.66,7.66,15,7.25,15z M6.5,10.5h-2V12h2V10.5z M13.5,12c0.55,0,1,0.45,1,1v1c0,0.55-0.45,1-1,1h-3 c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1C14.5,11.55,14.05,12,13.5,12z M11,10.5v0.75h2V10.5H11z M13,12.75 h-2v0.75h2V12.75z M21,10.25c0,0.41-0.34,0.75-0.75,0.75c-0.33,0-0.6-0.21-0.71-0.5l-2.04,0v3l2.04,0c0.1-0.29,0.38-0.5,0.71-0.5 c0.41,0,0.75,0.34,0.75,0.75V14c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V10.25z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,9H5v1h1V9z M11,10c0.28,0,0.5,0.22,0.5,0.5v1c0,0.27-0.23,0.5-0.5,0.5H9c-0.28,0-0.5-0.22-0.5-0.5v-3 C8.5,8.22,8.72,8,9,8h2c0.27,0,0.5,0.23,0.5,0.5v1C11.5,9.77,11.28,10,11,10z M9.5,9v0.5h1V9H9.5z M10.5,11v-0.5h-1V11H10.5z M7,11.5C7,11.78,6.78,12,6.5,12S6,11.78,6,11.5V11H5v0.5C5,11.78,4.78,12,4.5,12S4,11.78,4,11.5v-3C4,8.22,4.22,8,4.5,8h2 C6.78,8,7,8.22,7,8.5V11.5z M16,8.5C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v3c0,0.28,0.22,0.5,0.5,0.5h2 c0.28,0,0.5-0.22,0.5-0.5l0-0.25c0-0.28-0.22-0.5-0.5-0.5c-0.19,0-0.35,0.1-0.43,0.25L14,11V9l1.07,0 c0.09,0.15,0.25,0.25,0.43,0.25c0.28,0,0.5-0.22,0.5-0.5L16,8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"unfold_more_double\": {\n    \"name\": \"unfold_more_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.53,5.29L12,2.83l2.46,2.46c0.39,0.39,1.02,0.39,1.41,0s0.39-1.02,0-1.41L12.7,0.7c-0.39-0.39-1.02-0.39-1.41,0 L8.12,3.88c-0.39,0.39-0.39,1.02,0,1.41S9.14,5.68,9.53,5.29z\\\"></path><path d=\\\"M9.53,10.29L12,7.83l2.46,2.46c0.39,0.39,1.02,0.39,1.41,0s0.39-1.02,0-1.41L12.7,5.7c-0.39-0.39-1.02-0.39-1.41,0 L8.12,8.88c-0.39,0.39-0.39,1.02,0,1.41S9.14,10.68,9.53,10.29z\\\"></path><path d=\\\"M14.47,13.71L12,16.17l-2.46-2.46c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l3.17,3.18 c0.39,0.39,1.02,0.39,1.41,0l3.17-3.18c0.39-0.39,0.39-1.02,0-1.41C15.49,13.32,14.86,13.32,14.47,13.71z\\\"></path><path d=\\\"M14.47,18.72L12,21.17l-2.46-2.46c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l3.17,3.18 c0.39,0.39,1.02,0.39,1.41,0l3.17-3.17c0.39-0.39,0.39-1.02,0-1.41S14.86,18.33,14.47,18.72z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.71,4.71c-0.39-0.39-1.02-0.39-1.41,0L7.16,6.84c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0L10,6.12l1.78,1.78 c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L10.71,4.71z\\\"></path><path d=\\\"M8.22,3.9L10,2.12l1.78,1.78c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06l-2.13-2.13c-0.39-0.39-1.02-0.39-1.41,0 L7.16,2.84c-0.29,0.29-0.29,0.77,0,1.06S7.93,4.19,8.22,3.9z\\\"></path><path d=\\\"M11.78,12.1L10,13.88L8.22,12.1c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l2.13,2.13 c0.39,0.39,1.02,0.39,1.41,0l2.13-2.13c0.29-0.29,0.29-0.77,0-1.06C12.55,11.81,12.07,11.81,11.78,12.1z\\\"></path><path d=\\\"M11.78,16.1L10,17.88L8.22,16.1c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l2.13,2.13 c0.39,0.39,1.02,0.39,1.41,0l2.13-2.13c0.29-0.29,0.29-0.77,0-1.06C12.55,15.81,12.07,15.81,11.78,16.1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"youtube_searched_for\": {\n    \"name\": \"youtube_searched_for\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.01 14h-.8l-.27-.27c1.15-1.34 1.76-3.14 1.51-5.09C17.11 6 15.1 3.78 12.5 3.18 8.26 2.2 4.51 5.53 4.51 9.5h-2.1c-.47 0-.68.59-.31.89l3.4 2.75c.19.2.51.21.71.01l2.9-2.79c.32-.31.1-.86-.35-.86H6.51c0-2.49 2-4.48 4.46-4.5 2.44-.02 4.54 2.05 4.54 4.49 0 2.48-2.02 4.51-4.5 4.51-.45 0-.89-.07-1.3-.19-.34-.1-.71 0-.96.26-.53.53-.32 1.45.39 1.66.59.17 1.22.27 1.87.27 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l4.27 4.25c.41.41 1.07.41 1.48 0 .41-.41.41-1.08 0-1.49L17.01 14z\\\"></path>\"\n      }\n    }\n  },\n  \"compress\": {\n    \"name\": \"compress\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,10L4,10c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5C4.45,9,4,9.45,4,10z\\\"></path><path d=\\\"M14.79,4H13V2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2H9.21C8.76,4,8.54,4.54,8.85,4.85l2.79,2.79 c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79C15.46,4.54,15.24,4,14.79,4z\\\"></path><path d=\\\"M9.21,19H11v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79 c-0.2-0.2-0.51-0.2-0.71,0l-2.79,2.79C8.54,18.46,8.76,19,9.21,19z\\\"></path><path d=\\\"M5,14h14c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5c-0.55,0-1,0.45-1,1v0C4,13.55,4.45,14,5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"room\": {\n    \"name\": \"room\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.18,2.45,6.92,7.34,11.23c0.38,0.33,0.95,0.33,1.33,0C17.55,17.12,20,13.38,20,10.2 C20,5.22,16.2,2,12,2z M12,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C14,11.1,13.1,12,12,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"lightbulb_circle\": {\n    \"name\": \"lightbulb_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,19c-0.83,0-1.5-0.67-1.5-1.5h3 C13.5,18.33,12.83,19,12,19z M14.25,16.5h-4.5C9.34,16.5,9,16.16,9,15.75v0C9,15.34,9.34,15,9.75,15h4.5 c0.41,0,0.75,0.34,0.75,0.75v0C15,16.16,14.66,16.5,14.25,16.5z M14.97,14H9.03C7.8,13.09,7,11.64,7,10c0-2.76,2.24-5,5-5 s5,2.24,5,5C17,11.64,16.2,13.09,14.97,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,15.5c-0.55,0-1-0.45-1-1h2 C11,15.05,10.55,15.5,10,15.5z M12,13.75H8c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h4c0.28,0,0.5,0.22,0.5,0.5v0 C12.5,13.53,12.28,13.75,12,13.75z M12.62,12H7.38C6.54,11.27,6,10.2,6,9c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.2,13.46,11.27,12.62,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"open_in_browser\": {\n    \"name\": \"open_in_browser\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H5V8h14v10h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7.35 6.35l-2.79 2.79c-.32.32-.1.86.35.86H11v5c0 .55.45 1 1 1s1-.45 1-1v-5h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"question_answer\": {\n    \"name\": \"question_answer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2zm-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"card_membership\": {\n    \"name\": \"card_membership\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V5c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_full\": {\n    \"name\": \"open_in_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,8.59V4c0-0.55-0.45-1-1-1h-4.59c-0.89,0-1.34,1.08-0.71,1.71l1.59,1.59l-10,10l-1.59-1.59C4.08,14.08,3,14.52,3,15.41 V20c0,0.55,0.45,1,1,1h4.59c0.89,0,1.34-1.08,0.71-1.71l-1.59-1.59l10-10l1.59,1.59C19.92,9.92,21,9.48,21,8.59z\\\"></path>\"\n      }\n    }\n  },\n  \"schedule\": {\n    \"name\": \"schedule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_add\": {\n    \"name\": \"bookmark_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,6c0,0.55-0.45,1-1,1h-1v1c0,0.55-0.45,1-1,1s-1-0.45-1-1V7h-1c-0.55,0-1-0.45-1-1s0.45-1,1-1h1V4c0-0.55,0.45-1,1-1 s1,0.45,1,1v1h1C20.55,5,21,5.45,21,6z M19,19.48c0,0.72-0.73,1.2-1.39,0.92L12,18l-5.61,2.4C5.73,20.69,5,20.2,5,19.48V5 c0-1.1,0.9-2,2-2l7,0c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5c0.34,0,0.68-0.03,1-0.1V19.48z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,7.25c0.41,0,0.75-0.34,0.75-0.75V5.75h0.75c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75h-0.75V3.5 c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75v0.75H13.5c-0.41,0-0.75,0.34-0.75,0.75s0.34,0.75,0.75,0.75h0.75V6.5 C14.25,6.91,14.59,7.25,15,7.25z M15,15.52c0,0.71-0.71,1.19-1.37,0.93L10,15l-3.63,1.45C5.71,16.71,5,16.23,5,15.52V4.5 C5,3.67,5.67,3,6.5,3l5.04,0C11.19,3.59,11,4.27,11,5c0,2.21,1.79,4,4,4V15.52z\\\"></path>\"\n      }\n    }\n  },\n  \"repartition\": {\n    \"name\": \"repartition\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4.5,21h15c0.83,0,1.5-0.67,1.5-1.5v-3c0-0.83-0.67-1.5-1.5-1.5h-15C3.67,15,3,15.67,3,16.5v3C3,20.33,3.67,21,4.5,21z M10.33,19v-2h3.33v2H10.33z M19,19h-3.33v-2H19V19z M5,17h3.33v2H5V17z\\\"></path><path d=\\\"M6.71,9.29L6.71,9.29c0.39-0.39,0.39-1.02,0-1.42L5.83,7l11.06,0c1,0,1.92,0.68,2.08,1.66C19.18,9.91,18.21,11,17,11H4 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1l12.82,0c2.09,0,3.96-1.52,4.16-3.6C21.21,7.02,19.34,5,17,5H5.83l0.88-0.88 c0.39-0.39,0.39-1.02,0-1.42l0,0c-0.39-0.39-1.02-0.39-1.41,0L2.71,5.29c-0.39,0.39-0.39,1.02,0,1.41l2.59,2.59 C5.68,9.68,6.32,9.68,6.71,9.29z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.53,7.72L5.53,7.72c0.29-0.29,0.29-0.77,0-1.06L4.87,6H14c0.83,0,1.5,0.67,1.5,1.5S14.83,9,14,9H3.75 C3.34,9,3,9.34,3,9.75v0c0,0.41,0.34,0.75,0.75,0.75l10.13,0c1.45,0,2.78-0.98,3.06-2.4c0.37-1.92-1.09-3.6-2.94-3.6H4.87 l0.66-0.66c0.29-0.29,0.29-0.77,0-1.06l0,0c-0.29-0.29-0.77-0.29-1.06,0L2.35,4.9c-0.2,0.2-0.2,0.51,0,0.71l2.12,2.12 C4.76,8.01,5.24,8.01,5.53,7.72z\\\"></path><path d=\\\"M4,17h12c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v3C3,16.55,3.45,17,4,17z M12.83,13.5h2.67v2h-2.67 V13.5z M8.67,13.5h2.67v2H8.67V13.5z M4.5,13.5h2.67v2H4.5V13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hourglass_disabled\": {\n    \"name\": \"hourglass_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2.81,2.81c-0.39-0.39-1.02-0.39-1.41,0C1,3.2,1,3.83,1.39,4.22l8.19,8.19l-3,3.01C6.21,15.8,6,16.31,6,16.84V20 c0,1.1,0.9,2,2,2h8c0.86,0,1.58-0.54,1.87-1.3l1.91,1.91c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L2.81,2.81z M16,19c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-2.5l2.84-2.84L16,18.83V19z\\\"></path><path d=\\\"M8,5c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v2.5l-2.84,2.84l1.25,1.25l3-2.99C17.79,8.22,18,7.71,18,7.18V4 c0-1.11-0.9-2-2-2H8C7.14,2,6.42,2.54,6.13,3.3L8,5.17V5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7,4.5C7,4.22,7.22,4,7.5,4h5C12.78,4,13,4.22,13,4.5l0,2.09l-2.5,2.5l0.71,0.71l2.5-2.5C13.89,7.11,14,6.85,14,6.59L14,4 c0-0.55-0.45-1-1-1H7C6.45,3,6,3.45,6,4v0.59l1,1V4.5z\\\"></path><path d=\\\"M3.28,3.28c-0.2-0.2-0.51-0.2-0.71,0s-0.2,0.51,0,0.71l6.22,6.22l-2.5,2.5C6.11,12.89,6,13.15,6,13.41L6,16 c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-0.59l2.01,2.01c0.2,0.2,0.51,0.2,0.71,0s0.2-0.51,0-0.71L3.28,3.28z M13,15.5 c0,0.28-0.22,0.5-0.5,0.5h-5C7.22,16,7,15.78,7,15.5l0-2.09l2.5-2.5l3.5,3.5V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hls\": {\n    \"name\": \"hls\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.75,9C10.34,9,10,9.34,10,9.75V14c0,0.55,0.45,1,1,1h2.25c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H11.5V9.75 C11.5,9.34,11.16,9,10.75,9z M19.04,10.5c0.1,0.29,0.38,0.5,0.71,0.5c0.41,0,0.75-0.34,0.75-0.75V10c0-0.55-0.45-1-1-1h-3 c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1H19v1h-2.04v0c-0.1-0.29-0.38-0.5-0.71-0.5c-0.41,0-0.75,0.34-0.75,0.75V14 c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1L19.04,10.5z M8,9.75C8,9.34,7.66,9,7.25,9S6.5,9.34,6.5,9.75 V11h-2V9.75C4.5,9.34,4.16,9,3.75,9S3,9.34,3,9.75v4.5C3,14.66,3.34,15,3.75,15s0.75-0.34,0.75-0.75V12.5h2v1.75 C6.5,14.66,6.84,15,7.25,15S8,14.66,8,14.25V9.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9,11.5C9,11.78,9.22,12,9.5,12l1.5,0c0.28,0,0.5-0.22,0.5-0.5S11.28,11,11,11h-1V8.5C10,8.22,9.78,8,9.5,8 C9.22,8,9,8.22,9,8.5V11.5z M4,8.5C4,8.22,4.22,8,4.5,8S5,8.22,5,8.5v1h1v-1C6,8.22,6.22,8,6.5,8S7,8.22,7,8.5v3 C7,11.78,6.78,12,6.5,12S6,11.78,6,11.5v-1H5v1C5,11.78,4.78,12,4.5,12S4,11.78,4,11.5V8.5z M13.93,11 c-0.09-0.15-0.25-0.25-0.43-0.25c-0.28,0-0.5,0.22-0.5,0.5v0.25c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5v-1.25 c0-0.28-0.22-0.5-0.5-0.5H14V9l1.07,0c0.09,0.15,0.25,0.25,0.43,0.25c0.28,0,0.5-0.22,0.5-0.5V8.5C16,8.22,15.78,8,15.5,8h-2 C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11L13.93,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"language\": {\n    \"name\": \"language\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z\\\"></path>\"\n      }\n    }\n  },\n  \"store\": {\n    \"name\": \"store\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 6h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm15.16 1.8c-.09-.46-.5-.8-.98-.8H4.82c-.48 0-.89.34-.98.8l-1 5c-.12.62.35 1.2.98 1.2H4v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1s1-.45 1-1v-5h.18c.63 0 1.1-.58.98-1.2l-1-5zM12 18H6v-4h6v4z\\\"></path>\"\n      }\n    }\n  },\n  \"privacy_tip\": {\n    \"name\": \"privacy_tip\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M4.19,4.47C3.47,4.79,3,5.51,3,6.3V11c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V6.3c0-0.79-0.47-1.51-1.19-1.83 l-7-3.11c-0.52-0.23-1.11-0.23-1.62,0L4.19,4.47z M12,7L12,7c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0 C11,7.45,11.45,7,12,7z M12,11L12,11c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-4C11,11.45,11.45,11,12,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M15.41,4.93l-5-2.25c-0.26-0.12-0.56-0.12-0.82,0l-5,2.25C4.23,5.1,4,5.45,4,5.85v3.5c0,3.63,2.56,7.33,6,8.15 c3.44-0.82,6-4.52,6-8.15v-3.5C16,5.45,15.77,5.1,15.41,4.93z M10.5,12.5c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5v-3 C9.5,9.22,9.72,9,10,9s0.5,0.22,0.5,0.5V12.5z M10,8C9.72,8,9.5,7.78,9.5,7.5S9.72,7,10,7s0.5,0.22,0.5,0.5S10.28,8,10,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_flat\": {\n    \"name\": \"trending_flat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.65 11.65l-2.79-2.79c-.32-.32-.86-.1-.86.35V11H4c-.55 0-1 .45-1 1s.45 1 1 1h14v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_alt\": {\n    \"name\": \"filter_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24 M24,24H0\\\" fill=\\\"none\\\"></path><path d=\\\"M4.25,5.61C6.57,8.59,10,13,10,13v5c0,1.1,0.9,2,2,2h0c1.1,0,2-0.9,2-2v-5c0,0,3.43-4.41,5.75-7.39 C20.26,4.95,19.79,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_cell\": {\n    \"name\": \"settings_cell\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,24L8,24c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C7,23.55,7.45,24,8,24z M12,24L12,24 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C11,23.55,11.45,24,12,24z M16,24L16,24c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C15,23.55,15.45,24,16,24z M16,0.01L8,0C6.9,0,6,0.9,6,2v16c0,1.1,0.9,2,2,2h8 c1.1,0,2-0.9,2-2V2C18,0.9,17.1,0.01,16,0.01z M16,16H8V4h8V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_month\": {\n    \"name\": \"calendar_view_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,11H4V6h4V11z M14,11h-4V6h4V11z M20,11h-4V6h4V11z M8,18H4v-5h4V18z M14,18h-4v-5h4V18z M20,18h-4v-5h4V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_support\": {\n    \"name\": \"contact_support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm.4-4.78c-.01.01-.02.03-.03.05-.05.08-.1.16-.14.24-.02.03-.03.07-.04.11-.03.07-.06.14-.08.21-.07.21-.1.43-.1.68H10.5c0-.51.08-.94.2-1.3 0-.01 0-.02.01-.03.01-.04.04-.06.05-.1.06-.16.13-.3.22-.44.03-.05.07-.1.1-.15.03-.04.05-.09.08-.12l.01.01c.84-1.1 2.21-1.44 2.32-2.68.09-.98-.61-1.93-1.57-2.13-1.04-.22-1.98.39-2.3 1.28-.14.36-.47.65-.88.65h-.2c-.6 0-1.04-.59-.87-1.17.55-1.82 2.37-3.09 4.43-2.79 1.69.25 3.04 1.64 3.33 3.33.44 2.44-1.63 3.03-2.53 4.35z\\\"></path>\"\n      }\n    }\n  },\n  \"voice_over_off\": {\n    \"name\": \"voice_over_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.72 6.41c-.35.35-.44.88-.25 1.35.3.75.32 1.58.05 2.34-.16.46-.06.98.29 1.32.6.6 1.66.47 2.02-.31.64-1.39.6-2.99-.12-4.41-.4-.75-1.41-.88-1.99-.29zm3.46-3.52c-.4.4-.46 1.02-.13 1.48 1.93 2.68 1.95 6.25.09 9.07-.31.46-.23 1.08.16 1.47.51.51 1.38.46 1.81-.13 2.57-3.51 2.52-8.2-.17-11.77-.43-.56-1.26-.62-1.76-.12zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM3.71 3.56c-.39.39-.39 1.02 0 1.41l1.91 1.91c-.56.89-.79 2.01-.47 3.2.36 1.33 1.44 2.4 2.77 2.77 1.19.33 2.31.09 3.2-.47l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-.37-.11-.7-.29-1.02l2.31 2.31c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"dynamic_form\": {\n    \"name\": \"dynamic_form\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.68,9.71l-3.72,8.19C17.73,18.39,17,18.23,17,17.69V11h-1.5c-0.28,0-0.5-0.22-0.5-0.5v-6C15,4.22,15.22,4,15.5,4h5.76 c0.35,0,0.6,0.36,0.46,0.69L20,9h1.22C21.59,9,21.83,9.38,21.68,9.71z M15,13v7H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2H15z M6.25,16.5c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75S6.25,16.91,6.25,16.5z M13,4v7H4 c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H13z M6.25,7.5c0-0.41-0.34-0.75-0.75-0.75S4.75,7.09,4.75,7.5c0,0.41,0.34,0.75,0.75,0.75 S6.25,7.91,6.25,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"123\": {\n    \"name\": \"123\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4.75,10.5C4.34,10.5,4,10.16,4,9.75S4.34,9,4.75,9H6c0.55,0,1,0.45,1,1v4.25C7,14.66,6.66,15,6.25,15S5.5,14.66,5.5,14.25 V10.5H4.75z M9.75,9C9.34,9,9,9.34,9,9.75s0.34,0.75,0.75,0.75H12v1h-2c-0.55,0-1,0.45-1,1V14c0,0.55,0.45,1,1,1h2.75 c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75H10.5v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H9.75z M18.5,15 c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1h-2.75C15.34,9,15,9.34,15,9.75s0.34,0.75,0.75,0.75H18v1h-1.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5H18v1h-2.25c-0.41,0-0.75,0.34-0.75,0.75S15.34,15,15.75,15H18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,9H4.5C4.22,9,4,8.78,4,8.5S4.22,8,4.5,8h1C5.78,8,6,8.22,6,8.5v3C6,11.78,5.78,12,5.5,12C5.22,12,5,11.78,5,11.5V9z M14.5,10.5V11H13c-0.28,0-0.5,0.22-0.5,0.5S12.72,12,13,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C15.5,8.22,15.28,8,15,8h-2 c-0.28,0-0.5,0.22-0.5,0.5S12.72,9,13,9h1.5v0.5H14c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5H14.5z M10.5,12 c0.28,0,0.5-0.22,0.5-0.5S10.78,11,10.5,11H9v-0.5h1.5c0.28,0,0.5-0.22,0.5-0.5V8.5C11,8.22,10.78,8,10.5,8h-2C8.22,8,8,8.22,8,8.5 S8.22,9,8.5,9H10v0.5H8.5C8.22,9.5,8,9.72,8,10v1.5C8,11.78,8.22,12,8.5,12H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_up\": {\n    \"name\": \"trending_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.85 6.85l1.44 1.44-4.88 4.88-3.29-3.29c-.39-.39-1.02-.39-1.41 0l-6 6.01c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L9.41 12l3.29 3.29c.39.39 1.02.39 1.41 0l5.59-5.58 1.44 1.44c.31.31.85.09.85-.35V6.5c.01-.28-.21-.5-.49-.5h-4.29c-.45 0-.67.54-.36.85z\\\"></path>\"\n      }\n    }\n  },\n  \"wysiwyg\": {\n    \"name\": \"wysiwyg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M16,12H8 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h8c0.55,0,1,0.45,1,1v0C17,11.55,16.55,12,16,12z M12,16H8c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v0C13,15.55,12.55,16,12,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"search\": {\n    \"name\": \"search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_tracking\": {\n    \"name\": \"spatial_tracking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><path d=\\\"M19.39,1.76L19.39,1.76c-0.43-0.43-1.14-0.39-1.51,0.09c-1.5,1.93-3.35,6.72,0,11.03c0.37,0.48,1.08,0.52,1.5,0.09l0,0 c0.35-0.35,0.39-0.91,0.09-1.3c-1.17-1.5-2.64-5.23,0-8.61C19.78,2.67,19.74,2.11,19.39,1.76z\\\"></path><path d=\\\"M22.4,5.86c0.23-0.4,0.19-0.9-0.14-1.22l0,0C21.79,4.16,21,4.27,20.67,4.85c-1.15,2-0.57,4.03,0.01,5.04 c0.33,0.57,1.11,0.67,1.58,0.21c0.33-0.33,0.36-0.84,0.13-1.25C22.14,8.41,21.65,7.16,22.4,5.86z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M15.96,2.55c0.24-0.29,0.24-0.7-0.02-0.96l-0.07-0.07c-0.3-0.3-0.78-0.26-1.05,0.07c-3,3.65-1.76,7.99,0,10.14 c0.27,0.33,0.75,0.37,1.05,0.07l0.07-0.07c0.26-0.26,0.26-0.67,0.02-0.96C14.54,9.01,13.56,5.5,15.96,2.55z\\\"></path><path d=\\\"M18.17,4.61c0.19-0.27,0.15-0.64-0.08-0.88l-0.07-0.07c-0.31-0.31-0.82-0.26-1.07,0.09c-1.32,1.85-1.16,4.2,0,5.81 c0.25,0.35,0.77,0.4,1.07,0.09l0.07-0.07c0.23-0.23,0.28-0.61,0.08-0.88C17.22,7.4,17.36,5.73,18.17,4.61z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"html\": {\n    \"name\": \"html\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,15c-0.55,0-1-0.45-1-1V9.75C20,9.34,20.34,9,20.75,9s0.75,0.34,0.75,0.75v3.75h1.75c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75H21z M16,10.49h1v3.76c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75V10c0-0.55-0.45-1-1-1H13 c-0.55,0-1,0.45-1,1v4.25c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75V10.5h1v2.75c0,0.41,0.34,0.75,0.75,0.75 S16,13.66,16,13.25V10.49z M5,9.75C5,9.34,4.66,9,4.25,9S3.5,9.34,3.5,9.75V11h-2V9.75C1.5,9.34,1.16,9,0.75,9S0,9.34,0,9.75v4.5 C0,14.66,0.34,15,0.75,15s0.75-0.34,0.75-0.75V12.5h2v1.75C3.5,14.66,3.84,15,4.25,15S5,14.66,5,14.25V9.75z M10.25,10.5 c0.41,0,0.75-0.34,0.75-0.75C11,9.34,10.66,9,10.25,9h-3.5C6.34,9,6,9.34,6,9.75c0,0.41,0.34,0.75,0.75,0.75h1v3.75 C7.75,14.66,8.09,15,8.5,15s0.75-0.34,0.75-0.75V10.5H10.25z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,8.5C2,8.22,2.22,8,2.5,8S3,8.22,3,8.5v1h1v-1C4,8.22,4.22,8,4.5,8S5,8.22,5,8.5v3C5,11.78,4.78,12,4.5,12 S4,11.78,4,11.5v-1H3v1C3,11.78,2.78,12,2.5,12S2,11.78,2,11.5V8.5z M10,11.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V9h1v1.5 c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V9h1v2.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5v-3C15,8.22,14.78,8,14.5,8h-4 C10.22,8,10,8.22,10,8.5V11.5z M7,11.5C7,11.78,7.22,12,7.5,12S8,11.78,8,11.5V9l0.5,0C8.78,9,9,8.78,9,8.5S8.78,8,8.5,8h-2 C6.22,8,6,8.22,6,8.5C6,8.78,6.22,9,6.5,9L7,9V11.5z M16,11.5c0,0.28,0.22,0.5,0.5,0.5l1.5,0c0.28,0,0.5-0.22,0.5-0.5 S18.28,11,18,11h-1V8.5C17,8.22,16.78,8,16.5,8S16,8.22,16,8.5V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_backup_restore\": {\n    \"name\": \"settings_backup_restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.77,3c-2.65,0.07-5,1.28-6.6,3.16L3.85,4.85C3.54,4.54,3,4.76,3,5.21V9.5C3,9.78,3.22,10,3.5,10h4.29 c0.45,0,0.67-0.54,0.35-0.85L6.59,7.59C7.88,6.02,9.82,5,12,5c4.32,0,7.74,3.94,6.86,8.41c-0.54,2.77-2.81,4.98-5.58,5.47 c-3.8,0.68-7.18-1.74-8.05-5.16C5.11,13.3,4.71,13,4.27,13h0c-0.65,0-1.14,0.61-0.98,1.23C4.28,18.12,7.8,21,12,21 c5.06,0,9.14-4.17,9-9.26C20.86,6.86,16.65,2.88,11.77,3z M14,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14,13.1,14,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"admin_panel_settings\": {\n    \"name\": \"admin_panel_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,11c0.34,0,0.67,0.04,1,0.09V7.58c0-0.8-0.47-1.52-1.2-1.83l-5.5-2.4c-0.51-0.22-1.09-0.22-1.6,0l-5.5,2.4 C3.47,6.07,3,6.79,3,7.58v3.6c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C11.41,19.47,11,18.28,11,17 C11,13.69,13.69,11,17,11z\\\"></path><path d=\\\"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.14,10.45c1.57-1.58,2.77-1.59,3.86-1.31v-2.3c0-0.4-0.24-0.76-0.6-0.92l-4-1.75c-0.26-0.11-0.54-0.11-0.8,0l-4,1.75 C4.24,6.08,4,6.44,4,6.84v2.62c0,3.03,2.13,5.86,5,6.55c0.35-0.08,0.7-0.2,1.02-0.35C9.42,14.98,9.04,14.1,9,13.14 C8.97,12.12,9.43,11.17,10.14,10.45z\\\"></path><path d=\\\"M13,10c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C16,11.34,14.66,10,13,10z M13,11.03c0.47,0,0.84,0.38,0.84,0.84 c0,0.46-0.38,0.84-0.84,0.84s-0.84-0.38-0.84-0.84C12.16,11.41,12.53,11.03,13,11.03z M13,15.06c-0.7,0-1.31-0.35-1.68-0.87 c0.04-0.54,1.13-0.81,1.68-0.81s1.64,0.27,1.68,0.81C14.31,14.72,13.7,15.06,13,15.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"accessible_forward\": {\n    \"name\": \"accessible_forward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"18\\\" cy=\\\"4.54\\\" r=\\\"2\\\"></circle><path d=\\\"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2l-.28.76c-.21.56.11 1.17.68 1.33.49.14 1-.11 1.2-.58l.3-.71H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v4c0 .55.45 1 1 1s1-.45 1-1v-4.5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle\": {\n    \"name\": \"check_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.29 16.29 5.7 12.7c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.59 7.59c-.38.39-1.02.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"face\": {\n    \"name\": \"face\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M10.25,13c0,0.69-0.56,1.25-1.25,1.25S7.75,13.69,7.75,13S8.31,11.75,9,11.75S10.25,12.31,10.25,13z M15,11.75 c-0.69,0-1.25,0.56-1.25,1.25s0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25S15.69,11.75,15,11.75z M22,12c0,5.52-4.48,10-10,10 S2,17.52,2,12S6.48,2,12,2S22,6.48,22,12z M20,12c0-0.78-0.12-1.53-0.33-2.24C18.97,9.91,18.25,10,17.5,10 c-3.13,0-5.92-1.44-7.76-3.69C8.69,8.87,6.6,10.88,4,11.86C4.01,11.9,4,11.95,4,12c0,4.41,3.59,8,8,8S20,16.41,20,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grading\": {\n    \"name\": \"grading\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,7h14c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H5C4.45,9,4,8.55,4,8v0C4,7.45,4.45,7,5,7z\\\"></path><path d=\\\"M5,13h14c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5c-0.55,0-1,0.45-1,1v0C4,12.55,4.45,13,5,13z\\\"></path><path d=\\\"M5,17h5c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5c-0.55,0-1,0.45-1,1v0C4,16.55,4.45,17,5,17z\\\"></path><path d=\\\"M5,21h5c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5c-0.55,0-1,0.45-1,1v0C4,20.55,4.45,21,5,21z\\\"></path><path d=\\\"M15.41,18.17l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l1.42,1.42 c0.39,0.39,1.02,0.39,1.41,0l3.17-3.17c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L15.41,18.17z\\\"></path><path d=\\\"M4,4L4,4c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5C4.45,3,4,3.45,4,4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,4.5L5,4.5C5,4.78,5.22,5,5.5,5h9C14.78,5,15,4.78,15,4.5v0C15,4.22,14.78,4,14.5,4h-9C5.22,4,5,4.22,5,4.5z\\\"></path><path d=\\\"M5.5,16H9c0.28,0,0.5-0.22,0.5-0.5v0C9.5,15.22,9.28,15,9,15H5.5C5.22,15,5,15.22,5,15.5v0C5,15.78,5.22,16,5.5,16z\\\"></path><path d=\\\"M5.5,13.25H9c0.28,0,0.5-0.22,0.5-0.5v0c0-0.28-0.22-0.5-0.5-0.5H5.5c-0.28,0-0.5,0.22-0.5,0.5v0 C5,13.03,5.22,13.25,5.5,13.25z\\\"></path><path d=\\\"M5.5,7.75h9c0.28,0,0.5-0.22,0.5-0.5v0c0-0.28-0.22-0.5-0.5-0.5h-9C5.22,6.75,5,6.97,5,7.25v0C5,7.53,5.22,7.75,5.5,7.75z\\\"></path><path d=\\\"M5.5,10.5h9c0.28,0,0.5-0.22,0.5-0.5v0c0-0.28-0.22-0.5-0.5-0.5h-9C5.22,9.5,5,9.72,5,10v0C5,10.28,5.22,10.5,5.5,10.5z\\\"></path><path d=\\\"M12.17,14.59l-0.35-0.35c-0.2-0.2-0.51-0.2-0.71,0l0,0c-0.2,0.2-0.2,0.51,0,0.71l0.71,0.71c0.2,0.2,0.51,0.2,0.71,0 l2.12-2.12c0.2-0.2,0.2-0.51,0-0.71l0,0c-0.2-0.2-0.51-0.2-0.71,0L12.17,14.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"contactless\": {\n    \"name\": \"contactless\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.75,13.68 c-0.13,0.43-0.62,0.63-1.02,0.45l0,0c-0.34-0.16-0.51-0.54-0.4-0.9c0.12-0.41,0.18-0.83,0.17-1.24c-0.01-0.41-0.06-0.8-0.17-1.18 c-0.1-0.36,0.06-0.75,0.4-0.9l0,0c0.42-0.19,0.91,0.04,1.04,0.49c0.15,0.51,0.22,1.03,0.23,1.57C9,12.53,8.92,13.11,8.75,13.68z M11.89,15.27c-0.17,0.41-0.67,0.57-1.06,0.35l0,0c-0.33-0.19-0.46-0.59-0.32-0.94c0.33-0.77,0.49-1.63,0.49-2.56 c0-0.96-0.18-1.89-0.53-2.78c-0.14-0.36,0.02-0.76,0.36-0.94l0,0c0.39-0.2,0.87-0.02,1.03,0.39c0.42,1.06,0.63,2.18,0.63,3.33 C12.51,13.25,12.3,14.31,11.89,15.27z M15,16.6c-0.17,0.4-0.64,0.58-1.02,0.39l0,0c-0.35-0.17-0.52-0.59-0.37-0.95 c0.59-1.39,0.89-2.75,0.89-4.06c0-1.31-0.3-2.65-0.88-4.01c-0.16-0.36,0.01-0.78,0.36-0.95C14.37,6.82,14.83,7,15,7.4 c0.66,1.54,1,3.08,1,4.58C16,13.48,15.66,15.04,15,16.6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M7.14,11.48L7.14,11.48 c-0.22-0.1-0.35-0.35-0.27-0.59C6.96,10.59,7,10.29,7,9.98c0-0.3-0.05-0.59-0.13-0.87C6.8,8.87,6.91,8.62,7.13,8.52l0,0 c0.27-0.13,0.6,0.01,0.69,0.3C7.94,9.19,7.99,9.57,8,9.97c0.01,0.41-0.05,0.81-0.17,1.21C7.74,11.47,7.41,11.61,7.14,11.48z M9.36,12.53L9.36,12.53c-0.22-0.12-0.31-0.39-0.22-0.62c0.24-0.55,0.36-1.16,0.36-1.83c0-0.69-0.13-1.35-0.38-1.99 c-0.09-0.24,0.02-0.5,0.25-0.62l0,0c0.27-0.13,0.58,0,0.69,0.28c0.29,0.74,0.44,1.52,0.44,2.33c0,0.8-0.15,1.54-0.43,2.21 C9.95,12.57,9.62,12.68,9.36,12.53z M11.61,13.5L11.61,13.5c-0.24-0.12-0.34-0.41-0.24-0.66C11.79,11.87,12,10.91,12,9.99 c0-0.92-0.21-1.87-0.62-2.82c-0.11-0.25-0.01-0.54,0.23-0.66l0,0c0.25-0.13,0.57-0.02,0.68,0.24C12.76,7.83,13,8.92,13,9.99 c0,1.06-0.24,2.16-0.71,3.27C12.18,13.51,11.86,13.62,11.61,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"all_inbox\": {\n    \"name\": \"all_inbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 6h-3.14c-.47 0-.84.33-.97.78C14.53 11.04 13.35 12 12 12s-2.53-.96-2.89-2.22c-.13-.45-.5-.78-.97-.78H5V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3zm-3.13 7H20c.55 0 1 .45 1 1v2c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-2c0-.55.45-1 1-1h4.13c.47 0 .85.34.98.8.35 1.27 1.51 2.2 2.89 2.2s2.54-.93 2.89-2.2c.13-.46.51-.8.98-.8z\\\"></path>\"\n      }\n    }\n  },\n  \"help\": {\n    \"name\": \"help\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92c-.5.51-.86.97-1.04 1.69-.08.32-.13.68-.13 1.14h-2v-.5c0-.46.08-.9.22-1.31.2-.58.53-1.1.95-1.52l1.24-1.26c.46-.44.68-1.1.55-1.8-.13-.72-.69-1.33-1.39-1.53-1.11-.31-2.14.32-2.47 1.27-.12.37-.43.65-.82.65h-.3C8.4 9 8 8.44 8.16 7.88c.43-1.47 1.68-2.59 3.23-2.83 1.52-.24 2.97.55 3.87 1.8 1.18 1.63.83 3.38-.19 4.4z\\\"></path>\"\n      }\n    }\n  },\n  \"offline_pin\": {\n    \"name\": \"offline_pin\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4 16H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-6.41-4.71L7.7 11.4c-.39-.39-.39-1.01 0-1.4.39-.39 1.01-.39 1.4 0l1.2 1.2 4.6-4.6c.39-.39 1.01-.39 1.4 0 .39.39.39 1.01 0 1.4l-5.29 5.29c-.39.39-1.03.39-1.42 0z\\\"></path>\"\n      }\n    }\n  },\n  \"info_outline\": {\n    \"name\": \"info_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M11 7h2v2h-2zm1 10c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1zm0-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"highlight_off\": {\n    \"name\": \"highlight_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.89 8.7L12 10.59 10.11 8.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 8.7 13.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l1.89 1.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l1.89-1.89c.39-.39.39-1.02 0-1.41-.39-.38-1.03-.38-1.41 0zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_scan_wifi\": {\n    \"name\": \"perm_scan_wifi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3C7.41 3 3.86 4.53.89 6.59c-.49.33-.59 1-.22 1.46l9.78 12.04c.8.98 2.3.99 3.1 0l9.78-12.02c.37-.46.27-1.13-.22-1.46C20.14 4.54 16.59 3 12 3zm0 13c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm-1-8V6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"alarm_off\": {\n    \"name\": \"alarm_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm-6.33-3.5c-.38-.38-1-.38-1.39 0l-.02.03c-.39.39-.39 1.01 0 1.39l.68.68-.17.14c-.42.34-.47.96-.13 1.38l.03.03c.35.42.96.47 1.38.12l.31-.25.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l1.41 1.41c.38.38 1 .38 1.39 0l.03-.03c.38-.38.38-1 0-1.39l-17.01-17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zm7.91-13.44c.42.35 1.03.29 1.38-.12l.03-.03c.35-.42.29-1.03-.12-1.38l-3.1-2.59c-.42-.35-1.03-.29-1.38.12l-.03.03c-.35.42-.29 1.03.12 1.38l3.1 2.59zM7.43 3.68c.18-.34.15-.77-.11-1.09l-.03-.03c-.3-.36-.8-.43-1.2-.22l1.34 1.34z\\\"></path>\"\n      }\n    }\n  },\n  \"work_history\": {\n    \"name\": \"work_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,11c1.49,0,2.87,0.47,4,1.26V8c0-1.11-0.89-2-2-2h-4V4c0-1.11-0.89-2-2-2h-4C8.89,2,8,2.89,8,4v2H4 C2.89,6,2.01,6.89,2.01,8L2,19c0,1.11,0.89,2,2,2h7.68C11.25,20.09,11,19.08,11,18C11,14.13,14.13,11,18,11z M10,4h4v2h-4V4z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,5H13V3.5C13,2.67,12.33,2,11.5,2h-3C7.67,2,7,2.67,7,3.5V5H3.5C2.67,5,2,5.67,2,6.5v9C2,16.33,2.67,17,3.5,17h5.38 c-0.24-0.62-0.38-1.29-0.38-2c0-3.04,2.46-5.5,5.5-5.5c1.58,0,3,0.67,4,1.73V6.5C18,5.67,17.33,5,16.5,5z M11.5,5h-3V3.5h3V5z\\\"></path><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.15,16.85l-1.65-1.65V13h1v1.79 l1.35,1.35L15.15,16.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_enhance\": {\n    \"name\": \"camera_enhance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9l-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"accessible\": {\n    \"name\": \"accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M19 11.9c0-.49-.36-.89-.84-.97-1.25-.21-2.43-.88-3.23-1.76l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V15c0 1.1.9 2 2 2h5v4c0 .55.45 1 1 1s1-.45 1-1v-4.5c0-1.1-.9-2-2-2h-3v-3.45c1 .83 2.4 1.54 3.8 1.82.62.13 1.2-.34 1.2-.97zM12.83 18c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"label_outline\": {\n    \"name\": \"label_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58c.25-.35.25-.81 0-1.16l-3.96-5.58zM16 17H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h10l3.55 5L16 17z\\\"></path>\"\n      }\n    }\n  },\n  \"pregnant_woman\": {\n    \"name\": \"pregnant_woman\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.71-1.42-3.08-3.16-3C9.22 7.09 8 8.54 8 10.16V16c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V17h2c.55 0 1-.45 1-1v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"http\": {\n    \"name\": \"http\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M4.5 11h-2V9.75c0-.41-.34-.75-.75-.75S1 9.34 1 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C6 9.34 5.66 9 5.25 9s-.75.34-.75.75V11zm3.25-.5h.75v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h.75c.41 0 .75-.34.75-.75S11.16 9 10.75 9h-3c-.41 0-.75.34-.75.75s.34.75.75.75zm5.5 0H14v3.75c0 .41.34.75.75.75s.75-.34.75-.75V10.5h.75c.41 0 .75-.34.75-.75S16.66 9 16.25 9h-3c-.41 0-.75.34-.75.75s.34.75.75.75zM21.5 9H19c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h2c.83 0 1.5-.68 1.5-1.5v-1c0-.82-.67-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"info\": {\n    \"name\": \"info\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1-8h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_day\": {\n    \"name\": \"view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h17c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 4v1c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture\": {\n    \"name\": \"picture_in_picture\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7h-6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm3-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.98c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angledown\": {\n    \"name\": \"text_rotation_angledown\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 20.5v-2.54c0-.45-.54-.67-.85-.35l-.56.56L5.1 9.68c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l8.49 8.49-.56.56c-.32.32-.1.86.34.86h2.54c.28 0 .5-.23.5-.5zM11.25 8.48l3.54 3.54-.67 1.6c-.15.36-.07.77.21 1.05.49.49 1.31.32 1.57-.32l3.61-9.09c.17-.42.07-.91-.25-1.23-.32-.32-.8-.42-1.23-.25l-9.1 3.6c-.64.25-.81 1.08-.32 1.57.27.27.68.35 1.04.2l1.6-.67zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z\\\"></path>\"\n      }\n    }\n  },\n  \"login\": {\n    \"name\": \"login\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.3,7.7L10.3,7.7c-0.39,0.39-0.39,1.01,0,1.4l1.9,1.9H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h9.2l-1.9,1.9 c-0.39,0.39-0.39,1.01,0,1.4l0,0c0.39,0.39,1.01,0.39,1.4,0l3.59-3.59c0.39-0.39,0.39-1.02,0-1.41L11.7,7.7 C11.31,7.31,10.69,7.31,10.3,7.7z M20,19h-7c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h7c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-7 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h7V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,4h-5.5C10.22,4,10,4.22,10,4.5v0C10,4.78,10.22,5,10.5,5H16v10h-5.5c-0.28,0-0.5,0.22-0.5,0.5v0 c0,0.28,0.22,0.5,0.5,0.5H16c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z\\\"></path><path d=\\\"M9.15,6.85L9.15,6.85c-0.2,0.2-0.2,0.51,0,0.71l1.94,1.94H3.5C3.22,9.5,3,9.72,3,10v0c0,0.28,0.22,0.5,0.5,0.5h7.59 l-1.94,1.94c-0.2,0.2-0.2,0.51,0,0.71l0,0c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79c0.2-0.2,0.2-0.51,0-0.71L9.85,6.85 C9.66,6.66,9.34,6.66,9.15,6.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_rotate_up\": {\n    \"name\": \"text_rotate_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.35 4.35c-.2-.2-.51-.2-.71 0l-1.79 1.79c-.31.32-.09.86.36.86H17v12c0 .55.45 1 1 1s1-.45 1-1V7h.79c.45 0 .67-.54.35-.85l-1.79-1.8zM11.8 15.5v-5l1.6-.66c.36-.14.6-.49.6-.88 0-.69-.71-1.15-1.34-.88l-8.97 3.88c-.42.17-.69.58-.69 1.04 0 .46.27.87.69 1.05l8.97 3.88c.63.27 1.34-.2 1.34-.89 0-.39-.24-.74-.6-.89l-1.6-.65zM4.98 13L10 11.13v3.74L4.98 13z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_audio_off\": {\n    \"name\": \"spatial_audio_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22L2,19c0,1.1,0.9,2,2,2h12 c1.1,0,2-0.9,2-2l0-0.78C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><g><path d=\\\"M21.11,1.85c-0.37-0.48-1.08-0.52-1.5-0.09l0,0c-0.35,0.35-0.39,0.91-0.09,1.3c1.17,1.5,2.64,5.23,0,8.61 c-0.3,0.39-0.26,0.95,0.09,1.3l0,0c0.43,0.43,1.13,0.38,1.5-0.09C22.61,10.95,24.46,6.16,21.11,1.85z\\\"></path><path d=\\\"M18.31,4.84c-0.33-0.57-1.11-0.67-1.58-0.21c-0.33,0.33-0.36,0.84-0.13,1.25c0.25,0.44,0.74,1.69-0.01,2.99 c-0.23,0.4-0.19,0.9,0.14,1.22l0,0c0.47,0.47,1.25,0.35,1.58-0.22C19.47,7.88,18.89,5.85,18.31,4.84z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.73,2,14.39,2,15.09v0.41C2,16.33,2.67,17,3.5,17h9 c0.83,0,1.5-0.67,1.5-1.5v-0.41C14,14.39,13.64,13.73,13.03,13.37z\\\"></path><path d=\\\"M17.19,1.59c-0.27-0.33-0.75-0.37-1.05-0.07l-0.07,0.07c-0.26,0.26-0.26,0.67-0.02,0.96c1.43,1.75,2.4,5.26,0,8.21 c-0.24,0.29-0.24,0.7,0.02,0.96l0.07,0.07c0.3,0.3,0.78,0.26,1.05-0.07C20.19,8.07,18.96,3.74,17.19,1.59z\\\"></path><path d=\\\"M15.07,3.75C14.82,3.4,14.3,3.35,14,3.66l-0.07,0.07c-0.23,0.23-0.28,0.61-0.08,0.88c0.94,1.31,0.81,2.97,0,4.09 c-0.19,0.27-0.15,0.64,0.08,0.88L14,9.65c0.31,0.31,0.82,0.26,1.07-0.09C16.39,7.72,16.23,5.37,15.07,3.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_vertical\": {\n    \"name\": \"swipe_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M0,12c0,3.22,1.13,6.18,3.02,8.5H1.75C1.34,20.5,1,20.84,1,21.25S1.34,22,1.75,22H5c0.55,0,1-0.45,1-1v-3.25 C6,17.34,5.66,17,5.25,17c-0.41,0-0.75,0.34-0.75,0.75v2.16c-1.86-2.11-3-4.88-3-7.91s1.14-5.79,3-7.91v2.16 C4.5,6.66,4.84,7,5.25,7C5.66,7,6,6.66,6,6.25V3c0-0.55-0.45-1-1-1H1.75C1.34,2,1,2.34,1,2.75S1.34,3.5,1.75,3.5h1.27 C1.13,5.82,0,8.78,0,12z M8.83,19.1c-0.26-0.6,0.09-1.28,0.73-1.41l3.58-0.71L8.79,7.17c-0.34-0.76,0-1.64,0.76-1.98 c0.76-0.34,1.64,0,1.98,0.76l2.43,5.49l0.84-0.37c0.28-0.13,0.59-0.18,0.9-0.17l4.56,0.21c0.86,0.04,1.6,0.63,1.83,1.45l1.23,4.33 c0.27,0.96-0.2,1.97-1.11,2.37l-5.63,2.49c-0.48,0.21-1.26,0.33-1.76,0.14l-5.45-2.27C9.13,19.53,8.93,19.34,8.83,19.1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.8,8.94l-1.3,0.58l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0C8.29,4.82,8,5.56,8.28,6.19l3.54,8l-2.61,0.25 c-0.33,0.03-0.61,0.25-0.73,0.56l0,0c-0.17,0.45,0.05,0.96,0.5,1.13l3.88,1.5c0.37,0.14,0.78,0.13,1.15-0.03l4.82-2.13 c0.67-0.3,1.03-1.04,0.84-1.75l-0.92-3.59C18.59,9.49,18.03,9.03,17.37,9l-3.12-0.15C14.09,8.85,13.94,8.88,13.8,8.94z M0,10 c0-2.91,1.26-5.47,3.18-7L1.52,3C1.26,3,1.03,2.81,1,2.55C0.97,2.25,1.21,2,1.5,2h3C4.78,2,5,2.22,5,2.5v2.98 C5,5.74,4.81,5.97,4.55,6C4.25,6.03,4,5.79,4,5.5V3.63C2.2,4.95,1,7.31,1,10s1.2,5.05,3,6.37l0-1.84c0-0.26,0.19-0.49,0.45-0.52 C4.75,13.97,5,14.21,5,14.5v3C5,17.78,4.78,18,4.5,18l-2.98,0C1.26,18,1.03,17.81,1,17.55C0.97,17.25,1.21,17,1.5,17h1.68 C1.26,15.47,0,12.91,0,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gavel\": {\n    \"name\": \"gavel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 21h10c.55 0 1 .45 1 1s-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1zM5.24 8.07l2.83-2.83L20.8 17.97c.78.78.78 2.05 0 2.83-.78.78-2.05.78-2.83 0L5.24 8.07zm8.49-5.66l2.83 2.83c.78.78.78 2.05 0 2.83l-1.42 1.42-5.65-5.66 1.41-1.41c.78-.79 2.05-.79 2.83-.01zm-9.9 7.07l5.66 5.66-1.41 1.41c-.78.78-2.05.78-2.83 0l-2.83-2.83c-.78-.78-.78-2.05 0-2.83l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_from_trash\": {\n    \"name\": \"restore_from_trash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zm5.65-8.65c.2-.2.51-.2.71 0L16 14h-2v4h-4v-4H8l3.65-3.65zM15.5 4l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"support\": {\n    \"name\": \"support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M12.16,4.41c1.57,0.61,2.82,1.85,3.43,3.42 l-2.78,1.15c-0.3-0.83-0.96-1.49-1.79-1.79L12.16,4.41z M7.84,4.41L9,7.18c-0.85,0.3-1.51,0.96-1.82,1.81v0L4.41,7.84 C5.02,6.27,6.27,5.02,7.84,4.41z M7.83,15.59c-1.57-0.61-2.82-1.86-3.43-3.43l2.78-1.15v0c0.3,0.84,0.97,1.51,1.81,1.81L7.83,15.59 z M8,10c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S8,11.1,8,10z M12.17,15.59l-1.15-2.78c0.84-0.3,1.5-0.97,1.79-1.81l2.77,1.16 C14.98,13.74,13.74,14.98,12.17,15.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"find_replace\": {\n    \"name\": \"find_replace\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 6c1.38 0 2.63.56 3.54 1.46l-1.69 1.69c-.31.31-.09.85.36.85h4.29c.28 0 .5-.22.5-.5V5.21c0-.45-.54-.67-.85-.35l-1.2 1.2C14.68 4.78 12.93 4 11 4 7.96 4 5.38 5.94 4.42 8.64c-.24.66.23 1.36.93 1.36.42 0 .79-.26.93-.66C6.96 7.4 8.82 6 11 6zm5.64 9.14c.4-.54.72-1.15.95-1.8.23-.65-.25-1.34-.94-1.34-.42 0-.79.26-.93.66C15.04 14.6 13.18 16 11 16c-1.38 0-2.63-.56-3.54-1.46l1.69-1.69c.31-.31.09-.85-.36-.85H4.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35l1.2-1.2C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36l4.11 4.11c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49l-4.1-4.12z\\\"></path>\"\n      }\n    }\n  },\n  \"anchor\": {\n    \"name\": \"anchor\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,9V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5c0,1.3,0.84,2.4,2,2.82V9H9c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h2v8.92c-2.22-0.33-4.59-1.68-5.55-3.37l1.14-1.14c0.22-0.22,0.19-0.57-0.05-0.75L3.8,12.6 C3.47,12.35,3,12.59,3,13v2c0,3.88,4.92,7,9,7s9-3.12,9-7v-2c0-0.41-0.47-0.65-0.8-0.4l-2.74,2.05c-0.24,0.18-0.27,0.54-0.05,0.75 l1.14,1.14c-0.96,1.69-3.33,3.04-5.55,3.37V11h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H13z M12,4c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"supervised_user_circle\": {\n    \"name\": \"supervised_user_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z\\\"></path>\"\n      }\n    }\n  },\n  \"data_exploration\": {\n    \"name\": \"data_exploration\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77l4.61-4.62c0.37-0.37,0.95-0.39,1.35-0.06l2.6,2.19 L14.58,10H14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1s-1-0.45-1-1v-0.58l-3.94,3.93 c-0.37,0.37-0.96,0.39-1.35,0.05l-2.59-2.19l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2V12z M19.5,20.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.05,20.5,19.5,20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,18L10,18l6.5,0c0.83,0,1.5-0.67,1.5-1.5V10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29l3.77-3.77 c0.29-0.29,0.76-0.29,1.06-0.01l1.96,1.92l2.94-2.94h-0.68C11.34,8.5,11,8.16,11,7.75v0C11,7.34,11.34,7,11.75,7h2.5 C14.66,7,15,7.34,15,7.75v2.5c0,0.41-0.34,0.75-0.75,0.75h0c-0.41,0-0.75-0.34-0.75-0.75v-0.7l-3.47,3.47 c-0.29,0.29-0.76,0.29-1.06,0l-1.96-1.92l-3.53,3.53C4.93,16.67,7.31,18,10,18z M16,16.75c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z\\\"></path>\"\n      }\n    }\n  },\n  \"timeline\": {\n    \"name\": \"timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55 C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11 c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2 c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55 C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_card\": {\n    \"name\": \"add_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,19c0-0.55-0.45-1-1-1H4v-6h18V6c0-1.1-0.9-2-2-2H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h9 C13.55,20,14,19.55,14,19z M20,8H4V6h16V8z M20,22c-0.55,0-1-0.45-1-1v-2h-2c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h2v-2 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v2h2c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1h-2v2C21,21.55,20.55,22,20,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h7.75c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75 H3.5V10H18V5.5C18,4.67,17.33,4,16.5,4z M16.5,7h-13V5.5h13V7z M16.75,18C16.34,18,16,17.66,16,17.25V15.5h-1.75 c-0.41,0-0.75-0.34-0.75-0.75S13.84,14,14.25,14H16v-1.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V14h1.75 c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75H17.5v1.75C17.5,17.66,17.16,18,16.75,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"model_training\": {\n    \"name\": \"model_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V20c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V19.5z M19,13c0,1.39-0.41,2.69-1.12,3.78c-0.25,0.39-0.19,0.91,0.14,1.24l0,0 c0.44,0.44,1.2,0.38,1.54-0.15C20.47,16.47,21,14.8,21,13c0-2.36-0.91-4.51-2.4-6.12c-0.39-0.42-1.05-0.43-1.45-0.03l0,0 c-0.38,0.38-0.38,0.99-0.02,1.39C18.29,9.49,19,11.16,19,13z M15.65,4.65l-2.79-2.79C12.54,1.54,12,1.76,12,2.21V4l0,0 c-4.97,0-9,4.03-9,9c0,1.8,0.53,3.47,1.44,4.88c0.34,0.53,1.1,0.59,1.54,0.15l0,0c0.33-0.33,0.39-0.84,0.14-1.23 C4.73,14.65,4.48,11.7,6.25,8.8C7.45,6.85,9.71,5.81,12,6l0,0v1.79c0,0.45,0.54,0.67,0.85,0.35l2.79-2.79 C15.84,5.16,15.84,4.84,15.65,4.65z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,8L10,8L10,8C10,8,10,8,10,8c-1.38,0-2.5,1.12-2.5,2.5C7.5,12,9.25,13,9.25,14c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5 C12.5,9.12,11.38,8,10,8z M10,7V5c-2.76,0-5,2.24-5,5c0,1.17,0.41,2.3,1.16,3.2c0.18,0.21,0.15,0.53-0.06,0.7 C6,13.98,5.89,14.02,5.77,14.02c-0.14,0-0.29-0.06-0.38-0.18C4.49,12.77,4,11.4,4,10c0-3.31,2.69-6,6-6V2l2.5,2.5L10,7z M14.23,14.02c-0.11,0-0.23-0.04-0.32-0.12c-0.21-0.18-0.24-0.49-0.06-0.7C14.59,12.3,15,11.17,15,10c0-1.17-0.41-2.3-1.16-3.2 c-0.18-0.21-0.15-0.53,0.06-0.7c0.21-0.18,0.53-0.15,0.7,0.06C15.51,7.24,16,8.6,16,10c0,1.4-0.49,2.76-1.39,3.84 C14.51,13.96,14.37,14.02,14.23,14.02z M10,16L10,16c-0.41,0-0.75-0.34-0.75-0.75V15h1.5v0.25C10.75,15.66,10.41,16,10,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_week\": {\n    \"name\": \"calendar_view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M13,6h2.5v12H13V6z M11,18H8.5V6H11 V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_week\": {\n    \"name\": \"view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.33,20H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h1.33c1.1,0,2,0.9,2,2v12C7.33,19.1,6.44,20,5.33,20z M22,18V6 c0-1.1-0.9-2-2-2h-1.33c-1.1,0-2,0.9-2,2v12c0,1.1,0.9,2,2,2H20C21.11,20,22,19.1,22,18z M14.67,18V6c0-1.1-0.9-2-2-2h-1.33 c-1.1,0-2,0.9-2,2v12c0,1.1,0.9,2,2,2h1.33C13.77,20,14.67,19.1,14.67,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.83,16H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h1.33c0.83,0,1.5,0.67,1.5,1.5v9C6.33,15.33,5.66,16,4.83,16z M12.17,14.5v-9c0-0.83-0.67-1.5-1.5-1.5H9.33c-0.83,0-1.5,0.67-1.5,1.5v9c0,0.83,0.67,1.5,1.5,1.5h1.33 C11.5,16,12.17,15.33,12.17,14.5z M18,14.5v-9C18,4.67,17.33,4,16.5,4h-1.33c-0.83,0-1.5,0.67-1.5,1.5v9c0,0.83,0.67,1.5,1.5,1.5 h1.33C17.33,16,18,15.33,18,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_takeoff\": {\n    \"name\": \"flight_takeoff\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 19h-17c-.55 0-1 .45-1 1s.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1zm1.57-9.36c-.22-.8-1.04-1.27-1.84-1.06L14.92 10 8.46 3.98c-.27-.26-.66-.35-1.02-.25-.68.19-1 .97-.65 1.58l3.44 5.96-4.97 1.33-1.57-1.24c-.25-.19-.57-.26-.88-.18l-.33.09c-.32.08-.47.45-.3.73l1.88 3.25c.23.39.69.58 1.12.47L21 11.48c.8-.22 1.28-1.04 1.07-1.84z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_left_alt\": {\n    \"name\": \"swipe_left_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.1,13c0.46,2.28,2.48,4,4.9,4c2.76,0,5-2.24,5-5s-2.24-5-5-5c-2.42,0-4.44,1.72-4.9,4H5.83l0.88-0.88 c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2.59,2.59c-0.39,0.39-0.39,1.02,0,1.41l2.59,2.59 c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L5.83,13H10.1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.53,12.47c0.29-0.29,0.29-0.77,0-1.06l-0.66-0.66l3.2,0C8.42,12.6,10.05,14,12,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4 c-1.95,0-3.58,1.4-3.93,3.25l-3.2,0l0.66-0.66c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L2.71,9.29 c-0.39,0.39-0.39,1.02,0,1.41l1.76,1.76C4.76,12.76,5.24,12.76,5.53,12.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history_toggle_off\": {\n    \"name\": \"history_toggle_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M12,7L12,7c-0.55,0-1,0.45-1,1v3.59c0,0.53,0.21,1.04,0.59,1.41l3,3 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-3-3V8C13,7.45,12.55,7,12,7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.45,4.58l-0.5-0.87C7.73,3.33,8.59,3.09,9.5,3.03v1C8.77,4.09,8.08,4.28,7.45,4.58z M15.97,9.5h1 c-0.06-0.91-0.3-1.77-0.69-2.55l-0.87,0.5C15.72,8.08,15.91,8.77,15.97,9.5z M12.55,4.58l0.5-0.87c-0.78-0.38-1.64-0.62-2.55-0.69 v1C11.23,4.09,11.92,4.28,12.55,4.58z M6.58,5.08l-0.5-0.87c-0.74,0.5-1.37,1.14-1.87,1.87l0.87,0.5C5.48,5.99,5.99,5.48,6.58,5.08 z M14.92,6.58l0.87-0.5c-0.5-0.74-1.14-1.37-1.87-1.87l-0.5,0.87C14.01,5.49,14.51,5.99,14.92,6.58z M7.45,15.42l-0.5,0.87 c0.78,0.38,1.64,0.62,2.55,0.69v-1C8.77,15.91,8.08,15.72,7.45,15.42z M4.03,10.5h-1c0.06,0.91,0.3,1.77,0.69,2.55l0.87-0.5 C4.28,11.92,4.09,11.23,4.03,10.5z M10.5,15.97v1c0.91-0.06,1.77-0.3,2.55-0.69l-0.5-0.87C11.92,15.72,11.23,15.91,10.5,15.97z M5.08,13.42l-0.87,0.5c0.5,0.74,1.14,1.37,1.87,1.87l0.5-0.87C5.99,14.51,5.48,14.01,5.08,13.42z M4.58,7.45l-0.87-0.5 C3.33,7.73,3.09,8.59,3.03,9.5h1C4.09,8.77,4.28,8.08,4.58,7.45z M15.97,10.5c-0.06,0.73-0.25,1.42-0.55,2.05l0.87,0.5 c0.38-0.78,0.62-1.64,0.69-2.55H15.97z M13.42,14.92l0.5,0.87c0.74-0.5,1.37-1.14,1.87-1.87l-0.87-0.5 C14.52,14.01,14.01,14.51,13.42,14.92z M10.02,7.05H9.98c-0.26,0-0.48,0.21-0.48,0.48v2.95c0,0.35,0.18,0.68,0.49,0.86l2.27,1.36 c0.23,0.14,0.52,0.06,0.66-0.16v0c0.14-0.23,0.06-0.53-0.16-0.66l-2.25-1.33V7.53C10.5,7.26,10.29,7.05,10.02,7.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label_important\": {\n    \"name\": \"label_important\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.94 18.99H15c.65 0 1.26-.31 1.63-.84l3.95-5.57c.25-.35.25-.81 0-1.16l-3.96-5.58C16.26 5.31 15.65 5 15 5H5.94c-.81 0-1.28.93-.81 1.59L9 12l-3.87 5.41c-.47.66 0 1.58.81 1.58z\\\"></path>\"\n      }\n    }\n  },\n  \"published_with_changes\": {\n    \"name\": \"published_with_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.95,10.23l-5.66,5.66c-0.39,0.39-1.02,0.39-1.41,0l-2.83-2.83c-0.39-0.39-0.39-1.02,0-1.41l0,0 c0.39-0.39,1.02-0.39,1.41,0l2.12,2.12l4.95-4.95c0.39-0.39,1.02-0.39,1.41,0l0,0C17.34,9.21,17.34,9.84,16.95,10.23z M4,12 c0-2.33,1.02-4.42,2.62-5.88l1.53,1.53C8.46,7.96,9,7.74,9,7.29V3c0-0.28-0.22-0.5-0.5-0.5H4.21c-0.45,0-0.67,0.54-0.35,0.85 L5.2,4.7C3.24,6.52,2,9.11,2,12c0,4.75,3.32,8.73,7.76,9.75c0.63,0.14,1.24-0.33,1.24-0.98v0c0-0.47-0.33-0.87-0.79-0.98 C6.66,18.98,4,15.8,4,12z M22,12c0-4.75-3.32-8.73-7.76-9.75C13.61,2.11,13,2.58,13,3.23v0c0,0.47,0.33,0.87,0.79,0.98 C17.34,5.02,20,8.2,20,12c0,2.33-1.02,4.42-2.62,5.88l-1.53-1.53C15.54,16.04,15,16.26,15,16.71V21c0,0.28,0.22,0.5,0.5,0.5h4.29 c0.45,0,0.67-0.54,0.35-0.85L18.8,19.3C20.76,17.48,22,14.89,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"flutter_dash\": {\n    \"name\": \"flutter_dash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M11.07,11.7c0.29-0.39,0.81-0.56,1.27-0.37c0.17,0.07,0.32,0.18,0.43,0.33c0.22,0.28,0.25,0.59,0.22,0.85 c-0.05,0.33-0.25,0.63-0.54,0.79c0,0-4.87,2.95-5.07,2.69S11.07,11.7,11.07,11.7z M22,10c0,2.5-1,3-1.5,3 c-0.23,0-0.44-0.1-0.62-0.26c-0.48,3.32-2.36,5.31-5.33,5.99c0.11,0.44,0.48,0.77,0.95,0.77l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C15.18,22.07,15,21.71,15,21.26c0-0.3,0.04-0.57,0.09-0.8c-0.78-0.16-1.39-0.78-1.55-1.56c-0.49,0.06-1,0.1-1.54,0.1 c-0.88,0-1.7-0.09-2.45-0.25C9.53,18.83,9.5,18.91,9.5,19c0,0.55,0.45,1,1,1l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C10.18,22.57,10,22.21,10,21.76c0-0.3,0.04-0.57,0.09-0.8C9.19,20.77,8.5,19.96,8.5,19c0-0.18,0.03-0.36,0.08-0.53 c-2.46-0.86-4.03-2.78-4.46-5.74C3.94,12.9,3.74,13,3.5,13C3,13,2,12.5,2,10c0-2.27,1.7-4.5,3-4.5c0.43,0,0.49,0.49,0.5,0.85 c1.28-1.78,3.26-3.02,5.55-3.29C11.25,2.1,12.13,1.5,13,1.5v1c0,0,0.33-0.5,1-0.5c0.67,0,1,0.5,1,0.5c-0.49,0-0.85,0.35-0.96,0.77 c1.82,0.48,3.39,1.59,4.46,3.08C18.51,5.99,18.57,5.5,19,5.5C20.3,5.5,22,7.73,22,10z M5,11c0,0.81,0.1,1.53,0.25,2.21 c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6c0.96,0,1.84,0.37,2.5,0.97 C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54c0.37,0.59,0.66,1.24,0.84,1.94 C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z M17.98,15.29c0-0.1,0.02-0.19,0.02-0.29 c0-1.01-0.26-1.95-0.7-2.78c-0.69,0.78-1.68,1.28-2.8,1.28c-0.27,0-0.54-0.03-0.79-0.09c0.14-0.23,0.23-0.49,0.27-0.77 c0.01-0.07,0.01-0.13,0.02-0.19c0.17,0.03,0.33,0.05,0.5,0.05c1.52,0,2.75-1.23,2.75-2.75S16.02,7,14.5,7 c-0.67,0-1.32,0.25-1.83,0.72L12,8.32l-0.67-0.6C10.82,7.25,10.17,7,9.5,7C7.98,7,6.75,8.23,6.75,9.75c0,1.34,0.96,2.46,2.23,2.7 l-0.76,0.83c-0.6-0.22-1.12-0.59-1.53-1.05C6.26,13.06,6,14,6,15c0,0.08,0.01,0.15,0.01,0.24C7.13,17.06,9.14,18,12,18 C14.88,18,16.88,17.09,17.98,15.29z M16,9.75c0,0.97-0.67,1.75-1.5,1.75S13,10.72,13,9.75S13.67,8,14.5,8S16,8.78,16,9.75z M15.25,8.88c0-0.21-0.17-0.38-0.38-0.38S14.5,8.67,14.5,8.88s0.17,0.38,0.38,0.38S15.25,9.08,15.25,8.88z M11,9.75 c0,0.97-0.67,1.75-1.5,1.75S8,10.72,8,9.75S8.67,8,9.5,8S11,8.78,11,9.75z M10.25,8.88c0-0.21-0.17-0.38-0.38-0.38 S9.5,8.67,9.5,8.88s0.17,0.38,0.38,0.38S10.25,9.08,10.25,8.88z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" opacity=\\\".5\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.26,9.56c0.23-0.32,0.65-0.45,1.01-0.3c0.14,0.06,0.26,0.15,0.35,0.26c0.18,0.22,0.2,0.47,0.17,0.68 c-0.04,0.27-0.2,0.5-0.43,0.63c0,0-3.89,2.36-4.06,2.15C6.14,12.78,9.26,9.56,9.26,9.56z M18,8.2c0,2-0.8,2.4-1.2,2.4 c-0.19,0-0.35-0.08-0.5-0.21c-0.38,2.65-1.89,4.25-4.26,4.79c0.08,0.35,0.39,0.62,0.76,0.62l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 c-0.11-0.17-0.26-0.45-0.26-0.82c0-0.24,0.03-0.45,0.08-0.64c-0.62-0.13-1.11-0.62-1.24-1.25c-0.39,0.05-0.8,0.08-1.23,0.08 c-0.71,0-1.36-0.07-1.96-0.2C8.02,15.26,8,15.33,8,15.4c0,0.44,0.36,0.8,0.8,0.8l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 C8.54,18.25,8.4,17.97,8.4,17.6c0-0.24,0.03-0.45,0.08-0.64c-0.73-0.15-1.28-0.8-1.28-1.57c0-0.15,0.03-0.29,0.06-0.42 c-1.97-0.69-3.22-2.22-3.57-4.59c-0.15,0.13-0.31,0.21-0.5,0.21C2.8,10.6,2,10.2,2,8.2c0-1.81,1.36-3.6,2.4-3.6 c0.34,0,0.39,0.39,0.4,0.68c1.02-1.43,2.61-2.41,4.44-2.63C9.4,1.88,10.1,1.4,10.8,1.4v0.8c0,0,0.26-0.4,0.8-0.4 c0.54,0,0.8,0.4,0.8,0.4c-0.39,0-0.68,0.28-0.76,0.62c1.46,0.39,2.71,1.27,3.57,2.46c0.01-0.29,0.06-0.68,0.4-0.68 C16.64,4.6,18,6.39,18,8.2z M4.4,9c0,0.65,0.08,1.23,0.2,1.77c0.15-0.55,0.37-1.07,0.67-1.54C5.1,8.85,5,8.44,5,8 c0-1.66,1.34-3,3-3c0.77,0,1.47,0.3,2,0.78C10.53,5.3,11.23,5,12,5c1.66,0,3,1.34,3,3c0,0.44-0.1,0.85-0.27,1.23 c0.3,0.47,0.53,0.99,0.67,1.55c0.12-0.54,0.2-1.12,0.2-1.78c0-3.09-2.51-5.6-5.6-5.6C6.91,3.4,4.4,5.91,4.4,9z M14.78,12.44 c0-0.08,0.02-0.15,0.02-0.24c0-0.8-0.21-1.56-0.56-2.22C13.69,10.6,12.9,11,12,11c-0.22,0-0.43-0.02-0.63-0.07 c0.11-0.19,0.18-0.4,0.21-0.62c0.01-0.05,0.01-0.1,0.01-0.16c0.13,0.03,0.27,0.04,0.4,0.04c1.21,0,2.2-0.99,2.2-2.2 S13.21,5.8,12,5.8c-0.53,0-1.05,0.2-1.46,0.57L10,6.86L9.46,6.37C9.05,6,8.53,5.8,8,5.8C6.79,5.8,5.8,6.79,5.8,8 c0,1.07,0.77,1.97,1.79,2.16l-0.61,0.66c-0.48-0.17-0.89-0.47-1.22-0.84C5.41,10.65,5.2,11.4,5.2,12.2c0,0.07,0.01,0.12,0.01,0.19 C6.1,13.85,7.71,14.6,10,14.6C12.3,14.6,13.9,13.87,14.78,12.44z M13.2,8c0,0.77-0.54,1.4-1.2,1.4S10.8,8.77,10.8,8 s0.54-1.4,1.2-1.4S13.2,7.23,13.2,8z M12.6,7.3c0-0.17-0.13-0.3-0.3-0.3C12.13,7,12,7.13,12,7.3s0.13,0.3,0.3,0.3 C12.47,7.6,12.6,7.47,12.6,7.3z M9.2,8c0,0.77-0.54,1.4-1.2,1.4S6.8,8.77,6.8,8S7.34,6.6,8,6.6S9.2,7.23,9.2,8z M8.6,7.3 C8.6,7.13,8.47,7,8.3,7C8.13,7,8,7.13,8,7.3s0.13,0.3,0.3,0.3C8.47,7.6,8.6,7.47,8.6,7.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gif\": {\n    \"name\": \"gif\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.25 9c.41 0 .75.34.75.75v4.5c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75zM10 9.75c0-.41-.34-.75-.75-.75H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v.75h-2v-3h2.75c.41 0 .75-.34.75-.75zm9 0c0-.41-.34-.75-.75-.75H15.5c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H16v-1h2.25c.41 0 .75-.34.75-.75z\\\"></path>\"\n      }\n    }\n  },\n  \"event\": {\n    \"name\": \"event\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 13h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-10v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-1V3c0-.55-.45-1-1-1s-1 .45-1 1zm2 17H6c-.55 0-1-.45-1-1V9h14v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes\": {\n    \"name\": \"speaker_notes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm6 6h-3c-.55 0-1-.45-1-1s.45-1 1-1h3c.55 0 1 .45 1 1s-.45 1-1 1zm3-3h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-3h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_remote\": {\n    \"name\": \"settings_remote\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,9H9c-0.55,0-1,0.45-1,1v12c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1V10C16,9.45,15.55,9,15,9z M12,14.25 c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S12.69,14.25,12,14.25z\\\"></path><path d=\\\"M7.82,6.82L7.82,6.82c0.35,0.35,0.9,0.38,1.3,0.1C9.93,6.34,10.93,6,12,6c1.07,0,2.07,0.34,2.88,0.91 c0.4,0.28,0.95,0.26,1.3-0.09l0,0c0.43-0.43,0.39-1.15-0.09-1.5C14.94,4.49,13.53,4,12,4c-1.53,0-2.94,0.49-4.09,1.32 C7.42,5.67,7.39,6.39,7.82,6.82z\\\"></path><path d=\\\"M12,0C9.36,0,6.94,0.93,5.05,2.47c-0.46,0.38-0.5,1.07-0.08,1.49l0,0c0.36,0.36,0.93,0.39,1.32,0.07 C7.84,2.77,9.83,2,12,2c2.17,0,4.16,0.77,5.7,2.04c0.39,0.32,0.96,0.29,1.32-0.07l0,0c0.42-0.42,0.38-1.11-0.08-1.49 C17.06,0.93,14.64,0,12,0z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"view_timeline\": {\n    \"name\": \"view_timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,17H7c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v0C12,16.55,11.55,17,11,17z M14,13h-4c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v0C15,12.55,14.55,13,14,13z M17,9h-4c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v0 C18,8.55,17.55,9,17,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M8.25,14h-2.5C5.34,14,5,13.66,5,13.25v0c0-0.41,0.34-0.75,0.75-0.75h2.5C8.66,12.5,9,12.84,9,13.25v0C9,13.66,8.66,14,8.25,14z M11.25,10.75h-2.5C8.34,10.75,8,10.41,8,10v0c0-0.41,0.34-0.75,0.75-0.75h2.5C11.66,9.25,12,9.59,12,10v0 C12,10.41,11.66,10.75,11.25,10.75z M14.25,7.5h-2.5C11.34,7.5,11,7.16,11,6.75v0C11,6.34,11.34,6,11.75,6h2.5 C14.66,6,15,6.34,15,6.75v0C15,7.16,14.66,7.5,14.25,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rowing\": {\n    \"name\": \"rowing\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.75 18.25c-.41.41-.41 1.09 0 1.5.41.41 1.09.41 1.5 0L9 17h2l-2.5-2.5-3.75 3.75zM15 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm5.29 15.3l-2-2.01c-.18-.18-.44-.29-.71-.29H16.5l-6.29-6.29c.79-.33 1.66-.87 2.29-1.39v2.27l3.58 3.58c.57-.55.92-1.32.92-2.16V8.26C17 7.02 15.98 6 14.74 6h-.02c-.34 0-.67.09-.96.23-.26.12-.5.29-.69.5l-1.4 1.55C10.61 9.45 8.66 10.35 7 10.32c-.6 0-1.08.48-1.08 1.08 0 .6.48 1.08 1.08 1.08.31 0 .61-.03.9-.07l7.11 7.09v1.08c0 .26.1.52.29.7l1.99 2.01c.39.39 1.02.39 1.42 0l1.58-1.58c.39-.38.39-1.02 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility_new\": {\n    \"name\": \"accessibility_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.75 6.99c-.14-.55-.69-.87-1.24-.75-2.38.53-5.03.76-7.51.76s-5.13-.23-7.51-.76c-.55-.12-1.1.2-1.24.75-.14.56.2 1.13.75 1.26 1.61.36 3.35.61 5 .75v12c0 .55.45 1 1 1s1-.45 1-1v-5h2v5c0 .55.45 1 1 1s1-.45 1-1V9c1.65-.14 3.39-.39 4.99-.75.56-.13.9-.7.76-1.26zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_out\": {\n    \"name\": \"zoom_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_down\": {\n    \"name\": \"text_rotation_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.35 19.65l1.79-1.79c.32-.32.1-.86-.35-.86H7V5c0-.55-.45-1-1-1s-1 .45-1 1v12h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.19.2.51.2.7.01zM12.2 8.5v5l-1.6.66c-.36.15-.6.5-.6.89 0 .69.71 1.15 1.34.88l8.97-3.88c.42-.18.69-.59.69-1.05 0-.46-.27-.87-.69-1.05l-8.97-3.88c-.63-.27-1.34.2-1.34.89 0 .39.24.74.6.89l1.6.65zm6.82 2.5L14 12.87V9.13L19.02 11z\\\"></path>\"\n      }\n    }\n  },\n  \"outlet\": {\n    \"name\": \"outlet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M9,12c-0.55,0-1-0.45-1-1V8 c0-0.55,0.45-1,1-1s1,0.45,1,1v3C10,11.55,9.55,12,9,12z M13,18h-2c-0.55,0-1-0.45-1-1v-0.89c0-1,0.68-1.92,1.66-2.08 C12.92,13.82,14,14.79,14,16v1C14,17.55,13.55,18,13,18z M16,11c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1V11z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_aware\": {\n    \"name\": \"noise_aware\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.62,16.45c0.36-0.65-0.15-1.45-0.9-1.45c-0.34,0-0.68,0.16-0.84,0.47C13.72,15.78,13.38,16,13,16 c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61l-1.36-1.36C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8 c0.98,0,1.84,0.57,2.24,1.4c0.18,0.36,0.52,0.6,0.91,0.6c0.75,0,1.22-0.79,0.89-1.46C14.82,7.04,13.28,6,11.5,6 c-2.89,0-5.15,2.74-4.33,5.76c0.22,0.8,0.68,1.51,1.27,2.1l1.27,1.27c0.15,0.16,0.28,0.38,0.4,0.71c0.41,1.13,1.38,2.04,2.58,2.16 C13.95,18.11,15.07,17.46,15.62,16.45z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"21\\\" r=\\\"1\\\"></circle><path d=\\\"M5.75,7.01c0.34-0.43,0.27-1.06-0.16-1.41C5.16,5.26,4.53,5.33,4.18,5.77C3.84,6.2,3.91,6.83,4.34,7.17 C4.77,7.51,5.4,7.44,5.75,7.01z\\\"></path><path d=\\\"M18.25,16.99c-0.34,0.43-0.27,1.06,0.16,1.41s1.06,0.27,1.41-0.16c0.34-0.43,0.27-1.06-0.16-1.41 C19.23,16.49,18.6,16.56,18.25,16.99z\\\"></path><path d=\\\"M4.2,13.78c-0.12-0.54-0.66-0.88-1.2-0.75s-0.88,0.66-0.75,1.2c0.12,0.54,0.66,0.88,1.2,0.75 C3.99,14.86,4.32,14.32,4.2,13.78z\\\"></path><path d=\\\"M19.8,10.22c0.12,0.54,0.66,0.88,1.2,0.75s0.88-0.66,0.75-1.2s-0.66-0.88-1.2-0.75C20.01,9.14,19.68,9.68,19.8,10.22z\\\"></path><path d=\\\"M8.53,19.21c-0.5-0.24-1.1-0.03-1.33,0.47c-0.24,0.5-0.03,1.1,0.47,1.33c0.5,0.24,1.1,0.03,1.33-0.47 C9.24,20.05,9.03,19.45,8.53,19.21z\\\"></path><path d=\\\"M15.47,4.79c0.5,0.24,1.1,0.03,1.33-0.47c0.24-0.5,0.03-1.1-0.47-1.33c-0.5-0.24-1.1-0.03-1.33,0.47 C14.76,3.95,14.97,4.55,15.47,4.79z\\\"></path><path d=\\\"M15.47,19.21c-0.5,0.24-0.71,0.84-0.47,1.33s0.84,0.71,1.33,0.47c0.5-0.24,0.71-0.84,0.47-1.33 C16.57,19.18,15.97,18.97,15.47,19.21z\\\"></path><path d=\\\"M8.53,4.79C9.03,4.55,9.23,3.96,9,3.46c-0.24-0.5-0.84-0.71-1.33-0.47S6.95,3.83,7.19,4.33S8.03,5.03,8.53,4.79z\\\"></path><path d=\\\"M21,13.03c-0.54-0.12-1.07,0.21-1.2,0.75c-0.12,0.54,0.21,1.07,0.75,1.2c0.54,0.12,1.07-0.21,1.2-0.75 C21.87,13.69,21.54,13.15,21,13.03z\\\"></path><path d=\\\"M3,10.97c0.54,0.12,1.07-0.21,1.2-0.75c0.12-0.54-0.21-1.07-0.75-1.2s-1.07,0.21-1.2,0.75C2.13,10.31,2.46,10.85,3,10.97z\\\"></path><path d=\\\"M19.66,7.17c0.43-0.34,0.5-0.97,0.16-1.41s-0.97-0.5-1.41-0.16c-0.43,0.34-0.5,0.97-0.16,1.41 C18.6,7.44,19.23,7.51,19.66,7.17z\\\"></path><path d=\\\"M4.34,16.83c-0.43,0.34-0.5,0.97-0.16,1.41c0.34,0.43,0.97,0.5,1.41,0.16c0.43-0.34,0.5-0.97,0.16-1.41 S4.77,16.49,4.34,16.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M12.78,13.73c0.22-0.45-0.15-0.98-0.65-0.98H12c-0.26,0-0.47,0.16-0.6,0.38c-0.13,0.22-0.37,0.37-0.65,0.37 c-0.43,0-0.66-0.31-0.73-0.58c-0.22-0.9-0.77-1.7-1.69-2.44c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5 c0.83,0,1.55,0.46,1.94,1.13C11.82,7.85,12.05,8,12.31,8h0.12c0.54,0,0.88-0.57,0.62-1.04C12.41,5.79,11.17,5,9.75,5 C7.81,5,6.47,6.37,6.12,7.8c-0.39,1.59,0.23,3.06,1.36,3.92c0.52,0.39,0.94,0.93,1.09,1.56C8.8,14.22,9.63,15,10.75,15 C11.64,15,12.41,14.48,12.78,13.73z\\\"></path><circle cx=\\\"10\\\" cy=\\\"2.75\\\" r=\\\".75\\\"></circle><circle cx=\\\"10\\\" cy=\\\"17.25\\\" r=\\\".75\\\"></circle><path d=\\\"M4.92,5.95c0.26-0.32,0.21-0.8-0.12-1.05S4,4.69,3.75,5.01s-0.21,0.8,0.12,1.05S4.66,6.27,4.92,5.95z\\\"></path><path d=\\\"M15.08,14.05c-0.26,0.32-0.21,0.8,0.12,1.05c0.32,0.26,0.8,0.21,1.05-0.12s0.21-0.8-0.12-1.05S15.34,13.73,15.08,14.05z\\\"></path><path d=\\\"M3.66,11.45c-0.09-0.4-0.49-0.66-0.9-0.56c-0.4,0.09-0.66,0.49-0.56,0.9c0.09,0.4,0.49,0.66,0.9,0.56 C3.5,12.25,3.76,11.85,3.66,11.45z\\\"></path><path d=\\\"M16.34,8.55c0.09,0.4,0.49,0.66,0.9,0.56c0.4-0.09,0.66-0.49,0.56-0.9c-0.09-0.4-0.49-0.66-0.9-0.56 C16.5,7.75,16.24,8.15,16.34,8.55z\\\"></path><path d=\\\"M7.18,15.86c-0.37-0.18-0.82-0.02-1,0.35c-0.18,0.37-0.02,0.82,0.35,1c0.37,0.18,0.82,0.02,1-0.35S7.55,16.04,7.18,15.86z\\\"></path><path d=\\\"M12.82,4.14c0.37,0.18,0.82,0.02,1-0.35s0.02-0.82-0.35-1c-0.37-0.18-0.82-0.02-1,0.35C12.29,3.52,12.45,3.96,12.82,4.14z\\\"></path><path d=\\\"M12.82,15.86c-0.37,0.18-0.53,0.63-0.35,1c0.18,0.37,0.63,0.53,1,0.35s0.53-0.63,0.35-1S13.19,15.68,12.82,15.86z\\\"></path><path d=\\\"M7.18,4.14c0.37-0.18,0.53-0.63,0.35-1c-0.18-0.37-0.63-0.53-1-0.35C6.16,2.97,6,3.42,6.18,3.79S6.81,4.32,7.18,4.14z\\\"></path><path d=\\\"M17.24,10.88c-0.4-0.09-0.81,0.16-0.9,0.56c-0.09,0.4,0.16,0.81,0.56,0.9c0.4,0.09,0.81-0.16,0.9-0.56 C17.89,11.38,17.64,10.97,17.24,10.88z\\\"></path><path d=\\\"M2.76,9.12c0.4,0.09,0.81-0.16,0.9-0.56c0.09-0.4-0.16-0.81-0.56-0.9c-0.4-0.09-0.81,0.16-0.9,0.56 C2.11,8.62,2.36,9.03,2.76,9.12z\\\"></path><path d=\\\"M16.14,6.07c0.32-0.26,0.38-0.73,0.12-1.05C16,4.69,15.52,4.63,15.2,4.89s-0.38,0.73-0.12,1.05S15.81,6.32,16.14,6.07z\\\"></path><path d=\\\"M3.86,13.93c-0.32,0.26-0.38,0.73-0.12,1.05s0.73,0.38,1.05,0.12s0.38-0.73,0.12-1.05C4.66,13.73,4.19,13.68,3.86,13.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"leaderboard\": {\n    \"name\": \"leaderboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M6.5,21H3c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3.5c0.55,0,1,0.45,1,1v10C7.5,20.55,7.05,21,6.5,21z M13.75,3h-3.5 c-0.55,0-1,0.45-1,1v16c0,0.55,0.45,1,1,1h3.5c0.55,0,1-0.45,1-1V4C14.75,3.45,14.3,3,13.75,3z M21,11h-3.5c-0.55,0-1,0.45-1,1v8 c0,0.55,0.45,1,1,1H21c0.55,0,1-0.45,1-1v-8C22,11.45,21.55,11,21,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"close_fullscreen\": {\n    \"name\": \"close_fullscreen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.29,4.12l-4.59,4.59l1.59,1.59c0.63,0.63,0.18,1.71-0.71,1.71H13c-0.55,0-1-0.45-1-1V6.41c0-0.89,1.08-1.34,1.71-0.71 l1.59,1.59l4.59-4.59c0.39-0.39,1.02-0.39,1.41,0v0C21.68,3.1,21.68,3.73,21.29,4.12z M4.12,21.29l4.59-4.59l1.59,1.59 c0.63,0.63,1.71,0.18,1.71-0.71V13c0-0.55-0.45-1-1-1H6.41c-0.89,0-1.34,1.08-0.71,1.71l1.59,1.59l-4.59,4.59 c-0.39,0.39-0.39,1.02,0,1.41l0,0C3.1,21.68,3.73,21.68,4.12,21.29z\\\"></path>\"\n      }\n    }\n  },\n  \"tips_and_updates\": {\n    \"name\": \"tips_and_updates\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,18c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1s-0.45-1-1-1H6C5.45,17,5,17.45,5,18z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M21.37,7.37L20,8 l1.37,0.63L22,10l0.63-1.37L24,8l-1.37-0.63L22,6L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6 z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,14.75C4.5,14.34,4.84,14,5.25,14h4.5c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-4.5 C4.84,15.5,4.5,15.16,4.5,14.75z M13.5,8c0,2.09-1.07,3.93-2.69,5H4.19C2.57,11.93,1.5,10.09,1.5,8c0-3.31,2.69-6,6-6 S13.5,4.69,13.5,8z M7.5,18C8.33,18,9,17.33,9,16.5H6C6,17.33,6.67,18,7.5,18z M18.5,8l0.47-1.03L20,6.5l-1.03-0.47L18.5,5 l-0.47,1.03L17,6.5l1.03,0.47L18.5,8z M15.5,5l0.78-1.72L18,2.5l-1.72-0.78L15.5,0l-0.78,1.72L13,2.5l1.72,0.78L15.5,5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_antenna\": {\n    \"name\": \"settings_input_antenna\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,5c-3.48,0-6.37,2.54-6.91,5.87c-0.1,0.59,0.39,1.13,1,1.13c0.49,0,0.9-0.36,0.98-0.85C7.48,8.79,9.53,7,12,7 s4.52,1.79,4.93,4.15c0.08,0.49,0.49,0.85,0.98,0.85c0.61,0,1.09-0.54,0.99-1.13C18.37,7.54,15.48,5,12,5z M13,14.29 c1.07-0.48,1.76-1.66,1.41-2.99c-0.22-0.81-0.87-1.47-1.68-1.7C11.04,9.12,9.5,10.38,9.5,12c0,1.02,0.62,1.9,1.5,2.29v3.3 l-2.71,2.7c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0l2.3-2.3l2.3,2.3c0.39,0.39,1.02,0.39,1.41,0s0.39-1.02,0-1.41 L13,17.59V14.29z M12,1C6.3,1,1.61,5.34,1.05,10.9C1,11.49,1.46,12,2.05,12c0.51,0,0.94-0.38,0.99-0.88C3.48,6.56,7.33,3,12,3 s8.52,3.56,8.96,8.12c0.05,0.5,0.48,0.88,0.99,0.88c0.59,0,1.06-0.51,1-1.1C22.39,5.34,17.7,1,12,1z\\\"></path></g>\"\n      }\n    }\n  },\n  \"lock_person\": {\n    \"name\": \"lock_person\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,11c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26C11.47,20.87,11,19.49,11,18C11,14.13,14.13,11,18,11z M8.9,6c0-1.71,1.39-3.1,3.1-3.1s3.1,1.39,3.1,3.1v2 H8.9V6z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M18,15c0.83,0,1.5,0.67,1.5,1.5S18.83,18,18,18 s-1.5-0.67-1.5-1.5S17.17,15,18,15z M18,21c-1.03,0-1.94-0.52-2.48-1.32C16.25,19.26,17.09,19,18,19s1.75,0.26,2.48,0.68 C19.94,20.48,19.03,21,18,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,9.5c0.34,0,0.68,0.04,1,0.1V8.5C16,7.67,15.33,7,14.5,7H14V5c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5C4.67,7,4,7.67,4,8.5 v8C4,17.33,4.67,18,5.5,18h4.89c-0.56-0.86-0.89-1.89-0.89-3C9.5,11.96,11.96,9.5,15,9.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M15,11c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S17.21,11,15,11z M15,12c0.83,0,1.5,0.67,1.5,1.5S15.83,15,15,15 c-0.83,0-1.5-0.67-1.5-1.5S14.17,12,15,12z M15,18c-1.09,0-2.03-0.58-2.56-1.45c0.73-0.5,1.61-0.8,2.56-0.8s1.83,0.3,2.56,0.8 C17.03,17.42,16.09,18,15,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"toll\": {\n    \"name\": \"toll\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.39 1.4-4.46 3.43-5.42.34-.16.57-.47.57-.84v-.19c0-.68-.71-1.11-1.32-.82C2.92 5.99 1 8.77 1 12s1.92 6.01 4.68 7.27c.61.28 1.32-.14 1.32-.82v-.18c0-.37-.23-.69-.57-.85C4.4 16.46 3 14.39 3 12z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmarks\": {\n    \"name\": \"bookmarks\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 18l2 1V3c0-1.1-.9-2-2-2H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13zM15 5H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"outbond\": {\n    \"name\": \"outbond\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.25,4.25 c-0.39,0.39-1.02,0.39-1.41,0l0,0c-0.39-0.39-0.39-1.02,0-1.41l4.25-4.25L11.2,8.86C10.88,8.54,11.11,8,11.55,8l3.94,0 c0.28,0,0.5,0.22,0.5,0.5l0,3.94c0,0.45-0.54,0.67-0.85,0.35L13.88,11.54z\\\"></path><g></rect><g></rect><g></rect>\"\n      }\n    }\n  },\n  \"view_quilt\": {\n    \"name\": \"view_quilt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M21,6v4.5c0,0.55-0.45,1-1,1h-9.67c-0.55,0-1-0.45-1-1V6c0-0.55,0.45-1,1-1H20C20.55,5,21,5.45,21,6z M14.67,18v-4.5 c0-0.55-0.45-1-1-1h-3.33c-0.55,0-1,0.45-1,1V18c0,0.55,0.45,1,1,1h3.33C14.22,19,14.67,18.55,14.67,18z M15.67,13.5V18 c0,0.55,0.45,1,1,1H20c0.55,0,1-0.45,1-1v-4.5c0-0.55-0.45-1-1-1h-3.33C16.11,12.5,15.67,12.95,15.67,13.5z M8.33,18V6 c0-0.55-0.45-1-1-1H4C3.45,5,3,5.45,3,6v12c0,0.55,0.45,1,1,1h3.33C7.89,19,8.33,18.55,8.33,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,14.5V11c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3.5c0,0.28-0.22,0.5-0.5,0.5h-3C8.22,15,8,14.78,8,14.5z M8,5.5V9c0,0.28,0.22,0.5,0.5,0.5h8C16.78,9.5,17,9.28,17,9V5.5C17,5.22,16.78,5,16.5,5h-8C8.22,5,8,5.22,8,5.5z M7,14.5v-9 C7,5.22,6.78,5,6.5,5h-3C3.22,5,3,5.22,3,5.5v9C3,14.78,3.22,15,3.5,15h3C6.78,15,7,14.78,7,14.5z M13,11v3.5 c0,0.28,0.22,0.5,0.5,0.5h3c0.28,0,0.5-0.22,0.5-0.5V11c0-0.28-0.22-0.5-0.5-0.5h-3C13.22,10.5,13,10.72,13,11z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_view_day\": {\n    \"name\": \"calendar_view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,7h14c1.1,0,2,0.9,2,2v6c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9C3,7.9,3.9,7,5,7z M4,3h16c0.55,0,1,0.45,1,1v0 c0,0.55-0.45,1-1,1H4C3.45,5,3,4.55,3,4v0C3,3.45,3.45,3,4,3z M4,19h16c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1 v0C3,19.45,3.45,19,4,19z\\\"></path>\"\n      }\n    }\n  },\n  \"shop_two\": {\n    \"name\": \"shop_two\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 9c-.55 0-1 .45-1 1v10c0 1.1.9 2 2 2h14c1.11 0 2-.89 2-2H4c-.55 0-1-.45-1-1v-9c0-.55-.45-1-1-1zm16-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H7c-1.1 0-2 .9-2 2v9c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3zm-6-2h4v2h-4V3zm0 11.02V8.84c0-.38.41-.62.74-.44l4.07 2.22c.32.18.35.63.05.84l-4.07 2.96c-.33.24-.79.01-.79-.4z\\\"></path>\"\n      }\n    }\n  },\n  \"done_all\": {\n    \"name\": \"done_all\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.3 6.3c-.39-.39-1.02-.39-1.41 0l-5.64 5.64 1.41 1.41L17.3 7.7c.38-.38.38-1.02 0-1.4zm4.24-.01l-9.88 9.88-3.48-3.47c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L22.95 7.71c.39-.39.39-1.02 0-1.41h-.01c-.38-.4-1.01-.4-1.4-.01zM1.12 14.12L5.3 18.3c.39.39 1.02.39 1.41 0l.7-.7-4.88-4.9c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.03 0 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"percent\": {\n    \"name\": \"percent\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.5,4C5.57,4,4,5.57,4,7.5S5.57,11,7.5,11S11,9.43,11,7.5S9.43,4,7.5,4z M7.5,9C6.67,9,6,8.33,6,7.5S6.67,6,7.5,6 S9,6.67,9,7.5S8.33,9,7.5,9z M16.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S18.43,13,16.5,13z M16.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,18,16.5,18z M19.29,4.71c0.39,0.39,0.39,1.02,0,1.41 L6.12,19.29c-0.39,0.39-1.02,0.39-1.41,0s-0.39-1.02,0-1.41L17.88,4.71C18.27,4.32,18.9,4.32,19.29,4.71z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.5,4C5.12,4,4,5.12,4,6.5C4,7.88,5.12,9,6.5,9S9,7.88,9,6.5C9,5.12,7.88,4,6.5,4z M6.5,7.5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,7.05,7.05,7.5,6.5,7.5z M13.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5C16,12.12,14.88,11,13.5,11z M13.5,14.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C14.5,14.05,14.05,14.5,13.5,14.5z M15.47,4.53c0.29,0.29,0.29,0.77,0,1.06l-9.88,9.88c-0.29,0.29-0.77,0.29-1.06,0 c-0.29-0.29-0.29-0.77,0-1.06l9.88-9.88C14.7,4.24,15.18,4.24,15.47,4.53z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_phone\": {\n    \"name\": \"settings_phone\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"20\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><path d=\\\"M15.63,14.4l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3 L4,3C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43 c0.56,0.03,1.03-0.44,1.03-1l0-4.15c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C16.2,14.07,15.86,14.17,15.63,14.4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"note_add\": {\n    \"name\": \"note_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.59 2.59c-.38-.38-.89-.59-1.42-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15 16h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2v-2c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1zm-2-8V3.5L18.5 9H14c-.55 0-1-.45-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy_alt\": {\n    \"name\": \"view_comfy_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M10.5,17h-3 C7.22,17,7,16.78,7,16.5v-3C7,13.22,7.22,13,7.5,13h3c0.28,0,0.5,0.22,0.5,0.5v3C11,16.78,10.78,17,10.5,17z M10.5,11h-3 C7.22,11,7,10.78,7,10.5v-3C7,7.22,7.22,7,7.5,7h3C10.78,7,11,7.22,11,7.5v3C11,10.78,10.78,11,10.5,11z M16.5,17h-3 c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3C17,16.78,16.78,17,16.5,17z M16.5,11h-3 c-0.28,0-0.5-0.22-0.5-0.5v-3C13,7.22,13.22,7,13.5,7h3C16.78,7,17,7.22,17,7.5v3C17,10.78,16.78,11,16.5,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M8.75,14h-2.5C6.11,14,6,13.89,6,13.75v-2.5C6,11.11,6.11,11,6.25,11h2.5C8.89,11,9,11.11,9,11.25v2.5C9,13.89,8.89,14,8.75,14z M8.75,9h-2.5C6.11,9,6,8.89,6,8.75v-2.5C6,6.11,6.11,6,6.25,6h2.5C8.89,6,9,6.11,9,6.25v2.5C9,8.89,8.89,9,8.75,9z M13.75,14 h-2.5C11.11,14,11,13.89,11,13.75v-2.5c0-0.14,0.11-0.25,0.25-0.25h2.5c0.14,0,0.25,0.11,0.25,0.25v2.5 C14,13.89,13.89,14,13.75,14z M13.75,9h-2.5C11.11,9,11,8.89,11,8.75v-2.5C11,6.11,11.11,6,11.25,6h2.5C13.89,6,14,6.11,14,6.25 v2.5C14,8.89,13.89,9,13.75,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_box\": {\n    \"name\": \"account_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,6c1.93,0,3.5,1.57,3.5,3.5 c0,1.93-1.57,3.5-3.5,3.5s-3.5-1.57-3.5-3.5C8.5,7.57,10.07,6,12,6z M19,19H5v-0.23c0-0.62,0.28-1.2,0.76-1.58 C7.47,15.82,9.64,15,12,15s4.53,0.82,6.24,2.19c0.48,0.38,0.76,0.97,0.76,1.58V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M10,5.5c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S8.34,5.5,10,5.5z M15.5,15.5h-11c0-0.6,0.03-1.18,0.73-1.62 C6.61,13.01,8.24,12.5,10,12.5s3.39,0.51,4.77,1.38C15.48,14.32,15.5,14.95,15.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alarm_on\": {\n    \"name\": \"alarm_on\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.94 10.11l-4.4 4.42-1.6-1.6c-.29-.29-.77-.29-1.06 0-.29.29-.29.77 0 1.06L10 16.11c.29.29.77.29 1.06 0L16 11.17c.29-.29.29-.77 0-1.06-.29-.29-.77-.29-1.06 0zm6.24-5.1L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"flaky\": {\n    \"name\": \"flaky\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.16,15.72c-0.29-0.29-0.29-0.77,0-1.06l0,0c0.29-0.29,0.77-0.29,1.06,0 l0.82,0.82l1.96-1.96c0.29-0.29,0.77-0.29,1.06,0l0,0c0.29,0.29,0.29,0.77,0,1.06l-2.65,2.65c-0.19,0.19-0.51,0.2-0.7,0 L12.16,15.72z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.87,6.81l0.88,0.88l0.88-0.88 c0.29-0.29,0.77-0.29,1.06,0l0,0c0.29,0.29,0.29,0.77,0,1.06L9.81,8.75l0.88,0.88c0.29,0.29,0.29,0.77,0,1.06l0,0 c-0.29,0.29-0.77,0.29-1.06,0L8.75,9.81l-0.88,0.88c-0.29,0.29-0.77,0.29-1.06,0l0,0c-0.29-0.29-0.29-0.77,0-1.06l0.88-0.88 L6.81,7.87c-0.29-0.29-0.29-0.77,0-1.06l0,0C7.1,6.51,7.57,6.51,7.87,6.81z M12,20c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3 C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M11.37,3.13C6.44,2.2,2.2,6.44,3.13,11.37c0.52,2.76,2.74,4.98,5.5,5.5 c4.93,0.93,9.17-3.31,8.24-8.24C16.35,5.87,14.13,3.65,11.37,3.13z M6.35,7.06c-0.2-0.2-0.2-0.51,0-0.71c0.2-0.2,0.51-0.2,0.71,0 l0.71,0.71l0.71-0.71c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L8.47,7.77l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71 c-0.2,0.2-0.51,0.2-0.71,0L7.77,8.47L7.06,9.18c-0.2,0.2-0.51,0.2-0.71,0c-0.2-0.2-0.2-0.51,0-0.71l0.71-0.71L6.35,7.06z M11.37,15.85c-2.18,0.49-4.23-0.22-5.62-1.61l8.48-8.48c1.38,1.38,2.09,3.43,1.61,5.61C15.36,13.58,13.58,15.35,11.37,15.85z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M13.15,10.85l-1.73,1.73l-0.65-0.65c-0.2-0.2-0.51-0.2-0.71,0s-0.2,0.51,0,0.71 l1,1c0.2,0.2,0.51,0.2,0.71,0l2.09-2.09c0.2-0.2,0.2-0.51,0-0.71C13.66,10.66,13.34,10.66,13.15,10.85z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"outbox\": {\n    \"name\": \"outbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.21,11H11v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79c-0.2-0.2-0.51-0.2-0.71,0 l-2.79,2.79C8.54,10.46,8.76,11,9.21,11z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,14h-3.02 c-0.63,0-1.22,0.3-1.6,0.8C13.84,15.53,12.98,16,12,16s-1.84-0.47-2.38-1.2C9.24,14.3,8.65,14,8.02,14H5V5h14V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,11h-2.38c-0.58,0-1.07,0.36-1.33,0.88C11.47,12.54,10.79,13,10,13s-1.47-0.46-1.8-1.12C7.95,11.36,7.46,11,6.88,11H4.5V4.5 h11V11z\\\"></path><path d=\\\"M10,11L10,11c0.41,0,0.75-0.34,0.75-0.75V9h1.04c0.45,0,0.67-0.54,0.35-0.85l-1.79-1.79c-0.2-0.2-0.51-0.2-0.71,0 L7.85,8.15C7.54,8.46,7.76,9,8.21,9h1.04v1.25C9.25,10.66,9.59,11,10,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"verified_user\": {\n    \"name\": \"verified_user\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.19 1.36l-7 3.11C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.51-.23-1.11-.23-1.62 0zm-1.9 14.93L6.7 13.7c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.17l5.88-5.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-6.59 6.59c-.38.39-1.02.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_turned_in\": {\n    \"name\": \"assignment_turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.29 16.29L6.7 13.7c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.17l5.88-5.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-6.59 6.59c-.38.39-1.02.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"extension_off\": {\n    \"name\": \"extension_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.49,21.9c-0.39,0.39-1.02,0.39-1.41,0l-0.92-0.92C18.1,20.98,18.05,21,18,21h-3.8c0-2.71-2.16-3-2.7-3s-2.7,0.29-2.7,3H5 c-1.1,0-2-0.9-2-2v-3.8c2.71,0,3-2.16,3-2.7c0-0.54-0.3-2.7-2.99-2.7V6c0-0.05,0.02-0.09,0.02-0.14L2.1,4.93 c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97C20.88,20.88,20.88,21.51,20.49,21.9L20.49,21.9z M20,17.17V15c1.38,0,2.5-1.12,2.5-2.5S21.38,10,20,10V6c0-1.1-0.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H6.83L20,17.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.54,16.54L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06L3,5.12V8c1.1,0,2,0.9,2,2s-0.9,2-2,2 v3.5C3,16.33,3.67,17,4.5,17H8c0-1.1,0.9-2,2-2s2,0.9,2,2h2.88l0.6,0.6c0.29,0.29,0.77,0.29,1.06,0l0,0 C16.83,17.31,16.83,16.83,16.54,16.54z M19,10c0,1.1-0.9,2-2,2v2.88L5.12,3H8c0-1.1,0.9-2,2-2s2,0.9,2,2h3.5C16.33,3,17,3.67,17,4.5 V8C18.1,8,19,8.9,19,10z\\\"></path>\"\n      }\n    }\n  },\n  \"join_left\": {\n    \"name\": \"join_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12.68,6.8c-0.39-0.35-0.98-0.35-1.37,0C9.35,8.56,9,10.84,9,12c0,1.15,0.35,3.44,2.32,5.2c0.39,0.35,0.98,0.35,1.37,0 C14.65,15.44,15,13.16,15,12C15,10.85,14.65,8.56,12.68,6.8z\\\"></path></g><g><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path></g><g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.34,6.06c-0.18-0.18-0.5-0.18-0.68,0C8.23,7.45,8,9.14,8,10c0,0.85,0.23,2.55,1.66,3.94c0.18,0.18,0.5,0.18,0.68,0 C11.77,12.55,12,10.85,12,10C12,9.15,11.77,7.45,10.34,6.06z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_access_shortcut_add\": {\n    \"name\": \"switch_access_shortcut_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,18c0.55,0,1-0.45,1-1v-1h1c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-1v-1c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1v1h-1 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1v1C20,17.55,20.45,18,21,18z M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11 L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37 L7,13l-1.37-0.63L5,11L4.37,12.37z M19,20.41c0,0.78-0.84,1.25-1.51,0.86C14.21,19.36,12,15.79,12,12c0-2.73,1.08-5.27,2.75-7.25 l-1.9-1.9C12.54,2.54,12.76,2,13.21,2h5.29C18.78,2,19,2.22,19,2.5v5.29c0,0.45-0.54,0.67-0.85,0.35l-1.97-1.97 C14.84,7.82,14,9.88,14,12c0,3.13,1.86,6.01,4.51,7.55C18.81,19.73,19,20.06,19,20.41z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,16.85 c0,0.56-0.6,0.92-1.09,0.65C11.78,16.03,10,13.21,10,10c0-2.2,0.83-4.24,2.2-5.8l-1.35-1.35C10.54,2.54,10.76,2,11.21,2H15 c0.28,0,0.5,0.22,0.5,0.5v3.79c0,0.45-0.54,0.67-0.85,0.35l-1.38-1.38C12.17,6.55,11.5,8.21,11.5,10c0,2.65,1.46,4.96,3.61,6.16 C15.35,16.3,15.5,16.56,15.5,16.85z M20,12.25c0-0.41-0.34-0.75-0.75-0.75H18.5v-0.75c0-0.41-0.34-0.75-0.75-0.75S17,10.34,17,10.75 v0.75h-0.75c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75H17v0.75c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75V13 h0.75C19.66,13,20,12.66,20,12.25z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_by_default\": {\n    \"name\": \"disabled_by_default\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z M16.3,16.29L16.3,16.29 c-0.39,0.39-1.02,0.39-1.41,0L12,13.41l-2.89,2.89c-0.39,0.39-1.02,0.39-1.41,0l0,0c-0.39-0.39-0.39-1.02,0-1.41L10.59,12L7.7,9.11 c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0L12,10.59l2.89-2.88c0.39-0.39,1.02-0.39,1.41,0l0,0 c0.39,0.39,0.39,1.02,0,1.41L13.41,12l2.89,2.88C16.68,15.27,16.68,15.91,16.3,16.29z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread_mailbox\": {\n    \"name\": \"markunread_mailbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6H10v5c0 .55-.45 1-1 1s-1-.45-1-1V4h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"ads_click\": {\n    \"name\": \"ads_click\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26l2.27-0.76c0.46-0.15,0.45-0.81-0.01-0.95l-7.6-2.28 c-0.38-0.11-0.74,0.24-0.62,0.62l2.28,7.6c0.14,0.47,0.8,0.48,0.95,0.01l0.76-2.27l3.91,3.91c0.2,0.2,0.51,0.2,0.71,0l1.27-1.27 c0.2-0.2,0.2-0.51,0-0.71L18.23,16.26z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.73,18.15l-3.12-3.12l-0.6,1.61c-0.17,0.45-0.8,0.43-0.95-0.03l-1.78-5.7c-0.12-0.39,0.24-0.75,0.63-0.63l5.7,1.78 c0.45,0.14,0.47,0.78,0.03,0.95l-1.61,0.6l3.12,3.12c0.2,0.2,0.2,0.51,0,0.71l-0.71,0.71C17.24,18.34,16.93,18.34,16.73,18.15z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18 c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45 C16.5,6.42,13.58,3.5,10,3.5 M10,6.5c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0 C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\\\"></path>\"\n      }\n    }\n  },\n  \"favorite\": {\n    \"name\": \"favorite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.35 20.13c-.76.69-1.93.69-2.69-.01l-.11-.1C5.3 15.27 1.87 12.16 2 8.28c.06-1.7.93-3.33 2.34-4.29 2.64-1.8 5.9-.96 7.66 1.1 1.76-2.06 5.02-2.91 7.66-1.1 1.41.96 2.28 2.59 2.34 4.29.14 3.88-3.3 6.99-8.55 11.76l-.1.09z\\\"></path>\"\n      }\n    }\n  },\n  \"width_wide\": {\n    \"name\": \"width_wide\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h2v12H4V6z M20,18h-2V6h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,5.5H5v9H3.5V5.5z M16.5,14.5H15v-9h1.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_off\": {\n    \"name\": \"edit_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l6.61,6.61L3.15,17.1C3.05,17.2,3,17.32,3,17.46v3.04 C3,20.78,3.22,21,3.5,21h3.04c0.13,0,0.26-0.05,0.35-0.15l5.56-5.56l6.61,6.61c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L3.52,3.51C3.12,3.12,2.49,3.12,2.1,3.51z\\\"></path></g><g><path d=\\\"M20.71,7.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z\\\"></path></g><g><rect height=\\\"5.3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.2957 13.1079)\\\" width=\\\"3.56\\\" x=\\\"12.89\\\" y=\\\"6.67\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"javascript\": {\n    \"name\": \"javascript\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.54,10.5c0.1,0.29,0.38,0.5,0.71,0.5c0.41,0,0.75-0.34,0.75-0.75V10c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1h2.5v1h-2.04v0c-0.1-0.29-0.38-0.5-0.71-0.5C12.34,13,12,13.34,12,13.75V14c0,0.55,0.45,1,1,1h3 c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1h-2.5v-1L15.54,10.5z M7.5,13.5H9V9.75C9,9.34,9.34,9,9.75,9c0.41,0,0.75,0.34,0.75,0.75 v3.75c0,0.83-0.67,1.5-1.5,1.5H7.5C6.67,15,6,14.33,6,13.5v-0.25c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75V13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.43,11c-0.09-0.15-0.25-0.25-0.43-0.25c-0.28,0-0.5,0.22-0.5,0.5v0.25c0,0.28,0.22,0.5,0.5,0.5h2 c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5h-1.5V9l1.07,0c0.09,0.15,0.25,0.25,0.43,0.25c0.28,0,0.5-0.22,0.5-0.5V8.5 C13.5,8.22,13.28,8,13,8h-2c-0.28,0-0.5,0.22-0.5,0.5v1.25c0,0.28,0.22,0.5,0.5,0.5h1.5V11L11.43,11z M6,10.5 C6,10.22,6.22,10,6.5,10S7,10.22,7,10.5V11h1V8.5C8,8.22,8.22,8,8.5,8S9,8.22,9,8.5v3C9,11.78,8.78,12,8.5,12h-2 C6.22,12,6,11.78,6,11.5V10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"class\": {\n    \"name\": \"class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_power\": {\n    \"name\": \"settings_power\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,24L8,24c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C7,23.55,7.45,24,8,24z M12,24L12,24 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C11,23.55,11.45,24,12,24z M12,2c-0.55,0-1,0.45-1,1v8 c0,0.55,0.45,1,1,1s1-0.45,1-1V3C13,2.45,12.55,2,12,2z M15.94,5.06l-0.02,0.02C15.51,5.49,15.56,6.16,16,6.54 c1.51,1.34,2.33,3.43,1.88,5.7c-0.46,2.28-2.29,4.14-4.56,4.62C9.43,17.69,6,14.74,6,11c0-1.78,0.78-3.37,2.01-4.47 c0.43-0.39,0.47-1.04,0.07-1.45L8.06,5.06C7.69,4.69,7.1,4.67,6.7,5.02c-2.01,1.77-3.12,4.53-2.56,7.52 c0.59,3.15,3.11,5.7,6.26,6.31c5.12,0.99,9.6-2.9,9.6-7.85c0-2.38-1.05-4.52-2.71-5.99C16.9,4.67,16.31,4.69,15.94,5.06z M16,24 L16,24c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C15,23.55,15.45,24,16,24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fax\": {\n    \"name\": \"fax\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,9h-1V6c0-1.1-0.9-2-2-2h-6C8.9,4,8,4.9,8,6v14h12c1.1,0,2-0.9,2-2v-6C22,10.34,20.66,9,19,9z M10,6h6v3h-6V6z M14,17 h-4v-5h4V17z M16,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,16.55,16.55,17,16,17z M16,14c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C17,13.55,16.55,14,16,14z M19,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C20,16.55,19.55,17,19,17z M19,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,13.55,19.55,14,19,14z\\\"></path><path d=\\\"M4.5,8C3.12,8,2,9.12,2,10.5v8C2,19.88,3.12,21,4.5,21S7,19.88,7,18.5v-8C7,9.12,5.88,8,4.5,8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,6.5c-1.1,0-2,0.9-2,2V15c0,1.1,0.9,2,2,2s2-0.9,2-2V8.5C6,7.4,5.1,6.5,4,6.5z\\\"></path><path d=\\\"M16,7.5h-1.4v-2c0-0.83-0.67-1.5-1.5-1.5H8.5C7.67,4,7,4.67,7,5.5V16h9.5c0.83,0,1.5-0.67,1.5-1.5v-5 C18,8.4,17.1,7.5,16,7.5z M8.5,5.5h4.6v2H8.5V5.5z M11,13.5H8V10h3V13.5z M12.5,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,13.16,12.91,13.5,12.5,13.5z M12.5,11.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,11.16,12.91,11.5,12.5,11.5z M14.75,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,13.16,15.16,13.5,14.75,13.5z M14.75,11.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,11.16,15.16,11.5,14.75,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_alt_off\": {\n    \"name\": \"filter_alt_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.79,5.61C20.3,4.95,19.83,4,19,4H6.83l7.97,7.97L19.79,5.61z\\\"></path><path d=\\\"M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L10,13v5c0,1.1,0.9,2,2,2s2-0.9,2-2 v-1.17l5.07,5.07c0.39,0.39,1.02,0.39,1.41,0S20.88,20.88,20.49,20.49z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.89,4.82C16.15,4.49,15.92,4,15.5,4H6.12l5.73,5.73L15.89,4.82z\\\"></path><path d=\\\"M16.54,16.54L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l6.6,6.6V15c0,0.55,0.45,1,1,1 s1-0.45,1-1v-1.88l4.48,4.48c0.29,0.29,0.77,0.29,1.06,0C16.83,17.31,16.83,16.83,16.54,16.54z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"spatial_audio\": {\n    \"name\": \"spatial_audio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22.11,7.95c-1.89-0.23-5.57-1.83-6.09-6.09C15.96,1.36,15.54,1,15.04,1h0c-0.6,0-1.07,0.53-1,1.13 c0.31,2.43,2.38,7.12,7.8,7.8c0.6,0.08,1.13-0.4,1.13-1v0C22.97,8.43,22.6,8.01,22.11,7.95z\\\"></path><path d=\\\"M21.71,5.83c0.64,0.17,1.26-0.31,1.26-0.97c0-0.47-0.34-0.85-0.79-0.97c-0.49-0.14-1.72-0.68-2.11-2.13 C19.95,1.32,19.57,1,19.11,1H19.1c-0.66,0-1.14,0.64-0.96,1.28C18.74,4.5,20.58,5.53,21.71,5.83z\\\"></path><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.34,7.47c-2.25-0.23-5.42-2.02-5.8-5.8C12.5,1.29,12.21,1,11.84,1h-0.1c-0.42,0-0.74,0.37-0.7,0.79 c0.46,4.7,4.4,6.89,7.17,7.17C18.63,9,19,8.69,19,8.27l0-0.1C19,7.79,18.71,7.5,18.34,7.47z\\\"></path><path d=\\\"M18.44,4.46c-1.59-0.26-2.67-1.53-2.89-2.89C15.49,1.23,15.2,1,14.86,1h-0.1c-0.43,0-0.77,0.39-0.7,0.82 c0.37,2.24,2.15,3.79,4.11,4.11C18.61,6,19,5.67,19,5.24v-0.1C19,4.8,18.77,4.51,18.44,4.46z\\\"></path><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"density_small\": {\n    \"name\": \"density_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3L3,3c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4C3.45,2,3,2.45,3,3z\\\"></path><path d=\\\"M4,22h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,21.55,3.45,22,4,22z\\\"></path><path d=\\\"M4,16h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,15.55,3.45,16,4,16z\\\"></path><path d=\\\"M4,10h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4C3.45,8,3,8.45,3,9v0C3,9.55,3.45,10,4,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.75,13h12.5c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H3.75C3.34,11.5,3,11.84,3,12.25v0 C3,12.66,3.34,13,3.75,13z\\\"></path><path d=\\\"M3.75,8.5h12.5C16.66,8.5,17,8.16,17,7.75v0C17,7.34,16.66,7,16.25,7H3.75C3.34,7,3,7.34,3,7.75v0 C3,8.16,3.34,8.5,3.75,8.5z\\\"></path><path d=\\\"M3,3.25L3,3.25C3,3.66,3.34,4,3.75,4h12.5C16.66,4,17,3.66,17,3.25v0c0-0.41-0.34-0.75-0.75-0.75H3.75 C3.34,2.5,3,2.84,3,3.25z\\\"></path><path d=\\\"M3.75,17.5h12.5c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H3.75C3.34,16,3,16.34,3,16.75l0,0 C3,17.16,3.34,17.5,3.75,17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rounded_corner\": {\n    \"name\": \"rounded_corner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z\\\"></path>\"\n      }\n    }\n  },\n  \"favorite_border\": {\n    \"name\": \"favorite_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.66 3.99c-2.64-1.8-5.9-.96-7.66 1.1-1.76-2.06-5.02-2.91-7.66-1.1-1.4.96-2.28 2.58-2.34 4.29-.14 3.88 3.3 6.99 8.55 11.76l.1.09c.76.69 1.93.69 2.69-.01l.11-.1c5.25-4.76 8.68-7.87 8.55-11.75-.06-1.7-.94-3.32-2.34-4.28zM12.1 18.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less_double\": {\n    \"name\": \"unfold_less_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.46,5.7l-2.47,2.46L9.53,5.7c-0.39-0.39-1.02-0.39-1.41,0s-0.39,1.02,0,1.41l3.17,3.18c0.39,0.39,1.02,0.39,1.41,0 l3.17-3.18c0.39-0.39,0.39-1.02,0-1.41S14.85,5.31,14.46,5.7z\\\"></path><path d=\\\"M14.46,0.7l-2.47,2.46L9.53,0.7c-0.39-0.39-1.02-0.39-1.41,0s-0.39,1.02,0,1.41l3.17,3.18c0.39,0.39,1.02,0.39,1.41,0 l3.17-3.18c0.39-0.39,0.39-1.02,0-1.41S14.85,0.31,14.46,0.7z\\\"></path><path d=\\\"M9.54,23.3l2.47-2.46l2.46,2.46c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41l-3.17-3.18 c-0.39-0.39-1.02-0.39-1.41,0l-3.17,3.18c-0.39,0.39-0.39,1.02,0,1.41C8.52,23.69,9.15,23.69,9.54,23.3z\\\"></path><path d=\\\"M9.54,18.29l2.47-2.45l2.46,2.46c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41l-3.17-3.18 c-0.39-0.39-1.02-0.39-1.41,0l-3.17,3.17c-0.39,0.39-0.39,1.02,0,1.41S9.15,18.68,9.54,18.29z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.29,3.83c0.39,0.39,1.02,0.39,1.41,0l2.13-2.13c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L10,2.41L8.22,0.63 c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06L9.29,3.83z\\\"></path><path d=\\\"M11.78,4.63L10,6.41L8.22,4.63c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06l2.13,2.13c0.39,0.39,1.02,0.39,1.41,0 l2.13-2.13c0.29-0.29,0.29-0.77,0-1.06S12.07,4.34,11.78,4.63z\\\"></path><path d=\\\"M8.22,19.37L10,17.59l1.78,1.78c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-2.13-2.13 c-0.39-0.39-1.02-0.39-1.41,0l-2.13,2.13c-0.29,0.29-0.29,0.77,0,1.06C7.45,19.66,7.93,19.66,8.22,19.37z\\\"></path><path d=\\\"M8.22,15.37L10,13.59l1.78,1.78c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06l-2.13-2.13 c-0.39-0.39-1.02-0.39-1.41,0l-2.13,2.13c-0.29,0.29-0.29,0.77,0,1.06C7.45,15.66,7.93,15.66,8.22,15.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_applications\": {\n    \"name\": \"settings_applications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.11,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M15.75,12 c0,0.22-0.03,0.42-0.06,0.63l0.84,0.73c0.18,0.16,0.22,0.42,0.1,0.63l-0.59,1.02c-0.12,0.21-0.37,0.3-0.59,0.22l-1.06-0.36 c-0.32,0.27-0.68,0.48-1.08,0.63l-0.22,1.09c-0.05,0.23-0.25,0.4-0.49,0.4h-1.18c-0.24,0-0.44-0.17-0.49-0.4l-0.22-1.09 c-0.4-0.15-0.76-0.36-1.08-0.63l-1.06,0.36c-0.23,0.08-0.47-0.02-0.59-0.22l-0.59-1.02c-0.12-0.21-0.08-0.47,0.1-0.63l0.84-0.73 C8.28,12.42,8.25,12.22,8.25,12s0.03-0.42,0.06-0.63l-0.84-0.73c-0.18-0.16-0.22-0.42-0.1-0.63l0.59-1.02 c0.12-0.21,0.37-0.3,0.59-0.22l1.06,0.36c0.32-0.27,0.68-0.48,1.08-0.63l0.22-1.09C10.97,7.17,11.17,7,11.41,7h1.18 c0.24,0,0.44,0.17,0.49,0.4l0.22,1.09c0.4,0.15,0.76,0.36,1.08,0.63l1.06-0.36c0.23-0.08,0.47,0.02,0.59,0.22l0.59,1.02 c0.12,0.21,0.08,0.47-0.1,0.63l-0.84,0.73C15.72,11.58,15.75,11.78,15.75,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"backup_table\": {\n    \"name\": \"backup_table\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g></g><g><g><g><path d=\\\"M4,7v13h13c0.55,0,1,0.45,1,1l0,0c0,0.55-0.45,1-1,1H4c-1.1,0-2-0.9-2-2V7c0-0.55,0.45-1,1-1l0,0C3.55,6,4,6.45,4,7z\\\"></path><path d=\\\"M6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4c0-1.1-0.9-2-2-2H8C6.9,2,6,2.9,6,4z M15,11h5v5h-5V11z M8,11h5v5H8V11z M8,4h12v5H8V4z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M2.75,5L2.75,5C2.34,5,2,5.34,2,5.75V16.5C2,17.33,2.67,18,3.5,18h10.75c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H3.5V5.75C3.5,5.34,3.16,5,2.75,5z\\\"></path><path d=\\\"M16.5,2h-10C5.67,2,5,2.67,5,3.5v10C5,14.33,5.67,15,6.5,15h10c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M16.5,3.5v4.25h-10V3.5H16.5z M6.5,9.25h4.25v4.25H6.5V9.25z M12.25,13.5V9.25h4.25v4.25H12.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_right_alt\": {\n    \"name\": \"swipe_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.9,11C13.44,8.72,11.42,7,9,7c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h4.27l-0.88,0.88 c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0l2.59-2.59c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59 c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L18.17,11H13.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.47,7.53c-0.29,0.29-0.29,0.77,0,1.06l0.66,0.66l-3.2,0C11.58,7.4,9.95,6,8,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4 c1.95,0,3.58-1.4,3.93-3.25l3.2,0l-0.66,0.66c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.76-1.76c0.39-0.39,0.39-1.02,0-1.41 l-1.76-1.76C15.24,7.24,14.76,7.24,14.47,7.53z\\\"></path></g>\"\n      }\n    }\n  },\n  \"update\": {\n    \"name\": \"update\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11,8.75v3.68c0,0.35,0.19,0.68,0.49,0.86l3.12,1.85c0.36,0.21,0.82,0.09,1.03-0.26c0.21-0.36,0.1-0.82-0.26-1.03 l-2.87-1.71v-3.4C12.5,8.34,12.16,8,11.75,8S11,8.34,11,8.75z M21,9.5V4.21c0-0.45-0.54-0.67-0.85-0.35l-1.78,1.78 c-1.81-1.81-4.39-2.85-7.21-2.6c-4.19,0.38-7.64,3.75-8.1,7.94C2.46,16.4,6.69,21,12,21c4.59,0,8.38-3.44,8.93-7.88 c0.07-0.6-0.4-1.12-1-1.12c-0.5,0-0.92,0.37-0.98,0.86c-0.43,3.49-3.44,6.19-7.05,6.14c-3.71-0.05-6.84-3.18-6.9-6.9 C4.94,8.2,8.11,5,12,5c1.93,0,3.68,0.79,4.95,2.05l-2.09,2.09C14.54,9.46,14.76,10,15.21,10h5.29C20.78,10,21,9.78,21,9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"join_full\": {\n    \"name\": \"join_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12.68,6.8c-0.39-0.35-0.98-0.35-1.37,0C9.35,8.56,9,10.84,9,12c0,1.15,0.35,3.44,2.32,5.2c0.39,0.35,0.98,0.35,1.37,0 C14.65,15.44,15,13.16,15,12C15,10.85,14.65,8.56,12.68,6.8z\\\"></path><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c2.8,2.34,3.03,5.53,3.03,6.5c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19 c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.34,6.06c-0.18-0.18-0.5-0.18-0.68,0C8.23,7.45,8,9.14,8,10c0,0.85,0.23,2.55,1.66,3.94c0.18,0.18,0.5,0.18,0.68,0 C11.77,12.55,12,10.85,12,10C12,9.15,11.77,7.45,10.34,6.06z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10c0,0.89-0.23,3.08-2.15,4.81 c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turned_in\": {\n    \"name\": \"turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"lock\": {\n    \"name\": \"lock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_reset\": {\n    \"name\": \"lock_reset\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.26,3C8.17,2.86,4,6.94,4,12H2.21c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.79c0.2,0.2,0.51,0.2,0.71,0l2.8-2.79 C8.46,12.54,8.24,12,7.79,12H6c0-3.89,3.2-7.06,7.1-7c3.71,0.05,6.84,3.18,6.9,6.9c0.06,3.91-3.1,7.1-7,7.1 c-1.59,0-3.05-0.53-4.23-1.43c-0.4-0.3-0.96-0.27-1.31,0.09l0,0c-0.43,0.43-0.39,1.14,0.09,1.5C9.06,20.31,10.95,21,13,21 c5.06,0,9.14-4.17,9-9.25C21.87,7.05,17.95,3.13,13.26,3z M15,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C16,11.45,15.55,11,15,11z M14,11h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.96,9.2C17.42,13.43,14.13,17,10,17c-1.75,0-3.35-0.65-4.58-1.72C5.09,15,5.08,14.5,5.39,14.19l0,0 c0.28-0.28,0.73-0.28,1.03-0.02C7.38,14.99,8.63,15.5,10,15.5c3.42,0,6.12-3.14,5.38-6.68c-0.44-2.1-2.1-3.75-4.19-4.19 C7.64,3.88,4.5,6.58,4.5,10h1.04c0.45,0,0.67,0.54,0.35,0.85L4.1,12.65c-0.2,0.2-0.51,0.2-0.71,0L1.6,10.85 C1.29,10.54,1.51,10,1.96,10H3c0-4.13,3.57-7.42,7.8-6.96C14,3.4,16.6,6,16.96,9.2z M12.25,10v2.25c0,0.41-0.34,0.75-0.75,0.75h-3 c-0.41,0-0.75-0.34-0.75-0.75V10c0-0.41,0.34-0.75,0.75-0.75V8.5C8.5,7.67,9.17,7,10,7s1.5,0.67,1.5,1.5v0.75 C11.91,9.25,12.25,9.59,12.25,10z M10.75,8.5c0-0.41-0.34-0.75-0.75-0.75c-0.41,0-0.75,0.34-0.75,0.75v0.75h1.5V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"online_prediction\": {\n    \"name\": \"online_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V18 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V17.5z M22,12c0-2.46-0.89-4.71-2.36-6.45c-0.29-0.34-0.8-0.38-1.12-0.06l0,0 c-0.27,0.27-0.3,0.71-0.06,1C19.73,7.97,20.5,9.9,20.5,12c0,2.1-0.77,4.03-2.04,5.52c-0.25,0.29-0.21,0.73,0.06,1l0,0 c0.32,0.32,0.83,0.28,1.12-0.06C21.11,16.71,22,14.46,22,12z M3.5,12c0-2.1,0.77-4.03,2.04-5.52c0.25-0.29,0.21-0.73-0.06-1l0,0 C5.17,5.17,4.65,5.2,4.36,5.54C2.89,7.29,2,9.54,2,12c0,2.46,0.89,4.71,2.36,6.46c0.29,0.34,0.8,0.38,1.12,0.06l0,0 c0.27-0.27,0.3-0.71,0.06-1C4.27,16.03,3.5,14.1,3.5,12z M17.5,12c0,1.28-0.44,2.47-1.18,3.41c-0.23,0.29-0.2,0.71,0.07,0.98l0,0 c0.32,0.32,0.85,0.29,1.13-0.07C18.44,15.13,19,13.63,19,12c0-1.63-0.56-3.13-1.49-4.31c-0.28-0.36-0.81-0.39-1.13-0.07l0,0 c-0.26,0.26-0.3,0.68-0.07,0.98C17.06,9.53,17.5,10.72,17.5,12z M7.62,16.38L7.62,16.38c0.26-0.26,0.3-0.68,0.07-0.98 C6.94,14.47,6.5,13.28,6.5,12c0-1.28,0.44-2.47,1.18-3.41c0.23-0.29,0.2-0.71-0.07-0.98l0,0C7.3,7.3,6.77,7.33,6.49,7.68 C5.56,8.87,5,10.37,5,12c0,1.63,0.56,3.13,1.49,4.32C6.77,16.67,7.3,16.7,7.62,16.38z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.5,9.5c0,1.5-1.75,2.5-1.75,3.5c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,8.12,8.62,7,10,7c0,0,0,0,0,0l0,0l0,0 C11.38,7,12.5,8.12,12.5,9.5z M5.39,14.61c0.21-0.18,0.23-0.5,0.05-0.71C4.51,12.82,4,11.43,4,10c0-1.43,0.51-2.82,1.44-3.9 C5.62,5.89,5.6,5.57,5.39,5.39C5.18,5.21,4.86,5.24,4.68,5.45C3.6,6.71,3,8.33,3,10c0,1.67,0.6,3.29,1.68,4.55 c0.1,0.12,0.24,0.17,0.38,0.17C5.18,14.73,5.29,14.69,5.39,14.61z M6.79,13.2c0.22-0.17,0.25-0.49,0.08-0.7C6.3,11.78,6,10.92,6,10 c0-0.92,0.3-1.78,0.87-2.5c0.17-0.22,0.14-0.53-0.08-0.7c-0.21-0.17-0.53-0.14-0.7,0.08C5.39,7.76,5,8.87,5,10 c0,1.15,0.38,2.22,1.09,3.12c0.1,0.12,0.24,0.19,0.39,0.19C6.59,13.31,6.7,13.27,6.79,13.2z M14.93,14.73 c0.14,0,0.28-0.06,0.38-0.17c1.09-1.27,1.68-2.88,1.68-4.55c0-1.67-0.6-3.29-1.68-4.55c-0.18-0.21-0.5-0.23-0.71-0.05 c-0.21,0.18-0.23,0.5-0.05,0.71c0.93,1.09,1.44,2.47,1.44,3.9c0,1.43-0.51,2.82-1.44,3.9c-0.18,0.21-0.16,0.53,0.05,0.71 C14.7,14.69,14.81,14.73,14.93,14.73z M13.51,13.31c0.15,0,0.29-0.06,0.39-0.19c0.71-0.89,1.09-1.97,1.09-3.12 c0-1.13-0.39-2.24-1.09-3.12c-0.17-0.21-0.49-0.25-0.7-0.08c-0.22,0.17-0.25,0.49-0.08,0.7c0.57,0.71,0.87,1.58,0.87,2.5 c0,0.92-0.3,1.78-0.87,2.5c-0.17,0.21-0.14,0.53,0.08,0.7C13.29,13.27,13.4,13.31,13.51,13.31z M10.75,14.25V14h-1.5v0.25 C9.25,14.66,9.59,15,10,15h0C10.41,15,10.75,14.66,10.75,14.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_view\": {\n    \"name\": \"table_view\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,10L19,10c0,0.55-0.45,1-1,1h-8 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h8C18.55,9,19,9.45,19,10z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13 h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_weight\": {\n    \"name\": \"line_weight\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0-6H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm.5 15h-17c-.28 0-.5.22-.5.5s.22.5.5.5h17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"g_translate\": {\n    \"name\": \"g_translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment\": {\n    \"name\": \"assignment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm1 14H8c-.55 0-1-.45-1-1s.45-1 1-1h5c.55 0 1 .45 1 1s-.45 1-1 1zm3-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"build\": {\n    \"name\": \"build\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.09 2.91C10.08.9 7.07.49 4.65 1.67L8.28 5.3c.39.39.39 1.02 0 1.41L6.69 8.3c-.39.4-1.02.4-1.41 0L1.65 4.67C.48 7.1.89 10.09 2.9 12.1c1.86 1.86 4.58 2.35 6.89 1.48l7.96 7.96c1.03 1.03 2.69 1.03 3.71 0 1.03-1.03 1.03-2.69 0-3.71L13.54 9.9c.92-2.34.44-5.1-1.45-6.99z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_shopping_cart\": {\n    \"name\": \"remove_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M.71 1.83c-.39.39-.39 1.02 0 1.41l3.68 3.68 2.21 4.66-1.35 2.45c-.19.33-.28.73-.24 1.15.1 1.06 1.06 1.82 2.12 1.82h7.33l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84l2.13 2.13c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 1.83c-.39-.39-1.02-.39-1.41 0zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pin_invoke\": {\n    \"name\": \"pin_invoke\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12v6c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10l0,2H4v12h16v-6H22z M22,7c0-1.66-1.34-3-3-3 c-1.66,0-3,1.34-3,3s1.34,3,3,3C20.66,10,22,8.66,22,7z M9.34,15.66c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12l1.27,1.27 C14.46,15.12,15,14.9,15,14.45V10.5c0-0.28-0.22-0.5-0.5-0.5h-3.95c-0.45,0-0.67,0.54-0.35,0.85l1.27,1.27l-2.12,2.12 C8.95,14.63,8.95,15.27,9.34,15.66z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10v4.5c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4H12c0,0,0.01,1.48,0,1.5H3.5v9h13V10 H18z M18,6.25C18,5.01,16.99,4,15.75,4C14.5,4,13.5,5.01,13.5,6.25s1.01,2.25,2.25,2.25S18,7.49,18,6.25z M9.35,10.09l-1.59,1.59 c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0l1.59-1.59l0.74,0.74C11.46,12.2,12,11.98,12,11.53V9 c0-0.28-0.22-0.5-0.5-0.5H8.97c-0.45,0-0.67,0.54-0.35,0.85L9.35,10.09z\\\"></path>\"\n      }\n    }\n  },\n  \"dashboard\": {\n    \"name\": \"dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 13h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zm0 8h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm10 0h6c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zM13 4v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"track_changes\": {\n    \"name\": \"track_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.32 5.68c-.36.36-.39.92-.07 1.32 1.45 1.82 2.21 4.31 1.53 6.92-.79 3.05-3.18 5.33-6.21 5.94C8.47 20.87 4 16.93 4 12c0-4.08 3.05-7.44 7-7.93v2.02c-3.13.53-5.43 3.46-4.93 6.83.39 2.61 2.56 4.71 5.18 5.03C14.89 18.4 18 15.56 18 12c0-1.25-.38-2.4-1.03-3.36-.34-.5-1.07-.53-1.5-.11l-.01.01c-.34.34-.37.87-.11 1.27.6.92.84 2.1.49 3.32-.39 1.37-1.54 2.46-2.94 2.77-2.6.57-4.9-1.39-4.9-3.9 0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2.71c0-.39-.32-.71-.71-.71-5.36-.2-9.98 4.06-10.27 9.4-.36 6.55 5.41 11.82 12.01 10.4 3.88-.83 6.88-3.8 7.75-7.67.71-3.16-.2-6.16-1.97-8.37-.37-.47-1.07-.5-1.49-.08z\\\"></path>\"\n      }\n    }\n  },\n  \"join_right\": {\n    \"name\": \"join_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.32,17.2c0.39,0.35,0.98,0.35,1.37,0C14.65,15.44,15,13.16,15,12c0-1.15-0.35-3.44-2.32-5.2 c-0.39-0.35-0.98-0.35-1.37,0C9.35,8.56,9,10.84,9,12C9,13.15,9.35,15.44,11.32,17.2z\\\"></path></g><g><path d=\\\"M16.5,12c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7s-3.14-7-7-7c-0.9,0-1.75,0.19-2.53,0.5 C16.27,7.84,16.5,11.03,16.5,12z\\\"></path></g><g><path d=\\\"M8,19c0.9,0,1.75-0.19,2.53-0.5c-0.61-0.51-1.1-1.07-1.49-1.63C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 c0.36,0,0.71,0.05,1.04,0.13c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7S4.14,19,8,19z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.66,13.94c0.18,0.18,0.5,0.18,0.68,0C11.77,12.55,12,10.86,12,10c0-0.85-0.23-2.55-1.66-3.94 c-0.18-0.18-0.5-0.18-0.68,0C8.23,7.45,8,9.15,8,10C8,10.85,8.23,12.55,9.66,13.94z\\\"></path><path d=\\\"M10.85,14.81c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5c0-3.04-2.46-5.5-5.5-5.5 c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10C13,10.89,12.77,13.08,10.85,14.81z\\\"></path><path d=\\\"M6.5,15.5c0.96,0,1.86-0.25,2.65-0.69c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14c-2.21,0-4-1.79-4-4 s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10 C1,13.04,3.46,15.5,6.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compare_arrows\": {\n    \"name\": \"compare_arrows\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.01 14H3c-.55 0-1 .45-1 1s.45 1 1 1h6.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35V14zm5.98-2.21V10H21c.55 0 1-.45 1-1s-.45-1-1-1h-6.01V6.21c0-.45-.54-.67-.85-.35l-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.31.85.09.85-.36z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight_round\": {\n    \"name\": \"nightlight_round\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,22c0.07,0,0.14,0,0.21,0c0.84-0.02,1.12-1.11,0.41-1.56c-2.78-1.77-4.63-4.89-4.63-8.43c0-3.55,1.85-6.66,4.63-8.44 c0.7-0.45,0.44-1.54-0.39-1.56c-0.04,0-0.09,0-0.13,0c-4.9-0.05-9.21,3.53-9.98,8.37C4.64,16.61,9.45,22,15.5,22L15.5,22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stars\": {\n    \"name\": \"stars\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.23 15.39L12 15.45l-3.22 1.94c-.38.23-.85-.11-.75-.54l.85-3.66-2.83-2.45c-.33-.29-.15-.84.29-.88l3.74-.32 1.46-3.45c.17-.41.75-.41.92 0l1.46 3.44 3.74.32c.44.04.62.59.28.88l-2.83 2.45.85 3.67c.1.43-.36.77-.74.54z\\\"></path>\"\n      }\n    }\n  },\n  \"help_center\": {\n    \"name\": \"help_center\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.01,18 c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6 c-0.76,1.11-1.48,1.46-1.87,2.17c-0.1,0.18-0.16,0.32-0.19,0.63c-0.05,0.45-0.45,0.78-0.9,0.78H12c-0.52,0-0.93-0.44-0.88-0.96 c0.03-0.34,0.11-0.69,0.3-1.03c0.49-0.87,1.42-1.39,1.96-2.16c0.57-0.81,0.25-2.33-1.37-2.33c-0.71,0-1.18,0.36-1.47,0.79 c-0.25,0.36-0.69,0.53-1.1,0.36l0,0C8.91,8.64,8.72,8,9.04,7.54C9.65,6.65,10.67,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52 C15.44,8.24,15.7,9.59,15.02,10.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"dashboard_customize\": {\n    \"name\": \"dashboard_customize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4,3h6c0.55,0,1,0.45,1,1v6c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1V4C3,3.45,3.45,3,4,3z M14,3h6c0.55,0,1,0.45,1,1v6 c0,0.55-0.45,1-1,1h-6c-0.55,0-1-0.45-1-1V4C13,3.45,13.45,3,14,3z M4,13h6c0.55,0,1,0.45,1,1v6c0,0.55-0.45,1-1,1H4 c-0.55,0-1-0.45-1-1v-6C3,13.45,3.45,13,4,13z M17,13L17,13c-0.55,0-1,0.45-1,1v2h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2v-2C18,13.45,17.55,13,17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"comment_bank\": {\n    \"name\": \"comment_bank\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g></g><g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v15.59c0,0.89,1.08,1.34,1.71,0.71L6,18h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M18.24,11.55 L16.5,10.5l-1.74,1.05c-0.33,0.2-0.76-0.04-0.76-0.43V4h5v7.12C19,11.51,18.58,11.75,18.24,11.55z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v13.29c0,0.45,0.54,0.67,0.85,0.35L5,15h11.5c0.83,0,1.5-0.67,1.5-1.5v-10 C18,2.67,17.33,2,16.5,2z M14.28,9.64L13,9l-1.28,0.64C11.39,9.8,11,9.56,11,9.19V4h4v5.19C15,9.56,14.61,9.8,14.28,9.64z\\\"></path>\"\n      }\n    }\n  },\n  \"thumbs_up_down\": {\n    \"name\": \"thumbs_up_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.06 5H5.82l.66-3.18c.08-.37-.04-.75-.3-1.02C5.74.36 5.03.36 4.6.8l-4 4c-.39.37-.6.88-.6 1.41V12c0 1.1.9 2 2 2h5.92c.8 0 1.52-.48 1.84-1.21l2.14-5C12.46 6.47 11.49 5 10.06 5zM22 10h-5.92c-.8 0-1.52.48-1.84 1.21l-2.14 5c-.56 1.32.4 2.79 1.84 2.79h4.24l-.66 3.18c-.08.37.04.75.3 1.02.44.44 1.15.44 1.58 0l4-4c.38-.38.59-.88.59-1.41V12c.01-1.1-.89-2-1.99-2z\\\"></path>\"\n      }\n    }\n  },\n  \"receipt\": {\n    \"name\": \"receipt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 2.21c-.13 0-.26.05-.35.15l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.79-.79c-.2-.2-.51-.2-.71 0l-.79.79c-.2.2-.51.2-.71 0l-.8-.8c-.2-.2-.51-.2-.71 0l-.79.8c-.2.2-.51.2-.71 0l-.79-.8c-.2-.2-.51-.2-.71 0l-.79.8c-.2.2-.51.2-.71 0l-.79-.8c-.09-.09-.22-.14-.35-.14V21.8c.13 0 .26-.05.35-.15l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.2.2.51.2.71 0l.79-.79c.2-.2.51-.2.71 0l.79.79c.1.1.23.15.35.15V2.21zM17 17H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"question_mark\": {\n    \"name\": \"question_mark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.92,7.54C7.12,7.2,6.78,6.21,7.26,5.49C8.23,4.05,9.85,3,11.99,3c2.35,0,3.96,1.07,4.78,2.41c0.7,1.15,1.11,3.3,0.03,4.9 c-1.2,1.77-2.35,2.31-2.97,3.45c-0.15,0.27-0.24,0.49-0.3,0.94c-0.09,0.73-0.69,1.3-1.43,1.3c-0.87,0-1.58-0.75-1.48-1.62 c0.06-0.51,0.18-1.04,0.46-1.54c0.77-1.39,2.25-2.21,3.11-3.44c0.91-1.29,0.4-3.7-2.18-3.7c-1.17,0-1.93,0.61-2.4,1.34 C9.26,7.61,8.53,7.79,7.92,7.54z M14,20c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2S14,18.9,14,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.06,13c-0.68,0-1.2-0.59-1.12-1.26c0.04-0.38,0.14-0.79,0.35-1.16c0.6-1.07,1.73-1.7,2.39-2.65 c0.7-0.99,0.31-2.85-1.67-2.85c-0.9,0-1.48,0.47-1.85,1.04c-0.27,0.43-0.83,0.57-1.3,0.37C6.23,6.23,5.99,5.44,6.38,4.88 C7.13,3.79,8.37,3,9.99,3c1.81,0,3.05,0.82,3.68,1.85c0.54,0.88,0.86,2.54,0.02,3.77c-0.92,1.36-1.81,1.78-2.28,2.65 c-0.11,0.21-0.19,0.38-0.23,0.72C11.1,12.57,10.63,13,10.06,13z M11.5,16c0,0.83-0.67,1.5-1.5,1.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5C10.83,14.5,11.5,15.17,11.5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_page\": {\n    \"name\": \"contact_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.17,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8.83c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83 C14.21,2.21,13.7,2,13.17,2z M12,10c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C10,10.9,10.9,10,12,10z M16,18H8v-0.57 c0-0.81,0.48-1.53,1.22-1.85C10.07,15.21,11.01,15,12,15c0.99,0,1.93,0.21,2.78,0.58C15.52,15.9,16,16.62,16,17.43V18z\\\"></path>\"\n      }\n    }\n  },\n  \"mediation\": {\n    \"name\": \"mediation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18,13h-5.06c-0.34,3.1-2.26,5.72-4.94,7.05c-0.03,1.81-1.66,3.23-3.55,2.9c-1.2-0.21-2.19-1.2-2.4-2.4 C1.71,18.65,3.16,17,5,17c0.95,0,1.78,0.45,2.33,1.14c1.9-1.03,3.26-2.91,3.58-5.14h-3.1c-0.48,1.34-1.86,2.24-3.42,1.94 c-1.18-0.23-2.13-1.2-2.35-2.38C1.7,10.66,3.16,9,5,9c1.3,0,2.4,0.84,2.82,2h3.1C10.6,8.77,9.23,6.9,7.33,5.86 c-0.64,0.8-1.67,1.28-2.81,1.1C3.29,6.77,2.26,5.77,2.05,4.54C1.72,2.65,3.17,1,5,1c1.64,0,2.96,1.31,2.99,2.95 c2.68,1.33,4.6,3.95,4.94,7.05H18V9.21c0-0.45,0.54-0.67,0.85-0.35l2.79,2.79c0.2,0.2,0.2,0.51,0,0.71l-2.79,2.79 C18.54,15.46,18,15.24,18,14.79V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe\": {\n    \"name\": \"swipe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.15,2.85l-1.02,1.02C18.69,2.17,15.6,1,12,1S5.31,2.17,3.87,3.87L2.85,2.85C2.54,2.54,2,2.76,2,3.21V6.5 C2,6.78,2.22,7,2.5,7h3.29c0.45,0,0.67-0.54,0.35-0.85L4.93,4.93c1-1.29,3.7-2.43,7.07-2.43s6.07,1.14,7.07,2.43l-1.22,1.22 C17.54,6.46,17.76,7,18.21,7h3.29C21.78,7,22,6.78,22,6.5V3.21C22,2.76,21.46,2.54,21.15,2.85z\\\"></path><path d=\\\"M14.5,12.71c-0.28-0.14-0.58-0.21-0.89-0.21H13v-6C13,5.67,12.33,5,11.5,5S10,5.67,10,6.5v10.74l-3.44-0.72 c-0.37-0.08-0.76,0.04-1.03,0.31l0,0c-0.43,0.44-0.43,1.14,0.01,1.58l4.01,4.01C9.92,22.79,10.43,23,10.96,23h6.41 c1,0,1.84-0.73,1.98-1.72l0.63-4.46c0.12-0.85-0.32-1.69-1.09-2.07L14.5,12.71z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.51,3.49C14.87,1.96,12.56,1,10,1S5.13,1.96,3.49,3.49L2,2v4h4L4.69,4.69C6.02,3.47,7.91,2.7,10,2.7 s3.98,0.77,5.31,1.99L14,6h4V2L16.51,3.49z\\\"></path><path d=\\\"M11.93,11H10.5V6.25C10.5,5.56,9.94,5,9.25,5h0C8.56,5,8,5.56,8,6.25V15l-2.49-0.83c-0.31-0.1-0.66-0.02-0.89,0.21l0,0 c-0.34,0.34-0.34,0.89,0,1.24l2.94,2.94C7.84,18.84,8.22,19,8.62,19h5.27c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65 c0.11-0.65-0.22-1.29-0.81-1.59l-2.8-1.4C12.23,11.04,12.08,11,11.93,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"generating_tokens\": {\n    \"name\": \"generating_tokens\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C17,7.58,13.42,4,9,4z M9,15.5c-0.55,0-1-0.45-1-1v-4H6.75 C6.34,10.5,6,10.16,6,9.75S6.34,9,6.75,9h4.5C11.66,9,12,9.34,12,9.75s-0.34,0.75-0.75,0.75H10v4C10,15.05,9.55,15.5,9,15.5z M20.25,3.75L22,4.54c0.39,0.18,0.39,0.73,0,0.91l-1.75,0.79L19.46,8c-0.18,0.39-0.73,0.39-0.91,0l-0.79-1.75L16,5.46 c-0.39-0.18-0.39-0.73,0-0.91l1.75-0.79L18.54,2c0.18-0.39,0.73-0.39,0.91,0L20.25,3.75z M20.25,17.75L22,18.54 c0.39,0.18,0.39,0.73,0,0.91l-1.75,0.79L19.46,22c-0.18,0.39-0.73,0.39-0.91,0l-0.79-1.75L16,19.46c-0.39-0.18-0.39-0.73,0-0.91 l1.75-0.79L18.54,16c0.18-0.39,0.73-0.39,0.91,0L20.25,17.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.06,4.94L14,4.45c-0.39-0.18-0.39-0.73,0-0.91l1.06-0.49L15.55,2c0.18-0.39,0.73-0.39,0.91,0l0.49,1.06L18,3.55 c0.39,0.18,0.39,0.73,0,0.91l-1.06,0.49L16.45,6c-0.18,0.39-0.73,0.39-0.91,0L15.06,4.94z M16.45,18l0.49-1.06L18,16.45 c0.39-0.18,0.39-0.73,0-0.91l-1.06-0.49L16.45,14c-0.18-0.39-0.73-0.39-0.91,0l-0.49,1.06L14,15.55c-0.39,0.18-0.39,0.73,0,0.91 l1.06,0.49L15.55,18C15.72,18.39,16.28,18.39,16.45,18z M7.5,3.5C3.91,3.5,1,6.41,1,10s2.91,6.5,6.5,6.5S14,13.59,14,10 S11.09,3.5,7.5,3.5z M9.38,8.75H8.25v3.5C8.25,12.66,7.91,13,7.5,13s-0.75-0.34-0.75-0.75v-3.5H5.62C5.28,8.75,5,8.47,5,8.12 C5,7.78,5.28,7.5,5.62,7.5h3.75C9.72,7.5,10,7.78,10,8.12C10,8.47,9.72,8.75,9.38,8.75z\\\"></path>\"\n      }\n    }\n  },\n  \"request_page\": {\n    \"name\": \"request_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.41,7.41l-4.83-4.83C14.21,2.21,13.7,2,13.17,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8.83 C20,8.3,19.79,7.79,19.41,7.41z M14,12c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1c0,0.55-0.45,1-1,1s-1-0.45-1-1h-1 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1c0-0.55,0.45-1,1-1s1,0.45,1,1h1 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1h-3v1H14z\\\"></path>\"\n      }\n    }\n  },\n  \"cached\": {\n    \"name\": \"cached\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m18.65 8.35-2.79 2.79c-.32.32-.1.86.35.86H18c0 3.31-2.69 6-6 6-.79 0-1.56-.15-2.25-.44-.36-.15-.77-.04-1.04.23-.51.51-.33 1.37.34 1.64.91.37 1.91.57 2.95.57 4.42 0 8-3.58 8-8h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01zM6 12c0-3.31 2.69-6 6-6 .79 0 1.56.15 2.25.44.36.15.77.04 1.04-.23.51-.51.33-1.37-.34-1.64C14.04 4.2 13.04 4 12 4c-4.42 0-8 3.58-8 8H2.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85H6z\\\"></path>\"\n      }\n    }\n  },\n  \"width_full\": {\n    \"name\": \"width_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h1v12H4V6z M20,18h-1V6h1V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,5.5h1v9h-1V5.5z M16.5,14.5h-1v-9h1V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm\": {\n    \"name\": \"alarm\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.87 15.25l-3.37-2V8.72c0-.4-.32-.72-.72-.72h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l3.65 2.19c.34.2.78.1.98-.24.21-.35.1-.8-.25-1zm5.31-10.24L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"on_device_training\": {\n    \"name\": \"on_device_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11.5,17h1c0.28,0,0.5-0.22,0.5-0.5l0,0c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5l0,0 C11,16.78,11.22,17,11.5,17z\\\"></path><path d=\\\"M11.52,11.06c-0.71,0.16-1.29,0.74-1.46,1.44c-0.23,0.94,0.21,1.8,0.94,2.22v0.53c0,0.14,0.11,0.25,0.25,0.25h1.5 c0.14,0,0.25-0.11,0.25-0.25v-0.53c0.6-0.35,1-0.98,1-1.72C14,11.74,12.83,10.75,11.52,11.06z\\\"></path><path d=\\\"M18,1.01L6,1C4.9,1,4,1.9,4,3v18c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1.01,18,1.01z M18,18H6V6h12V18z\\\"></path><path d=\\\"M15.33,15.27c0.36,0.36,0.99,0.26,1.21-0.2C16.83,14.44,17,13.74,17,13s-0.17-1.44-0.46-2.07 c-0.22-0.47-0.84-0.57-1.21-0.2l0,0c-0.22,0.22-0.28,0.56-0.15,0.84c0.2,0.44,0.31,0.92,0.31,1.43s-0.11,0.99-0.31,1.43 C15.06,14.72,15.11,15.05,15.33,15.27L15.33,15.27z\\\"></path><path d=\\\"M8.67,15.27c0.22-0.22,0.28-0.56,0.15-0.84C8.61,13.99,8.5,13.51,8.5,13c0-1.93,1.57-3.5,3.5-3.5v0.69 c0,0.22,0.25,0.33,0.42,0.19l1.62-1.44c0.11-0.1,0.11-0.27,0-0.37l-1.62-1.44C12.25,6.98,12,7.09,12,7.31V8c-2.76,0-5,2.24-5,5 c0,0.74,0.17,1.44,0.46,2.07C7.68,15.54,8.3,15.64,8.67,15.27L8.67,15.27z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5v-15C16,1.67,15.33,1,14.5,1z M14.5,15h-9V5h9V15z\\\"></path><path d=\\\"M9.62,14h0.75c0.21,0,0.38-0.17,0.38-0.38l0,0c0-0.21-0.17-0.38-0.38-0.38H9.62c-0.21,0-0.38,0.17-0.38,0.38l0,0 C9.25,13.83,9.42,14,9.62,14z\\\"></path><path d=\\\"M9.82,9.51c-0.66,0.08-1.2,0.6-1.3,1.25c-0.1,0.65,0.22,1.23,0.73,1.53v0.21c0,0.14,0.11,0.25,0.25,0.25h1 c0.14,0,0.25-0.11,0.25-0.25v-0.21c0.45-0.26,0.75-0.74,0.75-1.29C11.5,10.11,10.73,9.4,9.82,9.51z\\\"></path><path d=\\\"M12.54,12.56c0.23,0.23,0.63,0.18,0.79-0.11c0.27-0.51,0.43-1.09,0.43-1.72c0-0.62-0.16-1.2-0.43-1.72 c-0.15-0.29-0.55-0.35-0.79-0.11l0,0c-0.15,0.15-0.18,0.39-0.08,0.59c0.19,0.37,0.3,0.8,0.3,1.24c0,0.45-0.11,0.87-0.3,1.24 C12.35,12.17,12.38,12.41,12.54,12.56L12.54,12.56z\\\"></path><path d=\\\"M7.46,12.58c0.15-0.15,0.18-0.39,0.08-0.59c-0.19-0.37-0.3-0.8-0.3-1.24C7.25,9.23,8.48,8,10,8v0.4 c0,0.22,0.27,0.33,0.43,0.18l0.9-0.9c0.1-0.1,0.1-0.26,0-0.35l-0.9-0.9C10.27,6.27,10,6.38,10,6.6V7c-2.07,0-3.75,1.68-3.75,3.75 c0,0.62,0.16,1.2,0.43,1.72C6.83,12.76,7.23,12.81,7.46,12.58L7.46,12.58z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"balance\": {\n    \"name\": \"balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,19V7.83c0.85-0.3,1.53-0.98,1.83-1.83H18l-2.78,6.49c-0.17,0.39-0.23,0.84-0.11,1.25c0.39,1.3,1.76,2.26,3.39,2.26 s3.01-0.96,3.39-2.26c0.12-0.41,0.06-0.86-0.11-1.25L19,6h1c0.55,0,1-0.45,1-1s-0.45-1-1-1h-5.17C14.42,2.83,13.31,2,12,2 S9.58,2.83,9.17,4L4,4C3.45,4,3,4.45,3,5c0,0.55,0.45,1,1,1h1l-2.78,6.49c-0.17,0.39-0.23,0.84-0.11,1.25 C2.49,15.04,3.87,16,5.5,16s3.01-0.96,3.39-2.26c0.12-0.41,0.06-0.86-0.11-1.25L6,6h3.17c0.3,0.85,0.98,1.53,1.83,1.83V19 M11,19H3 c-0.55,0-1,0.45-1,1s0.45,1,1,1h18c0.55,0,1-0.45,1-1s-0.45-1-1-1h-8 M20.37,13h-3.74l1.87-4.36L20.37,13z M7.37,13H3.63L5.5,8.64 L7.37,13z M12,6c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,5.55,12.55,6,12,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.12,3.5C11.81,2.63,10.98,2,10,2S8.19,2.63,7.88,3.5H3.75C3.34,3.5,3,3.84,3,4.25S3.34,5,3.75,5H4.5l-2.33,5.36 c-0.13,0.3-0.18,0.65-0.08,0.96C2.4,12.29,3.47,13,4.75,13s2.35-0.71,2.66-1.68c0.1-0.31,0.05-0.66-0.08-0.96L5,5h2.88 C8.1,5.64,8.61,6.15,9.25,6.37v9.13h-6.5C2.34,15.5,2,15.84,2,16.25C2,16.66,2.34,17,2.75,17h14.5c0.41,0,0.75-0.34,0.75-0.75 c0-0.41-0.34-0.75-0.75-0.75h-6.5V6.37C11.39,6.15,11.9,5.64,12.12,5H15l-2.33,5.36c-0.13,0.3-0.18,0.65-0.08,0.96 C12.9,12.29,13.97,13,15.25,13c1.28,0,2.35-0.71,2.66-1.68c0.1-0.31,0.05-0.66-0.08-0.96L15.5,5h0.75C16.66,5,17,4.66,17,4.25 c0-0.41-0.34-0.75-0.75-0.75H12.12z M16.91,10.75h-3.32l1.66-3.82L16.91,10.75z M6.41,10.75H3.09l1.66-3.82L6.41,10.75z M10,5 C9.59,5,9.25,4.66,9.25,4.25C9.25,3.84,9.59,3.5,10,3.5s0.75,0.34,0.75,0.75C10.75,4.66,10.41,5,10,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upgrade\": {\n    \"name\": \"upgrade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,19L16,19c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h6C15.55,18,16,18.45,16,19z M11,7.99V15 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7.99h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.78c-0.2-0.19-0.51-0.19-0.71,0L8.86,7.14 C8.54,7.45,8.76,7.99,9.21,7.99H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,14.5L13,14.5c0,0.28-0.22,0.5-0.5,0.5h-5C7.22,15,7,14.78,7,14.5v0C7,14.22,7.22,14,7.5,14h5 C12.78,14,13,14.22,13,14.5z M9.5,12.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V8H13l-3-3L7,8h2.5V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_array\": {\n    \"name\": \"view_array\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,5h-1c-0.55,0-1,0.45-1,1v12c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V6C21,5.45,20.55,5,20,5z M16,5H8C7.45,5,7,5.45,7,6 v12c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V6C17,5.45,16.55,5,16,5z M5,5H4C3.45,5,3,5.45,3,6v12c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1V6C6,5.45,5.55,5,5,5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,5h1C4.78,5,5,5.22,5,5.5v9C5,14.78,4.78,15,4.5,15h-1C3.22,15,3,14.78,3,14.5v-9C3,5.22,3.22,5,3.5,5z M15,5.5v9 c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-9C17,5.22,16.78,5,16.5,5h-1C15.22,5,15,5.22,15,5.5z M6.5,5h7 C13.78,5,14,5.22,14,5.5v9c0,0.28-0.22,0.5-0.5,0.5h-7C6.22,15,6,14.78,6,14.5v-9C6,5.22,6.22,5,6.5,5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_voice\": {\n    \"name\": \"settings_voice\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M8,24L8,24c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C7,23.55,7.45,24,8,24z M12,24L12,24 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C11,23.55,11.45,24,12,24z M16,24L16,24c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C15,23.55,15.45,24,16,24z M9,10V4c0-1.66,1.34-3,3-3s3,1.34,3,3v6c0,1.66-1.34,3-3,3 S9,11.66,9,10z M17.91,10c0.61,0,1.09,0.54,1,1.14c-0.49,3-2.89,5.34-5.91,5.78V19c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-2.08 c-3.02-0.44-5.42-2.78-5.91-5.78c-0.1-0.6,0.39-1.14,1-1.14h0c0.49,0,0.9,0.36,0.98,0.85C7.48,13.21,9.53,15,12,15 s4.52-1.79,4.93-4.15C17.01,10.36,17.42,10,17.91,10L17.91,10z\\\"></path>\"\n      }\n    }\n  },\n  \"sticky_note_2\": {\n    \"name\": \"sticky_note_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H4.99C3.89,3,3,3.9,3,5l0.01,14c0,1.1,0.89,2,1.99,2h10l6-6V5C21,3.9,20.1,3,19,3z M8,8h8c0.55,0,1,0.45,1,1v0 c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1v0C7,8.45,7.45,8,8,8z M11,14H8c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h3 c0.55,0,1,0.45,1,1v0C12,13.55,11.55,14,11,14z M14,19.5V15c0-0.55,0.45-1,1-1h4.5L14,19.5z\\\"></path>\"\n      }\n    }\n  },\n  \"analytics\": {\n    \"name\": \"analytics\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8,17L8,17c-0.55,0-1-0.45-1-1v-3 c0-0.55,0.45-1,1-1s1,0.45,1,1v3C9,16.55,8.55,17,8,17z M12,17L12,17c-0.55,0-1-0.45-1-1v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1 C13,16.55,12.55,17,12,17z M12,12c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.55,12,12,12z M16,17L16,17c-0.55,0-1-0.45-1-1V8 c0-0.55,0.45-1,1-1s1,0.45,1,1v8C17,16.55,16.55,17,16,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"remove_done\": {\n    \"name\": \"remove_done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4.14,2.69L4.14,2.69c-0.39,0.39-0.39,1.02,0,1.41l9.67,9.67l-1.41,1.41l-3.54-3.53c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41l4.24,4.24c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12l5.89,5.89c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L5.55,2.69C5.16,2.3,4.53,2.3,4.14,2.69z M18.05,12.36l4.24-4.24c0.39-0.39,0.39-1.03-0.01-1.42l0,0 c-0.39-0.38-1.02-0.38-1.41,0.01l-4.24,4.24L18.05,12.36z M16.64,6.7L16.64,6.7c-0.39-0.39-1.02-0.39-1.41,0l-1.42,1.42l1.41,1.41 l1.42-1.42C17.03,7.72,17.03,7.09,16.64,6.7z M1.79,13.06l4.95,4.95l1.41-1.41L3.2,11.65c-0.39-0.39-1.02-0.39-1.41,0l0,0 C1.4,12.04,1.4,12.67,1.79,13.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pan_tool\": {\n    \"name\": \"pan_tool\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.5 4c-.83 0-1.5.67-1.5 1.5v5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-8c0-.83-.67-1.5-1.5-1.5S16 1.67 16 2.5v8c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-9c0-.83-.67-1.5-1.5-1.5S12 .67 12 1.5v8.99c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.5c0-.83-.67-1.5-1.5-1.5S8 3.67 8 4.5v11.41l-4.12-2.35c-.58-.33-1.3-.24-1.78.22-.6.58-.62 1.54-.03 2.13l6.78 6.89c.75.77 1.77 1.2 2.85 1.2H19c2.21 0 4-1.79 4-4V5.5c0-.83-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"pageview\": {\n    \"name\": \"pageview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.92 13.5l-2.2-2.2c-.9.58-2.03.84-3.22.62-1.88-.35-3.38-1.93-3.62-3.83-.38-3.01 2.18-5.52 5.21-5.04 1.88.3 3.39 1.84 3.7 3.71.19 1.16-.08 2.23-.64 3.12l2.2 2.19c.39.39.39 1.03 0 1.42-.4.4-1.04.4-1.43.01z\\\"></path>\"\n      }\n    }\n  },\n  \"explore_off\": {\n    \"name\": \"explore_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 6l-2.91 6.26 5.25 5.25C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.81 5.64l.85.85c-1.37 2.07-2 4.68-1.48 7.45.75 3.95 3.92 7.13 7.88 7.88 2.77.52 5.38-.1 7.45-1.48l.85.85c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.22 4.22c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.03 0 1.42zm6.1 6.1l3.35 3.35L6 18l2.91-6.26z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_camera_mic\": {\n    \"name\": \"perm_camera_mic\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.45-.42-4.41-2.32-4.89-4.75-.12-.61.38-1.16.99-1.16.49 0 .88.35.98.83C8.47 15.64 10.07 17 12 17s3.53-1.36 3.91-3.17c.1-.48.5-.83.98-.83.61 0 1.11.55.99 1.16-.48 2.43-2.44 4.34-4.89 4.75V21h7c1.1 0 2-.9 2-2V7C22 5.9 21.1 5 20 5zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"reorder\": {\n    \"name\": \"reorder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"build_circle\": {\n    \"name\": \"build_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M16.54,15.85l-0.69,0.69c-0.39,0.39-1.02,0.39-1.41,0l-3.05-3.05c-1.22,0.43-2.64,0.17-3.62-0.81 c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62 l3.05,3.05C16.93,14.82,16.93,15.46,16.54,15.85z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M11.67,13.15 l-1.91-1.91c-0.84,0.26-1.79,0.08-2.45-0.59C6.54,9.88,6.4,8.73,6.88,7.81l1.63,1.63l1.03-1.03L7.91,6.78 c0.92-0.48,2.07-0.34,2.84,0.43c0.74,0.74,0.9,1.84,0.48,2.74l1.82,1.82c0.2,0.2,0.2,0.51,0,0.71l-0.67,0.67 C12.18,13.34,11.86,13.34,11.67,13.15z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_rotate_vertical\": {\n    \"name\": \"text_rotate_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 5c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.66-1.6h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C15.87 5.27 15.46 5 15 5zm-1.87 7L15 6.98 16.87 12h-3.74zm-6.78 7.64l1.79-1.79c.32-.31.1-.85-.35-.85H7V5c0-.55-.45-1-1-1s-1 .44-1 1v12h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.19.2.51.2.7 0z\\\"></path>\"\n      }\n    }\n  },\n  \"api\": {\n    \"name\": \"api\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,13L13,13c-0.56,0.56-1.45,0.56-2,0.01L11,13c-0.55-0.55-0.55-1.44,0-1.99L11,11c0.55-0.55,1.44-0.55,1.99,0L13,11 C13.55,11.55,13.55,12.45,13,13z M12,6l2.12,2.12l2.5-2.5l-3.2-3.2c-0.78-0.78-2.05-0.78-2.83,0l-3.2,3.2l2.5,2.5L12,6z M6,12 l2.12-2.12l-2.5-2.5l-3.2,3.2c-0.78,0.78-0.78,2.05,0,2.83l3.2,3.2l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5l3.2-3.2 c0.78-0.78,0.78-2.05,0-2.83l-3.2-3.2l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5l3.2,3.2c0.78,0.78,2.05,0.78,2.83,0l3.2-3.2 l-2.5-2.5L12,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"face_unlock\": {\n    \"name\": \"face_unlock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_to_back\": {\n    \"name\": \"flip_to_back\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM4 7c-.55 0-1 .45-1 1v11c0 1.1.9 2 2 2h11c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1V8c0-.55-.45-1-1-1zm11-2h2V3h-2v2zm0 12h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_overscan\": {\n    \"name\": \"settings_overscan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.01,7L10,9h4L12.01,7z M17,10v4l2-1.99L17,10z M7,10l-2,2.01L7,14V10z M14,15h-4l2.01,2L14,15z M20,4H4C2.9,4,2,4.9,2,6 v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18.01H4V5.99h16V18.01z\\\"></path></g>\"\n      }\n    }\n  },\n  \"segment\": {\n    \"name\": \"segment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,18h10c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H10c-0.55,0-1,0.45-1,1v0C9,17.55,9.45,18,10,18z M3,7L3,7 c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4C3.45,6,3,6.45,3,7z M10,13h10c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H10c-0.55,0-1,0.45-1,1v0C9,12.55,9.45,13,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumb_up\": {\n    \"name\": \"thumb_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.12 2.06L7.58 7.6c-.37.37-.58.88-.58 1.41V19c0 1.1.9 2 2 2h9c.8 0 1.52-.48 1.84-1.21l3.26-7.61C23.94 10.2 22.49 8 20.34 8h-5.65l.95-4.58c.1-.5-.05-1.01-.41-1.37-.59-.58-1.53-.58-2.11.01zM3 21c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2s-2 .9-2 2v8c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_ethernet\": {\n    \"name\": \"settings_ethernet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.71,6.71L7.71,6.71c-0.39-0.39-1.02-0.39-1.41,0l-4.59,4.59c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.83,12l3.88-3.88C8.09,7.73,8.09,7.09,7.71,6.71z M16.29,6.71 L16.29,6.71c-0.39,0.39-0.39,1.02,0,1.41L20.17,12l-3.88,3.88c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0 l4.59-4.59c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59C17.32,6.32,16.68,6.32,16.29,6.71z M8,13L8,13c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v0C7,12.55,7.45,13,8,13z M12,13L12,13c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v0C11,12.55,11.45,13,12,13z M16,11L16,11c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v0 C17,11.45,16.55,11,16,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pending_actions\": {\n    \"name\": \"pending_actions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v1c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5 c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.29,19l-1.65-1.65c-0.09-0.09-0.15-0.22-0.15-0.35l0-2.49c0-0.28,0.22-0.5,0.5-0.5h0 c0.28,0,0.5,0.22,0.5,0.5l0,2.29l1.5,1.5c0.2,0.2,0.2,0.51,0,0.71v0C18.8,19.2,18.49,19.2,18.29,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_compact_alt\": {\n    \"name\": \"view_compact_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M11,16.5H8 c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3C11.5,16.28,11.28,16.5,11,16.5z M11,11.5H8 c-0.28,0-0.5-0.22-0.5-0.5V8c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3C11.5,11.28,11.28,11.5,11,11.5z M16,16.5h-3 c-0.28,0-0.5-0.22-0.5-0.5v-3c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3C16.5,16.28,16.28,16.5,16,16.5z M16,11.5h-3 c-0.28,0-0.5-0.22-0.5-0.5V8c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3C16.5,11.28,16.28,11.5,16,11.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M9.25,13.5h-2.5c-0.14,0-0.25-0.11-0.25-0.25v-2.5c0-0.14,0.11-0.25,0.25-0.25h2.5c0.14,0,0.25,0.11,0.25,0.25v2.5 C9.5,13.39,9.39,13.5,9.25,13.5z M9.25,9.5h-2.5C6.61,9.5,6.5,9.39,6.5,9.25v-2.5c0-0.14,0.11-0.25,0.25-0.25h2.5 c0.14,0,0.25,0.11,0.25,0.25v2.5C9.5,9.39,9.39,9.5,9.25,9.5z M13.25,13.5h-2.5c-0.14,0-0.25-0.11-0.25-0.25v-2.5 c0-0.14,0.11-0.25,0.25-0.25h2.5c0.14,0,0.25,0.11,0.25,0.25v2.5C13.5,13.39,13.39,13.5,13.25,13.5z M13.25,9.5h-2.5 c-0.14,0-0.25-0.11-0.25-0.25v-2.5c0-0.14,0.11-0.25,0.25-0.25h2.5c0.14,0,0.25,0.11,0.25,0.25v2.5C13.5,9.39,13.39,9.5,13.25,9.5 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feedback\": {\n    \"name\": \"feedback\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4.01c-1.1 0-2 .9-2 2v18L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-5c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1s1 .45 1 1v2z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vertical_circle\": {\n    \"name\": \"swap_vertical_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9l3.15-3.15c.2-.2.51-.2.71 0L13.5 9H11v4H9V9H6.5zm7.85 9.15c-.2.2-.51.2-.71 0L10.5 15H13v-4h2v4h2.5l-3.15 3.15z\\\"></path>\"\n      }\n    }\n  },\n  \"record_voice_over\": {\n    \"name\": \"record_voice_over\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M9 15c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4zm6.47-7.23c.32.79.32 1.67 0 2.46-.19.47-.11 1 .25 1.36l.03.03c.58.58 1.57.46 1.95-.27.76-1.45.76-3.15-.02-4.66-.38-.74-1.38-.88-1.97-.29l-.01.01c-.34.35-.42.89-.23 1.36zm3.71-4.88c-.4.4-.46 1.02-.13 1.48 1.97 2.74 1.96 6.41-.03 9.25-.32.45-.25 1.07.14 1.46l.03.03c.49.49 1.32.45 1.74-.1 2.75-3.54 2.76-8.37 0-12.02-.42-.55-1.26-.59-1.75-.1z\\\"></path>\"\n      }\n    }\n  },\n  \"euro_symbol\": {\n    \"name\": \"euro_symbol\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H14c.55 0 1-.45 1-1s-.45-1-1-1H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H14c.55 0 1-.45 1-1s-.45-1-1-1H9.24C10.32 6.92 12.5 5.5 15 5.5c1.25 0 2.42.36 3.42.97.5.31 1.15.26 1.57-.16.58-.58.45-1.53-.25-1.96C18.36 3.5 16.73 3 15 3c-3.92 0-7.24 2.51-8.48 6H4c-.55 0-1 .45-1 1s.45 1 1 1h2.06c-.04.33-.06.66-.06 1s.02.67.06 1H4c-.55 0-1 .45-1 1s.45 1 1 1h2.52c1.24 3.49 4.56 6 8.48 6 1.74 0 3.36-.49 4.74-1.35.69-.43.82-1.39.24-1.97-.42-.42-1.07-.47-1.57-.15-.99.62-2.15.97-3.41.97z\\\"></path>\"\n      }\n    }\n  },\n  \"quickreply\": {\n    \"name\": \"quickreply\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M22,4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-7c0-0.55,0.45-1,1-1h6V4z\\\"></path></g><g><path d=\\\"M21.69,16H20.3l1.4-3.3c0.14-0.33-0.1-0.7-0.46-0.7H17.5c-0.28,0-0.5,0.22-0.5,0.5v5c0,0.28,0.22,0.5,0.5,0.5H19v3.94 c0,0.26,0.36,0.35,0.47,0.11l2.66-5.33C22.3,16.39,22.06,16,21.69,16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M17,4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h7V9h4V4z\\\"></path></g><g><polygon points=\\\"18,13 16.4,13 17.64,10 14,10 14,14.36 15.45,14.36 15.45,18\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_circle_right\": {\n    \"name\": \"arrow_circle_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,12c0-5.52-4.48-10-10-10C6.48,2,2,6.48,2,12s4.48,10,10,10C17.52,22,22,17.52,22,12z M12,14.79V13H9 c-0.55,0-1-0.45-1-1s0.45-1,1-1h3V9.21c0-0.45,0.54-0.67,0.85-0.35l2.79,2.79c0.2,0.2,0.2,0.51,0,0.71l-2.79,2.79 C12.54,15.46,12,15.24,12,14.79z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S18,14.42,18,10z M10,11.79v-1.04H7.75C7.34,10.75,7,10.41,7,10 s0.34-0.75,0.75-0.75H10V8.21c0-0.45,0.54-0.67,0.85-0.35l1.79,1.79c0.2,0.2,0.2,0.51,0,0.71l-1.79,1.79 C10.54,12.46,10,12.24,10,11.79z\\\"></path></g>\"\n      }\n    }\n  },\n  \"open_in_new_off\": {\n    \"name\": \"open_in_new_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.79,5.8l-1.94-1.94C14.54,3.54,14.76,3,15.21,3h5.29C20.78,3,21,3.22,21,3.5v5.29c0,0.45-0.54,0.67-0.85,0.35L18.21,7.2 l-4.09,4.09l-1.41-1.41L16.79,5.8z M19,13v3.17l2,2V13c0-0.55-0.45-1-1-1H20C19.45,12,19,12.45,19,13z M19.07,21.9l-0.9-0.9H5 c-1.11,0-2-0.9-2-2V5.83l-0.9-0.9c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97 c0.39,0.39,0.39,1.02,0,1.41l0,0C20.09,22.29,19.46,22.29,19.07,21.9z M16.17,19l-4.88-4.88L10.41,15c-0.39,0.39-1.02,0.39-1.41,0 l0,0c-0.39-0.39-0.39-1.02,0-1.41l0.88-0.88L5,7.83V19H16.17z M7.83,5H11c0.55,0,1-0.45,1-1V4c0-0.55-0.45-1-1-1H5.83L7.83,5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,14.88l-1.5-1.5v-2.63c0-0.41,0.34-0.75,0.75-0.75h0c0.41,0,0.75,0.34,0.75,0.75V14.88z M10,3.75L10,3.75 C10,3.34,9.66,3,9.25,3H5.12l1.5,1.5h2.63C9.66,4.5,10,4.16,10,3.75z M15.03,6.03l1.12,1.12C16.46,7.46,17,7.24,17,6.79V3.5 C17,3.22,16.78,3,16.5,3h-3.29c-0.45,0-0.67,0.54-0.35,0.85l1.12,1.12l-3.44,3.44l1.06,1.06L15.03,6.03z M15.48,17.6l-0.6-0.6H4.5 C3.67,17,3,16.33,3,15.5V5.12l-0.6-0.6c-0.29-0.29-0.29-0.77,0-1.06l0,0c0.29-0.29,0.77-0.29,1.06,0l13.08,13.08 c0.29,0.29,0.29,0.77,0,1.06l0,0C16.25,17.89,15.77,17.89,15.48,17.6z M13.38,15.5l-3.91-3.91l-0.88,0.88 c-0.29,0.29-0.77,0.29-1.06,0l0,0c-0.29-0.29-0.29-0.77,0-1.06l0.88-0.88L4.5,6.62v8.88H13.38z\\\"></path>\"\n      }\n    }\n  },\n  \"credit_card_off\": {\n    \"name\": \"credit_card_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81c-0.39-0.39-1.02-0.39-1.41,0l0,0C1,3.2,1,3.83,1.39,4.22l0.84,0.84C2.09,5.34,2.01,5.66,2.01,6L2,18 c0,1.11,0.89,2,2,2h13.17l2.61,2.61c0.39,0.39,1.02,0.39,1.41,0v0C21.58,22.22,21.58,21.58,21.19,21.19z M4,12V8h1.17l4,4H4z M6.83,4H20c1.11,0,2,0.89,2,2v12c0,0.34-0.08,0.66-0.23,0.94L14.83,12H20V8h-9.17L6.83,4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.15,0.73-0.38,1l-5.5-5.5h4.38V7H9.12L6.12,4z M16.19,18.31L13.88,16H3.5 C2.67,16,2,15.33,2,14.5v-9c0-0.38,0.15-0.73,0.38-1L1.69,3.81c-0.29-0.29-0.29-0.77,0-1.06l0,0c0.29-0.29,0.77-0.29,1.06,0 l14.5,14.5c0.29,0.29,0.29,0.77,0,1.06h0C16.95,18.6,16.48,18.6,16.19,18.31z M7.88,10l-3-3H3.5v3H7.88z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_device_information\": {\n    \"name\": \"perm_device_information\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v2h2V7zm-1 4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm5-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"get_app\": {\n    \"name\": \"get_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.59 9H15V4c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v5H7.41c-.89 0-1.34 1.08-.71 1.71l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.63-.63.19-1.71-.7-1.71zM5 19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"subject\": {\n    \"name\": \"subject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 17H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm6-8H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_alt\": {\n    \"name\": \"sync_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.65,7.65l-2.79-2.79C18.54,4.54,18,4.76,18,5.21V7H4C3.45,7,3,7.45,3,8s0.45,1,1,1h14v1.79c0,0.45,0.54,0.67,0.85,0.35 l2.79-2.79C21.84,8.16,21.84,7.84,21.65,7.65z\\\"></path><path d=\\\"M20,15H6v-1.79c0-0.45-0.54-0.67-0.85-0.35l-2.79,2.79c-0.2,0.19-0.2,0.51-0.01,0.7l2.79,2.79C5.46,19.46,6,19.24,6,18.79 V17h14c0.55,0,1-0.45,1-1S20.55,15,20,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.65,6.65l-1.79-1.79C15.54,4.54,15,4.76,15,5.21v1.04H3.75C3.34,6.25,3,6.59,3,7s0.34,0.75,0.75,0.75H15v1.04 c0,0.45,0.54,0.67,0.85,0.35l1.79-1.79C17.84,7.16,17.84,6.84,17.65,6.65z\\\"></path><path d=\\\"M16.25,12.25H5v-1.04c0-0.45-0.54-0.67-0.85-0.35l-1.79,1.79c-0.2,0.2-0.2,0.51,0,0.71l1.79,1.79 C4.46,15.46,5,15.24,5,14.79v-1.04h11.25c0.41,0,0.75-0.34,0.75-0.75S16.66,12.25,16.25,12.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"play_for_work\": {\n    \"name\": \"play_for_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 6v4.59H8.71c-.45 0-.67.54-.35.85l3.29 3.29c.2.2.51.2.71 0l3.29-3.29c.31-.31.09-.85-.35-.85H13V6c0-.55-.45-1-1-1s-1 .45-1 1zm-3.9 8c-.61 0-1.11.55-.99 1.15C6.65 17.91 9.08 20 12 20s5.35-2.09 5.89-4.85c.12-.6-.38-1.15-.99-1.15-.49 0-.88.35-.98.83C15.53 16.64 13.93 18 12 18s-3.53-1.36-3.91-3.17c-.1-.48-.5-.83-.99-.83z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_none\": {\n    \"name\": \"text_rotation_none\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.65 17.65l-1.79-1.79c-.32-.32-.86-.1-.86.35V17H6c-.55 0-1 .45-1 1s.45 1 1 1h12v.79c0 .45.54.67.85.35l1.79-1.79c.2-.19.2-.51.01-.7zM9.5 11.8h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C12.87 3.27 12.46 3 12 3c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.65-1.6zM12 4.98L13.87 10h-3.74L12 4.98z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture_alt\": {\n    \"name\": \"picture_in_picture_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 11h-6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm5 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-3 .02H4c-.55 0-1-.45-1-1V5.97c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.05c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"view_column\": {\n    \"name\": \"view_column\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.67,6v12c0,0.55-0.45,1-1,1h-3.33c-0.55,0-1-0.45-1-1V6c0-0.55,0.45-1,1-1h3.33C14.22,5,14.67,5.45,14.67,6z M16.67,19 H20c0.55,0,1-0.45,1-1V6c0-0.55-0.45-1-1-1h-3.33c-0.55,0-1,0.45-1,1v12C15.67,18.55,16.11,19,16.67,19z M8.33,18V6 c0-0.55-0.45-1-1-1H4C3.45,5,3,5.45,3,6v12c0,0.55,0.45,1,1,1h3.33C7.89,19,8.33,18.55,8.33,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,15h3c0.28,0,0.5-0.22,0.5-0.5v-9C17,5.22,16.78,5,16.5,5h-3C13.22,5,13,5.22,13,5.5v9C13,14.78,13.22,15,13.5,15z M8,5.5v9C8,14.78,8.22,15,8.5,15h3c0.28,0,0.5-0.22,0.5-0.5v-9C12,5.22,11.78,5,11.5,5h-3C8.22,5,8,5.22,8,5.5z M7,14.5v-9 C7,5.22,6.78,5,6.5,5h-3C3.22,5,3,5.22,3,5.5v9C3,14.78,3.22,15,3.5,15h3C6.78,15,7,14.78,7,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"input\": {\n    \"name\": \"input\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M21 3.01H3c-1.1 0-2 .9-2 2V8c0 .55.45 1 1 1s1-.45 1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V16c0-.55-.45-1-1-1s-1 .45-1 1v3.01c0 1.09.89 1.98 1.98 1.98H21c1.1 0 2-.9 2-2V5.01c0-1.1-.9-2-2-2zm-9.15 12.14l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.32-.85-.1-.85.35V11H2c-.55 0-1 .45-1 1s.45 1 1 1h9v1.79c0 .45.54.67.85.36z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_history\": {\n    \"name\": \"manage_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22.75,19c0-0.22-0.03-0.42-0.06-0.63l0.84-0.73c0.18-0.16,0.22-0.42,0.1-0.63l-0.59-1.02c-0.12-0.21-0.37-0.3-0.59-0.22 l-1.06,0.36c-0.32-0.27-0.68-0.48-1.08-0.63l-0.22-1.09c-0.05-0.23-0.25-0.4-0.49-0.4h-1.18c-0.24,0-0.44,0.17-0.49,0.4l-0.22,1.09 c-0.4,0.15-0.76,0.36-1.08,0.63l-1.06-0.36c-0.23-0.08-0.47,0.02-0.59,0.22l-0.59,1.02c-0.12,0.21-0.08,0.47,0.1,0.63l0.84,0.73 c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-0.84,0.73c-0.18,0.16-0.22,0.42-0.1,0.63l0.59,1.02 c0.12,0.21,0.37,0.3,0.59,0.22l1.06-0.36c0.32,0.27,0.68,0.48,1.08,0.63l0.22,1.09c0.05,0.23,0.25,0.4,0.49,0.4h1.18 c0.24,0,0.44-0.17,0.49-0.4l0.22-1.09c0.4-0.15,0.76-0.36,1.08-0.63l1.06,0.36c0.23,0.08,0.47-0.02,0.59-0.22l0.59-1.02 c0.12-0.21,0.08-0.47-0.1-0.63l-0.84-0.73C22.72,19.42,22.75,19.22,22.75,19z M19,21c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S20.1,21,19,21z M12,7c-0.55,0-1,0.45-1,1v4c0,0.27,0.11,0.52,0.29,0.71l2.07,2.07l1.04-1.79L13,11.59V8C13,7.45,12.55,7,12,7z M4.26,13c-0.65,0-1.14,0.61-0.98,1.24C4.28,18.13,7.8,21,12,21c0.02,0,0.05,0,0.07,0l-1.21-2.09c-2.75-0.45-4.96-2.51-5.64-5.18 C5.11,13.29,4.71,13,4.26,13z M4,10c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1.36C6.65,4.32,9.17,3,12,3 c4.97,0,9,4.03,9,9h-2c0-3.86-3.14-7-7-7C9.63,5,7.53,6.19,6.26,8H8c0.55,0,1,0.45,1,1s-0.45,1-1,1H4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.95,14.89l0.85-0.79l-0.67-1.15l-1.12,0.33c-0.31-0.28-0.67-0.48-1.07-0.62l-0.28-1.16h-1.33l-0.27,1.17 c-0.39,0.13-0.75,0.34-1.05,0.61l-1.14-0.34L12.2,14.1l0.87,0.81c-0.11,0.54-0.05,0.97,0,1.21l-0.87,0.83l0.67,1.15l1.16-0.36 c0.3,0.26,0.64,0.46,1.03,0.59l0.27,1.17h1.33l0.28-1.16c0.39-0.13,0.75-0.33,1.05-0.6l1.15,0.35l0.67-1.15l-0.86-0.81 C19.07,15.53,18.98,15.07,18.95,14.89z M16.01,17c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.84,17,16.01,17z M3.8,10c0.37,0,0.69,0.27,0.74,0.64c0.3,2.61,2.45,4.67,5.09,4.85l0.86,1.49C10.33,16.99,10.17,17,10,17 c-3.58,0-6.53-2.68-6.95-6.15C3,10.4,3.35,10,3.8,10z M8,7.25C8,7.66,7.66,8,7.25,8H4C3.45,8,3,7.55,3,7V3.75C3,3.34,3.34,3,3.75,3 S4.5,3.34,4.5,3.75v1.96C5.78,4.07,7.76,3,10,3c3.87,0,7,3.13,7,7h-1.5c0-3.03-2.47-5.5-5.5-5.5c-1.7,0-3.22,0.78-4.22,2h1.47 C7.66,6.5,8,6.84,8,7.25z M10,6c0.41,0,0.75,0.34,0.75,0.75v2.63l1.55,1.55l-0.78,1.34l-2.05-2.05c-0.14-0.14-0.22-0.33-0.22-0.53 V6.75C9.25,6.34,9.59,6,10,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"circle_notifications\": {\n    \"name\": \"circle_notifications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,18.5c-0.83,0-1.5-0.67-1.5-1.5h3 C13.5,17.83,12.83,18.5,12,18.5z M16,16H8c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1l0-3c0-1.86,1.28-3.41,3-3.86V6.5 c0-0.55,0.45-1,1-1s1,0.45,1,1v0.64c1.72,0.45,3,2,3,3.86l0,3c0.55,0,1,0.45,1,1v0C17,15.55,16.55,16,16,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3d_rotation\": {\n    \"name\": \"3d_rotation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.41 14.96c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm9.3-4.72c-.18-.47-.43-.87-.75-1.2-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57zm-1.13 1.96c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85s-.43.41-.71.53c-.29.12-.62.18-.99.18h-.91V9.11h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.41zm-1.43-8.36l1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.81-2.96-7.01-6.24-8.75C15.94.49 13.78-.13 11.34.02l3.81 3.82zm-6.3 16.31l-1.33 1.33c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.67.89 3.83 1.51 6.27 1.36l-3.81-3.82z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes_off\": {\n    \"name\": \"speaker_notes_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.91 2.36c-.35-.35-.92-.35-1.27 0s-.35.92 0 1.27l1.38 1.38L2 22l4-4h9l5.09 5.09c.35.35.92.35 1.27 0s.35-.92 0-1.27L1.91 2.36zM7 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13-9H4.08l7 7H17c.55 0 1 .45 1 1s-.45 1-1 1h-3.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2zm-3 6h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"work_off\": {\n    \"name\": \"work_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.11 2.54c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l1.29 1.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.11 2.54zM10 4h4v2h-3.6L22 17.6V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4z\\\"></path>\"\n      }\n    }\n  },\n  \"dangerous\": {\n    \"name\": \"dangerous\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14.9,3H9.1C8.57,3,8.06,3.21,7.68,3.59l-4.1,4.1C3.21,8.06,3,8.57,3,9.1v5.8c0,0.53,0.21,1.04,0.59,1.41l4.1,4.1 C8.06,20.79,8.57,21,9.1,21h5.8c0.53,0,1.04-0.21,1.41-0.59l4.1-4.1C20.79,15.94,21,15.43,21,14.9V9.1c0-0.53-0.21-1.04-0.59-1.41 l-4.1-4.1C15.94,3.21,15.43,3,14.9,3z M15.54,15.54L15.54,15.54c-0.39,0.39-1.02,0.39-1.41,0L12,13.41l-2.12,2.12 c-0.39,0.39-1.02,0.39-1.41,0l0,0c-0.39-0.39-0.39-1.02,0-1.41L10.59,12L8.46,9.88c-0.39-0.39-0.39-1.02,0-1.41l0,0 c0.39-0.39,1.02-0.39,1.41,0L12,10.59l2.12-2.12c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41L13.41,12l2.12,2.12 C15.93,14.51,15.93,15.15,15.54,15.54z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><path d=\\\"M0,0h20v20H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12.27,3H7.73c-0.4,0-0.78,0.16-1.06,0.44L3.44,6.67C3.16,6.95,3,7.34,3,7.73v4.53c0,0.4,0.16,0.78,0.44,1.06l3.23,3.23 C6.95,16.84,7.34,17,7.73,17h4.53c0.4,0,0.78-0.16,1.06-0.44l3.23-3.23c0.28-0.28,0.44-0.66,0.44-1.06V7.73 c0-0.4-0.16-0.78-0.44-1.06l-3.23-3.23C13.05,3.16,12.66,3,12.27,3z M12.75,12.75L12.75,12.75c-0.29,0.29-0.77,0.29-1.06,0 L10,11.06l-1.69,1.69c-0.29,0.29-0.77,0.29-1.06,0l0,0c-0.29-0.29-0.29-0.77,0-1.06L8.94,10L7.25,8.31c-0.29-0.29-0.29-0.77,0-1.06 l0,0c0.29-0.29,0.77-0.29,1.06,0L10,8.94l1.69-1.69c0.29-0.29,0.77-0.29,1.06,0l0,0c0.29,0.29,0.29,0.77,0,1.06L11.06,10l1.69,1.69 C13.04,11.98,13.04,12.46,12.75,12.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"lock_outline\": {\n    \"name\": \"lock_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm8 14H7c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-5-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"copyright\": {\n    \"name\": \"copyright\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"lightbulb_outline\": {\n    \"name\": \"lightbulb_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_new\": {\n    \"name\": \"open_in_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h5c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55-.45 1-1 1zM14 4c0 .55.45 1 1 1h2.59l-9.13 9.13c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L19 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1h-5c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"app_shortcut\": {\n    \"name\": \"app_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z\\\"></path><path d=\\\"M20.38,9.62l0.4,0.87c0.09,0.2,0.37,0.2,0.46,0l0.4-0.87l0.87-0.4c0.2-0.09,0.2-0.37,0-0.46l-0.87-0.4l-0.4-0.87 c-0.09-0.2-0.37-0.2-0.46,0l-0.4,0.87l-0.87,0.4c-0.2,0.09-0.2,0.37,0,0.46L20.38,9.62z\\\"></path><path d=\\\"M15.54,9l-0.79,1.75L13,11.54c-0.39,0.18-0.39,0.73,0,0.91l1.75,0.79L15.54,15c0.18,0.39,0.73,0.39,0.91,0l0.79-1.75 L19,12.46c0.39-0.18,0.39-0.73,0-0.91l-1.75-0.79L16.46,9C16.28,8.61,15.72,8.61,15.54,9z\\\"></path><path d=\\\"M20.77,13.5l-0.4,0.87l-0.87,0.4c-0.2,0.09-0.2,0.37,0,0.46l0.87,0.4l0.4,0.87c0.09,0.2,0.37,0.2,0.46,0l0.4-0.87 l0.87-0.4c0.2-0.09,0.2-0.37,0-0.46l-0.87-0.4l-0.4-0.87C21.14,13.31,20.86,13.31,20.77,13.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,15h-9V5h9v1H16V2.5C16,1.67,15.33,1,14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15z\\\"></path><polygon points=\\\"17.03,7.97 17.5,9 17.97,7.97 19,7.5 17.97,7.03 17.5,6 17.03,7.03 16,7.5\\\"></polygon><path d=\\\"M12.77,7.5l-0.71,1.56L10.5,9.77c-0.2,0.09-0.2,0.37,0,0.46l1.56,0.71l0.71,1.56c0.09,0.2,0.37,0.2,0.46,0l0.71-1.56 l1.56-0.71c0.2-0.09,0.2-0.37,0-0.46l-1.56-0.71L13.23,7.5C13.14,7.31,12.86,7.31,12.77,7.5z\\\"></path><polygon points=\\\"17.5,11 17.03,12.03 16,12.5 17.03,12.97 17.5,14 17.97,12.97 19,12.5 17.97,12.03\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"supervisor_account\": {\n    \"name\": \"supervisor_account\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V18c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h6v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_phone_msg\": {\n    \"name\": \"perm_phone_msg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3h-7c-.55 0-1 .45-1 1v9l3-3h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-.77 12.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\\\"></path>\"\n      }\n    }\n  },\n  \"density_medium\": {\n    \"name\": \"density_medium\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,5h16c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4C3,4.55,3.45,5,4,5z\\\"></path><path d=\\\"M20,19H4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1C21,19.45,20.55,19,20,19z\\\"></path><path d=\\\"M20,11H4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1C21,11.45,20.55,11,20,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.25,9.25H3.75C3.34,9.25,3,9.59,3,10c0,0.41,0.34,0.75,0.75,0.75h12.5c0.41,0,0.75-0.34,0.75-0.75 C17,9.59,16.66,9.25,16.25,9.25z\\\"></path><path d=\\\"M3.75,4.5h12.5C16.66,4.5,17,4.16,17,3.75C17,3.34,16.66,3,16.25,3H3.75C3.34,3,3,3.34,3,3.75C3,4.16,3.34,4.5,3.75,4.5z\\\"></path><path d=\\\"M16.25,15.5H3.75C3.34,15.5,3,15.84,3,16.25C3,16.66,3.34,17,3.75,17h12.5c0.41,0,0.75-0.34,0.75-0.75 C17,15.84,16.66,15.5,16.25,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dns\": {\n    \"name\": \"dns\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM19 3H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"home\": {\n    \"name\": \"home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"view_headline\": {\n    \"name\": \"view_headline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"view_in_ar\": {\n    \"name\": \"view_in_ar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M2,6c0.55,0,1-0.45,1-1V4c0-0.55,0.45-1,1-1h1c0.55,0,1-0.45,1-1S5.55,1,5,1H4C2.34,1,1,2.34,1,4v1C1,5.55,1.45,6,2,6z\\\"></path><path d=\\\"M5,21H4c-0.55,0-1-0.45-1-1v-1c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1v1c0,1.66,1.34,3,3,3h1c0.55,0,1-0.45,1-1 S5.55,21,5,21z\\\"></path><path d=\\\"M20,1h-1c-0.55,0-1,0.45-1,1s0.45,1,1,1h1c0.55,0,1,0.45,1,1v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1V4 C23,2.34,21.66,1,20,1z\\\"></path><path d=\\\"M22,18c-0.55,0-1,0.45-1,1v1c0,0.55-0.45,1-1,1h-1c-0.55,0-1,0.45-1,1s0.45,1,1,1h1c1.66,0,3-1.34,3-3v-1 C23,18.45,22.55,18,22,18z\\\"></path><path d=\\\"M19,14.87V9.13c0-0.72-0.38-1.38-1-1.73l-5-2.88c-0.31-0.18-0.65-0.27-1-0.27s-0.69,0.09-1,0.27L6,7.39 C5.38,7.75,5,8.41,5,9.13v5.74c0,0.72,0.38,1.38,1,1.73l5,2.88c0.31,0.18,0.65,0.27,1,0.27s0.69-0.09,1-0.27l5-2.88 C18.62,16.25,19,15.59,19,14.87z M11,17.17l-4-2.3v-4.63l4,2.33V17.17z M12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84z M17,14.87l-4,2.3v-4.6l4-2.33V14.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"explore\": {\n    \"name\": \"explore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z\\\"></path>\"\n      }\n    }\n  },\n  \"transcribe\": {\n    \"name\": \"transcribe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22.54,10.28c-0.34-0.82-0.34-1.72,0-2.54c0.19-0.45,0.1-0.96-0.24-1.3l-0.1-0.1c-0.56-0.56-1.51-0.44-1.88,0.26 c-0.8,1.48-0.79,3.24,0.03,4.79c0.37,0.69,1.31,0.83,1.86,0.27l0.1-0.1C22.65,11.23,22.73,10.72,22.54,10.28z M18.82,15.11 L18.82,15.11c0.4-0.4,0.46-1.02,0.13-1.48c-1.97-2.73-1.96-6.39,0.01-9.23c0.32-0.47,0.26-1.1-0.14-1.5l0,0 c-0.5-0.5-1.34-0.46-1.78,0.1c-2.73,3.54-2.73,8.36,0.02,12C17.49,15.56,18.33,15.61,18.82,15.11z M9,13c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4S5,6.79,5,9C5,11.21,6.79,13,9,13z M15.39,15.56C13.71,14.7,11.53,14,9,14c-2.53,0-4.71,0.7-6.39,1.56 C1.61,16.07,1,17.1,1,18.22L1,20c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1l0-1.78C17,17.1,16.39,16.07,15.39,15.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M12.99,13.34C11.52,12.49,9.82,12,8,12s-3.52,0.49-4.99,1.34C2.39,13.7,2,14.37,2,15.09l0,1.41C2,16.78,2.22,17,2.5,17h11 c0.28,0,0.5-0.22,0.5-0.5l0-1.41C14,14.37,13.61,13.7,12.99,13.34z\\\"></path><path d=\\\"M15.68,11.98L15.68,11.98c0.25-0.29,0.23-0.72-0.03-1.01C14.94,10.18,14.5,9.15,14.5,8s0.44-2.18,1.15-2.98 c0.26-0.29,0.28-0.71,0.03-1.01l0,0c-0.29-0.35-0.83-0.38-1.13-0.04C13.59,5.04,13,6.45,13,8s0.59,2.96,1.55,4.02 C14.85,12.36,15.39,12.33,15.68,11.98z\\\"></path><path d=\\\"M17.65,6.38c-0.33-0.39-0.95-0.35-1.21,0.09C16.16,6.91,16,7.44,16,8s0.16,1.09,0.43,1.54c0.27,0.44,0.89,0.48,1.21,0.09 v0c0.21-0.25,0.22-0.6,0.05-0.89C17.57,8.52,17.5,8.27,17.5,8c0-0.27,0.07-0.52,0.2-0.74C17.86,6.98,17.86,6.63,17.65,6.38 L17.65,6.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lightbulb\": {\n    \"name\": \"lightbulb\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M12,22c1.1,0,2-0.9,2-2h-4C10,21.1,10.9,22,12,22z\\\"></path></g><g><path d=\\\"M9,19h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H9c-0.55,0-1,0.45-1,1v0C8,18.55,8.45,19,9,19z\\\"></path></g><g><path d=\\\"M12,2C7.86,2,4.5,5.36,4.5,9.5c0,3.82,2.66,5.86,3.77,6.5h7.46c1.11-0.64,3.77-2.68,3.77-6.5C19.5,5.36,16.14,2,12,2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_outward\": {\n    \"name\": \"arrow_outward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,7L6,7c0,0.55,0.45,1,1,1h7.59l-8.88,8.88c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0L16,9.41V17 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7c0-0.55-0.45-1-1-1H7C6.45,6,6,6.45,6,7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,5.75L5,5.75C5,6.16,5.34,6.5,5.75,6.5h6.69l-7.91,7.91c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0 l7.91-7.91v6.69c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75V6c0-0.55-0.45-1-1-1H5.75C5.34,5,5,5.34,5,5.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pin_end\": {\n    \"name\": \"pin_end\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,12V6H4v12h10l0,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v6H20z M19,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.66,0,3-1.34,3-3S20.66,14,19,14z M14.66,13.66c0.39-0.39,0.39-1.02,0-1.41l-2.12-2.12l1.27-1.27C14.12,8.54,13.9,8,13.45,8H9.5 C9.22,8,9,8.22,9,8.5v3.95c0,0.45,0.54,0.67,0.85,0.35l1.27-1.27l2.12,2.12C13.63,14.05,14.27,14.05,14.66,13.66z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,10V5.5h-13v9H12c0.01,0.02,0,1.5,0,1.5H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h13C17.33,4,18,4.67,18,5.5 V10H16.5z M15.75,11.5c-1.24,0-2.25,1.01-2.25,2.25s1,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25S16.99,11.5,15.75,11.5z M12.76,11.22c0.28-0.3,0.25-0.78-0.04-1.07l-1.57-1.57l0.74-0.74C12.2,7.54,11.98,7,11.53,7H9C8.72,7,8.5,7.22,8.5,7.5v2.53 c0,0.45,0.54,0.67,0.85,0.35l0.74-0.74l1.59,1.59C11.98,11.54,12.46,11.53,12.76,11.22z\\\"></path>\"\n      }\n    }\n  },\n  \"all_out\": {\n    \"name\": \"all_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4.5V8l4-4H4.5c-.28 0-.5.22-.5.5zM16 4l4 4V4.5c0-.28-.22-.5-.5-.5H16zm4 15.5V16l-4 4h3.5c.28 0 .5-.22.5-.5zM4.5 20H8l-4-4v3.5c0 .28.22.5.5.5zM19 12c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"today\": {\n    \"name\": \"today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1zM8 10h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"batch_prediction\": {\n    \"name\": \"batch_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M12,20.5L12,20.5 c-0.55,0-1-0.45-1-1V19h2v0.5C13,20.05,12.55,20.5,12,20.5z M13,18h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5 c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0 C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,7H6C5.45,7,5,7.45,5,8v8c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8C15,7.45,14.55,7,14,7z M10.75,15.25 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V15h1.5V15.25z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5 C7.5,9.12,8.62,8,10,8c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5C12.5,12,10.75,13,10.75,14z M14,6H6v0c0-0.55,0.45-1,1-1h6 C13.55,5,14,5.45,14,6L14,6z M13,4H7v0c0-0.55,0.45-1,1-1h4C12.55,3,13,3.45,13,4L13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_up\": {\n    \"name\": \"arrow_circle_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1l0-3h1.79 c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79c-0.2-0.2-0.51-0.2-0.71,0l-2.79,2.79C8.54,11.46,8.76,12,9.21,12H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v2.5c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5V10H13l-3-3l-3,3 H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"change_history\": {\n    \"name\": \"change_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.77L18.39 18H5.61L12 7.77m-.85-2.41l-8.2 13.11c-.41.67.07 1.53.85 1.53h16.4c.79 0 1.26-.86.85-1.53l-8.2-13.11c-.39-.63-1.31-.63-1.7 0z\\\"></path>\"\n      }\n    }\n  },\n  \"pinch\": {\n    \"name\": \"pinch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8.2,17.43c0-0.65,0.6-1.13,1.24-0.99L13,17.24V6.5C13,5.67,13.67,5,14.5,5S16,5.67,16,6.5v6h0.91 c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04c0.77,0.38,1.21,1.22,1.09,2.07l-0.63,4.46C22.21,22.27,21.36,23,20.37,23h-6.16 c-0.53,0-1.29-0.21-1.66-0.59l-4.07-4.29C8.3,17.94,8.2,17.69,8.2,17.43z M9.5,5.25C9.5,5.66,9.84,6,10.25,6S11,5.66,11,5.25V2 c0-0.55-0.45-1-1-1H6.75C6.34,1,6,1.34,6,1.75S6.34,2.5,6.75,2.5h1.69L2.5,8.44V6.75C2.5,6.34,2.16,6,1.75,6S1,6.34,1,6.75V10 c0,0.55,0.45,1,1,1h3.25C5.66,11,6,10.66,6,10.25S5.66,9.5,5.25,9.5H3.56L9.5,3.56V5.25z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.37,11.11l2.8,1.4c0.59,0.29,0.92,0.94,0.81,1.59l-0.61,3.65C18.25,18.47,17.62,19,16.89,19h-5.27 c-0.4,0-0.78-0.16-1.06-0.44l-2.94-2.94c-0.34-0.34-0.34-0.89,0-1.24l0,0c0.23-0.23,0.58-0.32,0.89-0.21L11,15V6.25 C11,5.56,11.56,5,12.25,5h0c0.69,0,1.25,0.56,1.25,1.25V11h1.43C15.08,11,15.23,11.04,15.37,11.11z M4.5,9h-3C1.22,9,1,8.78,1,8.5 v-3C1,5.23,1.22,5,1.5,5S2,5.23,2,5.5V7.3L7.29,2H5.5C5.22,2,5,1.78,5,1.5S5.22,1,5.5,1h3C8.78,1,9,1.23,9,1.5v3 C9,4.78,8.78,5,8.5,5S8,4.78,8,4.5V2.71L2.71,8H4.5C4.78,8,5,8.23,5,8.5C5,8.78,4.78,9,4.5,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"done_outline\": {\n    \"name\": \"done_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.47 5.63c.39.39.39 1.01 0 1.4L9.13 18.37c-.39.39-1.01.39-1.4 0l-4.2-4.2c-.39-.39-.39-1.01 0-1.4.39-.39 1.01-.39 1.4 0l3.5 3.5L19.07 5.63c.39-.39 1.01-.39 1.4 0zm-2.11-2.12l-9.93 9.93-2.79-2.79c-.78-.78-2.05-.78-2.83 0l-1.4 1.4c-.78.78-.78 2.05 0 2.83l5.6 5.6c.78.78 2.05.78 2.83 0L22.59 7.74c.78-.78.78-2.05 0-2.83l-1.4-1.4c-.79-.78-2.05-.78-2.83 0z\\\"></path>\"\n      }\n    }\n  },\n  \"backup\": {\n    \"name\": \"backup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,11c0-3.87-3.13-7-7-7C8.78,4,6.07,6.18,5.26,9.15C2.82,9.71,1,11.89,1,14.5C1,17.54,3.46,20,6.5,20 c1.76,0,10.25,0,12,0l0,0c2.49-0.01,4.5-2.03,4.5-4.52C23,13.15,21.25,11.26,19,11z M13,13v2c0,0.55-0.45,1-1,1h0 c-0.55,0-1-0.45-1-1v-2H9.21c-0.45,0-0.67-0.54-0.35-0.85l2.79-2.79c0.2-0.2,0.51-0.2,0.71,0l2.79,2.79 c0.31,0.31,0.09,0.85-0.35,0.85H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"swipe_right\": {\n    \"name\": \"swipe_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,1C7.19,1,3.7,3.39,2.41,5.92C2.16,6.41,2.53,7,3.09,7c0.28,0,0.54-0.15,0.66-0.4C4.73,4.69,7.58,2.5,12,2.5 c3.03,0,5.79,1.14,7.91,3h-2.16C17.34,5.5,17,5.84,17,6.25S17.34,7,17.75,7H21c0.55,0,1-0.45,1-1V2.75C22,2.34,21.66,2,21.25,2 S20.5,2.34,20.5,2.75v1.27C18.18,2.13,15.22,1,12,1z M5.2,17.43c0-0.65,0.6-1.13,1.24-0.99L10,17.24V6.5C10,5.67,10.67,5,11.5,5 S13,5.67,13,6.5v6h0.91c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04c0.77,0.38,1.21,1.22,1.09,2.07l-0.63,4.46 C19.21,22.27,18.36,23,17.37,23h-6.16c-0.53,0-1.29-0.21-1.66-0.59l-4.07-4.29C5.3,17.94,5.2,17.69,5.2,17.43z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2.31,5.27C3.58,2.76,6.55,1,10,1c2.93,0,5.51,1.27,7,3.19l0-1.69C17,2.22,17.22,2,17.5,2C17.78,2,18,2.22,18,2.5v3 C18,5.78,17.78,6,17.5,6h-3C14.22,6,14,5.78,14,5.5C14,5.22,14.22,5,14.5,5l1.86,0C15.06,3.18,12.65,2,10,2 C7.02,2,4.33,3.5,3.2,5.72C3.12,5.89,2.95,6,2.76,6C2.38,6,2.14,5.6,2.31,5.27z M12.66,11H11V6.25C11,5.56,10.44,5,9.75,5h0 C9.06,5,8.5,5.56,8.5,6.25V15l-2.12-0.71c-0.54-0.18-1.13-0.04-1.54,0.36L4.5,15l3.56,3.56C8.34,18.84,8.72,19,9.12,19h5.27 c0.73,0,1.36-0.53,1.48-1.25l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59L12.66,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"plagiarism\": {\n    \"name\": \"plagiarism\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.41,7.41l-4.83-4.83C14.21,2.21,13.7,2,13.17,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8.83 C20,8.3,19.79,7.79,19.41,7.41z M15.74,18.74L15.74,18.74c-0.39,0.39-1.02,0.39-1.41,0l-1.18-1.18c-1.33,0.71-3.01,0.53-4.13-0.59 c-1.52-1.52-1.35-4.08,0.5-5.37c1.16-0.81,2.78-0.81,3.95,0c1.55,1.08,1.9,3.04,1.09,4.55l1.18,1.18 C16.13,17.72,16.13,18.35,15.74,18.74z M14,9c-0.55,0-1-0.45-1-1V3.5L18.5,9H14z\\\"></path><circle cx=\\\"11.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"9.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle></g><g><path d=\\\"M11.59,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V7.41c0-0.27-0.11-0.52-0.29-0.71l-3.41-3.41 C12.11,3.11,11.85,3,11.59,3z M11.97,14.68l-1.1-1.1c-1.09,0.72-2.61,0.5-3.43-0.66c-0.58-0.82-0.6-1.94-0.06-2.78 c0.9-1.38,2.78-1.52,3.88-0.42c0.86,0.86,0.96,2.18,0.32,3.15l1.1,1.1c0.2,0.2,0.2,0.51,0,0.71l0,0 C12.49,14.88,12.17,14.88,11.97,14.68z M11,7.5V4l4,4h-3.5C11.22,8,11,7.78,11,7.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"php\": {\n    \"name\": \"php\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.5,10.5h-2v1h2V10.5z M20,10.5h-2v1h2V10.5z M13,12.5h-2v1.75c0,0.41-0.34,0.75-0.75,0.75S9.5,14.66,9.5,14.25v-4.5 C9.5,9.34,9.84,9,10.25,9S11,9.34,11,9.75V11h2V9.75C13,9.34,13.34,9,13.75,9s0.75,0.34,0.75,0.75v4.5c0,0.41-0.34,0.75-0.75,0.75 S13,14.66,13,14.25V12.5z M18,14.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V10c0-0.55,0.45-1,1-1H20 c0.83,0,1.5,0.68,1.5,1.5v1c0,0.82-0.67,1.5-1.5,1.5h-2V14.25z M3,10c0-0.55,0.45-1,1-1h2.5C7.33,9,8,9.68,8,10.5v1 C8,12.32,7.33,13,6.5,13h-2v1.25C4.5,14.66,4.16,15,3.75,15S3,14.66,3,14.25V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,9H5v0.5h1V9z M15,9h-1v0.5h1V9z M11.5,11.5c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5v-1h-1v1C9.5,11.78,9.28,12,9,12 s-0.5-0.22-0.5-0.5v-3C8.5,8.22,8.72,8,9,8s0.5,0.22,0.5,0.5v1h1v-1C10.5,8.22,10.72,8,11,8s0.5,0.22,0.5,0.5V11.5z M4,8.5 C4,8.22,4.22,8,4.5,8h2C6.78,8,7,8.22,7,8.5V10c0,0.28-0.22,0.5-0.5,0.5H5v1C5,11.78,4.78,12,4.5,12S4,11.78,4,11.5V8.5z M13.5,8h2 C15.78,8,16,8.22,16,8.5V10c0,0.28-0.22,0.5-0.5,0.5H14v1c0,0.28-0.22,0.5-0.5,0.5S13,11.78,13,11.5v-3C13,8.22,13.22,8,13.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grade\": {\n    \"name\": \"grade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17.27l5.17 3.12c.38.23.85-.11.75-.54l-1.37-5.88 4.56-3.95c.33-.29.16-.84-.29-.88l-6.01-.51-2.35-5.54c-.17-.41-.75-.41-.92 0L9.19 8.63l-6.01.51c-.44.04-.62.59-.28.88l4.56 3.95-1.37 5.88c-.1.43.37.77.75.54L12 17.27z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_month\": {\n    \"name\": \"calendar_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,2c-0.55,0-1,0.45-1,1v1H8V3c0-0.55-0.45-1-1-1S6,2.45,6,3v1H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h14 c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2h-1V3C18,2.45,17.55,2,17,2z M19,20H5V10h14V20z M11,13c0-0.55,0.45-1,1-1s1,0.45,1,1 s-0.45,1-1,1S11,13.55,11,13z M7,13c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S7,13.55,7,13z M15,13c0-0.55,0.45-1,1-1s1,0.45,1,1 s-0.45,1-1,1S15,13.55,15,13z M11,17c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S11,17.55,11,17z M7,17c0-0.55,0.45-1,1-1 s1,0.45,1,1s-0.45,1-1,1S7,17.55,7,17z M15,17c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S15,17.55,15,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,11.25c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C7.5,11.66,7.16,12,6.75,12S6,11.66,6,11.25z M10,12 c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75C9.25,11.66,9.59,12,10,12z M13.25,12 c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75C12.5,11.66,12.84,12,13.25,12z M6.75,15 c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75S6,13.84,6,14.25C6,14.66,6.34,15,6.75,15z M10,15 c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75C9.25,14.66,9.59,15,10,15z M13.25,15 c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75C12.5,14.66,12.84,15,13.25,15z M13.25,2 C13.66,2,14,2.34,14,2.75V4h1.5C16.33,4,17,4.68,17,5.5v11c0,0.83-0.67,1.5-1.5,1.5h-11C3.67,18,3,17.33,3,16.5v-11 C3,4.68,3.67,4,4.5,4H6V2.75C6,2.34,6.34,2,6.75,2S7.5,2.34,7.5,2.75V4h5V2.75C12.5,2.34,12.84,2,13.25,2z M15.5,9h-11v7.5h11V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"outbound\": {\n    \"name\": \"outbound\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.25,4.25 c-0.39,0.39-1.02,0.39-1.41,0l0,0c-0.39-0.39-0.39-1.02,0-1.41l4.25-4.25L11.2,8.86C10.88,8.54,11.11,8,11.55,8l3.94,0 c0.28,0,0.5,0.22,0.5,0.5l0,3.94c0,0.45-0.54,0.67-0.85,0.35L13.88,11.54z\\\"></path><g></rect><g></rect><g></rect>\"\n      }\n    }\n  },\n  \"card_giftcard\": {\n    \"name\": \"card_giftcard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V9c0-.55.45-1 1-1h4.08L7.6 10.02c-.33.45-.23 1.08.22 1.4.44.32 1.07.22 1.39-.22L12 7.4l2.79 3.8c.32.44.95.54 1.39.22.45-.32.55-.95.22-1.4L14.92 8H19c.55 0 1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_split\": {\n    \"name\": \"vertical_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 6c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm11-1h6c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1h-6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility\": {\n    \"name\": \"accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm8 7h-5v12c0 .55-.45 1-1 1s-1-.45-1-1v-5h-2v5c0 .55-.45 1-1 1s-1-.45-1-1V9H4c-.55 0-1-.45-1-1s.45-1 1-1h16c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_page\": {\n    \"name\": \"restore_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.41 7.41l-4.83-4.83c-.37-.37-.88-.58-1.41-.58H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.42zM12 18c-1.65 0-3.19-.81-4.12-2.17-.23-.34-.15-.81.19-1.04.34-.24.81-.15 1.04.19.65.95 1.73 1.52 2.88 1.52 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.33 0-2.52.74-3.11 1.89L10.5 13H7c-.28 0-.5-.22-.5-.5V9l1.3 1.3C8.71 8.89 10.26 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horiz\": {\n    \"name\": \"swap_horiz\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.14 11.86l-2.78 2.79c-.19.2-.19.51 0 .71l2.78 2.79c.31.32.85.09.85-.35V16H13c.55 0 1-.45 1-1s-.45-1-1-1H6.99v-1.79c0-.45-.54-.67-.85-.35zm14.51-3.21l-2.78-2.79c-.31-.32-.85-.09-.85.35V8H11c-.55 0-1 .45-1 1s.45 1 1 1h6.01v1.79c0 .45.54.67.85.35l2.78-2.79c.2-.19.2-.51.01-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"width_normal\": {\n    \"name\": \"width_normal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h4v12H4V6z M20,18h-4V6h4V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,5.5H7v9H3.5V5.5z M16.5,14.5H13v-9h3.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_style\": {\n    \"name\": \"line_style\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 16h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6.5 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm6.5 0h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zM4 20c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4 12h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm10 0h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zM3 5v2c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vert\": {\n    \"name\": \"swap_vert\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 17.01V11c0-.55-.45-1-1-1s-1 .45-1 1v6.01h-1.79c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H16zM8.65 3.35L5.86 6.14c-.32.31-.1.85.35.85H8V13c0 .55.45 1 1 1s1-.45 1-1V6.99h1.79c.45 0 .67-.54.35-.85L9.35 3.35c-.19-.19-.51-.19-.7 0z\\\"></path>\"\n      }\n    }\n  },\n  \"help_outline\": {\n    \"name\": \"help_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2zm1.61-9.96c-2.06-.3-3.88.97-4.43 2.79-.18.58.26 1.17.87 1.17h.2c.41 0 .74-.29.88-.67.32-.89 1.27-1.5 2.3-1.28.95.2 1.65 1.13 1.57 2.1-.1 1.34-1.62 1.63-2.45 2.88 0 .01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2 1.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91 2.26-1.65 1.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z\\\"></path>\"\n      }\n    }\n  },\n  \"hide_source\": {\n    \"name\": \"hide_source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2.1,3.51L2.1,3.51C1.71,3.9,1.71,4.54,2.1,4.93l1.56,1.56c-1.25,1.88-1.88,4.2-1.59,6.69c0.52,4.54,4.21,8.23,8.75,8.75 c2.49,0.29,4.81-0.34,6.69-1.59l1.56,1.56c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51 C3.12,3.12,2.49,3.12,2.1,3.51z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.94,10.94C14.86,19.59,13.48,20,12,20z M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tab_unselected\": {\n    \"name\": \"tab_unselected\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v5c0 .55.45 1 1 1h9V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_present\": {\n    \"name\": \"file_present\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M13.17,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8.83c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83 C14.21,2.21,13.7,2,13.17,2z M16,15c0,2.34-2.01,4.21-4.39,3.98C9.53,18.78,8,16.92,8,14.83l0-5.19c0-1.31,0.94-2.5,2.24-2.63 C11.74,6.86,13,8.03,13,9.5V14c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V9.5C11,9.22,10.78,9,10.5,9S10,9.22,10,9.5v5.39 c0,1,0.68,1.92,1.66,2.08C12.92,17.18,14,16.21,14,15v-3c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1V15z M14,7V4l4,4h-3 C14.45,8,14,7.55,14,7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_brightness\": {\n    \"name\": \"settings_brightness\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M17.15,12.35L16,13.5v2 c0,0.28-0.22,0.5-0.5,0.5h-2l-1.15,1.15c-0.2,0.2-0.51,0.2-0.71,0L10.5,16h-2C8.22,16,8,15.78,8,15.5v-2l-1.15-1.15 c-0.2-0.2-0.2-0.51,0-0.71L8,10.5v-2C8,8.22,8.22,8,8.5,8h2l1.15-1.15c0.2-0.2,0.51-0.2,0.71,0L13.5,8h2C15.78,8,16,8.22,16,8.5v2 l1.15,1.15C17.34,11.84,17.34,12.16,17.15,12.35z M12,9v6c1.66,0,3-1.34,3-3C15,10.34,13.66,9,12,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"lock_clock\": {\n    \"name\": \"lock_clock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,11c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26C11.47,20.87,11,19.49,11,18C11,14.13,14.13,11,18,11z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M20,20c-0.2,0.2-0.51,0.2-0.71,0l-1.65-1.65 c-0.09-0.09-0.15-0.22-0.15-0.35v-2.5c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v2.29l1.5,1.5 C20.2,19.49,20.2,19.8,20,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.5,16.5c-0.2,0.2-0.51,0.2-0.71,0 l-1.15-1.15c-0.09-0.09-0.15-0.22-0.15-0.35v-1.5c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v1.29l1,1 C15.7,15.99,15.7,16.3,15.5,16.5z\\\"></path><path d=\\\"M14,9.5c0.71,0,1.38,0.14,2,0.38V8.5C16,7.67,15.33,7,14.5,7H14V5c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5 C4.67,7,4,7.67,4,8.5v8C4,17.33,4.67,18,5.5,18h3.9c-0.56-0.86-0.9-1.89-0.9-3C8.5,11.97,10.97,9.5,14,9.5z M7.5,5 c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"source\": {\n    \"name\": \"source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,6h-8l-1.41-1.41C10.21,4.21,9.7,4,9.17,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M14,16H6v-2h8V16z M18,12H6v-2h12V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_agenda\": {\n    \"name\": \"view_agenda\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,13H5c-1.1,0-2,0.9-2,2v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4C21,13.9,20.1,13,19,13z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v3C3,8.33,3.67,9,4.5,9h11C16.33,9,17,8.33,17,7.5v-3C17,3.67,16.33,3,15.5,3z\\\"></path><path d=\\\"M15.5,11h-11C3.67,11,3,11.67,3,12.5v3C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,11.67,16.33,11,15.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_left\": {\n    \"name\": \"swipe_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.5,4.02V2.75C3.5,2.34,3.16,2,2.75,2S2,2.34,2,2.75V6c0,0.55,0.45,1,1,1h3.25C6.66,7,7,6.66,7,6.25S6.66,5.5,6.25,5.5 H4.09c2.11-1.86,4.88-3,7.91-3c4.42,0,7.27,2.19,8.25,4.1C20.37,6.85,20.63,7,20.91,7c0.56,0,0.93-0.59,0.67-1.08 C20.3,3.39,16.81,1,12,1C8.78,1,5.82,2.13,3.5,4.02z M5.2,17.43c0-0.65,0.6-1.13,1.24-0.99L10,17.24V6.5C10,5.67,10.67,5,11.5,5 S13,5.67,13,6.5v6h0.91c0.31,0,0.62,0.07,0.89,0.21l4.09,2.04c0.77,0.38,1.21,1.22,1.09,2.07l-0.63,4.46 C19.21,22.27,18.36,23,17.37,23h-6.16c-0.53,0-1.29-0.21-1.66-0.59l-4.07-4.29C5.3,17.94,5.2,17.69,5.2,17.43z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.24,6c-0.19,0-0.36-0.11-0.45-0.28C15.67,3.5,12.98,2,10,2C7.35,2,4.94,3.18,3.64,5L5.5,5C5.78,5,6,5.22,6,5.5 C6,5.78,5.78,6,5.5,6h-3C2.22,6,2,5.78,2,5.5v-3C2,2.22,2.22,2,2.5,2C2.78,2,3,2.22,3,2.5l0,1.69C4.49,2.27,7.07,1,10,1 c3.45,0,6.42,1.76,7.69,4.27C17.86,5.6,17.62,6,17.24,6z M12.66,11H11V6.25C11,5.56,10.44,5,9.75,5h0C9.06,5,8.5,5.56,8.5,6.25V15 l-2.12-0.71c-0.54-0.18-1.13-0.04-1.54,0.36L4.5,15l3.56,3.56C8.34,18.84,8.72,19,9.12,19h5.27c0.73,0,1.36-0.53,1.48-1.25 l0.61-3.65c0.11-0.65-0.22-1.29-0.81-1.59L12.66,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turned_in_not\": {\n    \"name\": \"turned_in_not\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up_alt\": {\n    \"name\": \"swipe_up_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,5.41l0.88,0.88c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41l-2.59-2.59c-0.39-0.39-1.02-0.39-1.41,0 L8.71,4.88c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L11,5.41v4.27c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5 s5-2.24,5-5c0-2.42-1.72-4.44-4-4.9V5.41z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.47,4.06l-1.76-1.76c-0.39-0.39-1.02-0.39-1.41,0L7.53,4.06c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l0.66-0.66 l0,3.2C7.4,8.01,6,9.63,6,11.59c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4c0-1.95-1.4-3.58-3.25-3.93l0-3.2l0.66,0.66 c0.29,0.29,0.77,0.29,1.06,0S12.76,4.35,12.47,4.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fact_check\": {\n    \"name\": \"fact_check\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M9,17H6c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1C10,16.55,9.55,17,9,17z M9,13H6 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1C10,12.55,9.55,13,9,13z M9,9H6C5.45,9,5,8.55,5,8c0-0.55,0.45-1,1-1h3 c0.55,0,1,0.45,1,1C10,8.55,9.55,9,9,9z M18.7,11.12l-3.17,3.17c-0.39,0.39-1.03,0.39-1.42,0l-1.41-1.42 c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71l2.47-2.47c0.39-0.39,1.02-0.39,1.41,0l0.01,0.01 C19.09,10.1,19.09,10.74,18.7,11.12z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V5 C17,4.45,16.55,4,16,4z M8.5,13h-3C5.22,13,5,12.78,5,12.5v0C5,12.22,5.22,12,5.5,12h3C8.78,12,9,12.22,9,12.5v0 C9,12.78,8.78,13,8.5,13z M8.5,10.5h-3C5.22,10.5,5,10.28,5,10v0c0-0.28,0.22-0.5,0.5-0.5h3C8.78,9.5,9,9.72,9,10v0 C9,10.28,8.78,10.5,8.5,10.5z M8.5,8h-3C5.22,8,5,7.78,5,7.5v0C5,7.22,5.22,7,5.5,7h3C8.78,7,9,7.22,9,7.5v0C9,7.78,8.78,8,8.5,8z M11.62,11.41l-0.71-0.71c-0.2-0.2-0.2-0.51,0-0.71l0,0c0.2-0.2,0.51-0.2,0.71,0l0.35,0.35l1.77-1.77c0.2-0.2,0.51-0.2,0.71,0l0,0 c0.2,0.2,0.2,0.51,0,0.71l-2.12,2.12C12.13,11.61,11.82,11.61,11.62,11.41z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_added\": {\n    \"name\": \"bookmark_added\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,5c0-1.1,0.9-2,2-2l7,0c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5c0.34,0,0.68-0.03,1-0.1v8.58c0,0.72-0.73,1.2-1.39,0.92 L12,18l-5.61,2.4C5.73,20.69,5,20.2,5,19.48V5z M22.07,3.34c0.39,0.39,0.39,1.02,0,1.41l-3.54,3.54c-0.39,0.39-1.02,0.39-1.41,0 l-1.41-1.41c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71l2.83-2.83C21.05,2.95,21.68,2.95,22.07,3.34z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_full\": {\n    \"name\": \"hourglass_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 4v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"invert_colors\": {\n    \"name\": \"invert_colors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4.81L12,19c-3.31,0-6-2.63-6-5.87c0-1.56,0.62-3.03,1.75-4.14L12,4.81 M6.35,7.56L6.35,7.56C4.9,8.99,4,10.96,4,13.13 C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87c0-2.17-0.9-4.14-2.35-5.57l0,0L12.7,2.69c-0.39-0.38-1.01-0.38-1.4,0L6.35,7.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.53,6.59L14.53,6.59l-4.17-4.23c-0.2-0.2-0.52-0.2-0.71,0L5.5,6.56c-1.08,1.11-1.75,2.62-1.75,4.28 c0,3.4,2.8,6.16,6.25,6.16s6.25-2.76,6.25-6.16C16.25,9.19,15.6,7.7,14.53,6.59z M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14 V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_media\": {\n    \"name\": \"perm_media\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,19H3V7c0-0.55-0.45-1-1-1S1,6.45,1,7v12c0,1.1,0.9,2,2,2h16c0.55,0,1-0.45,1-1S19.55,19,19,19z\\\"></path><path d=\\\"M21,4h-7l-1.41-1.41C12.21,2.21,11.7,2,11.17,2H7C5.9,2,5.01,2.9,5.01,4L5,15c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6 C23,4.9,22.1,4,21,4z M18,13h-8c-0.41,0-0.65-0.47-0.4-0.8l1.38-1.83c0.2-0.27,0.6-0.27,0.8,0L13,12l2.22-2.97 c0.2-0.27,0.6-0.27,0.8,0l2.38,3.17C18.65,12.53,18.41,13,18,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"assignment_return\": {\n    \"name\": \"assignment_return\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-4.65-4.65c-.2-.2-.2-.51 0-.71L12 8v3h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"pets\": {\n    \"name\": \"pets\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_empty\": {\n    \"name\": \"hourglass_empty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 2c-1.1 0-2 .9-2 2v3.17c0 .53.21 1.04.59 1.42L10 12l-3.42 3.42c-.37.38-.58.89-.58 1.42V20c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-3.16c0-.53-.21-1.04-.58-1.41L14 12l3.41-3.4c.38-.38.59-.89.59-1.42V4c0-1.1-.9-2-2-2H8zm8 14.5V19c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1v-2.5l4-4 4 4zm-4-5l-4-4V5c0-.55.45-1 1-1h6c.55 0 1 .45 1 1v2.5l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"code_off\": {\n    \"name\": \"code_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.17,12l-3.88-3.88c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l4.59,4.59c0.39,0.39,0.39,1.02,0,1.41 l-2.88,2.88L17,14.17L19.17,12z M2.1,4.93l3.49,3.49l-2.88,2.88c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59c0.39,0.39,1.02,0.39,1.41,0 l0,0c0.39-0.39,0.39-1.02,0-1.41L4.83,12L7,9.83L19.07,21.9c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51 c-0.39-0.39-1.02-0.39-1.41,0l0,0C1.71,3.91,1.71,4.54,2.1,4.93z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.47,10.53l-2.41,2.41L14,11.88L15.88,10l-3.41-3.41c-0.29-0.29-0.29-0.77,0-1.06l0,0c0.29-0.29,0.77-0.29,1.06,0 l3.94,3.94C17.76,9.76,17.76,10.24,17.47,10.53z M16.54,17.6L16.54,17.6c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46 c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l2.54,2.54L2.53,9.47c-0.29,0.29-0.29,0.77,0,1.06l3.94,3.94 c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06L4.12,10L6,8.12l9.48,9.48C15.77,17.89,16.25,17.89,16.54,17.6z\\\"></path>\"\n      }\n    }\n  },\n  \"aspect_ratio\": {\n    \"name\": \"aspect_ratio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 12c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zM7 9h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16.01H4c-.55 0-1-.45-1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.02c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"view_list\": {\n    \"name\": \"view_list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,14h2c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v2C3,13.55,3.45,14,4,14z M4,19h2c0.55,0,1-0.45,1-1 v-2c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v2C3,18.55,3.45,19,4,19z M4,9h2c0.55,0,1-0.45,1-1V6c0-0.55-0.45-1-1-1H4 C3.45,5,3,5.45,3,6v2C3,8.55,3.45,9,4,9z M9,14h11c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1H9c-0.55,0-1,0.45-1,1v2 C8,13.55,8.45,14,9,14z M9,19h11c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1H9c-0.55,0-1,0.45-1,1v2C8,18.55,8.45,19,9,19z M8,6v2 c0,0.55,0.45,1,1,1h11c0.55,0,1-0.45,1-1V6c0-0.55-0.45-1-1-1H9C8.45,5,8,5.45,8,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,12.83v1.67C6,14.78,5.78,15,5.5,15h-2C3.22,15,3,14.78,3,14.5v-1.67c0-0.28,0.22-0.5,0.5-0.5h2 C5.78,12.33,6,12.56,6,12.83z M5.5,8.67h-2C3.22,8.67,3,8.89,3,9.17v1.67c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5V9.17 C6,8.89,5.78,8.67,5.5,8.67z M5.5,5h-2C3.22,5,3,5.22,3,5.5v1.67c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5V5.5 C6,5.22,5.78,5,5.5,5z M7,9.17v1.67c0,0.28,0.22,0.5,0.5,0.5h9c0.28,0,0.5-0.22,0.5-0.5V9.17c0-0.28-0.22-0.5-0.5-0.5h-9 C7.22,8.67,7,8.89,7,9.17z M7.5,15h9c0.28,0,0.5-0.22,0.5-0.5v-1.67c0-0.28-0.22-0.5-0.5-0.5h-9c-0.28,0-0.5,0.22-0.5,0.5v1.67 C7,14.78,7.22,15,7.5,15z M17,7.17V5.5C17,5.22,16.78,5,16.5,5h-9C7.22,5,7,5.22,7,5.5v1.67c0,0.28,0.22,0.5,0.5,0.5h9 C16.78,7.67,17,7.44,17,7.17z\\\"></path>\"\n      }\n    }\n  },\n  \"star_rate\": {\n    \"name\": \"star_rate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.43,10l-1.47-4.84c-0.29-0.95-1.63-0.95-1.91,0L9.57,10H5.12c-0.97,0-1.37,1.25-0.58,1.81l3.64,2.6l-1.43,4.61 c-0.29,0.93,0.79,1.68,1.56,1.09L12,17.31l3.69,2.81c0.77,0.59,1.85-0.16,1.56-1.09l-1.43-4.61l3.64-2.6 c0.79-0.57,0.39-1.81-0.58-1.81H14.43z\\\"></path></g>\"\n      },\n      \"18\": {\n        \"width\": 18,\n        \"path\": \"<path d=\\\"M0 0h18v18H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11.3l2.46 1.79c.39.29.92-.1.77-.56l-.94-2.89 2.43-1.73c.4-.28.2-.91-.29-.91h-2.98l-.97-3.02c-.15-.46-.8-.46-.95 0L7.55 7H4.57c-.49 0-.69.63-.29.91l2.43 1.73-.94 2.89c-.15.46.38.84.77.56L9 11.3z\\\"></path>\"\n      }\n    }\n  },\n  \"announcement\": {\n    \"name\": \"announcement\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 9c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_module\": {\n    \"name\": \"view_module\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.67,6v4.5c0,0.55-0.45,1-1,1h-3.33c-0.55,0-1-0.45-1-1V6c0-0.55,0.45-1,1-1h3.33C14.22,5,14.67,5.45,14.67,6z M16.67,11.5H20c0.55,0,1-0.45,1-1V6c0-0.55-0.45-1-1-1h-3.33c-0.55,0-1,0.45-1,1v4.5C15.67,11.05,16.11,11.5,16.67,11.5z M14.67,18v-4.5c0-0.55-0.45-1-1-1h-3.33c-0.55,0-1,0.45-1,1V18c0,0.55,0.45,1,1,1h3.33C14.22,19,14.67,18.55,14.67,18z M15.67,13.5V18c0,0.55,0.45,1,1,1H20c0.55,0,1-0.45,1-1v-4.5c0-0.55-0.45-1-1-1h-3.33C16.11,12.5,15.67,12.95,15.67,13.5z M7.33,12.5H4c-0.55,0-1,0.45-1,1V18c0,0.55,0.45,1,1,1h3.33c0.55,0,1-0.45,1-1v-4.5C8.33,12.95,7.89,12.5,7.33,12.5z M8.33,10.5V6 c0-0.55-0.45-1-1-1H4C3.45,5,3,5.45,3,6v4.5c0,0.55,0.45,1,1,1h3.33C7.89,11.5,8.33,11.05,8.33,10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,14.5V11c0-0.28,0.22-0.5,0.5-0.5h3c0.28,0,0.5,0.22,0.5,0.5v3.5c0,0.28-0.22,0.5-0.5,0.5h-3C8.22,15,8,14.78,8,14.5z M13.5,9.5h3C16.78,9.5,17,9.28,17,9V5.5C17,5.22,16.78,5,16.5,5h-3C13.22,5,13,5.22,13,5.5V9C13,9.28,13.22,9.5,13.5,9.5z M8,5.5V9 c0,0.28,0.22,0.5,0.5,0.5h3C11.78,9.5,12,9.28,12,9V5.5C12,5.22,11.78,5,11.5,5h-3C8.22,5,8,5.22,8,5.5z M7,9V5.5 C7,5.22,6.78,5,6.5,5h-3C3.22,5,3,5.22,3,5.5V9c0,0.28,0.22,0.5,0.5,0.5h3C6.78,9.5,7,9.28,7,9z M13,11v3.5c0,0.28,0.22,0.5,0.5,0.5 h3c0.28,0,0.5-0.22,0.5-0.5V11c0-0.28-0.22-0.5-0.5-0.5h-3C13.22,10.5,13,10.72,13,11z M6.5,10.5h-3C3.22,10.5,3,10.72,3,11v3.5 C3,14.78,3.22,15,3.5,15h3C6.78,15,7,14.78,7,14.5V11C7,10.72,6.78,10.5,6.5,10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_border\": {\n    \"name\": \"bookmark_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12z\\\"></path>\"\n      }\n    }\n  },\n  \"view_carousel\": {\n    \"name\": \"view_carousel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,7h2c0.55,0,1,0.45,1,1v8c0,0.55-0.45,1-1,1H3c-0.55,0-1-0.45-1-1V8C2,7.45,2.45,7,3,7z M8,19h8c0.55,0,1-0.45,1-1V6 c0-0.55-0.45-1-1-1H8C7.45,5,7,5.45,7,6v12C7,18.55,7.45,19,8,19z M19,7h2c0.55,0,1,0.45,1,1v8c0,0.55-0.45,1-1,1h-2 c-0.55,0-1-0.45-1-1V8C18,7.45,18.45,7,19,7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2.5,6.5h2C4.78,6.5,5,6.72,5,7v6c0,0.28-0.22,0.5-0.5,0.5h-2C2.22,13.5,2,13.28,2,13V7C2,6.72,2.22,6.5,2.5,6.5z M15,7v6 c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5V7c0-0.28-0.22-0.5-0.5-0.5h-2C15.22,6.5,15,6.72,15,7z M6.5,5h7 C13.78,5,14,5.22,14,5.5v9c0,0.28-0.22,0.5-0.5,0.5h-7C6.22,15,6,14.78,6,14.5v-9C6,5.22,6.22,5,6.5,5z\\\"></path>\"\n      }\n    }\n  },\n  \"trending_down\": {\n    \"name\": \"trending_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.85 17.15l1.44-1.44-4.88-4.88-3.29 3.29c-.39.39-1.02.39-1.41 0l-6-6.01c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L9.41 12l3.29-3.29c.39-.39 1.02-.39 1.41 0l5.59 5.58 1.44-1.44c.31-.31.85-.09.85.35v4.29c0 .28-.22.5-.5.5H17.2c-.44.01-.66-.53-.35-.84z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_land\": {\n    \"name\": \"flight_land\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 19h-17c-.55 0-1 .45-1 1s.45 1 1 1h17c.55 0 1-.45 1-1s-.45-1-1-1zM3.51 11.61l15.83 4.24c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.58-8.45c-.11-.36-.39-.63-.75-.73-.68-.18-1.35.33-1.35 1.04v6.88L5.15 8.95 4.4 7.09c-.12-.29-.36-.51-.67-.59l-.33-.09c-.32-.09-.63.15-.63.48v3.75c0 .46.3.85.74.97z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_drive\": {\n    \"name\": \"add_to_drive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,11c0.17,0,0.33,0.01,0.49,0.02L15,3H9l5.68,9.84C15.77,11.71,17.3,11,19,11z\\\"></path><polygon points=\\\"8.15,4.52 2,15.5 5,21 11.33,10.03\\\"></polygon><path d=\\\"M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94,13,18.54,13,17C13,16.48,13.07,15.98,13.2,15.5z\\\"></path><polygon points=\\\"20,16 20,13 18,13 18,16 15,16 15,18 18,18 18,21 19,21 20,21 20,18 23,18 23,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.98,9L12.5,3h-5l4.59,7.92C13,9.77,14.39,9.01,15.98,9z\\\"></path><path d=\\\"M11.25,12.5H8.84L6.23,17h5.79C11.39,16.16,11,15.13,11,14C11,13.47,11.1,12.98,11.25,12.5z\\\"></path><polygon points=\\\"6.63,4.5 2,12.5 4.5,17 9.19,8.91\\\"></polygon><polygon points=\\\"16.75,13.25 16.75,11 15.25,11 15.25,13.25 13,13.25 13,14.75 15.25,14.75 15.25,17 15.5,17 16.75,17 16.75,14.75 19,14.75 19,13.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"autorenew\": {\n    \"name\": \"autorenew\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V4c-4.42 0-8 3.58-8 8 0 1.04.2 2.04.57 2.95.27.67 1.13.85 1.64.34.27-.27.38-.68.23-1.04C6.15 13.56 6 12.79 6 12c0-3.31 2.69-6 6-6zm5.79 2.71c-.27.27-.38.69-.23 1.04.28.7.44 1.46.44 2.25 0 3.31-2.69 6-6 6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.35V20c4.42 0 8-3.58 8-8 0-1.04-.2-2.04-.57-2.95-.27-.67-1.13-.85-1.64-.34z\\\"></path>\"\n      }\n    }\n  },\n  \"settings\": {\n    \"name\": \"settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\"\n      }\n    }\n  },\n  \"translate\": {\n    \"name\": \"translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.65 15.67c.14-.36.05-.77-.23-1.05l-2.09-2.06.03-.03c1.74-1.94 2.98-4.17 3.71-6.53h1.94c.54 0 .99-.45.99-.99v-.02c0-.54-.45-.99-.99-.99H10V3c0-.55-.45-1-1-1s-1 .45-1 1v1H1.99c-.54 0-.99.45-.99.99 0 .55.45.99.99.99h10.18C11.5 7.92 10.44 9.75 9 11.35c-.81-.89-1.49-1.86-2.06-2.88-.16-.29-.45-.47-.78-.47-.69 0-1.13.75-.79 1.35.63 1.13 1.4 2.21 2.3 3.21L3.3 16.87c-.4.39-.4 1.03 0 1.42.39.39 1.02.39 1.42 0L9 14l2.02 2.02c.51.51 1.38.32 1.63-.35zM17.5 10c-.6 0-1.14.37-1.35.94l-3.67 9.8c-.24.61.22 1.26.87 1.26.39 0 .74-.24.88-.61l.89-2.39h4.75l.9 2.39c.14.36.49.61.88.61.65 0 1.11-.65.88-1.26l-3.67-9.8c-.22-.57-.76-.94-1.36-.94zm-1.62 7l1.62-4.33L19.12 17h-3.24z\\\"></path>\"\n      }\n    }\n  },\n  \"schedule_send\": {\n    \"name\": \"schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,10c0.1,0,0.19,0.01,0.28,0.01L4.39,4.58C3.73,4.31,3,4.79,3,5.51v3.71c0,0.46,0.31,0.86,0.76,0.97L11,12l-7.24,1.81 C3.31,13.92,3,14.32,3,14.78v3.71c0,0.72,0.73,1.2,1.39,0.92L10,17.05c0-0.02,0-0.03,0-0.05C10,13.14,13.14,10,17,10z\\\"></path><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.29,19l-1.65-1.65 c-0.09-0.09-0.15-0.22-0.15-0.35v-2.5c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v2.29l1.5,1.5c0.2,0.2,0.2,0.51,0,0.71 l0,0C18.8,19.2,18.49,19.2,18.29,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_repeat\": {\n    \"name\": \"event_repeat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12V6c0-1.1-0.9-2-2-2h-1V3c0-0.55-0.45-1-1-1s-1,0.45-1,1v1H8V3c0-0.55-0.45-1-1-1S6,2.45,6,3v1H5C3.9,4,3,4.9,3,6v14 c0,1.1,0.9,2,2,2h7v-2H5V10h14v2H21z M15.13,20c-0.55,0-0.91,0.56-0.68,1.06C15.23,22.79,16.97,24,19,24c2.76,0,5-2.24,5-5 s-2.24-5-5-5c-1.36,0-2.6,0.55-3.5,1.43l0-0.68c0-0.41-0.34-0.75-0.75-0.75h0C14.34,14,14,14.34,14,14.75V17c0,0.55,0.45,1,1,1 h2.25c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75l-0.7,0c0.63-0.62,1.5-1,2.45-1c1.93,0,3.5,1.57,3.5,3.5 s-1.57,3.5-3.5,3.5c-1.42,0-2.64-0.85-3.19-2.06C15.69,20.17,15.42,20,15.13,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,10.5v-5C17,4.68,16.33,4,15.5,4H14V2.78c0-0.41-0.32-0.77-0.73-0.78c-0.42-0.01-0.77,0.33-0.77,0.75V4h-5V2.75 C7.5,2.33,7.15,1.99,6.73,2C6.32,2.01,6,2.37,6,2.78L6,4H4.5C3.67,4,3,4.68,3,5.5v11C3,17.33,3.67,18,4.5,18h6v-1.5h-6V9h11v1.5H17 z M16,20c-1.82,0-3.35-1.21-3.84-2.87c-0.09-0.32,0.15-0.63,0.48-0.63c0.22,0,0.42,0.15,0.48,0.36C13.5,18.1,14.64,19,16,19 c1.66,0,3-1.34,3-3s-1.34-3-3-3c-0.89,0-1.69,0.39-2.24,1l0.74,0c0.28,0,0.5,0.22,0.5,0.5c0,0.28-0.22,0.5-0.5,0.5h-2 c-0.28,0-0.5-0.22-0.5-0.5v-2c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5l0,0.85c0.73-0.83,1.81-1.35,3-1.35 c2.21,0,4,1.79,4,4C20,18.21,18.21,20,16,20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"donut_small\": {\n    \"name\": \"donut_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 3.18v17.64c0 .64-.59 1.12-1.21.98C5.32 20.8 2 16.79 2 12s3.32-8.8 7.79-9.8c.62-.14 1.21.34 1.21.98zm2.03 0v6.81c0 .55.45 1 1 1h6.79c.64 0 1.12-.59.98-1.22-.85-3.76-3.8-6.72-7.55-7.57-.63-.14-1.22.34-1.22.98zm0 10.83v6.81c0 .64.59 1.12 1.22.98 3.76-.85 6.71-3.82 7.56-7.58.14-.62-.35-1.22-.98-1.22h-6.79c-.56.01-1.01.46-1.01 1.01z\\\"></path>\"\n      }\n    }\n  },\n  \"pending\": {\n    \"name\": \"pending\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M7,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6.5,11c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,10.55,7.05,11,6.5,11z M10,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11,10.55,10.55,11,10,11z M13.5,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.5,10.55,14.05,11,13.5,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"description\": {\n    \"name\": \"description\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.59 2.59c-.38-.38-.89-.59-1.42-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.82-4.83zM15 18H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm-2-6V3.5L18.5 9H14c-.55 0-1-.45-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"card_travel\": {\n    \"name\": \"card_travel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V9c0-.55.45-1 1-1h2v1c0 .55.45 1 1 1s1-.45 1-1V8h6v1c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down_off_alt\": {\n    \"name\": \"thumb_down_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.99,3H6C5.2,3,4.48,3.48,4.17,4.21l-3.26,7.61C0.06,13.8,1.51,16,3.66,16h5.65l-0.95,4.58 c-0.1,0.5,0.05,1.01,0.41,1.37c0.29,0.29,0.67,0.43,1.05,0.43c0.38,0,0.77-0.15,1.06-0.44l5.53-5.54 c0.37-0.37,0.58-0.88,0.58-1.41V5C16.99,3.9,16.09,3,14.99,3z M10.66,19.33l0.61-2.92l0.5-2.41H9.31H3.66 c-0.47,0-0.72-0.28-0.83-0.45c-0.11-0.17-0.27-0.51-0.08-0.95L6,5h8.99l0,9.99L10.66,19.33z\\\"></path><path d=\\\"M21,3c-1.1,0-2,0.9-2,2v8c0,1.1,0.9,2,2,2s2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_contact_calendar\": {\n    \"name\": \"perm_contact_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"try\": {\n    \"name\": \"try\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v15.59c0,0.89,1.08,1.34,1.71,0.71L6,18h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M13.57,11.57 l-1.12,2.44c-0.18,0.39-0.73,0.39-0.91,0l-1.12-2.44l-2.44-1.12c-0.39-0.18-0.39-0.73,0-0.91l2.44-1.12l1.12-2.44 c0.18-0.39,0.73-0.39,0.91,0l1.12,2.44l2.44,1.12c0.39,0.18,0.39,0.73,0,0.91L13.57,11.57z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_task\": {\n    \"name\": \"add_task\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.29,5.89l-10,10c-0.39,0.39-1.02,0.39-1.41,0l-2.83-2.83c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0 l2.12,2.12l9.29-9.29c0.39-0.39,1.02-0.39,1.41,0v0C21.68,4.87,21.68,5.5,21.29,5.89z M12,20c-4.71,0-8.48-4.09-7.95-8.9 c0.39-3.52,3.12-6.41,6.61-6.99c1.81-0.3,3.53,0.02,4.99,0.78c0.39,0.2,0.86,0.13,1.17-0.18l0,0c0.48-0.48,0.36-1.29-0.24-1.6 C15.11,2.36,13.45,1.95,11.68,2c-5.14,0.16-9.41,4.34-9.67,9.47C1.72,17.24,6.3,22,12,22c1.2,0,2.34-0.21,3.41-0.6 c0.68-0.25,0.87-1.13,0.35-1.65l0,0c-0.27-0.27-0.68-0.37-1.04-0.23C13.87,19.83,12.95,20,12,20z M19,15h-2c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2v-2c0-0.55-0.45-1-1-1 h0c-0.55,0-1,0.45-1,1V15z\\\"></path>\"\n      }\n    }\n  },\n  \"private_connectivity\": {\n    \"name\": \"private_connectivity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0-0.55-0.45-1-1-1h-2.07c-0.49-3.39-3.4-6-6.93-6s-6.44,2.61-6.93,6H3c-0.55,0-1,0.45-1,1s0.45,1,1,1h2.07 c0.49,3.39,3.4,6,6.93,6s6.44-2.61,6.93-6H21C21.55,13,22,12.55,22,12z M15,14.5c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1v-3 c0-0.55,0.45-1,1-1v-1c0-1.21,1.08-2.18,2.34-1.97C13.32,7.69,14,8.61,14,9.61v0.89c0.55,0,1,0.45,1,1V14.5z M12.75,13 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S12.75,12.59,12.75,13z M13,9.5v1h-2v-1 c0-0.55,0.45-1,1-1S13,8.95,13,9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10c0-0.41-0.34-0.75-0.75-0.75h-1.8C15.08,6.57,12.78,4.5,10,4.5S4.92,6.57,4.55,9.25h-1.8C2.34,9.25,2,9.59,2,10 s0.34,0.75,0.75,0.75h1.8C4.92,13.43,7.22,15.5,10,15.5s5.08-2.07,5.45-4.75h1.8C17.66,10.75,18,10.41,18,10z M12.5,12 c0,0.28-0.22,0.5-0.5,0.5H8c-0.28,0-0.5-0.22-0.5-0.5V9c0-0.28,0.22-0.5,0.5-0.5h0.5V8c0-0.82,0.67-1.5,1.5-1.5s1.5,0.68,1.5,1.5 v0.5H12c0.28,0,0.5,0.22,0.5,0.5V12z M10.75,8v0.5h-1.5V8c0-0.41,0.34-0.75,0.75-0.75S10.75,7.59,10.75,8z M9.4,10.5 c0-0.33,0.27-0.6,0.6-0.6s0.6,0.27,0.6,0.6c0,0.33-0.27,0.6-0.6,0.6S9.4,10.83,9.4,10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"visibility\": {\n    \"name\": \"visibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"https\": {\n    \"name\": \"https\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"code\": {\n    \"name\": \"code\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.7 15.9L4.8 12l3.9-3.9c.39-.39.39-1.01 0-1.4-.39-.39-1.01-.39-1.4 0l-4.59 4.59c-.39.39-.39 1.02 0 1.41l4.59 4.6c.39.39 1.01.39 1.4 0 .39-.39.39-1.01 0-1.4zm6.6 0l3.9-3.9-3.9-3.9c-.39-.39-.39-1.01 0-1.4.39-.39 1.01-.39 1.4 0l4.59 4.59c.39.39.39 1.02 0 1.41l-4.59 4.6c-.39.39-1.01.39-1.4 0-.39-.39-.39-1.01 0-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_circle\": {\n    \"name\": \"account_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 4c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm0 14c-2.03 0-4.43-.82-6.14-2.88C7.55 15.8 9.68 15 12 15s4.45.8 6.14 2.12C16.43 19.18 14.03 20 12 20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 3.5c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 11c-2.05 0-3.87-.95-5.07-2.44 1.45-.98 3.19-1.56 5.07-1.56s3.62.58 5.07 1.56c-1.2 1.49-3.02 2.44-5.07 2.44z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"delete_forever\": {\n    \"name\": \"delete_forever\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M6,19c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V7H6V19z M9.17,12.59c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0 L12,12.59l1.41-1.41c0.39-0.39,1.02-0.39,1.41,0s0.39,1.02,0,1.41L13.41,14l1.41,1.41c0.39,0.39,0.39,1.02,0,1.41 s-1.02,0.39-1.41,0L12,15.41l-1.41,1.41c-0.39,0.39-1.02,0.39-1.41,0c-0.39-0.39-0.39-1.02,0-1.41L10.59,14L9.17,12.59z M18,4h-2.5 l-0.71-0.71C14.61,3.11,14.35,3,14.09,3H9.91c-0.26,0-0.52,0.11-0.7,0.29L8.5,4H6C5.45,4,5,4.45,5,5s0.45,1,1,1h12 c0.55,0,1-0.45,1-1S18.55,4,18,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_down\": {\n    \"name\": \"arrow_circle_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1l0,3H9.21 c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.79c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79c0.31-0.31,0.09-0.85-0.35-0.85H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7.5C10.5,7.22,10.28,7,10,7h0C9.72,7,9.5,7.22,9.5,7.5V10H7l3,3l3-3 H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"loyalty\": {\n    \"name\": \"loyalty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27l-3.92 3.92c-.2.2-.51.2-.71 0l-3.92-3.92c-.57-.58-.87-1.43-.67-2.34.19-.88.89-1.61 1.76-1.84.94-.25 1.85.04 2.44.65l.75.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_accounts\": {\n    \"name\": \"manage_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10.67,13.02C10.45,13.01,10.23,13,10,13c-2.42,0-4.68,0.67-6.61,1.82C2.51,15.34,2,16.32,2,17.35V19c0,0.55,0.45,1,1,1 h8.26C10.47,18.87,10,17.49,10,16C10,14.93,10.25,13.93,10.67,13.02z\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M20.75,16c0-0.22-0.03-0.42-0.06-0.63l0.84-0.73c0.18-0.16,0.22-0.42,0.1-0.63l-0.59-1.02c-0.12-0.21-0.37-0.3-0.59-0.22 l-1.06,0.36c-0.32-0.27-0.68-0.48-1.08-0.63l-0.22-1.09c-0.05-0.23-0.25-0.4-0.49-0.4h-1.18c-0.24,0-0.44,0.17-0.49,0.4 l-0.22,1.09c-0.4,0.15-0.76,0.36-1.08,0.63l-1.06-0.36c-0.23-0.08-0.47,0.02-0.59,0.22l-0.59,1.02c-0.12,0.21-0.08,0.47,0.1,0.63 l0.84,0.73c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-0.84,0.73c-0.18,0.16-0.22,0.42-0.1,0.63l0.59,1.02 c0.12,0.21,0.37,0.3,0.59,0.22l1.06-0.36c0.32,0.27,0.68,0.48,1.08,0.63l0.22,1.09c0.05,0.23,0.25,0.4,0.49,0.4h1.18 c0.24,0,0.44-0.17,0.49-0.4l0.22-1.09c0.4-0.15,0.76-0.36,1.08-0.63l1.06,0.36c0.23,0.08,0.47-0.02,0.59-0.22l0.59-1.02 c0.12-0.21,0.08-0.47-0.1-0.63l-0.84-0.73C20.72,16.42,20.75,16.22,20.75,16z M17,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S18.1,18,17,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_protected_setup\": {\n    \"name\": \"wifi_protected_setup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.7,5.3l1.44-1.44c0.32-0.32,0.09-0.85-0.35-0.85H11.5c-0.28,0-0.5,0.22-0.5,0.5V9.8c0,0.45,0.54,0.67,0.85,0.35 l1.45-1.45c1.97,1.46,3.25,3.78,3.25,6.42c0,0.66-0.08,1.31-0.24,1.92c-0.12,0.5,0.48,0.86,0.84,0.49 c1.48-1.53,2.4-3.61,2.4-5.91C19.55,9.11,18.44,6.86,16.7,5.3z\\\"></path></g><g><path d=\\\"M12.15,13.86L10.7,15.3c-1.97-1.46-3.25-3.78-3.25-6.42c0-0.66,0.08-1.31,0.24-1.92c0.12-0.5-0.48-0.86-0.84-0.49 c-1.48,1.53-2.4,3.61-2.4,5.91c0,2.52,1.1,4.77,2.84,6.33l-1.44,1.44c-0.32,0.32-0.09,0.85,0.35,0.85h6.29 c0.28,0,0.5-0.22,0.5-0.5v-6.29C13,13.77,12.46,13.54,12.15,13.86z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15,4H9.5C9.22,4,9,4.22,9,4.5V10l1.8-1.8c1.22,0.91,2.01,2.35,2.01,3.99c0,0.75-0.18,1.45-0.47,2.09 c1.49-0.98,2.47-2.67,2.47-4.59c0-1.52-0.62-2.89-1.61-3.89L15,4z\\\"></path></g><g><path d=\\\"M7.19,7.84c0-0.75,0.18-1.45,0.47-2.09c-1.49,0.98-2.47,2.67-2.47,4.59c0,1.52,0.62,2.89,1.61,3.89L5,16h5.5 c0.28,0,0.5-0.22,0.5-0.5v-5.47l-1.8,1.8C7.99,10.91,7.19,9.47,7.19,7.84z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"not_started\": {\n    \"name\": \"not_started\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M11,15c0,0.55-0.45,1-1,1s-1-0.45-1-1 V9c0-0.55,0.45-1,1-1s1,0.45,1,1V15z M16.02,12.78l-2.4,1.92C12.97,15.22,12,14.76,12,13.92v-3.84c0-0.84,0.97-1.3,1.62-0.78 l2.4,1.92C16.52,11.62,16.52,12.38,16.02,12.78z\\\"></path><polygon fill=\\\"none\\\" points=\\\"24,24 0,23.97 0,0 24,0.03\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M9,12.5C9,12.78,8.78,13,8.5,13S8,12.78,8,12.5v-5 C8,7.22,8.22,7,8.5,7S9,7.22,9,7.5V12.5z M13.47,10.4l-2.67,2C10.47,12.65,10,12.41,10,12V8c0-0.41,0.47-0.65,0.8-0.4l2.67,2 C13.73,9.8,13.73,10.2,13.47,10.4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"join_inner\": {\n    \"name\": \"join_inner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.68,6.8c-0.39-0.35-0.98-0.35-1.37,0C9.35,8.56,9,10.84,9,12c0,1.15,0.35,3.44,2.32,5.2c0.39,0.35,0.98,0.35,1.37,0 C14.65,15.44,15,13.16,15,12C15,10.85,14.65,8.56,12.68,6.8z\\\"></path><g><path d=\\\"M9.04,16.87C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5c0.36,0,0.71,0.05,1.04,0.13 c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C9.92,17.99,9.43,17.43,9.04,16.87z\\\"></path></g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.34,6.06c-0.18-0.18-0.5-0.18-0.68,0C8.23,7.45,8,9.14,8,10c0,0.85,0.23,2.55,1.66,3.94c0.18,0.18,0.5,0.18,0.68,0 C11.77,12.55,12,10.85,12,10C12,9.15,11.77,7.45,10.34,6.06z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M6.5,14c-2.21,0-4-1.79-4-4s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18 C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"highlight_alt\": {\n    \"name\": \"highlight_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,5h-2V3h2V5z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3 C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3 C3.9,3,3,3.9,3,5z M18.71,17.29l1.44-1.44c0.32-0.32,0.09-0.85-0.35-0.85H16c-0.55,0-1,0.45-1,1v3.79c0,0.45,0.54,0.67,0.85,0.35 l1.44-1.44l2,2c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L18.71,17.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rule\": {\n    \"name\": \"rule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.83,10.29l-2.12-2.12c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l1.41,1.41l3.54-3.54 c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41l-4.24,4.24C16.85,10.68,16.22,10.68,15.83,10.29z M10,7H3 C2.45,7,2,7.45,2,8v0c0,0.55,0.45,1,1,1h7c0.55,0,1-0.45,1-1v0C11,7.45,10.55,7,10,7z M20.29,12.71L20.29,12.71 c-0.39-0.39-1.02-0.39-1.41,0L17,14.59l-1.88-1.88c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L15.59,16 l-1.88,1.88c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0L17,17.41l1.88,1.88c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L18.41,16l1.88-1.88C20.68,13.73,20.68,13.1,20.29,12.71z M10,15H3c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h7c0.55,0,1-0.45,1-1v0C11,15.45,10.55,15,10,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"maximize\": {\n    \"name\": \"maximize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 3h16c.55 0 1 .45 1 1s-.45 1-1 1H4c-.55 0-1-.45-1-1s.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"payment\": {\n    \"name\": \"payment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm-1 14H5c-.55 0-1-.45-1-1v-5h16v5c0 .55-.45 1-1 1zm1-10H4V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_indicator\": {\n    \"name\": \"drag_indicator\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"event_seat\": {\n    \"name\": \"event_seat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 21c.83 0 1.5-.67 1.5-1.5V18h10v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V17c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v2.5c0 .83.67 1.5 1.5 1.5zM20 10h1c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1zM3 10h1c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1zm14 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"browse_gallery\": {\n    \"name\": \"browse_gallery\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9S13.97,3,9,3z M11.09,15.5L8.59,13C8.21,12.62,8,12.12,8,11.59V8 c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3.59l2.5,2.5c0.39,0.39,0.39,1.02,0,1.41l0,0C12.11,15.89,11.48,15.89,11.09,15.5z\\\"></path><path d=\\\"M17.99,5.08L17.99,5.08c0,0.37,0.21,0.69,0.53,0.88C20.6,7.17,22,9.42,22,12c0,2.58-1.4,4.83-3.48,6.04 c-0.32,0.19-0.53,0.51-0.53,0.88v0c0,0.77,0.84,1.25,1.51,0.86C22.18,18.22,24,15.32,24,12c0-3.32-1.82-6.22-4.5-7.78 C18.83,3.83,17.99,4.31,17.99,5.08z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,4.01L14,4.01c0,0.33,0.22,0.62,0.54,0.71C16.82,5.39,18.5,7.5,18.5,10s-1.68,4.61-3.96,5.28 C14.22,15.37,14,15.66,14,15.99v0c0,0.5,0.48,0.86,0.97,0.72C17.87,15.86,20,13.18,20,10c0-3.18-2.13-5.86-5.03-6.71 C14.48,3.15,14,3.51,14,4.01z\\\"></path><path d=\\\"M7,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C14,6.13,10.87,3,7,3z M8.55,12.3l-2.01-2.01 c-0.19-0.19-0.29-0.44-0.29-0.71V6.75C6.25,6.34,6.59,6,7,6h0c0.41,0,0.75,0.34,0.75,0.75v2.63l1.86,1.86 c0.29,0.29,0.29,0.77,0,1.06l0,0C9.32,12.59,8.84,12.59,8.55,12.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"list\": {\n    \"name\": \"list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M4 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm-3 5c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"output\": {\n    \"name\": \"output\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.71,16.29l3.59-3.59c0.39-0.39,0.39-1.02,0-1.41l-3.59-3.59c-0.39-0.39-1.02-0.39-1.41,0v0 c-0.39,0.39-0.39,1.02,0,1.41L18.17,11H10c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h8.17l-1.88,1.88c-0.39,0.39-0.39,1.02,0,1.41 l0,0C16.68,16.68,17.32,16.68,17.71,16.29z\\\"></path><path d=\\\"M19,19H5V5h14v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14 c1.11,0,2-0.9,2-2v-1c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.53,13.47l2.76-2.76c0.39-0.39,0.39-1.02,0-1.41l-2.76-2.76c-0.29-0.29-0.77-0.29-1.06,0l0,0 c-0.29,0.29-0.29,0.77,0,1.06l1.66,1.66H8.75C8.34,9.25,8,9.59,8,10v0c0,0.41,0.34,0.75,0.75,0.75h6.38l-1.66,1.66 c-0.29,0.29-0.29,0.77,0,1.06l0,0C13.76,13.76,14.24,13.76,14.53,13.47z\\\"></path><path d=\\\"M15.5,15.5h-11v-11h11v0.75C15.5,5.66,15.84,6,16.25,6l0,0C16.66,6,17,5.66,17,5.25V4.5C17,3.67,16.33,3,15.5,3h-11 C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-0.75c0-0.41-0.34-0.75-0.75-0.75l0,0 c-0.41,0-0.75,0.34-0.75,0.75V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"touch_app\": {\n    \"name\": \"touch_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.79,9.24V5.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v3.74c1.21-0.81,2-2.18,2-3.74c0-2.49-2.01-4.5-4.5-4.5 s-4.5,2.01-4.5,4.5C6.79,7.06,7.58,8.43,8.79,9.24z M14.29,11.71c-0.28-0.14-0.58-0.21-0.89-0.21h-0.61v-6 c0-0.83-0.67-1.5-1.5-1.5s-1.5,0.67-1.5,1.5v10.74l-3.44-0.72c-0.37-0.08-0.76,0.04-1.03,0.31c-0.43,0.44-0.43,1.14,0,1.58 l4.01,4.01C9.71,21.79,10.22,22,10.75,22h6.1c1,0,1.84-0.73,1.98-1.72l0.63-4.47c0.12-0.85-0.32-1.69-1.09-2.07L14.29,11.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"donut_large\": {\n    \"name\": \"donut_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.07 5.32C16.26 6 18 7.74 18.68 9.93c.19.63.76 1.07 1.41 1.07h.04c1 0 1.72-.96 1.43-1.91-.97-3.18-3.48-5.69-6.66-6.66-.94-.29-1.9.43-1.9 1.43v.04c0 .66.44 1.23 1.07 1.42zm4.61 8.75c-.68 2.2-2.42 3.93-4.61 4.61-.63.19-1.07.76-1.07 1.41v.04c0 1 .96 1.72 1.91 1.43 3.18-.97 5.69-3.48 6.66-6.66.29-.95-.43-1.91-1.42-1.91h-.05c-.66.01-1.23.45-1.42 1.08zM11 20.11c0-.67-.45-1.24-1.09-1.44C7.07 17.78 5 15.13 5 12s2.07-5.78 4.91-6.67c.64-.2 1.09-.77 1.09-1.44v-.01c0-1-.97-1.74-1.93-1.44C4.98 3.69 2 7.5 2 12c0 4.5 2.98 8.31 7.07 9.56.96.3 1.93-.44 1.93-1.45z\\\"></path>\"\n      }\n    }\n  },\n  \"troubleshoot\": {\n    \"name\": \"troubleshoot\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.29,19.88l-3.98-3.98c1.3-1.67,1.96-3.85,1.58-6.2c-0.54-3.41-3.33-6.14-6.75-6.62C7.57,2.44,3.61,5.69,3.07,10h2.02 c0.53-3.13,3.48-5.44,6.85-4.93c2.61,0.4,4.7,2.57,5.02,5.2C17.39,13.9,14.55,17,11,17c-2.42,0-4.5-1.44-5.45-3.5H3.4 C4.45,16.69,7.46,19,11,19c1.85,0,3.55-0.63,4.9-1.69l3.98,3.98c0.39,0.39,1.02,0.39,1.41,0l0,0 C21.68,20.9,21.68,20.27,21.29,19.88z\\\"></path><path d=\\\"M8.43,9.69l1.03,4.47C9.57,14.65,10.01,15,10.51,15h0c0.46,0,0.87-0.3,1.02-0.74l1.01-3.04l0.69,1.66 c0.16,0.37,0.52,0.62,0.92,0.62h0.58c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H14.5l-0.97-2.34 C13.36,9.26,12.97,9,12.53,9h-0.05c-0.46,0-0.87,0.3-1.02,0.74l-0.88,2.63L9.54,7.83C9.43,7.35,8.99,7,8.49,7h0 C8.02,7,7.6,7.31,7.46,7.76L6.45,11h-4.7C1.34,11,1,11.34,1,11.75v0c0,0.41,0.34,0.75,0.75,0.75h5.07c0.44,0,0.82-0.28,0.95-0.7 L8.43,9.69z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.48,16.41l-3.74-3.74c0.99-1.28,1.48-2.96,1.16-4.77c-0.44-2.47-2.48-4.45-4.97-4.83C6.56,2.56,3.62,4.87,3.09,8h1.53 c0.51-2.25,2.71-3.86,5.19-3.43c1.76,0.31,3.22,1.7,3.59,3.45c0.61,2.9-1.6,5.47-4.4,5.47c-1.76,0-3.27-1.02-4.01-2.5H3.35 c0.82,2.33,3.04,4,5.65,4c1.39,0,2.66-0.48,3.68-1.27l3.74,3.74c0.29,0.29,0.77,0.29,1.06,0l0,0 C17.77,17.18,17.77,16.7,17.48,16.41z\\\"></path><path d=\\\"M7,7.56l0.95,3.81C8.04,11.74,8.38,12,8.76,12h0c0.36,0,0.68-0.23,0.79-0.57l0.74-2.23l0.76,1.52 C11.14,10.89,11.31,11,11.5,11H12c0.28,0,0.5-0.22,0.5-0.5v0c0-0.28-0.22-0.5-0.5-0.5h-0.19l-0.76-1.52C10.9,8.19,10.6,8,10.27,8 h0C9.89,8,9.56,8.24,9.44,8.6l-0.66,1.97L7.8,6.62C7.7,6.26,7.38,6,7,6h0C6.62,6,6.3,6.26,6.2,6.62L5.61,9H1.5 C1.22,9,1,9.22,1,9.5v0C1,9.78,1.22,10,1.5,10H6c0.23,0,0.43-0.16,0.49-0.38L7,7.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"terminal\": {\n    \"name\": \"terminal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.11,4,20,4z M20,18H4V8h16V18z M12,16 c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1h-4C12.45,17,12,16.55,12,16z M6.79,9.71c0.39-0.39,1.02-0.39,1.41,0 l2.59,2.59c0.39,0.39,0.39,1.02,0,1.41l-2.59,2.59c-0.39,0.39-1.02,0.39-1.41,0c-0.39-0.39-0.39-1.02,0-1.41L8.67,13l-1.88-1.88 C6.4,10.73,6.4,10.1,6.79,9.71z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M3.5,14.5V7h13v7.5H3.5z M15,12.75c0,0.41-0.34,0.75-0.75,0.75h-3.5c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h3.5 C14.66,12,15,12.34,15,12.75z M5.72,12.97c-0.29-0.29-0.29-0.77,0-1.06l1.16-1.16L5.72,9.59c-0.29-0.29-0.29-0.77,0-1.06 c0.29-0.29,0.77-0.29,1.06,0l1.69,1.69c0.29,0.29,0.29,0.77,0,1.06l-1.69,1.69C6.49,13.26,6.01,13.26,5.72,12.97z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_bluetooth\": {\n    \"name\": \"settings_bluetooth\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"23\\\" r=\\\"1\\\"></circle><circle cx=\\\"8\\\" cy=\\\"23\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"23\\\" r=\\\"1\\\"></circle><path d=\\\"M13.41,10L17,6.42c0.39-0.39,0.39-1.02,0-1.42l-4.79-4.79C12.07,0.07,11.89,0,11.71,0C11.32,0,11,0.32,11,0.71v6.88 L7.11,3.71c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L10.59,10l-4.89,4.89c-0.39,0.39-0.39,1.02,0,1.41 c0.39,0.39,1.02,0.39,1.41,0L11,12.41v6.88c0,0.39,0.32,0.71,0.71,0.71c0.19,0,0.37-0.07,0.5-0.21L17,15 c0.39-0.39,0.39-1.02,0-1.42L13.41,10z M13,3.83l1.88,1.88L13,7.59V3.83z M13,16.17v-3.76l1.88,1.88L13,16.17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"group_work\": {\n    \"name\": \"group_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_accounts\": {\n    \"name\": \"no_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.18,10.94c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6c-0.52,0-1,0.12-1.44,0.32L15.18,10.94z\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,15c-2.32,0-4.45,0.8-6.14,2.12 C4.7,15.73,4,13.95,4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2C13.17,15.05,12.59,15,12,15z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"offline_bolt\": {\n    \"name\": \"offline_bolt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm-.52 15.86v-4.14H8.82c-.37 0-.62-.4-.44-.73l3.68-7.17c.23-.47.94-.3.94.23v4.19h2.54c.37 0 .61.39.45.72l-3.56 7.12c-.24.48-.95.31-.95-.22z\\\"></path>\"\n      }\n    }\n  },\n  \"integration_instructions\": {\n    \"name\": \"integration_instructions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v14c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10.3,14.88L10.3,14.88 c-0.39,0.39-1.03,0.39-1.42,0l-2.17-2.17c-0.39-0.39-0.39-1.02,0-1.41l2.17-2.17c0.39-0.39,1.03-0.39,1.42,0l0,0 c0.39,0.39,0.39,1.02,0,1.41L8.83,12l1.46,1.46C10.68,13.85,10.69,14.49,10.3,14.88z M12,4.25c-0.41,0-0.75-0.34-0.75-0.75 S11.59,2.75,12,2.75s0.75,0.34,0.75,0.75S12.41,4.25,12,4.25z M13.7,14.88L13.7,14.88c-0.39-0.39-0.39-1.02,0-1.41L15.17,12 l-1.47-1.47c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.03-0.39,1.42,0l2.17,2.17c0.39,0.39,0.39,1.02,0,1.41l-2.17,2.17 C14.73,15.27,14.09,15.27,13.7,14.88z\\\"></path></g>\"\n      }\n    }\n  },\n  \"currency_exchange\": {\n    \"name\": \"currency_exchange\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,23c5.7,0,10.39-4.34,10.95-9.9c0.06-0.59-0.41-1.1-1-1.1c-0.51,0-0.94,0.38-0.99,0.88C20.52,17.44,16.67,21,12,21 c-3.12,0-5.87-1.59-7.48-4L6,17c0.55,0,1-0.45,1-1s-0.45-1-1-1H2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1l0-1.67 C4.99,21.15,8.28,23,12,23z M12,1C6.3,1,1.61,5.34,1.05,10.9C1,11.49,1.46,12,2.05,12c0.51,0,0.94-0.38,0.99-0.88 C3.48,6.56,7.33,3,12,3c3.12,0,5.87,1.59,7.48,4L18,7c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V4 c0-0.55-0.45-1-1-1s-1,0.45-1,1l0,1.67C19.01,2.85,15.72,1,12,1z M11.12,5.88C11.12,5.39,11.52,5,12,5s0.88,0.39,0.88,0.88l0,0.37 c1.07,0.19,1.75,0.76,2.16,1.3c0.34,0.44,0.16,1.08-0.36,1.3C14.32,9,13.9,8.88,13.66,8.57c-0.28-0.38-0.78-0.77-1.6-0.77 c-0.7,0-1.81,0.37-1.81,1.39c0,0.95,0.86,1.31,2.64,1.9c2.4,0.83,3.01,2.05,3.01,3.45c0,2.62-2.5,3.13-3.02,3.22l0,0.37 c0,0.48-0.39,0.88-0.88,0.88s-0.88-0.39-0.88-0.88l0-0.42c-0.63-0.15-1.93-0.61-2.69-2.1c-0.23-0.44,0.03-1.02,0.49-1.2 c0.41-0.16,0.9-0.01,1.11,0.38c0.32,0.61,0.95,1.37,2.12,1.37c0.93,0,1.98-0.48,1.98-1.61c0-0.96-0.7-1.46-2.28-2.03 c-1.1-0.39-3.35-1.03-3.35-3.31c0-0.1,0.01-2.4,2.62-2.96L11.12,5.88z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.1,7.52c-0.28,0.12-0.61,0.03-0.8-0.21c-0.22-0.3-0.61-0.6-1.26-0.6c-0.55,0-1.42,0.29-1.42,1.09 c0,0.74,0.67,1.03,2.07,1.5c1.88,0.65,2.36,1.61,2.36,2.71c0,2.06-1.96,2.46-2.37,2.53v0.29c0,0.38-0.31,0.69-0.69,0.69 s-0.69-0.31-0.69-0.69v-0.33c-0.49-0.12-1.51-0.47-2.1-1.64c-0.18-0.35-0.01-0.82,0.4-0.96c0.31-0.11,0.69,0.01,0.85,0.32 c0.25,0.48,0.75,1.07,1.66,1.07c0.73,0,1.56-0.37,1.56-1.26c0-0.76-0.55-1.15-1.79-1.59c-0.86-0.31-2.63-0.81-2.63-2.6 c0-0.08,0.01-1.89,2.06-2.33v-0.3C9.31,4.81,9.62,4.5,10,4.5s0.69,0.31,0.69,0.69v0.29c0.85,0.15,1.38,0.6,1.7,1.03 C12.65,6.85,12.5,7.35,12.1,7.52z M6,13.25C6,13.66,5.66,14,5.25,14l-1.6,0c1.33,2.1,3.67,3.5,6.35,3.5c3.91,0,7.12-2.99,7.47-6.82 C17.5,10.29,17.86,10,18.25,10c0.43,0,0.75,0.37,0.71,0.8C18.56,15.4,14.7,19,10,19c-3.13,0-5.89-1.6-7.5-4.02l0,1.77 c0,0.41-0.34,0.75-0.75,0.75C1.34,17.5,1,17.16,1,16.75l0-3.25c0-0.55,0.45-1,1-1l3.25,0C5.66,12.5,6,12.84,6,13.25z M1.75,10 c0.4,0,0.75-0.29,0.78-0.68C2.88,5.49,6.09,2.5,10,2.5c2.67,0,5.02,1.4,6.35,3.5l-1.6,0C14.34,6,14,6.34,14,6.75 c0,0.41,0.34,0.75,0.75,0.75H18c0.55,0,1-0.45,1-1V3.25c0-0.41-0.34-0.75-0.75-0.75c-0.41,0-0.75,0.34-0.75,0.75l0,1.77 C15.89,2.6,13.13,1,10,1C5.3,1,1.44,4.6,1.04,9.2C1,9.63,1.32,10,1.75,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm_add\": {\n    \"name\": \"alarm_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.18 5.01L18.1 2.45c-.42-.35-1.05-.3-1.41.13-.35.42-.29 1.05.13 1.41l3.07 2.56c.42.35 1.05.3 1.41-.13.36-.42.3-1.05-.12-1.41zM4.1 6.55l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41.35.43.98.48 1.4.13zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm3-8h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"restore\": {\n    \"name\": \"restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.25 3c-5.09-.14-9.26 3.94-9.26 9H2.2c-.45 0-.67.54-.35.85l2.79 2.8c.2.2.51.2.71 0l2.79-2.8c.32-.31.09-.85-.35-.85h-1.8c0-3.9 3.18-7.05 7.1-7 3.72.05 6.85 3.18 6.9 6.9.05 3.91-3.1 7.1-7 7.1-1.61 0-3.1-.55-4.28-1.48-.4-.31-.96-.28-1.32.08-.42.43-.39 1.13.08 1.5 1.52 1.19 3.44 1.9 5.52 1.9 5.05 0 9.14-4.17 9-9.26-.13-4.69-4.05-8.61-8.74-8.74zm-.51 5c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.09-.82-.26-1.03l-2.88-1.71v-3.4c0-.4-.33-.74-.75-.74z\\\"></path>\"\n      }\n    }\n  },\n  \"search_off\": {\n    \"name\": \"search_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,14h-0.79l-0.28-0.27c1.2-1.4,1.82-3.31,1.48-5.34c-0.47-2.78-2.79-4.99-5.58-5.34C6.54,2.58,3.3,5.38,3.03,9h2.02 c0.24-2.12,1.92-3.8,4.06-3.98C11.65,4.8,14,6.95,14,9.5c0,2.49-2.01,4.5-4.5,4.5c-0.17,0-0.33-0.03-0.5-0.05l0,2.02 c0,0,0,0,0.01,0.01c1.8,0.13,3.47-0.47,4.72-1.55L14,14.71v0.79l4.25,4.25c0.41,0.41,1.08,0.41,1.49,0l0,0 c0.41-0.41,0.41-1.08,0-1.49L15.5,14z\\\"></path><path d=\\\"M6.12,11.17L4,13.29l-2.12-2.12c-0.2-0.2-0.51-0.2-0.71,0l0,0c-0.2,0.2-0.2,0.51,0,0.71L3.29,14l-2.12,2.12 c-0.2,0.2-0.2,0.51,0,0.71l0,0c0.2,0.2,0.51,0.2,0.71,0L4,14.71l2.12,2.12c0.2,0.2,0.51,0.2,0.71,0l0,0c0.2-0.2,0.2-0.51,0-0.71 L4.71,14l2.12-2.12c0.2-0.2,0.2-0.51,0-0.71l0,0C6.63,10.98,6.32,10.98,6.12,11.17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,11.29c0.75-0.94,1.16-2.17,0.94-3.52c-0.32-1.94-1.91-3.49-3.86-3.73C6.51,3.72,4.32,5.57,4.05,8h1 c0.24-1.65,1.61-2.93,3.31-3c1.92-0.07,3.6,1.51,3.64,3.43C12.04,10.4,10.46,12,8.5,12c-0.17,0-0.34-0.03-0.5-0.05v1 C8.17,12.97,8.33,13,8.5,13c1.06,0,2.02-0.38,2.79-1l3.22,3.22c0.2,0.2,0.51,0.2,0.71,0l0,0c0.2-0.2,0.2-0.51,0-0.71L12,11.29z\\\"></path><path d=\\\"M6.27,9.73L6.27,9.73c-0.2-0.2-0.51-0.2-0.71,0L4.5,10.79L3.44,9.73c-0.2-0.2-0.51-0.2-0.71,0l0,0 c-0.2,0.2-0.2,0.51,0,0.71l1.06,1.06l-1.06,1.06c-0.2,0.2-0.2,0.51,0,0.71l0,0c0.2,0.2,0.51,0.2,0.71,0l1.06-1.06l1.06,1.06 c0.2,0.2,0.51,0.2,0.71,0h0c0.2-0.2,0.2-0.51,0-0.71L5.21,11.5l1.06-1.06C6.46,10.24,6.46,9.93,6.27,9.73z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"not_accessible\": {\n    \"name\": \"not_accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,2,12,2z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1 c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M20.49,20.49L3.51,3.51 c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l7.9,7.9V15c0,1.1,0.9,2,2,2h2.17l4.9,4.9c0.39,0.39,1.02,0.39,1.41,0 C20.88,21.51,20.88,20.88,20.49,20.49z M18.16,10.93c-1.25-0.21-2.43-0.88-3.23-1.76l-1.29-1.43C13.4,7.5,13.2,7.38,13.01,7.28 c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05c1,0.83,2.4,1.54,3.8,1.82C18.42,13,19,12.53,19,11.9 C19,11.42,18.64,11.01,18.16,10.93z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,7C9.57,7,9.21,7.28,9.07,7.66L11,9.59V8.96l0.47,0.43c0.17,0.16,0.35,0.3,0.53,0.43c0.62,0.46,1.34,0.75,2.1,0.85 c0.3,0.04,0.55-0.2,0.55-0.5c0-0.25-0.19-0.46-0.44-0.49c-0.77-0.1-1.49-0.44-2.06-1.01L12,8.52l-1.15-1.05 C10.85,7.47,10.36,7,10,7z M8.5,16C7.12,16,6,14.88,6,13.5c0-1.21,0.86-2.22,2-2.45v-1c-1.69,0.24-3,1.69-3,3.45 C5,15.43,6.57,17,8.5,17c1.76,0,3.2-1.31,3.45-3h-1C10.72,15.14,9.71,16,8.5,16z M10,6c0.83,0,1.5-0.67,1.5-1.5S10.83,3,10,3 S8.5,3.67,8.5,4.5S9.17,6,10,6z M16.01,16.01l-0.57-0.57L4.37,4.37L3.99,3.99c-0.2-0.2-0.51-0.2-0.71,0c-0.2,0.2-0.2,0.51,0,0.71 l0.23,0.23L9,10.41V12c0,0.55,0.45,1,1,1h1.59l3.72,3.72c0.2,0.2,0.51,0.2,0.71,0S16.21,16.21,16.01,16.01z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shopping_cart\": {\n    \"name\": \"shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 3c0 .55.45 1 1 1h1l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h11c.55 0 1-.45 1-1s-.45-1-1-1H7l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.67-1.43c-.16-.35-.52-.57-.9-.57H2c-.55 0-1 .45-1 1zm16 15c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_control_off\": {\n    \"name\": \"noise_control_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c1.2,0,2.33,0.26,3.35,0.74c0.36,0.17,0.79,0.12,1.07-0.17l0.06-0.06c0.47-0.47,0.35-1.29-0.25-1.57 C14.95,2.34,13.51,2,12,2S9.05,2.34,7.76,2.94c-0.6,0.28-0.72,1.1-0.25,1.57l0.06,0.06c0.28,0.28,0.71,0.34,1.07,0.17 C9.67,4.26,10.8,4,12,4z\\\"></path><path d=\\\"M20,12c0,1.2-0.26,2.33-0.74,3.35c-0.17,0.36-0.12,0.79,0.17,1.07l0.06,0.06c0.47,0.47,1.29,0.35,1.57-0.25 C21.66,14.95,22,13.51,22,12s-0.34-2.95-0.94-4.24c-0.28-0.6-1.1-0.72-1.57-0.25l-0.06,0.06c-0.28,0.28-0.34,0.71-0.17,1.07 C19.74,9.67,20,10.8,20,12z\\\"></path><path d=\\\"M12,20c-1.2,0-2.33-0.26-3.35-0.74c-0.36-0.17-0.79-0.12-1.07,0.17l-0.06,0.06c-0.47,0.47-0.35,1.29,0.25,1.57 C9.05,21.66,10.49,22,12,22s2.95-0.34,4.24-0.94c0.6-0.28,0.72-1.1,0.25-1.57l-0.06-0.06c-0.28-0.28-0.71-0.34-1.07-0.17 C14.33,19.74,13.2,20,12,20z\\\"></path><path d=\\\"M4,12c0-1.2,0.26-2.33,0.74-3.35c0.17-0.36,0.12-0.79-0.17-1.07L4.51,7.51C4.04,7.04,3.23,7.16,2.94,7.76 C2.34,9.05,2,10.49,2,12s0.34,2.95,0.94,4.24c0.28,0.6,1.1,0.72,1.57,0.25l0.06-0.06c0.28-0.28,0.34-0.71,0.17-1.07 C4.26,14.33,4,13.2,4,12z\\\"></path><path d=\\\"M11.5,6c-2.89,0-5.15,2.74-4.33,5.76c0.22,0.8,0.68,1.51,1.27,2.1l1.27,1.27c0.15,0.16,0.28,0.38,0.4,0.71 c0.41,1.13,1.38,2.04,2.58,2.16c1.25,0.12,2.37-0.53,2.93-1.53c0.36-0.65-0.15-1.45-0.9-1.45h0c-0.34,0-0.68,0.16-0.84,0.47 C13.72,15.78,13.38,16,13,16c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61l-1.36-1.36C9.28,11.87,9,11.19,9,10.5 C9,9.12,10.12,8,11.5,8c0.98,0,1.83,0.57,2.24,1.4c0.18,0.36,0.52,0.6,0.91,0.6h0c0.75,0,1.22-0.79,0.89-1.46 C14.82,7.04,13.28,6,11.5,6z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M4.07,6.19C3.71,5.83,3.09,5.93,2.86,6.4C2.31,7.48,2,8.7,2,10s0.31,2.52,0.86,3.6c0.23,0.46,0.85,0.57,1.21,0.2l0,0 c0.23-0.23,0.29-0.58,0.14-0.86C3.76,12.06,3.5,11.06,3.5,10s0.26-2.06,0.71-2.95C4.36,6.77,4.3,6.42,4.07,6.19L4.07,6.19z\\\"></path><path d=\\\"M15.93,6.19L15.93,6.19c-0.23,0.23-0.29,0.58-0.14,0.86C16.24,7.94,16.5,8.94,16.5,10s-0.26,2.06-0.71,2.95 c-0.15,0.29-0.09,0.63,0.14,0.86l0,0c0.37,0.37,0.98,0.26,1.21-0.2C17.69,12.52,18,11.3,18,10s-0.31-2.52-0.86-3.6 C16.91,5.93,16.29,5.83,15.93,6.19z\\\"></path><path d=\\\"M10,16.5c-1.06,0-2.06-0.26-2.95-0.71c-0.29-0.15-0.63-0.09-0.86,0.14l0,0c-0.37,0.37-0.26,0.98,0.2,1.21 C7.48,17.69,8.7,18,10,18s2.52-0.31,3.6-0.86c0.46-0.23,0.57-0.85,0.2-1.21l0,0c-0.23-0.23-0.58-0.29-0.86-0.14 C12.06,16.24,11.06,16.5,10,16.5z\\\"></path><path d=\\\"M6.19,4.07L6.19,4.07C6.42,4.3,6.77,4.36,7.05,4.21C7.94,3.76,8.94,3.5,10,3.5s2.06,0.26,2.95,0.71 c0.29,0.15,0.63,0.09,0.86-0.14l0,0c0.37-0.37,0.26-0.98-0.2-1.21C12.52,2.31,11.3,2,10,2S7.48,2.31,6.4,2.86 C5.93,3.09,5.83,3.71,6.19,4.07z\\\"></path><path d=\\\"M9.75,5C7.81,5,6.47,6.37,6.12,7.8c-0.39,1.59,0.23,3.06,1.36,3.92c0.52,0.39,0.94,0.93,1.09,1.56 C8.8,14.22,9.63,15,10.75,15c0.89,0,1.66-0.52,2.03-1.27c0.22-0.45-0.15-0.98-0.65-0.98H12c-0.26,0-0.47,0.16-0.6,0.38 c-0.13,0.22-0.37,0.37-0.65,0.37c-0.43,0-0.66-0.31-0.73-0.58c-0.22-0.9-0.77-1.7-1.69-2.44c-0.7-0.56-0.98-1.43-0.76-2.33 C7.71,7.6,8.34,6.5,9.75,6.5c0.83,0,1.55,0.46,1.94,1.13C11.82,7.85,12.05,8,12.31,8h0.12c0.53,0,0.88-0.57,0.62-1.04 C12.41,5.79,11.17,5,9.75,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shop_2\": {\n    \"name\": \"shop_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,9L2,9c-0.55,0-1,0.45-1,1v10c0,1.1,0.9,2,2,2h15c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H3V10C3,9.45,2.55,9,2,9z\\\"></path><path d=\\\"M18,5V3c0-1.11-0.89-2-2-2h-4c-1.11,0-2,0.89-2,2v2H5v11c0,1.11,0.89,2,2,2h14c1.11,0,2-0.89,2-2V5H18z M12,3h4v2h-4V3z M12,14.09V8.91c0-0.39,0.44-0.63,0.77-0.42l4.07,2.59c0.31,0.2,0.31,0.65,0,0.84l-4.07,2.59C12.44,14.72,12,14.48,12,14.09z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M1.75,7L1.75,7C1.34,7,1,7.34,1,7.75v8.75C1,17.33,1.67,18,2.5,18h12.75c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H2.5V7.75C2.5,7.34,2.16,7,1.75,7z\\\"></path><path d=\\\"M15,4V2.5C15,1.67,14.33,1,13.5,1h-4C8.67,1,8,1.67,8,2.5V4H4v9.5C4,14.33,4.67,15,5.5,15h12c0.83,0,1.5-0.67,1.5-1.5V4 H15z M9.5,2.5h4V4h-4V2.5z M10,11.57V7.43c0-0.4,0.45-0.64,0.78-0.42l3.1,2.07c0.3,0.2,0.3,0.63,0,0.83l-3.1,2.07 C10.45,12.2,10,11.97,10,11.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_home\": {\n    \"name\": \"add_home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.53,11.16c1.23-0.26,2.4-0.18,3.47,0.14V10c0-0.63-0.3-1.22-0.8-1.6l-6-4.5c-0.71-0.53-1.69-0.53-2.4,0l-6,4.5 C4.3,8.78,4,9.37,4,10v9c0,1.1,0.9,2,2,2h5.68c-0.61-1.28-0.86-2.77-0.55-4.35C11.65,13.93,13.82,11.74,16.53,11.16z\\\"></path></g><g><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M12.12,10.44c1.41-0.96,2.7-1.06,3.88-0.84V8.25c0-0.47-0.22-0.92-0.6-1.2l-4.5-3.38c-0.53-0.4-1.27-0.4-1.8,0L4.6,7.05 C4.22,7.33,4,7.78,4,8.25v7.25C4,16.33,4.67,17,5.5,17h4.38c-0.24-0.62-0.38-1.3-0.38-2.01C9.5,13.14,10.59,11.48,12.12,10.44z\\\"></path></g><g><path d=\\\"M15,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C19,12.79,17.21,11,15,11z M17,15.5h-1.5V17h-1v-1.5H13v-1h1.5 V13h1v1.5H17V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"task_alt\": {\n    \"name\": \"task_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.29,5.89l-10,10c-0.39,0.39-1.02,0.39-1.41,0l-2.83-2.83c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0 l2.12,2.12l9.29-9.29c0.39-0.39,1.02-0.39,1.41,0l0,0C21.68,4.87,21.68,5.5,21.29,5.89z M15.77,2.74c-1.69-0.69-3.61-0.93-5.61-0.57 C6.09,2.9,2.84,6.18,2.15,10.25C1.01,17,6.63,22.78,13.34,21.91c3.96-0.51,7.28-3.46,8.32-7.31c0.4-1.47,0.44-2.89,0.21-4.22 c-0.13-0.8-1.12-1.11-1.7-0.54v0c-0.23,0.23-0.33,0.57-0.27,0.89c0.22,1.33,0.12,2.75-0.52,4.26c-1.16,2.71-3.68,4.7-6.61,4.97 c-5.1,0.47-9.33-3.85-8.7-8.98c0.43-3.54,3.28-6.42,6.81-6.91c1.73-0.24,3.37,0.09,4.77,0.81c0.39,0.2,0.86,0.13,1.17-0.18l0,0 c0.48-0.48,0.36-1.29-0.24-1.6C16.31,2.98,16.04,2.85,15.77,2.74z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_open\": {\n    \"name\": \"lock_open\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-5h-1V6c0-2.76-2.24-5-5-5-2.28 0-4.27 1.54-4.84 3.75-.14.54.18 1.08.72 1.22.53.14 1.08-.18 1.22-.72C9.44 3.93 10.63 3 12 3c1.65 0 3 1.35 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 11c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-8c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v8z\\\"></path>\"\n      }\n    }\n  },\n  \"density_large\": {\n    \"name\": \"density_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,5h16c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4C3,4.55,3.45,5,4,5z\\\"></path><path d=\\\"M20,19H4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1C21,19.45,20.55,19,20,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.75,4.5h12.5C16.66,4.5,17,4.16,17,3.75C17,3.34,16.66,3,16.25,3H3.75C3.34,3,3,3.34,3,3.75C3,4.16,3.34,4.5,3.75,4.5z\\\"></path><path d=\\\"M16.25,15.5H3.75C3.34,15.5,3,15.84,3,16.25C3,16.66,3.34,17,3.75,17h12.5c0.41,0,0.75-0.34,0.75-0.75 C17,15.84,16.66,15.5,16.25,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"date_range\": {\n    \"name\": \"date_range\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1H8V3c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V9h14v10zM7 11h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down\": {\n    \"name\": \"swipe_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8.83,19.1c-0.26-0.6,0.09-1.28,0.73-1.41l3.58-0.71L8.79,7.17c-0.34-0.76,0-1.64,0.76-1.98c0.76-0.34,1.64,0,1.98,0.76 l2.43,5.49l0.84-0.37c0.28-0.13,0.59-0.18,0.9-0.17l4.56,0.21c0.86,0.04,1.6,0.63,1.83,1.45l1.23,4.33 c0.27,0.96-0.2,1.97-1.11,2.37l-5.63,2.49c-0.48,0.21-1.26,0.33-1.76,0.14l-5.45-2.27C9.13,19.53,8.93,19.34,8.83,19.1z M5.59,2.73 C4.27,4.65,3.5,6.99,3.5,9.5c0,0.92,0.1,1.82,0.3,2.68l-1.19-1.19c-0.29-0.29-0.77-0.32-1.07-0.04c-0.31,0.29-0.31,0.78-0.02,1.08 l2.26,2.26c0.39,0.39,1.02,0.39,1.41,0l2.24-2.24c0.29-0.29,0.32-0.77,0.04-1.07c-0.29-0.31-0.78-0.31-1.08-0.02l-1.09,1.09 C5.11,11.24,5,10.38,5,9.5c0-2.2,0.68-4.24,1.83-5.93c0.2-0.3,0.17-0.7-0.09-0.95C6.41,2.28,5.86,2.34,5.59,2.73z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.33,9.36c0.17,0.2,0.14,0.5-0.05,0.69l-2.1,2.1c-0.2,0.2-0.51,0.2-0.71,0l-2.12-2.12C1.15,9.82,1.16,9.48,1.39,9.29 c0.2-0.17,0.5-0.14,0.69,0.05l1.32,1.32C3.14,9.82,3,8.93,3,8c0-2.1,0.72-4.04,1.93-5.57c0.2-0.25,0.59-0.26,0.79,0.01 c0.14,0.18,0.13,0.44-0.01,0.62C4.64,4.42,4,6.14,4,8c0,0.88,0.14,1.72,0.4,2.51l1.19-1.19C5.8,9.11,6.14,9.13,6.33,9.36z M13.8,8.94l-1.3,0.58l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0C8.29,4.82,8,5.56,8.28,6.19l3.54,8l-2.61,0.25 c-0.33,0.03-0.61,0.25-0.73,0.56l0,0c-0.17,0.45,0.05,0.96,0.5,1.13l3.88,1.5c0.37,0.14,0.78,0.13,1.15-0.03l4.82-2.13 c0.67-0.3,1.03-1.04,0.84-1.75l-0.92-3.59C18.59,9.49,18.03,9.03,17.37,9l-3.12-0.15C14.09,8.85,13.94,8.88,13.8,8.94z\\\"></path></g>\"\n      }\n    }\n  },\n  \"extension\": {\n    \"name\": \"extension\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z\\\"></path>\"\n      }\n    }\n  },\n  \"android\": {\n    \"name\": \"android\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g></g><g><path d=\\\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_remove\": {\n    \"name\": \"bookmark_remove\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,6c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1s0.45-1,1-1h4C20.55,5,21,5.45,21,6z M19,10.9c-0.32,0.07-0.66,0.1-1,0.1 c-2.76,0-5-2.24-5-5c0-1.13,0.37-2.16,1-3L7,3C5.9,3,5,3.9,5,5v14.48c0,0.72,0.73,1.2,1.39,0.92L12,18l5.61,2.4 c0.66,0.28,1.39-0.2,1.39-0.92V10.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,5.75c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75h-3c-0.41,0-0.75,0.34-0.75,0.75s0.34,0.75,0.75,0.75H16.5z M15,15.52c0,0.71-0.71,1.19-1.37,0.93L10,15l-3.63,1.45C5.71,16.71,5,16.23,5,15.52V4.5C5,3.67,5.67,3,6.5,3l5.04,0 C11.19,3.59,11,4.27,11,5c0,2.21,1.79,4,4,4V15.52z\\\"></path>\"\n      }\n    }\n  },\n  \"open_with\": {\n    \"name\": \"open_with\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.5 9h3c.28 0 .5-.22.5-.5V6h1.79c.45 0 .67-.54.35-.85l-3.79-3.79c-.2-.2-.51-.2-.71 0L7.85 5.15c-.31.31-.09.85.36.85H10v2.5c0 .28.22.5.5.5zm-2 1H6V8.21c0-.45-.54-.67-.85-.35l-3.79 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.31.31.85.09.85-.36V14h2.5c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm14.15 1.65l-3.79-3.79c-.32-.32-.86-.1-.86.35V10h-2.5c-.28 0-.5.22-.5.5v3c0 .28.22.5.5.5H18v1.79c0 .45.54.67.85.35l3.79-3.79c.2-.19.2-.51.01-.7zM13.5 15h-3c-.28 0-.5.22-.5.5V18H8.21c-.45 0-.67.54-.35.85l3.79 3.79c.2.2.51.2.71 0l3.79-3.79c.31-.31.09-.85-.35-.85H14v-2.5c0-.28-.22-.5-.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_data_setting\": {\n    \"name\": \"perm_data_setting\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.99 11.5c.34 0 .68.03 1.01.07V2.42c0-.89-1.08-1.34-1.71-.71L1.71 18.29c-.63.63-.19 1.71.7 1.71h9.15c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49s.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_sidebar\": {\n    \"name\": \"view_sidebar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,20H3c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h12c0.55,0,1,0.45,1,1v14C16,19.55,15.55,20,15,20z M19,8h2 c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v2C18,7.55,18.45,8,19,8z M19,20h2c0.55,0,1-0.45,1-1v-2 c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v2C18,19.55,18.45,20,19,20z M19,14h2c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h-2 c-0.55,0-1,0.45-1,1v2C18,13.55,18.45,14,19,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,7.33h-2c-0.28,0-0.5-0.22-0.5-0.5V4.5C14,4.22,14.22,4,14.5,4h2C16.78,4,17,4.22,17,4.5v2.33 C17,7.11,16.78,7.33,16.5,7.33z M16.5,12.67h-2c-0.28,0-0.5,0.22-0.5,0.5v2.33c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5 v-2.33C17,12.89,16.78,12.67,16.5,12.67z M16.5,8.33h-2c-0.28,0-0.5,0.22-0.5,0.5v2.33c0,0.28,0.22,0.5,0.5,0.5h2 c0.28,0,0.5-0.22,0.5-0.5V8.83C17,8.56,16.78,8.33,16.5,8.33z M12.5,4h-9C3.22,4,3,4.22,3,4.5v11C3,15.78,3.22,16,3.5,16h9 c0.28,0,0.5-0.22,0.5-0.5v-11C13,4.22,12.78,4,12.5,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"article\": {\n    \"name\": \"article\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M13,17H8c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1h5c0.55,0,1,0.45,1,1C14,16.55,13.55,17,13,17z M16,13H8c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h8 c0.55,0,1,0.45,1,1C17,12.55,16.55,13,16,13z M16,9H8C7.45,9,7,8.55,7,8c0-0.55,0.45-1,1-1h8c0.55,0,1,0.45,1,1 C17,8.55,16.55,9,16,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label\": {\n    \"name\": \"label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58c.25-.35.25-.81 0-1.16l-3.96-5.58z\\\"></path>\"\n      }\n    }\n  },\n  \"important_devices\": {\n    \"name\": \"important_devices\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.9 2 0 2.9 0 4v12c0 1.1.9 2 2 2h7v2H8c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h1c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V4c0-1.1-.9-2-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"fingerprint\": {\n    \"name\": \"fingerprint\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z\\\"></path>\"\n      }\n    }\n  },\n  \"label_important_outline\": {\n    \"name\": \"label_important_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 19H4.83c-.79 0-1.27-.88-.84-1.54L7.5 12 3.99 6.54C3.56 5.88 4.04 5 4.83 5H15c.65 0 1.26.31 1.63.84l3.96 5.58c.25.35.25.81 0 1.16l-3.96 5.58c-.37.52-.98.84-1.63.84zm-8.5-2H15l3.5-5L15 7H6.5l3.5 5-3.5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_up_off_alt\": {\n    \"name\": \"thumb_up_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M13.12,2.06L7.58,7.6C7.21,7.97,7,8.48,7,9.01V19c0,1.1,0.9,2,2,2h9c0.8,0,1.52-0.48,1.84-1.21l3.26-7.61 C23.94,10.2,22.49,8,20.34,8h-5.65l0.95-4.58c0.1-0.5-0.05-1.01-0.41-1.37C14.64,1.47,13.7,1.47,13.12,2.06z M3,21 c1.1,0,2-0.9,2-2v-8c0-1.1-0.9-2-2-2s-2,0.9-2,2v8C1,20.1,1.9,21,3,21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"logout\": {\n    \"name\": \"logout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M5,5h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h6c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H5V5z\\\"></path><path d=\\\"M20.65,11.65l-2.79-2.79C17.54,8.54,17,8.76,17,9.21V11h-7c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h7v1.79 c0,0.45,0.54,0.67,0.85,0.35l2.79-2.79C20.84,12.16,20.84,11.84,20.65,11.65z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"work_outline\": {\n    \"name\": \"work_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6V4h-4v2h4zM4 9v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1zm16-3c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z\\\"></path>\"\n      }\n    }\n  },\n  \"unpublished\": {\n    \"name\": \"unpublished\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l1.56,1.56 c-1.25,1.88-1.88,4.21-1.59,6.7c0.53,4.54,4.21,8.22,8.74,8.74c2.49,0.29,4.81-0.34,6.7-1.59l1.56,1.56c0.39,0.39,1.02,0.39,1.41,0 l0,0C20.88,21.51,20.88,20.88,20.49,20.49z M9.88,15.89l-2.83-2.83c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0 l2.12,2.12l0.18-0.18l1.41,1.41l-0.88,0.88C10.9,16.28,10.27,16.28,9.88,15.89z M13.59,10.76l-7.1-7.1c1.88-1.25,4.21-1.88,6.7-1.59 c4.54,0.53,8.22,4.21,8.74,8.74c0.29,2.49-0.34,4.82-1.59,6.7l-5.34-5.34l1.94-1.94c0.39-0.39,0.39-1.02,0-1.41v0 c-0.39-0.39-1.02-0.39-1.41,0L13.59,10.76z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors_off\": {\n    \"name\": \"sensors_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.68,18.32c-0.42,0.42-1.12,0.39-1.5-0.08C2.82,16.53,2,14.36,2,12c0-2.04,0.61-3.93,1.66-5.51L2.1,4.93 c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97c0.39,0.39,0.39,1.02,0,1.41s-1.02,0.39-1.41,0L8.14,10.96 C8.05,11.29,8,11.64,8,12c0,0.8,0.24,1.55,0.64,2.17c0.27,0.41,0.24,0.94-0.1,1.29c-0.43,0.43-1.17,0.4-1.51-0.11 C6.38,14.4,6,13.24,6,12c0-0.93,0.21-1.8,0.58-2.59L5.11,7.94C4.4,9.13,4,10.52,4,12c0,1.89,0.66,3.63,1.76,5 C6.08,17.39,6.04,17.96,5.68,18.32z M15.46,8.54c-0.35,0.35-0.37,0.88-0.11,1.29C15.76,10.45,16,11.2,16,12 c0,0.36-0.05,0.71-0.14,1.04l1.55,1.55C17.79,13.8,18,12.93,18,12c0-1.24-0.38-2.4-1.03-3.36C16.63,8.14,15.9,8.1,15.46,8.54z M18.32,5.68c-0.36,0.36-0.4,0.92-0.08,1.32c1.1,1.37,1.76,3.11,1.76,5c0,1.48-0.4,2.87-1.11,4.06l1.45,1.45 C21.39,15.93,22,14.04,22,12c0-2.36-0.82-4.53-2.18-6.24C19.44,5.29,18.74,5.26,18.32,5.68z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.54,17.6c-0.29,0.29-0.77,0.29-1.06,0L6.71,8.83C6.58,9.2,6.5,9.59,6.5,10c0,0.74,0.23,1.44,0.63,2 c0.21,0.3,0.17,0.69-0.09,0.95c-0.32,0.32-0.87,0.3-1.14-0.08C5.34,12.06,5,11.07,5,10c0-0.83,0.21-1.62,0.57-2.31L4.48,6.6 C3.87,7.59,3.5,8.75,3.5,10c0,1.56,0.55,2.99,1.47,4.11c0.24,0.29,0.21,0.72-0.06,0.99c-0.32,0.32-0.84,0.28-1.13-0.07 C2.67,13.65,2,11.9,2,10c0-1.67,0.51-3.21,1.38-4.5L2.4,4.52c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l13.08,13.08 C16.83,16.83,16.83,17.31,16.54,17.6z M15.53,13.41c0.61-0.99,0.97-2.16,0.97-3.41c0-1.56-0.55-2.99-1.47-4.11 c-0.24-0.29-0.21-0.72,0.06-0.99c0.32-0.32,0.84-0.28,1.13,0.07C17.33,6.35,18,8.1,18,10c0,1.67-0.51,3.22-1.38,4.5L15.53,13.41z M13.3,11.18c0.13-0.37,0.2-0.76,0.2-1.18c0-0.74-0.23-1.44-0.63-2c-0.21-0.3-0.17-0.69,0.09-0.95c0.32-0.32,0.87-0.3,1.14,0.08 C14.66,7.94,15,8.93,15,10c0,0.83-0.2,1.62-0.57,2.31L13.3,11.18z\\\"></path>\"\n      }\n    }\n  },\n  \"send_and_archive\": {\n    \"name\": \"send_and_archive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M19.15,17.85l-1.79,1.79c-0.2,0.2-0.51,0.2-0.71,0 l-1.79-1.79C14.54,17.54,14.76,17,15.21,17h1.29v-2.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V17h1.29 C19.24,17,19.46,17.54,19.15,17.85z\\\"></path></g><g><path d=\\\"M17,10c0.1,0,0.19,0.01,0.28,0.01L3,4v6l8,2l-8,2v6l7-2.95c0-0.02,0-0.03,0-0.05C10,13.13,13.13,10,17,10z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M14,10c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4C18,11.79,16.21,10,14,10z M14.35,15.65 c-0.2,0.2-0.51,0.2-0.71,0L12,14h1.5v-1.53c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5V14H16L14.35,15.65z\\\"></path></g><g><path d=\\\"M14,8.5c0.1,0,0.19,0.01,0.29,0.01L3,4v4l6,2l-6,2v4l5.51-2.2C8.62,10.85,11.03,8.5,14,8.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"network_ping\": {\n    \"name\": \"network_ping\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2.71,6.79c-0.39,0.39-0.39,1.02,0,1.41L10.5,16H5c-0.55,0-1,0.45-1,1s0.45,1,1,1h14c0.55,0,1-0.45,1-1s-0.45-1-1-1h-5.5 l5.15-5.15C18.91,10.95,19.2,11,19.5,11c1.38,0,2.5-1.12,2.5-2.5S20.88,6,19.5,6S17,7.12,17,8.5c0,0.35,0.07,0.67,0.2,0.97 l-5.2,5.2L4.12,6.79C3.73,6.4,3.1,6.4,2.71,6.79z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2.53,5.47c-0.29,0.29-0.29,0.77,0,1.06L9,13H4.75C4.34,13,4,13.34,4,13.75c0,0.41,0.34,0.75,0.75,0.75h10.5 c0.41,0,0.75-0.34,0.75-0.75S15.66,13,15.25,13H11l4.18-4.18C15.43,8.94,15.71,9,16,9c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.26,0.05,0.51,0.14,0.74L10,11.88L3.59,5.47C3.3,5.18,2.82,5.18,2.53,5.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_as_unread\": {\n    \"name\": \"mark_as_unread\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.23,7h2.6c-0.06-0.47-0.36-0.94-0.79-1.17L11.4,2.45c-0.56-0.29-1.23-0.29-1.8-0.01L2.8,5.83C2.32,6.09,2,6.64,2,7.17 V15c0,1.1,0.9,2,2,2V7.4L10.5,4L16.23,7z\\\"></path><path d=\\\"M20,8H7c-1.1,0-2,0.9-2,2v9c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2v-9C22,8.9,21.1,8,20,8z M20,11.46 c0,0.33-0.19,0.64-0.48,0.79l-5.61,2.88c-0.25,0.13-0.56,0.13-0.81,0l-5.61-2.88C7.19,12.1,7,11.79,7,11.46v0 c0-0.67,0.7-1.1,1.3-0.79l5.2,2.67l5.2-2.67C19.3,10.36,20,10.79,20,11.46L20,11.46z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M12.5,5.5h2.42c-0.13-0.39-0.41-0.72-0.79-0.9L8.5,2L2.87,4.6C2.34,4.84,2,5.37,2,5.96v6.54C2,13.33,2.67,14,3.5,14V5.96 l5-2.31L12.5,5.5z\\\"></path><path d=\\\"M16.5,7h-10C5.67,7,5,7.67,5,8.5v7C5,16.33,5.67,17,6.5,17h10c0.83,0,1.5-0.67,1.5-1.5v-7C18,7.67,17.33,7,16.5,7z M16.11,10.44l-4.25,2.36c-0.23,0.13-0.5,0.13-0.73,0l-4.25-2.36C6.65,10.31,6.5,10.05,6.5,9.78v0c0-0.57,0.62-0.94,1.12-0.66 l3.88,2.15l3.88-2.15c0.5-0.28,1.12,0.08,1.12,0.66v0C16.5,10.05,16.35,10.31,16.11,10.44z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bug_report\": {\n    \"name\": \"bug_report\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 8h-1.81c-.45-.78-1.07-1.45-1.82-1.96l.93-.93c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-1.47 1.47C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L9.11 3.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l.92.93C7.88 6.55 7.26 7.22 6.81 8H5c-.55 0-1 .45-1 1s.45 1 1 1h1.09c-.05.33-.09.66-.09 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .34.04.67.09 1H5c-.55 0-1 .45-1 1s.45 1 1 1h1.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H19c.55 0 1-.45 1-1s-.45-1-1-1h-1.09c.05-.33.09-.66.09-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.34-.04-.67-.09-1H19c.55 0 1-.45 1-1s-.45-1-1-1zm-6 8h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zm0-4h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle_outline\": {\n    \"name\": \"check_circle_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.88-11.71L10 14.17l-1.88-1.88c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0z\\\"></path>\"\n      }\n    }\n  },\n  \"savings\": {\n    \"name\": \"savings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.83,7.5l-2.27-2.27c0.07-0.42,0.18-0.81,0.32-1.15c0.11-0.26,0.15-0.56,0.09-0.87C17.84,2.49,17.14,1.99,16.4,2 c-1.59,0.03-3,0.81-3.9,2l-5,0C4.46,4,2,6.46,2,9.5c0,2.25,1.37,7.48,2.08,10.04C4.32,20.4,5.11,21,6.01,21L8,21c1.1,0,2-0.9,2-2v0 h2v0c0,1.1,0.9,2,2,2l2.01,0c0.88,0,1.66-0.58,1.92-1.43l1.25-4.16l2.14-0.72c0.41-0.14,0.68-0.52,0.68-0.95V8.5c0-0.55-0.45-1-1-1 H19.83z M12,9H9C8.45,9,8,8.55,8,8v0c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v0C13,8.55,12.55,9,12,9z M16,11c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C17,10.55,16.55,11,16,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,6.5l-2-2C14.5,4.14,15,3.52,15,3c0-0.55-0.45-1-1-1c-2.17,0-3.35,1.5-3.35,1.5H6.5C4.05,3.5,2,5.47,2,8 c0,1.74,1.12,5.92,1.68,7.91C3.87,16.55,4.46,17,5.13,17H7c0.83,0,1.5-0.67,1.5-1.5v0H10v0c0,0.83,0.67,1.5,1.5,1.5h1.86 c0.67,0,1.26-0.45,1.45-1.1l0.94-3.4l1.47-0.33c0.46-0.1,0.78-0.51,0.78-0.98V7.5c0-0.55-0.45-1-1-1H16.5z M10.25,7.5h-2.5 C7.34,7.5,7,7.16,7,6.75v0C7,6.34,7.34,6,7.75,6h2.5C10.66,6,11,6.34,11,6.75v0C11,7.16,10.66,7.5,10.25,7.5z M13.25,9 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25C14,8.66,13.66,9,13.25,9z\\\"></path>\"\n      }\n    }\n  },\n  \"commit\": {\n    \"name\": \"commit\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,13c0.55,0,1-0.45,1-1s-0.45-1-1-1h-4.1h0c-0.46-2.28-2.48-4-4.9-4s-4.44,1.72-4.9,4h0H3c-0.55,0-1,0.45-1,1s0.45,1,1,1 h4.1h0c0.46,2.28,2.48,4,4.9,4s4.44-1.72,4.9-4h0H21z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,15,12,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,10c0-0.41-0.34-0.75-0.75-0.75h-3.32C13.58,7.4,11.95,6,10,6S6.42,7.4,6.07,9.25H2.75C2.34,9.25,2,9.59,2,10 s0.34,0.75,0.75,0.75h3.32C6.42,12.6,8.05,14,10,14s3.58-1.4,3.93-3.25h3.32C17.66,10.75,18,10.41,18,10z M10,12.5 c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history\": {\n    \"name\": \"history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.26 3C8.17 2.86 4 6.95 4 12H2.21c-.45 0-.67.54-.35.85l2.79 2.8c.2.2.51.2.71 0l2.79-2.8c.31-.31.09-.85-.36-.85H6c0-3.9 3.18-7.05 7.1-7 3.72.05 6.85 3.18 6.9 6.9.05 3.91-3.1 7.1-7 7.1-1.61 0-3.1-.55-4.28-1.48-.4-.31-.96-.28-1.32.08-.42.42-.39 1.13.08 1.49C9 20.29 10.91 21 13 21c5.05 0 9.14-4.17 9-9.26-.13-4.69-4.05-8.61-8.74-8.74zm-.51 5c-.41 0-.75.34-.75.75v3.68c0 .35.19.68.49.86l3.12 1.85c.36.21.82.09 1.03-.26.21-.36.09-.82-.26-1.03l-2.88-1.71v-3.4c0-.4-.34-.74-.75-.74z\\\"></path>\"\n      }\n    }\n  },\n  \"assured_workload\": {\n    \"name\": \"assured_workload\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,17c0.55,0,1-0.45,1-1v-5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v5C5,16.55,5.45,17,6,17L6,17z\\\"></path><path d=\\\"M12,17c0.55,0,1-0.45,1-1v-5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v5C11,16.55,11.45,17,12,17L12,17z\\\"></path><path d=\\\"M21.32,5.66l-8.42-4.21c-0.56-0.28-1.23-0.28-1.79,0L2.68,5.66C2.26,5.87,2,6.3,2,6.76v0C2,7.45,2.55,8,3.24,8h17.53 C21.45,8,22,7.45,22,6.76v0C22,6.3,21.74,5.87,21.32,5.66z\\\"></path><path d=\\\"M2,20L2,20c0,0.55,0.45,1,1,1h11.4c-0.21-0.64-0.32-1.31-0.36-2H3C2.45,19,2,19.45,2,20z\\\"></path><path d=\\\"M19,12.26V11c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v2.26L19,12.26z\\\"></path><path d=\\\"M19.55,14.22l-3,1.5C16.21,15.89,16,16.24,16,16.62v1.93c0,2.52,1.71,4.88,4,5.45c2.29-0.57,4-2.93,4-5.45v-1.93 c0-0.38-0.21-0.73-0.55-0.89l-3-1.5C20.17,14.08,19.83,14.08,19.55,14.22z M18.58,20.3l-0.8-0.8c-0.29-0.29-0.29-0.77,0-1.06l0,0 c0.29-0.29,0.77-0.29,1.06,0l0.44,0.44l1.88-1.85c0.29-0.29,0.77-0.29,1.06,0l0,0c0.29,0.29,0.29,0.77,0,1.06l-2.23,2.21 C19.6,20.69,18.97,20.69,18.58,20.3z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,14.5c0.41,0,0.75-0.34,0.75-0.75v-5C10.75,8.34,10.41,8,10,8h0C9.59,8,9.25,8.34,9.25,8.75v5 C9.25,14.16,9.59,14.5,10,14.5L10,14.5z\\\"></path><path d=\\\"M4.75,14.5c0.41,0,0.75-0.34,0.75-0.75v-5C5.5,8.34,5.16,8,4.75,8h0C4.34,8,4,8.34,4,8.75v5C4,14.16,4.34,14.5,4.75,14.5 L4.75,14.5z\\\"></path><path d=\\\"M17.32,4.66l-6.65-3.32c-0.42-0.21-0.92-0.21-1.34,0L2.68,4.66C2.26,4.87,2,5.3,2,5.76v0C2,6.45,2.55,7,3.24,7h13.53 C17.45,7,18,6.45,18,5.76v0C18,5.3,17.74,4.87,17.32,4.66z\\\"></path><path d=\\\"M12.5,15.5H2.75C2.34,15.5,2,15.84,2,16.25l0,0C2,16.66,2.34,17,2.75,17h9.91C12.61,16.78,12.5,16.29,12.5,15.5z\\\"></path><path d=\\\"M16,10.82V8.75C16,8.34,15.66,8,15.25,8h0c-0.41,0-0.75,0.34-0.75,0.75v2.82L16,10.82z\\\"></path><path d=\\\"M16.78,12.11l-2.5,1.25C14.11,13.45,14,13.62,14,13.81v1.83c0,2.02,1.28,3.91,3,4.36c1.72-0.46,3-2.35,3-4.36v-1.83 c0-0.19-0.11-0.36-0.28-0.45l-2.5-1.25C17.08,12.04,16.92,12.04,16.78,12.11z M16.06,17.14l-0.83-0.83c-0.2-0.2-0.2-0.51,0-0.71 l0,0c0.19-0.19,0.51-0.2,0.71,0l0.47,0.46l1.65-1.71c0.19-0.2,0.5-0.2,0.7-0.02h0c0.2,0.19,0.21,0.51,0.02,0.71l-2,2.08 C16.58,17.33,16.26,17.34,16.06,17.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_identity\": {\n    \"name\": \"perm_identity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"install_desktop\": {\n    \"name\": \"install_desktop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,17H4V5h8V3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.89,2,2,2h4v1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-1h4c1.1,0,2-0.9,2-2 v-3h-2V17z\\\"></path><path d=\\\"M17.71,13.29l3.59-3.59c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L18,10.17V4c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v6.17l-1.89-1.88c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l3.59,3.59 C16.69,13.68,17.32,13.68,17.71,13.29z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,13.5h-13v-9H11V3H3.5C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v1.5C7,16.78,7.22,17,7.5,17h5 c0.28,0,0.5-0.22,0.5-0.5V15h3.5c0.83,0,1.5-0.67,1.5-1.5V11h-1.5V13.5z\\\"></path><path d=\\\"M15.19,10.29l2.28-2.28c0.29-0.29,0.29-0.77,0-1.06v0c-0.29-0.29-0.77-0.29-1.06,0l-1.16,1.16V3.75 C15.25,3.34,14.91,3,14.5,3h0c-0.41,0-0.75,0.34-0.75,0.75v4.39l-1.16-1.16c-0.29-0.29-0.77-0.29-1.06,0l0,0 c-0.29,0.29-0.29,0.77,0,1.06l2.25,2.25C14.17,10.68,14.8,10.68,15.19,10.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"production_quantity_limits\": {\n    \"name\": \"production_quantity_limits\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,10L12,10c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C13,9.55,12.55,10,12,10z M12,6L12,6 c-0.55,0-1-0.45-1-1V2c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3C13,5.55,12.55,6,12,6z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22 s2-0.9,2-2S8.1,18,7,18z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45 c0.75,0,1.41-0.41,1.75-1.03l3.24-6.14c0.25-0.48,0.08-1.08-0.4-1.34v0c-0.49-0.27-1.1-0.08-1.36,0.41L15.55,11H8.53L4.27,2H2 C1.45,2,1,2.45,1,3v0c0,0.55,0.45,1,1,1h1l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h11c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7 L8.1,13z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_basket\": {\n    \"name\": \"shopping_basket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9h-4.79l-4.39-6.57c-.4-.59-1.27-.59-1.66 0L6.77 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM11.99 4.79L14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"space_dashboard\": {\n    \"name\": \"space_dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,21H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h4c1.1,0,2,0.9,2,2v14C11,20.1,10.1,21,9,21z M15,21h4c1.1,0,2-0.9,2-2v-5 c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v5C13,20.1,13.9,21,15,21z M21,8V5c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v3c0,1.1,0.9,2,2,2h4 C20.1,10,21,9.1,21,8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.25,10h3.25c0.83,0,1.5,0.67,1.5,1.5v4c0,0.83-0.67,1.5-1.5,1.5h-3.25c-0.83,0-1.5-0.67-1.5-1.5v-4 C10.75,10.67,11.42,10,12.25,10z M4.5,3C3.67,3,3,3.67,3,4.5v10.94C3,16.3,3.7,17,4.56,17h3.19c0.83,0,1.5-0.67,1.5-1.5v-11 c0-0.83-0.67-1.5-1.5-1.5H4.5z M17,7V4.5C17,3.67,16.33,3,15.5,3h-3.25c-0.83,0-1.5,0.67-1.5,1.5V7c0,0.83,0.67,1.5,1.5,1.5h3.25 C16.33,8.5,17,7.83,17,7z\\\"></path>\"\n      }\n    }\n  },\n  \"app_blocking\": {\n    \"name\": \"app_blocking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z\\\"></path><path d=\\\"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cancel_schedule_send\": {\n    \"name\": \"cancel_schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L2.4,3.6C1.74,3.31,1.01,3.8,1.01,4.51L1,9.2c0,0.47,0.33,0.88,0.78,0.98L10,12 l-8.22,1.83C1.33,13.93,1,14.33,1,14.8l0.01,4.68c0,0.72,0.73,1.2,1.39,0.92l6.68-2.86C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z\\\"></path><path d=\\\"M18.62,14.38c-0.2-0.2-0.51-0.2-0.71,0l-1.41,1.41l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0s-0.2,0.51,0,0.71l1.41,1.41 l-1.41,1.41c-0.2,0.2-0.2,0.51,0,0.71c0.2,0.2,0.51,0.2,0.71,0l1.41-1.41l1.41,1.41c0.2,0.2,0.51,0.2,0.71,0 c0.2-0.2,0.2-0.51,0-0.71l-1.41-1.41l1.41-1.41C18.82,14.89,18.82,14.57,18.62,14.38z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,8c-0.43,0-0.85,0.05-1.26,0.14L1.71,3.31c-0.33-0.14-0.7,0.1-0.7,0.46L1,8.04c0,0.23,0.16,0.44,0.39,0.49L7.86,10 l-6.47,1.47C1.16,11.52,1,11.72,1,11.96l0.01,4.28c0,0.36,0.37,0.6,0.7,0.46L8,13.94c0,0.02,0,0.04,0,0.06c0,3.31,2.69,6,6,6 s6-2.69,6-6S17.31,8,14,8z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S16.76,19,14,19z\\\"></path><path d=\\\"M15.77,12.23c-0.2-0.2-0.51-0.2-0.71,0L14,13.29l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0c-0.2,0.2-0.2,0.51,0,0.71L13.29,14 l-1.06,1.06c-0.2,0.2-0.2,0.51,0,0.71s0.51,0.2,0.71,0L14,14.71l1.06,1.06c0.2,0.2,0.51,0.2,0.71,0s0.2-0.51,0-0.71L14.71,14 l1.06-1.06C15.96,12.74,15.96,12.43,15.77,12.23z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"assignment_returned\": {\n    \"name\": \"assignment_returned\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-.35 14.65L7 13h3V9h4v4h3l-4.65 4.65c-.19.19-.51.19-.7 0z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_right_alt\": {\n    \"name\": \"arrow_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.01 11H5c-.55 0-1 .45-1 1s.45 1 1 1h11.01v1.79c0 .45.54.67.85.35l2.78-2.79c.19-.2.19-.51 0-.71l-2.78-2.79c-.31-.32-.85-.09-.85.35V11z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket_launch\": {\n    \"name\": \"rocket_launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.19,6.35c-2.04,2.29-3.44,5.58-3.57,5.89l-2.26-0.97c-0.65-0.28-0.81-1.13-0.31-1.63l3.01-3.01 c0.47-0.47,1.15-0.68,1.81-0.55L9.19,6.35L9.19,6.35z M10.68,16.51c0.3,0.3,0.74,0.38,1.12,0.2c1.16-0.54,3.65-1.81,5.26-3.42 c4.59-4.59,4.63-8.33,4.36-9.93c-0.07-0.4-0.39-0.72-0.79-0.79c-1.6-0.27-5.34-0.23-9.93,4.36c-1.61,1.61-2.87,4.1-3.42,5.26 c-0.18,0.38-0.09,0.83,0.2,1.12L10.68,16.51z M17.65,14.81c-2.29,2.04-5.58,3.44-5.89,3.57l0.97,2.26 c0.28,0.65,1.13,0.81,1.63,0.31l3.01-3.01c0.47-0.47,0.68-1.15,0.55-1.81L17.65,14.81L17.65,14.81z M8.94,17.41 c0.2,1.06-0.15,2.04-0.82,2.71c-0.77,0.77-3.16,1.34-4.71,1.64c-0.69,0.13-1.3-0.48-1.17-1.17c0.3-1.55,0.86-3.94,1.64-4.71 c0.67-0.67,1.65-1.02,2.71-0.82C7.76,15.28,8.72,16.24,8.94,17.41z M13,9c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S13,10.1,13,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.72,10.91c-0.15-0.15-0.19-0.36-0.11-0.55C6.98,9.54,8.03,7.38,9.5,5.91c3.45-3.45,6.38-3.58,7.6-3.42 c0.22,0.03,0.39,0.2,0.42,0.42c0.15,1.21,0.03,4.15-3.42,7.6c-1.47,1.47-3.63,2.52-4.45,2.89c-0.19,0.08-0.41,0.04-0.55-0.11 L6.72,10.91z M12.5,9C13.32,9,14,8.33,14,7.5S13.33,6,12.5,6C11.68,6,11,6.67,11,7.5S11.67,9,12.5,9z M7.04,5.29 c-0.46-0.06-0.92,0.1-1.25,0.43L2.82,8.69c-0.26,0.26-0.16,0.71,0.2,0.83l2.51,0.84c0.48-1.18,1.53-3.29,3-4.88L7.04,5.29z M14.71,12.96c0.06,0.46-0.1,0.92-0.43,1.25l-2.98,2.98c-0.26,0.26-0.71,0.16-0.83-0.2l-0.84-2.51c1.18-0.48,3.29-1.53,4.88-3 L14.71,12.96z M6.84,16.34c0.41-0.41,0.66-0.97,0.66-1.59c0-1.24-1.01-2.25-2.25-2.25c-0.62,0-1.18,0.25-1.59,0.66 c-0.89,0.89-1.36,3.05-1.55,4.16c-0.06,0.34,0.24,0.63,0.57,0.57C3.79,17.7,5.95,17.23,6.84,16.34z\\\"></path></g>\"\n      }\n    }\n  },\n  \"query_builder\": {\n    \"name\": \"query_builder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-.22-13h-.06c-.4 0-.72.32-.72.72v4.72c0 .35.18.68.49.86l4.15 2.49c.34.2.78.1.98-.24.21-.34.1-.79-.25-.99l-3.87-2.3V7.72c0-.4-.32-.72-.72-.72z\\\"></path>\"\n      }\n    }\n  },\n  \"new_label\": {\n    \"name\": \"new_label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.18,13.16l-3.55,5C16.25,18.69,15.65,19,15,19h-3l0-2l0-1c0-1.66-1.34-3-3-3h0v0c0-1.66-1.34-3-3-3H3V7c0-1.1,0.9-2,2-2 h10c0.65,0,1.26,0.31,1.63,0.84l3.55,5C20.67,11.54,20.67,12.46,20.18,13.16z M10,16c0-0.55-0.45-1-1-1H7v-2c0-0.55-0.45-1-1-1 c-0.55,0-1,0.45-1,1v2H3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-2h2 C9.55,17,10,16.55,10,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.5,10.5L8.5,10.5c-0.15-1.13-1.06-2-2.25-2H4v-2C4,5.67,4.67,5,5.5,5h6.78c0.46,0,0.89,0.21,1.17,0.56l2.8,3.5 c0.44,0.55,0.44,1.33,0,1.87l-2.8,3.5C13.17,14.79,12.73,15,12.28,15H10.5v-2.25C10.5,11.65,9.74,10.67,8.5,10.5z M9,12.75 C9,12.34,8.66,12,8.25,12H7v-1.25C7,10.34,6.66,10,6.25,10c-0.41,0-0.75,0.34-0.75,0.75V12H4.25c-0.41,0-0.75,0.34-0.75,0.75 c0,0.41,0.34,0.75,0.75,0.75H5.5v1.25c0,0.41,0.34,0.75,0.75,0.75C6.66,15.5,7,15.16,7,14.75V13.5h1.25C8.66,13.5,9,13.16,9,12.75z\\\"></path>\"\n      }\n    }\n  },\n  \"exit_to_app\": {\n    \"name\": \"exit_to_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.79 16.29c.39.39 1.02.39 1.41 0l3.59-3.59c.39-.39.39-1.02 0-1.41L12.2 7.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L12.67 11H4c-.55 0-1 .45-1 1s.45 1 1 1h8.67l-1.88 1.88c-.39.39-.38 1.03 0 1.41zM19 3H5c-1.11 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_late\": {\n    \"name\": \"assignment_late\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75 C11.25,3.09,11.59,2.75,12,2.75z M12,13L12,13c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v4 C13,12.55,12.55,13,12,13z M13,16c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S13,15.45,13,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_down_alt\": {\n    \"name\": \"swipe_down_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,13.9c2.28-0.46,4-2.48,4-4.9c0-2.76-2.24-5-5-5S7,6.24,7,9c0,2.42,1.72,4.44,4,4.9v4.27l-0.88-0.88 c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l2.59,2.59c0.39,0.39,1.02,0.39,1.41,0l2.59-2.59 c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0L13,18.17V13.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.47,14.47c-0.29-0.29-0.77-0.29-1.06,0l-0.66,0.66l0-3.2C12.6,11.58,14,9.95,14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8 c0,1.95,1.4,3.58,3.25,3.93l0,3.2l-0.66-0.66c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06l1.76,1.76c0.39,0.39,1.02,0.39,1.41,0 l1.76-1.76C12.76,15.24,12.76,14.76,12.47,14.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_window\": {\n    \"name\": \"sensor_window\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2L18,2z M7,19h10v-6H7 V19z M10,10h4v1h3V5H7v6h3V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,4v12H5V4H15 M15,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V4C16,3.45,15.55,3,15,3L15,3z M6,10 v5h8v-5H6z M8.5,9V8h3v1H14V5H6v4H8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"energy_savings_leaf\": {\n    \"name\": \"energy_savings_leaf\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3c-4.8,0-9,3.86-9,9c0,2.12,0.74,4.07,1.97,5.61l-1.68,1.68c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 l1.68-1.68C7.93,20.26,9.88,21,12,21c2.3,0,4.61-0.88,6.36-2.64C20.12,16.61,21,14.3,21,12V5c0-1.1-0.9-2-2-2H12z M15.83,12.26 l-5.16,4.63c-0.16,0.15-0.41,0.14-0.56-0.01c-0.14-0.14-0.16-0.36-0.04-0.52l2.44-3.33l-4.05-0.4c-0.44-0.04-0.63-0.59-0.3-0.89 l5.16-4.63c0.16-0.15,0.41-0.14,0.56,0.01c0.14,0.14,0.16,0.36,0.04,0.52l-2.44,3.33l4.05,0.4 C15.98,11.41,16.16,11.96,15.83,12.26z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.73,0-7,3-7,7c0,1.66,0.58,3.19,1.55,4.39l-1.3,1.3c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0 l1.3-1.3C6.81,16.42,8.34,17,10,17c1.79,0,3.58-0.68,4.95-2.05C16.32,13.58,17,11.79,17,10V4.5C17,3.67,16.33,3,15.5,3H10z M12.84,10.3l-3.86,3.59c-0.16,0.15-0.4,0.14-0.55-0.01c-0.14-0.14-0.15-0.37-0.03-0.52l2.02-2.58L7.49,10.6 c-0.45-0.03-0.65-0.58-0.32-0.9l3.86-3.59c0.16-0.15,0.4-0.14,0.55,0.01c0.14,0.14,0.15,0.37,0.03,0.52L9.58,9.22l2.93,0.18 C12.97,9.43,13.17,9.99,12.84,10.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane\": {\n    \"name\": \"propane\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.75,6L16,6V5c0-1.1-0.9-2-2-2h-4C8.9,3,8,3.9,8,5v1L7.25,6C3.97,6,1.1,8.53,1,11.82C0.9,15.21,3.62,18,7,18v2 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h6v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2c3.38,0,6.1-2.79,6-6.18 C22.9,8.53,20.03,6,16.75,6z M10,5h4v1h-4V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.79,5L13,5V4c0-0.83-0.67-1.5-1.5-1.5h-3C7.67,2.5,7,3.17,7,4v1L6.21,5C3.6,5,1.27,6.91,1.02,9.51 C0.74,12.49,3.08,15,6,15v1.25C6,16.66,6.34,17,6.75,17h0c0.41,0,0.75-0.34,0.75-0.75V15h5v1.25c0,0.41,0.34,0.75,0.75,0.75h0 c0.41,0,0.75-0.34,0.75-0.75V15c2.92,0,5.26-2.51,4.98-5.49C18.73,6.91,16.4,5,13.79,5z M8.5,4h3v1h-3V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vertical_shades\": {\n    \"name\": \"vertical_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H20z M10,19V5h4v14H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h14.5c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H16z M8.5,4.5h3v11h-3V4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"curtains\": {\n    \"name\": \"curtains\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H20z M8.19,12c2.04-1.35,3.5-3.94,3.76-7h0.09c0.26,3.06,1.72,5.65,3.76,7c-2.04,1.35-3.5,3.94-3.76,7h-0.09 C11.69,15.94,10.23,13.35,8.19,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h14.5c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H16z M7.35,10 C8.6,9.16,9.57,7.68,10,5.88c0.43,1.8,1.4,3.28,2.65,4.12c-1.25,0.84-2.22,2.32-2.65,4.12C9.57,12.32,8.6,10.84,7.35,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"solar_power\": {\n    \"name\": \"solar_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.33,16H11v-3H5.6c-0.94,0-1.75,0.65-1.95,1.57L3.33,16z\\\"></path><path d=\\\"M13,16h7.67l-0.32-1.43C20.14,13.65,19.33,13,18.4,13H13V16z\\\"></path><path d=\\\"M21.11,18H13v4h6.51c1.28,0,2.23-1.18,1.95-2.43L21.11,18z\\\"></path><path d=\\\"M4.49,22H11v-4H2.89l-0.35,1.57C2.26,20.82,3.21,22,4.49,22z\\\"></path><path d=\\\"M12,8L12,8c-0.55,0-1,0.45-1,1v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V9C13,8.45,12.55,8,12,8z\\\"></path><path d=\\\"M18.59,8.62L18.59,8.62c0.39-0.39,0.39-1.02,0-1.41L17.88,6.5c-0.39-0.39-1.02-0.39-1.41,0v0c-0.39,0.39-0.39,1.02,0,1.41 l0.71,0.71C17.57,9.01,18.2,9.01,18.59,8.62z\\\"></path><path d=\\\"M6.82,8.62l0.71-0.71c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L5.41,7.2c-0.39,0.39-0.39,1.02,0,1.41 l0,0C5.8,9.01,6.43,9.01,6.82,8.62z\\\"></path><path d=\\\"M5,2H4C3.45,2,3,2.45,3,3v0c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v0C6,2.45,5.55,2,5,2z\\\"></path><path d=\\\"M20,2h-1c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v0C21,2.45,20.55,2,20,2z\\\"></path><path d=\\\"M12,7c2.76,0,5-2.24,5-5H7C7,4.76,9.24,7,12,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.75,10v3.25h6.36l-0.38-2.03C16.6,10.51,15.98,10,15.26,10H10.75z\\\"></path><path d=\\\"M2.89,13.25h6.36V10H4.74c-0.72,0-1.34,0.51-1.47,1.22L2.89,13.25z\\\"></path><path d=\\\"M3.81,18h5.44v-3.25H2.61l-0.28,1.47C2.16,17.15,2.87,18,3.81,18z\\\"></path><path d=\\\"M17.39,14.75h-6.64V18h5.44c0.94,0,1.65-0.85,1.47-1.78L17.39,14.75z\\\"></path><path d=\\\"M10,7L10,7C9.59,7,9.25,7.34,9.25,7.75v0.5C9.25,8.66,9.59,9,10,9h0c0.41,0,0.75-0.34,0.75-0.75v-0.5 C10.75,7.34,10.41,7,10,7z\\\"></path><path d=\\\"M15.16,7.16L15.16,7.16c0.29-0.29,0.29-0.77,0-1.06l-0.35-0.35c-0.29-0.29-0.77-0.29-1.06,0l0,0 c-0.29,0.29-0.29,0.77,0,1.06l0.35,0.35C14.4,7.46,14.87,7.46,15.16,7.16z\\\"></path><path d=\\\"M5.9,7.16l0.35-0.35c0.29-0.29,0.29-0.77,0-1.06l0,0c-0.29-0.29-0.77-0.29-1.06,0L4.84,6.1c-0.29,0.29-0.29,0.77,0,1.06 l0,0C5.13,7.46,5.6,7.46,5.9,7.16z\\\"></path><path d=\\\"M4.25,2.05h-0.5C3.34,2.05,3,2.39,3,2.8v0c0,0.41,0.34,0.75,0.75,0.75h0.5C4.66,3.55,5,3.21,5,2.8v0 C5,2.39,4.66,2.05,4.25,2.05z\\\"></path><path d=\\\"M16.25,2.05h-0.5C15.34,2.05,15,2.39,15,2.8v0c0,0.41,0.34,0.75,0.75,0.75h0.5C16.66,3.55,17,3.21,17,2.8v0 C17,2.39,16.66,2.05,16.25,2.05z\\\"></path><path d=\\\"M10,6c2.21,0,4-1.79,4-4H6C6,4.21,7.79,6,10,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"broadcast_on_home\": {\n    \"name\": \"broadcast_on_home\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,6c0-1.1-0.9-2-2-2H5C4.45,4,4,4.45,4,5v0c0,0.55,0.45,1,1,1h15v2.59c0.73,0.29,1.4,0.69,2,1.17V6z\\\"></path><path d=\\\"M8,9H3c-0.5,0-1,0.5-1,1v9c0,0.5,0.5,1,1,1h5c0.5,0,1-0.5,1-1v-9C9,9.5,8.5,9,8,9z M7,18H4v-7h3V18z\\\"></path><path d=\\\"M17.75,16.97c0.3-0.23,0.5-0.57,0.5-0.97c0-0.69-0.56-1.25-1.25-1.25s-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97v4.28 c0,0.41,0.34,0.75,0.75,0.75l0,0c0.41,0,0.75-0.34,0.75-0.75V16.97z\\\"></path><path d=\\\"M17.54,13.56c0.98,0.21,1.76,1.03,1.93,2.02c0.11,0.64-0.03,1.25-0.34,1.74c-0.18,0.29-0.13,0.67,0.12,0.91l0,0 c0.34,0.33,0.9,0.29,1.16-0.12c0.51-0.82,0.73-1.83,0.53-2.9c-0.3-1.56-1.56-2.83-3.12-3.13C15.24,11.58,13,13.53,13,16 c0,0.78,0.22,1.5,0.6,2.11c0.25,0.41,0.83,0.46,1.16,0.12l0,0c0.24-0.24,0.29-0.63,0.11-0.92c-0.24-0.38-0.37-0.83-0.37-1.31 C14.5,14.45,15.93,13.22,17.54,13.56z\\\"></path><path d=\\\"M16.25,9.54c-2.94,0.33-5.32,2.68-5.69,5.61c-0.23,1.82,0.29,3.51,1.3,4.82c0.27,0.35,0.8,0.37,1.12,0.06l0,0 c0.27-0.27,0.28-0.7,0.05-1c-0.8-1.05-1.2-2.43-0.95-3.89c0.34-2.03,1.95-3.67,3.98-4.05C19.22,10.5,22,12.93,22,16 c0,1.13-0.38,2.18-1.02,3.02c-0.23,0.3-0.21,0.73,0.06,1l0,0c0.31,0.31,0.84,0.3,1.11-0.06C23,18.87,23.5,17.49,23.5,16 C23.5,12.16,20.17,9.1,16.25,9.54z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,5.5C18,4.67,17.33,4,16.5,4H4.75C4.34,4,4,4.34,4,4.75v0C4,5.16,4.34,5.5,4.75,5.5H16.5v2.05 c0.55,0.25,1.05,0.59,1.5,0.99V5.5z\\\"></path><path d=\\\"M6.5,7.5H3c-0.55,0-1,0.45-1,1V15c0,0.55,0.45,1,1,1h3.5c0.55,0,1-0.45,1-1V8.5C7.5,7.95,7.05,7.5,6.5,7.5z M6,14.5H3.5V9 H6V14.5z\\\"></path><path d=\\\"M14.5,13.85c0.36-0.21,0.58-0.62,0.47-1.09c-0.09-0.36-0.39-0.66-0.76-0.74C13.57,11.89,13,12.38,13,13 c0,0.37,0.21,0.67,0.5,0.85v3.65c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5V13.85z\\\"></path><path d=\\\"M13.43,8.03c-2.32,0.26-4.2,2.17-4.41,4.5c-0.12,1.36,0.3,2.62,1.07,3.59c0.19,0.23,0.53,0.25,0.74,0.04l0,0 c0.18-0.18,0.19-0.46,0.04-0.66c-0.7-0.87-1.04-2.04-0.8-3.29c0.3-1.56,1.56-2.83,3.12-3.13C15.75,8.58,18,10.53,18,13 c0,1.02-0.39,1.94-1.02,2.65c-0.17,0.19-0.17,0.47,0,0.66v0c0.2,0.22,0.55,0.22,0.75,0C18.52,15.42,19,14.27,19,13 C19,10.05,16.45,7.7,13.43,8.03z\\\"></path><path d=\\\"M14.47,11.05c0.71,0.16,1.29,0.74,1.47,1.44c0.16,0.63,0.01,1.22-0.33,1.68c-0.14,0.19-0.14,0.46,0.02,0.64l0,0 c0.21,0.24,0.59,0.21,0.78-0.05c0.46-0.62,0.69-1.42,0.54-2.29c-0.22-1.29-1.3-2.31-2.6-2.46C12.54,9.81,11,11.23,11,13 c0,0.62,0.19,1.2,0.51,1.68c0.17,0.25,0.54,0.27,0.75,0.05l0,0c0.17-0.17,0.19-0.44,0.05-0.64C12.12,13.77,12,13.4,12,13 C12,11.74,13.16,10.75,14.47,11.05z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane_tank\": {\n    \"name\": \"propane_tank\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,15v3c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4v-3H4z\\\"></path><path d=\\\"M20,13v-3c0-1.86-1.28-3.41-3-3.86V4c0-1.1-0.9-2-2-2H9C7.9,2,7,2.9,7,4v2.14c-1.72,0.45-3,2-3,3.86v3H20z M9,4h6v2h-2 c0-0.55-0.45-1-1-1s-1,0.45-1,1H9V4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,12.25V15c0,1.66,1.34,3,3,3h6c1.66,0,3-1.34,3-3v-2.75H4z\\\"></path><path d=\\\"M16,10.75V8c0-1.3-0.84-2.4-2-2.82V3.5C14,2.67,13.33,2,12.5,2h-5C6.67,2,6,2.67,6,3.5v1.68C4.84,5.6,4,6.7,4,8v2.75H16z M7.5,3.5h5V5h-1.75c0-0.41-0.34-0.75-0.75-0.75S9.25,4.59,9.25,5H7.5V3.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"vertical_shades_closed\": {\n    \"name\": \"vertical_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H20z M13,5h1.5v14H13V5z M11,19H9.5V5H11V19z M6,5h1.5v14H6V5z M16.5,19V5H18v14H16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h14.5c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H16z M10.75,4.5h1.12v11h-1.12V4.5z M9.25,15.5H8.12v-11h1.12V15.5z M5.5,4.5h1.12v11H5.5V4.5z M13.38,15.5v-11h1.12v11H13.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nest_cam_wired_stand\": {\n    \"name\": \"nest_cam_wired_stand\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.83,1.01l-4.11,0.42C8.47,1.75,6,4.48,6,7.75s2.47,6,5.72,6.33l1.9,0.19l-0.56,0.85C12.71,15.04,12.36,15,12,15 c-2.76,0-5,2.24-5,5v2c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-2c0-1.67-0.83-3.15-2.09-4.06l0.97-1.45 C17.02,14.56,18,13.66,18,12.5V3C18,1.83,17,0.91,15.83,1.01z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.31,1.01L9.72,1.47C7.02,1.79,5,4.06,5,6.75c0,2.69,2.02,4.96,4.72,5.28l1.37,0.17l-0.57,0.85 C10.35,13.03,10.18,13,10,13c-2.21,0-4,1.79-4,4v1.5C6,18.78,6.22,19,6.5,19h7c0.28,0,0.5-0.22,0.5-0.5V17 c0-1.48-0.81-2.76-2.01-3.45l0.76-1.13l0.56,0.07c0.9,0.11,1.69-0.58,1.69-1.48V2.49C15,1.59,14.21,0.9,13.31,1.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"blinds\": {\n    \"name\": \"blinds\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H20z M16,9h2v2h-2V9z M14,11H6V9h8V11z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-6h8v1.82 c-0.45,0.32-0.75,0.84-0.75,1.43c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75c0-0.59-0.3-1.12-0.75-1.43V13h2v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h14.5c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H16z M12.5,7.75h2v1.5h-2V7.75z M11,9.25 H5.5v-1.5H11V9.25z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-4.75H11v1.53c-0.3,0.23-0.5,0.57-0.5,0.97 c0,0.69,0.56,1.25,1.25,1.25S13,13.94,13,13.25c0-0.4-0.2-0.75-0.5-0.97v-1.53h2v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_occupied\": {\n    \"name\": \"sensor_occupied\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,11c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,6.34,9,8S10.34,11,12,11z\\\"></path><path d=\\\"M12,12c-1.84,0-3.56,0.5-5.03,1.37C6.36,13.73,6,14.39,6,15.09L6,16c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1l0-0.91 c0-0.7-0.36-1.36-0.97-1.72C15.56,12.5,13.84,12,12,12z\\\"></path><path d=\\\"M22.11,7.79L22.11,7.79c0.55-0.23,0.78-0.88,0.5-1.41c-1.13-2.12-2.87-3.86-4.99-4.99c-0.52-0.28-1.17-0.04-1.4,0.5v0 c-0.19,0.47-0.01,1.02,0.43,1.25c1.79,0.94,3.26,2.42,4.21,4.21C21.09,7.8,21.64,7.98,22.11,7.79z\\\"></path><path d=\\\"M7.79,1.89L7.79,1.89c-0.23-0.55-0.88-0.78-1.4-0.5C4.27,2.52,2.52,4.26,1.4,6.38c-0.28,0.52-0.05,1.18,0.5,1.41l0,0 c0.47,0.2,1.02,0.01,1.25-0.43c0.94-1.79,2.42-3.26,4.21-4.21C7.8,2.91,7.98,2.36,7.79,1.89z\\\"></path><path d=\\\"M1.89,16.21L1.89,16.21c-0.55,0.23-0.78,0.88-0.5,1.4c1.13,2.12,2.87,3.87,5,5c0.52,0.28,1.17,0.04,1.4-0.5l0,0 c0.19-0.47,0.01-1.02-0.43-1.25c-1.79-0.94-3.26-2.42-4.21-4.21C2.91,16.2,2.36,16.02,1.89,16.21z\\\"></path><path d=\\\"M16.21,22.11L16.21,22.11c0.23,0.55,0.88,0.78,1.4,0.5c2.12-1.13,3.87-2.87,5-5c0.28-0.52,0.04-1.17-0.5-1.4h0 c-0.47-0.19-1.02-0.01-1.25,0.43c-0.94,1.79-2.42,3.26-4.21,4.21C16.2,21.09,16.02,21.64,16.21,22.11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.51,6.45L18.51,6.45c0.39-0.16,0.58-0.63,0.39-1c-0.96-1.87-2.48-3.4-4.35-4.35c-0.38-0.19-0.84,0-1,0.39l-0.02,0.05 c-0.14,0.34,0.02,0.73,0.35,0.9c1.58,0.81,2.87,2.11,3.69,3.69C17.74,6.47,18.16,6.6,18.51,6.45z\\\"></path><path d=\\\"M13.55,18.51L13.55,18.51c0.16,0.39,0.63,0.58,1,0.39c1.87-0.96,3.4-2.48,4.35-4.35c0.19-0.38,0-0.84-0.39-1l0,0 c-0.35-0.15-0.78-0.01-0.95,0.33c-0.81,1.58-2.11,2.87-3.69,3.69C13.53,17.74,13.4,18.16,13.55,18.51z\\\"></path><path d=\\\"M1.49,13.55L1.49,13.55c-0.39,0.16-0.58,0.63-0.39,1c0.96,1.87,2.48,3.4,4.35,4.35c0.38,0.19,0.84,0,1-0.39l0,0 c0.15-0.35,0.01-0.78-0.33-0.95c-1.58-0.81-2.87-2.11-3.69-3.69C2.26,13.53,1.84,13.4,1.49,13.55z\\\"></path><path d=\\\"M6.45,1.49L6.45,1.49c-0.16-0.39-0.63-0.58-1-0.39C3.58,2.05,2.05,3.58,1.1,5.45c-0.19,0.38,0,0.84,0.39,1l0,0 C1.84,6.6,2.26,6.47,2.44,6.13c0.81-1.58,2.11-2.87,3.69-3.69C6.47,2.26,6.6,1.84,6.45,1.49z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z\\\"></path><path d=\\\"M10,10c-1.53,0-2.95,0.41-4.18,1.13C5.31,11.43,5,11.98,5,12.57l0,0.93C5,13.78,5.22,14,5.5,14h9c0.28,0,0.5-0.22,0.5-0.5 l0-0.93c0-0.59-0.31-1.14-0.82-1.44C12.95,10.41,11.53,10,10,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bolt\": {\n    \"name\": \"electric_bolt\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.69,2.21L4.33,11.49c-0.64,0.58-0.28,1.65,0.58,1.73L13,14l-4.85,6.76c-0.22,0.31-0.19,0.74,0.08,1.01h0 c0.3,0.3,0.77,0.31,1.08,0.02l10.36-9.28c0.64-0.58,0.28-1.65-0.58-1.73L11,10l4.85-6.76c0.22-0.31,0.19-0.74-0.08-1.01l0,0 C15.47,1.93,15,1.92,14.69,2.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.72,2.21l-8.56,7.93c-0.32,0.3-0.12,0.83,0.31,0.86l7.33,0.5l-3.64,5.27c-0.24,0.3-0.21,0.73,0.06,1.01h0 c0.29,0.29,0.76,0.3,1.06,0.01l8.56-7.93c0.32-0.3,0.12-0.83-0.31-0.86L9.2,8.5l3.64-5.27c0.24-0.3,0.21-0.73-0.06-1.01l0,0 C12.49,1.93,12.01,1.93,11.72,2.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"blinds_closed\": {\n    \"name\": \"blinds_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h10.25 c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H21c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H20z M18,11h-2V9h2V11z M14,11H6V9h8V11 z M14,13v2H6v-2H14z M16,13h2v2h-2V13z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-2h8v2H6z M16,19v-2h2v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h7.75c0,0.69,0.56,1.25,1.25,1.25S13,17.69,13,17h4.25c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H16z M14.5,9.25h-2v-1.5h2V9.25z M11,9.25H5.5v-1.5H11V9.25z M11,10.75v1.5H5.5v-1.5H11z M12.5,10.75h2 v1.5h-2V10.75z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-1.75H11v1.75H5.5z M12.5,15.5v-1.75h2v1.75H12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"oil_barrel\": {\n    \"name\": \"oil_barrel\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,13c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1V5h1c0.55,0,1-0.45,1-1s-0.45-1-1-1H4C3.45,3,3,3.45,3,4s0.45,1,1,1h1v6H4 c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v6H4c-0.55,0-1,0.45-1,1s0.45,1,1,1h16c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1v-6H20z M12,16 c-1.66,0-3-1.32-3-2.95c0-1.16,0.41-1.58,2.24-3.68c0.4-0.46,1.12-0.46,1.51,0c1.82,2.09,2.24,2.52,2.24,3.68 C15,14.68,13.66,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.25,10.75c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5V4.5h0.75C16.66,4.5,17,4.16,17,3.75S16.66,3,16.25,3 H3.75C3.34,3,3,3.34,3,3.75S3.34,4.5,3.75,4.5H4.5v4.75H3.75C3.34,9.25,3,9.59,3,10s0.34,0.75,0.75,0.75H4.5v4.75H3.75 C3.34,15.5,3,15.84,3,16.25S3.34,17,3.75,17h12.5c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5v-4.75H16.25z M10,13 c-1.24,0-2.25-0.99-2.25-2.21c0-0.91,0.34-1.21,1.87-2.98c0.2-0.23,0.55-0.23,0.75,0c1.53,1.76,1.87,2.07,1.87,2.98 C12.25,12.01,11.24,13,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"heat_pump\": {\n    \"name\": \"heat_pump\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.75,7.08 c0.82,0.12,1.57,0.44,2.2,0.91l-2.2,2.2V7.08z M11.25,7.08v3.11l-2.2-2.2C9.68,7.52,10.43,7.2,11.25,7.08z M7.99,9.05l2.2,2.2H7.08 C7.2,10.43,7.52,9.68,7.99,9.05z M7.08,12.75h3.11l-2.2,2.2C7.52,14.32,7.2,13.57,7.08,12.75z M11.25,16.92 c-0.82-0.12-1.57-0.44-2.2-0.91l2.2-2.2V16.92z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,12.55,12.55,13,12,13z M12.75,16.92v-3.11l2.2,2.2C14.32,16.48,13.57,16.8,12.75,16.92z M16.01,14.95l-2.2-2.2h3.11C16.8,13.57,16.48,14.32,16.01,14.95z M13.81,11.25l2.2-2.2c0.47,0.64,0.79,1.39,0.91,2.2H13.81z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M10.5,6.3c0.66,0.09,1.26,0.34,1.76,0.73L10.5,8.79V6.3z M9.5,6.3v2.49L7.74,7.03C8.24,6.64,8.84,6.39,9.5,6.3z M7.03,7.74 L8.79,9.5H6.3C6.39,8.84,6.64,8.24,7.03,7.74z M6.3,10.5h2.49l-1.76,1.76C6.64,11.76,6.39,11.16,6.3,10.5z M9.5,13.7 c-0.66-0.09-1.26-0.34-1.76-0.73l1.76-1.76V13.7z M9.25,10c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75S9.25,10.41,9.25,10z M10.5,13.7v-2.49l1.76,1.76C11.76,13.36,11.16,13.61,10.5,13.7z M12.97,12.26 l-1.76-1.76h2.49C13.61,11.16,13.36,11.76,12.97,12.26z M11.21,9.5l1.76-1.76c0.38,0.5,0.64,1.1,0.73,1.76H11.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"broadcast_on_personal\": {\n    \"name\": \"broadcast_on_personal\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,8c0.7,0,1.38,0.1,2.02,0.27L12,3L4,9v12h6.76C9.66,19.63,9,17.89,9,16C9,11.58,12.58,8,17,8z\\\"></path><path d=\\\"M17,14.75c-0.69,0-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22h1.5v-5.03c0.3-0.23,0.5-0.57,0.5-0.97 C18.25,15.31,17.69,14.75,17,14.75z\\\"></path><path d=\\\"M17,12c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16C21,13.79,19.21,12,17,12z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.38,7.03L8,3L2,7.5V17h7.54C8.58,15.94,8,14.54,8,13C8,9.9,10.36,7.34,13.38,7.03z\\\"></path><path d=\\\"M14,12c-0.55,0-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1v-4.15C14.79,13.67,15,13.37,15,13C15,12.45,14.55,12,14,12z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,10c-1.66,0-3,1.34-3,3c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22C17,11.34,15.66,10,14,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_meter\": {\n    \"name\": \"electric_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.73,2C7.05,2.14,3.15,6.03,3,10.71c-0.13,4.04,2.42,7.5,6,8.77V21c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1.06 c0.33,0.04,0.66,0.06,1,0.06s0.67-0.02,1-0.06V21c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1.53c3.49-1.24,6-4.57,6-8.47 C21,5.95,16.82,1.85,11.73,2z M13.54,14.71L12,16.25c-0.41,0.41-1.09,0.41-1.5,0h0c-0.41-0.41-0.41-1.09,0-1.5l0.5-0.5l-0.54-0.54 c-0.39-0.39-0.39-1.02,0-1.41L12,10.75c0.41-0.41,1.09-0.41,1.5,0l0,0c0.41,0.41,0.41,1.09,0,1.5l-0.5,0.5l0.54,0.54 C13.93,13.68,13.93,14.32,13.54,14.71z M15,9H9C8.45,9,8,8.55,8,8v0c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v0C16,8.55,15.55,9,15,9 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.9,2C6.17,2.05,3.03,5.21,3,8.94c-0.02,3.01,1.85,5.58,4.5,6.59v1.72C7.5,17.66,7.84,18,8.25,18h0 C8.66,18,9,17.66,9,17.25v-1.33C9.33,15.97,9.66,16,10,16s0.67-0.03,1-0.08v1.33c0,0.41,0.34,0.75,0.75,0.75h0 c0.41,0,0.75-0.34,0.75-0.75v-1.72C15.13,14.52,17,11.98,17,9C17,5.1,13.81,1.94,9.9,2z M11.4,11.65l-1.57,1.57 c-0.29,0.29-0.76,0.29-1.05,0l0,0c-0.29-0.29-0.29-0.76,0-1.05l0.48-0.48L8.6,11.05c-0.2-0.2-0.2-0.51,0-0.71l1.57-1.57 c0.29-0.29,0.76-0.29,1.05,0l0,0c0.29,0.29,0.29,0.76,0,1.05l-0.48,0.48l0.65,0.65C11.59,11.14,11.59,11.46,11.4,11.65z M12.25,7.5 h-4.5C7.34,7.5,7,7.16,7,6.75v0C7,6.34,7.34,6,7.75,6h4.5C12.66,6,13,6.34,13,6.75v0C13,7.16,12.66,7.5,12.25,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"roller_shades\": {\n    \"name\": \"roller_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H20z M6,19v-6h5v1.8c-0.4,0.3-0.8,0.8-0.8,1.4c0,1,0.8,1.8,1.8,1.8s1.8-0.8,1.8-1.8c0-0.6-0.3-1.1-0.8-1.4V13h5 v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h14.5c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H16z M5.5,15.5v-4.75h3.75v1.53 c-0.3,0.23-0.5,0.57-0.5,0.97c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25c0-0.4-0.2-0.75-0.5-0.97v-1.53h3.75v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wind_power\": {\n    \"name\": \"wind_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,3H5C4.45,3,4,3.45,4,4v0c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v0C10,3.45,9.55,3,9,3z\\\"></path><path d=\\\"M5,7H2C1.45,7,1,7.45,1,8v0c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v0C6,7.45,5.55,7,5,7z\\\"></path><path d=\\\"M4,21h3c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,20.55,3.45,21,4,21z\\\"></path><path d=\\\"M13.73,10.61c0.75,0.23,1.3,0.78,1.57,1.46l4.27-7.11c0.65-1.08,0.3-2.48-0.78-3.13c-0.87-0.52-1.99-0.41-2.73,0.29 l-3.43,3.21C12.23,5.7,12,6.23,12,6.78v3.93C12.36,10.56,12.98,10.38,13.73,10.61z\\\"></path><path d=\\\"M10.61,12.27c0.16-0.52,0.48-0.96,0.89-1.27H3.28C2.02,11,1,12.02,1,13.28c0,1.02,0.67,1.91,1.65,2.19l4.51,1.29 c0.53,0.15,1.1,0.08,1.58-0.21l2.69-1.61C10.66,14.32,10.3,13.27,10.61,12.27z\\\"></path><path d=\\\"M22.21,18.61l-2.28-4.1c-0.27-0.48-0.73-0.83-1.26-0.97l-3.18-0.8c0.03,0.32,0,0.66-0.1,0.99 c-0.32,1.06-1.28,1.77-2.39,1.77c-0.61,0-0.99-0.22-1-0.22V21c-1.1,0-2,0.9-2,2h6c0-1.1-0.9-2-2-2v-4.28l4.61,4.61 c0.89,0.89,2.33,0.89,3.22,0C22.55,20.61,22.71,19.5,22.21,18.61z\\\"></path><path d=\\\"M12.56,14.43c0.79,0.24,1.63-0.2,1.87-1c0.24-0.79-0.2-1.63-1-1.87c-0.79-0.24-1.63,0.2-1.87,1 C11.32,13.35,11.77,14.19,12.56,14.43z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M7.25,3h-3.5C3.34,3,3,3.34,3,3.75v0C3,4.16,3.34,4.5,3.75,4.5h3.5C7.66,4.5,8,4.16,8,3.75v0C8,3.34,7.66,3,7.25,3z\\\"></path></g><g><path d=\\\"M4.25,6.5h-2.5C1.34,6.5,1,6.84,1,7.25v0C1,7.66,1.34,8,1.75,8h2.5C4.66,8,5,7.66,5,7.25v0C5,6.84,4.66,6.5,4.25,6.5z\\\"></path></g><g><path d=\\\"M3.75,17h2.5C6.66,17,7,16.66,7,16.25l0,0c0-0.41-0.34-0.75-0.75-0.75h-2.5C3.34,15.5,3,15.84,3,16.25l0,0 C3,16.66,3.34,17,3.75,17z\\\"></path></g><g><path d=\\\"M10.06,12.43c0.79,0.24,1.63-0.2,1.87-1c0.24-0.79-0.2-1.63-1-1.87c-0.79-0.24-1.63,0.2-1.87,1 C8.82,11.35,9.27,12.19,10.06,12.43z\\\"></path></g><g><path d=\\\"M8.11,10.27C8.27,9.75,8.59,9.31,9,9H2.8C1.81,9,1,9.81,1,10.8c0,0.8,0.53,1.51,1.31,1.73l3.6,1.03 c0.4,0.11,0.83,0.06,1.18-0.16l1.44-0.87C8.05,11.92,7.86,11.08,8.11,10.27z\\\"></path></g><g><path d=\\\"M17.77,15.32l-1.82-3.27c-0.2-0.36-0.54-0.63-0.95-0.73l-2.02-0.5c0.02,0.3,0,0.61-0.1,0.92 c-0.5,1.62-2.03,1.77-2.39,1.77c-0.25,0-0.49-0.04-0.73-0.11c-0.01,0-0.01-0.01-0.02-0.01v4.04H9.58C8.71,17.42,8,18.13,8,19h5 c0-0.87-0.71-1.58-1.58-1.58h-0.17V13.8l3.67,3.67c0.7,0.7,1.85,0.7,2.55,0C18.04,16.9,18.16,16.03,17.77,15.32z\\\"></path></g><g><path d=\\\"M11.23,8.61c0.63,0.19,1.13,0.62,1.43,1.16l3.32-5.54c0.51-0.85,0.24-1.96-0.62-2.47c-0.69-0.41-1.57-0.32-2.16,0.23 l-2.74,2.56C10.17,4.83,10,5.23,10,5.64v2.91C10.18,8.52,10.64,8.43,11.23,8.61z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"roller_shades_closed\": {\n    \"name\": \"roller_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h7.25 c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H21c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H20z M6,19v-2h5v2H6z M13,19v-2h5v2H13 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h6c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25h6c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H16z M9.25,15.5H5.5V14h3.75V15.5z M14.5,15.5h-3.75V14h3.75V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_fan_off\": {\n    \"name\": \"mode_fan_off\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.34,8.36l-2.29,0.82c-0.18-0.13-0.38-0.25-0.58-0.34c0.17-0.83,0.63-1.58,1.36-2.06C16.85,5.44,16.18,2,13.39,2 c-3.08,0-4.9,1.47-5.3,3.26L18.73,15.9c1.5,0.39,3.27-0.51,3.27-2.51C22,9,18.99,7.16,16.34,8.36z\\\"></path></g><g><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41L5.27,8.1C3.77,7.7,2,8.61,2,10.61c0,4.4,3.01,6.24,5.66,5.03l2.29-0.82 c0.18,0.13,0.38,0.25,0.58,0.34c-0.17,0.83-0.63,1.58-1.36,2.06C7.15,18.56,7.82,22,10.61,22c3.08,0,4.9-1.47,5.3-3.26l3.16,3.16 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51C3.12,3.12,2.49,3.12,2.1,3.51z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.46,13.34c0.17,0.04,0.35,0.06,0.54,0.06c0.98,0,2-0.76,2-2.08C18,8.52,16.49,7,14.8,7c-0.83,0-1.29,0.22-3.01,0.91 c-0.14-0.12-0.28-0.22-0.44-0.31c0.22-0.99,0.64-1.47,1.1-1.78C13.09,5.39,13.4,4.75,13.4,4c0-0.98-0.76-2-2.08-2 C8.69,2,7.2,3.34,7.03,4.91L15.46,13.34z\\\"></path><path d=\\\"M2.4,3.46L2.4,3.46c-0.29,0.29-0.29,0.77,0,1.06l2.14,2.14C4.37,6.62,4.19,6.6,4,6.6c-0.98,0-2,0.76-2,2.08 C2,11.48,3.51,13,5.2,13c0.83,0,1.29-0.22,3.01-0.91c0.14,0.12,0.28,0.22,0.44,0.31c-0.22,0.99-0.64,1.47-1.1,1.78 C6.91,14.61,6.6,15.25,6.6,16c0,0.98,0.76,2,2.08,2c2.63,0,4.12-1.34,4.29-2.91l2.51,2.51c0.29,0.29,0.77,0.29,1.06,0l0,0 c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46C3.17,3.17,2.69,3.17,2.4,3.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"curtains_closed\": {\n    \"name\": \"curtains_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H20z M11,5h2v14h-2V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5v-11C16,3.67,15.33,3,14.5,3h-9C4.67,3,4,3.67,4,4.5v11H2.75C2.34,15.5,2,15.84,2,16.25l0,0 C2,16.66,2.34,17,2.75,17h14.5c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H16z M9,4.5h2v11H9V4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shield_moon\": {\n    \"name\": \"shield_moon\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.3,2.26l-6,2.25C4.52,4.81,4,5.55,4,6.39v4.7c0,4.83,3.13,9.37,7.43,10.75c0.37,0.12,0.77,0.12,1.14,0 c4.3-1.38,7.43-5.91,7.43-10.75v-4.7c0-0.83-0.52-1.58-1.3-1.87l-6-2.25C12.25,2.09,11.75,2.09,11.3,2.26z M15.97,14.41 c-1.84,2.17-5.21,2.1-6.96-0.07c-2.19-2.72-0.65-6.72,2.69-7.33c0.34-0.06,0.63,0.27,0.51,0.6c-0.46,1.23-0.39,2.64,0.32,3.86 c0.71,1.22,1.89,1.99,3.18,2.2C16.05,13.72,16.2,14.14,15.97,14.41z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.46,2.21l-5,1.92C3.88,4.35,3.5,4.91,3.5,5.53v3.74c0,3.88,2.56,7.52,6.07,8.61c0.28,0.09,0.58,0.09,0.86,0 c3.51-1.09,6.07-4.73,6.07-8.61V5.53c0-0.62-0.38-1.18-0.96-1.4l-5-1.92C10.19,2.07,9.81,2.07,9.46,2.21z M13.06,11.76 c-1.43,1.69-4.05,1.63-5.41-0.06c-1.71-2.12-0.51-5.23,2.09-5.7c0.27-0.05,0.49,0.21,0.39,0.47c-0.36,0.95-0.3,2.05,0.25,3 s1.47,1.55,2.48,1.71C13.12,11.23,13.24,11.55,13.06,11.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gas_meter\": {\n    \"name\": \"gas_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,4h-1V3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1h-2V3c0-0.55-0.45-1-1-1h0C9.45,2,9,2.45,9,3v1H8C5.79,4,4,5.79,4,8 v10c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4V8C20,5.79,18.21,4,16,4z M12,18c-1.38,0-2.5-1.1-2.5-2.46c0-1.02,0.38-1.35,2.12-3.35 c0.2-0.23,0.56-0.23,0.75,0c1.73,1.99,2.12,2.34,2.12,3.35C14.5,16.9,13.38,18,12,18z M15,10H9c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v0C16,9.55,15.55,10,15,10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3.5h-0.5V2.75C12.5,2.34,12.16,2,11.75,2h0C11.34,2,11,2.34,11,2.75V3.5H9V2.75C9,2.34,8.66,2,8.25,2h0 C7.84,2,7.5,2.34,7.5,2.75V3.5H7c-1.66,0-3,1.34-3,3V15c0,1.66,1.34,3,3,3h6c1.66,0,3-1.34,3-3V6.5C16,4.84,14.66,3.5,13,3.5z M10,14.5c-1.1,0-2-0.88-2-1.97c0-0.8,0.29-1.07,1.62-2.6c0.2-0.23,0.56-0.23,0.76,0c1.32,1.52,1.62,1.79,1.62,2.6 C12,13.62,11.1,14.5,10,14.5z M12.25,8h-4.5C7.34,8,7,7.66,7,7.25v0C7,6.84,7.34,6.5,7.75,6.5h4.5C12.66,6.5,13,6.84,13,7.25v0 C13,7.66,12.66,8,12.25,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_mode\": {\n    \"name\": \"auto_mode\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.06,2.83c-1.15-0.77-2.46-1.32-3.86-1.61C13.58,1.1,13,1.57,13,2.21v0c0,0.46,0.31,0.88,0.76,0.97 c1.17,0.23,2.26,0.7,3.21,1.34c0.39,0.26,0.9,0.19,1.23-0.14l0,0C18.66,3.93,18.59,3.18,18.06,2.83z\\\"></path><path d=\\\"M11,2.21L11,2.21c0-0.64-0.58-1.11-1.2-0.99c-1.4,0.29-2.71,0.84-3.86,1.61c-0.52,0.35-0.59,1.1-0.15,1.54l0,0 c0.33,0.33,0.84,0.4,1.23,0.14c0.96-0.64,2.04-1.1,3.21-1.34C10.69,3.09,11,2.67,11,2.21z\\\"></path><path d=\\\"M4.38,5.79L4.38,5.79C3.93,5.34,3.18,5.42,2.84,5.94C2.07,7.09,1.51,8.39,1.23,9.8C1.1,10.42,1.58,11,2.21,11h0 c0.46,0,0.88-0.31,0.97-0.76c0.23-1.17,0.7-2.26,1.34-3.22C4.77,6.64,4.7,6.12,4.38,5.79z\\\"></path><path d=\\\"M21.79,11L21.79,11c0.63,0,1.11-0.58,0.98-1.2c-0.29-1.4-0.84-2.7-1.61-3.86c-0.35-0.52-1.1-0.6-1.54-0.15l0,0 c-0.33,0.33-0.4,0.84-0.14,1.23c0.64,0.96,1.1,2.05,1.34,3.22C20.91,10.69,21.33,11,21.79,11z\\\"></path><path d=\\\"M8,12.46l2.44,1.11L11.54,16c0.18,0.39,0.73,0.39,0.91,0l1.11-2.44L16,12.46c0.39-0.18,0.39-0.73,0-0.91l-2.44-1.11 L12.46,8c-0.18-0.39-0.73-0.39-0.91,0l-1.11,2.44L8,11.54C7.61,11.72,7.61,12.28,8,12.46z\\\"></path><path d=\\\"M12,21c-3.11,0-5.85-1.59-7.46-4H6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-1.7c1.99,2.84,5.27,4.7,9,4.7c4.45,0,8.27-2.64,10-6.43c0.26-0.57-0.08-1.25-0.69-1.39l0,0 c-0.45-0.1-0.93,0.11-1.12,0.54C18.77,18.83,15.64,21,12,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.13,2.61c-1.04-0.72-2.24-1.23-3.53-1.46c-0.44-0.08-0.85,0.25-0.85,0.7v0.08c0,0.35,0.26,0.64,0.61,0.7 c1.06,0.19,2.04,0.61,2.89,1.2c0.29,0.2,0.68,0.18,0.93-0.07l0.06-0.06C15.55,3.39,15.5,2.87,15.13,2.61z\\\"></path><path d=\\\"M10,17.5c-2.66,0-4.98-1.41-6.31-3.5H5c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H1.5 C1.22,12.5,1,12.72,1,13v3.5c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75v-1.54C4.11,17.39,6.86,19,10,19 c3.69,0,6.86-2.22,8.25-5.4c0.19-0.44-0.06-0.94-0.52-1.05h0c-0.36-0.08-0.72,0.12-0.87,0.46C15.7,15.65,13.06,17.5,10,17.5z\\\"></path><path d=\\\"M9.25,1.92V1.85c0-0.45-0.41-0.78-0.85-0.7C7.1,1.38,5.91,1.89,4.87,2.62c-0.37,0.26-0.42,0.78-0.1,1.09l0.06,0.06 c0.25,0.25,0.64,0.27,0.93,0.06c0.85-0.59,1.83-1.01,2.89-1.21C8.99,2.56,9.25,2.28,9.25,1.92z\\\"></path><path d=\\\"M3.77,4.83L3.71,4.77c-0.32-0.32-0.84-0.26-1.09,0.1C1.89,5.91,1.38,7.11,1.15,8.4C1.07,8.84,1.4,9.25,1.85,9.25h0.08 c0.35,0,0.64-0.26,0.7-0.61c0.2-1.06,0.62-2.04,1.21-2.89C4.03,5.46,4.01,5.08,3.77,4.83z\\\"></path><path d=\\\"M7,10.46l1.75,0.79L9.54,13c0.18,0.39,0.73,0.39,0.91,0l0.79-1.75L13,10.46c0.39-0.18,0.39-0.73,0-0.91l-1.75-0.79 L10.46,7c-0.18-0.39-0.73-0.39-0.91,0L8.75,8.75L7,9.54C6.61,9.72,6.61,10.28,7,10.46z\\\"></path><path d=\\\"M18.07,9.25h0.08c0.45,0,0.78-0.41,0.7-0.85c-0.23-1.29-0.74-2.49-1.46-3.53c-0.26-0.37-0.78-0.42-1.09-0.1l-0.06,0.06 c-0.25,0.25-0.27,0.64-0.07,0.93c0.59,0.85,1.01,1.84,1.2,2.89C17.44,8.99,17.72,9.25,18.07,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sensor_door\": {\n    \"name\": \"sensor_door\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M15.5,13.5 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5S17,11.17,17,12S16.33,13.5,15.5,13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V4C16,3.45,15.55,3,15,3z M13,11c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C14,10.55,13.55,11,13,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fire_extinguisher\": {\n    \"name\": \"fire_extinguisher\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,4.23v3.54c0,0.63-0.58,1.11-1.21,0.98 l-1.94-0.41c0,0.02,0,0.01-0.01,0.03c1.54,0.62,2.71,1.98,3.06,3.63H7.1c0.34-1.66,1.52-3.02,3.07-3.64 c-0.33-0.26-0.6-0.58-0.8-0.95L5.49,6.6C5.2,6.54,5,6.29,5,6v0c0-0.29,0.2-0.54,0.49-0.6l3.88-0.81C9.87,3.65,10.86,3,12,3 c0.7,0,1.34,0.25,1.85,0.66l1.94-0.41C16.42,3.12,17,3.6,17,4.23z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1 S13,6.55,13,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"countertops\": {\n    \"name\": \"countertops\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,10l0-2.83c0-1.62-1.22-3.08-2.84-3.17c-1.21-0.06-2.27,0.59-2.8,1.57C12.01,6.22,12.53,7,13.27,7h0.01 c0.34,0,0.68-0.16,0.84-0.46C14.28,6.22,14.62,6,15,6c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V5c0-0.55-0.45-1-1-1H5 C4.45,4,4,4.45,4,5v3c0,1.1,0.9,2,2,2H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v7c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-7h1 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H18z M13,18h-2v-6h2V18z\\\"></path>\"\n      }\n    }\n  },\n  \"room_service\": {\n    \"name\": \"room_service\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18c.55 0 1 .45 1 1s-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1zm10.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z\\\"></path>\"\n      }\n    }\n  },\n  \"roofing\": {\n    \"name\": \"roofing\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,18h-2v-2h2V18z M9,15v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1h-4C9.45,14,9,14.45,9,15z M19,9.3 L19,9.3V5c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v1.6v0l-3.33-3c-0.38-0.34-0.96-0.34-1.34,0l-8.36,7.53 C2.63,11.43,2.84,12,3.3,12h1.31c0.25,0,0.49-0.09,0.67-0.26L12,5.69l6.71,6.05C18.9,11.91,19.14,12,19.38,12h1.31 c0.46,0,0.68-0.57,0.33-0.87L19,9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator_warning\": {\n    \"name\": \"escalator_warning\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v5c0,0.55,0.45,1,1,1h0.5v6c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-9.39l2.24,3.89c0.18,0.31,0.51,0.5,0.87,0.5 h1.1c0.33,0,0.63-0.16,0.82-0.43L15,14.9V21c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-4h0c0.55,0,1-0.45,1-1v-2.5 C20,12.68,19.33,12,18.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airport_shuttle\": {\n    \"name\": \"airport_shuttle\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.41 10.41l-4.83-4.83c-.37-.37-.88-.58-1.41-.58H3c-1.1 0-2 .89-2 2v7c0 1.1.9 2 2 2 0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3c1.1 0 2-.9 2-2v-2.17c0-.53-.21-1.04-.59-1.42zM3 10V8c0-.55.45-1 1-1h3v4H4c-.55 0-1-.45-1-1zm3 7.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM13 11H9V7h4v4zm5 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM15 11V7h1l4 4h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"grass\": {\n    \"name\": \"grass\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.64,11.02c0.55-1.47,1.43-2.78,2.56-3.83c0.38-0.36,0.04-1-0.46-0.85c-3.32,0.98-5.75,4.05-5.74,7.69c0,0,0,0,0,0 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85c-0.6-1.56-1.63-2.91-2.96-3.87C8.04,4.68,7.5,5.17,7.74,5.63 C8.54,7.15,9,8.88,9,10.71c0,0.21-0.03,0.41-0.04,0.61c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z M12,20H3 c-0.55,0-1-0.45-1-1s0.45-1,1-1h4.75c-0.57-2.19-2.04-4.02-4-5.06l0,0c-0.16-0.08-0.26-0.25-0.26-0.44c0-0.27,0.22-0.49,0.49-0.5 c0.01,0,0.02,0,0.02,0C8.42,12,12,15.58,12,20z M20.26,12.94L20.26,12.94c-1.96,1.04-3.44,2.87-4,5.06H21c0.55,0,1,0.45,1,1 s-0.45,1-1,1h-5h-2c0-0.68-0.07-1.35-0.2-2c-0.15-0.72-0.38-1.42-0.67-2.07C14.52,13.58,17.07,12,20,12c0.01,0,0.02,0,0.02,0 c0.27,0,0.49,0.23,0.49,0.5C20.52,12.69,20.41,12.85,20.26,12.94z\\\"></path>\"\n      }\n    }\n  },\n  \"no_drinks\": {\n    \"name\": \"no_drinks\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l7.54,7.54L11,14v5H7c-0.55,0-1,0.45-1,1 s0.45,1,1,1h10c0.32,0,0.59-0.16,0.78-0.4l1.3,1.3c0.39,0.39,1.02,0.39,1.41,0C20.88,21.51,20.88,20.88,20.49,20.49z M13,19v-3.17 L16.17,19H13z M7.83,5l-2-2h13.72C20.35,3,21,3.65,21,4.45c0,0.35-0.13,0.7-0.37,0.96l-5.83,6.56L9.83,7h6.74l1.78-2H7.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wheelchair_pickup\": {\n    \"name\": \"wheelchair_pickup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v5 c0,0.55,0.45,1,1,1h1v6c0,0.55,0.45,1,1,1h2.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17 c0,1.65-1.35,3-3,3s-3-1.35-3-3c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19,14h-4V9c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v6c0,0.55,0.45,1,1,1h4.46l1.92,2.88c0.31,0.46,0.93,0.58,1.39,0.28h0 c0.46-0.31,0.58-0.93,0.28-1.39l-2.21-3.32C19.65,14.17,19.33,14,19,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"kitchen\": {\n    \"name\": \"kitchen\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2.01 6 2a2 2 0 00-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM17 20H7c-.55 0-1-.45-1-1v-7.02c0-.55.45-1 1-1h10c.55 0 1 .45 1 1V19c0 .55-.45 1-1 1zm0-11H7c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zM9 5c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm0 7c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"fitness_center\": {\n    \"name\": \"fitness_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.57 14.86l.72-.72c.39-.39.39-1.02 0-1.41l-.02-.02c-.39-.39-1.02-.39-1.41 0L17 15.57 8.43 7l2.86-2.86c.39-.39.39-1.02 0-1.41l-.02-.02c-.39-.39-1.02-.39-1.41 0l-.72.72-.72-.72c-.39-.39-1.03-.39-1.42 0L5.57 4.14l-.72-.72c-.39-.39-1.04-.39-1.43 0-.39.39-.39 1.04 0 1.43l.72.72L2.71 7c-.39.39-.39 1.02 0 1.41l.72.72-.72.73c-.39.39-.39 1.02 0 1.41l.02.02c.39.39 1.02.39 1.41 0L7 8.43 15.57 17l-2.86 2.86c-.39.39-.39 1.02 0 1.41l.02.02c.39.39 1.02.39 1.41 0l.72-.72.72.72c.39.39 1.02.39 1.41 0l1.43-1.43.72.72c.39.39 1.04.39 1.43 0 .39-.39.39-1.04 0-1.43l-.72-.72L21.29 17c.39-.39.39-1.02 0-1.41l-.72-.73z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_touch\": {\n    \"name\": \"do_not_touch\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10.17l-2.5-2.5V2.25C10.5,1.56,11.06,1,11.75,1C12.44,1,13,1.56,13,2.25V10.17z M20,5.32c0-0.65-0.47-1.25-1.12-1.32 c-0.75-0.08-1.38,0.51-1.38,1.24v5.25c0,0.28-0.22,0.5-0.5,0.5h0c-0.28,0-0.5-0.22-0.5-0.5l0-7.18c0-0.65-0.47-1.25-1.12-1.32 C14.63,1.93,14,2.52,14,3.25v7.92l6,6L20,5.32z M9.5,4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18L9.5,6.67V4.25z M17,22c0.62,0,1.18-0.19,1.65-0.52l-0.02-0.02l0.44,0.44c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51 c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l4.92,4.92L7,9.83v4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14 c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l0,0l6.8,7.18c0.57,0.6,1.35,0.94,2.18,0.94L17,22L17,22z\\\"></path></g>\"\n      }\n    }\n  },\n  \"child_care\": {\n    \"name\": \"child_care\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M16.1 14H7.9c-.19 0-.32.2-.23.37C8.5 15.94 10.13 17 12 17s3.5-1.06 4.33-2.63c.08-.17-.05-.37-.23-.37zm6.84-2.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"holiday_village\": {\n    \"name\": \"holiday_village\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,20c0.55,0,1-0.45,1-1V8.76c0-0.27-0.11-0.52-0.29-0.71l-3.76-3.76C13.76,4.11,13.51,4,13.24,4 c-0.89,0-1.34,1.08-0.71,1.71l3.32,3.32C15.95,9.12,16,9.25,16,9.38V19C16,19.55,16.45,20,17,20z M21,20c0.55,0,1-0.45,1-1V7.11 c0-0.26-0.11-0.52-0.29-0.71l-2.1-2.11C19.42,4.11,19.16,4,18.9,4C18,4,17.56,5.08,18.19,5.71l1.67,1.67C19.95,7.47,20,7.6,20,7.73 V19C20,19.55,20.45,20,21,20z M8,15c0.55,0,1,0.45,1,1v4h4c0.55,0,1-0.45,1-1v-8.59c0-0.27-0.11-0.52-0.29-0.71l-5-5 c-0.39-0.39-1.02-0.39-1.41,0l-5,5C2.11,9.89,2,10.15,2,10.41V19c0,0.55,0.45,1,1,1h4v-4C7,15.45,7.45,15,8,15z M8,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S8.55,13,8,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.5,15.25c0,0.42-0.35,0.76-0.77,0.75C16.32,15.99,16,15.63,16,15.22V6.85c0-0.13-0.05-0.26-0.15-0.35l-1.21-1.21 C14.17,4.81,14.5,4,15.17,4c0.2,0,0.39,0.08,0.53,0.22l1.51,1.51c0.19,0.19,0.29,0.44,0.29,0.71V15.25z M11.21,8.21 c0.19,0.19,0.29,0.44,0.29,0.71V15c0,0.55-0.45,1-1,1H7.75v-3c0-0.41-0.34-0.75-0.75-0.75S6.25,12.59,6.25,13v3H3.5 c-0.55,0-1-0.45-1-1V8.91c0-0.27,0.11-0.52,0.29-0.71l3.5-3.5c0.39-0.39,1.02-0.39,1.41,0L11.21,8.21z M7.75,10 c0-0.41-0.34-0.75-0.75-0.75S6.25,9.59,6.25,10c0,0.41,0.34,0.75,0.75,0.75S7.75,10.41,7.75,10z M14.5,7.67 c0-0.27-0.11-0.52-0.29-0.71l-2.75-2.75C11.32,4.08,11.13,4,10.93,4c-0.67,0-1,0.81-0.53,1.28l2.45,2.45C12.95,7.83,13,7.95,13,8.09 v7.13c0,0.41,0.32,0.77,0.73,0.78c0.42,0.01,0.77-0.33,0.77-0.75V7.67z\\\"></path>\"\n      }\n    }\n  },\n  \"no_photography\": {\n    \"name\": \"no_photography\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.94,8.12L7.48,4.66L8.4,3.65C8.78,3.24,9.32,3,9.88,3h4.24c0.56,0,1.1,0.24,1.47,0.65L16.83,5H20c1.1,0,2,0.9,2,2v12 c0,0.05-0.01,0.1-0.02,0.16l-5.1-5.1C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M19.78,22.61 L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49L1.39,4.22C1,3.83,1,3.2,1.39,2.81l0,0c0.39-0.39,1.02-0.39,1.41,0 l18.38,18.38c0.39,0.39,0.39,1.02,0,1.41l0,0C20.8,23,20.17,23,19.78,22.61z M14.49,17.32l-1.5-1.5C12.67,15.92,12.35,16,12,16 c-1.66,0-3-1.34-3-3c0-0.35,0.08-0.67,0.19-0.98l-1.5-1.5C7.25,11.24,7,12.09,7,13c0,2.76,2.24,5,5,5 C12.91,18,13.76,17.75,14.49,17.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meeting_room\": {\n    \"name\": \"no_meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6h3v7.88l2 2V5c0-.55-.45-1-1-1h-4c0-.55-.45-1-1-1H6.12L14 10.88V6zm7.17 14.88L12 11.71V13h-2v-2h1.29L3.12 2.83c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L5 7.54V19H4c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1v-3.46l5.75 5.75c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"no_food\": {\n    \"name\": \"no_food\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,22c0,0.55-0.45,1-1,1H2c-0.55,0-1-0.45-1-1s0.45-1,1-1h13C15.55,21,16,21.45,16,22z M22.89,6.1 C22.95,5.51,22.49,5,21.9,5H18V2c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-3.9c-0.59,0-1.05,0.51-1,1.1l0.24,2.41L18,15.17l3.62,3.62 L22.89,6.1z M21.19,22.61c0.39-0.39,0.39-1.02,0-1.41L12,12L9.01,9.01h0l-6.2-6.2c-0.39-0.39-1.02-0.39-1.41,0l0,0 C1,3.2,1,3.83,1.39,4.22l4.99,4.99c-2.56,0.54-4.76,2.08-5.28,4.63C0.99,14.45,1.49,15,2.1,15l10.07,0l2,2H2c-0.55,0-1,0.45-1,1 s0.45,1,1,1h13c0.32,0,0.59-0.16,0.78-0.4l4,4C20.17,23,20.8,23,21.19,22.61L21.19,22.61z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water_damage\": {\n    \"name\": \"water_damage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.33,3.6l-8.36,7.53C2.63,11.43,2.84,12,3.3,12H5v7c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1v-7h1.7 c0.46,0,0.68-0.57,0.33-0.87L12.67,3.6C12.29,3.26,11.71,3.26,11.33,3.6z M12,16c-1.1,0-2-0.9-2-2c0-0.78,0.99-2.44,1.58-3.36 c0.2-0.31,0.64-0.31,0.84,0C13.01,11.56,14,13.22,14,14C14,15.1,13.1,16,12,16z\\\"></path>\"\n      }\n    }\n  },\n  \"crib\": {\n    \"name\": \"crib\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.32,18.32c-0.36-0.36-0.92-0.4-1.31-0.08c-0.32,0.25-0.65,0.48-1,0.69V16h2c1.1,0,2-0.9,2-2v-3c0-1.1-0.9-2-2-2h-6V6 c0-1.1-0.9-2-2-2H8C5.79,4,4,5.79,4,8v6c0,1.1,0.9,2,2,2h2v2.93c-0.35-0.2-0.69-0.43-1-0.69c-0.39-0.32-0.96-0.27-1.31,0.08 c-0.42,0.42-0.39,1.12,0.08,1.5C7.47,21.18,9.64,22,12,22c2.36,0,4.53-0.82,6.24-2.18C18.71,19.44,18.74,18.74,18.32,18.32z M14,19.75C13.36,19.91,12.69,20,12,20c-0.69,0-1.36-0.09-2-0.25V16h4V19.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.1,15.1c-0.27-0.27-0.71-0.3-1-0.05c-0.34,0.28-0.7,0.52-1.09,0.72l0-2.27h1.5c0.83,0,1.5-0.67,1.5-1.5V9.5 C16,8.67,15.33,8,14.5,8H10V5.5C10,4.67,9.33,4,8.5,4H7C5.34,4,4,5.34,4,7v5c0,0.83,0.67,1.5,1.5,1.5H7v2.27 c-0.39-0.2-0.76-0.45-1.09-0.72c-0.32-0.26-0.79-0.21-1.06,0.11c-0.26,0.32-0.19,0.81,0.13,1.07C6.35,17.34,8.1,18,10,18 c1.91,0,3.67-0.67,5.04-1.79C15.39,15.93,15.41,15.41,15.1,15.1z M11.5,16.33c-0.48,0.11-0.98,0.17-1.5,0.17s-1.02-0.06-1.5-0.17 V13.5h3V16.33z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator\": {\n    \"name\": \"escalator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3z M17,9h-1.7l-4.71,8.49 C10.41,17.8,10.07,18,9.71,18H7c-0.83,0-1.5-0.67-1.5-1.5S6.17,15,7,15h1.7l4.71-8.49C13.59,6.2,13.93,6,14.29,6H17 c0.83,0,1.5,0.67,1.5,1.5S17.83,9,17,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pool\": {\n    \"name\": \"pool\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.11 5.56C7.3 5.7 8.14 6.14 9 7l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C9.22 3.74 8.04 3.2 6.3 3.05 5.6 2.99 5 3.56 5 4.26v.09c0 .63.49 1.13 1.11 1.21zm15.24 13.35c-.17-.06-.32-.15-.5-.27-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.18.11-.33.2-.5.27-.38.13-.65.45-.65.85v.12c0 .67.66 1.13 1.3.91.37-.13.65-.3.89-.44.37-.22.6-.35 1.15-.35.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.23.14.51.31.88.44.63.22 1.3-.24 1.3-.91v-.12c0-.41-.27-.73-.65-.86zM3.11 16.35c.47-.13.81-.33 1.09-.49.37-.23.6-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.23.14.5.3.85.43.63.23 1.31-.24 1.31-.91v-.12c0-.4-.27-.72-.64-.86-.17-.06-.32-.15-.51-.26-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.18.11-.33.2-.5.27-.38.13-.65.45-.65.85v.23c0 .58.55 1.02 1.11.86z\\\"></path><circle cx=\\\"16.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"beach_access\": {\n    \"name\": \"beach_access\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.13 14.56l1.43-1.43 5.73 5.73c.39.39.39 1.03 0 1.43-.39.39-1.03.39-1.43 0l-5.73-5.73zm4.29-5.73l1.27-1.27c.89-.89.77-2.43-.31-3.08-3.89-2.38-9.03-1.89-12.4 1.47 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.36 3.37-3.85 8.51-1.48 12.4.66 1.08 2.19 1.21 3.08.31l1.27-1.27C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z\\\"></path>\"\n      }\n    }\n  },\n  \"stairs\": {\n    \"name\": \"stairs\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,8h-1.42v3.33H13v3.33h-2.58 L10.45,18H7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h1.42v-3.33H11V9.33h2.58V6H17c0.55,0,1,0.45,1,1C18,7.55,17.55,8,17,8z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"family_restroom\": {\n    \"name\": \"family_restroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,21v-5h1.11c0.68,0,1.16-0.67,0.95-1.32l-2.1-6.31 C19.68,7.55,18.92,7,18.06,7h-0.12c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8h2C19.55,22,20,21.55,20,21 z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2 s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,21v-6H8c0.55,0,1-0.45,1-1V9c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v5c0,0.55,0.45,1,1,1 h0.5v6c0,0.55,0.45,1,1,1h2C7.05,22,7.5,21.55,7.5,21z M10,14v3c0,0.55,0.45,1,1,1h0v3c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-3h0 c0.55,0,1-0.45,1-1v-3c0-0.82-0.68-1.5-1.5-1.5h-2C10.68,12.5,10,13.18,10,14\\\"></path></g>\"\n      }\n    }\n  },\n  \"rice_bowl\": {\n    \"name\": \"rice_bowl\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12L22,12c0-5.48-4.4-9.93-9.86-10C8.52,1.95,5.29,4.03,3.43,7.14C0.1,12.69,2.98,18.27,8,20.25v0.25 C8,21.33,8.67,22,9.5,22h5c0.83,0,1.5-0.67,1.5-1.5v-0.25C19.53,18.86,22,15.69,22,12z M20,12h-4V5.08C18.39,6.47,20,9.05,20,12z M14,4.26V12h-4V4.26C10.64,4.1,11.31,4,12,4S13.36,4.1,14,4.26z M4,12c0-2.95,1.61-5.53,4-6.92V12H4z\\\"></path>\"\n      }\n    }\n  },\n  \"chalet\": {\n    \"name\": \"chalet\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,15c-0.55,0-1,0.45-1,1v4H6c-0.55,0-1-0.45-1-1v-3.67l-0.38,0.38c-0.39,0.39-1.02,0.39-1.41,0l0,0 c-0.39-0.39-0.39-1.02,0-1.41l6.09-6.09c0.39-0.39,1.02-0.39,1.41,0l6.09,6.09c0.39,0.39,0.39,1.02,0,1.41v0 c-0.39,0.39-1.02,0.39-1.41,0L15,15.33V19c0,0.55-0.45,1-1,1h-3v-4C11,15.45,10.55,15,10,15z M17.5,7.5v0.89l-1.08,1.08 c-0.18,0.18-0.21,0.48-0.05,0.69c0.19,0.23,0.53,0.24,0.74,0.04l0.39-0.39v0.69c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5 V9.81l0.39,0.39c0.21,0.21,0.55,0.19,0.74-0.04c0.17-0.2,0.14-0.5-0.05-0.69L18.5,8.39c0,0,0-0.89,0-0.89h0.89l1.08,1.08 c0.18,0.18,0.48,0.21,0.69,0.05c0.23-0.19,0.24-0.53,0.04-0.74L20.81,7.5h0.69C21.78,7.5,22,7.28,22,7v0c0-0.28-0.22-0.5-0.5-0.5 l-0.69,0l0.39-0.39c0.21-0.21,0.19-0.55-0.04-0.74c-0.2-0.17-0.5-0.14-0.69,0.05L19.39,6.5c0,0-0.89,0-0.89,0V5.61l1.08-1.08 c0.18-0.18,0.21-0.48,0.05-0.69c-0.19-0.23-0.53-0.24-0.74-0.04L18.5,4.19V3.5C18.5,3.22,18.28,3,18,3h0c-0.28,0-0.5,0.22-0.5,0.5 v0.69L17.11,3.8c-0.21-0.21-0.55-0.19-0.74,0.04c-0.17,0.2-0.14,0.5,0.05,0.69l1.08,1.08c0,0,0,0.89,0,0.89h-0.89l-1.08-1.08 c-0.18-0.18-0.48-0.21-0.69-0.05c-0.23,0.19-0.24,0.53-0.04,0.74l0.39,0.39H14.5C14.22,6.5,14,6.72,14,7v0c0,0.28,0.22,0.5,0.5,0.5 l0.69,0L14.8,7.89c-0.21,0.21-0.19,0.55,0.04,0.74c0.2,0.17,0.5,0.14,0.69-0.05l1.08-1.08C16.61,7.5,17.5,7.5,17.5,7.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.25,12C8.66,12,9,12.34,9,12.75V16h2c0.55,0,1-0.45,1-1v-2.62l0.41,0.41c0.29,0.29,0.77,0.3,1.06,0 c0.29-0.29,0.3-0.77,0-1.06l-4.5-4.53c-0.39-0.39-1.03-0.39-1.42,0l-4.53,4.53c-0.29,0.29-0.29,0.77,0,1.06 c0.29,0.29,0.77,0.29,1.06,0l0.35-0.35l0.04,2.57c0.01,0.55,0.45,0.98,1,0.98H7.5v-3.25C7.5,12.34,7.84,12,8.25,12z M15,6h0.9 l1.07-1.07c0.1-0.1,0.26-0.1,0.35,0c0.1,0.1,0.1,0.26,0,0.35L16.61,6h1.14C17.89,6,18,6.11,18,6.25S17.89,6.5,17.75,6.5h-1.14 l0.72,0.72c0.1,0.1,0.1,0.26,0,0.35c-0.1,0.1-0.26,0.1-0.35,0L15.9,6.5c0,0-0.9,0-0.9,0v0.9l1.07,1.07c0.1,0.1,0.1,0.26,0,0.35 c-0.1,0.1-0.26,0.1-0.35,0L15,8.11v1.14c0,0.14-0.11,0.25-0.25,0.25S14.5,9.39,14.5,9.25V8.11l-0.72,0.72c-0.1,0.1-0.26,0.1-0.35,0 c-0.1-0.1-0.1-0.26,0-0.35L14.5,7.4V6.5c0,0-0.9,0-0.9,0l-1.07,1.07c-0.1,0.1-0.26,0.1-0.35,0c-0.1-0.1-0.1-0.26,0-0.35l0.72-0.72 h-1.14c-0.14,0-0.25-0.11-0.25-0.25S11.61,6,11.75,6h1.14l-0.72-0.72c-0.1-0.1-0.1-0.26,0-0.35c0.1-0.1,0.26-0.1,0.35,0L13.6,6 c0,0,0.9,0,0.9,0V5.1l-1.07-1.07c-0.1-0.1-0.1-0.26,0-0.35c0.1-0.1,0.26-0.1,0.35,0l0.72,0.72V3.25C14.5,3.11,14.61,3,14.75,3 S15,3.11,15,3.25v1.14l0.72-0.72c0.1-0.1,0.26-0.1,0.35,0c0.1,0.1,0.1,0.26,0,0.35L15,5.1C15,5.1,15,6,15,6z\\\"></path>\"\n      }\n    }\n  },\n  \"fence\": {\n    \"name\": \"fence\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,11L21,11c0-0.55-0.45-1-1-1h-1V7l-2.29-2.29c-0.39-0.39-1.02-0.39-1.41,0L14,6l-1.29-1.29c-0.39-0.39-1.02-0.39-1.41,0 L10,6L8.71,4.71c-0.39-0.39-1.02-0.39-1.41,0L5,7v3H4c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v2H4c-0.55,0-1,0.45-1,1v0 c0,0.55,0.45,1,1,1h1v3c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1v-3h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1v-2h1 C20.55,12,21,11.55,21,11z M16,6.83l1,1V10h-2V7.83l0.41-0.41L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2 V18z M17,14h-2v-2h2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"night_shelter\": {\n    \"name\": \"night_shelter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.8,3.9l-6,4.5C4.3,8.78,4,9.37,4,10v9c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-9c0-0.63-0.3-1.22-0.8-1.6l-6-4.5 C12.49,3.37,11.51,3.37,10.8,3.9z M9.75,12.5c0.69,0,1.25,0.56,1.25,1.25S10.44,15,9.75,15S8.5,14.44,8.5,13.75S9.06,12.5,9.75,12.5 z M16.5,18L16.5,18c-0.28,0-0.5-0.22-0.5-0.5v-1H8v1C8,17.78,7.78,18,7.5,18h0C7.22,18,7,17.78,7,17.5v-6C7,11.22,7.22,11,7.5,11h0 C7.78,11,8,11.22,8,11.5v4h3.5v-3c0-0.28,0.22-0.5,0.5-0.5h3c1.1,0,2,0.9,2,2v3.5C17,17.78,16.78,18,16.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"no_flash\": {\n    \"name\": \"no_flash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3.16,3.16c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l4.6,4.6L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4 C2,21.28,2.72,22,3.6,22h12.8c0.75,0,1.38-0.52,1.55-1.22l1.47,1.47c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41 L3.16,3.16z M10,20c-2.21,0-4-1.79-4-4c0-1.95,1.4-3.57,3.25-3.92l1.57,1.57c-0.26-0.09-0.53-0.15-0.82-0.15 c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5c1.38,0,2.5-1.12,2.5-2.5c0-0.29-0.06-0.56-0.15-0.82l1.57,1.57 C13.57,18.6,11.95,20,10,20z M18,15.17L10.83,8h0.87c0.56,0,1.1,0.24,1.48,0.65l0.69,0.75h2.54c0.88,0,1.6,0.72,1.6,1.6V15.17z M20.4,5.6h0.75c0.38,0,0.62,0.41,0.44,0.74L19,11V7h-0.5C18.22,7,18,6.78,18,6.5v-4C18,2.22,18.22,2,18.5,2h2.73 c0.36,0,0.6,0.37,0.46,0.7L20.4,5.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"balcony\": {\n    \"name\": \"balcony\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,14.27V10c0-4.42-3.58-8-8-8s-8,3.58-8,8v4.27C3.4,14.61,3,15.26,3,16v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4 C21,15.26,20.6,14.61,20,14.27z M7,20H5v-4h2V20z M11,20H9v-4h2V20z M11,14H6v-4c0-2.97,2.16-5.44,5-5.92V14z M13,4.08 c2.84,0.48,5,2.94,5,5.92v4h-5V4.08z M15,20h-2v-4h2V20z M19,20h-2v-4h2V20z M8,11c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1 S8,11.55,8,11z M16,11c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S16,10.45,16,11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,12.09L16,8c0-3.38-2.79-6.1-6.18-6C6.53,2.1,4,4.97,4,8.25v3.83c-0.58,0.21-1,0.76-1,1.41v3.02c0,0.83,0.67,1.5,1.5,1.5 h11c0.83,0,1.5-0.67,1.5-1.5V13.5C17,12.85,16.58,12.29,16,12.09z M6.12,16.5H4.5v-3h1.62V16.5z M9.25,16.5H7.62v-3h1.62V16.5z M5.5,12V8c0-2.23,1.62-4.08,3.75-4.44l0,8.44H5.5z M10.75,3.56C12.88,3.92,14.5,5.77,14.5,8v4h-3.75V3.56z M12.38,16.5h-1.62v-3 h1.62V16.5z M15.5,16.5h-1.62v-3h1.62V16.5z M8.5,9.25C8.5,9.66,8.16,10,7.75,10S7,9.66,7,9.25C7,8.84,7.34,8.5,7.75,8.5 S8.5,8.84,8.5,9.25z M13,9.25C13,9.66,12.66,10,12.25,10S11.5,9.66,11.5,9.25c0-0.41,0.34-0.75,0.75-0.75S13,8.84,13,9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"smoking_rooms\": {\n    \"name\": \"smoking_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 16h-12c-.83 0-1.5.67-1.5 1.5S2.67 19 3.5 19h12c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zm3.35-8.27c.62-.61 1-1.45 1-2.38 0-1.51-1-2.79-2.38-3.21-.48-.14-.97.22-.97.72 0 .33.21.62.52.71.77.23 1.33.94 1.33 1.78 0 .82-.53 1.51-1.27 1.76-.33.11-.58.39-.58.74V8c0 .37.27.69.64.75 1.93.31 3.36 2 3.36 4.02v1.48c0 .41.34.75.75.75s.75-.34.75-.75v-1.49c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47h-1.3c-1.02 0-1.94-.73-2.07-1.75-.12-.95.46-1.7 1.3-1.93.32-.09.54-.38.54-.72 0-.49-.46-.86-.93-.72-1.42.41-2.45 1.73-2.42 3.28.03 1.84 1.62 3.29 3.46 3.29h1.42c1.05 0 1.97.74 1.97 2.05v.55c0 .41.33.75.75.75h.01c.41 0 .75-.33.75-.75v-.89c-.01-1.81-1.61-3.16-3.48-3.16zM18 16h1.5v3H18zm2.5 0H22v3h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tapas\": {\n    \"name\": \"tapas\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10V2c0-0.55-0.45-1-1-1h-6c-0.55,0-1,0.45-1,1v8c0,1.86,1.28,3.41,3,3.86V21h-1c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1 h4c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M9.86,9L8,9V8l1.86,0 c1.31,0,2.5-0.94,2.63-2.24C12.64,4.26,11.47,3,10,3H8V2c0-0.55-0.45-1-1-1h0C6.45,1,6,1.45,6,2v1L4.14,3 c-1.31,0-2.5,0.94-2.63,2.24C1.36,6.74,2.53,8,4,8h2v1L4.14,9c-1.31,0-2.5,0.94-2.63,2.24C1.36,12.74,2.53,14,4,14h2v8 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-8h2c1.47,0,2.64-1.26,2.49-2.76C12.36,9.94,11.17,9,9.86,9z\\\"></path>\"\n      }\n    }\n  },\n  \"baby_changing_station\": {\n    \"name\": \"baby_changing_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9L14,9c0,0.55-0.45,1-1,1h-1.58c-0.28,0-0.55-0.06-0.8-0.17l-2.3-1.01L7,12.75V21c0,0.55-0.45,1-1,1H4 c-0.55,0-1-0.45-1-1v-8.67c0-0.22,0.04-0.44,0.11-0.65l1.48-4.32C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L13,8 C13.55,8,14,8.45,14,9z M8,1C6.9,1,6,1.9,6,3s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M10,19h10c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H10 c-0.55,0-1,0.45-1,1v0C9,18.55,9.45,19,10,19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v1c0,1.1,0.9,2,2,2h2 c1.1,0,2-0.9,2-2v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1h-2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"free_breakfast\": {\n    \"name\": \"free_breakfast\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H6c-1.1 0-2 .9-2 2v8c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM5 19h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"no_stroller\": {\n    \"name\": \"no_stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.61,3.26,6.54,3.71 l4.37,4.37L14.3,4.1z M20.49,21.9c0.39-0.39,0.39-1.02,0-1.41l-9.82-9.82L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41l7.26,7.26l-2.66,3.12c-0.55,0.65-0.09,1.65,0.76,1.65h6.66l1.17,1.17c-0.88,0.33-1.47,1.25-1.26,2.28 c0.15,0.76,0.78,1.39,1.54,1.54c1.03,0.21,1.95-0.38,2.28-1.26l1.2,1.2C19.46,22.29,20.09,22.29,20.49,21.9L20.49,21.9z M17,6.27 C17.58,5.59,17.97,5,18.65,5c0.68,0,1.22,0.52,1.33,1.21C20.08,6.66,20.48,7,20.96,7c0.55,0,1-0.45,1-1c0-0.06,0-0.11-0.01-0.16 l0-0.01C21.65,4.22,20.3,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11L17,14.17V6.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gite\": {\n    \"name\": \"gite\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.41,9.41l-2.83-2.83C18.21,6.21,17.7,6,17.17,6H9V5c0-0.55-0.45-1-1-1S7,4.45,7,5v1H6.83C6.3,6,5.79,6.21,5.41,6.59 L2.59,9.41C2.21,9.79,2,10.3,2,10.83V17c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-6.17C22,10.3,21.79,9.79,21.41,9.41z M14,17H4v-5h10 V17z M20,17h-4v-6.17l2-2l2,2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.56,8.06l-2.12-2.12c-0.28-0.28-0.66-0.44-1.06-0.44H7.5V4.75C7.5,4.34,7.16,4,6.75,4S6,4.34,6,4.75V5.5H5.62 c-0.4,0-0.78,0.16-1.06,0.44L2.44,8.06C2.16,8.34,2,8.72,2,9.12v4.38C2,14.33,2.67,15,3.5,15h8H13h3.5c0.83,0,1.5-0.67,1.5-1.5V9.12 C18,8.72,17.84,8.34,17.56,8.06z M3.5,13.5V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"stroller\": {\n    \"name\": \"stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M14.3,4.1C13.03,3.4,11.56,3,10,3C8.49,3,7.07,3.38,5.83,4.03C5.24,4.34,5.15,5.15,5.61,5.61l3.99,3.99L14.3,4.1z M21.94,5.83 C21.65,4.22,20.3,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03L6.71,15.31c-0.55,0.65-0.09,1.65,0.76,1.65H15c1.1,0,2-0.9,2-2V6.27 C17.58,5.59,17.97,5,18.65,5c0.68,0,1.22,0.52,1.33,1.21l0,0C20.08,6.66,20.48,7,20.96,7c0.55,0,1-0.45,1-1 C21.96,5.94,21.95,5.89,21.94,5.83L21.94,5.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elevator\": {\n    \"name\": \"elevator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.5,6c0.69,0,1.25,0.56,1.25,1.25 c0,0.69-0.56,1.25-1.25,1.25S7.25,7.94,7.25,7.25C7.25,6.56,7.81,6,8.5,6z M11,13c0,0.55-0.45,1-1,1v3c0,0.55-0.45,1-1,1H8 c-0.55,0-1-0.45-1-1v-3c-0.55,0-1-0.45-1-1v-1.5c0-1.1,0.9-2,2-2h1c1.1,0,2,0.9,2,2V13z M17.52,13.76l-1.6,2.56 c-0.2,0.31-0.65,0.31-0.85,0l-1.6-2.56C13.27,13.43,13.51,13,13.9,13h3.2C17.49,13,17.73,13.43,17.52,13.76z M17.1,11h-3.2 c-0.39,0-0.63-0.43-0.42-0.77l1.6-2.56c0.2-0.31,0.65-0.31,0.85,0l1.6,2.56C17.73,10.57,17.49,11,17.1,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"iron\": {\n    \"name\": \"iron\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.27,10c0.34,0,0.68-0.16,0.84-0.47C9.28,9.22,9.62,9,10,9h4c0.55,0,1,0.45,1,1v1H6c-2.21,0-4,1.79-4,4v2 c0,0.55,0.45,1,1,1h13c0.55,0,1-0.45,1-1v-1c1.66,0,3-1.34,3-3V9c0-0.55,0.45-1,1-1h0c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h0 c-1.66,0-3,1.34-3,3v4c0,0.55-0.45,1-1,1v-4c0-1.66-1.34-3-3-3h-4C8.87,7,7.89,7.62,7.37,8.55C7.01,9.2,7.53,10,8.27,10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,6.25C18,6.66,17.66,7,17.25,7H17c-0.28,0-0.5,0.22-0.5,0.5V11c0,1.1-0.9,2-2,2H14v0.5c0,0.55-0.45,1-1,1H3 c-0.55,0-1-0.45-1-1V12c0-1.66,1.34-3,3-3h7.5V8c0-0.28-0.22-0.5-0.5-0.5H8c-0.16,0-0.31,0.08-0.4,0.2 C7.44,7.92,7.15,8.04,6.85,7.99c-0.29-0.06-0.53-0.3-0.59-0.59C6.22,7.17,6.28,6.96,6.4,6.8C6.76,6.31,7.35,6,8,6h4c1.1,0,2,0.9,2,2 v3.5h0.5c0.28,0,0.5-0.22,0.5-0.5V7.5c0-1.1,0.9-2,2-2h0.25C17.66,5.5,18,5.84,18,6.25z\\\"></path>\"\n      }\n    }\n  },\n  \"bungalow\": {\n    \"name\": \"bungalow\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect display=\\\"none\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,16c0.55,0,1,0.45,1,1v4h3c0.55,0,1-0.45,1-1v-5.21l0.57,0.92c0.29,0.47,0.91,0.61,1.38,0.32 c0.47-0.29,0.61-0.91,0.32-1.38L12.85,4.36c-0.39-0.63-1.31-0.63-1.7,0L4.73,14.65c-0.29,0.47-0.15,1.09,0.32,1.38 c0.47,0.29,1.08,0.15,1.38-0.32L7,14.8V20c0,0.55,0.45,1,1,1h3v-4C11,16.45,11.45,16,12,16z M13,13c0,0.55-0.45,1-1,1s-1-0.45-1-1 s0.45-1,1-1S13,12.45,13,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" transform=\\\"matrix(-1 -1.224647e-16 1.224647e-16 -1 20 20)\\\" width=\\\"20\\\"></rect><path d=\\\"M10,13c0.41,0,0.75,0.34,0.75,0.75V17H13c0.55,0,1-0.45,1-1v-3.77l0.33,0.53c0.22,0.35,0.68,0.46,1.03,0.24 s0.46-0.68,0.24-1.03l-4.97-7.95c-0.29-0.47-0.98-0.47-1.27,0L4.4,11.96C4.18,12.32,4.28,12.78,4.64,13s0.81,0.11,1.03-0.24L6,12.23 V16c0,0.55,0.45,1,1,1h2.25v-3.25C9.25,13.34,9.59,13,10,13z M10,11.5c-0.41,0-0.75-0.34-0.75-0.75C9.25,10.34,9.59,10,10,10 s0.75,0.34,0.75,0.75C10.75,11.16,10.41,11.5,10,11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"backpack\": {\n    \"name\": \"backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M20,8v12c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2V8c0-1.86,1.28-3.41,3-3.86V3.5C7,2.67,7.67,2,8.5,2h0 C9.33,2,10,2.67,10,3.5V4h4V3.5C14,2.67,14.67,2,15.5,2h0C16.33,2,17,2.67,17,3.5v0.64C18.72,4.59,20,6.14,20,8z M6,13L6,13 c0,0.55,0.45,1,1,1h9v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1H7C6.45,12,6,12.45,6,13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"house\": {\n    \"name\": \"house\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9.3V5c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v1.6l-3.33-3c-0.38-0.34-0.96-0.34-1.34,0l-8.36,7.53 C2.63,11.43,2.84,12,3.3,12H5v7c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-5h4v5c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-7h1.7 c0.46,0,0.68-0.57,0.33-0.87L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,8.29V5.5C15,5.22,14.78,5,14.5,5h-1C13.22,5,13,5.22,13,5.5v1.07l-2.67-2.29c-0.19-0.16-0.46-0.16-0.65,0L3,10h2v5.5 C5,15.78,5.22,16,5.5,16h3C8.78,16,9,15.78,9,15.5V12h2v3.5c0,0.28,0.22,0.5,0.5,0.5h3c0.28,0,0.5-0.22,0.5-0.5V10h2L15,8.29z M9,9c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1H9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cabin\": {\n    \"name\": \"cabin\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4.37,3.55C4.89,2.62,5.87,2,7,2c0.38,0,0.72-0.22,0.89-0.53C8.04,1.16,8.39,1,8.73,1c0.74,0,1.26,0.8,0.9,1.45 C9.11,3.38,8.13,4,7,4C6.62,4,6.28,4.22,6.11,4.53C5.96,4.84,5.61,5,5.27,5C4.53,5,4.01,4.2,4.37,3.55z M22.39,12.19 c-0.34,0.44-0.96,0.52-1.4,0.19L20,11.62V20c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1v-8.38l-0.99,0.76 c-0.44,0.34-1.07,0.25-1.4-0.19c-0.33-0.44-0.25-1.07,0.19-1.4L4,9.11V7c0-0.55,0.45-1,1-1s1,0.45,1,1v0.58l5.39-4.12 c0.36-0.27,0.86-0.27,1.21,0l9.6,7.33C22.64,11.13,22.73,11.76,22.39,12.19z M10.06,7h3.89L12,5.52L10.06,7z M6,10.1V11h12v-0.9 L16.56,9H7.44L6,10.1z M6,13v2h12v-2H6z M18,19v-2H6v2H18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.25,3.45c0.31-0.64,0.94-1.2,2-1.2c0.24-0.01,0.52-0.08,0.66-0.34C7.04,1.66,7.3,1.5,7.58,1.5c0.54,0,0.91,0.57,0.68,1.05 c-0.31,0.64-0.94,1.2-2,1.2C6.01,3.76,5.73,3.83,5.59,4.09C5.46,4.34,5.2,4.5,4.92,4.5C4.38,4.5,4.01,3.93,4.25,3.45z M17.79,10.4 c-0.25,0.33-0.72,0.39-1.05,0.14L16,9.97V16c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1V9.97l-0.74,0.57c-0.33,0.25-0.8,0.19-1.05-0.14 c-0.25-0.33-0.19-0.8,0.14-1.05L4,8.08V6.25C4,5.84,4.34,5.5,4.75,5.5S5.5,5.84,5.5,6.25v0.69l3.89-2.97c0.36-0.27,0.86-0.27,1.21,0 l7.05,5.38C17.98,9.6,18.05,10.07,17.79,10.4z M8.54,6.5h2.91L10,5.39L8.54,6.5z M14.5,14h-9v1.5h9V14z M14.5,11h-9v1.5h9V11z M14.5,8.82L13.42,8H6.58L5.5,8.82V9.5h9V8.82z\\\"></path>\"\n      }\n    }\n  },\n  \"tty\": {\n    \"name\": \"tty\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M15,4L15,4c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0C14,4.45,14.45,4,15,4z M14,7L14,7 c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0C13,7.45,13.45,7,14,7z M12,4L12,4c0.55,0,1,0.45,1,1v0 c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0C11,4.45,11.45,4,12,4z M17,9L17,9c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0 c0.55,0,1,0.45,1,1v0C18,8.55,17.55,9,17,9z M18,6L18,6c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0 C19,5.55,18.55,6,18,6z M20,9L20,9c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C21,8.55,20.55,9,20,9z M21,6 L21,6c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C22,5.55,21.55,6,21,6z M14.62,14.38L12.1,16.9 c-2.5-1.43-4.57-3.5-6-6l2.52-2.52C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03C2.47,3,2,3.47,2.03,4.03 C2.2,6.92,3.05,9.63,4.43,12c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4c0.56,0.03,1.03-0.44,1.03-1v-4.15 c0-0.48-0.34-0.89-0.8-0.98l-3.67-0.73C15.2,14.04,14.86,14.14,14.62,14.38z M15,10L15,10c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h0 c-0.55,0-1-0.45-1-1v0C14,10.45,14.45,10,15,10z M12,10L12,10c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v0 C11,10.45,11.45,10,12,10z M18,12L18,12c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,11.55,18.55,12,18,12z M21,12L21,12c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C22,11.55,21.55,12,21,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"room_preferences\": {\n    \"name\": \"room_preferences\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.75,17c0-0.22-0.03-0.42-0.06-0.63l0.84-0.73c0.18-0.16,0.22-0.42,0.1-0.63l-0.59-1.02c-0.12-0.21-0.37-0.3-0.59-0.22 l-1.06,0.36c-0.32-0.27-0.68-0.48-1.08-0.63l-0.22-1.09c-0.05-0.23-0.25-0.4-0.49-0.4h-1.18c-0.24,0-0.44,0.17-0.49,0.4l-0.22,1.09 c-0.4,0.15-0.76,0.36-1.08,0.63l-1.06-0.36c-0.23-0.08-0.47,0.02-0.59,0.22l-0.59,1.02c-0.12,0.21-0.08,0.47,0.1,0.63l0.84,0.73 c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-0.84,0.73c-0.18,0.16-0.22,0.42-0.1,0.63l0.59,1.02 c0.12,0.21,0.37,0.3,0.59,0.22l1.06-0.36c0.32,0.27,0.68,0.48,1.08,0.63l0.22,1.09c0.05,0.23,0.25,0.4,0.49,0.4h1.18 c0.24,0,0.44-0.17,0.49-0.4l0.22-1.09c0.4-0.15,0.76-0.36,1.08-0.63l1.06,0.36c0.23,0.08,0.47-0.02,0.59-0.22l0.59-1.02 c0.12-0.21,0.08-0.47-0.1-0.63l-0.84-0.73C21.72,17.42,21.75,17.22,21.75,17z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S19.1,19,18,19z M14,11.26V6h3v4h2V5c0-0.55-0.45-1-1-1h-4c0-0.55-0.45-1-1-1H6C5.45,3,5,3.45,5,4v15H4c-0.55,0-1,0.45-1,1 s0.45,1,1,1h8.26C11.47,19.87,11,18.49,11,17C11,14.62,12.19,12.53,14,11.26z M10,12c0-0.55,0.45-1,1-1s1,0.45,1,1 c0,0.55-0.45,1-1,1S10,12.55,10,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"checkroom\": {\n    \"name\": \"checkroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7c-1.76-0.4-3.37,0.53-4.02,1.98 C8.5,6.74,8.98,7.5,9.71,7.5h0c0.39,0,0.75-0.22,0.9-0.57C10.84,6.38,11.37,6,12,6c0.83,0,1.5,0.67,1.5,1.5 c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99l0,1.76L2.4,18.2C1.63,18.78,2.04,20,3,20h9h9 C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"spa\": {\n    \"name\": \"spa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.49 9.63c-.16-2.42-1.03-4.79-2.64-6.76-.41-.5-1.16-.5-1.57 0-1.65 1.98-2.57 4.35-2.77 6.76 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45c-1.95-2.97-5.14-5.03-8.83-5.39-.64-.06-1.17.47-1.11 1.11.45 4.8 3.65 8.78 7.98 10.33.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51 4.33-1.55 7.53-5.52 7.98-10.33.06-.64-.48-1.17-1.11-1.11-3.71.36-6.9 2.42-8.85 5.39z\\\"></path>\"\n      }\n    }\n  },\n  \"golf_course\": {\n    \"name\": \"golf_course\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11 18.03V8.98l4.22-2.15c.73-.37.73-1.43-.01-1.79l-4.76-2.33C9.78 2.38 9 2.86 9 3.6V19c0 .55-.45 1-1 1s-1-.45-1-1v-.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97z\\\"></path>\"\n      }\n    }\n  },\n  \"cottage\": {\n    \"name\": \"cottage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22.39,12.19c0.34-0.44,0.25-1.07-0.19-1.4l-9.6-7.33c-0.36-0.27-0.86-0.27-1.21,0L6,7.58V7c0-0.55-0.45-1-1-1S4,6.45,4,7 v2.11l-2.21,1.68c-0.44,0.33-0.52,0.96-0.19,1.4c0.34,0.44,0.96,0.52,1.4,0.19L4,11.62V20c0,0.55,0.45,1,1,1h6v-5c0-0.55,0.45-1,1-1 s1,0.45,1,1v5h6c0.55,0,1-0.45,1-1v-8.38l0.99,0.76C21.43,12.72,22.06,12.63,22.39,12.19z M5.27,5c-0.74,0-1.26-0.8-0.9-1.45 C4.89,2.62,5.87,2,7,2c0.38,0,0.72-0.22,0.89-0.53C8.04,1.16,8.39,1,8.73,1c0.74,0,1.26,0.8,0.9,1.45C9.11,3.38,8.13,4,7,4 C6.62,4,6.28,4.22,6.11,4.53C5.96,4.84,5.61,5,5.27,5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.75,5.5C4.34,5.5,4,5.84,4,6.25v1.83L2.35,9.35C2.02,9.6,1.95,10.07,2.2,10.4c0.25,0.33,0.72,0.39,1.05,0.14L4,9.97V16 c0,0.55,0.45,1,1,1h4.25v-3.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V17H15c0.55,0,1-0.45,1-1V9.97l0.74,0.57 c0.33,0.25,0.8,0.19,1.05-0.14c0.25-0.33,0.19-0.8-0.14-1.05l-7.05-5.38c-0.36-0.27-0.86-0.27-1.21,0L5.5,6.94V6.25 C5.5,5.84,5.16,5.5,4.75,5.5z M4.92,4.5c-0.54,0-0.91-0.57-0.68-1.05c0.31-0.64,0.94-1.2,2-1.2c0.24-0.01,0.52-0.08,0.66-0.34 C7.04,1.66,7.3,1.5,7.58,1.5c0.54,0,0.91,0.57,0.68,1.05c-0.31,0.64-0.94,1.2-2,1.2C6.01,3.76,5.73,3.83,5.59,4.09 C5.46,4.34,5.2,4.5,4.92,4.5L4.92,4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"vaping_rooms\": {\n    \"name\": \"vaping_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,17.5c0,0.83-0.67,1.5-1.5,1.5H8v-3h12.5C21.33,16,22,16.67,22,17.5z M10.5,17c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S10.78,17,10.5,17z M18.85,7.73c0.62-0.61,1-1.45,1-2.38c0-1.51-1-2.79-2.38-3.21 C16.99,2,16.5,2.36,16.5,2.86c0,0.33,0.21,0.62,0.52,0.71c0.77,0.23,1.33,0.94,1.33,1.78c0,0.82-0.53,1.51-1.27,1.76 C16.75,7.22,16.5,7.5,16.5,7.85V8c0,0.37,0.27,0.69,0.64,0.75c1.93,0.31,3.36,2,3.36,4.02v1.48c0,0.41,0.34,0.75,0.75,0.75 S22,14.66,22,14.25v-1.49C22,10.54,20.72,8.62,18.85,7.73z M18.76,15c0.41,0,0.75-0.33,0.75-0.75v-0.89 c-0.01-1.81-1.61-3.16-3.48-3.16h-1.3c-1.02,0-1.94-0.73-2.07-1.75c-0.12-0.95,0.46-1.7,1.3-1.93c0.32-0.09,0.54-0.38,0.54-0.72 c0-0.49-0.46-0.86-0.93-0.72c-1.42,0.41-2.45,1.73-2.42,3.28c0.03,1.84,1.62,3.29,3.46,3.29h1.42c1.05,0,1.97,0.74,1.97,2.05v0.55 C18,14.66,18.34,15,18.76,15z M3,18.5c1.33,0,2.71,0.18,4,0.5v-3c-1.29,0.32-2.67,0.5-4,0.5c-0.55,0-1,0.45-1,1S2.45,18.5,3,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,14c0,0.55-0.45,1-1,1H7v-2h10C17.55,13,18,13.45,18,14z M9,13.65c-0.19,0-0.35,0.16-0.35,0.35S8.81,14.35,9,14.35 S9.35,14.19,9.35,14S9.19,13.65,9,13.65z M16,10.5C16,9.12,14.88,8,13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5 C12.78,5,13,4.78,13,4.5C13,4.22,12.78,4,12.5,4C11.12,4,10,5.12,10,6.5S11.12,9,12.5,9h1c0.83,0,1.5,0.67,1.5,1.5v1 c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V10.5z M13.5,6.5c0,0.27,0.21,0.49,0.47,0.53C15.68,7.26,17,8.73,17,10.5v1 c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5v-1c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5c0-1.17-0.8-2.15-1.89-2.42 C13.8,2,13.5,2.24,13.5,2.56c0,0.23,0.16,0.43,0.38,0.49C14.53,3.22,15,3.8,15,4.5c0,0.69-0.46,1.26-1.09,1.44 C13.66,6.01,13.5,6.24,13.5,6.5z M3,14.75c1,0,2.02,0.09,3,0.25v-2c-0.98,0.16-2,0.25-3,0.25H2.75C2.34,13.25,2,13.59,2,14 s0.34,0.75,0.75,0.75H3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"casino\": {\n    \"name\": \"casino\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_bar\": {\n    \"name\": \"sports_bar\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,9h-1.56c0.33-0.55,0.53-1.18,0.55-1.86c0.04-1.03-0.43-1.99-1.16-2.71c-1.54-1.54-2.74-1.56-3.82-1.29 C12.2,2.45,11.16,2.02,10,2.02c-1.89,0-3.51,1.11-4.27,2.71C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,19c0,1.1,0.9,2,2,2h7 c1.1,0,2-0.9,2-2v0h2c1.1,0,2-0.9,2-2v-6C21,9.9,20.1,9,19,9z M7,10.5c-1.1,0-2-0.9-2-2c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27 l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0 C9.67,7,9.15,10.5,7,10.5z M19,17h-2v-6h2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,7.5h-1.27C14.47,7.05,14.6,6.54,14.6,6c0-1.79-1.46-3.25-3.25-3.25c-0.24,0-0.47,0.03-0.69,0.07 C10.05,2.31,9.26,2,8.4,2C6.95,2,5.7,2.89,5.17,4.15C3.91,4.55,3,5.73,3,7.12c0,1.51,1.07,2.77,2.5,3.06v1.54v3.77 C5.5,16.33,6.17,17,7,17h5.5c0.83,0,1.5-0.67,1.5-1.5h1.5c0.83,0,1.5-0.67,1.5-1.5V9C17,8.17,16.33,7.5,15.5,7.5z M10.79,6 c-0.8,0-1.55,0.31-2.12,0.88L7.28,8.27C6.96,8.59,6.51,8.78,6.02,8.75C5.2,8.7,4.54,8.02,4.5,7.2C4.46,6.27,5.2,5.5,6.12,5.5 c0,0,0,0,0,0c0.14,0,0.27-0.1,0.29-0.24C6.53,4.26,7.39,3.5,8.4,3.5c0.71,0,1.34,0.37,1.69,0.93c0.07,0.12,0.23,0.15,0.34,0.08 c0.27-0.16,0.58-0.26,0.92-0.26c0.96,0,1.75,0.79,1.75,1.75H10.79z M15.5,14H14V9h1.5V14z\\\"></path>\"\n      }\n    }\n  },\n  \"carpenter\": {\n    \"name\": \"carpenter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.73,14.23L7.71,2.21c-0.39-0.39-1.02-0.39-1.41,0L3.7,4.8C3.36,5.14,3.31,5.68,3.59,6.08l7.65,10.98 c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24C20.51,16.28,20.51,15.01,19.73,14.23z M14.07,19.88 l-1.41-1.41l4.24-4.24l1.41,1.41L14.07,19.88z\\\"></path>\"\n      }\n    }\n  },\n  \"wash\": {\n    \"name\": \"wash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.94,11.79C1.34,12.35,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3l13.68,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5l7.18,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5l0,0c0-0.28,0.22-0.5,0.5-0.5l8.18,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5l6.18,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H8.86l1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7L9.81,5.71 C9.43,5.32,8.8,5.3,8.4,5.68L1.94,11.79z M18.5,8C19.88,8,21,6.88,21,5.5c0-1.25-1.41-3.16-2.11-4.04c-0.2-0.25-0.57-0.25-0.77,0 C17.41,2.34,16,4.25,16,5.5C16,6.88,17.12,8,18.5,8z M13.5,9C14.33,9,15,8.33,15,7.5c0-0.56-0.67-1.49-1.11-2.04 c-0.2-0.25-0.58-0.25-0.77,0C12.67,6.01,12,6.94,12,7.5C12,8.33,12.67,9,13.5,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"house_siding\": {\n    \"name\": \"house_siding\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h1.7c0.46,0,0.68-0.57,0.33-0.87L12.67,3.6c-0.38-0.34-0.96-0.34-1.34,0l-8.36,7.53C2.63,11.43,2.84,12,3.3,12H5v7 c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1h10v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V12z M7.21,10h9.58L17,10.19V12H7v-1.81 L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16v-2h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"child_friendly\": {\n    \"name\": \"child_friendly\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3.08V10h8c0-4.03-2.98-7.37-6.86-7.92-.6-.09-1.14.39-1.14 1zm6.32 12.81C20.37 14.54 21 12.84 21 11H6.44l-.68-1.43C5.6 9.22 5.24 9 4.86 9H3c-.55 0-1 .45-1 1s.45 1 1 1h1.22s1.89 4.07 2.12 4.42c-1.33.71-2.14 2.27-1.74 3.94.3 1.26 1.34 2.27 2.6 2.55 2.1.46 3.98-.96 4.25-2.91h2.08c.27 1.94 2.14 3.36 4.22 2.92 1.27-.27 2.31-1.27 2.63-2.53.35-1.39-.14-2.68-1.06-3.5zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z\\\"></path>\"\n      }\n    }\n  },\n  \"microwave\": {\n    \"name\": \"microwave\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.15,9.97L6.15,9.97C5.69,9.51,5.77,8.73,6.33,8.4C6.73,8.18,7.21,8,7.75,8c0.8,0,1.39,0.39,1.81,0.67 C9.87,8.88,10.07,9,10.25,9c0.13,0,0.26-0.05,0.39-0.12c0.39-0.22,0.88-0.16,1.2,0.16l0,0c0.46,0.46,0.38,1.24-0.18,1.56 c-0.39,0.23-0.87,0.4-1.41,0.4c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.13,0-0.26,0.05-0.39,0.12 C6.96,10.35,6.47,10.28,6.15,9.97z M7.75,15c0.19,0,0.38,0.12,0.71,0.34c0.42,0.28,1,0.66,1.79,0.66c0.54,0,1.02-0.17,1.41-0.4 c0.56-0.32,0.64-1.1,0.18-1.56l0,0c-0.32-0.32-0.81-0.38-1.2-0.16C10.51,13.95,10.38,14,10.25,14c-0.18,0-0.38-0.12-0.69-0.33 C9.14,13.39,8.55,13,7.75,13c-0.54,0-1.02,0.18-1.42,0.4c-0.56,0.33-0.64,1.11-0.18,1.56l0,0c0.32,0.32,0.81,0.38,1.2,0.16 C7.49,15.05,7.62,15,7.75,15z M22,6v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16C21.1,4,22,4.9,22,6z M14,6H4v12h10 V6z M19,16c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,17,19,16.55,19,16z M19,12c0-0.55-0.45-1-1-1 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1C18.55,13,19,12.55,19,12z M19,7h-2v2h2V7z\\\"></path>\"\n      }\n    }\n  },\n  \"hot_tub\": {\n    \"name\": \"hot_tub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M21 12h-9.85c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H3c-.55 0-1 .45-1 1v7c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-7c0-.55-.45-1-1-1zM7 19c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm4 0c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1s1 .45 1 1v4zm-3.94-9c.5 0 .93-.39.94-.89.04-1.4-.58-2.48-1.35-3.25-.65-.72-.8-1.27-.77-1.91.02-.52-.41-.95-.94-.95-.5 0-.93.4-.94.9-.03 1.29.5 2.43 1.35 3.25.61.59.78 1.27.78 1.89-.01.52.4.96.93.96zm4 0c.5 0 .93-.39.94-.89.04-1.4-.58-2.48-1.35-3.25-.65-.72-.8-1.27-.77-1.91.02-.52-.41-.95-.94-.95-.5 0-.93.4-.94.9-.03 1.29.5 2.43 1.35 3.25.61.59.78 1.27.78 1.89-.01.52.4.96.93.96z\\\"></path>\"\n      }\n    }\n  },\n  \"umbrella\": {\n    \"name\": \"umbrella\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.12,6.28L14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.23,0,0.43,0.16,0.49,0.36C14.1,3.7,14.49,4,14.94,4 c0.55,0,1-0.45,1-1c0-0.1-0.02-0.2-0.05-0.3C15.59,1.72,14.63,1,13.5,1C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6.88,6.28 C6.5,6.19,6.16,6.55,6.28,6.92l4.77,14.39C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69l4.77-14.39 C17.84,6.55,17.5,6.19,17.12,6.28z M11,14.8L9.03,8.86l0.92,0.23l0.76-0.58L11,8.29V14.8z M13,14.8V8.29l0.28,0.22l0.76,0.58 l0.92-0.23L13,14.8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"other_houses\": {\n    \"name\": \"other_houses\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.61,12.19c0.34,0.44,0.96,0.52,1.4,0.19L4,11.62V20c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v-8.38l0.99,0.76 c0.44,0.34,1.07,0.25,1.4-0.19c0.34-0.44,0.25-1.07-0.19-1.4l-9.6-7.33c-0.36-0.27-0.86-0.27-1.21,0l-9.6,7.33 C1.36,11.13,1.27,11.76,1.61,12.19z M8,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C9,14.55,8.55,15,8,15z M12,15 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,14.55,12.55,15,12,15z M16,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C17,14.55,16.55,15,16,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2.2,10.4c0.25,0.33,0.72,0.39,1.05,0.14L4,9.97V16c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V9.97l0.74,0.57 c0.33,0.25,0.8,0.19,1.05-0.14c0.25-0.33,0.19-0.8-0.14-1.05l-7.05-5.38c-0.36-0.27-0.86-0.27-1.21,0L2.35,9.35 C2.02,9.6,1.95,10.07,2.2,10.4z M7,12.5c-0.41,0-0.75-0.34-0.75-0.75C6.25,11.34,6.59,11,7,11s0.75,0.34,0.75,0.75 C7.75,12.16,7.41,12.5,7,12.5z M10,12.5c-0.41,0-0.75-0.34-0.75-0.75C9.25,11.34,9.59,11,10,11s0.75,0.34,0.75,0.75 C10.75,12.16,10.41,12.5,10,12.5z M13,12.5c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 C13.75,12.16,13.41,12.5,13,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"ac_unit\": {\n    \"name\": \"ac_unit\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11h-3.17l2.54-2.54c.39-.39.39-1.02 0-1.41-.39-.39-1.03-.39-1.42 0L15 11h-2V9l3.95-3.95c.39-.39.39-1.03 0-1.42-.39-.39-1.02-.39-1.41 0L13 6.17V3c0-.55-.45-1-1-1s-1 .45-1 1v3.17L8.46 3.63c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.03 0 1.42L11 9v2H9L5.05 7.05c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41L6.17 11H3c-.55 0-1 .45-1 1s.45 1 1 1h3.17l-2.54 2.54c-.39.39-.39 1.02 0 1.41.39.39 1.03.39 1.42 0L9 13h2v2l-3.95 3.95c-.39.39-.39 1.03 0 1.42.39.39 1.02.39 1.41 0L11 17.83V21c0 .55.45 1 1 1s1-.45 1-1v-3.17l2.54 2.54c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42L13 15v-2h2l3.95 3.95c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41L17.83 13H21c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"all_inclusive\": {\n    \"name\": \"all_inclusive\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.22 6.86c-2-.6-4.06-.04-5.39 1.29L12 10.66 10.48 12h.01L7.8 14.39c-.81.81-1.95 1.15-3.12.92-1.25-.25-2.28-1.25-2.57-2.49-.52-2.23 1.16-4.2 3.29-4.2.91 0 1.76.35 2.44 1.03l.47.41c.38.34.95.34 1.33 0 .45-.4.45-1.1 0-1.5l-.42-.36C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.81-.81 1.95-1.15 3.12-.92 1.25.25 2.28 1.25 2.57 2.49.52 2.23-1.16 4.2-3.29 4.2-.9 0-1.76-.35-2.44-1.03l-.48-.42c-.38-.34-.95-.34-1.33 0-.45.4-.45 1.1 0 1.5l.42.37c1.02 1.01 2.37 1.57 3.82 1.57 3.27 0 5.86-2.9 5.33-6.25-.3-1.99-1.77-3.69-3.7-4.26z\\\"></path>\"\n      }\n    }\n  },\n  \"dry\": {\n    \"name\": \"dry\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.94,11.79C1.34,12.36,1,13.14,1,13.97V20c0,1.66,1.34,3,3,3l13.68,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5l7.18,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5l0,0c0-0.28,0.22-0.5,0.5-0.5l8.18,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5l6.18,0c0.65,0,1.25-0.47,1.32-1.12 c0.08-0.75-0.51-1.38-1.24-1.38H8.86l1.49-2.61c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7L9.81,5.71 C9.43,5.32,8.8,5.3,8.4,5.68L1.94,11.79z M16.99,8.07c0,0.52-0.42,0.93-0.93,0.93c-0.52,0-0.93-0.42-0.93-0.93l0,0 c0.03-0.67-0.22-1.33-0.71-1.86l-0.07-0.06c-0.9-0.89-1.38-2.03-1.34-3.22l0,0C13,2.42,13.42,2,13.93,2c0.51,0,0.93,0.42,0.93,0.93 l0,0c-0.03,0.67,0.22,1.33,0.71,1.86l0.07,0.07C16.55,5.74,17.03,6.88,16.99,8.07L16.99,8.07z M21,8.07C21,8.58,20.58,9,20.06,9 s-0.93-0.42-0.93-0.93l0,0c0.03-0.67-0.22-1.33-0.71-1.86l-0.07-0.06c-0.9-0.89-1.38-2.03-1.34-3.22l0,0 c0-0.51,0.42-0.93,0.93-0.93s0.93,0.42,0.93,0.93l0,0c-0.03,0.67,0.22,1.33,0.71,1.86l0.07,0.07C20.55,5.74,21.03,6.88,21,8.07 L21,8.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"soap\": {\n    \"name\": \"soap\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M18,2.5 C18,3.33,17.33,4,16.5,4C15.67,4,15,3.33,15,2.5S15.67,1,16.5,1C17.33,1,18,1.67,18,2.5z M1.94,11.79C1.34,12.35,1,13.14,1,13.97 V20c0,1.66,1.34,3,3,3l13.68,0c0.65,0,1.25-0.47,1.32-1.12c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5v0 c0-0.28,0.22-0.5,0.5-0.5l7.18,0c0.65,0,1.25-0.47,1.32-1.12c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5l0,0 c0-0.28,0.22-0.5,0.5-0.5l8.18,0c0.65,0,1.25-0.47,1.32-1.12c0.08-0.75-0.51-1.38-1.24-1.38H12.5c-0.28,0-0.5-0.22-0.5-0.5v0 c0-0.28,0.22-0.5,0.5-0.5l6.18,0c0.65,0,1.25-0.47,1.32-1.12c0.08-0.75-0.51-1.38-1.24-1.38H8.86l1.49-2.61 c0.09-0.16,0.14-0.33,0.14-0.53c0-0.26-0.09-0.5-0.26-0.7L9.81,5.71C9.43,5.32,8.8,5.3,8.4,5.68L1.94,11.79z\\\"></path></g>\"\n      }\n    }\n  },\n  \"desk\": {\n    \"name\": \"desk\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,7v10c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V8h10v9c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1h4v1c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1V7c0-0.55-0.45-1-1-1H3C2.45,6,2,6.45,2,7z M20,8v2h-4V8H20z M16,14v-2h4v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,6v8.25C2,14.66,2.34,15,2.75,15h0c0.41,0,0.75-0.34,0.75-0.75V6.5H12v7.75c0,0.41,0.34,0.75,0.75,0.75h0 c0.41,0,0.75-0.34,0.75-0.75V13.5h3v0.75c0,0.41,0.34,0.75,0.75,0.75l0,0c0.41,0,0.75-0.34,0.75-0.75V6c0-0.55-0.45-1-1-1H3 C2.45,5,2,5.45,2,6z M13.5,6.5h3v2h-3V6.5z M13.5,12v-2h3v2H13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"do_not_step\": {\n    \"name\": \"do_not_step\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l7.19,7.19c0.18,0.2,0.18,0.5-0.01,0.7c-0.1,0.1-0.23,0.15-0.35,0.15 s-0.26-0.05-0.35-0.15L6.87,11.1c-0.11,0.4-0.26,0.78-0.45,1.12l1.4,1.4c0.2,0.2,0.2,0.51,0,0.71c-0.1,0.1-0.23,0.15-0.35,0.15 s-0.26-0.05-0.35-0.15l-1.27-1.27c-0.24,0.29-0.5,0.56-0.77,0.8l1.28,1.28c0.2,0.2,0.2,0.51,0,0.71C6.26,15.95,6.13,16,6,16 s-0.26-0.05-0.35-0.15l-1.38-1.38c-0.71,0.47-1.43,0.81-2.02,1.04C1.49,15.81,1,16.55,1,17.37L1,18c0,1.1,0.9,2,2,2h6.67 c0.53,0,1.04-0.21,1.41-0.59l2.74-2.74l5.23,5.23c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51 C3.12,3.12,2.49,3.12,2.1,3.51L2.1,3.51z M18.51,15.68l-1.41-1.41l4.48-4.48l0,0c0.78,0.78,0.78,2.05,0,2.83L18.51,15.68z M20.88,9.08l-4.48,4.48L9.3,6.47l3.09-3.07c0.78-0.78,2.04-0.77,2.82,0L20.88,9.08z\\\"></path></g>\"\n      }\n    }\n  },\n  \"meeting_room\": {\n    \"name\": \"meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><g><g><path d=\\\"M20,19h-1V5c0-0.55-0.45-1-1-1h-4c0-0.55-0.45-1-1-1H6C5.45,3,5,3.45,5,4v15H4c-0.55,0-1,0.45-1,1s0.45,1,1,1h9 c0.55,0,1-0.45,1-1V6h3v14c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1S20.55,19,20,19z M11,13L11,13c-0.55,0-1-0.45-1-1v0 c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C12,12.55,11.55,13,11,13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"foundation\": {\n    \"name\": \"foundation\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h1.7c0.46,0,0.68-0.57,0.33-0.87L12.67,3.6c-0.38-0.34-0.96-0.34-1.34,0l-8.36,7.53C2.63,11.43,2.84,12,3.3,12H5v3H4 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h1v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h4v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1 v-2h4v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h1c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-1V12z M7,15v-4.81l4-3.6V15H7z M13,15 V6.59l4,3.6V15H13z\\\"></path>\"\n      }\n    }\n  },\n  \"no_cell\": {\n    \"name\": \"no_cell\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.83,6l-3.7-3.7C5.42,1.55,6.15,1,7,1l10,0.01c1.1,0,2,0.89,2,1.99v13.17l-2-2V6H8.83z M20.49,21.9 c-0.39,0.39-1.02,0.39-1.41,0l-0.2-0.2C18.58,22.45,17.85,23,17,23H7c-1.1,0-2-0.9-2-2V7.83l-2.9-2.9c-0.39-0.39-0.39-1.02,0-1.41 c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97C20.88,20.88,20.88,21.51,20.49,21.9z M15.17,18L7,9.83V18H15.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"business_center\": {\n    \"name\": \"business_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 16h-2c-.55 0-1-.45-1-1H3.01v4c0 1.1.9 2 2 2H19c1.1 0 2-.9 2-2v-4h-7c0 .55-.45 1-1 1zm7-9h-4c0-2.21-1.79-4-4-4S8 4.79 8 7H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v1h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 7c0-1.1.9-2 2-2s2 .9 2 2H9.99 10z\\\"></path>\"\n      }\n    }\n  },\n  \"corporate_fare\": {\n    \"name\": \"corporate_fare\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7V5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9c0-1.1-0.9-2-2-2H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2h4V11z M18,15h-4v2h4V15z\\\"></path>\"\n      }\n    }\n  },\n  \"food_bank\": {\n    \"name\": \"food_bank\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.8,3.9l-6,4.5C4.3,8.78,4,9.37,4,10v9c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-9c0-0.63-0.3-1.22-0.8-1.6l-6-4.5 C12.49,3.37,11.51,3.37,10.8,3.9z M12.5,12.5c0,0.83-0.67,1.5-1.5,1.5v3.5c0,0.28-0.22,0.5-0.5,0.5h0c-0.28,0-0.5-0.22-0.5-0.5V14 c-0.83,0-1.5-0.67-1.5-1.5V10c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5v2.5H10V10c0-0.28,0.22-0.5,0.5-0.5h0 c0.28,0,0.5,0.22,0.5,0.5v2.5h0.5V10c0-0.28,0.22-0.5,0.5-0.5h0c0.28,0,0.5,0.22,0.5,0.5V12.5z M14.5,18L14.5,18 c-0.28,0-0.5-0.22-0.5-0.5v-3h-0.5c-0.28,0-0.5-0.22-0.5-0.5v-2.5c0-0.88,0.57-1.63,1.36-1.89C14.67,9.5,15,9.75,15,10.09v7.41 C15,17.78,14.78,18,14.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"smoke_free\": {\n    \"name\": \"smoke_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm-1 1.5c0-.83-.67-1.5-1.5-1.5h-.84l2.18 2.18c.1-.21.16-.44.16-.68zm1.96-12.15H19h-.04zm-.11 2.38c.38-.38.67-.84.84-1.35.16-.5-.19-1.01-.71-1.02-.34.01-.61.25-.72.58-.18.55-.62.99-1.17 1.17-.34.11-.59.39-.59.74V5c0 .37.27.69.64.75 1.93.31 3.36 2 3.36 4.02v1.48c0 .41.34.75.75.75s.75-.34.75-.75V9.76c0-2.22-1.28-4.14-3.15-5.03zm-4.24 3.92h1.42c1.05 0 1.97.74 1.97 2.05v.55c0 .41.33.75.75.75h.01c.41 0 .75-.33.75-.75v-.89c0-1.81-1.6-3.16-3.47-3.16h-1.3c-1.02 0-1.94-.73-2.07-1.75-.12-.95.46-1.7 1.3-1.93.32-.09.54-.38.54-.72 0-.49-.46-.86-.93-.72-1.42.41-2.45 1.73-2.42 3.28.02 1.85 1.61 3.29 3.45 3.29zM4.12 5.29c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L9 13H3.5c-.83 0-1.5.67-1.5 1.5S2.67 16 3.5 16H12l6.29 6.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 5.29z\\\"></path>\"\n      }\n    }\n  },\n  \"houseboat\": {\n    \"name\": \"houseboat\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,17.83c0-0.42-0.27-0.8-0.67-0.94C20.62,16.62,20.21,16,18.67,16c-1.91,0-2.14,1-3.33,1c-1.24,0-1.39-1-3.34-1 s-2.1,1-3.34,1c-1.19,0-1.42-1-3.33-1c-1.54,0-1.95,0.62-2.66,0.88C2.27,17.03,2,17.4,2,17.83c0,0.7,0.69,1.19,1.35,0.95 c0.8-0.29,1.18-0.78,2-0.78c1.19,0,1.42,1,3.33,1c1.95,0,2.08-1,3.32-1s1.37,1,3.32,1c1.91,0,2.14-1,3.33-1c0.83,0,1.21,0.49,2,0.78 C21.31,19.02,22,18.52,22,17.83z M18.91,9.81c0.33-0.45,0.23-1.07-0.22-1.4l-6.1-4.47c-0.35-0.26-0.83-0.26-1.18,0l-6.1,4.47 c-0.45,0.33-0.54,0.95-0.22,1.4c0.33,0.45,0.95,0.54,1.4,0.22L7,9.65V13H5.74c-0.27,0-0.52-0.11-0.71-0.29l-0.66-0.66 c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l0.66,0.66C4.18,14.68,4.95,15,5.74,15h12.51c0.8,0,1.56-0.32,2.12-0.88 l0.66-0.66c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-0.66,0.66C18.78,12.89,18.52,13,18.26,13H17V9.65l0.51,0.37 C17.96,10.35,18.58,10.25,18.91,9.81z M13,13h-2v-2h2V13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.44,8.3c0.24,0.33,0.71,0.41,1.05,0.16L6,8.09V11l-0.97,0c-0.27,0-0.52-0.11-0.71-0.29l-0.51-0.51 C3.52,9.9,3.05,9.87,2.75,10.15c-0.31,0.29-0.32,0.78-0.02,1.08l0.54,0.54c0.47,0.47,1.1,0.73,1.77,0.73h9.93 c0.66,0,1.3-0.26,1.77-0.73l0.52-0.52c0.29-0.29,0.32-0.77,0.04-1.07c-0.29-0.31-0.78-0.31-1.08-0.02l-0.54,0.54 C15.49,10.89,15.23,11,14.97,11L14,11V8.09l0.51,0.37c0.33,0.24,0.8,0.17,1.05-0.16c0.25-0.33,0.17-0.8-0.16-1.05l-4.8-3.52 c-0.35-0.26-0.83-0.26-1.18,0L4.6,7.26C4.27,7.5,4.2,7.97,4.44,8.3 M10.75,11h-1.5V9.75C9.25,9.34,9.59,9,10,9h0 c0.41,0,0.75,0.34,0.75,0.75V11z M15.34,13.5c1.29,0,1.61,0.66,2.2,0.91c0.27,0.11,0.46,0.38,0.46,0.7c0,0.42-0.34,0.76-0.76,0.76 c-0.11,0-0.21-0.02-0.3-0.06c-0.67-0.29-0.93-0.8-1.61-0.8c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1 c-1.59,0-1.72-1-2.67-1c-0.68,0-0.94,0.51-1.62,0.8c-0.09,0.04-0.19,0.06-0.3,0.06C2.34,15.86,2,15.52,2,15.11 c0-0.31,0.19-0.58,0.46-0.7c0.59-0.25,0.92-0.91,2.21-0.91c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1 C13.62,14.5,13.76,13.5,15.34,13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_backpack\": {\n    \"name\": \"no_backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><g><g><path d=\\\"M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V3.5C7,2.67,7.67,2,8.5,2S10,2.67,10,3.5V4h4V3.5C14,2.67,14.67,2,15.5,2 S17,2.67,17,3.5v0.64c1.72,0.45,3,2,3,3.86v9.17l-2.03-2.03C17.98,15.09,18,15.05,18,15v-2c0-0.55-0.45-1-1-1h-2.17L6.98,4.15z M20.49,21.9c-0.39,0.39-1.02,0.39-1.41,0l-0.14-0.14C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L2.1,4.93c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0l16.97,16.97 C20.88,20.88,20.88,21.51,20.49,21.9z M11.17,14l-2-2H7c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1H11.17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bento\": {\n    \"name\": \"bento\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M16,11V5h4c1.1,0,2,0.9,2,2v4H16z M20,19c1.1,0,2-0.9,2-2v-4h-6v6H20z M14,5v14H4c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2H14z M9.5,12c0-0.83-0.67-1.5-1.5-1.5S6.5,11.17,6.5,12s0.67,1.5,1.5,1.5S9.5,12.83,9.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vape_free\": {\n    \"name\": \"vape_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.49,21.9c-0.39,0.39-1.02,0.39-1.41,0l-2.9-2.9H8v-3h5.17L2.1,4.93c-0.39-0.39-0.39-1.02,0-1.41s1.02-0.39,1.41,0 l16.97,16.97C20.88,20.88,20.88,21.51,20.49,21.9z M18.83,16h1.67c0.83,0,1.5,0.67,1.5,1.5c0,0.46-0.21,0.87-0.53,1.14L18.83,16z M10.5,17c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S10.78,17,10.5,17z M18.85,7.73c0.62-0.61,1-1.45,1-2.38 c0-1.51-1-2.79-2.38-3.21C16.99,2,16.5,2.36,16.5,2.86c0,0.33,0.21,0.62,0.52,0.71c0.77,0.23,1.33,0.94,1.33,1.78 c0,0.82-0.53,1.51-1.27,1.76C16.75,7.22,16.5,7.5,16.5,7.85V8c0,0.37,0.27,0.69,0.64,0.75c1.93,0.31,3.36,2,3.36,4.02v1.48 c0,0.41,0.34,0.75,0.75,0.75S22,14.66,22,14.25v-1.49C22,10.54,20.72,8.62,18.85,7.73z M14.48,11.65c0.04,0,0.09,0,0.13,0h1.42 c1.05,0,1.97,0.74,1.97,2.05v0.55c0,0.41,0.34,0.75,0.76,0.75c0.41,0,0.75-0.33,0.75-0.75v-0.89c-0.01-1.81-1.61-3.16-3.48-3.16 h-1.3c-1.02,0-1.94-0.73-2.07-1.75c-0.12-0.95,0.46-1.7,1.3-1.93c0.32-0.09,0.54-0.38,0.54-0.72c0-0.49-0.46-0.86-0.93-0.72 c-1.41,0.41-2.43,1.71-2.42,3.24L14.48,11.65z M3,18.5c1.33,0,2.71,0.18,4,0.5v-3c-1.29,0.32-2.67,0.5-4,0.5c-0.55,0-1,0.45-1,1 S2.45,18.5,3,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.54,17.6c-0.29,0.29-0.77,0.29-1.06,0l-2.6-2.6H7v-2h3.88L2.4,4.52c-0.29-0.29-0.29-0.77,0-1.06s0.77-0.29,1.06,0 l13.08,13.08C16.83,16.83,16.83,17.31,16.54,17.6z M15.12,13H17c0.55,0,1,0.45,1,1c0,0.51-0.39,0.94-0.89,0.99L15.12,13z M9,13.65 c-0.19,0-0.35,0.16-0.35,0.35S8.81,14.35,9,14.35S9.35,14.19,9.35,14S9.19,13.65,9,13.65z M16,10.5C16,9.12,14.88,8,13.5,8h-1 C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5C12.78,5,13,4.78,13,4.5C13,4.22,12.78,4,12.5,4C11.12,4,10,5.12,10,6.5S11.12,9,12.5,9h1 c0.83,0,1.5,0.67,1.5,1.5v1c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V10.5z M13.5,6.5c0,0.27,0.21,0.49,0.47,0.53 C15.68,7.26,17,8.73,17,10.5v1c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5v-1c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5 c0-1.17-0.8-2.15-1.89-2.42C13.8,2,13.5,2.24,13.5,2.56c0,0.23,0.16,0.43,0.38,0.49C14.53,3.22,15,3.8,15,4.5 c0,0.69-0.46,1.26-1.09,1.44C13.66,6.01,13.5,6.24,13.5,6.5z M3,14.75c1,0,2.02,0.09,3,0.25v-2c-0.98,0.16-2,0.25-3,0.25H2.75 C2.34,13.25,2,13.59,2,14s0.34,0.75,0.75,0.75H3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"charging_station\": {\n    \"name\": \"charging_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,18H7V6h10V18z M12.5,11V9.12 c0-0.53-0.71-0.7-0.95-0.22l-1.69,3.38C9.7,12.61,9.94,13,10.31,13h1.19v1.88c0,0.53,0.71,0.7,0.95,0.22l1.69-3.38 C14.3,11.39,14.06,11,13.69,11H12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"villa\": {\n    \"name\": \"villa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,21H4c-0.55,0-1-0.45-1-1V8.69C3,8.27,3.25,7.9,3.64,7.75l11-4.23C15.3,3.27,16,3.75,16,4.46V10H8c-0.55,0-1,0.45-1,1V21z M17,12h-7c-0.55,0-1,0.45-1,1v7c0,0.55,0.45,1,1,1h4v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4h4c0.55,0,1-0.45,1-1v-8c0-1.1-0.9-2-2-2 S17,10.9,17,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5,17H4c-0.55,0-1-0.45-1-1V7.57c0-0.41,0.25-0.78,0.64-0.93l8-3.11C12.29,3.27,13,3.76,13,4.46V8.5H7c-0.55,0-1,0.45-1,1 V16C6,16.55,5.55,17,5,17z M12.25,13c0.41,0,0.75,0.34,0.75,0.75V17h3c0.55,0,1-0.45,1-1v-6c0-0.83-0.67-1.5-1.5-1.5S14,9.17,14,10 H8.5c-0.55,0-1,0.45-1,1v5c0,0.55,0.45,1,1,1h3v-3.25C11.5,13.34,11.84,13,12.25,13z\\\"></path>\"\n      }\n    }\n  },\n  \"storefront\": {\n    \"name\": \"storefront\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g></g><g><path d=\\\"M21.9,7.89l-1.05-3.37c-0.22-0.9-1-1.52-1.91-1.52H5.05c-0.9,0-1.69,0.63-1.9,1.52L2.1,7.89C1.64,9.86,2.95,11,3,11.06V19 c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-7.94C22.12,9.94,22.09,8.65,21.9,7.89z M13,5h1.96l0.54,3.52C15.59,9.23,15.11,10,14.22,10 C13.55,10,13,9.41,13,8.69V5z M6.44,8.86C6.36,9.51,5.84,10,5.23,10C4.3,10,3.88,9.03,4.04,8.36L5.05,5h1.97L6.44,8.86z M11,8.69 C11,9.41,10.45,10,9.71,10c-0.75,0-1.3-0.7-1.22-1.48L9.04,5H11V8.69z M18.77,10c-0.61,0-1.14-0.49-1.21-1.14L16.98,5l1.93-0.01 l1.05,3.37C20.12,9.03,19.71,10,18.77,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"apartment\": {\n    \"name\": \"apartment\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11V5c0-1.1-0.9-2-2-2H9C7.9,3,7,3.9,7,5v2H5C3.9,7,3,7.9,3,9v10c0,1.1,0.9,2,2,2h5c0.55,0,1-0.45,1-1v-3h2v3 c0,0.55,0.45,1,1,1h5c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15 z M11,11H9V9h2V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,9V5c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5v2H4C3.45,7,3,7.45,3,8v7c0,0.55,0.45,1,1,1h5.5c0.28,0,0.5-0.22,0.5-0.5V13 h1v2.5c0,0.28,0.22,0.5,0.5,0.5H16c0.55,0,1-0.45,1-1v-5c0-0.55-0.45-1-1-1H14z M6,14H5v-1h1V14z M6,12H5v-1h1V12z M6,10H5V9h1V10z M10,11H9v-1h1V11z M10,9H9V8h1V9z M10,7H9V6h1V7z M12,11h-1v-1h1V11z M12,9h-1V8h1V9z M12,7h-1V6h1V7z M15,14h-1v-1h1V14z M15,12 h-1v-1h1V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rv_hookup\": {\n    \"name\": \"rv_hookup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 17h-1v-6c0-1.1-.9-2-2-2H7v-.74c0-.46-.56-.7-.89-.37L4.37 9.63c-.2.2-.2.53 0 .74l1.74 1.74c.33.33.89.1.89-.37V11h4v3H5c-.55 0-1 .45-1 1v2c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h7c.55 0 1-.45 1-1s-.45-1-1-1zm-10 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h3c.55 0 1 .45 1 1v2zm-8-8h7v.74c0 .46.56.7.89.37l1.74-1.74c.2-.2.2-.53 0-.74l-1.74-1.74c-.33-.33-.89-.1-.89.37V4h-7c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"bathtub\": {\n    \"name\": \"bathtub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><circle cx=\\\"7\\\" cy=\\\"7\\\" r=\\\"2\\\"></circle></g><g><path d=\\\"M21,13h-1V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H3c-0.55,0-1,0.45-1,1v5c0,1.1,0.9,2,2,2 c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-5C22,13.45,21.55,13,21,13z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16.5,11H16V5.12C16,3.95,15.05,3,13.88,3c-0.56,0-1.1,0.22-1.5,0.62l-0.83,0.83c-0.17-0.08-0.37-0.12-0.57-0.12 c-0.28,0-0.54,0.08-0.76,0.23l1.93,1.93c0.14-0.22,0.23-0.48,0.23-0.76c0-0.2-0.05-0.39-0.12-0.57l0.83-0.83 C13.3,4.12,13.58,4,13.88,4C14.5,4,15,4.5,15,5.12V11H9.1c-0.2-0.14-0.38-0.3-0.55-0.48L7.62,9.49C7.49,9.35,7.33,9.23,7.16,9.15 C6.95,9.05,6.72,9,6.49,9C5.67,9,5,9.67,5,10.5V11H3.5C3.22,11,3,11.22,3,11.5V15c0,0.55,0.45,1,1,1v0.5C4,16.78,4.22,17,4.5,17 h11c0.28,0,0.5-0.22,0.5-0.5V16c0.55,0,1-0.45,1-1v-3.5C17,11.22,16.78,11,16.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"star_half\": {\n    \"name\": \"star_half\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.65 9.04l-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"toggle_on\": {\n    \"name\": \"toggle_on\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"check_box\": {\n    \"name\": \"check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.29 13.29c-.39.39-1.02.39-1.41 0L5.71 12.7c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.58 7.59z\\\"></path>\"\n      }\n    }\n  },\n  \"radio_button_unchecked\": {\n    \"name\": \"radio_button_unchecked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"star\": {\n    \"name\": \"star\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"m12 17.27 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.72 3.67-3.18c.67-.58.31-1.68-.57-1.75l-4.83-.41-1.89-4.46c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"toggle_off\": {\n    \"name\": \"toggle_off\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"star_outline\": {\n    \"name\": \"star_outline\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.65 9.04l-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border_purple500\": {\n    \"name\": \"star_border_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><path d=\\\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M9.58,10H5.12 c-0.97,0-1.37,1.25-0.58,1.81l3.64,2.6l-1.43,4.61c-0.29,0.93,0.79,1.68,1.56,1.09L12,17.31l3.69,2.81 c0.77,0.59,1.85-0.16,1.56-1.09l-1.43-4.61l3.64-2.6c0.79-0.57,0.39-1.81-0.58-1.81h-4.46l-1.47-4.84c-0.29-0.95-1.63-0.95-1.91,0 L9.58,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radio_button_checked\": {\n    \"name\": \"radio_button_checked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"5\\\"></circle>\"\n      }\n    }\n  },\n  \"check_box_outline_blank\": {\n    \"name\": \"check_box_outline_blank\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 19H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border\": {\n    \"name\": \"star_border\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.65 9.04l-4.84-.42-1.89-4.45c-.34-.81-1.5-.81-1.84 0L9.19 8.63l-4.83.41c-.88.07-1.24 1.17-.57 1.75l3.67 3.18-1.1 4.72c-.2.86.73 1.54 1.49 1.08l4.15-2.5 4.15 2.51c.76.46 1.69-.22 1.49-1.08l-1.1-4.73 3.67-3.18c.67-.58.32-1.68-.56-1.75zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_purple500\": {\n    \"name\": \"star_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><path d=\\\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M9.58,10H5.12 c-0.97,0-1.37,1.25-0.58,1.81l3.64,2.6l-1.43,4.61c-0.29,0.93,0.79,1.68,1.56,1.09L12,17.31l3.69,2.81 c0.77,0.59,1.85-0.16,1.56-1.09l-1.43-4.61l3.64-2.6c0.79-0.57,0.39-1.81-0.58-1.81h-4.46l-1.47-4.84c-0.29-0.95-1.63-0.95-1.91,0 L9.58,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"indeterminate_check_box\": {\n    \"name\": \"indeterminate_check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_center\": {\n    \"name\": \"vertical_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.21 19H11v3c0 .55.45 1 1 1s1-.45 1-1v-3h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zm5.58-14H13V2c0-.55-.45-1-1-1s-1 .45-1 1v3H9.21c-.45 0-.67.54-.36.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.32-.31.1-.85-.35-.85zM4 12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"border_top\": {\n    \"name\": \"border_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm16 13h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"monetization_on\": {\n    \"name\": \"monetization_on\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09v.58c0 .73-.6 1.33-1.33 1.33h-.01c-.73 0-1.33-.6-1.33-1.33v-.6c-1.33-.28-2.51-1.01-3.01-2.24-.23-.55.2-1.16.8-1.16h.24c.37 0 .67.25.81.6.29.75 1.05 1.27 2.51 1.27 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21v-.6c0-.73.6-1.33 1.33-1.33h.01c.73 0 1.33.6 1.33 1.33v.62c1.38.34 2.25 1.2 2.63 2.26.2.55-.22 1.13-.81 1.13h-.26c-.37 0-.67-.26-.77-.62-.23-.76-.86-1.25-2.12-1.25-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.02 1.83-1.39 2.83-3.13 3.16z\\\"></path>\"\n      }\n    }\n  },\n  \"format_line_spacing\": {\n    \"name\": \"format_line_spacing\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.29 7c.45 0 .67-.54.35-.85l-2.29-2.3c-.2-.2-.51-.2-.71 0l-2.29 2.3c-.31.31-.09.85.36.85H4v10H2.71c-.45 0-.67.54-.35.85l2.29 2.29c.2.2.51.2.71 0l2.29-2.29c.31-.31.09-.85-.36-.85H6V7h1.29zM11 7h10c.55 0 1-.45 1-1s-.45-1-1-1H11c-.55 0-1 .45-1 1s.45 1 1 1zm10 10H11c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H11c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_link\": {\n    \"name\": \"insert_link\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.96 11.38C4.24 9.91 5.62 8.9 7.12 8.9h2.93c.52 0 .95-.43.95-.95S10.57 7 10.05 7H7.22c-2.61 0-4.94 1.91-5.19 4.51C1.74 14.49 4.08 17 7 17h3.05c.52 0 .95-.43.95-.95s-.43-.95-.95-.95H7c-1.91 0-3.42-1.74-3.04-3.72zM9 13h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1zm7.78-6h-2.83c-.52 0-.95.43-.95.95s.43.95.95.95h2.93c1.5 0 2.88 1.01 3.16 2.48.38 1.98-1.13 3.72-3.04 3.72h-3.05c-.52 0-.95.43-.95.95s.43.95.95.95H17c2.92 0 5.26-2.51 4.98-5.49-.25-2.6-2.59-4.51-5.2-4.51z\\\"></path>\"\n      }\n    }\n  },\n  \"area_chart\": {\n    \"name\": \"area_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8,17l3.39-4.66c0.33-0.46,0.98-0.55,1.42-0.2L21,18.5V19c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0-5.72 c0.22,0,0.44,0.07,0.62,0.22L8,17z M3,11c0.44,0,0.88,0.15,1.25,0.44l3.37,2.69l2.77-3.81c0.66-0.91,1.95-1.1,2.85-0.4L21,15.97V8 c0-0.55-0.45-1-1-1h-3l-4.18-3.34c-0.45-0.36-1.1-0.27-1.44,0.2L7,10L3.6,7.45C3.42,7.32,3.21,7.25,3,7.25L3,11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.68,11.39L3.9,9.3C3.63,9.1,3.32,9,3,9l0-2.8c0.19,0,0.39,0.06,0.55,0.17L6,8l3.39-4.24c0.34-0.42,0.95-0.5,1.38-0.18 L14,6h2c0.55,0,1,0.45,1,1v6.08l-6.06-4.86c-0.67-0.53-1.65-0.4-2.15,0.29L6.68,11.39z M17,15l-6.18-4.96 c-0.44-0.36-1.1-0.27-1.43,0.19L7,13.5l-3.4-2.55c-0.18-0.13-0.39-0.2-0.6-0.2L3,15c0,0.55,0.45,1,1,1h12C16.55,16,17,15.55,17,15z\\\"></path>\"\n      }\n    }\n  },\n  \"add_comment\": {\n    \"name\": \"add_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4zm-6 7h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"format_textdirection_l_to_r\": {\n    \"name\": \"format_textdirection_l_to_r\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 10v4c0 .55.45 1 1 1s1-.45 1-1V4h2v10c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1H9.17C7.08 2 5.22 3.53 5.02 5.61 4.79 7.99 6.66 10 9 10zm11.65 7.65l-2.79-2.79c-.32-.32-.86-.1-.86.35V17H6c-.55 0-1 .45-1 1s.45 1 1 1h11v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"show_chart\": {\n    \"name\": \"show_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.2 17.78l5.3-5.3 3.25 3.25c.41.41 1.07.39 1.45-.04l7.17-8.07c.35-.39.33-.99-.04-1.37-.4-.4-1.07-.39-1.45.04l-6.39 7.18-3.29-3.29c-.39-.39-1.02-.39-1.41 0l-6.09 6.1c-.39.39-.39 1.02 0 1.41l.09.09c.39.39 1.03.39 1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"table_chart\": {\n    \"name\": \"table_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 10.02h5V21h-5V10.02zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z\\\"></path>\"\n      }\n    }\n  },\n  \"text_decrease\": {\n    \"name\": \"text_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.61,19L2.61,19c0.48,0,0.91-0.3,1.06-0.75l1.01-2.83h5.65l0.99,2.82C11.48,18.7,11.91,19,12.39,19 c0.79,0,1.33-0.79,1.05-1.52L9.19,6.17C8.93,5.47,8.25,5,7.5,5S6.07,5.47,5.81,6.17L1.56,17.48C1.28,18.21,1.83,19,2.61,19z M7.44,7.6h0.12l2.03,5.79H5.41L7.44,7.6z M15,12c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1s-0.45,1-1,1h-6C15.45,13,15,12.55,15,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,10c0-0.41,0.34-0.75,0.75-0.75h4.5C17.66,9.25,18,9.59,18,10s-0.34,0.75-0.75,0.75h-4.5C12.34,10.75,12,10.41,12,10z M3,15c0.34,0,0.65-0.21,0.76-0.53l0.72-2.02h4.04l0.71,2.02C9.35,14.79,9.66,15,10,15c0.56,0,0.95-0.55,0.75-1.08L7.72,5.84 C7.51,5.33,7.03,5,6.49,5S5.47,5.33,5.28,5.84l-3.03,8.08C2.05,14.44,2.44,15,3,15z M6.06,8.02l0.39-1.16h0.08l0.39,1.16L7.98,11H5 L6.06,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart\": {\n    \"name\": \"insert_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit\": {\n    \"name\": \"mode_edit\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,17.46l0,3.04C3,20.78,3.22,21,3.5,21h3.04c0.13,0,0.26-0.05,0.35-0.15L17.81,9.94l-3.75-3.75L3.15,17.1 C3.05,17.2,3,17.32,3,17.46z\\\"></path></g><g><path d=\\\"M20.71,5.63l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83C21.1,6.65,21.1,6.02,20.71,5.63z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"format_color_text\": {\n    \"name\": \"format_color_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,20H4c-1.1,0-2,0.9-2,2s0.9,2,2,2h16c1.1,0,2-0.9,2-2S21.1,20,20,20z\\\"></path><path d=\\\"M7.11,17L7.11,17c0.48,0,0.91-0.3,1.06-0.75l1.01-2.83h5.65l0.99,2.82C15.98,16.7,16.41,17,16.89,17 c0.79,0,1.33-0.79,1.05-1.52L13.69,4.17C13.43,3.47,12.75,3,12,3s-1.43,0.47-1.69,1.17L6.06,15.48C5.78,16.21,6.33,17,7.11,17z M11.94,5.6h0.12l2.03,5.79H9.91L11.94,5.6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,16H4c-1.1,0-2,0.9-2,2s0.9,2,2,2h12c1.1,0,2-0.9,2-2S17.1,16,16,16z\\\"></path><path d=\\\"M6.51,13L6.51,13c0.34,0,0.65-0.21,0.76-0.53l0.72-2.02h4.04l0.71,2.02c0.11,0.32,0.42,0.54,0.76,0.54 c0.56,0,0.95-0.56,0.75-1.09l-3.03-8.08C11.02,3.33,10.54,3,10,3S8.98,3.33,8.79,3.84l-3.03,8.08C5.56,12.44,5.95,13,6.51,13z M9.57,6.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98H8.51L9.57,6.02z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"query_stats\": {\n    \"name\": \"query_stats\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.88,18.47c0.48-0.77,0.75-1.67,0.69-2.66c-0.13-2.15-1.84-3.97-3.97-4.2c-2.72-0.3-5.02,1.81-5.02,4.47 c0,2.49,2.01,4.5,4.49,4.5c0.88,0,1.7-0.26,2.39-0.7l2.41,2.41c0.39,0.39,1.03,0.39,1.42,0v0c0.39-0.39,0.39-1.03,0-1.42 L19.88,18.47z M16.08,18.58c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C18.58,17.46,17.46,18.58,16.08,18.58z M15.72,10.08c-0.74,0.02-1.45,0.18-2.1,0.45l-0.55-0.83l-3.08,5.01 c-0.36,0.58-1.17,0.64-1.61,0.13l-2.12-2.47l-3.06,4.9c-0.31,0.49-0.97,0.62-1.44,0.28l0,0c-0.42-0.31-0.54-0.89-0.26-1.34 l3.78-6.05c0.36-0.57,1.17-0.63,1.61-0.12L9,12.5l3.18-5.17c0.38-0.62,1.28-0.64,1.68-0.03L15.72,10.08z M18.31,10.58 c-0.64-0.28-1.33-0.45-2.05-0.49L20.8,2.9c0.31-0.49,0.97-0.61,1.43-0.27l0,0c0.43,0.31,0.54,0.9,0.26,1.34L18.31,10.58z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.44,15.38c0.51-0.79,0.72-1.79,0.42-2.86c-0.35-1.24-1.41-2.22-2.68-2.46c-2.47-0.47-4.59,1.65-4.12,4.12 c0.24,1.27,1.21,2.33,2.46,2.68c1.07,0.3,2.07,0.09,2.86-0.42l2.03,2.03c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06 L16.44,15.38z M13.5,15.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S14.6,15.5,13.5,15.5z M18.41,2.45L18.41,2.45 c0.33,0.23,0.41,0.69,0.19,1.02l-3.49,5.29h0C14.61,8.59,14.07,8.5,13.5,8.5l3.85-5.85C17.59,2.3,18.07,2.21,18.41,2.45z M13.5,8.5 c-0.58,0-1.13,0.1-1.65,0.28l0,0l-0.78-1.1l-2.67,4.2c-0.36,0.57-1.18,0.62-1.61,0.1l-1.6-1.92l-2.54,4.13 c-0.23,0.37-0.72,0.47-1.07,0.22l0,0c-0.32-0.23-0.41-0.67-0.2-1l2.9-4.72C4.63,8.1,5.45,8.04,5.89,8.57L7.5,10.5l2.7-4.25 c0.38-0.6,1.25-0.62,1.66-0.04L13.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shape_line\": {\n    \"name\": \"shape_line\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,11c2.76,0,5-2.24,5-5S8.76,1,6,1S1,3.24,1,6S3.24,11,6,11z\\\"></path><path d=\\\"M21,14h-5c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-5C23,14.9,22.1,14,21,14z\\\"></path><path d=\\\"M17.71,7.7C18.11,7.89,18.54,8,19,8c1.65,0,3-1.35,3-3s-1.35-3-3-3s-3,1.35-3,3c0,0.46,0.11,0.89,0.3,1.29L6.29,16.3 C5.89,16.11,5.46,16,5,16c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3c0-0.46-0.11-0.89-0.3-1.29L17.71,7.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,9c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C2.79,1,1,2.79,1,5C1,7.21,2.79,9,5,9z\\\"></path><path d=\\\"M17.5,12h-4c-0.83,0-1.5,0.67-1.5,1.5v4c0,0.83,0.67,1.5,1.5,1.5h4c0.83,0,1.5-0.67,1.5-1.5v-4C19,12.67,18.33,12,17.5,12 z\\\"></path><path d=\\\"M14.35,6.71C14.7,6.89,15.08,7,15.5,7C16.88,7,18,5.88,18,4.5S16.88,2,15.5,2S13,3.12,13,4.5c0,0.42,0.11,0.8,0.29,1.15 l-7.64,7.64C5.3,13.11,4.92,13,4.5,13C3.12,13,2,14.12,2,15.5S3.12,18,4.5,18S7,16.88,7,15.5c0-0.42-0.11-0.8-0.29-1.15 L14.35,6.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"border_bottom\": {\n    \"name\": \"border_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm1-6H3v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_indent_increase\": {\n    \"name\": \"format_indent_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 9.21v5.59c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.8c-.31-.31-.85-.09-.85.36zM12 17h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm9 5h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"padding\": {\n    \"name\": \"padding\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z M9,8c0,0.55-0.45,1-1,1S7,8.55,7,8 s0.45-1,1-1S9,7.45,9,8z M13,8c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S13,7.45,13,8z M17,8c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1s0.45-1,1-1C16.55,7,17,7.45,17,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"checklist_rtl\": {\n    \"name\": \"checklist_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,8c0-0.55-0.45-1-1-1H3C2.45,7,2,7.45,2,8s0.45,1,1,1h7C10.55,9,11,8.55,11,8z M11,16c0-0.55-0.45-1-1-1H3 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h7C10.55,17,11,16.55,11,16z M17.05,10.29c-0.39,0.39-1.02,0.39-1.41,0l-2.12-2.12 c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l1.41,1.41l3.54-3.54c0.39-0.39,1.02-0.39,1.41,0l0,0 c0.39,0.39,0.39,1.02,0,1.41L17.05,10.29z M17.05,18.29c-0.39,0.39-1.02,0.39-1.41,0l-2.12-2.12c-0.39-0.39-0.39-1.02,0-1.41l0,0 c0.39-0.39,1.02-0.39,1.41,0l1.41,1.41l3.54-3.54c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41L17.05,18.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9,6.75C9,7.16,8.66,7.5,8.25,7.5h-5.5C2.34,7.5,2,7.16,2,6.75S2.34,6,2.75,6h5.5C8.66,6,9,6.34,9,6.75z M9,13.25 c0-0.41-0.34-0.75-0.75-0.75h-5.5C2.34,12.5,2,12.84,2,13.25C2,13.66,2.34,14,2.75,14h5.5C8.66,14,9,13.66,9,13.25z M17.47,3.87 c-0.29-0.29-0.77-0.29-1.06,0L13.4,6.88l-1.24-1.24c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l1.59,1.59 c0.39,0.39,1.02,0.39,1.41,0l3.36-3.36C17.76,4.64,17.76,4.17,17.47,3.87z M17.47,10.37c-0.29-0.29-0.77-0.29-1.06,0l-3.01,3.01 l-1.24-1.24c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l1.59,1.59c0.39,0.39,1.02,0.39,1.41,0l3.36-3.36 C17.76,11.14,17.76,10.67,17.47,10.37z\\\"></path>\"\n      }\n    }\n  },\n  \"numbers\": {\n    \"name\": \"numbers\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.68,9.27l0.01-0.06C20.85,8.59,20.39,8,19.76,8H17l0.7-2.79C17.85,4.59,17.39,4,16.76,4h0c-0.45,0-0.83,0.3-0.94,0.73 L15,8h-4l0.7-2.79C11.85,4.59,11.39,4,10.76,4h0c-0.45,0-0.83,0.3-0.94,0.73L9,8H5.76C5.31,8,4.92,8.3,4.82,8.73L4.8,8.79 C4.65,9.41,5.11,10,5.74,10H8.5l-1,4H4.26c-0.45,0-0.83,0.3-0.94,0.73L3.3,14.79C3.15,15.41,3.61,16,4.24,16H7l-0.7,2.79 C6.15,19.41,6.61,20,7.24,20h0c0.45,0,0.83-0.3,0.94-0.73L9,16h4l-0.7,2.79C12.15,19.41,12.61,20,13.24,20h0 c0.45,0,0.83-0.3,0.94-0.73L15,16h3.24c0.45,0,0.83-0.3,0.94-0.73l0.01-0.06c0.15-0.61-0.31-1.21-0.94-1.21H15.5l1-4h3.24 C20.19,10,20.58,9.7,20.68,9.27z M13.5,14h-4l1-4h4L13.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.76,7.95l0.01-0.04C16.89,7.44,16.54,7,16.07,7h-2.32l0.52-2.1C14.39,4.44,14.04,4,13.57,4h0 c-0.33,0-0.62,0.23-0.71,0.55L12.25,7h-3l0.52-2.1C9.89,4.44,9.54,4,9.07,4h0C8.73,4,8.44,4.23,8.36,4.55L7.75,7H4.94 C4.61,7,4.32,7.23,4.24,7.55L4.23,7.6C4.11,8.06,4.46,8.5,4.93,8.5h2.44L6.5,12H3.94c-0.33,0-0.62,0.23-0.71,0.55L3.23,12.6 c-0.11,0.46,0.23,0.9,0.71,0.9h2.19l-0.4,1.6C5.61,15.56,5.96,16,6.43,16h0c0.33,0,0.62-0.23,0.71-0.55l0.49-1.95h3l-0.4,1.6 c-0.11,0.46,0.23,0.9,0.71,0.9h0c0.33,0,0.62-0.23,0.71-0.55l0.49-1.95h2.93c0.33,0,0.62-0.23,0.71-0.55l0.01-0.04 c0.11-0.46-0.23-0.9-0.71-0.9H12.5l0.88-3.5h2.68C16.39,8.5,16.68,8.27,16.76,7.95z M11,12H8l0.88-3.5h3L11,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_align_center\": {\n    \"name\": \"format_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 16c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm-3 5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"format_underlined\": {\n    \"name\": \"format_underlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.79 16.95c3.03-.39 5.21-3.11 5.21-6.16V4.25C18 3.56 17.44 3 16.75 3s-1.25.56-1.25 1.25v6.65c0 1.67-1.13 3.19-2.77 3.52-2.25.47-4.23-1.25-4.23-3.42V4.25C8.5 3.56 7.94 3 7.25 3S6 3.56 6 4.25V11c0 3.57 3.13 6.42 6.79 5.95zM5 20c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"format_bold\": {\n    \"name\": \"format_bold\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h5.78c2.07 0 3.96-1.69 3.97-3.77.01-1.53-.85-2.84-2.15-3.44zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_bottom\": {\n    \"name\": \"align_vertical_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,22H3c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h18c0.55,0,1,0.45,1,1v0C22,21.55,21.55,22,21,22z M8.5,2L8.5,2 C7.67,2,7,2.67,7,3.5v13C7,17.33,7.67,18,8.5,18h0c0.83,0,1.5-0.67,1.5-1.5v-13C10,2.67,9.33,2,8.5,2z M15.5,8L15.5,8 C14.67,8,14,8.67,14,9.5v7c0,0.83,0.67,1.5,1.5,1.5h0c0.83,0,1.5-0.67,1.5-1.5v-7C17,8.67,16.33,8,15.5,8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_justify\": {\n    \"name\": \"format_align_justify\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart\": {\n    \"name\": \"pie_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 3.18v17.64c0 .64-.59 1.12-1.21.98C5.32 20.8 2 16.79 2 12s3.32-8.8 7.79-9.8c.62-.14 1.21.34 1.21.98zm2.03 0v6.81c0 .55.45 1 1 1h6.79c.64 0 1.12-.59.98-1.22-.85-3.76-3.8-6.72-7.55-7.57-.63-.14-1.22.34-1.22.98zm0 10.83v6.81c0 .64.59 1.12 1.22.98 3.76-.85 6.71-3.82 7.56-7.58.14-.62-.35-1.22-.98-1.22h-6.79c-.56.01-1.01.46-1.01 1.01z\\\"></path>\"\n      }\n    }\n  },\n  \"data_array\": {\n    \"name\": \"data_array\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,5L15,5c0,0.55,0.45,1,1,1h2v12h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2h-2 C15.45,4,15,4.45,15,5z\\\"></path><path d=\\\"M6,20h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6V6h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6C4.9,4,4,4.9,4,6v12 C4,19.1,4.9,20,6,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,5.5v9C4,15.33,4.67,16,5.5,16h1.75C7.66,16,8,15.66,8,15.25v0c0-0.41-0.34-0.75-0.75-0.75H5.5v-9h1.75 C7.66,5.5,8,5.16,8,4.75v0C8,4.34,7.66,4,7.25,4H5.5C4.67,4,4,4.67,4,5.5z\\\"></path><path d=\\\"M12,4.75L12,4.75c0,0.41,0.34,0.75,0.75,0.75h1.75v9h-1.75c-0.41,0-0.75,0.34-0.75,0.75v0c0,0.41,0.34,0.75,0.75,0.75 h1.75c0.83,0,1.5-0.67,1.5-1.5v-9C16,4.67,15.33,4,14.5,4h-1.75C12.34,4,12,4.34,12,4.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notes\": {\n    \"name\": \"notes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 11H4c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zM4 18h10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM20 6H4c-.55 0-1 .45-1 1v.01c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"scatter_plot\": {\n    \"name\": \"scatter_plot\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6\\\" r=\\\"3\\\"></circle><circle cx=\\\"16.6\\\" cy=\\\"17.6\\\" r=\\\"3\\\"></circle>\"\n      }\n    }\n  },\n  \"align_horizontal_right\": {\n    \"name\": \"align_horizontal_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,2L21,2c0.55,0,1,0.45,1,1v18c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V3C20,2.45,20.45,2,21,2z M3.5,10h13 c0.83,0,1.5-0.67,1.5-1.5v0C18,7.67,17.33,7,16.5,7h-13C2.67,7,2,7.67,2,8.5v0C2,9.33,2.67,10,3.5,10z M9.5,17h7 c0.83,0,1.5-0.67,1.5-1.5v0c0-0.83-0.67-1.5-1.5-1.5h-7C8.67,14,8,14.67,8,15.5v0C8,16.33,8.67,17,9.5,17z\\\"></path>\"\n      }\n    }\n  },\n  \"square\": {\n    \"name\": \"square\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,17h-11C3.67,17,3,16.33,3,15.5v-11C3,3.67,3.67,3,4.5,3h11C16.33,3,17,3.67,17,4.5v11C17,16.33,16.33,17,15.5,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_graph\": {\n    \"name\": \"auto_graph\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.06,9.94L13,9.45c-0.39-0.18-0.39-0.73,0-0.91l1.06-0.49L14.55,7c0.18-0.39,0.73-0.39,0.91,0l0.49,1.06L17,8.55 c0.39,0.18,0.39,0.73,0,0.91l-1.06,0.49L15.45,11c-0.18,0.39-0.73,0.39-0.91,0L14.06,9.94z M4.45,13l0.49-1.06L6,11.45 c0.39-0.18,0.39-0.73,0-0.91l-1.06-0.49L4.45,9C4.28,8.61,3.72,8.61,3.55,9l-0.49,1.06L2,10.55c-0.39,0.18-0.39,0.73,0,0.91 l1.06,0.49L3.55,13C3.72,13.39,4.28,13.39,4.45,13z M8.96,7.99l0.63-1.4l1.4-0.63c0.39-0.18,0.39-0.73,0-0.91l-1.4-0.63l-0.63-1.4 c-0.18-0.39-0.73-0.39-0.91,0l-0.63,1.4l-1.4,0.63c-0.39,0.18-0.39,0.73,0,0.91l1.4,0.63l0.63,1.4C8.22,8.38,8.78,8.38,8.96,7.99z M22.34,8.27c-0.4-0.4-1.07-0.39-1.45,0.04l-6.39,7.18l-3.29-3.29c-0.39-0.39-1.02-0.39-1.41,0l-6.04,6.05 c-0.41,0.41-0.41,1.09,0,1.5c0.41,0.41,1.09,0.41,1.5,0l5.25-5.26l3.25,3.25c0.41,0.41,1.07,0.39,1.45-0.04l7.17-8.07 C22.73,9.24,22.71,8.64,22.34,8.27z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.05,9l-0.33-0.72L11,7.95c-0.39-0.18-0.39-0.73,0-0.91l0.72-0.33L12.05,6c0.18-0.39,0.73-0.39,0.91,0l0.33,0.72L14,7.05 c0.39,0.18,0.39,0.73,0,0.91l-0.72,0.33L12.95,9C12.78,9.39,12.22,9.39,12.05,9z M3.95,11l0.33-0.72L5,9.95 c0.39-0.18,0.39-0.73,0-0.91L4.28,8.72L3.95,8C3.78,7.61,3.22,7.61,3.05,8L2.72,8.72L2,9.05C1.61,9.22,1.61,9.78,2,9.95l0.72,0.33 L3.05,11C3.22,11.39,3.78,11.39,3.95,11z M7.45,7l0.49-1.06L9,5.45c0.39-0.18,0.39-0.73,0-0.91L7.94,4.06L7.45,3 C7.28,2.61,6.72,2.61,6.55,3L6.06,4.06L5,4.55C4.61,4.72,4.61,5.28,5,5.45l1.06,0.49L6.55,7C6.72,7.39,7.28,7.39,7.45,7z M18.44,7 c-0.31-0.28-0.78-0.25-1.06,0.06l-5.11,5.75l-2.56-2.56c-0.39-0.39-1.02-0.39-1.41,0l-4.76,4.77c-0.29,0.29-0.29,0.77,0,1.06 c0.29,0.29,0.77,0.29,1.06,0L9,11.67l2.58,2.58c0.41,0.41,1.07,0.39,1.45-0.04l5.47-6.15C18.78,7.75,18.75,7.27,18.44,7z\\\"></path>\"\n      }\n    }\n  },\n  \"candlestick_chart\": {\n    \"name\": \"candlestick_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M8,4L8,4C7.45,4,7,4.45,7,5v1H6C5.45,6,5,6.45,5,7v10c0,0.55,0.45,1,1,1h1v1c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-1h1 c0.55,0,1-0.45,1-1V7c0-0.55-0.45-1-1-1H9V5C9,4.45,8.55,4,8,4z\\\"></path></g><g><path d=\\\"M18,8h-1V5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3h-1c-0.55,0-1,0.45-1,1v5c0,0.55,0.45,1,1,1h1v4c0,0.55,0.45,1,1,1 h0c0.55,0,1-0.45,1-1v-4h1c0.55,0,1-0.45,1-1V9C19,8.45,18.55,8,18,8z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M6.5,3L6.5,3C6.09,3,5.75,3.34,5.75,3.75V5H5C4.45,5,4,5.45,4,6v8c0,0.55,0.45,1,1,1h0.75v1.25 C5.75,16.66,6.09,17,6.5,17h0c0.41,0,0.75-0.34,0.75-0.75V15H8c0.55,0,1-0.45,1-1V6c0-0.55-0.45-1-1-1H7.25V3.75 C7.25,3.34,6.91,3,6.5,3z\\\"></path></g><g><path d=\\\"M15,7h-0.75V3.75C14.25,3.34,13.91,3,13.5,3h0c-0.41,0-0.75,0.34-0.75,0.75V7H12c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1 h0.75v3.25c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75V13H15c0.55,0,1-0.45,1-1V8C16,7.45,15.55,7,15,7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"bar_chart\": {\n    \"name\": \"bar_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,20L6,20c1.1,0,2-0.9,2-2v-7c0-1.1-0.9-2-2-2h0c-1.1,0-2,0.9-2,2v7C4,19.1,4.9,20,6,20z\\\"></path><path d=\\\"M16,15v3c0,1.1,0.9,2,2,2h0c1.1,0,2-0.9,2-2v-3c0-1.1-0.9-2-2-2h0C16.9,13,16,13.9,16,15z\\\"></path><path d=\\\"M12,20L12,20c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2h0c-1.1,0-2,0.9-2,2v12C10,19.1,10.9,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,11.5v3c0,0.83,0.67,1.5,1.5,1.5h0c0.83,0,1.5-0.67,1.5-1.5v-3c0-0.83-0.67-1.5-1.5-1.5h0C13.67,10,13,10.67,13,11.5z\\\"></path><path d=\\\"M5.5,16L5.5,16C6.33,16,7,15.33,7,14.5v-5C7,8.67,6.33,8,5.5,8h0C4.67,8,4,8.67,4,9.5v5C4,15.33,4.67,16,5.5,16z\\\"></path><path d=\\\"M10,16L10,16c0.83,0,1.5-0.67,1.5-1.5v-9C11.5,4.67,10.83,4,10,4h0C9.17,4,8.5,4.67,8.5,5.5v9C8.5,15.33,9.17,16,10,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"vertical_align_bottom\": {\n    \"name\": \"vertical_align_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.79 13H13V4c0-.55-.45-1-1-1s-1 .45-1 1v9H9.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85zM4 20c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off\": {\n    \"name\": \"money_off\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 6.9c1.42 0 2.13.54 2.39 1.4.13.43.56.7 1.01.7h.06c.7 0 1.22-.71.97-1.36-.44-1.15-1.41-2.08-2.93-2.45V4.5c0-.83-.67-1.5-1.5-1.5S11 3.67 11 4.5v.66c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM4.77 4.62c-.39.39-.39 1.02 0 1.41L7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67H8.6c-.72 0-1.24.74-.95 1.39.59 1.33 1.89 2.12 3.36 2.44v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c.96-.18 1.83-.55 2.46-1.12l1.51 1.51c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.18 4.62c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"format_shapes\": {\n    \"name\": \"format_shapes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 6V2c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v1H7V2c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h1v10H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1h10v1c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-1V7h1c.55 0 1-.45 1-1zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-1c0-.55-.45-1-1-1H5V7h1c.55 0 1-.45 1-1V5h10v1c0 .55.45 1 1 1h1v10h-1c-.55 0-1 .45-1 1v1zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-6.06 2.65c-.15-.39-.53-.65-.95-.65-.42 0-.8.26-.94.65l-2.77 7.33c-.19.49.17 1.02.7 1.02.32 0 .6-.2.71-.5l.55-1.5h3.49l.56 1.51c.11.29.39.49.71.49h.01c.53 0 .89-.53.71-1.02l-2.78-7.33zm-2.25 5.09L12 8.91l1.3 3.83h-2.61z\\\"></path>\"\n      }\n    }\n  },\n  \"rectangle\": {\n    \"name\": \"rectangle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,16h-13C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h13C17.33,4,18,4.67,18,5.5v9C18,15.33,17.33,16,16.5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_style\": {\n    \"name\": \"border_style\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 5v15c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm16 4h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"score\": {\n    \"name\": \"score\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2.75c0-.41.34-.75.75-.75s.75.34.75.75V8l1.79-2.69c.13-.19.35-.31.59-.31.56 0 .9.63.59 1.1L15.2 8l1.27 1.9c.31.47-.02 1.1-.59 1.1-.24 0-.46-.12-.59-.31L13.5 8v2.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5zm-5 2.5c0-.55.45-1 1-1h1.5V6.5H7.75c-.41 0-.75-.34-.75-.75S7.34 5 7.75 5H10c.55 0 1 .45 1 1v1.75c0 .55-.45 1-1 1H8.5v.75h1.75c.41 0 .75.34.75.75s-.34.75-.75.75H8c-.55 0-1-.45-1-1V8.25zm11.74 5.01l-5.03 5.03c-.39.39-1.02.39-1.41 0L9 15l-2.49 2.49c-.56.56-1.51.16-1.51-.62 0-.23.09-.46.26-.62l3.03-3.03c.39-.39 1.02-.39 1.41 0L13 16.5l4.49-4.49c.56-.56 1.51-.16 1.51.62 0 .24-.09.46-.26.63z\\\"></path>\"\n      }\n    }\n  },\n  \"polyline\": {\n    \"name\": \"polyline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.04,6.85L7.3,10H4.5C3.67,10,3,10.67,3,11.5v3C3,15.33,3.67,16,4.5,16h3c0.14,0,0.27-0.02,0.39-0.05L15,19.5v1 c0,0.83,0.67,1.5,1.5,1.5h3c0.83,0,1.5-0.67,1.5-1.5v-3c0-0.83-0.67-1.5-1.5-1.5h-3c-0.75,0-1.37,0.55-1.48,1.27L9,14.26V11.5 c0-0.12-0.01-0.24-0.04-0.36L11.7,8h2.8C15.33,8,16,7.33,16,6.5v-3C16,2.67,15.33,2,14.5,2h-3C10.67,2,10,2.67,10,3.5v3 C10,6.62,10.01,6.74,10.04,6.85z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.5,3v2.5c0,0.08,0.01,0.15,0.02,0.22L6.16,8.5H4c-0.55,0-1,0.45-1,1V12c0,0.55,0.45,1,1,1h2.5c0.03,0,0.06,0,0.09,0 l5.91,3.2V17c0,0.55,0.45,1,1,1H16c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-2.5c-0.55,0-1,0.44-1,0.99l-5-2.71V9.5 c0-0.08-0.01-0.16-0.03-0.23L9.83,6.5H12c0.55,0,1-0.45,1-1V3c0-0.55-0.45-1-1-1H9.5C8.95,2,8.5,2.45,8.5,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"space_bar\": {\n    \"name\": \"space_bar\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 10v3H6v-3c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"functions\": {\n    \"name\": \"functions\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 4H7.56C6.7 4 6 4.7 6 5.56c0 .28.12.55.32.74L12.5 12l-6.18 5.7c-.2.19-.32.46-.32.74C6 19.3 6.7 20 7.56 20h8.94c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H11l3.59-3.59c.78-.78.78-2.05 0-2.83L11 7h5.5c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4z\\\"></path>\"\n      }\n    }\n  },\n  \"format_italic\": {\n    \"name\": \"format_italic\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 5.5c0 .83.67 1.5 1.5 1.5h.71l-3.42 8H7.5c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.71l3.42-8h1.29c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4h-5c-.83 0-1.5.67-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_left\": {\n    \"name\": \"format_align_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 15H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-8H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM4 13h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0 8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"line_axis\": {\n    \"name\": \"line_axis\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.34,6.77L21.34,6.77c-0.4-0.4-1.07-0.39-1.45,0.04l-3.33,3.74l-5.65-5.24C10.12,4.58,8.9,4.6,8.14,5.36L2.7,10.81 c-0.39,0.39-0.39,1.02,0,1.41l0.09,0.09c0.39,0.39,1.02,0.39,1.41,0l5.44-5.45l5.59,5.19l-1.73,1.95l-2.58-2.58 c-0.78-0.78-2.05-0.78-2.83,0L2.7,16.8c-0.39,0.39-0.39,1.02,0,1.41L2.8,18.3c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3l2.5,2.5 c0.81,0.81,2.14,0.77,2.91-0.09l1.78-2.01l3.19,2.96c0.39,0.36,1,0.35,1.38-0.03l0.01-0.01c0.4-0.4,0.39-1.05-0.03-1.43l-3.22-2.99 l3.35-3.77C21.73,7.74,21.71,7.14,21.34,6.77z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.68,10.61l2.82-3.17c0.28-0.31,0.25-0.78-0.06-1.06l0,0c-0.31-0.28-0.78-0.25-1.06,0.06l-2.76,3.11L9.06,5.05 C8.47,4.47,7.53,4.47,6.95,5.06L2.53,9.48c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0L8,6.12l4.62,4.56 l-1.35,1.52L9.06,9.99c-0.59-0.59-1.54-0.59-2.12,0l-4.41,4.42c-0.29,0.29-0.29,0.77,0,1.06l0,0c0.29,0.29,0.77,0.29,1.06,0 L8,11.05l2.21,2.21c0.61,0.61,1.61,0.58,2.18-0.06l1.3-1.46l2.78,2.75c0.29,0.29,0.77,0.29,1.06,0l0,0c0.29-0.29,0.29-0.77,0-1.06 L14.68,10.61z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vertical_distribute\": {\n    \"name\": \"vertical_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,3L22,3c0,0.55-0.45,1-1,1H3C2.45,4,2,3.55,2,3v0c0-0.55,0.45-1,1-1h18C21.55,2,22,2.45,22,3z M7,12L7,12 c0,0.83,0.67,1.5,1.5,1.5h7c0.83,0,1.5-0.67,1.5-1.5v0c0-0.83-0.67-1.5-1.5-1.5h-7C7.67,10.5,7,11.17,7,12z M2,21L2,21 c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H3C2.45,20,2,20.45,2,21z\\\"></path>\"\n      }\n    }\n  },\n  \"border_all\": {\n    \"name\": \"border_all\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm8 14H6c-.55 0-1-.45-1-1v-5h5c.55 0 1 .45 1 1v5zm-1-8H5V6c0-.55.45-1 1-1h5v5c0 .55-.45 1-1 1zm8 8h-5v-5c0-.55.45-1 1-1h5v5c0 .55-.45 1-1 1zm1-8h-5c-.55 0-1-.45-1-1V5h5c.55 0 1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"multiline_chart\": {\n    \"name\": \"multiline_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.36 6.28l-.06-.06c-.39-.39-1.03-.37-1.39.04l-2.18 2.45C15.68 6.4 12.83 5 9.61 5c-2.5 0-4.83.87-6.75 2.3-.47.35-.52 1.04-.11 1.45l.06.06c.33.33.86.39 1.23.11C5.63 7.72 7.54 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-3.29-3.29c-.39-.39-1.02-.39-1.41 0l-6.12 6.13c-.37.37-.37.98 0 1.35l.15.15c.37.37.98.37 1.35 0l5.32-5.33 3.25 3.25c.41.41 1.07.39 1.45-.04l3.35-3.76c.62 1.12 1.08 2.39 1.32 3.73.08.47.47.82.95.82h.09c.6 0 1.05-.55.94-1.14-.32-1.85-.98-3.54-1.89-5L21.4 7.6c.34-.38.32-.96-.04-1.32z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_distribute\": {\n    \"name\": \"horizontal_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,22L3,22c-0.55,0-1-0.45-1-1V3c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v18C4,21.55,3.55,22,3,22z M21,2L21,2 c-0.55,0-1,0.45-1,1v18c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V3C22,2.45,21.55,2,21,2z M12,7L12,7c-0.83,0-1.5,0.67-1.5,1.5v7 c0,0.83,0.67,1.5,1.5,1.5h0c0.83,0,1.5-0.67,1.5-1.5v-7C13.5,7.67,12.83,7,12,7z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_note\": {\n    \"name\": \"edit_note\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,11c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1s0.45-1,1-1h9C13.55,10,14,10.45,14,11z M3,7c0,0.55,0.45,1,1,1h9 c0.55,0,1-0.45,1-1s-0.45-1-1-1H4C3.45,6,3,6.45,3,7z M10,15c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1s0.45,1,1,1h5 C9.55,16,10,15.55,10,15z M18.01,12.87l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71c0.39,0.39,0.39,1.02,0,1.41l-0.71,0.71 L18.01,12.87z M17.3,13.58l-5.16,5.16C12.05,18.83,12,18.95,12,19.09v1.41c0,0.28,0.22,0.5,0.5,0.5h1.41c0.13,0,0.26-0.05,0.35-0.15 l5.16-5.16L17.3,13.58z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,5.75c0,0.41-0.34,0.75-0.75,0.75h-7.5C3.34,6.5,3,6.16,3,5.75C3,5.34,3.34,5,3.75,5h7.5C11.66,5,12,5.34,12,5.75z M9,12 c0,0.41-0.34,0.75-0.75,0.75h-4.5C3.34,12.75,3,12.41,3,12c0-0.41,0.34-0.75,0.75-0.75h4.5C8.66,11.25,9,11.59,9,12z M12,8.87 c0,0.41-0.34,0.75-0.75,0.75h-7.5C3.34,9.62,3,9.28,3,8.87c0-0.41,0.34-0.75,0.75-0.75h7.5C11.66,8.12,12,8.46,12,8.87z M16.78,11.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L16.78,11.99z M16.19,12.58 l-4.27,4.27C11.82,16.95,11.7,17,11.56,17H10.5c-0.28,0-0.5-0.22-0.5-0.5v-1.06c0-0.13,0.05-0.26,0.15-0.35l4.27-4.27L16.19,12.58z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_center\": {\n    \"name\": \"align_vertical_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,11h-4V7.5C17,6.67,16.33,6,15.5,6h0C14.67,6,14,6.67,14,7.5V11h-4V4.5C10,3.67,9.33,3,8.5,3h0C7.67,3,7,3.67,7,4.5V11 H2.84c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1H7v6.5C7,20.33,7.67,21,8.5,21h0c0.83,0,1.5-0.67,1.5-1.5V13h4v3.5 c0,0.83,0.67,1.5,1.5,1.5h0c0.83,0,1.5-0.67,1.5-1.5V13h4c0.55,0,1-0.45,1-1v0C22,11.45,21.55,11,21,11z\\\"></path>\"\n      }\n    }\n  },\n  \"highlight\": {\n    \"name\": \"highlight\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.29 14.29L9 17v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4l2.71-2.71c.19-.19.29-.44.29-.71V10c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3.59c0 .26.11.52.29.7zM12 2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1s-1-.45-1-1V3c0-.55.45-1 1-1zM4.21 5.17c.39-.39 1.02-.39 1.42 0l.71.71c.39.39.39 1.02 0 1.41-.39.39-1.02.39-1.41 0l-.72-.71c-.39-.39-.39-1.02 0-1.41zm13.46.71l.71-.71c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-.71.71c-.39.39-1.02.39-1.41 0-.39-.39-.39-1.02 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered\": {\n    \"name\": \"format_list_numbered\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 7h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm12 10H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H8c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM4.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5H4v.5H2.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-2-11H3v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2 5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96c-.08.09-.12.21-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H3.2l1.68-1.96c.08-.09.12-.21.12-.32v-.22c0-.28-.22-.5-.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"mode\": {\n    \"name\": \"mode\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z\\\"></path>\"\n      }\n    }\n  },\n  \"border_clear\": {\n    \"name\": \"border_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_horizontal_left\": {\n    \"name\": \"align_horizontal_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,22L3,22c-0.55,0-1-0.45-1-1V3c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v18C4,21.55,3.55,22,3,22z M20.5,7h-13 C6.67,7,6,7.67,6,8.5v0C6,9.33,6.67,10,7.5,10h13c0.83,0,1.5-0.67,1.5-1.5v0C22,7.67,21.33,7,20.5,7z M14.5,14h-7 C6.67,14,6,14.67,6,15.5v0C6,16.33,6.67,17,7.5,17h7c0.83,0,1.5-0.67,1.5-1.5v0C16,14.67,15.33,14,14.5,14z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_money\": {\n    \"name\": \"attach_money\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.42 0 2.13.54 2.39 1.4.12.4.45.7.87.7h.3c.66 0 1.13-.65.9-1.27-.42-1.18-1.4-2.16-2.96-2.54V4.5c0-.83-.67-1.5-1.5-1.5S10 3.67 10 4.5v.66c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67h-.28c-.67 0-1.14.68-.89 1.3.57 1.39 1.9 2.21 3.4 2.53v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z\\\"></path>\"\n      }\n    }\n  },\n  \"publish\": {\n    \"name\": \"publish\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1zm2.41 9H9v5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-5h1.59c.89 0 1.34-1.08.71-1.71L12.71 7.7c-.39-.39-1.02-.39-1.41 0l-4.59 4.59c-.63.63-.19 1.71.7 1.71z\\\"></path>\"\n      }\n    }\n  },\n  \"text_fields\": {\n    \"name\": \"text_fields\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 5.5C2.5 6.33 3.17 7 4 7h3.5v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7H14c.83 0 1.5-.67 1.5-1.5S14.83 4 14 4H4c-.83 0-1.5.67-1.5 1.5zM20 9h-6c-.83 0-1.5.67-1.5 1.5S13.17 12 14 12h1.5v5.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V12H20c.83 0 1.5-.67 1.5-1.5S20.83 9 20 9z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered_rtl\": {\n    \"name\": \"format_list_numbered_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 16h-2c-.28 0-.5.22-.5.5s.22.5.5.5H20v.5h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h.5v.5h-1.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5v-3c0-.28-.22-.5-.5-.5zm-2-11h.5v2.5c0 .28.22.5.5.5s.5-.22.5-.5v-3c0-.28-.22-.5-.5-.5h-1c-.28 0-.5.22-.5.5s.22.5.5.5zm2.5 5.72v-.22c0-.28-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5h1.3l-1.68 1.96c-.08.09-.12.21-.12.32v.22c0 .28.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.3l1.68-1.96c.08-.09.12-.21.12-.32zM15 5H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 12H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"post_add\": {\n    \"name\": \"post_add\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M18,12c-0.55,0-1,0.45-1,1v5.22c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1V8c0-0.55,0.45-1,1-1h5c0.55,0,1-0.45,1-1 c0-0.55-0.45-1-1-1H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-6C19,12.45,18.55,12,18,12z\\\"></path><path d=\\\"M21.02,5H19V2.98C19,2.44,18.56,2,18.02,2h-0.03C17.44,2,17,2.44,17,2.98V5h-2.01C14.45,5,14.01,5.44,14,5.98 c0,0.01,0,0.02,0,0.03C14,6.56,14.44,7,14.99,7H17v2.01c0,0.54,0.44,0.99,0.99,0.98c0.01,0,0.02,0,0.03,0 c0.54,0,0.98-0.44,0.98-0.98V7h2.02C21.56,7,22,6.56,22,6.02V5.98C22,5.44,21.56,5,21.02,5z\\\"></path><path d=\\\"M14,9H8c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1C15,9.45,14.55,9,14,9z\\\"></path><path d=\\\"M14,12H8c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1C15,12.45,14.55,12,14,12z\\\"></path><path d=\\\"M14,15H8c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1C15,15.45,14.55,15,14,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M7,8.5C7,8.78,7.22,9,7.5,9h4C11.78,9,12,8.78,12,8.5C12,8.22,11.78,8,11.5,8h-4C7.22,8,7,8.22,7,8.5z\\\"></path><path d=\\\"M11.5,10h-4C7.22,10,7,10.22,7,10.5C7,10.78,7.22,11,7.5,11h4c0.28,0,0.5-0.22,0.5-0.5C12,10.22,11.78,10,11.5,10z\\\"></path><path d=\\\"M11.5,12h-4C7.22,12,7,12.22,7,12.5C7,12.78,7.22,13,7.5,13h4c0.28,0,0.5-0.22,0.5-0.5C12,12.22,11.78,12,11.5,12z\\\"></path><path d=\\\"M16.5,5H15V3.5C15,3.22,14.78,3,14.5,3S14,3.22,14,3.5V5h-1.5C12.22,5,12,5.22,12,5.5C12,5.78,12.22,6,12.5,6H14v1.5 C14,7.78,14.22,8,14.5,8S15,7.78,15,7.5V6h1.5C16.78,6,17,5.78,17,5.5C17,5.22,16.78,5,16.5,5z\\\"></path><path d=\\\"M14.5,9C14.22,9,14,9.22,14,9.5v5c0,0.28-0.22,0.5-0.5,0.5h-8C5.22,15,5,14.78,5,14.5v-8C5,6.22,5.22,6,5.5,6h5 C10.78,6,11,5.78,11,5.5C11,5.22,10.78,5,10.5,5H5C4.45,5,4,5.45,4,6V15c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V9.5 C15,9.22,14.78,9,14.5,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"align_horizontal_center\": {\n    \"name\": \"align_horizontal_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2L12,2c0.55,0,1,0.45,1,1v4l6.5,0C20.33,7,21,7.67,21,8.5v0c0,0.83-0.67,1.5-1.5,1.5H13v4h3.5c0.83,0,1.5,0.67,1.5,1.5 v0c0,0.83-0.67,1.5-1.5,1.5H13v4c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1v-4H7.5C6.67,17,6,16.33,6,15.5v0C6,14.67,6.67,14,7.5,14 H11v-4H4.5C3.67,10,3,9.33,3,8.5v0C3,7.67,3.67,7,4.5,7H11l0-4C11,2.45,11.45,2,12,2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_bulleted\": {\n    \"name\": \"format_list_bulleted\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM8 19h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0-6h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM7 6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"hexagon\": {\n    \"name\": \"hexagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.05,3H7.95C7.24,3,6.58,3.38,6.22,4l-4.04,7c-0.36,0.62-0.36,1.38,0,2l4.04,7c0.36,0.62,1.02,1,1.73,1h8.09 c0.71,0,1.37-0.38,1.73-1l4.04-7c0.36-0.62,0.36-1.38,0-2l-4.04-7C17.42,3.38,16.76,3,16.05,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.57,3.76l-3.14,5.5c-0.26,0.46-0.26,1.03,0,1.49l3.14,5.5C5.84,16.71,6.33,17,6.87,17h6.26c0.54,0,1.04-0.29,1.3-0.76 l3.14-5.5c0.26-0.46,0.26-1.03,0-1.49l-3.14-5.5C14.16,3.29,13.67,3,13.13,3H6.87C6.33,3,5.84,3.29,5.57,3.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"superscript\": {\n    \"name\": \"superscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10.51,12.73L7.3,7.72C6.82,6.97,7.35,6,8.23,6h0c0.39,0,0.74,0.2,0.95,0.53l2.76,4.46h0.12l2.74-4.45 C15,6.2,15.36,6,15.75,6h0c0.88,0,1.42,0.98,0.94,1.72l-3.23,5l3.55,5.55C17.5,19.02,16.96,20,16.08,20h0 c-0.38,0-0.74-0.2-0.95-0.52l-3.07-4.89h-0.12l-3.07,4.89C8.66,19.8,8.31,20,7.92,20h0c-0.88,0-1.42-0.97-0.94-1.72L10.51,12.73z M23,8.5L23,8.5C23,8.22,22.78,8,22.5,8c0,0,0,0,0,0H20V7h2c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h-2.5C19.22,4,19,4.22,19,4.5v0 C19,4.78,19.22,5,19.5,5H22v1h-2c-0.55,0-1,0.45-1,1v1c0,0.55,0.45,1,1,1h2.5C22.78,9,23,8.78,23,8.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.71,15.2c0,0.44-0.36,0.8-0.8,0.8c-0.29,0-0.54-0.15-0.68-0.38c0,0,0,0,0,0l-2.19-3.49H9.96l-2.2,3.5c0,0,0,0,0,0 C7.62,15.85,7.37,16,7.09,16c-0.44,0-0.8-0.36-0.8-0.8c0-0.16,0.05-0.31,0.13-0.43l0-0.01l2.52-3.96L6.63,7.2 C6.55,7.08,6.51,6.94,6.51,6.8c0-0.44,0.36-0.8,0.8-0.8c0.28,0,0.53,0.15,0.67,0.37c0,0,0,0,0,0l1.98,3.19h0.08L12,6.38 c0,0,0,0,0,0C12.14,6.15,12.4,6,12.68,6c0.44,0,0.8,0.36,0.8,0.8c0,0.16-0.05,0.3-0.12,0.43c0,0,0,0,0,0l-2.31,3.58l2.54,3.97 C13.67,14.9,13.71,15.05,13.71,15.2z M18,7.5C18,7.22,17.78,7,17.5,7H16V6h1c0.55,0,1-0.45,1-1V4c0-0.55-0.45-1-1-1h-1.5 C15.22,3,15,3.22,15,3.5v0C15,3.78,15.22,4,15.5,4H17v1l-1,0c-0.55,0-1,0.45-1,1v1c0,0.55,0.45,1,1,1h1.5C17.78,8,18,7.78,18,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bubble_chart\": {\n    \"name\": \"bubble_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7.2\\\" cy=\\\"14.4\\\" r=\\\"3.2\\\"></circle><circle cx=\\\"14.8\\\" cy=\\\"18\\\" r=\\\"2\\\"></circle><circle cx=\\\"15.2\\\" cy=\\\"8.8\\\" r=\\\"4.8\\\"></circle>\"\n      }\n    }\n  },\n  \"border_right\": {\n    \"name\": \"border_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-9v16c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zm-4 17h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_emoticon\": {\n    \"name\": \"insert_emoticon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M8.5,8C9.33,8,10,8.67,10,9.5 S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M16.75,14.75C15.8,16.39,14.03,17.5,12,17.5s-3.8-1.11-4.75-2.75 C7.06,14.42,7.31,14,7.69,14h8.62C16.7,14,16.94,14.42,16.75,14.75z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8 S17,8.67,17,9.5S16.33,11,15.5,11z\\\"></path>\"\n      }\n    }\n  },\n  \"move_down\": {\n    \"name\": \"move_down\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.01,10.72c-0.14,2.57,1.66,4.73,4.07,5.18l-0.79-0.79c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0 l2.59,2.59c0.39,0.39,0.39,1.02,0,1.41L7.71,20.3c-0.39,0.39-1.02,0.39-1.41,0h0c-0.39-0.39-0.39-1.02,0-1.41l0.88-0.88l0-0.06 c-3.64-0.43-6.43-3.65-6.15-7.47C1.29,6.78,4.55,4,8.26,4L10,4c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1L8.22,6 C5.52,6,3.15,8.04,3.01,10.72z\\\"></path><path d=\\\"M15,11h5c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v3C13,10.1,13.9,11,15,11z M20,9h-5V6h5V9z\\\"></path><path d=\\\"M20,20h-5c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2v3C22,19.1,21.1,20,20,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,15v-3c0-0.55,0.45-1,1-1h5c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-5C11.45,16,11,15.55,11,15z\\\"></path><path d=\\\"M11,5v3c0,0.55,0.45,1,1,1h5c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h-5C11.45,4,11,4.45,11,5z M12.5,5.5h4v2h-4V5.5z\\\"></path><path d=\\\"M6.1,11.41L6.1,11.41c0.29-0.29,0.77-0.29,1.06,0l1.99,1.99c0.2,0.2,0.2,0.51,0,0.71l-2,2c-0.29,0.29-0.77,0.29-1.06,0h0 c-0.29-0.29-0.29-0.77,0-1.06l0.53-0.53V14.5l-0.14,0c-2.74,0-5.19-2-5.45-4.73C0.73,6.63,3.18,4,6.25,4h2.5 C9.16,4,9.5,4.34,9.5,4.75v0c0,0.41-0.34,0.75-0.75,0.75l-2.29,0c-2.03,0-3.85,1.52-3.96,3.55C2.39,11.21,4.11,13,6.25,13h0.37 v-0.01L6.1,12.47C5.81,12.17,5.81,11.7,6.1,11.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_increase\": {\n    \"name\": \"text_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.61,19L2.61,19c0.48,0,0.91-0.3,1.06-0.75l1.01-2.83h5.65l0.99,2.82C11.48,18.7,11.91,19,12.39,19 c0.79,0,1.33-0.79,1.05-1.52L9.19,6.17C8.93,5.47,8.25,5,7.5,5S6.07,5.47,5.81,6.17L1.56,17.48C1.28,18.21,1.83,19,2.61,19z M7.44,7.6h0.12l2.03,5.79H5.41L7.44,7.6z M15,12c0-0.55,0.45-1,1-1h2V9c0-0.55,0.45-1,1-1s1,0.45,1,1v2h2c0.55,0,1,0.45,1,1 s-0.45,1-1,1h-2v2c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-2C15.45,13,15,12.55,15,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,10c0-0.41,0.34-0.75,0.75-0.75h1.5v-1.5C14.25,7.34,14.59,7,15,7s0.75,0.34,0.75,0.75v1.5h1.5C17.66,9.25,18,9.59,18,10 s-0.34,0.75-0.75,0.75h-1.5v1.5c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75v-1.5h-1.5C12.34,10.75,12,10.41,12,10z M3,15 c0.34,0,0.65-0.21,0.76-0.53l0.72-2.02h4.04l0.71,2.02C9.35,14.79,9.66,15,10,15c0.56,0,0.95-0.55,0.75-1.08L7.72,5.84 C7.51,5.33,7.03,5,6.49,5S5.47,5.33,5.28,5.84l-3.03,8.08C2.05,14.44,2.44,15,3,15z M6.06,8.02l0.39-1.16h0.08l0.39,1.16L7.98,11H5 L6.06,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"merge_type\": {\n    \"name\": \"merge_type\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.7 19.7c.39-.39.39-1.02 0-1.41l-2.7-2.7L13.59 17l2.7 2.7c.39.39 1.03.39 1.41 0zM8.71 8H11v5.59l-4.71 4.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.71-4.7c.38-.38.59-.88.59-1.41V8h2.29c.45 0 .67-.54.35-.85l-3.29-3.29c-.2-.2-.51-.2-.71 0L8.35 7.15c-.31.31-.09.85.36.85z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_right\": {\n    \"name\": \"format_align_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zm-6-4h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm6-4h10c.55 0 1-.45 1-1s-.45-1-1-1H10c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_page_break\": {\n    \"name\": \"insert_page_break\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2v-3H4L4,20z\\\"></path><path d=\\\"M19.41,7.41l-4.83-4.83C14.21,2.21,13.7,2,13.17,2H6C4.9,2,4.01,2.89,4.01,3.99l0,7.01H20V8.83 C20,8.3,19.79,7.79,19.41,7.41z M13,8V3.5L18.5,9H14C13.45,9,13,8.55,13,8z\\\"></path><path d=\\\"M15,14L15,14c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h4C14.55,15,15,14.55,15,14z\\\"></path><path d=\\\"M17,14L17,14c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-4C17.45,13,17,13.45,17,14z\\\"></path><path d=\\\"M6,13H2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v0C7,13.45,6.55,13,6,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,16.5C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-3H4V16.5z\\\"></path><path d=\\\"M15.56,5.56l-3.12-3.12C12.16,2.16,11.78,2,11.38,2H5.5C4.67,2,4,2.67,4,3.5V10h12V6.62C16,6.22,15.84,5.84,15.56,5.56z M11,6V3l4,4h-3C11.45,7,11,6.55,11,6z\\\"></path><path d=\\\"M12,11.75L12,11.75c0-0.41-0.34-0.75-0.75-0.75h-2.5C8.34,11,8,11.34,8,11.75v0c0,0.41,0.34,0.75,0.75,0.75h2.5 C11.66,12.5,12,12.16,12,11.75z\\\"></path><path d=\\\"M5.25,11h-2.5C2.34,11,2,11.34,2,11.75v0c0,0.41,0.34,0.75,0.75,0.75h2.5C5.66,12.5,6,12.16,6,11.75v0 C6,11.34,5.66,11,5.25,11z\\\"></path><path d=\\\"M14,11.75L14,11.75c0,0.41,0.34,0.75,0.75,0.75h2.5c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75h-2.5 C14.34,11,14,11.34,14,11.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mode_comment\": {\n    \"name\": \"mode_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_photo\": {\n    \"name\": \"insert_photo\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_comment\": {\n    \"name\": \"insert_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-3 12H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart_outlined\": {\n    \"name\": \"insert_chart_outlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 17c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v5c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm2 2H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_invitation\": {\n    \"name\": \"insert_invitation\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 12h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-10v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm2 17H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_reset\": {\n    \"name\": \"format_color_reset\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 14c0-3.09-3.6-7.88-5.23-9.87-.4-.49-1.15-.49-1.55 0-.46.57-1.08 1.36-1.73 2.27l8.44 8.44c.04-.28.07-.56.07-.84zm1.29 5.01L6.12 5.84c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l2.61 2.61C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l1.92 1.92c.39.39 1.02.39 1.41 0 .4-.38.4-1.02.01-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"format_clear\": {\n    \"name\": \"format_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 8c.83 0 1.5-.67 1.5-1.5S19.33 5 18.5 5H6.39l3 3h1.83l-.55 1.28 2.09 2.09L14.21 8h4.29zm-1.06 10.88L4.12 5.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l6.26 6.26-1.65 3.84c-.39.92.28 1.93 1.27 1.93.55 0 1.05-.33 1.27-.84l1.21-2.83 4.95 4.95c.39.39 1.02.39 1.41 0 .4-.38.4-1.01.01-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_left\": {\n    \"name\": \"border_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-3 8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"title\": {\n    \"name\": \"title\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5.5C5 6.33 5.67 7 6.5 7h4v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h4c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_handle\": {\n    \"name\": \"drag_handle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 15h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"border_vertical\": {\n    \"name\": \"border_vertical\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-7 4c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1zm7 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_top\": {\n    \"name\": \"vertical_align_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.21 11H11v9c0 .55.45 1 1 1s1-.45 1-1v-9h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.2-.2-.51-.2-.71 0l-2.79 2.79c-.31.31-.09.85.36.85zM4 4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"border_outer\": {\n    \"name\": \"border_outer\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm15 14H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-5-4h-2v2h2v-2zm-4-4H7v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"linear_scale\": {\n    \"name\": \"linear_scale\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,7c-2.41,0-4.43,1.72-4.9,4H6.79C6.4,10.12,5.52,9.5,4.5,9.5C3.12,9.5,2,10.62,2,12s1.12,2.5,2.5,2.5 c1.02,0,1.9-0.62,2.29-1.5h5.31c0.46,2.28,2.48,4,4.9,4c2.76,0,5-2.24,5-5S19.76,7,17,7z M17,15c-1.65,0-3-1.35-3-3s1.35-3,3-3 s3,1.35,3,3S18.65,15,17,15z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_file\": {\n    \"name\": \"attach_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 6.75v10.58c0 2.09-1.53 3.95-3.61 4.15-2.39.23-4.39-1.64-4.39-3.98V5.14c0-1.31.94-2.5 2.24-2.63 1.5-.15 2.76 1.02 2.76 2.49v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75v8.61c0 1.31.94 2.5 2.24 2.63 1.5.15 2.76-1.02 2.76-2.49V5.17c0-2.09-1.53-3.95-3.61-4.15C9.01.79 7 2.66 7 5v12.27c0 2.87 2.1 5.44 4.96 5.71 3.29.3 6.04-2.26 6.04-5.48V6.75c0-.41-.34-.75-.75-.75s-.75.34-.75.75z\\\"></path>\"\n      }\n    }\n  },\n  \"table_rows\": {\n    \"name\": \"table_rows\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,8H5C3.9,8,3,7.1,3,6v0c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v0C21,7.1,20.1,8,19,8z M19,10H5c-1.1,0-2,0.9-2,2v0 c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v0C21,10.9,20.1,10,19,10z M19,16H5c-1.1,0-2,0.9-2,2v0c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v0 C21,16.9,20.1,16,19,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M15.5,7h-11C3.67,7,3,6.33,3,5.5v0C3,4.67,3.67,4,4.5,4h11C16.33,4,17,4.67,17,5.5v0C17,6.33,16.33,7,15.5,7z M15.5,8.5h-11 C3.67,8.5,3,9.17,3,10v0c0,0.83,0.67,1.5,1.5,1.5h11c0.83,0,1.5-0.67,1.5-1.5v0C17,9.17,16.33,8.5,15.5,8.5z M15.5,13h-11 C3.67,13,3,13.67,3,14.5v0C3,15.33,3.67,16,4.5,16h11c0.83,0,1.5-0.67,1.5-1.5v0C17,13.67,16.33,13,15.5,13z\\\"></path>\"\n      }\n    }\n  },\n  \"format_paint\": {\n    \"name\": \"format_paint\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4h-9c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h7c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_rule\": {\n    \"name\": \"horizontal_rule\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,13H5c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h14c0.55,0,1,0.45,1,1v0 C20,12.55,19.55,13,19,13z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,11H4c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h12c0.55,0,1,0.45,1,1v0C17,10.55,16.55,11,16,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"subscript\": {\n    \"name\": \"subscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.52,10.73L7.3,5.72C6.82,4.97,7.35,4,8.23,4h0c0.39,0,0.74,0.2,0.95,0.53l2.76,4.46h0.12l2.74-4.45 C15.01,4.2,15.37,4,15.76,4h0c0.88,0,1.42,0.98,0.94,1.72l-3.23,5l3.55,5.55C17.5,17.02,16.96,18,16.08,18h0 c-0.38,0-0.74-0.2-0.95-0.52l-3.07-4.89h-0.12l-3.07,4.89C8.67,17.8,8.31,18,7.92,18h0c-0.88,0-1.42-0.97-0.94-1.72L10.52,10.73z M23,19.5L23,19.5c0-0.28-0.22-0.5-0.5-0.5c0,0,0,0,0,0H20v-1h2c0.55,0,1-0.45,1-1v-1c0-0.55-0.45-1-1-1h-2.5 c-0.28,0-0.5,0.22-0.5,0.5v0c0,0.28,0.22,0.5,0.5,0.5H22v1h-2c-0.55,0-1,0.45-1,1v1c0,0.55,0.45,1,1,1h2.5 C22.78,20,23,19.78,23,19.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.71,13.2c0,0.44-0.36,0.8-0.8,0.8c-0.29,0-0.54-0.15-0.68-0.38c0,0,0,0,0,0l-2.19-3.49H9.96l-2.2,3.5c0,0,0,0,0,0 C7.62,13.85,7.37,14,7.09,14c-0.44,0-0.8-0.36-0.8-0.8c0-0.16,0.05-0.31,0.13-0.43l0-0.01L8.94,8.8L6.63,5.2 C6.55,5.08,6.51,4.94,6.51,4.8c0-0.44,0.36-0.8,0.8-0.8c0.28,0,0.53,0.15,0.67,0.37c0,0,0,0,0,0l1.98,3.19h0.08L12,4.38 c0,0,0,0,0,0C12.14,4.15,12.4,4,12.68,4c0.44,0,0.8,0.36,0.8,0.8c0,0.16-0.05,0.3-0.12,0.43c0,0,0,0,0,0L11.05,8.8l2.54,3.97 C13.67,12.9,13.71,13.05,13.71,13.2z M18,16.5c0-0.28-0.22-0.5-0.5-0.5H16v-1h1c0.55,0,1-0.45,1-1v-1c0-0.55-0.45-1-1-1h-1.5 c-0.28,0-0.5,0.22-0.5,0.5v0c0,0.28,0.22,0.5,0.5,0.5H17v1l-1,0c-0.55,0-1,0.45-1,1v1c0,0.55,0.45,1,1,1h1.5 C17.78,17,18,16.78,18,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_inner\": {\n    \"name\": \"border_inner\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM12 3c-.55 0-1 .45-1 1v7H4c-.55 0-1 .45-1 1s.45 1 1 1h7v7c0 .55.45 1 1 1s1-.45 1-1v-7h7c.55 0 1-.45 1-1s-.45-1-1-1h-7V4c0-.55-.45-1-1-1zm7 18h2v-2h-2v2zm0-4h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"wrap_text\": {\n    \"name\": \"wrap_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 7h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zm11.83 4H5c-.55 0-1 .45-1 1s.45 1 1 1h12.13c1 0 1.93.67 2.09 1.66.21 1.25-.76 2.34-1.97 2.34H15v-.79c0-.45-.54-.67-.85-.35l-1.79 1.79c-.2.2-.2.51 0 .71l1.79 1.79c.32.32.85.09.85-.35V19h2c2.34 0 4.21-2.01 3.98-4.39-.2-2.08-2.06-3.61-4.15-3.61zM9 17H5c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"schema\": {\n    \"name\": \"schema\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,10.5V11h-3v-0.5C11,9.67,10.33,9,9.5,9h-1V7h1C10.33,7,11,6.33,11,5.5v-3C11,1.67,10.33,1,9.5,1h-4C4.67,1,4,1.67,4,2.5 v3C4,6.33,4.67,7,5.5,7h1v2h-1C4.67,9,4,9.67,4,10.5v3C4,14.33,4.67,15,5.5,15h1v2h-1C4.67,17,4,17.67,4,18.5v3 C4,22.33,4.67,23,5.5,23h4c0.83,0,1.5-0.67,1.5-1.5v-3c0-0.83-0.67-1.5-1.5-1.5h-1v-2h1c0.83,0,1.5-0.67,1.5-1.5V13h3v0.5 c0,0.83,0.67,1.5,1.5,1.5h4c0.83,0,1.5-0.67,1.5-1.5v-3C21,9.67,20.33,9,19.5,9h-4C14.67,9,14,9.67,14,10.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,8.75v0.5h-2v-0.5c0-0.55-0.45-1-1-1h-1V6.5h1c0.55,0,1-0.45,1-1V3c0-0.55-0.45-1-1-1H5C4.45,2,4,2.45,4,3v2.5 c0,0.55,0.45,1,1,1h1v1.25H5c-0.55,0-1,0.45-1,1v2.5c0,0.55,0.45,1,1,1h1V14H5c-0.55,0-1,0.45-1,1v2.5c0,0.55,0.45,1,1,1h3.5 c0.55,0,1-0.45,1-1V15c0-0.55-0.45-1-1-1h-1v-1.75h1c0.55,0,1-0.45,1-1v-0.5h2v0.5c0,0.55,0.45,1,1,1H16c0.55,0,1-0.45,1-1v-2.5 c0-0.55-0.45-1-1-1h-3.5C11.95,7.75,11.5,8.2,11.5,8.75z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_fill\": {\n    \"name\": \"format_color_fill\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.94,16.56C9.23,16.85,9.62,17,10,17s0.77-0.15,1.06-0.44l5.5-5.5 c0.59-0.58,0.59-1.53,0-2.12L8.32,0.7c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l1.68,1.68L3.44,8.94 c-0.59,0.59-0.59,1.54,0,2.12L8.94,16.56z M10,5.21L14.79,10H5.21L10,5.21z\\\" enable-background=\\\"new\\\"></path><path d=\\\"M19,17c1.1,0,2-0.9,2-2c0-1.33-2-3.5-2-3.5s-2,2.17-2,3.5C17,16.1,17.9,17,19,17z\\\" enable-background=\\\"new\\\"></path><path d=\\\"M20,20H4c-1.1,0-2,0.9-2,2s0.9,2,2,2h16c1.1,0,2-0.9,2-2S21.1,20,20,20z\\\" enable-background=\\\"new\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,12.25c0-1.16,1.75-3.06,1.75-3.06S17,11.09,17,12.25c0,0.96-0.79,1.75-1.75,1.75S13.5,13.21,13.5,12.25z M2,18L2,18 c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v0c0-1.1-0.9-2-2-2H4C2.9,16,2,16.9,2,18z M3.4,8.96c-0.53-0.53-0.53-1.4,0-1.93l3.54-3.54 l-1.9-1.9c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l6.5,6.5c0.53,0.53,0.53,1.4,0,1.93L8.97,12.6 C8.7,12.87,8.35,13,8,13s-0.7-0.13-0.97-0.4L3.4,8.96z M4.56,8h6.89L8,4.56L4.56,8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_textdirection_r_to_l\": {\n    \"name\": \"format_textdirection_r_to_l\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 10v4c0 .55.45 1 1 1s1-.45 1-1V4h2v10c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1h-6.83C8.08 2 6.22 3.53 6.02 5.61 5.79 7.99 7.66 10 10 10zm-2 7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1s-.45-1-1-1H8z\\\"></path>\"\n      }\n    }\n  },\n  \"pentagon\": {\n    \"name\": \"pentagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2.47,10.42l3.07,9.22C5.82,20.45,6.58,21,7.44,21h9.12c0.86,0,1.63-0.55,1.9-1.37l3.07-9.22 c0.28-0.84-0.03-1.76-0.75-2.27L13.15,2.8c-0.69-0.48-1.61-0.48-2.29,0L3.22,8.14C2.5,8.65,2.19,9.58,2.47,10.42z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2.94,6.85C2.39,7.23,2.15,7.94,2.38,8.58l2.57,7.41C5.16,16.6,5.73,17,6.37,17h7.27c0.64,0,1.21-0.4,1.42-1.01l2.57-7.41 c0.22-0.64-0.01-1.35-0.57-1.73l-6.21-4.27c-0.51-0.35-1.19-0.35-1.7,0L2.94,6.85z\\\"></path></g>\"\n      }\n    }\n  },\n  \"strikethrough_s\": {\n    \"name\": \"strikethrough_s\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.59 7.52c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01M20 10H4c-.55 0-1 .45-1 1s.45 1 1 1h8.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H20c.55 0 1-.45 1-1V11c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit_outline\": {\n    \"name\": \"mode_edit_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,17.46l0,3.04C3,20.78,3.22,21,3.5,21h3.04c0.13,0,0.26-0.05,0.35-0.15L17.81,9.94l-3.75-3.75L3.15,17.1 C3.05,17.2,3,17.32,3,17.46z\\\"></path></g><g><path d=\\\"M20.71,5.63l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83C21.1,6.65,21.1,6.02,20.71,5.63z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"11.62,5.38 3,14 3,17 6,17 14.62,8.38\\\"></polygon><path d=\\\"M16.71,4.88l-1.59-1.59c-0.39-0.39-1.02-0.39-1.41,0l-1.03,1.02l3,3l1.03-1.02C17.1,5.9,17.1,5.27,16.71,4.88z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stacked_line_chart\": {\n    \"name\": \"stacked_line_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.79,14.78L2.7,14.69c-0.39-0.39-0.39-1.02,0-1.41l6.09-6.1c0.39-0.39,1.02-0.39,1.41,0l3.29,3.29l6.39-7.18 c0.38-0.43,1.05-0.44,1.45-0.04l0,0c0.37,0.38,0.39,0.98,0.04,1.37l-7.17,8.07c-0.38,0.43-1.04,0.45-1.45,0.04L9.5,9.48l-5.3,5.3 C3.82,15.17,3.18,15.17,2.79,14.78z M4.2,20.78l5.3-5.3l3.25,3.25c0.41,0.41,1.07,0.39,1.45-0.04l7.17-8.07 c0.35-0.39,0.33-0.99-0.04-1.37l0,0c-0.4-0.4-1.07-0.39-1.45,0.04l-6.39,7.18l-3.29-3.29c-0.39-0.39-1.02-0.39-1.41,0l-6.09,6.1 c-0.39,0.39-0.39,1.02,0,1.41l0.09,0.09C3.18,21.17,3.82,21.17,4.2,20.78z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off_csred\": {\n    \"name\": \"money_off_csred\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 6.9c1.42 0 2.13.54 2.39 1.4.13.43.56.7 1.01.7h.06c.7 0 1.22-.71.97-1.36-.44-1.15-1.41-2.08-2.93-2.45V4.5c0-.83-.67-1.5-1.5-1.5S11 3.67 11 4.5v.66c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM4.77 4.62c-.39.39-.39 1.02 0 1.41L7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-1.65 0-2.5-.59-2.83-1.43-.15-.39-.49-.67-.9-.67H8.6c-.72 0-1.24.74-.95 1.39.59 1.33 1.89 2.12 3.36 2.44v.67c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-.65c.96-.18 1.83-.55 2.46-1.12l1.51 1.51c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L6.18 4.62c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart_outline\": {\n    \"name\": \"pie_chart_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H14c-.55 0-1-.45-1-1V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V14c0-.55.45-1 1-1h5.93c-.45 3.61-3.32 6.48-6.93 6.93z\\\"></path>\"\n      }\n    }\n  },\n  \"type_specimen\": {\n    \"name\": \"type_specimen\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6L3,6C2.45,6,2,6.45,2,7v13c0,1.1,0.9,2,2,2h13c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4V7C4,6.45,3.55,6,3,6z\\\"></path><path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M16.46,14.01l-0.63-1.82h-3.63 l-0.65,1.82c-0.1,0.29-0.38,0.48-0.68,0.48h0c-0.51,0-0.86-0.51-0.68-0.98l2.73-7.27C13.08,5.8,13.52,5.5,14,5.5h0 c0.48,0,0.92,0.3,1.09,0.75l2.73,7.27c0.18,0.47-0.17,0.98-0.68,0.98h0C16.83,14.5,16.56,14.31,16.46,14.01z\\\"></path><polygon points=\\\"13.96,7.17 12.65,10.89 15.34,10.89 14.04,7.17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,2h-10C5.67,2,5,2.67,5,3.5v10C5,14.33,5.67,15,6.5,15h10c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M13.41,11.62l-0.49-1.41h-2.83l-0.5,1.41C9.51,11.85,9.3,12,9.06,12h0c-0.39,0-0.67-0.39-0.53-0.76l2.12-5.65 C10.79,5.23,11.12,5,11.5,5h0c0.38,0,0.71,0.23,0.85,0.59l2.12,5.65c0.14,0.37-0.13,0.76-0.53,0.76h0 C13.7,12,13.49,11.85,13.41,11.62z\\\"></path><path d=\\\"M2.75,5L2.75,5C2.34,5,2,5.34,2,5.75V16.5C2,17.33,2.67,18,3.5,18h10.75c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H3.5V5.75C3.5,5.34,3.16,5,2.75,5z\\\"></path><polygon points=\\\"11.47,6.3 10.45,9.19 12.55,9.19 11.53,6.3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"margin\": {\n    \"name\": \"margin\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z M9,8c0,0.55-0.45,1-1,1S7,8.55,7,8 s0.45-1,1-1S9,7.45,9,8z M13,8c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S13,7.45,13,8z M17,8c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1s0.45-1,1-1C16.55,7,17,7.45,17,8z M17,12c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1s0.45-1,1-1 C16.55,11,17,11.45,17,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S13,11.45,13,12z M9,12c0,0.55-0.45,1-1,1s-1-0.45-1-1 s0.45-1,1-1S9,11.45,9,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_indent_decrease\": {\n    \"name\": \"format_indent_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm-8.65-4.65l2.79 2.79c.32.32.86.1.86-.35V9.21c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.19-.2.51-.01.7zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm9 5h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h8c.55 0 1-.45 1-1s-.45-1-1-1h-8c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_top\": {\n    \"name\": \"align_vertical_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,3L22,3c0,0.55-0.45,1-1,1H3C2.45,4,2,3.55,2,3v0c0-0.55,0.45-1,1-1h18C21.55,2,22,2.45,22,3z M8.5,22L8.5,22 c0.83,0,1.5-0.67,1.5-1.5v-13C10,6.67,9.33,6,8.5,6h0C7.67,6,7,6.67,7,7.5v13C7,21.33,7.67,22,8.5,22z M15.5,16L15.5,16 c0.83,0,1.5-0.67,1.5-1.5v-7C17,6.67,16.33,6,15.5,6h0C14.67,6,14,6.67,14,7.5v7C14,15.33,14.67,16,15.5,16z\\\"></path>\"\n      }\n    }\n  },\n  \"checklist\": {\n    \"name\": \"checklist\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M22,8c0-0.55-0.45-1-1-1h-7c-0.55,0-1,0.45-1,1s0.45,1,1,1h7C21.55,9,22,8.55,22,8z M13,16c0,0.55,0.45,1,1,1h7 c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-7C13.45,15,13,15.45,13,16z M10.47,4.63c0.39,0.39,0.39,1.02,0,1.41l-4.23,4.25 c-0.39,0.39-1.02,0.39-1.42,0L2.7,8.16c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0l1.42,1.42l3.54-3.54 C9.45,4.25,10.09,4.25,10.47,4.63z M10.48,12.64c0.39,0.39,0.39,1.02,0,1.41l-4.23,4.25c-0.39,0.39-1.02,0.39-1.42,0L2.7,16.16 c-0.39-0.39-0.39-1.02,0-1.41s1.02-0.39,1.41,0l1.42,1.42l3.54-3.54C9.45,12.25,10.09,12.25,10.48,12.64L10.48,12.64z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M11,6.75C11,6.34,11.34,6,11.75,6h5.5C17.66,6,18,6.34,18,6.75c0,0.41-0.34,0.75-0.75,0.75h-5.5C11.34,7.5,11,7.16,11,6.75 z M18,13.25c0-0.41-0.34-0.75-0.75-0.75h-5.5c-0.41,0-0.75,0.34-0.75,0.75S11.34,14,11.75,14h5.5C17.66,14,18,13.66,18,13.25z M8.89,3.87c-0.29-0.29-0.77-0.29-1.06,0L4.83,6.88L3.59,5.64c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l1.59,1.59 c0.39,0.39,1.02,0.39,1.41,0l3.36-3.36C9.19,4.64,9.19,4.17,8.89,3.87z M8.89,10.37c-0.29-0.29-0.77-0.29-1.06,0l-3.01,3.01 l-1.24-1.24c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06l1.59,1.59c0.39,0.39,1.02,0.39,1.41,0l3.36-3.36 C9.19,11.14,9.19,10.67,8.89,10.37z\\\"></path></g>\"\n      }\n    }\n  },\n  \"insert_drive_file\": {\n    \"name\": \"insert_drive_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6zm7 6V3.5L18.5 9H14c-.55 0-1-.45-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"data_object\": {\n    \"name\": \"data_object\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,7v2c0,0.55-0.45,1-1,1h0c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h0c0.55,0,1,0.45,1,1v2c0,1.66,1.34,3,3,3h2 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7c-0.55,0-1-0.45-1-1v-2c0-1.3-0.84-2.42-2-2.83v-0.34C5.16,11.42,6,10.3,6,9V7 c0-0.55,0.45-1,1-1h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H7C5.34,4,4,5.34,4,7z\\\"></path><path d=\\\"M21,10c-0.55,0-1-0.45-1-1V7c0-1.66-1.34-3-3-3h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2c0.55,0,1,0.45,1,1v2 c0,1.3,0.84,2.42,2,2.83v0.34c-1.16,0.41-2,1.52-2,2.83v2c0,0.55-0.45,1-1,1h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2 c1.66,0,3-1.34,3-3v-2c0-0.55,0.45-1,1-1h0c0.55,0,1-0.45,1-1v-2C22,10.45,21.55,10,21,10L21,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,6.25v1.5C4,8.16,3.66,8.5,3.25,8.5h0C2.56,8.5,2,9.06,2,9.75v0.5c0,0.69,0.56,1.25,1.25,1.25h0 C3.66,11.5,4,11.84,4,12.25v1.5C4,14.99,5.01,16,6.25,16h1C7.66,16,8,15.66,8,15.25v0c0-0.41-0.34-0.75-0.75-0.75h-1 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.16-0.88-2.11-2-2.24V9.99c1.12-0.12,2-1.08,2-2.24v-1.5c0-0.41,0.34-0.75,0.75-0.75h1 C7.66,5.5,8,5.16,8,4.75v0C8,4.34,7.66,4,7.25,4h-1C5.01,4,4,5.01,4,6.25z\\\"></path><path d=\\\"M16.75,8.5C16.34,8.5,16,8.16,16,7.75v-1.5C16,5.01,14.99,4,13.75,4h-1C12.34,4,12,4.34,12,4.75v0 c0,0.41,0.34,0.75,0.75,0.75h1c0.41,0,0.75,0.34,0.75,0.75v1.5c0,1.16,0.88,2.11,2,2.24v0.03c-1.12,0.12-2,1.08-2,2.24v1.5 c0,0.41-0.34,0.75-0.75,0.75h-1c-0.41,0-0.75,0.34-0.75,0.75v0c0,0.41,0.34,0.75,0.75,0.75h1c1.24,0,2.25-1.01,2.25-2.25v-1.5 c0-0.41,0.34-0.75,0.75-0.75h0c0.69,0,1.25-0.56,1.25-1.25v-0.5C18,9.06,17.44,8.5,16.75,8.5L16.75,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"height\": {\n    \"name\": \"height\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M13,6.99h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.78c-0.2-0.19-0.51-0.19-0.71,0L8.86,6.14C8.54,6.45,8.76,6.99,9.21,6.99 H11v10.02H9.21c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.78c0.2,0.19,0.51,0.19,0.71,0l2.79-2.78c0.32-0.31,0.09-0.85-0.35-0.85H13V6.99 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M11,7h1.79c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.78c-0.2-0.19-0.51-0.19-0.71,0L6.86,6.15C6.54,6.46,6.76,7,7.21,7H9v6H7.21 c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.78c0.2,0.19,0.51,0.19,0.71,0l2.79-2.78c0.32-0.31,0.09-0.85-0.35-0.85H11V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_size\": {\n    \"name\": \"format_size\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 5.5c0 .83.67 1.5 1.5 1.5H14v10.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7h3.5c.83 0 1.5-.67 1.5-1.5S21.33 4 20.5 4h-10C9.67 4 9 4.67 9 5.5zM4.5 12H6v5.5c0 .83.67 1.5 1.5 1.5S9 18.33 9 17.5V12h1.5c.83 0 1.5-.67 1.5-1.5S11.33 9 10.5 9h-6C3.67 9 3 9.67 3 10.5S3.67 12 4.5 12z\\\"></path>\"\n      }\n    }\n  },\n  \"border_color\": {\n    \"name\": \"border_color\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,24H4c-1.1,0-2-0.9-2-2v0c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v0C22,23.1,21.1,24,20,24z M13.06,5.19l3.75,3.75l-8.77,8.77C7.86,17.9,7.6,18,7.34,18H5c-0.55,0-1-0.45-1-1v-2.34c0-0.27,0.11-0.52,0.29-0.71L13.06,5.19z M17.88,7.87l-3.75-3.75l1.83-1.83c0.39-0.39,1.02-0.39,1.41,0l2.34,2.34c0.39,0.39,0.39,1.02,0,1.41L17.88,7.87z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"draw\": {\n    \"name\": \"draw\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.85,10.39l1.06-1.06c0.78-0.78,0.78-2.05,0-2.83L18.5,5.09c-0.78-0.78-2.05-0.78-2.83,0l-1.06,1.06L18.85,10.39z M13.19,7.56l-9.05,9.05C4.05,16.7,4,16.83,4,16.96v3.54C4,20.78,4.22,21,4.5,21h3.54c0.13,0,0.26-0.05,0.35-0.15l9.05-9.05 L13.19,7.56z M19,17.5c0,2.19-2.54,3.5-5,3.5c-0.55,0-1-0.45-1-1s0.45-1,1-1c1.54,0,3-0.73,3-1.5c0-0.47-0.48-0.87-1.23-1.2 l1.48-1.48C18.32,15.45,19,16.29,19,17.5z M4.58,13.35C3.61,12.79,3,12.06,3,11c0-1.8,1.89-2.63,3.56-3.36C7.59,7.18,9,6.56,9,6 c0-0.41-0.78-1-2-1C5.74,5,5.2,5.61,5.17,5.64C4.82,6.05,4.19,6.1,3.77,5.76C3.36,5.42,3.28,4.81,3.62,4.38C3.73,4.24,4.76,3,7,3 c2.24,0,4,1.32,4,3c0,1.87-1.93,2.72-3.64,3.47C6.42,9.88,5,10.5,5,11c0,0.31,0.43,0.6,1.07,0.86L4.58,13.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.35,8.83l0.71-0.71c0.59-0.59,0.59-1.54,0-2.12L15,4.94c-0.59-0.59-1.54-0.59-2.12,0l-0.71,0.71L15.35,8.83z M11.11,6.71 l-6.96,6.96C4.05,13.77,4,13.89,4,14.03v2.47C4,16.78,4.22,17,4.5,17h2.47c0.13,0,0.26-0.05,0.35-0.15l6.96-6.96L11.11,6.71z M4.51,11.18C3.59,10.76,3,10.16,3,9.25c0-1.31,1.39-1.99,2.61-2.59C6.45,6.24,7.5,5.73,7.5,5.25C7.5,4.91,6.83,4.5,6,4.5 c-0.94,0-1.36,0.46-1.38,0.48C4.35,5.29,3.88,5.33,3.57,5.07C3.26,4.81,3.21,4.35,3.46,4.03C3.55,3.93,4.34,3,6,3 c1.47,0,3,0.84,3,2.25C9,6.66,7.55,7.37,6.27,8C5.56,8.35,4.5,8.87,4.5,9.25c0,0.3,0.48,0.56,1.17,0.78L4.51,11.18z M14.14,12.16 c0.83,0.48,1.36,1.14,1.36,2.09c0,1.94-2.44,2.75-3.75,2.75C11.34,17,11,16.66,11,16.25s0.34-0.75,0.75-0.75 c0.77,0,2.25-0.49,2.25-1.25c0-0.39-0.38-0.71-0.97-0.97L14.14,12.16z\\\"></path>\"\n      }\n    }\n  },\n  \"border_horizontal\": {\n    \"name\": \"border_horizontal\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-7-8h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"short_text\": {\n    \"name\": \"short_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 9h14c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 4h8c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"add_chart\": {\n    \"name\": \"add_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,17c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1s-1,0.45-1,1v2C15,16.55,15.45,17,16,17z\\\"></path><path d=\\\"M20,10c-0.55,0-1,0.45-1,1v8H5V5h8c0.55,0,1-0.45,1-1s-0.45-1-1-1H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14 c1.1,0,2-0.9,2-2v-8C21,10.45,20.55,10,20,10z\\\"></path><path d=\\\"M7,11v5c0,0.55,0.45,1,1,1s1-0.45,1-1v-5c0-0.55-0.45-1-1-1S7,10.45,7,11z\\\"></path><path d=\\\"M11,8v8c0,0.55,0.45,1,1,1s1-0.45,1-1V8c0-0.55-0.45-1-1-1S11,7.45,11,8z\\\"></path><path d=\\\"M16,7h1v1c0,0.55,0.45,1,1,1s1-0.45,1-1V7h1c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1V4c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h-1 c-0.55,0-1,0.45-1,1S15.45,7,16,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_quote\": {\n    \"name\": \"format_quote\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.17 17c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94zm10 0c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94z\\\"></path>\"\n      }\n    }\n  },\n  \"move_up\": {\n    \"name\": \"move_up\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.01,13.28c-0.14-2.57,1.66-4.73,4.07-5.18L6.29,8.88c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0 l2.59-2.59c0.39-0.39,0.39-1.02,0-1.41L7.71,3.7c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l0.88,0.88l0,0.06 c-3.64,0.43-6.43,3.65-6.15,7.47C1.29,17.22,4.55,20,8.26,20H10c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H8.22 C5.52,18,3.15,15.96,3.01,13.28z\\\"></path><path d=\\\"M13,15v3c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-3c0-1.1-0.9-2-2-2h-5C13.9,13,13,13.9,13,15z M20,18h-5v-3h5V18z\\\"></path><path d=\\\"M20,4h-5c-1.1,0-2,0.9-2,2v3c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,5v3c0,0.55,0.45,1,1,1h5c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h-5C11.45,4,11,4.45,11,5z\\\"></path><path d=\\\"M12,16h5c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-5c-0.55,0-1,0.45-1,1v3C11,15.55,11.45,16,12,16z M12.5,12.5h4v2h-4 V12.5z\\\"></path><path d=\\\"M6.1,8.59L6.1,8.59c0.29,0.29,0.77,0.29,1.06,0l1.99-1.99c0.2-0.2,0.2-0.51,0-0.71l-2-2c-0.29-0.29-0.77-0.29-1.06,0l0,0 C5.8,4.2,5.8,4.67,6.09,4.96l0.53,0.53V5.5l-0.14,0c-2.74,0-5.19,2-5.45,4.73C0.73,13.37,3.18,16,6.25,16h2.5 c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75l-2.29,0c-2.03,0-3.85-1.52-3.96-3.55C2.39,8.79,4.11,7,6.25,7h0.37 v0.01L6.1,7.53C5.81,7.83,5.81,8.3,6.1,8.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_strikethrough\": {\n    \"name\": \"format_strikethrough\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 19c1.1 0 2-.9 2-2v-1h-4v1c0 1.1.9 2 2 2zM5 5.5C5 6.33 5.67 7 6.5 7H10v3h4V7h3.5c.83 0 1.5-.67 1.5-1.5S18.33 4 17.5 4h-11C5.67 4 5 4.67 5 5.5zM4 14h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"south_west\": {\n    \"name\": \"south_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,18L15,18c0-0.56-0.45-1-1-1H8.41L19.3,6.11c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L7,15.59V10 c0-0.55-0.45-1-1-1H6c-0.55,0-1,0.45-1,1V18c0,0.55,0.45,1,1,1H14C14.55,19,15,18.55,15,18z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel\": {\n    \"name\": \"cancel\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm4.3 14.3c-.39.39-1.02.39-1.41 0L12 13.41 9.11 16.3c-.39.39-1.02.39-1.41 0-.39-.39-.39-1.02 0-1.41L10.59 12 7.7 9.11c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L12 10.59l2.89-2.89c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"pivot_table_chart\": {\n    \"name\": \"pivot_table_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z\\\"></path><path d=\\\"M3,19c0,1.1,0.9,2,2,2h3V10H3V19z\\\"></path><path d=\\\"M3,5v3h5V3H5C3.9,3,3,3.9,3,5z\\\"></path><path d=\\\"M17.65,9.35l-2.79,2.79C14.54,12.46,14.76,13,15.21,13H17v2c0,1.1-0.9,2-2,2h-2v-1.79c0-0.45-0.54-0.67-0.85-0.35 l-2.79,2.79c-0.2,0.2-0.2,0.51,0,0.71l2.79,2.79c0.31,0.31,0.85,0.09,0.85-0.35V19h2c2.21,0,4-1.79,4-4v-2h1.79 c0.45,0,0.67-0.54,0.35-0.85l-2.79-2.79C18.16,9.16,17.84,9.16,17.65,9.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_drop_down_circle\": {\n    \"name\": \"arrow_drop_down_circle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-.35 12.65l-2.79-2.79c-.32-.32-.1-.86.35-.86h5.59c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.52.2-.71.01z\\\"></path>\"\n      }\n    }\n  },\n  \"north_east\": {\n    \"name\": \"north_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,6L9,6c0,0.56,0.45,1,1,1h5.59L4.7,17.89c-0.39,0.39-0.39,1.02,0,1.41h0c0.39,0.39,1.02,0.39,1.41,0L17,8.41V14 c0,0.55,0.45,1,1,1H18c0.55,0,1-0.45,1-1V6c0-0.55-0.45-1-1-1H10C9.45,5,9,5.45,9,6z\\\"></path>\"\n      }\n    }\n  },\n  \"check\": {\n    \"name\": \"check\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.17L5.53 12.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l4.18 4.18c.39.39 1.02.39 1.41 0L20.29 7.71c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L9 16.17z\\\"></path>\"\n      }\n    }\n  },\n  \"apps_outage\": {\n    \"name\": \"apps_outage\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,8c1.1,0,2-0.9,2-2S7.1,4,6,4S4,4.9,4,6S4.9,8,6,8z M12,20c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,20,12,20z M6,20 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,20,6,20z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,14 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,14,12,14z M12.07,4C12.05,4,12.02,4,12,4c-1.1,0-2,0.9-2,2s0.9,2,2,2 c0.22,0,0.43-0.04,0.63-0.1C12.22,7.01,12,6.03,12,5C12,4.66,12.02,4.33,12.07,4z M19,12c-1.03,0-2.01-0.22-2.9-0.63 C16.04,11.57,16,11.78,16,12c0,1.1,0.9,2,2,2s2-0.9,2-2c0-0.02,0-0.05,0-0.07C19.67,11.98,19.34,12,19,12z M18,20c1.1,0,2-0.9,2-2 s-0.9-2-2-2s-2,0.9-2,2S16.9,20,18,20z M19,0c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S21.76,0,19,0z M19.5,7.5 C19.5,7.78,19.28,8,19,8c-0.27,0-0.5-0.22-0.5-0.5S18.72,7,19,7S19.5,7.22,19.5,7.5z M19,6c-0.28,0-0.5-0.22-0.5-0.5v-3 C18.5,2.22,18.72,2,19,2s0.5,0.22,0.5,0.5v3C19.5,5.78,19.28,6,19,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,0c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S18.21,0,16,0z M16,6c-0.28,0-0.5-0.22-0.5-0.5S15.72,5,16,5 c0.28,0,0.5,0.22,0.5,0.5S16.28,6,16,6z M16,2c0.28,0,0.5,0.22,0.5,0.5v1C16.5,3.78,16.28,4,16,4c-0.28,0-0.5-0.22-0.5-0.5v-1 C15.5,2.22,15.72,2,16,2z M5.5,4C6.33,4,7,4.67,7,5.5S6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4z M10,8.5c0.83,0,1.5,0.67,1.5,1.5 s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10S9.17,8.5,10,8.5z M10,13c0.83,0,1.5,0.67,1.5,1.5S10.83,16,10,16s-1.5-0.67-1.5-1.5 S9.17,13,10,13z M5.5,13C6.33,13,7,13.67,7,14.5S6.33,16,5.5,16S4,15.33,4,14.5S4.67,13,5.5,13z M14.5,13c0.83,0,1.5,0.67,1.5,1.5 S15.33,16,14.5,16S13,15.33,13,14.5S13.67,13,14.5,13z M5.5,8.5C6.33,8.5,7,9.17,7,10s-0.67,1.5-1.5,1.5S4,10.83,4,10 S4.67,8.5,5.5,8.5z M11.11,6.51C10.83,6.81,10.44,7,10,7C9.17,7,8.5,6.33,8.5,5.5S9.17,4,10,4c0.18,0,0.34,0.03,0.5,0.09 C10.51,4.96,10.73,5.78,11.11,6.51z M13.49,8.89c0.73,0.38,1.55,0.59,2.43,0.61C15.97,9.66,16,9.82,16,10c0,0.83-0.67,1.5-1.5,1.5 S13,10.83,13,10C13,9.56,13.19,9.17,13.49,8.89z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_down\": {\n    \"name\": \"arrow_drop_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward\": {\n    \"name\": \"arrow_forward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42.39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"more_vert\": {\n    \"name\": \"more_vert\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"last_page\": {\n    \"name\": \"last_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M6.29 8.11L10.18 12l-3.89 3.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L7.7 6.7c-.39-.39-1.02-.39-1.41 0-.38.39-.38 1.03 0 1.41zM17 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"west\": {\n    \"name\": \"west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.7,18.3L9.7,18.3c0.39-0.39,0.39-1.02,0-1.41L5.83,13H21c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5.83l3.88-3.88 c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0L2.7,11.3c-0.39,0.39-0.39,1.02,0,1.41l5.59,5.59 C8.68,18.68,9.32,18.68,9.7,18.3z\\\"></path>\"\n      }\n    }\n  },\n  \"east\": {\n    \"name\": \"east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.29,5.71L14.29,5.71c-0.39,0.39-0.39,1.02,0,1.41L18.17,11H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h15.18l-3.88,3.88 c-0.39,0.39-0.39,1.02,0,1.41l0,0c0.39,0.39,1.02,0.39,1.41,0l5.59-5.59c0.39-0.39,0.39-1.02,0-1.41L15.7,5.71 C15.32,5.32,14.68,5.32,14.29,5.71z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_direction\": {\n    \"name\": \"assistant_direction\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.5,10H9c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h3.5v1.29c0,0.45,0.54,0.67,0.85,0.35 l2.29-2.29c0.2-0.2,0.2-0.51,0-0.71l-2.29-2.29c-0.31-0.31-0.85-0.09-0.85,0.35V10z M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11 s11-4.9,11-11S18.1,1,12,1z M19.73,12.58l-7.19,7.22c-0.35,0.27-0.79,0.27-1.15,0L4.2,12.58c-0.27-0.36-0.27-0.8,0-1.16l7.19-7.22 c0.35-0.27,0.79-0.27,1.15,0l7.19,7.22C20.09,11.69,20.09,12.22,19.73,12.58z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apps\": {\n    \"name\": \"apps\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"more_horiz\": {\n    \"name\": \"more_horiz\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"menu_open\": {\n    \"name\": \"menu_open\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4,18h11c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,17.55,3.45,18,4,18z M4,13h8c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,12.55,3.45,13,4,13z M3,7L3,7c0,0.55,0.45,1,1,1h11c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H4C3.45,6,3,6.45,3,7z M20.3,14.88L17.42,12l2.88-2.88c0.39-0.39,0.39-1.02,0-1.41l0,0 c-0.39-0.39-1.02-0.39-1.41,0l-3.59,3.59c-0.39,0.39-0.39,1.02,0,1.41l3.59,3.59c0.39,0.39,1.02,0.39,1.41,0l0,0 C20.68,15.91,20.69,15.27,20.3,14.88z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward_ios\": {\n    \"name\": \"arrow_forward_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M7.38 21.01c.49.49 1.28.49 1.77 0l8.31-8.31c.39-.39.39-1.02 0-1.41L9.15 2.98c-.49-.49-1.28-.49-1.77 0s-.49 1.28 0 1.77L14.62 12l-7.25 7.25c-.48.48-.48 1.28.01 1.76z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><path d=\\\"M5.29,17.29L5.29,17.29c0.39,0.39,1.02,0.39,1.41,0l6.59-6.59c0.39-0.39,0.39-1.02,0-1.41L6.71,2.71 c-0.39-0.39-1.02-0.39-1.41,0l0,0C4.9,3.1,4.9,3.73,5.29,4.12L11.17,10l-5.88,5.88C4.9,16.27,4.9,16.9,5.29,17.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_back\": {\n    \"name\": \"arrow_back\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 11H7.83l4.88-4.88c.39-.39.39-1.03 0-1.42-.39-.39-1.02-.39-1.41 0l-6.59 6.59c-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L7.83 13H19c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_upward\": {\n    \"name\": \"arrow_upward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 19V7.83l4.88 4.88c.39.39 1.03.39 1.42 0 .39-.39.39-1.02 0-1.41l-6.59-6.59c-.39-.39-1.02-.39-1.41 0l-6.6 6.58c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L11 7.83V19c0 .55.45 1 1 1s1-.45 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_left\": {\n    \"name\": \"subdirectory_arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.71 15.71l4.58 4.58c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42L8.83 16H19c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v9H8.83l2.88-2.87c.39-.39.39-1.03 0-1.42-.39-.39-1.03-.39-1.42 0l-4.58 4.58c-.39.39-.39 1.03 0 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"waterfall_chart\": {\n    \"name\": \"waterfall_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.5,4L19.5,4C20.33,4,21,4.67,21,5.5v13c0,0.83-0.67,1.5-1.5,1.5h0c-0.83,0-1.5-0.67-1.5-1.5v-13 C18,4.67,18.67,4,19.5,4z M4.5,13L4.5,13C5.33,13,6,13.67,6,14.5v4C6,19.33,5.33,20,4.5,20h0C3.67,20,3,19.33,3,18.5v-4 C3,13.67,3.67,13,4.5,13z M15.5,4L15.5,4C16.33,4,17,4.67,17,5.5v0C17,6.33,16.33,7,15.5,7h0C14.67,7,14,6.33,14,5.5v0 C14,4.67,14.67,4,15.5,4z M11.5,5L11.5,5C12.33,5,13,5.67,13,6.5v1C13,8.33,12.33,9,11.5,9h0C10.67,9,10,8.33,10,7.5v-1 C10,5.67,10.67,5,11.5,5z M8.5,10L8.5,10c0.83,0,1.5,0.67,1.5,1.5v1c0,0.83-0.67,1.5-1.5,1.5h0C7.67,14,7,13.33,7,12.5v-1 C7,10.67,7.67,10,8.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_downward\": {\n    \"name\": \"arrow_downward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 5v11.17l-4.88-4.88c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L13 16.17V5c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_right\": {\n    \"name\": \"switch_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" transform=\\\"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,15.38V8.62L18.88,12L15.5,15.38 M20.29,12.71c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59C15.08,6.08,14,6.52,14,7.41v9.17 c0,0.89,1.08,1.34,1.71,0.71L20.29,12.71z M10,16.59V7.41c0-0.89-1.08-1.34-1.71-0.71l-4.59,4.59c-0.39,0.39-0.39,1.02,0,1.41 l4.59,4.59C8.92,17.92,10,17.48,10,16.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios\": {\n    \"name\": \"arrow_back_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M16.62 2.99c-.49-.49-1.28-.49-1.77 0L6.54 11.3c-.39.39-.39 1.02 0 1.41l8.31 8.31c.49.49 1.28.49 1.77 0s.49-1.28 0-1.77L9.38 12l7.25-7.25c.48-.48.48-1.28-.01-1.76z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_right\": {\n    \"name\": \"chevron_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.29 6.71c-.39.39-.39 1.02 0 1.41L13.17 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_left\": {\n    \"name\": \"chevron_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.71 6.71c-.39-.39-1.02-.39-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios_new\": {\n    \"name\": \"arrow_back_ios_new\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M16.88,2.88L16.88,2.88c-0.49-0.49-1.28-0.49-1.77,0l-8.41,8.41c-0.39,0.39-0.39,1.02,0,1.41l8.41,8.41 c0.49,0.49,1.28,0.49,1.77,0l0,0c0.49-0.49,0.49-1.28,0-1.77L9.54,12l7.35-7.35C17.37,4.16,17.37,3.37,16.88,2.88z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.71,2.71L13.71,2.71c-0.39-0.39-1.02-0.39-1.41,0L5.71,9.29c-0.39,0.39-0.39,1.02,0,1.41l6.59,6.59 c0.39,0.39,1.02,0.39,1.41,0h0c0.39-0.39,0.39-1.02,0-1.41L7.83,10l5.88-5.88C14.1,3.73,14.1,3.1,13.71,2.71z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_more\": {\n    \"name\": \"unfold_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.83l2.46 2.46c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 3.7c-.39-.39-1.02-.39-1.41 0L8.12 6.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 5.83zm0 12.34l-2.46-2.46c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l3.17 3.18c.39.39 1.02.39 1.41 0l3.17-3.17c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L12 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen\": {\n    \"name\": \"fullscreen\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 14c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1H7v-2c0-.55-.45-1-1-1zm0-4c.55 0 1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm11 7h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zM14 6c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"close\": {\n    \"name\": \"close\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.3 5.71c-.39-.39-1.02-.39-1.41 0L12 10.59 7.11 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"payments\": {\n    \"name\": \"payments\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0v24h24V0H0zm1 13V7c0-1.66 1.34-3 3-3h12c1.66 0 3 1.34 3 3v7c0 1.1-.9 2-2 2H4c-1.66 0-3-1.34-3-3zm22 5c0 1.1-.9 2-2 2H5c-.55 0-1-.45-1-1s.45-1 1-1h16V8c0-.55.45-1 1-1s1 .45 1 1v10z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 8v10c0 1.1-.9 2-2 2H5c-.55 0-1-.45-1-1s.45-1 1-1h16V8c0-.55.45-1 1-1s1 .45 1 1zM4 16c-1.66 0-3-1.34-3-3V7c0-1.66 1.34-3 3-3h12c1.66 0 3 1.34 3 3v7c0 1.1-.9 2-2 2H4zm3-6c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"expand_more\": {\n    \"name\": \"expand_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M15.88 9.29L12 13.17 8.12 9.29c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41-.39-.38-1.03-.39-1.42 0z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen_exit\": {\n    \"name\": \"fullscreen_exit\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 16h2v2c0 .55.45 1 1 1s1-.45 1-1v-3c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm2-8H6c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v2zm7 11c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm1-11V6c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"add_home_work\": {\n    \"name\": \"add_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.96,11.7c-0.09-0.52-0.36-0.99-0.8-1.3l-5-3.57c-0.7-0.5-1.63-0.5-2.32,0l-5,3.57C1.31,10.78,1,11.38,1,12.03V19 c0,1.1,0.9,2,2,2h3v-6h4v6h1.68C11.25,20.09,11,19.08,11,18C11,15.22,12.62,12.83,14.96,11.7z\\\"></path><path d=\\\"M23,13.11V4.97C23,3.88,22.12,3,21.03,3h-9.06C10.88,3,10,3.88,10,4.97l0.02,0.05c0.1,0.06,0.21,0.11,0.3,0.18l5,3.57 c0.79,0.56,1.34,1.4,1.56,2.32C17.25,11.04,17.62,11,18,11C19.96,11,21.73,11.81,23,13.11z M17,7h2v2h-2V7z\\\"></path><g><path d=\\\"M23,18c0-2.76-2.24-5-5-5s-5,2.24-5,5s2.24,5,5,5S23,20.76,23,18z M17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,10.39V9.76c0-0.48-0.23-0.93-0.62-1.21l-4-2.91c-0.53-0.38-1.24-0.38-1.76,0l-4,2.91C1.23,8.83,1,9.28,1,9.76v5.74 C1,16.33,1.67,17,2.5,17H5v-4.5h3V17h1.88c-0.24-0.62-0.38-1.29-0.38-2C9.5,13.07,10.5,11.38,12,10.39z\\\"></path><g><path d=\\\"M19,11.23V4.5C19,3.67,18.33,3,17.5,3h-7C9.67,3,9,3.67,9,4.5v0.46l2.11,1.53l0.39,0.29V6H13v1.5h-0.51l0.01,0.05 c0.61,0.55,0.99,1.33,1,2.16C13.97,9.58,14.48,9.5,15,9.5C16.58,9.5,18,10.17,19,11.23z M14.5,6H16v1.5h-1.5V6z\\\"></path></g><g><path d=\\\"M19,15c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4S19,17.21,19,15z M14.5,16.5v-1h-1c-0.28,0-0.5-0.22-0.5-0.5 c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5c0,0.28-0.22,0.5-0.5,0.5 h-1v1c0,0.28-0.22,0.5-0.5,0.5S14.5,16.78,14.5,16.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"offline_share\": {\n    \"name\": \"offline_share\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M5,5L5,5C4.45,5,4,5.45,4,6v15c0,1.1,0.9,2,2,2h9c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H6V6C6,5.45,5.55,5,5,5z\\\"></path></g><g><path d=\\\"M18,1h-8C8.9,1,8,1.9,8,3v14c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M18,15h-8V5h8V15z\\\"></path></g><g><path d=\\\"M12.5,10.25h2v0.54c0,0.45,0.54,0.67,0.85,0.35l1.29-1.29c0.2-0.2,0.2-0.51,0-0.71l-1.29-1.29 c-0.31-0.31-0.85-0.09-0.85,0.35v0.54H12c-0.55,0-1,0.45-1,1v1.5c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75V10.25 z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_right\": {\n    \"name\": \"arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.71 15.29l2.59-2.59c.39-.39.39-1.02 0-1.41L11.71 8.7c-.63-.62-1.71-.18-1.71.71v5.17c0 .9 1.08 1.34 1.71.71z\\\"></path>\"\n      }\n    }\n  },\n  \"app_settings_alt\": {\n    \"name\": \"app_settings_alt\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2L7,1.01C5.9,1.01,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M21,12 c0-0.13-0.02-0.26-0.04-0.39l0.64-0.48c0.2-0.15,0.26-0.44,0.13-0.66l-0.57-0.96c-0.13-0.21-0.39-0.3-0.62-0.2l-0.72,0.3 c-0.2-0.15-0.42-0.29-0.65-0.39l-0.1-0.77c-0.03-0.25-0.24-0.43-0.49-0.44l-1.12-0.02c-0.26,0-0.47,0.18-0.5,0.44l-0.1,0.79 c-0.24,0.1-0.45,0.23-0.65,0.39l-0.72-0.3c-0.23-0.1-0.5-0.01-0.62,0.2l-0.57,0.96c-0.13,0.22-0.08,0.5,0.13,0.66l0.64,0.48 C15.02,11.74,15,11.87,15,12c0,0.13,0.02,0.25,0.04,0.37l-0.64,0.49c-0.2,0.15-0.26,0.43-0.13,0.65l0.56,0.97 c0.13,0.22,0.39,0.31,0.63,0.21l0.73-0.31c0.2,0.16,0.42,0.3,0.67,0.4l0.1,0.77c0.03,0.25,0.24,0.44,0.5,0.44h1.12 c0.25,0,0.46-0.19,0.5-0.44l0.1-0.77c0.24-0.1,0.46-0.24,0.67-0.4l0.73,0.31c0.23,0.1,0.5,0.01,0.63-0.21l0.56-0.97 c0.13-0.22,0.07-0.5-0.13-0.65l-0.64-0.49C20.98,12.25,21,12.13,21,12z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S18.83,13.5,18,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"south\": {\n    \"name\": \"south\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.3,14.29L18.3,14.29c-0.39-0.39-1.02-0.39-1.41,0L13,18.17V3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v15.18l-3.88-3.88 c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l5.59,5.59c0.39,0.39,1.02,0.39,1.41,0l5.59-5.59 C18.68,15.32,18.68,14.68,18.3,14.29z\\\"></path>\"\n      }\n    }\n  },\n  \"maps_home_work\": {\n    \"name\": \"maps_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14.16,10.4l-5-3.57c-0.7-0.5-1.63-0.5-2.32,0l-5,3.57C1.31,10.78,1,11.38,1,12.03V20c0,0.55,0.45,1,1,1h4v-6h4v6h4 c0.55,0,1-0.45,1-1v-7.97C15,11.38,14.69,10.78,14.16,10.4z\\\"></path><path d=\\\"M21.03,3h-9.06C10.88,3,10,3.88,10,4.97l0.09,0.09c0.08,0.05,0.16,0.09,0.24,0.14l5,3.57c0.76,0.54,1.3,1.34,1.54,2.23H19 v2h-2v2h2v2h-2v3v1h4.03c1.09,0,1.97-0.88,1.97-1.97V4.97C23,3.88,22.12,3,21.03,3z M19,9h-2V7h2V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"menu\": {\n    \"name\": \"menu\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"double_arrow\": {\n    \"name\": \"double_arrow\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.08,11.42l-4.04-5.65C15.7,5.29,15.15,5,14.56,5h0c-1.49,0-2.35,1.68-1.49,2.89L16,12l-2.93,4.11 c-0.87,1.21,0,2.89,1.49,2.89h0c0.59,0,1.15-0.29,1.49-0.77l4.04-5.65C20.33,12.23,20.33,11.77,20.08,11.42z\\\"></path><path d=\\\"M13.08,11.42L9.05,5.77C8.7,5.29,8.15,5,7.56,5h0C6.07,5,5.2,6.68,6.07,7.89L9,12l-2.93,4.11C5.2,17.32,6.07,19,7.56,19h0 c0.59,0,1.15-0.29,1.49-0.77l4.04-5.65C13.33,12.23,13.33,11.77,13.08,11.42z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.79,9.71l-2.97-4.16C12.57,5.2,12.18,5,11.76,5c-1.06,0-1.68,1.2-1.06,2.07L12.79,10l-2.09,2.93 c-0.62,0.87,0,2.07,1.06,2.07c0.42,0,0.82-0.2,1.06-0.55l2.97-4.16C15.92,10.12,15.92,9.88,15.79,9.71z\\\"></path><path d=\\\"M10.79,9.71L7.82,5.55C7.57,5.2,7.18,5,6.76,5C5.69,5,5.07,6.2,5.69,7.07L7.79,10l-2.09,2.93C5.07,13.8,5.69,15,6.76,15 c0.42,0,0.82-0.2,1.06-0.55l2.97-4.16C10.92,10.12,10.92,9.88,10.79,9.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"home_work\": {\n    \"name\": \"home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.16,10.4l-5-3.57c-0.7-0.5-1.63-0.5-2.32,0l-5,3.57C1.31,10.78,1,11.38,1,12.03V20c0,0.55,0.45,1,1,1h4v-6h4v6h4 c0.55,0,1-0.45,1-1v-7.97C15,11.38,14.69,10.78,14.16,10.4z\\\"></path><path d=\\\"M21.03,3h-9.06C10.88,3,10,3.88,10,4.97l0.09,0.09c0.08,0.05,0.16,0.09,0.24,0.14l5,3.57c0.76,0.54,1.3,1.34,1.54,2.23H19 v2h-2v2h2v2h-2v3v1h4.03c1.09,0,1.97-0.88,1.97-1.97V4.97C23,3.88,22.12,3,21.03,3z M19,9h-2V7h2V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M11.38,8.55l-4-2.91c-0.53-0.38-1.24-0.38-1.76,0l-4,2.91C1.23,8.83,1,9.28,1,9.76V16c0,0.55,0.45,1,1,1h3v-4h3v4h3 c0.55,0,1-0.45,1-1V9.76C12,9.28,11.77,8.83,11.38,8.55z\\\"></path></g><g><path d=\\\"M17.5,3h-7C9.67,3,9,3.67,9,4.5v0.46l2.5,1.82V6H13v1.5h-0.51l-0.02,0.03c0.64,0.57,1.03,1.37,1.03,2.24V17h4 c0.83,0,1.5-0.67,1.5-1.5v-11C19,3.67,18.33,3,17.5,3z M16,14h-1.5v-1.5H16V14z M16,10.75h-1.5v-1.5H16V10.75z M16,7.5h-1.5V6H16 V7.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"north\": {\n    \"name\": \"north\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.71,9.7L5.71,9.7c0.39,0.39,1.02,0.39,1.41,0L11,5.83V21c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V5.83l3.88,3.88 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L12.7,2.7c-0.39-0.39-1.02-0.39-1.41,0L5.71,8.29 C5.32,8.68,5.32,9.32,5.71,9.7z\\\"></path>\"\n      }\n    }\n  },\n  \"north_west\": {\n    \"name\": \"north_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,15L6,15c0.56,0,1-0.45,1-1V8.41L17.89,19.3c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L8.41,7H14 c0.55,0,1-0.45,1-1V6c0-0.55-0.45-1-1-1H6C5.45,5,5,5.45,5,6V14C5,14.55,5.45,15,6,15z\\\"></path>\"\n      }\n    }\n  },\n  \"campaign\": {\n    \"name\": \"campaign\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M18,12L18,12c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2C18.45,11,18,11.45,18,12z\\\"></path><path d=\\\"M16.59,16.82c-0.33,0.44-0.24,1.05,0.2,1.37c0.53,0.39,1.09,0.81,1.62,1.21c0.44,0.33,1.06,0.24,1.38-0.2 c0-0.01,0.01-0.01,0.01-0.02c0.33-0.44,0.24-1.06-0.2-1.38c-0.53-0.4-1.09-0.82-1.61-1.21c-0.44-0.33-1.06-0.23-1.39,0.21 C16.6,16.81,16.59,16.82,16.59,16.82z\\\"></path><path d=\\\"M19.81,4.81c0-0.01-0.01-0.01-0.01-0.02c-0.33-0.44-0.95-0.53-1.38-0.2c-0.53,0.4-1.1,0.82-1.62,1.22 c-0.44,0.33-0.52,0.95-0.19,1.38c0,0.01,0.01,0.01,0.01,0.02c0.33,0.44,0.94,0.53,1.38,0.2c0.53-0.39,1.09-0.82,1.62-1.22 C20.05,5.87,20.13,5.25,19.81,4.81z\\\"></path><path d=\\\"M8,9H4c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3h1l5,3V6L8,9z\\\"></path><path d=\\\"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_less\": {\n    \"name\": \"expand_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.29 8.71L6.7 13.3c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 10.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 8.71c-.38-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_right\": {\n    \"name\": \"subdirectory_arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M18.29 15.71l-4.58 4.58c-.39.39-1.03.39-1.42 0-.39-.39-.39-1.03 0-1.42L15.17 16H5c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v9h9.17l-2.88-2.87c-.39-.39-.39-1.03 0-1.42.39-.39 1.03-.39 1.42 0l4.58 4.58c.39.39.39 1.03 0 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_up\": {\n    \"name\": \"arrow_drop_up\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.71 12.29L11.3 9.7c.39-.39 1.02-.39 1.41 0l2.59 2.59c.63.63.18 1.71-.71 1.71H9.41c-.89 0-1.33-1.08-.7-1.71z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less\": {\n    \"name\": \"unfold_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M8.12 19.3c.39.39 1.02.39 1.41 0L12 16.83l2.47 2.47c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-3.17-3.17c-.39-.39-1.02-.39-1.41 0l-3.17 3.17c-.4.38-.4 1.02-.01 1.41zm7.76-14.6c-.39-.39-1.02-.39-1.41 0L12 7.17 9.53 4.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.03 0 1.42l3.17 3.17c.39.39 1.02.39 1.41 0l3.17-3.17c.4-.39.4-1.03.01-1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_circle_down\": {\n    \"name\": \"expand_circle_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M15.79,11.71l-3.08,3.08 c-0.39,0.39-1.02,0.39-1.42,0l-3.08-3.08c-0.39-0.39-0.39-1.03,0-1.42c0.39-0.39,1.02-0.39,1.41,0L12,12.67l2.38-2.38 c0.39-0.39,1.02-0.39,1.41,0C16.18,10.68,16.18,11.32,15.79,11.71z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M12.84,9.76l-2.13,2.13c-0.39,0.39-1.02,0.39-1.41,0 L7.16,9.76c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0L10,10.48l1.78-1.78c0.29-0.29,0.77-0.29,1.06,0 C13.13,8.99,13.13,9.47,12.84,9.76z\\\"></path>\"\n      }\n    }\n  },\n  \"legend_toggle\": {\n    \"name\": \"legend_toggle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,15H5c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h14c0.55,0,1,0.45,1,1v0C20,14.55,19.55,15,19,15z M19,17H5 c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h14c0.55,0,1-0.45,1-1v0C20,17.45,19.55,17,19,17z M15,11l4.58-3.25 C19.84,7.56,20,7.26,20,6.94v0c0-0.81-0.92-1.29-1.58-0.82L15,8.55L10,5L4.48,8.36C4.18,8.55,4,8.87,4,9.22v0 c0,0.78,0.85,1.26,1.52,0.85l4.4-2.68L15,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,15h-11C4.22,15,4,14.78,4,14.5v0C4,14.22,4.22,14,4.5,14h11c0.28,0,0.5,0.22,0.5,0.5v0C16,14.78,15.78,15,15.5,15z M15.5,11h-11C4.22,11,4,11.22,4,11.5v0C4,11.78,4.22,12,4.5,12h11c0.28,0,0.5-0.22,0.5-0.5v0C16,11.22,15.78,11,15.5,11z M4.79,8.45L8,6.22L12,9l3.79-2.63C15.92,6.27,16,6.12,16,5.96v0c0-0.4-0.45-0.64-0.79-0.41L12,7.78L8,5L4.21,7.63 C4.08,7.73,4,7.88,4,8.04v0C4,8.45,4.45,8.68,4.79,8.45z\\\"></path></g>\"\n      }\n    }\n  },\n  \"first_page\": {\n    \"name\": \"first_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M17.7 15.89L13.82 12l3.89-3.89c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-4.59 4.59c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.38.38-1.02-.01-1.4zM7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_left\": {\n    \"name\": \"switch_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.5,8.62v6.76L5.12,12L8.5,8.62 M3.71,11.29c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59C8.92,17.92,10,17.48,10,16.59V7.41 c0-0.89-1.08-1.34-1.71-0.71L3.71,11.29z M14,7.41v9.17c0,0.89,1.08,1.34,1.71,0.71l4.59-4.59c0.39-0.39,0.39-1.02,0-1.41 l-4.59-4.59C15.08,6.08,14,6.52,14,7.41z\\\"></path>\"\n      }\n    }\n  },\n  \"refresh\": {\n    \"name\": \"refresh\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.65 6.35c-1.63-1.63-3.94-2.57-6.48-2.31-3.67.37-6.69 3.35-7.1 7.02C3.52 15.91 7.27 20 12 20c3.19 0 5.93-1.87 7.21-4.56.32-.67-.16-1.44-.9-1.44-.37 0-.72.2-.88.53-1.13 2.43-3.84 3.97-6.8 3.31-2.22-.49-4.01-2.3-4.48-4.52C5.31 9.44 8.26 6 12 6c1.66 0 3.14.69 4.22 1.78l-1.51 1.51c-.63.63-.19 1.71.7 1.71H19c.55 0 1-.45 1-1V6.41c0-.89-1.08-1.34-1.71-.71l-.64.65z\\\"></path>\"\n      }\n    }\n  },\n  \"south_east\": {\n    \"name\": \"south_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,9L18,9c-0.56,0-1,0.45-1,1v5.59L6.12,4.7c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L15.59,17H10 c-0.55,0-1,0.45-1,1V18c0,0.55,0.45,1,1,1H18c0.55,0,1-0.45,1-1V10C19,9.45,18.55,9,18,9z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_left\": {\n    \"name\": \"arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M12.29 8.71L9.7 11.3c-.39.39-.39 1.02 0 1.41l2.59 2.59c.63.63 1.71.18 1.71-.71V9.41c0-.89-1.08-1.33-1.71-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"play_arrow\": {\n    \"name\": \"play_arrow\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8 6.82v10.36c0 .79.87 1.27 1.54.84l8.14-5.18c.62-.39.62-1.29 0-1.69L9.54 5.98C8.87 5.55 8 6.03 8 6.82z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle_on\": {\n    \"name\": \"shuffle_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M4.3,4.7 c0.39-0.39,1.02-0.39,1.41,0l4.47,4.47l-1.42,1.4L4.3,6.11C3.91,5.72,3.91,5.09,4.3,4.7z M19.59,19.5c0,0.28-0.22,0.5-0.5,0.5H15.3 c-0.45,0-0.67-0.54-0.36-0.85l1.2-1.2l-3.13-3.13l1.41-1.41l3.13,3.14l1.19-1.19c0.31-0.32,0.85-0.1,0.85,0.35V19.5z M19.59,8.29 c0,0.45-0.54,0.67-0.85,0.36l-1.19-1.19L5.7,19.29c-0.39,0.39-1.02,0.39-1.41,0c-0.39-0.39-0.39-1.02,0-1.41L16.13,6.04l-1.19-1.19 C14.63,4.54,14.85,4,15.3,4h3.79c0.28,0,0.5,0.22,0.5,0.5V8.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"library_add\": {\n    \"name\": \"library_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_video\": {\n    \"name\": \"featured_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-10 9H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_play_next\": {\n    \"name\": \"queue_play_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v6c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm-8 7V8c0-.55-.45-1-1-1s-1 .45-1 1v2H9c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zm10.29 8.71l-3.04 3.04c-.41.41-1.09.41-1.5 0-.41-.41-.41-1.09 0-1.5L21 18l-2.25-2.25c-.41-.41-.41-1.09 0-1.5.41-.41 1.09-.41 1.5 0l3.04 3.04c.39.39.39 1.03 0 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle\": {\n    \"name\": \"pause_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M10,16L10,16c-0.55,0-1-0.45-1-1V9 c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1v6C11,15.55,10.55,16,10,16z M14,16L14,16c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1l0,0 c0.55,0,1,0.45,1,1v6C15,15.55,14.55,16,14,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M8.25,13L8.25,13c-0.41,0-0.75-0.34-0.75-0.75v-4.5 C7.5,7.34,7.84,7,8.25,7h0C8.66,7,9,7.34,9,7.75v4.5C9,12.66,8.66,13,8.25,13z M11.75,13L11.75,13C11.34,13,11,12.66,11,12.25v-4.5 C11,7.34,11.34,7,11.75,7h0c0.41,0,0.75,0.34,0.75,0.75v4.5C12.5,12.66,12.16,13,11.75,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mic_off\": {\n    \"name\": \"mic_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm3.08.4c-.41 0-.77.3-.83.71-.05.32-.12.64-.22.93l1.27 1.27c.3-.6.52-1.25.63-1.94.07-.51-.33-.97-.85-.97zM3.71 3.56c-.39.39-.39 1.02 0 1.41L9 10.27v.43c0 1.19.6 2.32 1.63 2.91.75.43 1.41.44 2.02.31l1.66 1.66c-.71.33-1.5.52-2.31.52-2.54 0-4.88-1.77-5.25-4.39-.06-.41-.42-.71-.83-.71-.52 0-.92.46-.85.97.46 2.96 2.96 5.3 5.93 5.75V20c0 .55.45 1 1 1s1-.45 1-1v-2.28c.91-.13 1.77-.45 2.55-.9l3.49 3.49c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"radio\": {\n    \"name\": \"radio\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3.24 6.15C2.51 6.43 2 7.17 2 8v12c0 1.1.9 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.1-.9-2-2-2H8.3l7.43-3c.46-.19.68-.71.49-1.17-.19-.46-.71-.68-1.17-.49L3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-1c0-.55-.45-1-1-1s-1 .45-1 1v1H4V9c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v3z\\\"></path>\"\n      }\n    }\n  },\n  \"art_track\": {\n    \"name\": \"art_track\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 13h-6c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm0-6h-6c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm-6 10h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zm-3-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-2.1 5.2l-1.26-1.68c-.2-.26-.59-.27-.8-.01L6.5 14.26l-.85-1.03c-.2-.25-.58-.24-.78.01l-.74.95c-.26.33-.02.81.39.81H9.5c.41 0 .65-.47.4-.8z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_forward\": {\n    \"name\": \"fast_forward\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M5.58 16.89l5.77-4.07c.56-.4.56-1.24 0-1.63L5.58 7.11C4.91 6.65 4 7.12 4 7.93v8.14c0 .81.91 1.28 1.58.82zM13 7.93v8.14c0 .81.91 1.28 1.58.82l5.77-4.07c.56-.4.56-1.24 0-1.63l-5.77-4.07c-.67-.47-1.58 0-1.58.81z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add\": {\n    \"name\": \"playlist_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M13 10H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm5 8v-3c0-.55-.45-1-1-1s-1 .45-1 1v3h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3zM3 16h6c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.25,5h-7.5C3.34,5,3,5.34,3,5.75v0C3,6.16,3.34,6.5,3.75,6.5h7.5C11.66,6.5,12,6.16,12,5.75v0C12,5.34,11.66,5,11.25,5 z\\\"></path><path d=\\\"M3.75,12.75h4.5C8.66,12.75,9,12.41,9,12v0c0-0.41-0.34-0.75-0.75-0.75h-4.5C3.34,11.25,3,11.59,3,12v0 C3,12.41,3.34,12.75,3.75,12.75z\\\"></path><path d=\\\"M11.25,8.12h-7.5C3.34,8.12,3,8.46,3,8.87v0c0,0.41,0.34,0.75,0.75,0.75h7.5c0.41,0,0.75-0.34,0.75-0.75v0 C12,8.46,11.66,8.12,11.25,8.12z\\\"></path><path d=\\\"M14.75,11.25v-2.5C14.75,8.34,14.41,8,14,8h0c-0.41,0-0.75,0.34-0.75,0.75v2.5h-2.5C10.34,11.25,10,11.59,10,12v0 c0,0.41,0.34,0.75,0.75,0.75h2.5v2.5c0,0.41,0.34,0.75,0.75,0.75h0c0.41,0,0.75-0.34,0.75-0.75v-2.5h2.5 c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H14.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"5k\": {\n    \"name\": \"5k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10.25,10.5H8v1h2 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7.25c-0.41,0-0.75-0.34-0.75-0.75v0c0-0.41,0.34-0.75,0.75-0.75H9.5v-1H7.25 c-0.41,0-0.75-0.34-0.75-0.75v-2C6.5,9.34,6.84,9,7.25,9h3C10.66,9,11,9.34,11,9.75v0C11,10.16,10.66,10.5,10.25,10.5z M16.59,15 L16.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7H13.7c-0.39,0-0.7-0.31-0.7-0.7V9.7 C13,9.31,13.31,9,13.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98C16.17,9.1,16.38,9,16.59,9l0,0c0.58,0,0.91,0.66,0.56,1.12 L15.75,12l1.41,1.88C17.5,14.34,17.17,15,16.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_30\": {\n    \"name\": \"forward_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.92 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.32 10.42 8.27 7 12 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71l-3.79-3.79c-.31-.31-.85-.09-.85.36V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-8.38 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z\\\"></path>\"\n      }\n    }\n  },\n  \"note\": {\n    \"name\": \"note\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21.41 9.41l-4.83-4.83c-.37-.37-.88-.58-1.41-.58H4c-1.1 0-2 .9-2 2v12.01c0 1.1.89 1.99 1.99 1.99H20c1.1 0 2-.9 2-2v-7.17c0-.53-.21-1.04-.59-1.42zM15 5.5l5.5 5.5H16c-.55 0-1-.45-1-1V5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"9k\": {\n    \"name\": \"9k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,10h1.5v1.5H8V10z M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,14 c0,0.55-0.45,1-1,1H7.25c-0.41,0-0.75-0.34-0.75-0.75v0c0-0.41,0.34-0.75,0.75-0.75H9.5v-1h-2c-0.55,0-1-0.45-1-1V10 c0-0.55,0.45-1,1-1H10c0.55,0,1,0.45,1,1V14z M16.59,15L16.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55 c0,0.39-0.31,0.7-0.7,0.7H13.7c-0.39,0-0.7-0.31-0.7-0.7V9.7C13,9.31,13.31,9,13.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98 C16.17,9.1,16.38,9,16.59,9l0,0c0.58,0,0.91,0.66,0.56,1.12L15.75,12l1.41,1.88C17.5,14.34,17.17,15,16.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"1k_plus\": {\n    \"name\": \"1k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.25,15L8.25,15 c-0.41,0-0.75-0.34-0.75-0.75V10.5H6.75C6.34,10.5,6,10.16,6,9.75v0C6,9.34,6.34,9,6.75,9H8c0.55,0,1,0.45,1,1v4.25 C9,14.66,8.66,15,8.25,15z M13.54,14.73L12,12.75v1.55c0,0.39-0.31,0.7-0.7,0.7H11.2c-0.39,0-0.7-0.31-0.7-0.7V9.7 c0-0.39,0.31-0.7,0.7-0.7h0.09C11.69,9,12,9.31,12,9.7v1.55l1.54-1.98C13.67,9.1,13.88,9,14.09,9h0c0.58,0,0.91,0.66,0.56,1.12 L13.25,12l1.41,1.88C15,14.34,14.67,15,14.09,15h0C13.88,15,13.67,14.9,13.54,14.73z M18.5,12.5h-1v1c0,0.28-0.22,0.5-0.5,0.5l0,0 c-0.28,0-0.5-0.22-0.5-0.5v-1h-1c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5l0,0 c0.28,0,0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"2k\": {\n    \"name\": \"2k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,12.5H8v1h2.25 c0.41,0,0.75,0.34,0.75,0.75v0c0,0.41-0.34,0.75-0.75,0.75H7.5c-0.55,0-1-0.45-1-1v-1.5c0-0.55,0.45-1,1-1h2v-1H7.25 c-0.41,0-0.75-0.34-0.75-0.75v0C6.5,9.34,6.84,9,7.25,9H10c0.55,0,1,0.45,1,1v1.5C11,12.05,10.55,12.5,10,12.5z M16.59,15L16.59,15 c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7H13.7c-0.39,0-0.7-0.31-0.7-0.7V9.7C13,9.31,13.31,9,13.7,9 h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98C16.17,9.1,16.38,9,16.59,9l0,0c0.58,0,0.91,0.66,0.56,1.12L15.75,12l1.41,1.88 C17.5,14.34,17.17,15,16.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"skip_previous\": {\n    \"name\": \"skip_previous\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1zm3.66 6.82l5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.57.4-.57 1.24 0 1.64z\\\"></path>\"\n      }\n    }\n  },\n  \"library_add_check\": {\n    \"name\": \"library_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M11.76,13.28L9.69,11.2 c-0.38-0.39-0.38-1.01,0-1.4l0,0c0.39-0.39,1.02-0.39,1.41,0l1.36,1.37l4.42-4.46c0.39-0.39,1.02-0.39,1.41,0l0,0 c0.38,0.39,0.38,1.01,0,1.4l-5.13,5.17C12.79,13.68,12.15,13.68,11.76,13.28z M3,6L3,6C2.45,6,2,6.45,2,7v13c0,1.1,0.9,2,2,2h13 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H5c-0.55,0-1-0.45-1-1V7C4,6.45,3.55,6,3,6z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M16,3H7C6.45,3,6,3.45,6,4v9c0,0.55,0.45,1,1,1h9c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M14.68,6.73l-4.24,4.24 c-0.2,0.2-0.51,0.2-0.71,0L8.32,9.56c-0.2-0.2-0.2-0.51,0-0.71c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06l3.89-3.89 c0.2-0.2,0.51-0.2,0.71,0C14.88,6.22,14.88,6.54,14.68,6.73z M14,16.5c0,0.28-0.22,0.5-0.5,0.5H4c-0.55,0-1-0.45-1-1V6.5 C3,6.22,3.22,6,3.5,6S4,6.22,4,6.5v9C4,15.78,4.22,16,4.5,16h9C13.78,16,14,16.22,14,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"queue\": {\n    \"name\": \"queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"movie\": {\n    \"name\": \"movie\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18 4l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L15 4h-2l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L10 4H8l1.82 3.64c.08.16-.04.36-.22.36H7.62c-.38 0-.73-.21-.9-.55L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"airplay\": {\n    \"name\": \"airplay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8.41 22h7.17c.89 0 1.34-1.08.71-1.71L12.7 16.7c-.39-.39-1.02-.39-1.41 0L7.7 20.29c-.62.63-.18 1.71.71 1.71zM21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"control_camera\": {\n    \"name\": \"control_camera\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4.65 9.35L2.7 11.3c-.39.39-.39 1.02 0 1.41l1.95 1.95c.49.49 1.28.49 1.77 0 .48-.49.48-1.27 0-1.76l-.88-.9.88-.89c.48-.49.48-1.27 0-1.76s-1.28-.49-1.77 0zm12.93 0c-.48.49-.48 1.27 0 1.76l.88.89-.88.89c-.48.49-.48 1.27 0 1.76.49.49 1.28.49 1.77 0l1.95-1.95c.39-.39.39-1.02 0-1.41l-1.95-1.95c-.49-.48-1.29-.48-1.77.01zM12 18.46l-.89-.88c-.49-.48-1.27-.48-1.76 0-.49.49-.49 1.28 0 1.77l1.95 1.95c.39.39 1.02.39 1.41 0l1.95-1.95c.49-.49.49-1.28 0-1.77-.49-.48-1.27-.48-1.76 0l-.9.88zM9.35 6.42c.49.48 1.27.48 1.76 0l.89-.88.89.88c.49.48 1.27.48 1.76 0 .49-.49.49-1.28 0-1.77L12.7 2.7c-.39-.39-1.02-.39-1.41 0L9.35 4.65c-.49.49-.49 1.29 0 1.77z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle>\"\n      }\n    }\n  },\n  \"replay_10\": {\n    \"name\": \"replay_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.99 5V2.21c0-.45-.54-.67-.85-.35L7.35 5.65c-.2.2-.2.51 0 .71l3.79 3.79c.31.31.85.09.85-.35V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.06-.48-.48-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24.99-5.13-2.9-9.61-7.85-9.61zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam_off\": {\n    \"name\": \"videocam_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 14.2V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5V7c0-.55-.45-1-1-1h-5.61l8.91 8.91c.62.63 1.7.18 1.7-.71zM2.71 2.56c-.39.39-.39 1.02 0 1.41L4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18l2.48 2.48c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 2.56c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check_circle\": {\n    \"name\": \"playlist_add_check_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M7,8c0-0.55,0.45-1,1-1h5 c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H8C7.45,9,7,8.55,7,8L7,8z M7,11c0-0.55,0.45-1,1-1h5c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1 H8C7.45,12,7,11.55,7,11L7,11z M10,14c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h1C9.55,13,10,13.45,10,14L10,14z M18.29,14.12l-3.54,3.54c-0.39,0.39-1.02,0.39-1.41,0l-1.41-1.41c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0 l0.71,0.71l2.83-2.83c0.39-0.39,1.02-0.39,1.41,0C18.68,13.1,18.68,13.73,18.29,14.12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M6.75,6h4c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-4C6.34,7.5,6,7.16,6,6.75C6,6.34,6.34,6,6.75,6z M6.75,8.5h4c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-4C6.34,10,6,9.66,6,9.25C6,8.84,6.34,8.5,6.75,8.5z M7.75,12.5h-1C6.34,12.5,6,12.16,6,11.75 C6,11.34,6.34,11,6.75,11h1c0.41,0,0.75,0.34,0.75,0.75C8.5,12.16,8.16,12.5,7.75,12.5z M14.77,11.99l-2.3,2.3 c-0.39,0.39-1.02,0.39-1.41,0l-0.88-0.88c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.77-0.29,1.06,0l0.53,0.53l1.94-1.94 c0.29-0.29,0.77-0.29,1.06,0C15.06,11.23,15.06,11.7,14.77,11.99z\\\"></path>\"\n      }\n    }\n  },\n  \"6k_plus\": {\n    \"name\": \"6k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.5,12.5h1V14h-1V12.5z M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M9.25,10.5 H7.5v1H9c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h2.25C9.66,9,10,9.34,10,9.75v0 C10,10.16,9.66,10.5,9.25,10.5z M14.59,15L14.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7H11.7 c-0.39,0-0.7-0.31-0.7-0.7V9.7C11,9.31,11.31,9,11.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98C14.17,9.1,14.38,9,14.59,9h0 c0.58,0,0.91,0.66,0.56,1.12L13.75,12l1.41,1.88C15.5,14.34,15.17,15,14.59,15z M18.5,12.5h-1v1c0,0.28-0.22,0.5-0.5,0.5l0,0 c-0.28,0-0.5-0.22-0.5-0.5v-1h-1c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5l0,0 c0.28,0,0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8k_plus\": {\n    \"name\": \"8k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,14c0,0.55-0.45,1-1,1H7 c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1V14z M14.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55 c0,0.39-0.31,0.7-0.7,0.7H11.7c-0.39,0-0.7-0.31-0.7-0.7V9.7C11,9.31,11.31,9,11.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98 C14.17,9.1,14.38,9,14.59,9c0.58,0,0.91,0.66,0.56,1.12L13.75,12l1.41,1.88C15.5,14.34,15.17,15,14.59,15z M19,12.5h-1.5V14h-1 v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1\\\" x=\\\"7.5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1\\\" x=\\\"7.5\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mic\": {\n    \"name\": \"mic\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.91-3c-.49 0-.9.36-.98.85C16.52 14.2 14.47 16 12 16s-4.52-1.8-4.93-4.15c-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14.49 3 2.89 5.35 5.91 5.78V20c0 .55.45 1 1 1s1-.45 1-1v-2.08c3.02-.43 5.42-2.78 5.91-5.78.1-.6-.39-1.14-1-1.14z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_5\": {\n    \"name\": \"replay_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.26-2.14 3.99-4.39 4.53-3.64.88-6.93-1.6-7.42-4.96-.06-.49-.48-.86-.97-.86-.6 0-1.08.53-1 1.13.63 4.47 4.94 7.75 9.77 6.67 3.09-.69 5.39-3.08 5.99-6.19C20.84 9.48 16.94 5 12 5zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle_filled\": {\n    \"name\": \"play_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 13.5v-7c0-.41.47-.65.8-.4l4.67 3.5c.27.2.27.6 0 .8l-4.67 3.5c-.33.25-.8.01-.8-.4z\\\"></path>\"\n      }\n    }\n  },\n  \"repeat\": {\n    \"name\": \"repeat\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 7h10v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V5H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V7zm10 10H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v3z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_play_list\": {\n    \"name\": \"featured_play_list\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-10 8H4c-.55 0-1-.45-1-1s.45-1 1-1h7c.55 0 1 .45 1 1s-.45 1-1 1zm0-4H4c-.55 0-1-.45-1-1s.45-1 1-1h7c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset\": {\n    \"name\": \"web_asset\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-1 14H6c-.55 0-1-.45-1-1V8h14v9c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"not_interested\": {\n    \"name\": \"not_interested\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset_off\": {\n    \"name\": \"web_asset_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H20c1.11,0,2,0.9,2,2v12c0,0.34-0.09,0.66-0.23,0.94L20,17.17V8h-9.17L6.83,4z M19.78,22.61L17.17,20H4 c-1.11,0-2-0.9-2-2V6c0-0.34,0.08-0.66,0.23-0.94L1.39,4.22C1,3.83,1,3.2,1.39,2.81l0,0c0.39-0.39,1.02-0.39,1.41,0l18.38,18.38 c0.39,0.39,0.39,1.02,0,1.41l0,0C20.8,23,20.17,23,19.78,22.61z M15.17,18l-10-10H4v10H15.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.25,17.25L2.75,2.75c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06L2.38,4.5C2.14,4.77,2,5.12,2,5.5v9 C2,15.33,2.67,16,3.5,16h10.38l2.31,2.31c0.29,0.29,0.77,0.29,1.06,0h0C17.54,18.02,17.54,17.54,17.25,17.25z M3.5,14.5V7h1.38 l7.5,7.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.14,0.73-0.38,1l-1.12-1.12V7H9.12L6.12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_settings\": {\n    \"name\": \"video_settings\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,6h16c0.55,0,1,0.45,1,1v4h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H4c-0.55,0-1-0.45-1-1V7 C3,6.45,3.45,6,4,6z\\\"></path><polygon points=\\\"15,12 9,8 9,16\\\"></polygon><path d=\\\"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3,14.5v-9C3,5.22,3.22,5,3.5,5h13C16.78,5,17,5.22,17,5.5V9h1V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5v10 c0,0.55,0.45,1,1,1h8v-1H3.5C3.22,15,3,14.78,3,14.5z\\\"></path><path d=\\\"M19.1,14.2l0.87-0.69l-0.88-1.52l-1.03,0.4c-0.16-0.12-0.34-0.22-0.53-0.3L17.38,11h-1.75l-0.16,1.1 c-0.18,0.08-0.36,0.18-0.52,0.3l-1.04-0.41l-0.88,1.52l0.87,0.7c-0.02,0.2-0.03,0.4,0,0.6l-0.87,0.69l0.88,1.52l1.03-0.4 c0.16,0.12,0.34,0.22,0.53,0.3L15.63,18h1.75l0.16-1.1c0.18-0.08,0.36-0.18,0.52-0.3l1.04,0.41l0.88-1.52l-0.87-0.7 C19.12,14.59,19.12,14.4,19.1,14.2z M16.5,15.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C17.5,15.05,17.05,15.5,16.5,15.5z\\\"></path><polygon points=\\\"8,13 12.5,10 8,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"recent_actors\": {\n    \"name\": \"recent_actors\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 6v12c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1zm-3 13c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55.45 1 1 1zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption\": {\n    \"name\": \"closed_caption\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 6.5c0 .28-.22.5-.5.5H10c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5zm7 0c0 .28-.22.5-.5.5H17c-.28 0-.5-.22-.5-.5h-2v3h2c0-.28.22-.5.5-.5h.5c.28 0 .5.22.5.5v.5c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v.5z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_up\": {\n    \"name\": \"volume_up\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L7 9H4c-.55 0-1 .45-1 1zm13.5 2c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 4.45v.2c0 .38.25.71.6.85C17.18 6.53 19 9.06 19 12s-1.82 5.47-4.4 6.5c-.36.14-.6.47-.6.85v.2c0 .63.63 1.07 1.21.85C18.6 19.11 21 15.84 21 12s-2.4-7.11-5.79-8.4c-.58-.23-1.21.22-1.21.85z\\\"></path>\"\n      }\n    }\n  },\n  \"explicit\": {\n    \"name\": \"explicit\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-3v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_play\": {\n    \"name\": \"playlist_play\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M5 10h10c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0-4h10c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm0 8h6c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm9 .88v4.23c0 .39.42.63.76.43l3.53-2.12c.32-.19.32-.66 0-.86l-3.53-2.12c-.34-.19-.76.05-.76.44z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,11.42v4.66c0,0.4,0.44,0.64,0.77,0.42l3.58-2.33c0.3-0.2,0.3-0.64,0-0.84L13.77,11C13.44,10.79,13,11.02,13,11.42z\\\"></path><path d=\\\"M11.25,5h-7.5C3.34,5,3,5.34,3,5.75v0C3,6.16,3.34,6.5,3.75,6.5h7.5C11.66,6.5,12,6.16,12,5.75v0C12,5.34,11.66,5,11.25,5 z\\\"></path><path d=\\\"M3.75,12.75h4.5C8.66,12.75,9,12.41,9,12v0c0-0.41-0.34-0.75-0.75-0.75h-4.5C3.34,11.25,3,11.59,3,12v0 C3,12.41,3.34,12.75,3.75,12.75z\\\"></path><path d=\\\"M11.25,8.12h-7.5C3.34,8.12,3,8.46,3,8.87v0c0,0.41,0.34,0.75,0.75,0.75h7.5c0.41,0,0.75-0.34,0.75-0.75v0 C12,8.46,11.66,8.12,11.25,8.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"volume_down\": {\n    \"name\": \"volume_down\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L9 9H6c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"missed_video_call\": {\n    \"name\": \"missed_video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5zm-6.29 3.79c-.39.39-1.02.39-1.41 0l-3.18-3.18v2.55H5V9.72c0-.28.22-.5.5-.5h3.94v1.11H6.89l3.11 3.1 4.22-4.22.78.79-4.29 4.29z\\\"></path>\"\n      }\n    }\n  },\n  \"lyrics\": {\n    \"name\": \"lyrics\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,9c0-2.04,1.24-3.79,3-4.57V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9c1.1,0,2-0.9,2-2v-2.42 C15.24,12.8,14,11.05,14,9z M10,14H6v-2h4V14z M13,11H6V9h7V11z M13,8H6V6h7V8z\\\"></path><path d=\\\"M20,6.18C19.69,6.07,19.35,6,19,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V3h2V1h-4V6.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,7.5c0-1.48,0.81-2.76,2-3.45V3.5C14,2.67,13.33,2,12.5,2h-9C2.67,2,2,2.67,2,3.5V18l3-3h7.5c0.83,0,1.5-0.67,1.5-1.5 v-2.56C12.81,10.25,12,8.97,12,7.5z M8,12H5v-1.5h3V12z M11,9.25H5v-1.5h6V9.25z M11,6.5H5V5h6V6.5z\\\"></path><path d=\\\"M17,5.21C16.69,5.08,16.36,5,16,5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-5H20V1h-3V5.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interpreter_mode\": {\n    \"name\": \"interpreter_mode\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.5,16.5c-0.83,0-1.5-0.67-1.5-1.5v-2.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5V15C22,15.83,21.33,16.5,20.5,16.5z M20.5,20c0.28,0,0.5-0.22,0.5-0.5c0-0.45,0-1.04,0-1.04c1.51-0.22,2.71-1.4,2.95-2.89C24,15.27,23.76,15,23.46,15 c-0.24,0-0.45,0.17-0.49,0.41c-0.2,1.18-1.23,2.09-2.47,2.09s-2.27-0.9-2.47-2.09C17.99,15.17,17.78,15,17.54,15 c-0.3,0-0.54,0.27-0.5,0.57c0.25,1.5,1.45,2.68,2.95,2.89c0,0,0,0.59,0,1.04C20,19.78,20.22,20,20.5,20z M9,12c-2.21,0-4-1.79-4-4 c0-2.21,1.79-4,4-4c0.47,0,0.92,0.08,1.34,0.23C9.5,5.26,9,6.57,9,8c0,1.43,0.5,2.74,1.34,3.77C9.92,11.92,9.47,12,9,12z M7.11,13.13C5.79,14.05,5,15.57,5,17.22V20H1v-2.78c0-1.12,0.61-2.15,1.61-2.66C3.85,13.92,5.37,13.37,7.11,13.13z M11,8 c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4S11,10.21,11,8z M18.32,20c-1.67-0.81-2.82-2.52-2.82-4.5 c0-0.89,0.23-1.73,0.64-2.45C15.77,13.02,15.39,13,15,13c-2.53,0-4.71,0.7-6.39,1.56C7.61,15.07,7,16.1,7,17.22V20L18.32,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,10c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,5.34,9,7S10.34,10,12,10z M16.87,13.38c-0.62,0-1.12-0.5-1.12-1.12v-1.88 c0-0.62,0.5-1.12,1.13-1.12c0.62,0,1.12,0.5,1.12,1.12v1.88C18,12.87,17.5,13.38,16.87,13.38z M14.66,12.25 c-0.23,0-0.41,0.21-0.37,0.44c0.19,1.12,1.09,2,2.21,2.16c0,0,0,0.44,0,0.78c0,0.21,0.17,0.37,0.38,0.37c0.21,0,0.38-0.17,0.38-0.37 c0-0.34,0-0.78,0-0.78c1.13-0.16,2.03-1.04,2.21-2.16c0.04-0.23-0.14-0.44-0.37-0.44c-0.19,0-0.34,0.14-0.37,0.32 c-0.15,0.88-0.92,1.55-1.85,1.55s-1.69-0.67-1.85-1.55C15,12.39,14.84,12.25,14.66,12.25z M8.38,9.67C7.83,8.92,7.5,8,7.5,7 c0-1,0.33-1.92,0.88-2.67C7.96,4.12,7.5,4,7,4C5.34,4,4,5.34,4,7s1.34,3,3,3C7.5,10,7.96,9.88,8.38,9.67z M4.5,16H1v-1.91 c0-0.7,0.36-1.36,0.97-1.72c1.29-0.76,2.76-1.23,4.33-1.35C5.89,11.22,4.5,12.2,4.5,14.09V16z M6,16v-1.91 c0-0.7,0.36-1.36,0.97-1.72C8.44,11.5,10.16,11,12,11c0.49,0,0.97,0.04,1.45,0.1c-0.82,1.84-0.03,4.01,1.79,4.9H6z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_off\": {\n    \"name\": \"closed_caption_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g enable-background=\\\"new\\\"><path d=\\\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M11,10.5 c0,0.28-0.22,0.5-0.5,0.5H10c-0.28,0-0.5-0.22-0.5-0.5h-2v3h2c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5V14 c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V10.5z M18,10.5c0,0.28-0.22,0.5-0.5,0.5H17 c-0.28,0-0.5-0.22-0.5-0.5h-2v3h2c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5V14c0,0.55-0.45,1-1,1h-3 c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"7k_plus\": {\n    \"name\": \"7k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.95,15H7.76 c-0.5,0-0.86-0.49-0.72-0.97l1.08-3.53H6.25c-0.41,0-0.75-0.34-0.75-0.75v0C5.5,9.34,5.83,9,6.25,9H9c0.67,0,1.15,0.65,0.96,1.29 l-1.3,4.18C8.56,14.79,8.27,15,7.95,15z M14.59,15L14.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7 H11.7c-0.39,0-0.7-0.31-0.7-0.7V9.7C11,9.31,11.31,9,11.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98 C14.17,9.1,14.38,9,14.59,9h0c0.58,0,0.91,0.66,0.56,1.12L13.75,12l1.41,1.88C15.5,14.34,15.17,15,14.59,15z M18.5,12.5h-1v1 c0,0.28-0.22,0.5-0.5,0.5l0,0c-0.28,0-0.5-0.22-0.5-0.5v-1h-1c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1 c0-0.28,0.22-0.5,0.5-0.5l0,0c0.28,0,0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stop_circle\": {\n    \"name\": \"stop_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M15,16H9c-0.55,0-1-0.45-1-1V9 c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v6C16,15.55,15.55,16,15,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M13,12.5c0,0.28-0.22,0.5-0.5,0.5h-5 C7.22,13,7,12.78,7,12.5v-5C7,7.22,7.22,7,7.5,7h5C12.78,7,13,7.22,13,7.5V12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle_outline\": {\n    \"name\": \"pause_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 16c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1zm2-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm2-4c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"hd\": {\n    \"name\": \"hd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8.75 12c-.41 0-.75-.34-.75-.75V13h-2v1.25c0 .41-.34.75-.75.75S6 14.66 6 14.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.75h2V9.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zm3.25-6H17c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-3.5c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5zm1 4.5h2v-3h-2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_from_queue\": {\n    \"name\": \"remove_from_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-4-6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"skip_next\": {\n    \"name\": \"skip_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7.58 16.89l5.77-4.07c.56-.4.56-1.24 0-1.63L7.58 7.11C6.91 6.65 6 7.12 6 7.93v8.14c0 .81.91 1.28 1.58.82zM16 7v10c0 .55.45 1 1 1s1-.45 1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"pause\": {\n    \"name\": \"pause\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8 19c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2v10c0 1.1.9 2 2 2zm6-12v10c0 1.1.9 2 2 2s2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_disabled\": {\n    \"name\": \"closed_caption_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H19c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16l-3.38-3.38C17.84,14.59,18,14.32,18,14v-0.5 c0-0.28-0.22-0.5-0.5-0.5H17c-0.28,0-0.5,0.22-0.5,0.5h-0.17l-1.83-1.83V10.5h2c0,0.28,0.22,0.5,0.5,0.5h0.5 c0.28,0,0.5-0.22,0.5-0.5V10c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v0.17L6.83,4z M20.49,21.9c-0.39,0.39-1.02,0.39-1.41,0 l-1.9-1.9H5c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L2.1,4.93c-0.39-0.39-0.39-1.02,0-1.41c0.39-0.39,1.02-0.39,1.41,0 l16.97,16.97C20.88,20.88,20.88,21.51,20.49,21.9z M11,13.83L10.17,13H10c-0.28,0-0.5,0.22-0.5,0.5h-2v-3h0.17L6.4,9.22 C6.16,9.41,6,9.68,6,10v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V13.83z\\\"></path>\"\n      }\n    }\n  },\n  \"audio_file\": {\n    \"name\": \"audio_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.41,7.41l-4.83-4.83C14.21,2.21,13.7,2,13.17,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2 V8.83C20,8.3,19.79,7.79,19.41,7.41z M15,13h-2v3.61c0,1.28-1,2.41-2.28,2.39c-1.44-0.02-2.56-1.39-2.13-2.91 c0.21-0.72,0.8-1.31,1.53-1.51c0.7-0.19,1.36-0.05,1.88,0.29V12c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1C16,12.55,15.55,13,15,13z M14,9c-0.55,0-1-0.45-1-1V3.5L18.5,9H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.56,5.56l-3.12-3.12C12.16,2.16,11.78,2,11.38,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9 c0.83,0,1.5-0.67,1.5-1.5V6.62C16,6.22,15.84,5.84,15.56,5.56z M12.5,11H11v2.89c0,1-0.68,1.92-1.67,2.08 c-1.37,0.22-2.53-0.95-2.3-2.32c0.12-0.72,0.67-1.34,1.37-1.56c0.6-0.19,1.15-0.08,1.6,0.18V10c0-0.55,0.45-1,1-1h1.5 c0.55,0,1,0.45,1,1C13.5,10.55,13.05,11,12.5,11z M12,7c-0.55,0-1-0.45-1-1V3l4,4H12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8k\": {\n    \"name\": \"8k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,12.5h1.5V14H8V12.5z M8,10h1.5v1.5H8V10z M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M11,14c0,0.55-0.45,1-1,1H7.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H10c0.55,0,1,0.45,1,1V14z M16.59,15 L16.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7H13.7c-0.39,0-0.7-0.31-0.7-0.7V9.7 C13,9.31,13.31,9,13.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98C16.17,9.1,16.38,9,16.59,9l0,0c0.58,0,0.91,0.66,0.56,1.12 L15.75,12l1.41,1.88C17.5,14.34,17.17,15,16.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"4k\": {\n    \"name\": \"4k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-7 9.76c0 .41-.34.75-.75.75H11v.74c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-.75h-2c-.55 0-1-.45-1-1V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h1.5V9.75c0-.41.34-.75.75-.75s.75.34.75.75V12h.25c.41 0 .75.34.75.75v.01zm5.47 1.14c.22.33.13.77-.2.98-.12.08-.26.12-.39.12-.23 0-.45-.11-.59-.32L14.5 12v2.24c0 .41-.34.75-.75.75-.41.01-.75-.33-.75-.74v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v2.24l1.79-2.68c.22-.33.66-.41.98-.2.33.22.41.66.2.98L16.2 12l1.27 1.9z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing_disabled\": {\n    \"name\": \"hearing_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.96,3.3c-0.32-0.39-0.29-0.96,0.07-1.32l0.01-0.01c0.42-0.42,1.12-0.38,1.49,0.08C20.07,3.94,21,6.36,21,9 c0,2.57-0.89,4.94-2.36,6.81l-1.43-1.43C18.33,12.88,19,11.02,19,9C19,6.83,18.23,4.84,16.96,3.3z M7.49,4.66 C8.23,4.24,9.08,4,10,4c2.8,0,5,2.2,5,5c0,0.8-0.23,1.69-0.63,2.54l1.48,1.48c0.02-0.04,0.05-0.08,0.08-0.13 C16.62,11.65,17,10.26,17,9c0-3.93-3.07-7-7-7C8.51,2,7.15,2.44,6.03,3.2L7.49,4.66z M10,6.5c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01 C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41l1.42,1.42c-0.2,0.49-0.35,1-0.43,1.54C2.99,8.47,3.47,9,4.06,9H4.1c0.48,0,0.89-0.35,0.96-0.82 C5.08,8.1,5.1,8.02,5.12,7.95l6.62,6.62c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38C7.56,19.94,7.29,20,7,20 c-0.88,0-1.63-0.58-1.9-1.37C4.97,18.24,4.57,18,4.15,18C3.49,18,3,18.64,3.2,19.26C3.73,20.85,5.23,22,7,22 c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l5.91,5.91 c0.39,0.39,1.02,0.39,1.41,0C20.88,21.51,20.88,20.88,20.49,20.49z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.72,17.42c-0.2,0.2-0.51,0.2-0.71,0l-4.68-4.68c-0.04,0.03-0.08,0.06-0.11,0.09c-0.57,0.43-0.98,0.75-1.21,1.43 c-0.42,1.27-0.97,1.99-1.93,2.49C7.72,16.92,7.32,17,6.92,17c-0.92,0-1.76-0.5-2.3-1.23C4.38,15.45,4.63,15,5.03,15 c0.15,0,0.31,0.06,0.4,0.19C5.79,15.67,6.34,16,6.92,16c0.25,0,0.5-0.05,0.73-0.15c0.6-0.32,1.03-0.74,1.42-1.9 c0.33-0.99,0.95-1.46,1.56-1.92c0,0,0,0,0,0l-2.1-2.1C7.8,9.76,7.24,9.2,7.06,8.48L5.24,6.66C5.14,6.95,5.06,7.25,5.02,7.57 C5,7.82,4.78,8,4.53,8C4.23,8,4,7.74,4.03,7.44C4.09,6.89,4.26,6.38,4.48,5.9L2.58,3.99c-0.2-0.2-0.2-0.51,0-0.71s0.51-0.2,0.71,0 l13.44,13.44C16.91,16.91,16.91,17.23,16.72,17.42z M7.81,6.4l2.79,2.79C10.85,8.85,11,8.45,11,8c0-1.1-0.9-2-2-2 C8.55,6,8.15,6.15,7.81,6.4z M9.04,4C11.26,4,13,5.71,13,7.9c0,0.72-0.22,1.51-0.63,2.24c-0.1,0.19-0.21,0.34-0.32,0.49l0.72,0.72 c0.16-0.22,0.32-0.45,0.47-0.72C13.73,9.76,14,8.78,14,7.9C14,5.15,11.83,3,9.04,3C7.75,3,6.58,3.48,5.69,4.27L6.4,4.98 C7.11,4.37,8.03,4,9.04,4z M15,8c0,1.55-0.6,2.96-1.56,4.02l0.71,0.71C15.29,11.49,16,9.83,16,8c0-2.01-0.85-3.82-2.2-5.09 c-0.2-0.19-0.51-0.19-0.71,0c-0.2,0.2-0.2,0.52,0,0.71C14.26,4.72,15,6.27,15,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fiber_dvr\": {\n    \"name\": \"fiber_dvr\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4.5 10.5h2v3h-2zm13 0h2v1h-2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zM8 13.5c0 .83-.67 1.5-1.5 1.5h-3c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h3c.83 0 1.5.67 1.5 1.5v3zm6.1-3.58l-1.27 4.36c-.12.43-.52.72-.96.72s-.84-.29-.96-.72L9.64 9.92c-.14-.46.21-.92.69-.92.32 0 .6.21.69.52l.85 2.91.85-2.91c.09-.31.37-.52.69-.52.48 0 .83.46.69.92zM21 11.5c0 .6-.4 1.15-.9 1.4l.63 1.48c.19.45-.14.96-.63.96-.28 0-.53-.16-.63-.42L18.65 13H17.5v1.31c0 .38-.31.69-.69.69h-.12c-.38 0-.69-.31-.69-.69V9.64c0-.35.29-.64.64-.64h2.86c.83 0 1.5.67 1.5 1.5v1z\\\"></path>\"\n      }\n    }\n  },\n  \"video_library\": {\n    \"name\": \"video_library\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l5.47 4.1c.27.2.27.6 0 .8L12 14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing\": {\n    \"name\": \"hearing\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5 2.56 0 4.63 1.85 4.95 4.31.06.4.41.69.82.69h.34c.5 0 .89-.44.83-.94C20.49 4.59 17.61 2 14 2c-3.93 0-7 3.07-7 7 0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 1.84 0 3.39-1.24 3.86-2.93.14-.54-.25-1.07-.81-1.07h-.35c-.38 0-.68.27-.81.63-.26.79-1.01 1.37-1.89 1.37zM6.97 1.97c-.43-.43-1.12-.39-1.5.07C3.93 3.94 3 6.36 3 9s.93 5.06 2.47 6.95c.38.46 1.07.5 1.49.08.36-.36.39-.93.07-1.32C5.77 13.16 5 11.17 5 9s.77-4.16 2.04-5.7c.33-.4.29-.97-.07-1.33zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"games\": {\n    \"name\": \"games\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15 7.29V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4.29c0 .13.05.26.15.35l2.5 2.5c.2.2.51.2.71 0l2.5-2.5c.09-.09.14-.21.14-.35zM7.29 9H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h4.29c.13 0 .26-.05.35-.15l2.5-2.5c.2-.2.2-.51 0-.71l-2.5-2.5C7.55 9.05 7.43 9 7.29 9zM9 16.71V21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-4.29c0-.13-.05-.26-.15-.35l-2.5-2.5c-.2-.2-.51-.2-.71 0l-2.5 2.5c-.09.09-.14.21-.14.35zm7.35-7.56l-2.5 2.5c-.2.2-.2.51 0 .71l2.5 2.5c.09.09.22.15.35.15H21c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-4.29c-.14-.01-.26.04-.36.14z\\\"></path>\"\n      }\n    }\n  },\n  \"4k_plus\": {\n    \"name\": \"4k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10.25,13.5H10v0.75 C10,14.66,9.66,15,9.25,15h0c-0.41,0-0.75-0.34-0.75-0.75V13.5h-2c-0.55,0-1-0.45-1-1V9.75C5.5,9.34,5.84,9,6.25,9h0 C6.66,9,7,9.34,7,9.75V12h1.5V9.75C8.5,9.34,8.84,9,9.25,9h0C9.66,9,10,9.34,10,9.75V12h0.25c0.41,0,0.75,0.34,0.75,0.75v0 C11,13.16,10.66,13.5,10.25,13.5z M15.09,15L15.09,15c-0.22,0-0.42-0.1-0.55-0.27L13,12.75v1.55c0,0.39-0.31,0.7-0.7,0.7H12.2 c-0.39,0-0.7-0.31-0.7-0.7V9.7c0-0.39,0.31-0.7,0.7-0.7h0.09C12.69,9,13,9.31,13,9.7v1.55l1.54-1.98C14.67,9.1,14.88,9,15.09,9h0 c0.58,0,0.91,0.66,0.56,1.12L14.25,12l1.41,1.88C16,14.34,15.67,15,15.09,15z M18.5,12.5h-1v1c0,0.28-0.22,0.5-0.5,0.5l0,0 c-0.28,0-0.5-0.22-0.5-0.5v-1h-1c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5l0,0 c0.28,0,0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"call_to_action\": {\n    \"name\": \"call_to_action\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H4c-.55 0-1-.45-1-1v-1c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"play_disabled\": {\n    \"name\": \"play_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l5.9,5.9v6.35c0,0.79,0.87,1.27,1.54,0.84l3.45-2.2l6.08,6.08 c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51C3.12,3.12,2.49,3.12,2.1,3.51z M17.68,12.84 c0.62-0.39,0.62-1.29,0-1.69L9.54,5.98C9.27,5.81,8.97,5.79,8.7,5.87l7.75,7.75L17.68,12.84z\\\"></path></g>\"\n      }\n    }\n  },\n  \"slow_motion_video\": {\n    \"name\": \"slow_motion_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 8.5v7c0 .41.47.65.8.4l4.67-3.5c.27-.2.27-.6 0-.8L10.8 8.1c-.33-.25-.8-.01-.8.4zm1-5.27c0-.64-.59-1.13-1.21-.99-1.12.26-2.18.7-3.12 1.3-.53.34-.61 1.1-.16 1.55.32.32.83.4 1.21.16.77-.49 1.62-.85 2.54-1.05.44-.1.74-.51.74-.97zM5.1 6.51c-.46-.45-1.21-.38-1.55.16-.6.94-1.04 2-1.3 3.12-.14.62.34 1.21.98 1.21.45 0 .87-.3.96-.74.2-.91.57-1.77 1.05-2.53.26-.39.18-.9-.14-1.22zM3.23 13c-.64 0-1.13.59-.99 1.21.26 1.12.7 2.17 1.3 3.12.34.54 1.1.61 1.55.16.32-.32.4-.83.15-1.21-.49-.76-.85-1.61-1.05-2.53-.09-.45-.5-.75-.96-.75zm3.44 7.45c.95.6 2 1.04 3.12 1.3.62.14 1.21-.35 1.21-.98 0-.45-.3-.87-.74-.96-.91-.2-1.77-.57-2.53-1.05-.39-.24-.89-.17-1.21.16-.46.44-.39 1.19.15 1.53zM22 12c0 4.73-3.3 8.71-7.73 9.74-.62.15-1.22-.34-1.22-.98 0-.46.31-.86.75-.97 3.55-.82 6.2-4 6.2-7.79s-2.65-6.97-6.2-7.79c-.44-.1-.75-.51-.75-.97 0-.64.6-1.13 1.22-.98C18.7 3.29 22 7.27 22 12z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_manual_record\": {\n    \"name\": \"fiber_manual_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"8\\\"></circle>\"\n      }\n    }\n  },\n  \"sort_by_alpha\": {\n    \"name\": \"sort_by_alpha\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12.93 2.65c-.2-.2-.51-.2-.71 0l-2.01 2.01h4.72l-2-2.01zm-.7 18.7c.2.2.51.2.71 0l1.98-1.98h-4.66l1.97 1.98zm-1.25-3.62c.6 0 1.01-.6.79-1.16L8.04 7.03c-.18-.46-.63-.76-1.12-.76-.49 0-.94.3-1.12.76l-3.74 9.53c-.22.56.19 1.16.79 1.16.35 0 .67-.22.8-.55l.71-1.9h5.11l.71 1.9c.13.34.45.56.8.56zm-6.01-4.09l1.94-5.18 1.94 5.18H4.97zm16.08 2.5h-5.33l5.72-8.29c.46-.66-.02-1.57-.82-1.57h-6.48c-.44 0-.79.36-.79.8v.01c0 .44.36.8.79.8h5.09l-5.73 8.28c-.46.66.02 1.57.82 1.57h6.72c.44 0 .79-.36.79-.79.02-.45-.34-.81-.78-.81z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_queue\": {\n    \"name\": \"add_to_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1zm-4-6c0 .55-.45 1-1 1h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H9c-.55 0-1-.45-1-1s.45-1 1-1h2V8c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_30\": {\n    \"name\": \"replay_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.07-.48-.49-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24C20.84 9.48 16.94 5 12 5zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"video_label\": {\n    \"name\": \"video_label\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check\": {\n    \"name\": \"playlist_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M13 10H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM3 16h6c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm19.21-3.79l.09.09c.39.39.39 1.02 0 1.41l-5.58 5.59c-.39.39-1.02.39-1.41 0l-3.09-3.09c-.39-.39-.39-1.02 0-1.41l.09-.09c.39-.39 1.02-.39 1.41 0l2.3 2.3 4.78-4.79c.38-.4 1.02-.4 1.41-.01z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.41,9.87l-3.01,3.01l-1.24-1.24c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l1.59,1.59 c0.39,0.39,1.02,0.39,1.41,0l3.36-3.36c0.29-0.29,0.29-0.77,0-1.06l0,0C17.18,9.58,16.7,9.58,16.41,9.87z\\\"></path><path d=\\\"M11.25,5h-7.5C3.34,5,3,5.34,3,5.75v0C3,6.16,3.34,6.5,3.75,6.5h7.5C11.66,6.5,12,6.16,12,5.75v0C12,5.34,11.66,5,11.25,5 z\\\"></path><path d=\\\"M3.75,12.75h4.5C8.66,12.75,9,12.41,9,12v0c0-0.41-0.34-0.75-0.75-0.75h-4.5C3.34,11.25,3,11.59,3,12v0 C3,12.41,3.34,12.75,3.75,12.75z\\\"></path><path d=\\\"M11.25,8.12h-7.5C3.34,8.12,3,8.46,3,8.87v0c0,0.41,0.34,0.75,0.75,0.75h7.5c0.41,0,0.75-0.34,0.75-0.75v0 C12,8.46,11.66,8.12,11.25,8.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"subtitles\": {\n    \"name\": \"subtitles\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM5 12h2c.55 0 1 .45 1 1s-.45 1-1 1H5c-.55 0-1-.45-1-1s.45-1 1-1zm8 6H5c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm6 0h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zm0-4h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"library_books\": {\n    \"name\": \"library_books\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1zm-4 4h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm4-8h-8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_rewind\": {\n    \"name\": \"fast_rewind\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 16.07V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.56.4-.56 1.24 0 1.63l5.77 4.07c.67.47 1.58 0 1.58-.81zm1.66-3.25l5.77 4.07c.66.47 1.58-.01 1.58-.82V7.93c0-.81-.91-1.28-1.58-.82l-5.77 4.07c-.57.4-.57 1.24 0 1.64z\\\"></path>\"\n      }\n    }\n  },\n  \"subscriptions\": {\n    \"name\": \"subscriptions\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 8H5c-.55 0-1-.45-1-1s.45-1 1-1h14c.55 0 1 .45 1 1s-.45 1-1 1zm-2-6H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm5 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6.81 3.56L10 12.73v6.53l5.19-2.82c.35-.19.35-.69 0-.88z\\\"></path>\"\n      }\n    }\n  },\n  \"9k_plus\": {\n    \"name\": \"9k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.5,10h1v1.5h-1V10z M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,14 c0,0.55-0.45,1-1,1H6.75C6.34,15,6,14.66,6,14.25v0c0-0.41,0.34-0.75,0.75-0.75H8.5v-1H7c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1 h2c0.55,0,1,0.45,1,1V14z M14.59,15L14.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7H11.7 c-0.39,0-0.7-0.31-0.7-0.7V9.7C11,9.31,11.31,9,11.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98C14.17,9.1,14.38,9,14.59,9h0 c0.58,0,0.91,0.66,0.56,1.12L13.75,12l1.41,1.88C15.5,14.34,15.17,15,14.59,15z M18.5,12.5h-1v1c0,0.28-0.22,0.5-0.5,0.5l0,0 c-0.28,0-0.5-0.22-0.5-0.5v-1h-1c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5l0,0 c0.28,0,0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"av_timer\": {\n    \"name\": \"av_timer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"7\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><circle cx=\\\"17\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><path d=\\\"M12 3c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-.92c3.31.48 5.87 3.25 6 6.66.14 3.85-3.03 7.2-6.88 7.26C8.19 19.06 5 15.91 5 12c0-1.68.59-3.22 1.58-4.42l4.71 4.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L7.26 5.46c-.38-.38-1-.39-1.4-.02C4.1 7.07 3 9.4 3 12c0 5.04 4.14 9.12 9.21 9 4.7-.11 8.63-4.01 8.78-8.71C21.16 7.19 17.07 3 12 3z\\\"></path>\"\n      }\n    }\n  },\n  \"web\": {\n    \"name\": \"web\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H5c-.55 0-1-.45-1-1v-2.5zM19 18h-2.5V9H20v8c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_mute\": {\n    \"name\": \"volume_mute\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 10v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71V6.41c0-.89-1.08-1.34-1.71-.71L11 9H8c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_off\": {\n    \"name\": \"volume_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3.63 3.63c-.39.39-.39 1.02 0 1.41L7.29 8.7 7 9H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3l3.29 3.29c.63.63 1.71.18 1.71-.71v-4.17l4.18 4.18c-.49.37-1.02.68-1.6.91-.36.15-.58.53-.58.92 0 .72.73 1.18 1.39.91.8-.33 1.55-.77 2.22-1.31l1.34 1.34c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.05 3.63c-.39-.39-1.02-.39-1.42 0zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-3.83-2.4-7.11-5.78-8.4-.59-.23-1.22.23-1.22.86v.19c0 .38.25.71.61.85C17.18 6.54 19 9.06 19 12zm-8.71-6.29l-.17.17L12 7.76V6.41c0-.89-1.08-1.33-1.71-.7zM16.5 12c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z\\\"></path>\"\n      }\n    }\n  },\n  \"replay\": {\n    \"name\": \"replay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 5V2.21c0-.45-.54-.67-.85-.35l-3.8 3.79c-.2.2-.2.51 0 .71l3.79 3.79c.32.31.86.09.86-.36V7c3.73 0 6.68 3.42 5.86 7.29-.47 2.27-2.31 4.1-4.57 4.57-3.57.75-6.75-1.7-7.23-5.01-.07-.48-.49-.85-.98-.85-.6 0-1.08.53-1 1.13.62 4.39 4.8 7.64 9.53 6.72 3.12-.61 5.63-3.12 6.24-6.24C20.84 9.48 16.94 5 12 5z\\\"></path>\"\n      }\n    }\n  },\n  \"surround_sound\": {\n    \"name\": \"surround_sound\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.11 16.89c-.43.43-1.14.39-1.51-.09C4.53 15.39 4 13.69 4 12s.53-3.38 1.59-4.8c.37-.48 1.08-.53 1.51-.1.35.35.39.9.1 1.29C6.4 9.46 6 10.73 6 12s.4 2.53 1.2 3.6c.3.39.26.94-.09 1.29zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm4.9.9c-.35-.35-.39-.9-.09-1.29C17.6 14.54 18 13.27 18 12s-.4-2.53-1.2-3.6c-.3-.39-.26-.95.09-1.3.43-.43 1.14-.39 1.51.09 1.07 1.41 1.6 3.1 1.6 4.8 0 1.69-.53 3.38-1.59 4.8-.37.49-1.08.54-1.51.11zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"forward_10\": {\n    \"name\": \"forward_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.92 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.32 10.42 8.27 7 12 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71l-3.79-3.79c-.31-.31-.85-.09-.85.36V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-8.02 3v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z\\\"></path>\"\n      }\n    }\n  },\n  \"snooze\": {\n    \"name\": \"snooze\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 11h2.63l-3.72 4.35C8.36 16 8.82 17 9.67 17H14c.55 0 1-.45 1-1s-.45-1-1-1h-2.63l3.72-4.35c.55-.65.09-1.65-.76-1.65H10c-.55 0-1 .45-1 1s.45 1 1 1zm11.3-4.58c-.35.42-.98.48-1.41.13l-3.07-2.56c-.42-.36-.48-.99-.12-1.41.35-.42.98-.48 1.41-.13l3.07 2.56c.42.36.48.99.12 1.41zm-18.6 0c.35.43.98.48 1.4.13l3.07-2.56c.43-.36.49-.99.13-1.41-.35-.43-.98-.48-1.4-.13L2.82 5.01c-.42.36-.48.99-.12 1.41zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle\": {\n    \"name\": \"play_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M9.5,14.67V9.33c0-0.79,0.88-1.27,1.54-0.84 l4.15,2.67c0.61,0.39,0.61,1.29,0,1.68l-4.15,2.67C10.38,15.94,9.5,15.46,9.5,14.67z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M8,12.59V7.41c0-0.39,0.44-0.63,0.77-0.42l4.07,2.59 c0.31,0.2,0.31,0.65,0,0.84l-4.07,2.59C8.44,13.22,8,12.98,8,12.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pause_circle_filled\": {\n    \"name\": \"pause_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm4 0c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle_outline\": {\n    \"name\": \"play_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10.8 15.9l4.67-3.5c.27-.2.27-.6 0-.8L10.8 8.1c-.33-.25-.8-.01-.8.4v7c0 .41.47.65.8.4zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"video_file\": {\n    \"name\": \"video_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.17,2H6.01c-1.1,0-2,0.89-2,2L4,20c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8.83c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83 C14.21,2.21,13.7,2,13.17,2z M13,8V3.5L18.5,9H14C13.45,9,13,8.55,13,8z M14,14l1.27-0.67C15.6,13.15,16,13.39,16,13.77v2.46 c0,0.38-0.4,0.62-0.73,0.44L14,16v1c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.56,5.56l-3.12-3.12C12.16,2.16,11.78,2,11.38,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9 c0.83,0,1.5-0.67,1.5-1.5V6.62C16,6.22,15.84,5.84,15.56,5.56z M13,13.04c0,0.4-0.46,0.64-0.79,0.41c-0.22-0.16-0.47-0.33-0.71-0.5 V14c0,0.28-0.22,0.5-0.5,0.5H7.5C7.22,14.5,7,14.28,7,14v-3.5C7,10.22,7.22,10,7.5,10H11c0.28,0,0.5,0.22,0.5,0.5v1.05l0.71-0.5 c0.33-0.23,0.79,0.01,0.79,0.41V13.04z M12,7c-0.55,0-1-0.45-1-1V3l4,4H12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one\": {\n    \"name\": \"repeat_one\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 7h10v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V5H6c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V7zm10 10H7v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.31.31.85.09.85-.36V19h11c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v3zm-4-2.75V9.81c0-.45-.36-.81-.81-.81-.13 0-.25.03-.36.09l-1.49.74c-.21.1-.34.32-.34.55 0 .34.28.62.62.62h.88v3.25c0 .41.34.75.75.75s.75-.34.75-.75z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_circle\": {\n    \"name\": \"playlist_add_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M7,8c0-0.55,0.45-1,1-1h5c0.55,0,1,0.45,1,1v0 c0,0.55-0.45,1-1,1H8C7.45,9,7,8.55,7,8L7,8z M10,14c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h1 C9.55,13,10,13.45,10,14L10,14z M8,12c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h5c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H8z M18,15 h-1v1c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1h-1c-0.55,0-1-0.45-1-1s0.45-1,1-1h1v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1h1c0.55,0,1,0.45,1,1 S18.55,15,18,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M6.75,6h4c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-4C6.34,7.5,6,7.16,6,6.75C6,6.34,6.34,6,6.75,6z M7.75,12.5h-1C6.34,12.5,6,12.16,6,11.75 C6,11.34,6.34,11,6.75,11h1c0.41,0,0.75,0.34,0.75,0.75C8.5,12.16,8.16,12.5,7.75,12.5z M6.75,10C6.34,10,6,9.66,6,9.25 C6,8.84,6.34,8.5,6.75,8.5h4c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75H6.75z M14.75,12.5H14v0.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V12.5h-0.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h0.75v-0.75 c0-0.41,0.34-0.75,0.75-0.75S14,9.84,14,10.25V11h0.75c0.41,0,0.75,0.34,0.75,0.75C15.5,12.16,15.16,12.5,14.75,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_remove\": {\n    \"name\": \"playlist_remove\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.71,21.3c0.39,0.39,1.02,0.39,1.41,0L17,19.41l1.89,1.89c0.39,0.39,1.02,0.39,1.41,0s0.39-1.02,0-1.41L18.41,18 l1.89-1.89c0.39-0.39,0.39-1.02,0-1.41s-1.02-0.39-1.41,0L17,16.59l-1.89-1.89c-0.39-0.39-1.02-0.39-1.41,0s-0.39,1.02,0,1.41 L15.59,18l-1.89,1.89C13.32,20.27,13.32,20.91,13.71,21.3z M14,11c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1s0.45,1,1,1h9 C13.55,12,14,11.55,14,11z M14,7c0-0.55-0.45-1-1-1H4C3.45,6,3,6.45,3,7s0.45,1,1,1h9C13.55,8,14,7.55,14,7z M3,15 c0,0.55,0.45,1,1,1h5c0.55,0,1-0.45,1-1s-0.45-1-1-1H4C3.45,14,3,14.45,3,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,5.75C3,5.34,3.34,5,3.75,5h7.5C11.66,5,12,5.34,12,5.75S11.66,6.5,11.25,6.5h-7.5C3.34,6.5,3,6.16,3,5.75z M3,12 c0-0.41,0.34-0.75,0.75-0.75h4.5C8.66,11.25,9,11.59,9,12s-0.34,0.75-0.75,0.75h-4.5C3.34,12.75,3,12.41,3,12z M12,8.87 c0,0.41-0.34,0.75-0.75,0.75h-7.5C3.34,9.62,3,9.28,3,8.87s0.34-0.75,0.75-0.75h7.5C11.66,8.12,12,8.46,12,8.87z M11.54,16.49 c0.3,0.3,0.77,0.29,1.07,0l1.41-1.41l1.41,1.41c0.29,0.3,0.77,0.3,1.07,0c0.3-0.3,0.29-0.77,0-1.07l-1.41-1.41l1.41-1.41 c0.3-0.29,0.3-0.77,0-1.07c-0.3-0.3-0.77-0.29-1.07,0l-1.41,1.41l-1.41-1.41c-0.29-0.3-0.77-0.3-1.07,0c-0.3,0.3-0.29,0.77,0,1.07 l1.41,1.41l-1.41,1.41C11.24,15.71,11.24,16.19,11.54,16.49z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_5\": {\n    \"name\": \"forward_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18.87 13c-.5 0-.91.37-.98.86-.48 3.37-3.77 5.84-7.42 4.96-2.25-.54-3.91-2.27-4.39-4.53C5.27 10.42 8.22 7 11.95 7v2.79c0 .45.54.67.85.35l3.79-3.79c.2-.2.2-.51 0-.71L12.8 1.85c-.31-.31-.85-.09-.85.35V5c-4.94 0-8.84 4.48-7.84 9.6.6 3.11 2.9 5.5 5.99 6.19 4.83 1.08 9.15-2.2 9.77-6.67.09-.59-.4-1.12-1-1.12zm-6.44 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z\\\"></path>\"\n      }\n    }\n  },\n  \"5k_plus\": {\n    \"name\": \"5k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M9.25,10.5H7.5v1H9 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H6.75C6.34,15,6,14.66,6,14.25v0c0-0.41,0.34-0.75,0.75-0.75H8.5v-1H7c-0.55,0-1-0.45-1-1 V10c0-0.55,0.45-1,1-1h2.25C9.66,9,10,9.34,10,9.75v0C10,10.16,9.66,10.5,9.25,10.5z M14.59,15L14.59,15 c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.5c0,0.41-0.34,0.75-0.75,0.75h0C11.34,15,11,14.66,11,14.25v-4.5 C11,9.34,11.34,9,11.75,9h0c0.41,0,0.75,0.34,0.75,0.75v1.5l1.54-1.98C14.17,9.1,14.38,9,14.59,9h0c0.58,0,0.91,0.66,0.56,1.12 L13.75,12l1.41,1.88C15.5,14.34,15.17,15,14.59,15z M18.5,12.5h-1v1c0,0.28-0.22,0.5-0.5,0.5l0,0c-0.28,0-0.5-0.22-0.5-0.5v-1h-1 c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5l0,0c0.28,0,0.5,0.22,0.5,0.5v1h1 c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"6k\": {\n    \"name\": \"6k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,12.5h1.5V14H8V12.5z M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10.25,10.5 H8v1h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h2.75C10.66,9,11,9.34,11,9.75v0 C11,10.16,10.66,10.5,10.25,10.5z M16.59,15L16.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7H13.7 c-0.39,0-0.7-0.31-0.7-0.7V9.7C13,9.31,13.31,9,13.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98C16.17,9.1,16.38,9,16.59,9l0,0 c0.58,0,0.91,0.66,0.56,1.12L15.75,12l1.41,1.88C17.5,14.34,17.17,15,16.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"10k\": {\n    \"name\": \"10k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,10.5h1.5v3H10V10.5z M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M6.75,15 L6.75,15C6.34,15,6,14.66,6,14.25V10.5H5.25c-0.41,0-0.75-0.34-0.75-0.75v0C4.5,9.34,4.84,9,5.25,9H6.5c0.55,0,1,0.45,1,1v4.25 C7.5,14.66,7.16,15,6.75,15z M13,14c0,0.55-0.45,1-1,1H9.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H12c0.55,0,1,0.45,1,1V14z M17.59,15L17.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.5c0,0.41-0.34,0.75-0.75,0.75h0C14.34,15,14,14.66,14,14.25v-4.5 C14,9.34,14.34,9,14.75,9h0c0.41,0,0.75,0.34,0.75,0.75v1.5l1.54-1.98C17.17,9.1,17.38,9,17.59,9l0,0c0.58,0,0.91,0.66,0.56,1.12 L16.75,12l1.41,1.88C18.5,14.34,18.17,15,17.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3k\": {\n    \"name\": \"3k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,14c0,0.55-0.45,1-1,1H7.25 c-0.41,0-0.75-0.34-0.75-0.75v0c0-0.41,0.34-0.75,0.75-0.75H9.5v-1H8c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1.5v-1 H7.25c-0.41,0-0.75-0.34-0.75-0.75v0C6.5,9.34,6.84,9,7.25,9H10c0.55,0,1,0.45,1,1V14z M16.59,15L16.59,15 c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.5c0,0.41-0.34,0.75-0.75,0.75h0C13.34,15,13,14.66,13,14.25v-4.5 C13,9.34,13.34,9,13.75,9h0c0.41,0,0.75,0.34,0.75,0.75v1.5l1.54-1.98C16.17,9.1,16.38,9,16.59,9l0,0c0.58,0,0.91,0.66,0.56,1.12 L15.75,12l1.41,1.88C17.5,14.34,17.17,15,16.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"library_music\": {\n    \"name\": \"library_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 5h-2v5.37c0 1.27-.9 2.44-2.16 2.6-1.69.23-3.11-1.25-2.8-2.95.2-1.1 1.18-1.95 2.3-2.02.63-.04 1.2.16 1.66.51V6c0-.55.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_smart_record\": {\n    \"name\": \"fiber_smart_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<circle cx=\\\"9\\\" cy=\\\"12\\\" r=\\\"8\\\"></circle><path d=\\\"M17 5.55v.18c0 .37.23.69.57.85C19.6 7.54 21 9.61 21 12s-1.4 4.46-3.43 5.42c-.34.16-.57.47-.57.84v.18c0 .68.71 1.11 1.32.82C21.08 18.01 23 15.23 23 12s-1.92-6.01-4.68-7.27c-.61-.28-1.32.14-1.32.82z\\\"></path>\"\n      }\n    }\n  },\n  \"sd\": {\n    \"name\": \"sd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M13,9h4c0.55,0,1,0.45,1,1v4 c0,0.55-0.45,1-1,1h-4V9z M9.5,13.5v-1H7c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H9.5v-0.5h-2v1H10 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-1h1.5v0.5H9.5z M14.5,13.5h2v-3h-2V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"high_quality\": {\n    \"name\": \"high_quality\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8.75 11c-.41 0-.75-.34-.75-.75V13h-2v1.25c0 .41-.34.75-.75.75S6 14.66 6 14.25v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v1.75h2V9.75c0-.41.34-.75.75-.75s.75.34.75.75v4.5c0 .41-.34.75-.75.75zM18 14c0 .55-.45 1-1 1h-.75v.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"loop\": {\n    \"name\": \"loop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 4V2.21c0-.45-.54-.67-.85-.35l-2.8 2.79c-.2.2-.2.51 0 .71l2.79 2.79c.32.31.86.09.86-.36V6c3.31 0 6 2.69 6 6 0 .79-.15 1.56-.44 2.25-.15.36-.04.77.23 1.04.51.51 1.37.33 1.64-.34.37-.91.57-1.91.57-2.95 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.79.15-1.56.44-2.25.15-.36.04-.77-.23-1.04-.51-.51-1.37-.33-1.64.34C4.2 9.96 4 10.96 4 12c0 4.42 3.58 8 8 8v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.31-.85-.09-.85.36V18z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_pin\": {\n    \"name\": \"fiber_pin\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .83-.67 1.5-1.5 1.5h-2v1.25c0 .41-.34.75-.75.75S4 14.66 4 14.25V10c0-.55.45-1 1-1h2.5c.83 0 1.5.67 1.5 1.5v1zm3.5 2.75c0 .41-.34.75-.75.75s-.75-.34-.75-.75v-4.5c0-.41.34-.75.75-.75s.75.34.75.75v4.5zm7.5-.04c0 .44-.35.79-.79.79-.25 0-.49-.12-.64-.33l-2.31-3.17v2.88c0 .34-.28.62-.62.62h-.01c-.35 0-.63-.28-.63-.62V9.83c0-.46.37-.83.83-.83.27 0 .52.13.67.35l2.25 3.15V9.62c0-.34.28-.62.62-.62h.01c.34 0 .62.28.62.62v4.59zM5.5 10.5h2v1h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"album\": {\n    \"name\": \"album\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_new\": {\n    \"name\": \"fiber_new\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM8.5 14.21c0 .43-.36.79-.79.79-.25 0-.49-.12-.64-.33L4.75 11.5v2.88c0 .35-.28.62-.62.62s-.63-.28-.63-.62V9.79c0-.43.36-.79.79-.79h.05c.26 0 .5.12.65.33l2.26 3.17V9.62c0-.34.28-.62.63-.62s.62.28.62.62v4.59zm5-4.57c0 .35-.28.62-.62.62H11v1.12h1.88c.35 0 .62.28.62.62v.01c0 .35-.28.62-.62.62H11v1.11h1.88c.35 0 .62.28.62.62 0 .35-.28.62-.62.62h-2.53c-.47 0-.85-.38-.85-.85v-4.3c0-.45.38-.83.85-.83h2.53c.35 0 .62.28.62.62v.02zm7 4.36c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1V9.62c0-.34.28-.62.62-.62s.62.28.62.62v3.89h1.13v-2.9c0-.35.28-.62.62-.62s.62.28.62.62v2.89h1.12V9.62c0-.35.28-.62.62-.62s.62.28.62.62V14z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_music\": {\n    \"name\": \"queue_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M14 6H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H4c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1zM4 16h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 6c-1.1 0-2 .9-2 2v6.18c-.31-.11-.65-.18-1-.18-1.84 0-3.28 1.64-2.95 3.54.21 1.21 1.2 2.2 2.41 2.41 1.9.33 3.54-1.11 3.54-2.95V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.25,5h-7.5C3.34,5,3,5.34,3,5.75v0C3,6.16,3.34,6.5,3.75,6.5h7.5C11.66,6.5,12,6.16,12,5.75v0C12,5.34,11.66,5,11.25,5 z\\\"></path><path d=\\\"M3.75,12.5h4.5C8.66,12.5,9,12.16,9,11.75v0C9,11.34,8.66,11,8.25,11h-4.5C3.34,11,3,11.34,3,11.75v0 C3,12.16,3.34,12.5,3.75,12.5z\\\"></path><path d=\\\"M11.25,8h-7.5C3.34,8,3,8.34,3,8.75v0C3,9.16,3.34,9.5,3.75,9.5h7.5C11.66,9.5,12,9.16,12,8.75v0C12,8.34,11.66,8,11.25,8 z\\\"></path><path d=\\\"M17.25,5H15c-0.55,0-1,0.45-1,1v5.21c-0.52-0.23-1.13-0.29-1.77-0.09c-0.79,0.25-1.43,0.9-1.64,1.7 c-0.44,1.67,0.8,3.17,2.39,3.19c1.41,0.01,2.52-1.25,2.52-2.66l0-6.84h1.75C17.66,6.5,18,6.16,18,5.75v0C18,5.34,17.66,5,17.25,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"repeat_on\": {\n    \"name\": \"repeat_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,18c0,0.55-0.45,1-1,1H7v1.79 c0,0.45-0.54,0.67-0.85,0.36l-2.79-2.79c-0.2-0.2-0.2-0.51,0-0.71l2.79-2.79C6.46,14.54,7,14.76,7,15.21V17h10v-3 c0-0.55,0.45-1,1-1s1,0.45,1,1V18z M20.64,6.35l-2.79,2.79C17.54,9.46,17,9.24,17,8.79V7H7v3c0,0.55-0.45,1-1,1s-1-0.45-1-1V6 c0-0.55,0.45-1,1-1h11V3.21c0-0.45,0.54-0.67,0.85-0.36l2.79,2.79C20.84,5.84,20.84,6.15,20.64,6.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one_on\": {\n    \"name\": \"repeat_one_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,18c0,0.55-0.45,1-1,1H7v1.79 c0,0.45-0.54,0.67-0.85,0.36l-2.79-2.79c-0.2-0.2-0.2-0.51,0-0.71l2.79-2.79C6.46,14.54,7,14.76,7,15.21V17h10v-3 c0-0.55,0.45-1,1-1s1,0.45,1,1V18z M10.75,10.5c-0.41,0-0.75-0.34-0.75-0.75S10.34,9,10.75,9h1.5C12.66,9,13,9.34,13,9.75v4.5 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V10.5H10.75z M20.64,6.35l-2.79,2.79C17.54,9.46,17,9.24,17,8.79V7H7v3 c0,0.55-0.45,1-1,1s-1-0.45-1-1V6c0-0.55,0.45-1,1-1h11V3.21c0-0.45,0.54-0.67,0.85-0.36l2.79,2.79 C20.84,5.84,20.84,6.15,20.64,6.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_call\": {\n    \"name\": \"video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5zM13 13h-2v2c0 .55-.45 1-1 1s-1-.45-1-1v-2H7c-.55 0-1-.45-1-1s.45-1 1-1h2V9c0-.55.45-1 1-1s1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"new_releases\": {\n    \"name\": \"new_releases\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"m22.42 11.34-1.86-2.12.26-2.81c.05-.5-.29-.96-.77-1.07l-2.76-.63-1.44-2.43c-.26-.43-.79-.61-1.25-.41L12 3 9.41 1.89c-.46-.2-1-.02-1.25.41L6.71 4.72l-2.75.62c-.49.11-.83.56-.78 1.07l.26 2.8-1.86 2.13c-.33.38-.33.94 0 1.32l1.86 2.12-.26 2.82c-.05.5.29.96.77 1.07l2.76.63 1.44 2.42c.26.43.79.61 1.26.41L12 21l2.59 1.11c.46.2 1 .02 1.25-.41l1.44-2.43 2.76-.63c.49-.11.82-.57.77-1.07l-.26-2.81 1.86-2.12c.34-.36.34-.92.01-1.3zM13 17h-2v-2h2v2zm-1-4c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"7k\": {\n    \"name\": \"7k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.95,15H8.76 c-0.5,0-0.86-0.49-0.72-0.97l1.08-3.53H7.25c-0.41,0-0.75-0.34-0.75-0.75v0C6.5,9.34,6.84,9,7.25,9H10c0.67,0,1.15,0.65,0.96,1.29 l-1.3,4.18C9.57,14.79,9.28,15,8.95,15z M16.59,15L16.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.55c0,0.39-0.31,0.7-0.7,0.7 H13.7c-0.39,0-0.7-0.31-0.7-0.7V9.7C13,9.31,13.31,9,13.7,9h0.09c0.39,0,0.7,0.31,0.7,0.7v1.55l1.54-1.98 C16.17,9.1,16.38,9,16.59,9l0,0c0.58,0,0.91,0.66,0.56,1.12L15.75,12l1.41,1.88C17.5,14.34,17.17,15,16.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"5g\": {\n    \"name\": \"5g\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,13h1v2h-5V9h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-6c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-3 c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v0C17,12.55,17.45,13,18,13z\\\"></path><path d=\\\"M4,13h4v2H4c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h4c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h4c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H4C3.45,7,3,7.45,3,8v4C3,12.55,3.45,13,4,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.5,8H6v1.5h2c0.55,0,1,0.45,1,1V12c0,0.55-0.45,1-1,1H5.5C5.22,13,5,12.78,5,12.5v0C5,12.22,5.22,12,5.5,12H8v-1.5H5.5 C5.22,10.5,5,10.28,5,10V7.5C5,7.22,5.22,7,5.5,7h3C8.78,7,9,7.22,9,7.5v0C9,7.78,8.78,8,8.5,8z\\\"></path></g><g><path d=\\\"M12.5,10.5H14V12h-3V8h3.5C14.78,8,15,7.78,15,7.5v0C15,7.22,14.78,7,14.5,7H11c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3 c0.55,0,1-0.45,1-1v-2c0-0.28-0.22-0.5-0.5-0.5h-2C12.22,9.5,12,9.72,12,10v0C12,10.28,12.22,10.5,12.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"3k_plus\": {\n    \"name\": \"3k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,14c0,0.55-0.45,1-1,1H6.25 c-0.41,0-0.75-0.34-0.75-0.75v0c0-0.41,0.34-0.75,0.75-0.75H8.5v-1H7c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1.5v-1 H6.25c-0.41,0-0.75-0.34-0.75-0.75v0C5.5,9.34,5.84,9,6.25,9H9c0.55,0,1,0.45,1,1V14z M14.59,15L14.59,15 c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.5c0,0.41-0.34,0.75-0.75,0.75h0C11.34,15,11,14.66,11,14.25l-0.03-4.49 C10.96,9.34,11.3,9,11.72,9h0c0.41,0,0.75,0.33,0.75,0.74l0.03,1.51l1.54-1.98C14.17,9.1,14.38,9,14.59,9h0 c0.58,0,0.91,0.66,0.56,1.12L13.75,12l1.41,1.88C15.5,14.34,15.17,15,14.59,15z M18.5,12.5h-1v1c0,0.28-0.22,0.5-0.5,0.5l0,0 c-0.28,0-0.5-0.22-0.5-0.5v-1h-1c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5l0,0 c0.28,0,0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"1k\": {\n    \"name\": \"1k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M9.25,15L9.25,15 c-0.41,0-0.75-0.34-0.75-0.75V10.5H7.75C7.34,10.5,7,10.16,7,9.75v0C7,9.34,7.34,9,7.75,9H9c0.55,0,1,0.45,1,1v4.25 C10,14.66,9.66,15,9.25,15z M15.59,15L15.59,15c-0.22,0-0.42-0.1-0.55-0.27l-1.54-1.98v1.5c0,0.41-0.34,0.75-0.75,0.75h0 C12.34,15,12,14.66,12,14.25v-4.5C12,9.34,12.34,9,12.75,9h0c0.41,0,0.75,0.34,0.75,0.75v1.5l1.54-1.98C15.17,9.1,15.38,9,15.59,9 h0c0.58,0,0.91,0.66,0.56,1.12L14.75,12l1.41,1.88C16.5,14.34,16.17,15,15.59,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"replay_circle_filled\": {\n    \"name\": \"replay_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M18,12.74c-0.12,3.09-2.67,5.64-5.76,5.76 c-3.01,0.12-5.56-1.99-6.12-4.82C5.99,13.07,6.48,12.5,7.1,12.5h0c0.47,0,0.88,0.33,0.98,0.8c0.42,2.07,2.44,3.57,4.72,3.12 c1.56-0.3,2.82-1.56,3.12-3.12c0.5-2.56-1.45-4.8-3.92-4.8v1.79c0,0.45-0.54,0.67-0.85,0.35L8.35,7.85c-0.2-0.2-0.2-0.51,0-0.71 l2.79-2.79C11.46,4.04,12,4.26,12,4.71V6.5C15.39,6.5,18.13,9.32,18,12.74z\\\"></path></g>\"\n      }\n    }\n  },\n  \"speed\": {\n    \"name\": \"speed\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.46 10a1 1 0 0 0-.07 1 7.55 7.55 0 0 1 .52 1.81 8 8 0 0 1-.69 4.73 1 1 0 0 1-.89.53H5.68a1 1 0 0 1-.89-.54A8 8 0 0 1 13 6.06a7.69 7.69 0 0 1 2.11.56 1 1 0 0 0 1-.07 1 1 0 0 0-.17-1.76A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0 .55-8.89 1 1 0 0 0-1.75-.11z\\\"></path><path d=\\\"M10.59 12.59a2 2 0 0 0 2.83 2.83l5.66-8.49z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_none\": {\n    \"name\": \"mic_none\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6.91 6c-.49 0-.9.36-.98.85C16.52 14.2 14.47 16 12 16s-4.52-1.8-4.93-4.15c-.08-.49-.49-.85-.98-.85-.61 0-1.09.54-1 1.14.49 3 2.89 5.35 5.91 5.78V20c0 .55.45 1 1 1s1-.45 1-1v-2.08c3.02-.43 5.42-2.78 5.91-5.78.1-.6-.39-1.14-1-1.14z\\\"></path>\"\n      }\n    }\n  },\n  \"stop\": {\n    \"name\": \"stop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8 6h8c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"music_video\": {\n    \"name\": \"music_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><path d=\\\"M10.84,16.98c1.26-0.17,2.16-1.33,2.16-2.6L13,9h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4.51 c-0.46-0.35-1.02-0.54-1.66-0.51c-1.11,0.07-2.09,0.92-2.3,2.02C7.73,15.73,9.15,17.2,10.84,16.98z\\\"></path></g>\"\n      }\n    }\n  },\n  \"equalizer\": {\n    \"name\": \"equalizer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2s-2 .9-2 2v12c0 1.1.9 2 2 2zm-6 0c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2s-2 .9-2 2v4c0 1.1.9 2 2 2zm10-9v7c0 1.1.9 2 2 2s2-.9 2-2v-7c0-1.1-.9-2-2-2s-2 .9-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam\": {\n    \"name\": \"videocam\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V8.91c0-.89-1.08-1.34-1.71-.71L17 10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle\": {\n    \"name\": \"shuffle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10.59 9.17L6.12 4.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l4.46 4.46 1.42-1.4zm4.76-4.32l1.19 1.19L4.7 17.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17.96 7.46l1.19 1.19c.31.31.85.09.85-.36V4.5c0-.28-.22-.5-.5-.5h-3.79c-.45 0-.67.54-.36.85zm-.52 8.56l-1.41 1.41 3.13 3.13-1.2 1.2c-.31.31-.09.85.36.85h3.79c.28 0 .5-.22.5-.5v-3.79c0-.45-.54-.67-.85-.35l-1.19 1.19-3.13-3.14z\\\"></path>\"\n      }\n    }\n  },\n  \"branding_watermark\": {\n    \"name\": \"branding_watermark\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16h-7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h7c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"2k_plus\": {\n    \"name\": \"2k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,11.5c0,0.55-0.45,1-1,1H7.5v1 h1.75c0.41,0,0.75,0.34,0.75,0.75v0C10,14.66,9.66,15,9.25,15H7c-0.55,0-1-0.45-1-1v-1.5c0-0.55,0.45-1,1-1h1.5v-1H6.75 C6.34,10.5,6,10.16,6,9.75v0C6,9.34,6.34,9,6.75,9H9c0.55,0,1,0.45,1,1V11.5z M14.04,14.73l-1.54-1.98v1.5 c0,0.41-0.34,0.75-0.75,0.75h0C11.34,15,11,14.66,11,14.25v-4.5C11,9.34,11.34,9,11.75,9h0c0.41,0,0.75,0.34,0.75,0.75v1.5 l1.54-1.98C14.17,9.1,14.38,9,14.59,9h0c0.58,0,0.91,0.66,0.56,1.12L13.75,12l1.41,1.88C15.5,14.34,15.17,15,14.59,15h0 C14.38,15,14.17,14.9,14.04,14.73z M18.5,12.5h-1v1c0,0.28-0.22,0.5-0.5,0.5l0,0c-0.28,0-0.5-0.22-0.5-0.5v-1h-1 c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h1v-1c0-0.28,0.22-0.5,0.5-0.5l0,0c0.28,0,0.5,0.22,0.5,0.5v1h1 c0.28,0,0.5,0.22,0.5,0.5v0C19,12.28,18.78,12.5,18.5,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"crop_landscape\": {\n    \"name\": \"crop_landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-1 12H6c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_pound\": {\n    \"name\": \"currency_pound\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.21,17.61c-0.47-0.24-1.03-0.05-1.31,0.4C15.54,18.61,14.93,19,14,19l-4.9,0c0.83-1,1.5-2.34,1.5-4 c0-0.35-0.03-0.69-0.08-1L13,14c0.55,0,1-0.45,1-1s-0.45-1-1-1l-3.18,0C9,10.42,8,9.6,8,8c0-1.93,1.57-3.5,3.5-3.5 c1.2,0,2.26,0.61,2.89,1.53c0.27,0.4,0.77,0.59,1.22,0.4c0.6-0.25,0.8-0.99,0.43-1.53c-0.99-1.45-2.66-2.4-4.54-2.4 C8.46,2.5,6,4.96,6,8c0,1.78,0.79,2.9,1.49,4L7,12c-0.55,0-1,0.45-1,1s0.45,1,1,1l1.47,0c0.08,0.31,0.13,0.64,0.13,1 c0,1.9-1.29,3.11-2.06,3.66C6.2,18.9,6,19.29,6,19.71v0C6,20.42,6.58,21,7.29,21H14c1.55,0,2.95-0.76,3.63-2 C17.91,18.49,17.72,17.86,17.21,17.61z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.05,5.64c0.42-0.18,0.58-0.69,0.35-1.08C12.65,3.33,11.3,2.5,9.75,2.5C7.4,2.5,5.5,4.4,5.5,6.75 c0,1.44,0.67,2.33,1.23,3.25l-0.48,0c-0.41,0-0.75,0.34-0.75,0.75s0.34,0.75,0.75,0.75l1.16,0c0.06,0.25,0.09,0.51,0.09,0.8 c0,1.57-1.02,2.53-1.6,2.95c-0.25,0.18-0.4,0.47-0.4,0.78C5.5,16.57,5.93,17,6.47,17H12c1.14,0,2.11-0.63,2.62-1.54 c0.21-0.38,0.04-0.87-0.36-1.04h0c-0.35-0.15-0.76-0.02-0.95,0.31c-0.26,0.46-0.75,0.77-1.31,0.77l-4.18,0 C8.47,14.72,9,13.65,9,12.3c0-0.28-0.02-0.55-0.06-0.8l2.31,0c0.41,0,0.75-0.34,0.75-0.75S11.66,10,11.25,10l-2.8,0 C7.79,8.65,7,8.02,7,6.75C7,5.23,8.23,4,9.75,4c1,0,1.88,0.54,2.36,1.35C12.3,5.67,12.7,5.79,13.05,5.64z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3mp\": {\n    \"name\": \"3mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M10.75,10H13V9h-1.5 C11.22,9,11,8.78,11,8.5v0C11,8.22,11.22,8,11.5,8H13V7h-2.25C10.34,7,10,6.66,10,6.25v0c0-0.41,0.34-0.75,0.75-0.75h2.75 c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-2.75c-0.41,0-0.75-0.34-0.75-0.75v0C10,10.34,10.34,10,10.75,10z M18,16 c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"control_point\": {\n    \"name\": \"control_point\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_small\": {\n    \"name\": \"photo_size_select_small\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-4c0-1.1-.9-2-2-2H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_weak\": {\n    \"name\": \"hdr_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_strong\": {\n    \"name\": \"center_focus_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-8 7c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_2\": {\n    \"name\": \"exposure_neg_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_16_9\": {\n    \"name\": \"crop_16_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,7H5C3.9,7,3,7.9,3,9v6c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,15H5V9h14V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,7h-11C3.67,7,3,7.67,3,8.5v3C3,12.33,3.67,13,4.5,13h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,7.67,16.33,7,15.5,7z M15.5,11.5h-11v-3h11V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_awesome_motion\": {\n    \"name\": \"auto_awesome_motion\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M13,2H4C2.9,2,2,2.9,2,4v9c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V4h9c0.55,0,1-0.45,1-1v0C14,2.45,13.55,2,13,2z M17,6H8 C6.9,6,6,6.9,6,8v9c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V8h9c0.55,0,1-0.45,1-1v0C18,6.45,17.55,6,17,6z M20,10h-8 c-1.1,0-2,0.9-2,2v8c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-8C22,10.9,21.1,10,20,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_free\": {\n    \"name\": \"crop_free\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5v3c0 .55.45 1 1 1s1-.45 1-1V6c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm1 10c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm15 3c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zm0-15h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"24mp\": {\n    \"name\": \"24mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M6.5,9c0-0.55,0.45-1,1-1h2V7H7.25 C6.84,7,6.5,6.66,6.5,6.25S6.84,5.5,7.25,5.5H10c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H8v1h2.25c0.41,0,0.75,0.34,0.75,0.75 s-0.34,0.75-0.75,0.75H7.5c-0.55,0-1-0.45-1-1V9z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25 C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z M17.75,10H17.5v0.75c0,0.41-0.34,0.75-0.75,0.75S16,11.16,16,10.75V10h-2 c-0.55,0-1-0.45-1-1V6.25c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V8.5H16V6.25c0-0.41,0.34-0.75,0.75-0.75 s0.75,0.34,0.75,0.75V8.5h0.25c0.41,0,0.75,0.34,0.75,0.75S18.16,10,17.75,10z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"4mp\": {\n    \"name\": \"4mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12.5,10.75V10h-2 c-0.55,0-1-0.45-1-1V6.25c0-0.41,0.34-0.75,0.75-0.75S11,5.84,11,6.25V8.5h1.5V6.25c0-0.41,0.34-0.75,0.75-0.75S14,5.84,14,6.25 V8.5h0.25C14.66,8.5,15,8.84,15,9.25S14.66,10,14.25,10H14v0.75c0,0.41-0.34,0.75-0.75,0.75S12.5,11.16,12.5,10.75z M18,16 c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"panorama_horizontal_select\": {\n    \"name\": \"panorama_horizontal_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,5.5c-3.89,0-6.95-0.84-8.69-1.43C2.67,3.85,2,4.33,2,5.02L2,19c0,0.68,0.66,1.17,1.31,0.95 C5.36,19.26,8.1,18.5,12,18.5c3.87,0,6.66,0.76,8.69,1.45C21.34,20.16,22,19.68,22,19l0-14c0-0.68-0.66-1.17-1.31-0.95 C18.66,4.73,15.86,5.5,12,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"portrait\": {\n    \"name\": \"portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_one\": {\n    \"name\": \"looks_one\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 14c-.55 0-1-.45-1-1V9h-1c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_bitcoin\": {\n    \"name\": \"currency_bitcoin\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,7h4c1.1,0,2,0.9,2,2s-0.9,2-2,2h-4V7z M15,17h-5v-4h5c1.1,0,2,0.9,2,2S16.1,17,15,17z M15,4c0-0.55-0.45-1-1-1 s-1,0.45-1,1v1h-2V4c0-0.55-0.45-1-1-1S9,3.45,9,4v1H7C6.45,5,6,5.45,6,6s0.45,1,1,1h1v10H7c-0.55,0-1,0.45-1,1s0.45,1,1,1h2v1 c0,0.55,0.45,1,1,1s1-0.45,1-1v-1h2v1c0,0.55,0.45,1,1,1s1-0.45,1-1v-1c2.21,0,4-1.79,4-4c0-1.45-0.78-2.73-1.94-3.43 C17.65,10.88,18,9.98,18,9c0-1.86-1.27-3.43-3-3.87L15,4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.38,10.75c0.9,0,1.62,0.73,1.62,1.62S13.27,14,12.38,14H8.5v-3.25H12.38z M11.38,6C12.27,6,13,6.73,13,7.62 s-0.73,1.62-1.62,1.62H8.5V6H11.38z M12.5,3.75C12.5,3.34,12.16,3,11.75,3S11,3.34,11,3.75V4.5H9.5V3.75C9.5,3.34,9.16,3,8.75,3 S8,3.34,8,3.75V4.5H6.25C5.84,4.5,5.5,4.84,5.5,5.25S5.84,6,6.25,6H7v8H6.25c-0.41,0-0.75,0.34-0.75,0.75s0.34,0.75,0.75,0.75H8 v0.75C8,16.66,8.34,17,8.75,17s0.75-0.34,0.75-0.75V15.5H11v0.75c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75l0-0.75 c1.67-0.07,3-1.44,3-3.12c0-1.21-0.69-2.26-1.7-2.78c0.44-0.54,0.7-1.22,0.7-1.97c0-1.33-0.83-2.46-2-2.92L12.5,3.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_wide_angle\": {\n    \"name\": \"panorama_wide_angle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_shade\": {\n    \"name\": \"wb_shade\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,14.13L14,14.13c0,0.23,0.09,0.46,0.26,0.63l4.98,4.98c0.17,0.17,0.39,0.26,0.62,0.26h0c0.79,0,1.18-0.95,0.62-1.51 l-4.98-4.98C14.95,12.95,14,13.35,14,14.13z M15,20h2l-3-3v2C14,19.55,14.45,20,15,20z M7.65,4.35L2.85,9.15 C2.54,9.46,2.76,10,3.21,10H4v9c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-9h0.79c0.45,0,0.67-0.54,0.35-0.85L8.35,4.35 C8.16,4.16,7.84,4.16,7.65,4.35z M9,14H7v-4h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_3_2\": {\n    \"name\": \"crop_3_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,6H5C3.9,6,3,6.9,3,8v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M19,16H5V8h14V16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,6h-11C3.67,6,3,6.67,3,7.5v5C3,13.33,3.67,14,4.5,14h11c0.83,0,1.5-0.67,1.5-1.5v-5C17,6.67,16.33,6,15.5,6z M15.5,12.5h-11v-5h11V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hide_image\": {\n    \"name\": \"hide_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5.83L21,18.17V5C21,3.9,20.1,3,19,3z\\\"></path><path d=\\\"M3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L3,5.83V19c0,1.1,0.9,2,2,2h13.17l0.9,0.9 c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51z M7,17c-0.41,0-0.65-0.47-0.4-0.8l2-2.67 c0.2-0.27,0.6-0.27,0.8,0L11.25,16l0.82-1.1l2.1,2.1H7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"exposure\": {\n    \"name\": \"exposure\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.75 7h3.5c.41 0 .75.34.75.75s-.34.75-.75.75h-3.5c-.41 0-.75-.34-.75-.75S6.34 7 6.75 7zM18 19H5L19 5v13c0 .55-.45 1-1 1zm-3.5-3v1.25c0 .41.34.75.75.75s.75-.34.75-.75V16h1.25c.41 0 .75-.34.75-.75s-.34-.75-.75-.75H16v-1.25c0-.41-.34-.75-.75-.75s-.75.34-.75.75v1.25h-1.25c-.41 0-.75.34-.75.75s.34.75.75.75h1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_3\": {\n    \"name\": \"filter_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm15 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.1-.9-2-2-2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v2h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_linear\": {\n    \"name\": \"blur_linear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM4 21h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 4c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm14 4.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"60fps_select\": {\n    \"name\": \"60fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,6v6h-3V6H18z M18,4h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M11,5L11,5 c0-0.55-0.45-1-1-1H6C4.9,4,4,4.9,4,6v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H6V6h4C10.55,6,11,5.55,11,5z M9,10 v2H6v-2H9z M4,22L4,22c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3C5,21.55,4.55,22,4,22z M8,22L8,22 c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3C9,21.55,8.55,22,8,22z M12,22L12,22c-0.55,0-1-0.45-1-1v-3 c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3C13,21.55,12.55,22,12,22z M20,22h-4c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v3C21,21.55,20.55,22,20,22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip_camera_android\": {\n    \"name\": \"flip_camera_android\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z\\\"></path><path d=\\\"M8,9L8,9c0-0.55-0.45-1-1-1H5.09C6.47,5.61,9.05,4,12,4c3.49,0,6.45,2.24,7.54,5.36C19.68,9.75,20.07,10,20.48,10h0 c0.68,0,1.18-0.67,0.96-1.31C20.07,4.79,16.36,2,12,2C8.73,2,5.82,3.58,4,6.01V5c0-0.55-0.45-1-1-1h0C2.45,4,2,4.45,2,5v4 c0,0.55,0.45,1,1,1h4C7.55,10,8,9.55,8,9z\\\"></path><path d=\\\"M16,15L16,15c0,0.55,0.45,1,1,1h1.91c-1.38,2.39-3.96,4-6.91,4c-3.49,0-6.45-2.24-7.54-5.36C4.32,14.25,3.93,14,3.52,14h0 c-0.68,0-1.18,0.67-0.96,1.31C3.93,19.21,7.64,22,12,22c3.27,0,6.18-1.58,8-4.01V19c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-4 c0-0.55-0.45-1-1-1h-4C16.45,14,16,14.45,16,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,10c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S8,8.9,8,10z\\\"></path><path d=\\\"M6.5,7H4.83C5.86,5.21,7.79,4,10,4c2.49,0,4.62,1.52,5.53,3.68C15.61,7.87,15.79,8,15.99,8h0c0.36,0,0.61-0.36,0.47-0.69 C15.4,4.78,12.91,3,10,3C7.44,3,5.22,4.39,4,6.44V4.5C4,4.22,3.78,4,3.5,4h0C3.22,4,3,4.22,3,4.5v3C3,7.78,3.22,8,3.5,8h3 C6.78,8,7,7.78,7,7.5v0C7,7.22,6.78,7,6.5,7z\\\"></path><path d=\\\"M13,12.5L13,12.5c0,0.28,0.22,0.5,0.5,0.5h1.67c-1.04,1.79-2.96,3-5.17,3c-2.49,0-4.62-1.52-5.53-3.68 C4.39,12.13,4.21,12,4.01,12h0c-0.36,0-0.61,0.36-0.47,0.69C4.6,15.22,7.09,17,10,17c2.56,0,4.78-1.39,6-3.44v1.94 c0,0.28,0.22,0.5,0.5,0.5l0,0c0.28,0,0.5-0.22,0.5-0.5v-3c0-0.28-0.22-0.5-0.5-0.5h-3C13.22,12,13,12.22,13,12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"15mp\": {\n    \"name\": \"15mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.75,5.5H9c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12,10.75 c0-0.41,0.34-0.75,0.75-0.75H15V9h-2c-0.55,0-1-0.45-1-1V6.5c0-0.55,0.45-1,1-1h2.75c0.41,0,0.75,0.34,0.75,0.75S16.16,7,15.75,7 H13.5v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1h-2.75C12.34,11.5,12,11.16,12,10.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"flare\": {\n    \"name\": \"flare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 11H2c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zm2.47-3.94l-.72-.72c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l.71.71c.39.39 1.02.39 1.41 0 .39-.38.39-1.02.01-1.4zM12 1c-.56 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zm5.66 5.35c-.39-.39-1.02-.39-1.41 0l-.71.71c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.71-.71c.38-.39.38-1.03 0-1.41zM17 12c0 .56.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zm-5-3c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm3.53 7.94l.71.71c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.71-.71c-.39-.39-1.02-.39-1.41 0-.38.39-.38 1.03 0 1.41zm-9.19.71c.39.39 1.02.39 1.41 0l.71-.71c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-.71.71c-.38.39-.38 1.03 0 1.41zM12 23c.56 0 1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"monochrome_photos\": {\n    \"name\": \"monochrome_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-3.2l-1.2-1.34c-.38-.42-.92-.66-1.49-.66H9.89c-.57 0-1.11.24-1.49.66L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 13c0 .55-.45 1-1 1h-7v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h7c.55 0 1 .45 1 1v10zm-3-5c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_cloudy\": {\n    \"name\": \"wb_cloudy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04C2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_off\": {\n    \"name\": \"motion_photos_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,6c-0.92,0-1.8,0.22-2.58,0.59l7.99,7.99C17.78,13.8,18,12.92,18,12C18,8.69,15.31,6,12,6z\\\"></path><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.03,0,1.42l1.56,1.56c-1.25,1.88-1.88,4.21-1.59,6.7c0.52,4.54,4.21,8.23,8.75,8.75 c2.49,0.28,4.81-0.34,6.69-1.59l1.56,1.56c0.39,0.39,1.03,0.39,1.42,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51 C3.13,3.13,2.49,3.12,2.1,3.51z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l1.47,1.47C6.22,10.2,6,11.08,6,12 c0,3.31,2.69,6,6,6c0.92,0,1.8-0.22,2.58-0.59l1.47,1.47C14.86,19.59,13.48,20,12,20z\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.05l1.45,1.45C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10 C9.96,2,8.07,2.61,6.49,3.66l1.45,1.45C9.14,4.41,10.52,4,12,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wb_twilight\": {\n    \"name\": \"wb_twilight\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.07,9.37l0.71-0.71c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0l-0.71,0.71 c-0.39,0.39-0.39,1.02,0,1.41C18.04,9.76,18.68,9.76,19.07,9.37z\\\"></path><path d=\\\"M21,18H3c-0.55,0-1,0.45-1,1s0.45,1,1,1h18c0.55,0,1-0.45,1-1S21.55,18,21,18z\\\"></path><path d=\\\"M12,7L12,7c0.56,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v1C11,6.55,11.45,7,12,7z\\\"></path><path d=\\\"M4.96,9.34c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L5.66,7.22c-0.39-0.39-1.02-0.39-1.41,0l0,0 c-0.39,0.39-0.39,1.02,0,1.41L4.96,9.34z\\\"></path><path d=\\\"M19,16c0-3.87-3.13-7-7-7s-7,3.13-7,7H19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2,15.25L2,15.25C2,15.66,2.34,16,2.75,16h14.5c0.41,0,0.75-0.34,0.75-0.75v0c0-0.41-0.34-0.75-0.75-0.75H2.75 C2.34,14.5,2,14.84,2,15.25z\\\"></path><path d=\\\"M10,3L10,3C9.59,3,9.25,3.34,9.25,3.75v1C9.25,5.16,9.59,5.5,10,5.5h0c0.41,0,0.75-0.34,0.75-0.75v-1 C10.75,3.34,10.41,3,10,3z\\\"></path><path d=\\\"M16.3,5.78L16.3,5.78c-0.29-0.29-0.77-0.29-1.06,0l-0.71,0.71c-0.29,0.29-0.29,0.77,0,1.06l0,0 c0.29,0.29,0.77,0.29,1.06,0l0.71-0.71C16.59,6.55,16.59,6.07,16.3,5.78z\\\"></path><path d=\\\"M5.41,6.49L4.71,5.78c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06l0.71,0.71c0.29,0.29,0.77,0.29,1.06,0 l0,0C5.71,7.26,5.71,6.78,5.41,6.49z\\\"></path><path d=\\\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grain\": {\n    \"name\": \"grain\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera\": {\n    \"name\": \"photo_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle><path d=\\\"M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_din\": {\n    \"name\": \"crop_din\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"logo_dev\": {\n    \"name\": \"logo_dev\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.68,14.98H6V9h1.71 c1.28,0,1.71,1.03,1.71,1.71l0,2.56C9.42,13.95,9,14.98,7.68,14.98z M12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25 c-0.4,0.01-0.74-0.31-0.75-0.71V9.75c-0.01-0.4,0.31-0.74,0.71-0.75h2.28l0,1.07h-1.92v1.39H12.38z M16.88,14.23 c-0.48,1.11-1.33,0.89-1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z\\\"></path><path d=\\\"M7.77,10.12H7.14v3.77h0.63c0.14,0,0.28-0.05,0.42-0.16c0.14-0.1,0.21-0.26,0.21-0.47v-2.52c0-0.21-0.07-0.37-0.21-0.47 C8.05,10.17,7.91,10.12,7.77,10.12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.46,8.43H5.93v3.15h0.53c0.12,0,0.23-0.04,0.35-0.13c0.12-0.09,0.18-0.22,0.18-0.39v-2.1c0-0.18-0.06-0.31-0.18-0.39 C6.69,8.47,6.58,8.43,6.46,8.43z\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M6.38,12.49h-1.4V7.49h1.43c1.07,0,1.43,0.86,1.43,1.43l0,2.14C7.84,11.63,7.49,12.49,6.38,12.49z M10.31,9.55v0.89H9.33v1.16 h1.61v0.89H9.06c-0.34,0.01-0.62-0.26-0.63-0.59V8.12C8.43,7.78,8.7,7.5,9.03,7.5h1.91l0,0.89H9.33v1.16H10.31z M14.07,11.87 c-0.4,0.93-1.11,0.74-1.43,0L11.47,7.5h0.98l0.9,3.43l0.89-3.43h0.98L14.07,11.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"image_search\": {\n    \"name\": \"image_search\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 15v4c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h3.02c.55 0 1-.45 1-1s-.45-1-1-1H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5c0-.55-.45-1-1-1s-1 .45-1 1zm-2.5 3H6.52c-.42 0-.65-.48-.39-.81l1.74-2.23c.2-.25.58-.26.78-.01l1.56 1.88 2.35-3.02c.2-.26.6-.26.79.01l2.55 3.39c.25.32.01.79-.4.79zm3.8-9.11c.48-.77.75-1.67.69-2.66-.13-2.15-1.84-3.97-3.97-4.2C13.3 1.73 11 3.84 11 6.5c0 2.49 2.01 4.5 4.49 4.5.88 0 1.7-.26 2.39-.7l2.41 2.41c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-2.41-2.4zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z\\\"></path>\"\n      }\n    }\n  },\n  \"timelapse\": {\n    \"name\": \"timelapse\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"11mp\": {\n    \"name\": \"11mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M8.75,5.5H10c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S9.5,11.16,9.5,10.75V7H8.75C8.34,7,8,6.66,8,6.25S8.34,5.5,8.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M13,6.25 c0-0.41,0.34-0.75,0.75-0.75H15c0.55,0,1,0.45,1,1v4.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V7h-0.75 C13.34,7,13,6.66,13,6.25z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"crop_original\": {\n    \"name\": \"crop_original\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4.44-6.19l-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0z\\\"></path>\"\n      }\n    }\n  },\n  \"13mp\": {\n    \"name\": \"13mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.75,5.5H9c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12,10.75 c0-0.41,0.34-0.75,0.75-0.75H15V9h-1.5C13.22,9,13,8.78,13,8.5S13.22,8,13.5,8H15V7h-2.25C12.34,7,12,6.66,12,6.25 s0.34-0.75,0.75-0.75h2.75c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-2.75C12.34,11.5,12,11.16,12,10.75z M18,16c0,0.55-0.45,1-1,1 h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_5_4\": {\n    \"name\": \"crop_5_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,4H5C3.9,4,3,4.9,3,6v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,18H5V6h14V18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,4h-11C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h11c0.83,0,1.5-0.67,1.5-1.5v-9C17,4.67,16.33,4,15.5,4z M15.5,14.5h-11v-9h11V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"timer_10\": {\n    \"name\": \"timer_10\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_red_eye\": {\n    \"name\": \"remove_red_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9_plus\": {\n    \"name\": \"filter_9_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm12 7V8c0-1.1-.9-2-2-2h-1c-1.1 0-2 .9-2 2v1c0 1.1.9 2 2 2h1v1h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c1.1 0 2-.9 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm1-7c0-.55-.45-1-1-1h-1V8c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_video\": {\n    \"name\": \"switch_video\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l2.29 2.29c.63.63 1.71.18 1.71-.71V7.91c0-.89-1.08-1.34-1.71-.71L18 9.5zm-5 6V13H7v2.5l-3.15-3.15c-.2-.2-.2-.51 0-.71L7 8.5V11h6V8.5l3.15 3.15c.2.2.2.51 0 .71L13 15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"photo\": {\n    \"name\": \"photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z\\\"></path>\"\n      }\n    }\n  },\n  \"video_stable\": {\n    \"name\": \"video_stable\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.96,4.01h-16c-1.1,0-2,0.9-2,2v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-12C21.96,4.91,21.06,4.01,19.96,4.01z M20,6v12 H4V6H20z\\\"></path><path d=\\\"M18.42,9.01L7.92,6.18C7.39,6.04,6.84,6.35,6.7,6.88l-1.85,6.87c-0.14,0.53,0.17,1.08,0.71,1.23l10.5,2.83 c0.53,0.14,1.08-0.17,1.23-0.71l1.85-6.87C19.27,9.7,18.95,9.15,18.42,9.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"healing\": {\n    \"name\": \"healing\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_next\": {\n    \"name\": \"navigate_next\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.31 6.71c-.39.39-.39 1.02 0 1.41L13.19 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L10.72 6.7c-.38-.38-1.02-.38-1.41.01z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_5\": {\n    \"name\": \"looks_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h2c1.1 0 2 .9 2 2v2c0 1.11-.9 2-2 2h-3c-.55 0-1-.45-1-1s.45-1 1-1h3v-2h-3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9\": {\n    \"name\": \"filter_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM15 5h-2c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h2v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dirty_lens\": {\n    \"name\": \"dirty_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,5h-3.17l-1.24-1.35C15.22,3.24,14.68,3,14.12,3H9.88c-0.56,0-1.1,0.24-1.48,0.65L7.17,5H4C2.9,5,2,5.9,2,7v12 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M16.66,16.58c-1.14,1.86-3-1.03-3.81,0.09 c-0.39,0.57-0.09,1.49,0.13,2.33c0,0.47-0.38,0.85-0.85,0.85c-0.47,0-0.86-0.38-0.86-0.85c0.14-0.98,0.42-2.05-0.16-2.43 c-0.89-0.59-1.27,2.06-2.8,1.35c-1.39-1.12,1.05-1.29,0.5-3.27c-0.22-0.79-2.28,0.36-2.4-1.24c-0.08-1,1.49-0.74,1.51-1.49 c0.03-0.75-1.03-1.05-0.25-1.91c0.22-0.24,0.71-0.26,0.91-0.19c0.79,0.27,1.55,1.82,2.51,1.19c1.03-0.66-1.88-2.35,0-2.86 c1.64-0.44,1.31,2.08,2.65,2.44c1.94,0.52,2.65-4.55,4.41-2.33c1.85,2.33-3.43,2.27-2.85,4.01c0.34,1.01,2.15-1.2,2.76,0.53 c0.64,1.83-3.09,0.82-3.04,1.66C15.08,15.29,17.43,15.01,16.66,16.58z M18.14,18.01c-0.47,0-0.86-0.38-0.86-0.86 s0.38-0.86,0.86-0.86c0.47,0,0.86,0.38,0.86,0.86S18.62,18.01,18.14,18.01z\\\"></path></g>\"\n      }\n    }\n  },\n  \"raw_on\": {\n    \"name\": \"raw_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.5,9H4c-0.55,0-1,0.45-1,1v4.31C3,14.69,3.31,15,3.69,15h0.11c0.38,0,0.69-0.31,0.69-0.69V13h1.1l0.72,1.59 C6.43,14.84,6.68,15,6.95,15h0c0.5,0,0.83-0.51,0.64-0.97L7.1,12.9C7.6,12.6,8,12.1,8,11.5v-1C8,9.68,7.32,9,6.5,9z M6.5,11.5h-2 v-1h2V11.5z\\\"></path><path d=\\\"M11.5,9c-0.73,0-1.37,0.5-1.55,1.21L8.98,14.1C8.86,14.56,9.21,15,9.68,15h0c0.33,0,0.62-0.23,0.7-0.55l0.24-0.95h1.75 l0.23,0.95c0.08,0.32,0.37,0.55,0.71,0.55h0c0.47,0,0.82-0.44,0.71-0.9l-0.97-3.88C12.87,9.5,12.23,9,11.5,9L11.5,9z M11,12 l0.25-1h0.5L12,12H11z\\\"></path><path d=\\\"M19.84,9.55L19.24,12l-0.56-2.26C18.58,9.3,18.19,9,17.74,9l0,0c-0.45,0-0.84,0.3-0.94,0.74L16.24,12l-0.6-2.45 C15.56,9.23,15.27,9,14.93,9h0c-0.47,0-0.82,0.44-0.71,0.9l1.09,4.38C15.43,14.7,15.81,15,16.24,15l0,0c0.43,0,0.81-0.3,0.92-0.72 l0.58-2.32l0.58,2.32C18.43,14.7,18.81,15,19.24,15l0,0c0.43,0,0.81-0.3,0.92-0.72l1.09-4.38C21.37,9.44,21.02,9,20.55,9h0 C20.21,9,19.92,9.23,19.84,9.55z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"raw_off\": {\n    \"name\": \"raw_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.55,9c-0.33,0-0.63,0.23-0.71,0.55L19.24,12l-0.56-2.26C18.58,9.3,18.19,9,17.74,9S16.9,9.3,16.8,9.74L16.24,12 l-0.6-2.45C15.56,9.23,15.27,9,14.93,9c-0.47,0-0.82,0.44-0.71,0.9l0.5,1.99l2.42,2.42c0-0.01,0.01-0.02,0.01-0.03l0.58-2.32 l0.58,2.32C18.43,14.7,18.81,15,19.24,15s0.81-0.3,0.92-0.72l1.09-4.38C21.37,9.44,21.02,9,20.55,9z\\\"></path><path d=\\\"M3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L6.17,9H4c-0.55,0-1,0.45-1,1v4.31 C3,14.69,3.31,15,3.69,15h0.11c0.38,0,0.69-0.31,0.69-0.69V13h1.1l0.72,1.59C6.43,14.84,6.68,15,6.95,15 c0.5,0,0.83-0.51,0.64-0.97L7.1,12.9C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.98,14.1C8.86,14.56,9.21,15,9.68,15h0 c0.33,0,0.62-0.23,0.7-0.55l0.24-0.95h0.04l8.4,8.4c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51z M6.5,11.5 h-2v-1h2V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_5\": {\n    \"name\": \"filter_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm15 8v-2c0-1.1-.9-2-2-2h-2V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3v2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama\": {\n    \"name\": \"panorama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.9 12.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 13c.19-.26.57-.27.78-.02z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_none\": {\n    \"name\": \"filter_none\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_camera_ios\": {\n    \"name\": \"flip_camera_ios\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5h-3.17l-1.24-1.35C15.22,3.24,14.68,3,14.12,3H9.88c-0.56,0-1.1,0.24-1.48,0.65L7.17,5H4C2.9,5,2,5.9,2,7v12 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M13.67,17.7C13.15,17.89,12.59,18,12,18c-2.76,0-5-2.24-5-5H5l2.5-2.5 L10,13H8c0,2.21,1.79,4,4,4c0.46,0,0.91-0.08,1.32-0.23c0.19-0.07,0.39-0.03,0.53,0.11C14.11,17.14,14.01,17.57,13.67,17.7z M16.5,15.5L14,13h2c0-2.21-1.79-4-4-4c-0.46,0-0.91,0.08-1.32,0.23c-0.19,0.07-0.39,0.03-0.53-0.11 C9.89,8.86,9.99,8.43,10.33,8.3C10.85,8.11,11.41,8,12,8c2.76,0,5,2.24,5,5h2L16.5,15.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,5h-2l-1.71-1.71C12.11,3.11,11.85,3,11.59,3H8.41C8.15,3,7.89,3.11,7.71,3.29L6,5H4C3.45,5,3,5.45,3,6v9 c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V6C17,5.45,16.55,5,16,5z M10,14c-2.21,0-4-1.79-4-4H4.5l2-2l2,2H7c0,1.65,1.35,3,3,3 c0.44,0,0.85-0.1,1.23-0.27l0.73,0.73C11.38,13.8,10.72,14,10,14z M13.5,12l-2-2H13c0-1.65-1.35-3-3-3C9.56,7,9.15,7.1,8.77,7.27 L8.04,6.54C8.62,6.2,9.28,6,10,6c2.21,0,4,1.79,4,4h1.5L13.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_7\": {\n    \"name\": \"brightness_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6c-.39-.39-1.02-.39-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69l2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"12mp\": {\n    \"name\": \"12mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,9c0-0.55,0.45-1,1-1h2V7h-2.25 C12.34,7,12,6.66,12,6.25s0.34-0.75,0.75-0.75h2.75c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1h-2v1h2.25c0.41,0,0.75,0.34,0.75,0.75 s-0.34,0.75-0.75,0.75H12V9z M7.75,5.5H9c0.55,0,1,0.45,1,1v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75 C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25 C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_to_photos\": {\n    \"name\": \"add_to_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 9h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1s.45-1 1-1h3V6c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_actual\": {\n    \"name\": \"photo_size_select_actual\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5.63 16.19l2.49-3.2c.2-.25.58-.26.78-.01l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.41-.01-.65-.49-.39-.82z\\\"></path>\"\n      }\n    }\n  },\n  \"burst_mode\": {\n    \"name\": \"burst_mode\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm4 0c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1s-1-.45-1-1V6c0-.55.45-1 1-1zm16 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11.64 16.19l1.47-1.86c.2-.25.57-.25.78-.01l1.4 1.68 2.1-2.71c.2-.26.59-.26.79 0l2.21 2.9c.25.33.02.8-.4.8h-7.96c-.41.01-.65-.47-.39-.8z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_wide_angle_select\": {\n    \"name\": \"panorama_wide_angle_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,4C8.03,4,5.15,4.63,3,5c-0.55,1.97-1,3.92-1,7c0,3.03,0.45,5.06,1,7c2.15,0.37,4.98,1,9,1c3.97,0,6.85-0.63,9-1 c0.57-2.02,1-3.99,1-7c0-3.03-0.45-5.06-1-7C18.85,4.63,16.02,4,12,4z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"currency_lira\": {\n    \"name\": \"currency_lira\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,15.84l-1.47,0.92C6.86,17.18,6,16.7,6,15.91c0-0.34,0.18-0.66,0.47-0.85L9,13.48v-2.36l-1.47,0.92 C6.86,12.46,6,11.98,6,11.19c0-0.34,0.18-0.66,0.47-0.85L9,8.76V4c0-0.55,0.45-1,1-1s1,0.45,1,1v3.51l2.47-1.55 C14.14,5.54,15,6.02,15,6.81c0,0.34-0.18,0.66-0.47,0.85L11,9.87l0.01,2.35l2.46-1.54c0.67-0.42,1.53,0.06,1.53,0.85 c0,0.34-0.18,0.66-0.47,0.85L11,14.59V19c2.47,0,4.52-1.79,4.93-4.15c0.08-0.49,0.49-0.85,0.98-0.85c0.61,0,1.09,0.54,1,1.14 C17.37,18.46,14.48,21,11,21h-1c-0.55,0-1-0.45-1-1V15.84z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.75,3C8.34,3,8,3.34,8,3.75v3.57L5.85,8.67C5.62,8.81,5.49,9.07,5.5,9.34c0.03,0.57,0.69,0.89,1.17,0.58L8,9.09v1.77 l-2.13,1.33c-0.23,0.15-0.38,0.4-0.37,0.67c0.02,0.58,0.66,0.92,1.15,0.61L8,12.63V16c0,0.55,0.45,1,1,1h0.5 c2.73,0,4.99-1.99,5.43-4.59c0.07-0.42-0.2-0.83-0.62-0.9c-0.42-0.07-0.79,0.21-0.86,0.61c-0.3,1.91-1.95,3.38-3.95,3.38v-3.81 l2.65-1.66c0.22-0.14,0.35-0.38,0.35-0.64v0c0-0.59-0.65-0.95-1.15-0.64L9.5,9.92V8.15l2.65-1.66c0.22-0.14,0.35-0.38,0.35-0.64v0 c0-0.59-0.65-0.95-1.15-0.64L9.5,6.38V3.75C9.5,3.34,9.16,3,8.75,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"slideshow\": {\n    \"name\": \"slideshow\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9.04v5.92c0 .42.48.65.81.39l3.7-2.96c.25-.2.25-.58 0-.78l-3.7-2.96c-.33-.26-.81-.03-.81.39zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_auto\": {\n    \"name\": \"wb_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.85 12.65h2.3L8 9zM22.72 7c-.42 0-.77.3-.85.7l-1.07 5.59-1.31-5.51c-.11-.46-.52-.78-.99-.78s-.88.32-.98.78l-1.31 5.51-1.07-5.59c-.08-.4-.44-.7-.85-.7-.01 0-.03.01-.04.01C12.78 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.17 0 5.9-1.85 7.2-4.52.2.32.55.52.94.52.51 0 .95-.35 1.07-.84L18.5 9.9l1.29 5.26c.12.49.57.84 1.07.84.52 0 .96-.36 1.08-.86l1.61-7.08c.13-.54-.28-1.06-.83-1.06zm-11.79 9c-.38 0-.72-.24-.84-.6L9.6 14H6.4l-.49 1.4c-.13.36-.46.6-.84.6-.62 0-1.05-.61-.84-1.19l2.44-6.86C6.87 7.38 7.4 7 8 7s1.13.38 1.34.94l2.44 6.86c.2.59-.23 1.2-.85 1.2z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_auto\": {\n    \"name\": \"motion_photos_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,9L4,9c0.26,0.26,0.34,0.63,0.25,0.98c-0.35,1.36-0.36,2.87,0.1,4.38c0.88,2.91,3.44,5.1,6.44,5.55 c5.52,0.81,10.19-4.06,9.03-9.62c-0.65-3.13-3.23-5.61-6.37-6.16c-1.21-0.21-2.38-0.15-3.46,0.13C9.64,4.35,9.26,4.26,9.01,4.01l0,0 C8.45,3.45,8.73,2.52,9.48,2.32c1.47-0.38,3.06-0.44,4.7-0.09c3.98,0.86,7.09,4.18,7.7,8.2c1.04,6.81-4.82,12.58-11.64,11.42 C6.23,21.16,2.98,17.99,2.2,14c-0.31-1.59-0.24-3.12,0.12-4.53C2.52,8.72,3.45,8.45,4,9z M7,5.5C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5 S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6 S8.69,18,12,18z M8.61,14.63l2.43-6.46C11.19,7.77,11.57,7.5,12,7.5s0.82,0.27,0.97,0.67l2.43,6.46c0.16,0.42-0.15,0.87-0.6,0.87 c-0.27,0-0.52-0.17-0.61-0.43l-0.56-1.61h-3.23l-0.57,1.62c-0.09,0.26-0.33,0.43-0.61,0.43C8.76,15.5,8.45,15.05,8.61,14.63z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_enhanced_select\": {\n    \"name\": \"hdr_enhanced_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14,9h-1v1c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V9h-1 C9.45,9,9,8.55,9,8v0c0-0.55,0.45-1,1-1h1V6c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v1h1c0.55,0,1,0.45,1,1v0C15,8.55,14.55,9,14,9 z\\\"></path><path d=\\\"M10,16H7c-0.28,0-0.5,0.22-0.5,0.5v5C6.5,21.78,6.72,22,7,22h3c0.82,0,1.5-0.67,1.5-1.5v-3C11.5,16.67,10.82,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path><path d=\\\"M16.5,16H14c-0.55,0-1,0.45-1,1v4.31c0,0.38,0.31,0.69,0.69,0.69h0.11c0.38,0,0.69-0.31,0.69-0.69V20h1.1l0.72,1.59 c0.11,0.25,0.36,0.41,0.63,0.41h0c0.5,0,0.83-0.51,0.64-0.97L17.1,19.9c0.5-0.3,0.9-0.8,0.9-1.4v-1C18,16.67,17.33,16,16.5,16z M16.5,18.5h-2v-1h2V18.5z\\\"></path><path d=\\\"M3.5,18h-2v-1.25C1.5,16.34,1.16,16,0.75,16h0C0.34,16,0,16.34,0,16.75v4.5C0,21.66,0.34,22,0.75,22h0 c0.41,0,0.75-0.34,0.75-0.75V19.5h2v1.75C3.5,21.66,3.84,22,4.25,22h0C4.66,22,5,21.66,5,21.25v-4.5C5,16.34,4.66,16,4.25,16h0 c-0.41,0-0.75,0.34-0.75,0.75V18z\\\"></path><path d=\\\"M22,18.5v-1.25c0-0.41-0.34-0.75-0.75-0.75l0,0c-0.41,0-0.75,0.34-0.75,0.75v1.25h-1.25c-0.41,0-0.75,0.34-0.75,0.75l0,0 c0,0.41,0.34,0.75,0.75,0.75h1.25v1.25c0,0.41,0.34,0.75,0.75,0.75l0,0c0.41,0,0.75-0.34,0.75-0.75V20h1.25 c0.41,0,0.75-0.34,0.75-0.75l0,0c0-0.41-0.34-0.75-0.75-0.75H22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_6\": {\n    \"name\": \"filter_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-7-2h2c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2h-2V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm0-4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_on\": {\n    \"name\": \"mic_external_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.22,7H4.78C4.3,6.47,4,5.77,4,5c0-1.66,1.34-3,3-3s3,1.34,3,3C10,5.77,9.7,6.47,9.22,7z M16.24,2.01 C18.32,2.13,20,4.08,20,6.16L20,21c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1l0-14.91c0-0.96-0.64-1.86-1.58-2.05 C15.14,3.78,14,4.76,14,6l0,11.84c0,2.08-1.68,4.03-3.76,4.15C7.92,22.13,6,20.29,6,18H5.45c-0.26,0-0.47-0.19-0.5-0.45L4.11,9.1 C4.05,8.51,4.51,8,5.1,8H8.9c0.59,0,1.05,0.51,1,1.1l-0.85,8.45C9.02,17.81,8.8,18,8.55,18H8c0,1.24,1.14,2.22,2.42,1.96 c0.94-0.19,1.58-1.09,1.58-2.05L12,6C12,3.71,13.92,1.87,16.24,2.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_8\": {\n    \"name\": \"filter_8\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-7-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_drama\": {\n    \"name\": \"filter_drama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6.17c-2.09 0-3.95-1.53-4.15-3.61C1.79 12.01 3.66 10 6 10c1.92 0 3.53 1.36 3.91 3.17.1.48.5.83.98.83.61 0 1.11-.55.99-1.15-.43-2.24-2.11-4.03-4.29-4.63 1.1-1.46 2.89-2.37 4.89-2.2 2.88.25 5.01 2.82 5.01 5.71V12h1.37c1.45 0 2.79.97 3.07 2.4.39 1.91-1.08 3.6-2.93 3.6z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_album\": {\n    \"name\": \"photo_album\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M15.24,10.55L13.5,9.5l-1.74,1.05 c-0.33,0.2-0.76-0.04-0.76-0.43V4h5v6.12C16,10.51,15.58,10.75,15.24,10.55z M7.6,17.2l1.38-1.83c0.2-0.27,0.6-0.27,0.8,0L11,17 l2.23-2.97c0.2-0.27,0.6-0.27,0.8,0l2.38,3.17c0.25,0.33,0.01,0.8-0.4,0.8H8C7.59,18,7.35,17.53,7.6,17.2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M14.5,2h-9C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-13C16,2.67,15.33,2,14.5,2z M12.28,9.64L11,9L9.72,9.64C9.39,9.8,9,9.56,9,9.19V4h4v5.19C13,9.56,12.61,9.8,12.28,9.64z M6.6,14.2l1.12-1.5 c0.2-0.27,0.6-0.27,0.8,0L9.5,14l1.48-1.97c0.2-0.27,0.6-0.27,0.8,0l1.62,2.17c0.25,0.33,0.01,0.8-0.4,0.8H7 C6.59,15,6.35,14.53,6.6,14.2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"image_not_supported\": {\n    \"name\": \"image_not_supported\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19l-0.78-0.78L18,18l-4.59-4.59L3.59,3.59v0L2.81,2.81c-0.39-0.39-1.02-0.39-1.41,0C1,3.2,1,3.83,1.39,4.22 L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61c0.39,0.39,1.02,0.39,1.41,0C21.58,22.22,21.58,21.58,21.19,21.19z M6.02,18 c-0.42,0-0.65-0.48-0.39-0.81l2.49-3.2c0.2-0.25,0.58-0.26,0.78-0.01l2.1,2.53L12.17,15l3,3H6.02z M21,18.17L5.83,3H19 c1.1,0,2,0.9,2,2V18.17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><g><path d=\\\"M16.72,16.72L3.28,3.28c-0.2-0.2-0.51-0.2-0.71,0s-0.2,0.51,0,0.71L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.42,1.42 c0.2,0.2,0.51,0.2,0.71,0S16.91,16.91,16.72,16.72z M6,14l2-2.67l1.35,1.81l1.05-1.32L12.59,14H6z M16,14.59L5.41,4H15 c0.55,0,1,0.45,1,1V14.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"looks_6\": {\n    \"name\": \"looks_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 6h-3v2h2c1.1 0 2 .9 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.1.9-2 2-2h3c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_frames\": {\n    \"name\": \"filter_frames\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-4L12.71.71c-.39-.39-1.02-.39-1.41 0L8 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 16H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h3.52l3.52-3.5L15.52 6H19c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM17 8H7c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_5\": {\n    \"name\": \"brightness_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31l2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6c-.39-.39-1.02-.39-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"16mp\": {\n    \"name\": \"16mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.75,5.5H9c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12,10.5v-4c0-0.55,0.45-1,1-1 h2.75c0.41,0,0.75,0.34,0.75,0.75S16.16,7,15.75,7H13.5v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H13 C12.45,11.5,12,11.05,12,10.5z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"vrpano\": {\n    \"name\": \"vrpano\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.69,4.05C18.66,4.73,15.86,5.5,12,5.5c-3.89,0-6.95-0.84-8.69-1.43C2.67,3.85,2,4.33,2,5.02V19 c0,0.68,0.66,1.17,1.31,0.95C5.36,19.26,8.1,18.5,12,18.5c3.87,0,6.66,0.76,8.69,1.45C21.34,20.16,22,19.68,22,19V5 C22,4.32,21.34,3.84,20.69,4.05z M17.28,15.26C15.62,15.1,13.84,15,12,15c-1.87,0-3.63,0.1-5.28,0.27 C6.27,15.31,6,14.79,6.29,14.45l2.5-3c0.2-0.24,0.57-0.24,0.77,0l1.62,1.94l2.44-2.93c0.2-0.24,0.57-0.24,0.77,0l3.32,3.99 C17.99,14.79,17.72,15.31,17.28,15.26z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8mp\": {\n    \"name\": \"8mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,6.5c0-0.55,0.45-1,1-1h2.5 c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H11c-0.55,0-1-0.45-1-1V6.5z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14 h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5 c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"6.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"flash_off\": {\n    \"name\": \"flash_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.12 11.5c.39-.67-.09-1.5-.86-1.5h-1.87l2.28 2.28.45-.78zm.16-8.05c.33-.67-.15-1.45-.9-1.45H8c-.55 0-1 .45-1 1v.61l6.13 6.13 3.15-6.29zm2.16 14.43L4.12 3.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L7 9.27V12c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l2.65-4.55 3.44 3.44c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"animation\": {\n    \"name\": \"animation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,2c-2.71,0-5.05,1.54-6.22,3.78c-1.28,0.67-2.34,1.72-3,3C3.54,9.95,2,12.29,2,15c0,3.87,3.13,7,7,7 c2.71,0,5.05-1.54,6.22-3.78c1.28-0.67,2.34-1.72,3-3C20.46,14.05,22,11.71,22,9C22,5.13,18.87,2,15,2z M9,20c-2.76,0-5-2.24-5-5 c0-1.12,0.37-2.16,1-3c0,3.87,3.13,7,7,7C11.16,19.63,10.12,20,9,20z M12,17c-2.76,0-5-2.24-5-5c0-1.12,0.37-2.16,1-3 c0,3.86,3.13,6.99,7,7C14.16,16.63,13.12,17,12,17z M16.7,13.7C16.17,13.89,15.6,14,15,14c-2.76,0-5-2.24-5-5 c0-0.6,0.11-1.17,0.3-1.7C10.83,7.11,11.4,7,12,7c2.76,0,5,2.24,5,5C17,12.6,16.89,13.17,16.7,13.7z M19,12c0-3.86-3.13-6.99-7-7 c0.84-0.63,1.87-1,3-1c2.76,0,5,2.24,5,5C20,10.12,19.63,11.16,19,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip\": {\n    \"name\": \"flip\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-7 20c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v20c0 .55.45 1 1 1zm7-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_7_5\": {\n    \"name\": \"crop_7_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,5H5C3.9,5,3,5.9,3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7C21,5.9,20.1,5,19,5z M19,17H5V7h14V17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,5h-11C3.67,5,3,5.67,3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5z M15.5,13.5h-11v-7h11V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tonality\": {\n    \"name\": \"tonality\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_1\": {\n    \"name\": \"brightness_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"10\\\"></circle></g></g></g></g>\"\n      }\n    }\n  },\n  \"collections\": {\n    \"name\": \"collections\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-10.6-3.47l1.63 2.18 2.58-3.22c.2-.25.58-.25.78 0l2.96 3.7c.26.33.03.81-.39.81H9c-.41 0-.65-.47-.4-.8l2-2.67c.2-.26.6-.26.8 0zM2 7v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"image_aspect_ratio\": {\n    \"name\": \"image_aspect_ratio\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H5c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"flash_auto\": {\n    \"name\": \"flash_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v10c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l5.19-8.9c.39-.67-.09-1.5-.86-1.5H9l3.38-7.59c.29-.67-.2-1.41-.92-1.41H4c-.55 0-1 .45-1 1zm15-1c-.6 0-1.13.38-1.34.94L14.22 9.8c-.2.59.23 1.2.85 1.2.38 0 .72-.24.84-.6L16.4 9h3.2l.49 1.4c.13.36.46.6.84.6.62 0 1.05-.61.84-1.19l-2.44-6.86C19.13 2.38 18.6 2 18 2zm-1.15 5.65L18 4l1.15 3.65h-2.3z\\\"></path>\"\n      }\n    }\n  },\n  \"vignette\": {\n    \"name\": \"vignette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_vintage\": {\n    \"name\": \"filter_vintage\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nature\": {\n    \"name\": \"nature\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 16.12c3.37-.4 6.01-3.19 6.16-6.64.17-3.87-3.02-7.25-6.89-7.31-3.92-.05-7.1 3.1-7.1 7 0 3.47 2.52 6.34 5.83 6.89V20H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-5v-3.88z\\\"></path>\"\n      }\n    }\n  },\n  \"thermostat_auto\": {\n    \"name\": \"thermostat_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,12V6c0-1.66-1.34-3-3-3S5,4.34,5,6v6c-1.21,0.91-2,2.37-2,4c0,1.12,0.38,2.14,1,2.97V19h0.02c0.91,1.21,2.35,2,3.98,2 s3.06-0.79,3.98-2H12v-0.03c0.62-0.83,1-1.85,1-2.97C13,14.37,12.21,12.91,11,12z M5,16c0-0.94,0.45-1.84,1.2-2.4L7,13V6 c0-0.55,0.45-1,1-1s1,0.45,1,1v7l0.8,0.6c0.75,0.57,1.2,1.46,1.2,2.4H5z M17.81,4L17.81,4c-0.48,0-0.92,0.3-1.09,0.75L14,12.02 C13.82,12.49,14.17,13,14.67,13h0c0.31,0,0.58-0.19,0.68-0.48L16,10.7h3.63l0.64,1.82c0.1,0.29,0.38,0.48,0.68,0.48l0,0 c0.51,0,0.86-0.51,0.68-0.98L18.9,4.75C18.73,4.3,18.3,4,17.81,4z M16.47,9.39l1.31-3.72h0.08l1.31,3.72H16.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"looks\": {\n    \"name\": \"looks\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10c-3.47 0-6.36 2.54-6.91 5.86-.1.6.39 1.14 1 1.14.49 0 .9-.36.98-.85C7.48 13.79 9.53 12 12 12s4.52 1.79 4.93 4.15c.08.49.49.85.98.85.61 0 1.09-.54.99-1.14C18.36 12.54 15.47 10 12 10zm0-4C6.3 6 1.61 10.34 1.05 15.9c-.05.59.41 1.1 1.01 1.1.51 0 .94-.38.99-.88C3.49 11.57 7.34 8 12 8s8.51 3.57 8.96 8.12c.05.5.48.88.99.88.59 0 1.06-.51 1-1.1C22.39 10.34 17.7 6 12 6z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_on\": {\n    \"name\": \"grid_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H5c-.55 0-1-.45-1-1v-3h4v4zm0-6H4v-4h4v4zm0-6H4V5c0-.55.45-1 1-1h3v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm5 12h-3v-4h4v3c0 .55-.45 1-1 1zm1-6h-4v-4h4v4zm0-6h-4V4h3c.55 0 1 .45 1 1v3z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant\": {\n    \"name\": \"assistant\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"texture\": {\n    \"name\": \"texture\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.58 3.08L3.15 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L21 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.95 3l-8.88 8.88v2.83L14.78 3h-2.83zM5.07 3c-1.1 0-2 .9-2 2v2l4-4h-2zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83l8.88-8.88V9.29L9.36 21z\\\"></path>\"\n      }\n    }\n  },\n  \"contrast\": {\n    \"name\": \"contrast\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,22c5.52,0,10-4.48,10-10S17.52,2,12,2S2,6.48,2,12S6.48,22,12,22z M13,4.07c3.94,0.49,7,3.85,7,7.93s-3.05,7.44-7,7.93 V4.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10.75,3.55C13.98,3.92,16.5,6.67,16.5,10 s-2.52,6.08-5.75,6.45V3.55z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flash_on\": {\n    \"name\": \"flash_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 3v9c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l5.19-8.9c.39-.67-.09-1.5-.86-1.5H13l2.49-6.65c.25-.65-.23-1.35-.93-1.35H8c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"filter\": {\n    \"name\": \"filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.56 10.81l-2.35 3.02-1.56-1.88c-.2-.25-.58-.24-.78.01l-1.74 2.23c-.26.33-.02.81.39.81h8.98c.41 0 .65-.47.4-.8l-2.55-3.39c-.19-.26-.59-.26-.79 0zM2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"incomplete_circle\": {\n    \"name\": \"incomplete_circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera_front\": {\n    \"name\": \"photo_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,5h-3.17l-1.24-1.35C15.22,3.24,14.68,3,14.12,3H9.88C9.32,3,8.78,3.24,8.41,3.65L7.17,5H4C2.9,5,2,5.9,2,7v12 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M12,9c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C10,9.9,10.9,9,12,9z M16,17H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,14.21,11.01,14,12,14s1.93,0.21,2.78,0.58C15.52,14.9,16,15.62,16,16.43V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_center_focus\": {\n    \"name\": \"filter_center_focus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zm-7-9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_front\": {\n    \"name\": \"camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 12.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V3c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v9.5zm-6.15 6.35c-.31-.31-.85-.09-.85.36V20H6c-.55 0-1 .45-1 1s.45 1 1 1h4v.79c0 .45.54.67.85.35l1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79zM18 20h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_filter\": {\n    \"name\": \"photo_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.02 10.99V18c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h7c.55 0 1-.45 1-1s-.45-1-1-1H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2H19c1.1 0 2-.89 2-2v-8.01c0-.55-.44-.99-.99-.99s-.99.44-.99.99zm-5.77-.24L12.46 9c-.18-.39-.73-.39-.91 0l-.79 1.75-1.76.79c-.39.18-.39.73 0 .91l1.75.79.79 1.76c.18.39.73.39.91 0l.79-1.75 1.76-.79c.39-.18.39-.73 0-.91l-1.75-.8zm4.69-4.69l-.6-1.32c-.13-.29-.55-.29-.69 0l-.6 1.32-1.32.6c-.29.13-.29.55 0 .69l1.32.6.6 1.32c.13.29.55.29.69 0l.6-1.32 1.32-.6c.29-.13.29-.55 0-.69l-1.32-.6z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_2\": {\n    \"name\": \"exposure_plus_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM7 7c-.55 0-1 .45-1 1v3H3c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1H8V8c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_photosphere\": {\n    \"name\": \"panorama_photosphere\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68 C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68 C16.49,18.96,14.37,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edit\": {\n    \"name\": \"edit\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_1\": {\n    \"name\": \"exposure_plus_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 7c-.55 0-1 .45-1 1v3H5c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm11 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"circle\": {\n    \"name\": \"circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.47,2,2,6.47,2,12s4.47,10,10,10s10-4.47,10-10S17.53,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"9mp\": {\n    \"name\": \"9mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,9c-0.55,0-1-0.45-1-1V6.5 c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-2.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75H13 V9H11z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1 v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M18,16c0,0.55-0.45,1-1,1 h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"6.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"movie_creation\": {\n    \"name\": \"movie_creation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L15 4h-2l1.82 3.64c.08.16-.04.36-.22.36h-1.98c-.38 0-.73-.21-.89-.55L10 4H8l1.82 3.64c.08.16-.04.36-.22.36H7.62c-.38 0-.73-.21-.9-.55L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-.55-.45-1-1-1h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"leak_remove\": {\n    \"name\": \"leak_remove\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.12 12.04c.5-.05.88-.48.88-.99 0-.59-.51-1.06-1.1-1-1.5.15-2.9.61-4.16 1.3l1.48 1.48c.9-.41 1.87-.69 2.9-.79zm.88 3.05c0-.61-.54-1.09-1.14-1-.38.06-.75.16-1.11.28l1.62 1.62c.37-.15.63-.49.63-.9zM13.97 4.14c.06-.59-.4-1.11-1-1.11-.5 0-.94.37-.99.87-.1 1.03-.38 2.01-.79 2.91l1.48 1.48c.69-1.26 1.15-2.66 1.3-4.15zm-4.04.02c.1-.6-.39-1.14-1-1.14-.41 0-.75.26-.9.62l1.62 1.62c.13-.35.22-.72.28-1.1zm10.51 14.72L5.12 3.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l2.15 2.15c-.59.41-1.26.7-1.99.82-.48.1-.84.5-.84 1 0 .61.54 1.09 1.14 1 1.17-.19 2.23-.68 3.13-1.37L8.73 10c-1.34 1.1-3 1.82-4.81 1.99-.5.05-.88.48-.88.99 0 .59.51 1.06 1.1 1 2.28-.23 4.36-1.15 6.01-2.56l2.48 2.48c-1.4 1.65-2.33 3.72-2.56 6-.06.59.4 1.11 1 1.11.5 0 .94-.37.99-.87.18-1.82.9-3.48 1.99-4.82l1.43 1.43c-.69.9-1.18 1.96-1.37 3.13-.1.6.39 1.14 1 1.14.49 0 .9-.36.98-.85.12-.73.42-1.4.82-1.99l2.13 2.13c.39.39 1.02.39 1.41 0 .38-.41.38-1.04-.01-1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"10mp\": {\n    \"name\": \"10mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.5,7H15v3h-1.5V7z M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11.75,18.5 L11.75,18.5c-0.41,0-0.75-0.34-0.75-0.75V14h-1v2.25C10,16.66,9.66,17,9.25,17h0c-0.41,0-0.75-0.34-0.75-0.75V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75h0C6.34,18.5,6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v4.25 C12.5,18.16,12.16,18.5,11.75,18.5z M14.25,18.5L14.25,18.5c-0.41,0-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17 c0.55,0,1,0.45,1,1V16c0,0.55-0.45,1-1,1h-2v0.75C15,18.16,14.66,18.5,14.25,18.5z M10,6.5v4.25c0,0.41-0.34,0.75-0.75,0.75h0 c-0.41,0-0.75-0.34-0.75-0.75V7H7.75C7.34,7,7,6.66,7,6.25v0C7,5.84,7.34,5.5,7.75,5.5H9C9.55,5.5,10,5.95,10,6.5z M16.5,10.5 c0,0.55-0.45,1-1,1H13c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1V10.5z M15,14h1.5v1.5H15V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hdr_on\": {\n    \"name\": \"hdr_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.25 9c-.41 0-.75.34-.75.75V11h-2V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75v-4.5C8 9.34 7.66 9 7.25 9zM21 11.5v-1c0-.83-.67-1.5-1.5-1.5H17c-.55 0-1 .45-1 1v4.25c0 .41.34.75.75.75s.75-.34.75-.75V13h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.96l-.49-1.14c.5-.3.9-.8.9-1.4zm-3.5 0v-1h2v1h-2zM13 9h-3c-.28 0-.5.22-.5.5v5c0 .28.22.5.5.5h3c.82 0 1.5-.68 1.5-1.5v-3c0-.82-.68-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"gradient\": {\n    \"name\": \"gradient\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V6c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_high\": {\n    \"name\": \"auto_fix_high\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M20.45,6l0.49-1.06L22,4.45c0.39-0.18,0.39-0.73,0-0.91l-1.06-0.49L20.45,2c-0.18-0.39-0.73-0.39-0.91,0l-0.49,1.06 L18,3.55c-0.39,0.18-0.39,0.73,0,0.91l1.06,0.49L19.55,6C19.72,6.39,20.28,6.39,20.45,6z\\\"></path><path d=\\\"M8.95,6l0.49-1.06l1.06-0.49c0.39-0.18,0.39-0.73,0-0.91L9.44,3.06L8.95,2C8.78,1.61,8.22,1.61,8.05,2L7.56,3.06L6.5,3.55 c-0.39,0.18-0.39,0.73,0,0.91l1.06,0.49L8.05,6C8.22,6.39,8.78,6.39,8.95,6z\\\"></path><path d=\\\"M19.55,13.5l-0.49,1.06L18,15.05c-0.39,0.18-0.39,0.73,0,0.91l1.06,0.49l0.49,1.06c0.18,0.39,0.73,0.39,0.91,0l0.49-1.06 L22,15.95c0.39-0.18,0.39-0.73,0-0.91l-1.06-0.49l-0.49-1.06C20.28,13.11,19.72,13.11,19.55,13.5z\\\"></path><path d=\\\"M17.71,9.12l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83 c0.39,0.39,1.02,0.39,1.41,0l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.21,11.21l-1.41-1.41l1.38-1.38l1.41,1.41 L14.21,11.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cases\": {\n    \"name\": \"cases\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,5V3c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v2H7C5.9,5,5,5.9,5,7v9c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2 H18z M16,5h-4V3h4V5z M2,9L2,9c-0.55,0-1,0.45-1,1v10c0,1.1,0.9,2,2,2h15c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H3V10 C3,9.45,2.55,9,2,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_stories\": {\n    \"name\": \"auto_stories\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18.15,1.35l-4,4C14.05,5.45,14,5.57,14,5.71v8.17c0,0.43,0.51,0.66,0.83,0.37l4-3.6c0.11-0.09,0.17-0.23,0.17-0.37V1.71 C19,1.26,18.46,1.04,18.15,1.35z M22.47,5.2C22,4.96,21.51,4.76,21,4.59v12.03C19.86,16.21,18.69,16,17.5,16 c-1.9,0-3.78,0.54-5.5,1.58V5.48C10.38,4.55,8.51,4,6.5,4C4.71,4,3.02,4.44,1.53,5.2C1.2,5.36,1,5.71,1,6.08v12.08 c0,0.76,0.81,1.23,1.48,0.87C3.69,18.4,5.05,18,6.5,18c2.07,0,3.98,0.82,5.5,2c1.52-1.18,3.43-2,5.5-2c1.45,0,2.81,0.4,4.02,1.04 C22.19,19.4,23,18.93,23,18.17V6.08C23,5.71,22.8,5.36,22.47,5.2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_a_photo\": {\n    \"name\": \"add_a_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 8c0 .55.45 1 1 1s1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1H5V2c0-.55-.45-1-1-1s-1 .45-1 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2z\\\"></path><circle cx=\\\"13\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><path d=\\\"M21 6h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65h-6.4c.17.3.28.63.28 1 0 1.1-.9 2-2 2H6v1c0 1.1-.9 2-2 2-.37 0-.7-.11-1-.28V20c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_on\": {\n    \"name\": \"blur_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"compare\": {\n    \"name\": \"compare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1zm0 15H5l5-6v6zm9-15h-5v2h4c.55 0 1 .45 1 1v12l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_1\": {\n    \"name\": \"exposure_neg_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1zm15 6h-2V7.38L14 8.4V6.7L18.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_off\": {\n    \"name\": \"mic_external_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,6c0-1.24,1.14-2.22,2.42-1.96C17.36,4.24,18,5.13,18,6.09v9.08l2,2V6.16c0-2.08-1.68-4.03-3.76-4.15 C13.92,1.87,12,3.71,12,6v3.17l2,2V6z\\\"></path><path d=\\\"M10,5c0-1.66-1.34-3-3-3C6.38,2,5.81,2.19,5.33,2.5l4.15,4.15C9.8,6.18,10,5.61,10,5z\\\"></path><path d=\\\"M1.39,2.81L1.39,2.81C1,3.2,1,3.83,1.39,4.22L5.17,8H5.1c-0.59,0-1.05,0.51-1,1.1l0.85,8.45C4.98,17.81,5.2,18,5.45,18H6 c0,2.34,2.01,4.21,4.39,3.98c2.08-0.2,3.61-2.06,3.61-4.15l0-1l5.78,5.78c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L2.81,2.81C2.42,2.42,1.78,2.42,1.39,2.81z M12,17.91c0,0.96-0.64,1.86-1.58,2.05 C9.14,20.22,8,19.24,8,18h0.55c0.26,0,0.47-0.19,0.5-0.45l0.52-5.16L12,14.83V17.91z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transform\": {\n    \"name\": \"transform\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 16H9c-.55 0-1-.45-1-1V4h.79c.45 0 .67-.54.35-.85l-1.79-1.8c-.2-.2-.51-.2-.71 0l-1.79 1.8c-.31.31-.09.85.36.85H6v2H3c-.55 0-1 .45-1 1s.45 1 1 1h3v8c0 1.1.9 2 2 2h8v2h-.79c-.45 0-.67.54-.35.85l1.79 1.79c.2.2.51.2.71 0l1.79-1.79c.32-.31.09-.85-.35-.85H18v-2h3c.55 0 1-.45 1-1s-.45-1-1-1zm-5-2h2V8c0-1.1-.9-2-2-2h-6v2h5c.55 0 1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_back\": {\n    \"name\": \"video_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l3.15,3.13 C21.46,16.97,22,16.74,22,16.3V7.7c0-0.44-0.54-0.67-0.85-0.35L18,10.48z M5.6,15.2l1.38-1.83c0.2-0.27,0.6-0.27,0.8,0L9,15 l2.23-2.97c0.2-0.27,0.6-0.27,0.8,0l2.38,3.17c0.25,0.33,0.01,0.8-0.4,0.8H6C5.59,16,5.35,15.53,5.6,15.2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"adjust\": {\n    \"name\": \"adjust\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"tune\": {\n    \"name\": \"tune\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18c0 .55.45 1 1 1h5v-2H4c-.55 0-1 .45-1 1zM3 6c0 .55.45 1 1 1h9V5H4c-.55 0-1 .45-1 1zm10 14v-1h7c.55 0 1-.45 1-1s-.45-1-1-1h-7v-1c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1zM7 10v1H4c-.55 0-1 .45-1 1s.45 1 1 1h3v1c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1s-1 .45-1 1zm14 2c0-.55-.45-1-1-1h-9v2h9c.55 0 1-.45 1-1zm-5-3c.55 0 1-.45 1-1V7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_before\": {\n    \"name\": \"navigate_before\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.91 6.71c-.39-.39-1.02-.39-1.41 0L8.91 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L11.03 12l3.88-3.88c.38-.39.38-1.03 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_cw\": {\n    \"name\": \"rotate_90_degrees_cw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.86,18.46c2.65,3.45,7.11,4.37,10.74,2.79c0.61-0.27,0.74-1.09,0.27-1.56l-0.05-0.05c-0.29-0.29-0.72-0.35-1.1-0.19 c-2.96,1.24-6.59,0.37-8.58-2.62c-1.58-2.37-1.55-5.37,0.05-7.73C6.6,7.03,8.8,6.03,11,6.03v1.76c0,0.45,0.54,0.67,0.86,0.36 l2.79-2.79c0.2-0.2,0.2-0.51,0-0.71l-2.8-2.79C11.54,1.54,11,1.76,11,2.21v1.8c-2.76,0-5.52,1.25-7.34,3.78 C1.38,10.96,1.46,15.37,3.86,18.46z\\\"></path><g><path d=\\\"M17.7,7.71c-0.39-0.39-1.02-0.39-1.41,0l-4.59,4.58c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59c0.39,0.39,1.02,0.39,1.41,0 l4.59-4.59c0.39-0.39,0.39-1.02,0-1.41L17.7,7.71z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M12.94,7.06l-2.88,2.88c-0.59,0.58-0.59,1.53,0,2.12l2.88,2.88c0.58,0.59,1.53,0.59,2.12,0l2.88-2.88 c0.59-0.58,0.59-1.53,0-2.12l-2.88-2.88C14.47,6.47,13.53,6.47,12.94,7.06z\\\"></path><path d=\\\"M2.04,11.79C2.39,15,5,17.6,8.21,17.96c1.35,0.15,2.62-0.09,3.74-0.61c0.47-0.22,0.58-0.85,0.21-1.22l0,0 c-0.22-0.22-0.56-0.28-0.84-0.15c-1.02,0.48-2.21,0.66-3.45,0.41c-2.16-0.44-3.89-2.2-4.28-4.38C2.97,8.53,5.64,5.5,9,5.5v1.04 C9,6.99,9.54,7.21,9.86,6.9l1.79-1.79c0.2-0.2,0.2-0.51,0-0.71l-1.8-1.79C9.54,2.29,9,2.51,9,2.96V4C4.88,4,1.58,7.57,2.04,11.79 z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"autofps_select\": {\n    \"name\": \"autofps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12.03,6.3 11.97,6.3 10.95,9.19 13.05,9.19\\\"></polygon><path d=\\\"M4,22L4,22c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3C3,21.55,3.45,22,4,22z\\\"></path><path d=\\\"M12,15c3.31,0,6-2.69,6-6s-2.69-6-6-6S6,5.69,6,9S8.69,15,12,15z M12,5L12,5c0.38,0,0.71,0.23,0.85,0.59l2.12,5.65 c0.14,0.37-0.13,0.76-0.53,0.76h0c-0.24,0-0.45-0.15-0.53-0.38l-0.49-1.41h-2.83l-0.5,1.41C10.01,11.85,9.8,12,9.56,12h0 c-0.39,0-0.67-0.39-0.53-0.76l2.12-5.65C11.29,5.23,11.62,5,12,5z\\\"></path><path d=\\\"M8,22L8,22c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3C7,21.55,7.45,22,8,22z\\\"></path><path d=\\\"M12,22L12,22c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3C11,21.55,11.45,22,12,22z\\\"></path><path d=\\\"M15,18v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-4C15.45,17,15,17.45,15,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wb_iridescent\": {\n    \"name\": \"wb_iridescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 15h12c.55 0 1-.45 1-1v-3.95c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1V14c0 .55.45 1 1 1zm5-13v1.05c0 .55.45.95 1 .95s1-.4 1-.95V2c0-.55-.45-1-1-1s-1 .45-1 1zm7.34 2.3l-.38.38c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l.38-.38c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0zM13 22v-.96c0-.55-.45-1-1-1s-1 .45-1 1V22c0 .55.45 1 1 1s1-.45 1-1zm6.74-3.61l-.39-.39c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l.38.39c.39.39 1.02.39 1.41 0l.01-.01c.39-.38.39-1.02 0-1.4zM4.25 5.71l.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39c-.39-.39-1.02-.39-1.41 0-.38.39-.38 1.03 0 1.41zm1.42 14.08l.38-.38c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-.38.38c-.39.39-.39 1.02 0 1.41.38.39 1.02.39 1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_front\": {\n    \"name\": \"video_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l3.15,3.13 C21.46,16.97,22,16.74,22,16.3V7.7c0-0.44-0.54-0.67-0.85-0.35L18,10.48z M10,8c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S8.9,8,10,8z M14,16H6v-0.57c0-0.81,0.48-1.53,1.22-1.85C8.07,13.21,9.01,13,10,13c0.99,0,1.93,0.21,2.78,0.58C13.52,13.9,14,14.62,14,15.43V16 z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_fish_eye\": {\n    \"name\": \"panorama_fish_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off\": {\n    \"name\": \"hdr_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 14.25V13h1.1l.72 1.59c.11.25.36.41.63.41.5 0 .83-.51.64-.96l-.49-1.14c.5-.3.9-.8.9-1.4v-1c0-.83-.67-1.5-1.5-1.5H17c-.55 0-1 .45-1 1v3.9l1.04 1.04c.27-.11.46-.38.46-.69zm0-3.75h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.82-.68-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm8.03 10.53l-18-18c-.29-.29-.76-.29-1.05 0-.29.29-.29.76 0 1.05l4.98 4.98c-.27.11-.46.38-.46.69V11h-2V9.75c0-.41-.34-.75-.75-.75S3 9.34 3 9.75v4.5c0 .41.34.75.75.75s.75-.34.75-.75V12.5h2v1.75c0 .41.34.75.75.75s.75-.34.75-.75V10.1l1.5 1.5v2.9c0 .28.22.5.5.5h2.5c.12 0 .24-.01.36-.04l7.11 7.11c.29.29.76.29 1.05 0 .29-.28.29-.75.01-1.04z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_awesome_mosaic\": {\n    \"name\": \"auto_awesome_mosaic\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,5v14c0,1.1,0.89,2,2,2h6V3H5C3.89,3,3,3.9,3,5z M19,3h-6v8h8V5C21,3.9,20.1,3,19,3z M13,21h6c1.1,0,2-0.9,2-2v-6h-8V21 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rotate_right\": {\n    \"name\": \"rotate_right\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.83 4.83L12.7 2.7c-.62-.62-1.7-.18-1.7.71v.66C7.06 4.56 4 7.92 4 12c0 3.64 2.43 6.71 5.77 7.68.62.18 1.23-.32 1.23-.96v-.03c0-.43-.27-.82-.68-.94C7.82 17.03 6 14.73 6 12c0-2.97 2.16-5.43 5-5.91v1.53c0 .89 1.07 1.33 1.7.71l2.13-2.08c.4-.38.4-1.02 0-1.42zm4.84 4.93c-.16-.55-.38-1.08-.66-1.59-.31-.57-1.1-.66-1.56-.2l-.01.01c-.31.31-.38.78-.17 1.16.2.37.36.76.48 1.16.12.42.51.7.94.7h.02c.65 0 1.15-.62.96-1.24zM13 18.68v.02c0 .65.62 1.14 1.24.96.55-.16 1.08-.38 1.59-.66.57-.31.66-1.1.2-1.56l-.02-.02c-.31-.31-.78-.38-1.16-.17-.37.21-.76.37-1.16.49-.41.12-.69.51-.69.94zm4.44-2.65c.46.46 1.25.37 1.56-.2.28-.51.5-1.04.67-1.59.18-.62-.31-1.24-.96-1.24h-.02c-.44 0-.82.28-.94.7-.12.4-.28.79-.48 1.17-.21.38-.13.86.17 1.16z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_tilt_shift\": {\n    \"name\": \"filter_tilt_shift\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 3.23c0-.64-.59-1.13-1.21-.99-1.12.26-2.18.7-3.12 1.3-.53.34-.61 1.1-.16 1.55.32.32.83.4 1.21.16.77-.49 1.62-.85 2.54-1.05.44-.1.74-.51.74-.97zm6.33.32c-.94-.6-2-1.04-3.12-1.3-.62-.14-1.21.34-1.21.98 0 .45.3.87.74.96.91.2 1.77.57 2.53 1.05.39.24.89.17 1.21-.16.46-.44.39-1.19-.15-1.53zM20.77 11c.64 0 1.13-.59.99-1.21-.26-1.12-.7-2.18-1.3-3.12-.34-.53-1.1-.61-1.55-.16-.32.32-.4.83-.16 1.21.49.77.85 1.62 1.05 2.53.1.45.51.75.97.75zM5.1 6.51c-.46-.45-1.21-.38-1.55.16-.6.94-1.04 2-1.3 3.12-.14.62.34 1.21.98 1.21.45 0 .87-.3.96-.74.2-.91.57-1.77 1.05-2.53.26-.39.18-.9-.14-1.22zM3.23 13c-.64 0-1.13.59-.99 1.21.26 1.12.7 2.17 1.3 3.12.34.54 1.1.61 1.55.16.32-.32.4-.83.15-1.21-.49-.76-.85-1.61-1.05-2.53-.09-.45-.5-.75-.96-.75zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.9 5.49c.45.45 1.21.38 1.55-.15.6-.94 1.04-2 1.3-3.11.14-.62-.35-1.21-.98-1.21-.45 0-.87.3-.96.74-.2.91-.57 1.76-1.05 2.53-.26.37-.18.88.14 1.2zM13 20.77c0 .64.59 1.13 1.21.99 1.12-.26 2.17-.7 3.12-1.3.54-.34.61-1.1.16-1.55-.32-.32-.83-.4-1.21-.15-.76.49-1.61.85-2.53 1.05-.45.09-.75.5-.75.96zm-6.33-.32c.95.6 2 1.04 3.12 1.3.62.14 1.21-.35 1.21-.98 0-.45-.3-.87-.74-.96-.91-.2-1.77-.57-2.53-1.05-.39-.24-.89-.17-1.21.16-.46.44-.39 1.19.15 1.53z\\\"></path>\"\n      }\n    }\n  },\n  \"music_off\": {\n    \"name\": \"music_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 9.61V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-3c-.55 0-1 .45-1 1v3.61l2 2zM5.12 3.56c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l8.29 8.3v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58l5.02 5.02c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L5.12 3.56z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_off\": {\n    \"name\": \"auto_fix_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M22,3.55l-1.06-0.49L20.45,2c-0.18-0.39-0.73-0.39-0.91,0l-0.49,1.06L18,3.55c-0.39,0.18-0.39,0.73,0,0.91l1.06,0.49 L19.55,6c0.18,0.39,0.73,0.39,0.91,0l0.49-1.06L22,4.45C22.39,4.28,22.39,3.72,22,3.55z\\\"></path><path d=\\\"M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17-2.17c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83 c-0.39-0.39-1.02-0.39-1.41,0l-2.17,2.17l1.41,1.41L14.17,8.42z\\\"></path><path d=\\\"M2.1,4.93l6.36,6.36l-6.17,6.17c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83c0.39,0.39,1.02,0.39,1.41,0l6.17-6.17l6.36,6.36 c0.39,0.39,1.02,0.39,1.41,0h0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0 C1.71,3.91,1.71,4.54,2.1,4.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_rupee\": {\n    \"name\": \"currency_rupee\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.5,14H9.77l5.1,5.31c0.61,0.64,0.16,1.69-0.72,1.69c-0.27,0-0.53-0.11-0.72-0.31L7.4,14.41C7.14,14.15,7,13.79,7,13.43 C7,12.64,7.64,12,8.43,12h2.07c1.76,0,3.22-1.3,3.46-3L7,9C6.45,9,6,8.55,6,8s0.45-1,1-1l6.66,0C13.1,5.82,11.9,5,10.5,5L7,5 C6.45,5,6,4.55,6,4s0.45-1,1-1h10c0.55,0,1,0.45,1,1s-0.45,1-1,1l-2.26,0c0.48,0.58,0.84,1.26,1.05,2L17,7c0.55,0,1,0.45,1,1 s-0.45,1-1,1l-1.02,0C15.72,11.8,13.36,14,10.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.75,11.5c2.26,0,4.11-1.77,4.24-4l0.76,0c0.41,0,0.75-0.34,0.75-0.75C14.5,6.34,14.16,6,13.75,6l-0.94,0 c-0.17-0.56-0.46-1.07-0.82-1.5l1.76,0c0.41,0,0.75-0.34,0.75-0.75C14.5,3.34,14.16,3,13.75,3h-7.5C5.84,3,5.5,3.34,5.5,3.75 c0,0.41,0.34,0.75,0.75,0.75l2.5,0c1.07,0,1.99,0.61,2.45,1.5L6.25,6C5.84,6,5.5,6.34,5.5,6.75c0,0.41,0.34,0.75,0.75,0.75l5.24,0 c-0.13,1.4-1.3,2.5-2.74,2.5l-1.69,0C6.48,10,6,10.48,6,11.06c0,0.28,0.11,0.55,0.3,0.75l4.87,4.96c0.14,0.14,0.33,0.23,0.54,0.23 c0.67,0,1-0.8,0.54-1.28L8.1,11.5H8.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"crop\": {\n    \"name\": \"crop\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 15h2V7c0-1.1-.9-2-2-2H9v2h7c.55 0 1 .45 1 1v7zm-9 2c-.55 0-1-.45-1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v3H2c-.55 0-1 .45-1 1s.45 1 1 1h3v10c0 1.1.9 2 2 2h10v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1H8z\\\"></path>\"\n      }\n    }\n  },\n  \"14mp\": {\n    \"name\": \"14mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.75,5.5H9c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12,9V6.25 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V8.5H15V6.25c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75V8.5h0.25 c0.41,0,0.75,0.34,0.75,0.75S17.16,10,16.75,10H16.5v0.75c0,0.41-0.34,0.75-0.75,0.75S15,11.16,15,10.75V10h-2 C12.45,10,12,9.55,12,9z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"22mp\": {\n    \"name\": \"22mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M6.5,9c0-0.55,0.45-1,1-1h2V7H7.25 C6.84,7,6.5,6.66,6.5,6.25S6.84,5.5,7.25,5.5H10c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H8v1h2.25c0.41,0,0.75,0.34,0.75,0.75 s-0.34,0.75-0.75,0.75H7.5c-0.55,0-1-0.45-1-1V9z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25 C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M13,10.5V9c0-0.55,0.45-1,1-1h2V7h-2.25C13.34,7,13,6.66,13,6.25s0.34-0.75,0.75-0.75h2.75 c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1h-2v1h2.25c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75H14 C13.45,11.5,13,11.05,13,10.5z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"straighten\": {\n    \"name\": \"straighten\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 10H4c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h2v3c0 .55.45 1 1 1s1-.45 1-1V8h1c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_incandescent\": {\n    \"name\": \"wb_incandescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.25 19.79c.39.39 1.02.39 1.41 0l.39-.39c.39-.39.38-1.02 0-1.4l-.01-.01c-.39-.39-1.02-.39-1.41 0l-.39.39c-.38.4-.38 1.02.01 1.41zM11.99 23H12c.55 0 .99-.44.99-.99v-.96c0-.55-.44-.99-.99-.99h-.01c-.55 0-.99.44-.99.99v.96c0 .55.44.99.99.99zM3.01 11.05H1.99c-.55 0-.99.44-.99.99v.01c0 .55.44.99.99.99H3c.55 0 .99-.44.99-.99v-.01c.01-.55-.43-.99-.98-.99zM15 6.86V3.05c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v3.81c-2.04 1.18-3.32 3.52-2.93 6.13.4 2.61 2.56 4.7 5.18 5.02 3.64.44 6.75-2.4 6.75-5.95 0-2.23-1.21-4.16-3-5.2zm5 5.18v.01c0 .55.44.99.99.99H22c.55 0 .99-.44.99-.99v-.01c0-.55-.44-.99-.99-.99h-1.01c-.55 0-.99.44-.99.99zm-2.06 7.37l.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39c-.39-.39-1.02-.38-1.4 0-.4.4-.4 1.02-.01 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_roll\": {\n    \"name\": \"camera_roll\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h6c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-6zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_photo\": {\n    \"name\": \"assistant_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.4 6l-.24-1.2c-.09-.46-.5-.8-.98-.8H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5.6l.24 1.2c.09.47.5.8.98.8H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-4.6z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_pause\": {\n    \"name\": \"motion_photos_pause\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,9L4,9c0.26,0.26,0.34,0.63,0.25,0.98c-0.35,1.36-0.36,2.87,0.1,4.38c0.88,2.91,3.44,5.1,6.44,5.55 c5.52,0.81,10.19-4.06,9.03-9.62c-0.65-3.13-3.23-5.61-6.37-6.16c-1.21-0.21-2.38-0.15-3.46,0.13C9.64,4.35,9.26,4.26,9.01,4.01l0,0 C8.45,3.45,8.73,2.52,9.48,2.32c1.47-0.38,3.06-0.44,4.7-0.09c3.98,0.86,7.09,4.18,7.7,8.2c1.04,6.81-4.82,12.58-11.64,11.42 C6.23,21.16,2.98,17.99,2.2,14c-0.31-1.59-0.24-3.12,0.12-4.53C2.52,8.72,3.45,8.45,4,9z M7,5.5C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5 S4.67,4,5.5,4S7,4.67,7,5.5z M12,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,6,12,6z M10,15L10,15c-0.55,0-1-0.45-1-1v-4 c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v4C11,14.55,10.55,15,10,15z M14,15L14,15c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h0 c0.55,0,1,0.45,1,1v4C15,14.55,14.55,15,14,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C9.26,2,8.55,2.1,7.87,2.29 C7.32,2.45,7.13,3.13,7.54,3.54l0,0c0.19,0.19,0.47,0.27,0.73,0.2C8.82,3.59,9.4,3.5,10,3.5c3.69,0,6.67,3.09,6.49,6.81 c-0.16,3.33-2.86,6.03-6.18,6.18C6.59,16.67,3.5,13.69,3.5,10c0-0.6,0.09-1.18,0.24-1.73c0.07-0.26-0.01-0.54-0.2-0.73l0,0 c-0.41-0.41-1.1-0.22-1.25,0.33C2.1,8.55,2,9.26,2,10c0,4.48,3.69,8.1,8.19,8c4.24-0.1,7.71-3.56,7.81-7.8C18.1,5.69,14.48,2,10,2z M10,15c2.76,0,5-2.24,5-5c0-2.76-2.24-5-5-5s-5,2.24-5,5C5,12.76,7.24,15,10,15z M11.5,7.5L11.5,7.5c0.41,0,0.75,0.34,0.75,0.75 v3.5c0,0.41-0.34,0.75-0.75,0.75h0c-0.41,0-0.75-0.34-0.75-0.75v-3.5C10.75,7.84,11.09,7.5,11.5,7.5z M8.5,7.5L8.5,7.5 c0.41,0,0.75,0.34,0.75,0.75v3.5c0,0.41-0.34,0.75-0.75,0.75h0c-0.41,0-0.75-0.34-0.75-0.75v-3.5C7.75,7.84,8.09,7.5,8.5,7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_circular\": {\n    \"name\": \"blur_circular\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"face_retouching_natural\": {\n    \"name\": \"face_retouching_natural\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22.01,4.05L20.6,3.4l-0.65-1.41c-0.18-0.39-0.73-0.39-0.91,0L18.4,3.4l-1.41,0.65c-0.39,0.18-0.39,0.73,0,0.91L18.4,5.6 l0.65,1.41c0.18,0.39,0.73,0.39,0.91,0L20.6,5.6l1.41-0.65C22.4,4.78,22.4,4.22,22.01,4.05z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M19.5,8.8c-0.78,0-1.49-0.46-1.82-1.17l-0.41-0.9l-0.9-0.41C15.66,5.99,15.2,5.28,15.2,4.5c0-0.66,0.34-1.26,0.87-1.63 C14.83,2.32,13.45,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10c0-1.45-0.32-2.83-0.87-4.07 C20.76,8.46,20.16,8.8,19.5,8.8z M12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14c2.6-0.98,4.69-2.99,5.74-5.55 C11.58,8.56,14.37,10,17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12C20,16.41,16.41,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_rear\": {\n    \"name\": \"camera_rear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.85 18.85c-.31-.31-.85-.09-.85.36V20H6c-.55 0-1 .45-1 1s.45 1 1 1h4v.79c0 .45.54.67.85.35l1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79zM18 20h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z\\\"></path>\"\n      }\n    }\n  },\n  \"deblur\": {\n    \"name\": \"deblur\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3v18c4.97,0,9-4.03,9-9C21,7.03,16.97,3,12,3z\\\"></path><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"10\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"14\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"21\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5.5\\\" cy=\\\"11.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"11.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"17\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"8.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><path d=\\\"M10,3v14c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"face_retouching_off\": {\n    \"name\": \"face_retouching_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49 C21.53,15.44,22,13.78,22,12c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z\\\"></path><path d=\\\"M2.6,4.43l1.48,1.48C2.51,7.95,1.7,10.6,2.1,13.46c0.62,4.33,4.11,7.82,8.44,8.44c2.85,0.41,5.51-0.41,7.55-1.98 l1.48,1.48c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L4.01,3.01c-0.39-0.39-1.02-0.39-1.41,0l0,0 C2.21,3.41,2.21,4.04,2.6,4.43z M16.66,18.49C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_yen\": {\n    \"name\": \"currency_yen\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.82,3c0.34,0,0.66,0.17,0.84,0.46L12,10.29l4.34-6.83C16.52,3.17,16.84,3,17.18,3c0.79,0,1.27,0.87,0.84,1.54L13.92,11 H17c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1h-4v2h4c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1h-4v3c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H7 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h4v-2H7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3.08L5.98,4.54C5.55,3.87,6.03,3,6.82,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.88,3C5.28,3,4.93,3.66,5.25,4.16L8.71,9.5H6.28c-0.41,0-0.77,0.32-0.78,0.73C5.49,10.65,5.83,11,6.25,11h3v1.5h-3 c-0.42,0-0.76,0.35-0.75,0.77C5.51,13.68,5.87,14,6.28,14h2.97v2.22c0,0.41,0.32,0.77,0.73,0.78c0.42,0.01,0.77-0.33,0.77-0.75V14 h2.97c0.41,0,0.77-0.32,0.78-0.73c0.01-0.42-0.33-0.77-0.75-0.77h-3V11h2.97c0.41,0,0.77-0.32,0.78-0.73 c0.01-0.42-0.33-0.77-0.75-0.77h-2.46l3.46-5.34C15.07,3.66,14.72,3,14.12,3c-0.25,0-0.49,0.13-0.63,0.34L10,8.74l-3.49-5.4 C6.37,3.13,6.13,3,5.88,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_7\": {\n    \"name\": \"filter_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-6.75-2.49l3.58-7.17c.11-.22.17-.47.17-.72 0-.9-.72-1.62-1.62-1.62H12c-.55 0-1 .45-1 1s.45 1 1 1h3l-3.36 6.71c-.3.59.13 1.29.8 1.29h.01c.34 0 .65-.19.8-.49z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_2\": {\n    \"name\": \"brightness_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.43 2.3c-2.38-.59-4.68-.27-6.63.64-.35.16-.41.64-.1.86C8.3 5.6 10 8.6 10 12c0 3.4-1.7 6.4-4.3 8.2-.32.22-.26.7.09.86 1.28.6 2.71.94 4.21.94 6.05 0 10.85-5.38 9.87-11.6-.61-3.92-3.59-7.16-7.44-8.1z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_square\": {\n    \"name\": \"crop_square\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H7c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_left\": {\n    \"name\": \"rotate_left\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.56 7.98C6.1 7.52 5.31 7.6 5 8.17c-.28.51-.5 1.03-.67 1.58-.19.63.31 1.25.96 1.25h.01c.43 0 .82-.28.94-.7.12-.4.28-.79.48-1.17.22-.37.15-.84-.16-1.15zM5.31 13h-.02c-.65 0-1.15.62-.96 1.25.16.54.38 1.07.66 1.58.31.57 1.11.66 1.57.2.3-.31.38-.77.17-1.15-.2-.37-.36-.76-.48-1.16-.12-.44-.51-.72-.94-.72zm2.85 6.02c.51.28 1.04.5 1.59.66.62.18 1.24-.32 1.24-.96v-.03c0-.43-.28-.82-.7-.94-.4-.12-.78-.28-1.15-.48-.38-.21-.86-.14-1.16.17l-.03.03c-.45.45-.36 1.24.21 1.55zM13 4.07v-.66c0-.89-1.08-1.34-1.71-.71L9.17 4.83c-.4.4-.4 1.04 0 1.43l2.13 2.08c.63.62 1.7.17 1.7-.72V6.09c2.84.48 5 2.94 5 5.91 0 2.73-1.82 5.02-4.32 5.75-.41.12-.68.51-.68.94v.02c0 .65.61 1.14 1.23.96C17.57 18.71 20 15.64 20 12c0-4.08-3.05-7.44-7-7.93z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_paused\": {\n    \"name\": \"motion_photos_paused\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,9L4,9c0.26,0.26,0.34,0.63,0.25,0.98c-0.35,1.36-0.36,2.87,0.1,4.38c0.88,2.91,3.44,5.1,6.44,5.55 c5.52,0.81,10.19-4.06,9.03-9.62c-0.65-3.13-3.23-5.61-6.37-6.16c-1.21-0.21-2.38-0.15-3.46,0.13C9.64,4.35,9.26,4.26,9.01,4.01l0,0 C8.45,3.45,8.73,2.52,9.48,2.32c1.47-0.38,3.06-0.44,4.7-0.09c3.98,0.86,7.09,4.18,7.7,8.2c1.04,6.81-4.82,12.58-11.64,11.42 C6.23,21.16,2.98,17.99,2.2,14c-0.31-1.59-0.24-3.12,0.12-4.53C2.52,8.72,3.45,8.45,4,9z M7,5.5C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5 S4.67,4,5.5,4S7,4.67,7,5.5z M12,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,6,12,6z M10,15L10,15c-0.55,0-1-0.45-1-1v-4 c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v4C11,14.55,10.55,15,10,15z M14,15L14,15c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h0 c0.55,0,1,0.45,1,1v4C15,14.55,14.55,15,14,15z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera_back\": {\n    \"name\": \"photo_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,5h-3.17l-1.24-1.35C15.22,3.24,14.68,3,14.12,3H9.88C9.32,3,8.78,3.24,8.41,3.65L7.17,5H4C2.9,5,2,5.9,2,7v12 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M17,17H7c-0.41,0-0.65-0.47-0.4-0.8l2-2.67c0.2-0.27,0.6-0.27,0.8,0 L11.25,16l2.6-3.47c0.2-0.27,0.6-0.27,0.8,0l2.75,3.67C17.65,16.53,17.41,17,17,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hevc\": {\n    \"name\": \"hevc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.25,9C5.84,9,5.5,9.34,5.5,9.75V11h-1V9.75C4.5,9.34,4.16,9,3.75,9S3,9.34,3,9.75v4.5C3,14.66,3.34,15,3.75,15 s0.75-0.34,0.75-0.75V12.5h1v1.75C5.5,14.66,5.84,15,6.25,15S7,14.66,7,14.25v-4.5C7,9.34,6.66,9,6.25,9z\\\"></path><path d=\\\"M10.75,10.5c0.41,0,0.75-0.34,0.75-0.75C11.5,9.34,11.16,9,10.75,9H9c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h1.75 c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75H9.5v-1h1.25c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75H9.5 v-0.5H10.75z\\\"></path><path d=\\\"M15.63,9c-0.36,0-0.67,0.26-0.73,0.62l-0.65,3.88L13.6,9.62C13.54,9.26,13.23,9,12.87,9c-0.46,0-0.8,0.41-0.73,0.86 l0.65,3.91c0.12,0.71,0.73,1.23,1.46,1.23s1.34-0.52,1.46-1.23l0.65-3.91C16.43,9.41,16.08,9,15.63,9z\\\"></path><path d=\\\"M19.5,10.5c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V10c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4 c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-0.5c0-0.28-0.22-0.5-0.5-0.5H20c-0.28,0-0.5,0.22-0.5,0.5h-1v-3H19.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lens\": {\n    \"name\": \"lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_off\": {\n    \"name\": \"blur_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"18\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><path d=\\\"M3.21 4.56c-.39.39-.39 1.02 0 1.41l3.07 3.07L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.08 3.07c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.42L4.62 4.56c-.39-.39-1.02-.39-1.41 0z\\\"></path>\"\n      }\n    }\n  },\n  \"broken_image\": {\n    \"name\": \"broken_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5v6.59l-2.29-2.3c-.39-.39-1.03-.39-1.42 0L14 12.59 10.71 9.3c-.39-.39-1.02-.39-1.41 0L6 12.59 3 9.58V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42l3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l2.29 2.29c.39.39 1.02.39 1.41 0l3.3-3.3 3.29 3.29c.39.39 1.02.39 1.41 0l3.3-3.28z\\\"></path>\"\n      }\n    }\n  },\n  \"color_lens\": {\n    \"name\": \"color_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"movie_filter\": {\n    \"name\": \"movie_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.5 4H18l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.65-.17-.83-.45L15 4h-2l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.65-.17-.83-.45L10 4H8l1.74 2.61c.11.17-.01.39-.21.39h-2c-.33 0-.64-.17-.83-.45L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4.5c0-.28-.22-.5-.5-.5zM11.25 15.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_plus\": {\n    \"name\": \"hdr_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"8.5\\\" y=\\\"14.5\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"7.5\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,15.5c0,0.6-0.4,1.1-0.9,1.4l0.49,1.13 c0.2,0.46-0.14,0.97-0.64,0.97h0c-0.27,0-0.52-0.16-0.63-0.41L9.6,17H8.5v1.31C8.5,18.69,8.19,19,7.81,19H7.69 C7.31,19,7,18.69,7,18.31V14c0-0.55,0.45-1,1-1h2.5c0.82,0,1.5,0.68,1.5,1.5V15.5z M11.25,12L11.25,12 c-0.41,0-0.75-0.34-0.75-0.75V9.5h-2v1.75C8.5,11.66,8.16,12,7.75,12h0C7.34,12,7,11.66,7,11.25v-4.5C7,6.34,7.34,6,7.75,6h0 C8.16,6,8.5,6.34,8.5,6.75V8h2V6.75C10.5,6.34,10.84,6,11.25,6h0C11.66,6,12,6.34,12,6.75v4.5C12,11.66,11.66,12,11.25,12z M16.75,16H16v0.75c0,0.41-0.34,0.75-0.75,0.75h0c-0.41,0-0.75-0.34-0.75-0.75V16h-0.75C13.34,16,13,15.66,13,15.25v0 c0-0.41,0.34-0.75,0.75-0.75h0.75v-0.75c0-0.41,0.34-0.75,0.75-0.75h0c0.41,0,0.75,0.34,0.75,0.75v0.74h0.75 c0.41,0,0.75,0.34,0.75,0.75v0.01C17.5,15.66,17.16,16,16.75,16z M17.5,10.5c0,0.82-0.67,1.5-1.5,1.5h-2.5 c-0.28,0-0.5-0.22-0.5-0.5v-5C13,6.22,13.22,6,13.5,6H16c0.83,0,1.5,0.68,1.5,1.5V10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_photo_alternate\": {\n    \"name\": \"add_photo_alternate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.02 5H19V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98V5h-2.01c-.54 0-.98.44-.99.98v.03c0 .55.44.99.99.99H17v2.01c0 .54.44.99.99.98h.03c.54 0 .98-.44.98-.98V7h2.02c.54 0 .98-.44.98-.98v-.04c0-.54-.44-.98-.98-.98zM16 9.01V8h-1.01c-.53 0-1.03-.21-1.41-.58-.37-.38-.58-.88-.58-1.44 0-.36.1-.69.27-.98H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.28c-.3.17-.64.28-1.02.28-1.09-.01-1.98-.9-1.98-1.99zM15.96 19H6c-.41 0-.65-.47-.4-.8l1.98-2.63c.21-.28.62-.26.82.02L10 18l2.61-3.48c.2-.26.59-.27.79-.01l2.95 3.68c.26.33.03.81-.39.81z\\\"></path>\"\n      }\n    }\n  },\n  \"shutter_speed\": {\n    \"name\": \"shutter_speed\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 3h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm9.03 4.39l.75-.75c.38-.38.39-1.01 0-1.4l-.01-.01c-.39-.39-1.01-.38-1.4 0l-.75.75C16.07 4.74 14.12 4 12 4c-4.8 0-8.88 3.96-9 8.76C2.87 17.84 6.94 22 12 22c4.98 0 9-4.03 9-9 0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.19-5h-3.7c-.38 0-.62.4-.45.74.56 1.12 1.44 2.01 2.57 2.57.23.11.52.02.65-.21l1.37-2.35c.19-.33-.05-.75-.44-.75zm3.92-7.35c-.23-.12-.52-.02-.65.2l-1.38 2.39c-.2.34.04.76.43.76h3.76c.38 0 .62-.4.45-.73-.58-1.13-1.49-2.04-2.61-2.62zm-.85 7.05c-.19-.34-.68-.35-.87-.01l-2.04 3.52c-.18.32.02.72.39.75 1.34.14 2.69-.18 3.83-.89.22-.14.28-.43.16-.66l-1.47-2.71zm-3.57-1.47L7.93 9.57c-.2-.3-.64-.3-.84 0-.81 1.16-1.17 2.57-1.05 3.98.02.26.24.45.5.45h3.35c.39 0 .63-.44.42-.77zm3.66-.49l2.02 3.74c.18.33.64.35.86.05.86-1.18 1.24-2.62 1.12-4.08-.02-.26-.25-.45-.5-.45h-3.05c-.39 0-.63.4-.45.74zm-3.8-1.57c.2.31.66.3.85-.02l1.94-3.35c.19-.32-.03-.72-.4-.76-1.36-.12-2.73.21-3.88.97-.22.15-.27.46-.13.68l1.62 2.48z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_off\": {\n    \"name\": \"timer_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,3h4c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-4C9.45,1,9,1.45,9,2C9,2.55,9.45,3,10,3z\\\"></path><path d=\\\"M12,8c0.55,0,1,0.45,1,1v1.17l6.98,6.98C20.63,15.91,21,14.5,21,13c0-2.12-0.74-4.07-1.97-5.61l0.75-0.75 c0.38-0.38,0.39-1.01,0-1.4c0,0-0.01-0.01-0.01-0.01c-0.39-0.39-1.01-0.38-1.4,0l-0.75,0.75C16.07,4.74,14.12,4,12,4 c-1.48,0-2.89,0.38-4.13,1.04l3.36,3.36C11.41,8.16,11.68,8,12,8z\\\"></path><path d=\\\"M2.1,3.51L2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41l2.72,2.72C3.73,9.09,3.05,10.86,3,12.76C2.87,17.84,6.94,22,12,22 c2.02,0,3.88-0.67,5.38-1.79l1.69,1.69c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51 C3.12,3.12,2.49,3.12,2.1,3.51z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.25,3h3.5c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-3.5C7.84,1.5,7.5,1.84,7.5,2.25 C7.5,2.66,7.84,3,8.25,3z\\\"></path><path d=\\\"M15.45,6.61L16,6.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0l-0.55,0.55c-1.5-1.21-3.5-1.81-5.64-1.44 C8.08,4.23,7.45,4.45,6.86,4.74L9.42,7.3C9.56,7.12,9.76,7,10,7c0.41,0,0.75,0.34,0.75,0.75v0.88l5.51,5.51 c0.3-0.59,0.52-1.22,0.63-1.88C17.26,10.11,16.66,8.11,15.45,6.61z\\\"></path><path d=\\\"M3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06l2.12,2.12C3.84,7.51,3.34,8.52,3.13,9.64 c-0.93,4.93,3.31,9.16,8.23,8.23c1.11-0.21,2.13-0.71,2.99-1.39l1.12,1.12c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06 L3.46,3.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"iso\": {\n    \"name\": \"iso\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6.25 7.5H7.5V6.25c0-.41.34-.75.75-.75s.75.34.75.75V7.5h1.25c.41 0 .75.34.75.75s-.34.75-.75.75H9v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V9H6.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75zM18 19H5L19 5v13c0 .55-.45 1-1 1zm-1-2.75c0-.41-.34-.75-.75-.75h-3.5c-.41 0-.75.34-.75.75s.34.75.75.75h3.5c.41 0 .75-.34.75-.75z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_zero\": {\n    \"name\": \"exposure_zero\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_4\": {\n    \"name\": \"brightness_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M22.6,11.29L20,8.69V5c0-0.55-0.45-1-1-1h-3.69l-2.6-2.6c-0.39-0.39-1.02-0.39-1.41,0L8.69,4H5C4.45,4,4,4.45,4,5v3.69 l-2.6,2.6c-0.39,0.39-0.39,1.02,0,1.41L4,15.3V19c0,0.55,0.45,1,1,1h3.69l2.6,2.6c0.39,0.39,1.02,0.39,1.41,0l2.6-2.6H19 c0.55,0,1-0.45,1-1v-3.69l2.6-2.6C22.99,12.32,22.99,11.68,22.6,11.29z M17.92,12.98c-0.34,2.12-1.85,3.94-3.88,4.66 c-1.21,0.43-2.41,0.45-3.5,0.18c-0.41-0.1-0.48-0.65-0.13-0.9C11.98,15.84,13,14.04,13,12s-1.02-3.84-2.58-4.92 c-0.35-0.24-0.29-0.79,0.13-0.9c1.09-0.27,2.29-0.25,3.5,0.18c2.02,0.72,3.54,2.54,3.88,4.66C17.98,11.35,18,11.68,18,12 C17.99,12.32,17.97,12.65,17.92,12.98z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_ccw\": {\n    \"name\": \"rotate_90_degrees_ccw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.93 7.83l-3.65 3.66c-.78.78-.78 2.05 0 2.83l3.66 3.66c.78.78 2.05.78 2.83 0l3.66-3.65c.78-.78.78-2.05 0-2.83L8.76 7.82c-.79-.78-2.05-.78-2.83.01zM4.4 12.19l2.25-2.25c.39-.39 1.02-.39 1.42 0l2.24 2.24c.39.39.39 1.02 0 1.41l-2.25 2.25c-.39.39-1.02.39-1.42 0L4.4 13.61c-.39-.39-.39-1.03 0-1.42zm14.96-5.55C17.61 4.88 15.3 4 13 4v-.83c0-.89-1.08-1.34-1.71-.71L9.47 4.29c-.39.39-.39 1.02 0 1.41l1.83 1.83c.62.63 1.7.19 1.7-.7V6c2.02 0 4.03.86 5.45 2.61 2.05 2.52 2.05 6.27 0 8.79C17.03 19.14 15.02 20 13 20c-.78 0-1.55-.13-2.29-.39-.36-.12-.75-.01-1.02.26-.5.5-.34 1.39.34 1.62.96.34 1.96.51 2.97.51 2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z\\\"></path>\"\n      }\n    }\n  },\n  \"collections_bookmark\": {\n    \"name\": \"collections_bookmark\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1zm3-18H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10l-2.5-1.5L15 12V4h5v8z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_4\": {\n    \"name\": \"looks_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.04 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14c-.55 0-1-.45-1-1v-3h-3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v3h2V8c0-.55.45-1 1-1s1 .45 1 1v8c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"control_point_duplicate\": {\n    \"name\": \"control_point_duplicate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 8c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V9c0-.55-.45-1-1-1zM2 12c0-2.58 1.4-4.83 3.48-6.04.32-.19.53-.51.53-.88 0-.77-.84-1.25-1.51-.86C1.82 5.78 0 8.68 0 12s1.82 6.22 4.5 7.78c.67.39 1.51-.09 1.51-.86 0-.37-.21-.69-.53-.88C3.4 16.83 2 14.58 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_3\": {\n    \"name\": \"looks_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5.01c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3.99 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H10c-.55 0-1-.45-1-1s.45-1 1-1h3.01L13 13h-1c-.55 0-1-.45-1-1s.45-1 1-1h1l.01-2H10c-.55 0-.99-.45-.99-1s.44-1 .99-1h3.01c1.1 0 2 .9 2 2v1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_horizontal\": {\n    \"name\": \"panorama_horizontal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_normal\": {\n    \"name\": \"auto_fix_normal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M20.45,6l0.49-1.06L22,4.45c0.39-0.18,0.39-0.73,0-0.91l-1.06-0.49L20.45,2c-0.18-0.39-0.73-0.39-0.91,0l-0.49,1.06 L18,3.55c-0.39,0.18-0.39,0.73,0,0.91l1.06,0.49L19.55,6C19.72,6.39,20.28,6.39,20.45,6z\\\"></path><path d=\\\"M17.71,9.12l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83 c0.39,0.39,1.02,0.39,1.41,0l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M14.21,11.21l-1.41-1.41l1.38-1.38l1.41,1.41 L14.21,11.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"palette\": {\n    \"name\": \"palette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10c1.38,0,2.5-1.12,2.5-2.5c0-0.61-0.23-1.2-0.64-1.67c-0.08-0.1-0.13-0.21-0.13-0.33 c0-0.28,0.22-0.5,0.5-0.5H16c3.31,0,6-2.69,6-6C22,6.04,17.51,2,12,2z M17.5,13c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5C19,12.33,18.33,13,17.5,13z M14.5,9C13.67,9,13,8.33,13,7.5C13,6.67,13.67,6,14.5,6S16,6.67,16,7.5 C16,8.33,15.33,9,14.5,9z M5,11.5C5,10.67,5.67,10,6.5,10S8,10.67,8,11.5C8,12.33,7.33,13,6.5,13S5,12.33,5,11.5z M11,7.5 C11,8.33,10.33,9,9.5,9S8,8.33,8,7.5C8,6.67,8.67,6,9.5,6S11,6.67,11,7.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.41,0-8,3.59-8,8s3.59,8,8,8c1.1,0,2-0.9,2-2c0-0.49-0.18-0.96-0.51-1.34c-0.06-0.08-0.1-0.17-0.1-0.26 c0-0.22,0.18-0.4,0.4-0.4h1.42c2.65,0,4.8-2.15,4.8-4.8C18,5.23,14.41,2,10,2z M5.5,10.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S6.75,8.81,6.75,9.5C6.75,10.19,6.19,10.75,5.5,10.75z M8,7.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S9.25,5.81,9.25,6.5C9.25,7.19,8.69,7.75,8,7.75z M12,7.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C13.25,7.19,12.69,7.75,12,7.75z M14.5,10.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C15.75,10.19,15.19,10.75,14.5,10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_hdr\": {\n    \"name\": \"filter_hdr\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.2 7.07L10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z\\\"></path>\"\n      }\n    }\n  },\n  \"timer\": {\n    \"name\": \"timer\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,3h4c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-4C9.45,1,9,1.45,9,2C9,2.55,9.45,3,10,3z\\\"></path><path d=\\\"M19.03,7.39l0.75-0.75c0.38-0.38,0.39-1.01,0-1.4c0,0-0.01-0.01-0.01-0.01c-0.39-0.39-1.01-0.38-1.4,0l-0.75,0.75 C16.07,4.74,14.12,4,12,4c-4.8,0-8.88,3.96-9,8.76C2.87,17.84,6.94,22,12,22c4.98,0,9-4.03,9-9C21,10.88,20.26,8.93,19.03,7.39z M13,13c0,0.55-0.45,1-1,1s-1-0.45-1-1V9c0-0.55,0.45-1,1-1s1,0.45,1,1V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.25,3h3.5c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-3.5C7.84,1.5,7.5,1.84,7.5,2.25 C7.5,2.66,7.84,3,8.25,3z\\\"></path><path d=\\\"M15.45,6.61L16,6.06c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0l-0.55,0.55c-1.5-1.21-3.5-1.81-5.64-1.44 C5.94,4.6,3.66,6.84,3.13,9.64c-0.93,4.93,3.31,9.16,8.23,8.23c2.8-0.53,5.04-2.81,5.53-5.62C17.26,10.11,16.66,8.11,15.45,6.61z M10.75,11.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75v-3.5C9.25,7.34,9.59,7,10,7s0.75,0.34,0.75,0.75V11.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_camera\": {\n    \"name\": \"switch_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5l-3.15-3.15c-.2-.2-.2-.51 0-.71L9 8.5V11h6V8.5l3.15 3.15c.2.2.2.51 0 .71L15 15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy\": {\n    \"name\": \"view_comfy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,5v5c0,0.55,0.45,1,1,1h18c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5z M11,20h10c0.55,0,1-0.45,1-1v-5 c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1v5C10,19.55,10.45,20,11,20z M3,20h4c0.55,0,1-0.45,1-1v-5c0-0.55-0.45-1-1-1H3 c-0.55,0-1,0.45-1,1v5C2,19.55,2.45,20,3,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,8.25V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5v3.25c0,0.55,0.45,1,1,1h14C17.55,9.25,18,8.8,18,8.25z\\\"></path><path d=\\\"M8.5,11.75V15c0,0.55,0.45,1,1,1H17c0.55,0,1-0.45,1-1v-3.25c0-0.55-0.45-1-1-1H9.5C8.95,10.75,8.5,11.2,8.5,11.75z\\\"></path><path d=\\\"M6,10.75H3c-0.55,0-1,0.45-1,1V15c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-3.25C7,11.2,6.55,10.75,6,10.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"audiotrack\": {\n    \"name\": \"audiotrack\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"linked_camera\": {\n    \"name\": \"linked_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><circle cx=\\\"12\\\" cy=\\\"13\\\" r=\\\"2.5\\\"></circle><g><path d=\\\"M16.6,2.37c2.1,0.27,3.77,1.93,4.03,4.03C20.67,6.74,20.95,7,21.29,7l0,0c0.39,0,0.71-0.34,0.66-0.73 c-0.33-2.72-2.5-4.89-5.22-5.22C16.34,1,16,1.32,16,1.71l0,0C16,2.05,16.26,2.33,16.6,2.37z\\\"></path><path d=\\\"M19.23,6.19C18.93,5,18,4.07,16.81,3.77C16.4,3.67,16,3.99,16,4.42l0,0c0,0.29,0.19,0.57,0.48,0.64 c0.72,0.18,1.29,0.74,1.46,1.46C18.01,6.81,18.28,7,18.58,7l0,0C19.01,7,19.33,6.6,19.23,6.19z\\\"></path></g><path d=\\\"M17,8c0-1.1-0.9-2-2-2V4c0-0.55-0.45-1-1-1H9.88C9.32,3,8.78,3.24,8.4,3.65L7.17,5H4C2.9,5,2,5.9,2,7v12 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-9c0-1.1-0.9-2-2-2H17z M12,17.5c-2.48,0-4.5-2.02-4.5-4.5S9.52,8.5,12,8.5 s4.5,2.02,4.5,4.5S14.48,17.5,12,17.5z\\\"></path></g></g></g></g>\"\n      }\n    }\n  },\n  \"tag_faces\": {\n    \"name\": \"tag_faces\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M8.5,8C9.33,8,10,8.67,10,9.5 S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M16.75,14.75C15.8,16.39,14.03,17.5,12,17.5s-3.8-1.11-4.75-2.75 C7.06,14.42,7.31,14,7.69,14h8.62C16.7,14,16.94,14.42,16.75,14.75z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8 S17,8.67,17,9.5S16.33,11,15.5,11z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_yuan\": {\n    \"name\": \"currency_yuan\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,21c-0.55,0-1-0.45-1-1v-6H7c-0.55,0-1-0.45-1-1s0.45-1,1-1h3.72L5.98,4.54C5.55,3.87,6.03,3,6.82,3 c0.34,0,0.66,0.17,0.84,0.46L12,10.29l4.34-6.83C16.52,3.17,16.84,3,17.18,3c0.79,0,1.27,0.87,0.84,1.54L13.28,12H17 c0.55,0,1,0.45,1,1s-0.45,1-1,1h-4v6C13,20.55,12.55,21,12,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.88,3C5.28,3,4.93,3.66,5.25,4.16L9.03,10l-2.75,0c-0.41,0-0.77,0.32-0.78,0.73c-0.01,0.42,0.33,0.77,0.75,0.77h3v4.72 c0,0.41,0.32,0.77,0.73,0.78c0.42,0.01,0.77-0.33,0.77-0.75V11.5h2.97c0.41,0,0.77-0.32,0.78-0.73c0.01-0.42-0.33-0.77-0.75-0.77 l-2.78,0l3.78-5.84C15.07,3.66,14.72,3,14.12,3c-0.25,0-0.49,0.13-0.63,0.34L10,8.74l-3.49-5.4C6.37,3.13,6.13,3,5.88,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"receipt_long\": {\n    \"name\": \"receipt_long\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><g><path d=\\\"M14,9h-4C9.45,9,9,8.55,9,8v0c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v0C15,8.55,14.55,9,14,9z\\\"></path><path d=\\\"M14,12h-4c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v0C15,11.55,14.55,12,14,12z\\\"></path><path d=\\\"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H4c-0.55,0-1,0.45-1,1v2c0,1.66,1.34,3,3,3h12 c1.66,0,3-1.34,3-3V2L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h3h4h3V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2 c0-0.55-0.45-1-1-1h-2h-2H8V5h11V19z\\\"></path><circle cx=\\\"17\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"17\\\" cy=\\\"11\\\" r=\\\"1\\\"></circle></g>\"\n      }\n    }\n  },\n  \"20mp\": {\n    \"name\": \"20mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M6.5,9c0-0.55,0.45-1,1-1h2V7H7.25 C6.84,7,6.5,6.66,6.5,6.25S6.84,5.5,7.25,5.5H10c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H8v1h2.25c0.41,0,0.75,0.34,0.75,0.75 s-0.34,0.75-0.75,0.75H7.5c-0.55,0-1-0.45-1-1V9z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25 C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M13,10.5v-4c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H14 C13.45,11.5,13,11.05,13,10.5z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"21mp\": {\n    \"name\": \"21mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.5,9c0-0.55,0.45-1,1-1h2V7H8.25 C7.84,7,7.5,6.66,7.5,6.25S7.84,5.5,8.25,5.5H11c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H9v1h2.25c0.41,0,0.75,0.34,0.75,0.75 s-0.34,0.75-0.75,0.75H8.5c-0.55,0-1-0.45-1-1V9z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25 C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M13,6.25c0-0.41,0.34-0.75,0.75-0.75H15c0.55,0,1,0.45,1,1v4.25c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75V7h-0.75C13.34,7,13,6.66,13,6.25z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"euro\": {\n    \"name\": \"euro\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5h5.14c0.38,0,0.73-0.21,0.89-0.55l0,0c0.33-0.66-0.15-1.45-0.89-1.45h-5.8 c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1h5.8c0.38,0,0.73-0.21,0.89-0.55l0,0C15.61,9.78,15.13,9,14.38,9H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.25,0,2.42,0.36,3.42,0.97c0.5,0.31,1.15,0.26,1.57-0.16l0,0c0.58-0.58,0.45-1.53-0.25-1.96 C18.36,3.5,16.73,3,15,3c-3.92,0-7.24,2.51-8.48,6h-2.9C3.24,9,2.89,9.21,2.72,9.55l0,0C2.39,10.22,2.87,11,3.62,11h2.44 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3.62c-0.38,0-0.73,0.21-0.89,0.55l0,0C2.39,14.22,2.87,15,3.62,15h2.9 c1.24,3.49,4.56,6,8.48,6c1.74,0,3.36-0.49,4.74-1.35c0.69-0.43,0.82-1.39,0.24-1.97l0,0c-0.42-0.42-1.07-0.47-1.57-0.15 C17.42,18.15,16.26,18.5,15,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><path d=\\\"M16.18,14.18c-0.35-0.35-0.9-0.38-1.31-0.09C14.06,14.66,13.07,15,12,15c-1.63,0-3.08-0.79-3.99-2h3.37 c0.38,0,0.73-0.21,0.89-0.55c0.33-0.66-0.15-1.45-0.89-1.45H7.11C6.98,10.37,6.97,9.69,7.1,9h4.28c0.38,0,0.73-0.21,0.89-0.55 C12.61,7.78,12.13,7,11.38,7H8c0.76-1,1.88-1.72,3.16-1.93c1.39-0.23,2.7,0.12,3.73,0.84c0.4,0.29,0.95,0.26,1.3-0.09l0,0 c0.43-0.43,0.39-1.15-0.1-1.51c-1.49-1.07-3.42-1.57-5.46-1.18C8.44,3.55,6.61,5.03,5.68,7H3.62C3.24,7,2.89,7.21,2.72,7.55 C2.39,8.22,2.87,9,3.62,9h1.46c-0.09,0.69-0.1,1.36-0.01,2H3.62c-0.38,0-0.73,0.21-0.89,0.55C2.39,12.22,2.87,13,3.62,13h2.07 c1.12,2.36,3.53,4,6.32,4c1.53,0,2.94-0.49,4.09-1.32C16.58,15.33,16.61,14.61,16.18,14.18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"17mp\": {\n    \"name\": \"17mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.75,5.5H9c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12,6.25 c0-0.41,0.34-0.75,0.75-0.75h2.75c0.67,0,1.15,0.65,0.96,1.29l-1.28,4.12c-0.11,0.35-0.43,0.59-0.8,0.59 c-0.56,0-0.97-0.54-0.8-1.08L14.62,7h-1.87C12.34,7,12,6.66,12,6.25z M18,16c0,0.55-0.45,1-1,1h-2v0.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"panorama_vertical\": {\n    \"name\": \"panorama_vertical\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8s-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8s.39 5.4 1.16 8H6.54z\\\"></path>\"\n      }\n    }\n  },\n  \"landscape\": {\n    \"name\": \"landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.2 7.07L10.25 11l2.25 3c.33.44.24 1.07-.2 1.4-.44.33-1.07.25-1.4-.2-1.05-1.4-2.31-3.07-3.1-4.14-.4-.53-1.2-.53-1.6 0l-4 5.33c-.49.67-.02 1.61.8 1.61h18c.82 0 1.29-.94.8-1.6l-7-9.33c-.4-.54-1.2-.54-1.6 0z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_portrait\": {\n    \"name\": \"crop_portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h8c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_franc\": {\n    \"name\": \"currency_franc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v12H6c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v2c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-2h3c0.55,0,1-0.45,1-1s-0.45-1-1-1H9v-3h7c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H9V5h8C17.55,5,18,4.55,18,4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,9.75C14,9.34,13.66,9,13.25,9H7.5V4.5h6.25c0.41,0,0.75-0.34,0.75-0.75S14.16,3,13.75,3H7C6.45,3,6,3.45,6,4v9H5.25 c-0.41,0-0.75,0.34-0.75,0.75s0.34,0.75,0.75,0.75H6v1.75C6,16.66,6.34,17,6.75,17h0c0.41,0,0.75-0.34,0.75-0.75V14.5h2.75 c0.41,0,0.75-0.34,0.75-0.75S10.66,13,10.25,13H7.5v-2.5h5.75C13.66,10.5,14,10.16,14,9.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_1\": {\n    \"name\": \"filter_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm13 10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v7c0 .55.45 1 1 1zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_4\": {\n    \"name\": \"filter_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm14 10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v3h-2V6c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h3v3c0 .55.45 1 1 1zm5-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"brush\": {\n    \"name\": \"brush\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37l-1.34-1.34c-.39-.39-1.02-.39-1.41 0L9 12.25 11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"30fps_select\": {\n    \"name\": \"30fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,5L4,5c0,0.55,0.45,1,1,1h4v2H6C5.45,8,5,8.45,5,9v0c0,0.55,0.45,1,1,1h3v2H5c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h4 c1.1,0,2-0.9,2-2v-1.5C11,9.67,10.83,9,10,9c0.83,0,1-0.67,1-1.5V6c0-1.1-0.9-2-2-2H5C4.45,4,4,4.45,4,5z M18,4c1.1,0,2,0.9,2,2v6 c0,1.1-0.9,2-2,2h-3c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H18z M18,6h-3v6h3V6z M4,22L4,22c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1 h0c0.55,0,1,0.45,1,1v3C5,21.55,4.55,22,4,22z M8,22L8,22c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3 C9,21.55,8.55,22,8,22z M12,22L12,22c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v3C13,21.55,12.55,22,12,22z M20,22h-4c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3C21,21.55,20.55,22,20,22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"details\": {\n    \"name\": \"details\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.13,4.57l-8.3,14.94C2.46,20.18,2.94,21,3.7,21h16.6c0.76,0,1.24-0.82,0.87-1.49l-8.3-14.94 C12.49,3.89,11.51,3.89,11.13,4.57z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\\\"></path><g><g><g></rect></g></g>\"\n      }\n    }\n  },\n  \"6mp\": {\n    \"name\": \"6mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,6.5c0-0.55,0.45-1,1-1h2.75 c0.41,0,0.75,0.34,0.75,0.75C14.5,6.66,14.16,7,13.75,7H11.5v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H11c-0.55,0-1-0.45-1-1 V6.5z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1 v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M18,16c0,0.55-0.45,1-1,1 h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"camera_alt\": {\n    \"name\": \"camera_alt\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle><path d=\\\"M20 4h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65H9.88c-.56 0-1.1.24-1.48.65L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"2mp\": {\n    \"name\": \"2mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,9c0-0.55,0.45-1,1-1h2V7h-2.25 C10.34,7,10,6.66,10,6.25s0.34-0.75,0.75-0.75h2.75c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1h-2v1h2.25c0.41,0,0.75,0.34,0.75,0.75 s-0.34,0.75-0.75,0.75H11c-0.55,0-1-0.45-1-1V9z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25 C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nature_people\": {\n    \"name\": \"nature_people\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19.09 3.38 2.58 6.16 5.83 6.7V20H6v-3h.5c.28 0 .5-.22.5-.5V13c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3.5c0 .28.22.5.5.5H3v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1h-2v-3.88c3.47-.41 6.17-3.36 6.17-6.95z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3\": {\n    \"name\": \"timer_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z\\\"></path>\"\n      }\n    }\n  },\n  \"style\": {\n    \"name\": \"style\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.53 19.65l1.34.56v-9.03l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61zm19.5-3.7L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z\\\"></path>\"\n      }\n    }\n  },\n  \"7mp\": {\n    \"name\": \"7mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12.38,11.5 c-0.56,0-0.97-0.54-0.8-1.08L12.62,7h-1.87C10.34,7,10,6.66,10,6.25c0-0.41,0.34-0.75,0.75-0.75h2.75c0.67,0,1.15,0.65,0.96,1.29 l-1.28,4.12C13.07,11.26,12.75,11.5,12.38,11.5z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"motion_photos_on\": {\n    \"name\": \"motion_photos_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,9L4,9c0.26,0.26,0.34,0.63,0.25,0.98c-0.35,1.36-0.36,2.87,0.1,4.38c0.88,2.91,3.44,5.1,6.44,5.55 c5.52,0.81,10.19-4.06,9.03-9.62c-0.65-3.13-3.23-5.61-6.37-6.16c-1.21-0.21-2.38-0.15-3.46,0.13C9.64,4.35,9.26,4.26,9.01,4.01l0,0 C8.45,3.45,8.73,2.52,9.48,2.32c1.47-0.38,3.06-0.44,4.7-0.09c3.98,0.86,7.09,4.18,7.7,8.2c1.04,6.81-4.82,12.58-11.64,11.42 C6.23,21.16,2.98,17.99,2.2,14c-0.31-1.59-0.24-3.12,0.12-4.53C2.52,8.72,3.45,8.45,4,9z M6,12c0-3.31,2.69-6,6-6s6,2.69,6,6 s-2.69,6-6,6S6,15.31,6,12z M7,5.5C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C9.26,2,8.55,2.1,7.87,2.29 C7.32,2.45,7.13,3.13,7.54,3.54l0,0c0.19,0.19,0.47,0.27,0.73,0.2C8.82,3.59,9.4,3.5,10,3.5c3.69,0,6.67,3.09,6.49,6.81 c-0.16,3.33-2.86,6.03-6.18,6.18C6.59,16.67,3.5,13.69,3.5,10c0-0.6,0.09-1.18,0.24-1.73c0.07-0.26-0.01-0.54-0.2-0.73l0,0 c-0.41-0.41-1.1-0.22-1.25,0.33C2.1,8.55,2,9.26,2,10c0,4.48,3.69,8.1,8.19,8c4.24-0.1,7.71-3.56,7.81-7.8C18.1,5.69,14.48,2,10,2z M5,10c0-2.76,2.24-5,5-5s5,2.24,5,5c0,2.76-2.24,5-5,5S5,12.76,5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_strong\": {\n    \"name\": \"hdr_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 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>\"\n      }\n    }\n  },\n  \"auto_awesome\": {\n    \"name\": \"auto_awesome\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19.46,8l0.79-1.75L22,5.46c0.39-0.18,0.39-0.73,0-0.91l-1.75-0.79L19.46,2c-0.18-0.39-0.73-0.39-0.91,0l-0.79,1.75 L16,4.54c-0.39,0.18-0.39,0.73,0,0.91l1.75,0.79L18.54,8C18.72,8.39,19.28,8.39,19.46,8z M11.5,9.5L9.91,6 C9.56,5.22,8.44,5.22,8.09,6L6.5,9.5L3,11.09c-0.78,0.36-0.78,1.47,0,1.82l3.5,1.59L8.09,18c0.36,0.78,1.47,0.78,1.82,0l1.59-3.5 l3.5-1.59c0.78-0.36,0.78-1.47,0-1.82L11.5,9.5z M18.54,16l-0.79,1.75L16,18.54c-0.39,0.18-0.39,0.73,0,0.91l1.75,0.79L18.54,22 c0.18,0.39,0.73,0.39,0.91,0l0.79-1.75L22,19.46c0.39-0.18,0.39-0.73,0-0.91l-1.75-0.79L19.46,16 C19.28,15.61,18.72,15.61,18.54,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_rotate\": {\n    \"name\": \"crop_rotate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 9v5h2V8c0-1.1-.9-2-2-2h-6v2h5c.55 0 1 .45 1 1zm3 7H9c-.55 0-1-.45-1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v8c0 1.1.9 2 2 2h8v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zM17.66 1.4C15.99.51 13.83-.11 11.39.04l3.81 3.81 1.33-1.33c3.09 1.46 5.34 4.37 5.89 7.86.06.41.44.69.86.62.41-.06.69-.45.62-.86-.6-3.8-2.96-7-6.24-8.74zM7.47 21.49c-3.09-1.46-5.34-4.37-5.89-7.86-.06-.41-.44-.69-.86-.62-.41.06-.69.45-.62.86.6 3.81 2.96 7.01 6.24 8.75 1.67.89 3.83 1.51 6.27 1.36L8.8 20.16l-1.33 1.33z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_sunny\": {\n    \"name\": \"wb_sunny\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.05 4.14l-.39-.39c-.39-.39-1.02-.38-1.4 0l-.01.01c-.39.39-.39 1.02 0 1.4l.39.39c.39.39 1.01.39 1.4 0l.01-.01c.39-.38.39-1.02 0-1.4zM3.01 10.5H1.99c-.55 0-.99.44-.99.99v.01c0 .55.44.99.99.99H3c.56.01 1-.43 1-.98v-.01c0-.56-.44-1-.99-1zm9-9.95H12c-.56 0-1 .44-1 .99v.96c0 .55.44.99.99.99H12c.56.01 1-.43 1-.98v-.97c0-.55-.44-.99-.99-.99zm7.74 3.21c-.39-.39-1.02-.39-1.41-.01l-.39.39c-.39.39-.39 1.02 0 1.4l.01.01c.39.39 1.02.39 1.4 0l.39-.39c.39-.39.39-1.01 0-1.4zm-1.81 15.1l.39.39c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-.39-.39c-.39-.39-1.02-.38-1.4 0-.4.4-.4 1.02-.01 1.41zM20 11.49v.01c0 .55.44.99.99.99H22c.55 0 .99-.44.99-.99v-.01c0-.55-.44-.99-.99-.99h-1.01c-.55 0-.99.44-.99.99zM12 5.5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-.01 16.95H12c.55 0 .99-.44.99-.99v-.96c0-.55-.44-.99-.99-.99h-.01c-.55 0-.99.44-.99.99v.96c0 .55.44.99.99.99zm-7.74-3.21c.39.39 1.02.39 1.41 0l.39-.39c.39-.39.38-1.02 0-1.4l-.01-.01c-.39-.39-1.02-.39-1.41 0l-.39.39c-.38.4-.38 1.02.01 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_large\": {\n    \"name\": \"photo_size_select_large\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12v-8c0-1.1-.9-2-2-2H1zm2.63 7.19l1.49-1.91c.2-.25.57-.26.78-.01l1.39 1.67 2.1-2.7c.2-.26.6-.26.79.01l2.22 2.96c.25.33.01.8-.4.8H4.02c-.41-.01-.65-.49-.39-.82z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_b_and_w\": {\n    \"name\": \"filter_b_and_w\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h6c.55 0 1 .45 1 1v13z\\\"></path>\"\n      }\n    }\n  },\n  \"loupe\": {\n    \"name\": \"loupe\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"image\": {\n    \"name\": \"image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.9 13.98l2.1 2.53 3.1-3.99c.2-.26.6-.26.8.01l3.51 4.68c.25.33.01.8-.4.8H6.02c-.42 0-.65-.48-.39-.81L8.12 14c.19-.26.57-.27.78-.02z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_2\": {\n    \"name\": \"filter_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 5c-.55 0-1 .45-1 1v15c0 1.1.9 2 2 2h15c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1-.45-1-1V6c0-.55-.45-1-1-1zm19-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-1 16H8c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zm-4-4h-3v-2h2c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3c-.55 0-1 .45-1 1s.45 1 1 1h3v2h-2c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"19mp\": {\n    \"name\": \"19mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"6.5\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.75,5.5H9c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12,10.75 c0-0.41,0.34-0.75,0.75-0.75H15V9h-2c-0.55,0-1-0.45-1-1V6.5c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-2.75 C12.34,11.5,12,11.16,12,10.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"leak_add\": {\n    \"name\": \"leak_add\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.05 21c.5 0 .94-.37.99-.87.41-4.27 3.81-7.67 8.08-8.08.5-.05.88-.48.88-.99 0-.59-.51-1.06-1.1-1-5.19.52-9.32 4.65-9.84 9.83-.06.59.4 1.11.99 1.11zM18 21h3v-3c-1.66 0-3 1.34-3 3zm-2.91 0c.49 0 .9-.36.98-.85.36-2.08 2-3.72 4.08-4.08.49-.08.85-.49.85-.98 0-.61-.54-1.09-1.14-1-2.96.48-5.29 2.81-5.77 5.77-.1.6.39 1.14 1 1.14zM12.97 3.02c-.5 0-.94.37-.99.87-.41 4.27-3.81 7.67-8.08 8.08-.5.05-.88.48-.88.99 0 .59.51 1.06 1.1 1 5.19-.52 9.32-4.65 9.84-9.83.07-.58-.39-1.11-.99-1.11zm-6.94 0h-3v3c1.66 0 3-1.34 3-3zm2.91 0c-.49 0-.9.36-.98.85-.36 2.08-2 3.72-4.08 4.08-.49.09-.85.49-.85.99 0 .61.54 1.09 1.14 1 2.96-.48 5.29-2.81 5.77-5.77.09-.61-.4-1.15-1-1.15z\\\"></path>\"\n      }\n    }\n  },\n  \"23mp\": {\n    \"name\": \"23mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M6.5,9c0-0.55,0.45-1,1-1h2V7H7.25 C6.84,7,6.5,6.66,6.5,6.25S6.84,5.5,7.25,5.5H10c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H8v1h2.25c0.41,0,0.75,0.34,0.75,0.75 s-0.34,0.75-0.75,0.75H7.5c-0.55,0-1-0.45-1-1V9z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25 C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M13,10.75c0-0.41,0.34-0.75,0.75-0.75H16V9h-1.5C14.22,9,14,8.78,14,8.5S14.22,8,14.5,8H16V7h-2.25 C13.34,7,13,6.66,13,6.25s0.34-0.75,0.75-0.75h2.75c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-2.75C13.34,11.5,13,11.16,13,10.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1 V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"looks_two\": {\n    \"name\": \"looks_two\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8c0 1.1-.9 2-2 2h-2v2h3c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3c0-1.1.9-2 2-2h2V9h-3c-.55 0-1-.45-1-1s.45-1 1-1h3c1.1 0 2 .9 2 2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dehaze\": {\n    \"name\": \"dehaze\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"camera\": {\n    \"name\": \"camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.81 2.86c.17-.3 0-.7-.35-.74-2.62-.37-5.3.28-7.44 1.86-.19.15-.25.43-.12.65l3.01 5.22c.19.33.67.33.87 0l4.03-6.99zm7.49 5.47c-.98-2.47-2.92-4.46-5.35-5.5-.23-.1-.5 0-.63.22l-3.01 5.21c-.19.32.05.74.44.74h8.08c.35 0 .6-.35.47-.67zm.07 1.67h-6.2c-.38 0-.63.42-.43.75L19 18.14c.17.3.6.35.82.08 1.74-2.18 2.48-5.03 2.05-7.79-.03-.25-.25-.43-.5-.43zM4.18 5.79c-1.73 2.19-2.48 5.02-2.05 7.79.03.24.25.42.5.42h6.2c.38 0 .63-.42.43-.75L5 5.87c-.18-.3-.61-.35-.82-.08zM2.7 15.67c.98 2.47 2.92 4.46 5.35 5.5.23.1.5 0 .63-.22l3.01-5.21c.19-.33-.05-.75-.43-.75H3.17c-.35.01-.6.36-.47.68zm7.83 6.22c2.62.37 5.3-.28 7.44-1.86.2-.15.26-.44.13-.66l-3.01-5.22c-.19-.33-.67-.33-.87 0l-4.04 6.99c-.17.3.01.7.35.75z\\\"></path>\"\n      }\n    }\n  },\n  \"18mp\": {\n    \"name\": \"18mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"9\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.75,5.5H9c0.55,0,1,0.45,1,1 v4.25c0,0.41-0.34,0.75-0.75,0.75S8.5,11.16,8.5,10.75V7H7.75C7.34,7,7,6.66,7,6.25S7.34,5.5,7.75,5.5z M12.5,17.75 c0,0.41-0.34,0.75-0.75,0.75S11,18.16,11,17.75V14h-1v2.25C10,16.66,9.66,17,9.25,17S8.5,16.66,8.5,16.25V14h-1v3.75 c0,0.41-0.34,0.75-0.75,0.75S6,18.16,6,17.75V13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1V17.75z M12,10.5v-4c0-0.55,0.45-1,1-1 h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H13C12.45,11.5,12,11.05,12,10.5z M18,16c0,0.55-0.45,1-1,1h-2v0.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"5mp\": {\n    \"name\": \"5mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M11,9c-0.55,0-1-0.45-1-1V6.5 c0-0.55,0.45-1,1-1h2.75c0.41,0,0.75,0.34,0.75,0.75S14.16,7,13.75,7H11.5v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1h-2.75 c-0.41,0-0.75-0.34-0.75-0.75S10.34,10,10.75,10H13V9H11z M12.5,17.75c0,0.41-0.34,0.75-0.75,0.75S11,18.17,11,17.75V14h-1v2.25 C10,16.67,9.66,17,9.25,17S8.5,16.67,8.5,16.25V14h-1v3.75c0,0.41-0.34,0.75-0.75,0.75S6,18.17,6,17.75V13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1V17.75z M18,16c0,0.55-0.45,1-1,1h-2v0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75V13.5 c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"picture_as_pdf\": {\n    \"name\": \"picture_as_pdf\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V8c0-.55.45-1 1-1H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h2c.83 0 1.5.67 1.5 1.5v3zm4-3.75c0 .41-.34.75-.75.75H19v1h.75c.41 0 .75.34.75.75s-.34.75-.75.75H19v1.25c0 .41-.34.75-.75.75s-.75-.34-.75-.75V8c0-.55.45-1 1-1h1.25c.41 0 .75.34.75.75zM9 9.5h1v-1H9v1zM3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm11 5.5h1v-3h-1v3z\\\"></path>\"\n      }\n    }\n  },\n  \"view_compact\": {\n    \"name\": \"view_compact\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,18h2.5v-2.5H4V18z M4,13.25h2.5v-2.5H4V13.25z M4,8.5h2.5V6H4V8.5z M17.5,6v2.5H20V6H17.5z M13,8.5h2.5V6H13V8.5z M17.5,18H20v-2.5h-2.5V18z M17.5,13.25H20v-2.5h-2.5V13.25z M8.5,18H11v-2.5H8.5V18z M13,18h2.5v-2.5H13V18z M8.5,8.5H11V6H8.5 V8.5z M13,13.25h2.5v-2.5H13V13.25z M8.5,13.25H11v-2.5H8.5V13.25z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"12.5\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"bedtime\": {\n    \"name\": \"bedtime\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11.65 3.46c.27-.71-.36-1.45-1.12-1.34-5.52.8-9.47 6.07-8.34 11.88.78 4.02 4.09 7.21 8.14 7.87 3.74.61 7.16-.87 9.32-3.44.48-.57.19-1.48-.55-1.62-6.02-1.15-9.68-7.54-7.45-13.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.4 2.02c-4.51.33-7.9 4.36-7.34 8.96.42 3.52 3.24 6.42 6.74 6.93 3.14.46 5.99-.91 7.66-3.2.22-.3.05-.75-.32-.8-5.27-.69-8.44-6.35-6.23-11.2.16-.34-.13-.72-.51-.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"music_note\": {\n    \"name\": \"music_note\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5v8.55c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1V7h2c1.1 0 2-.9 2-2s-.9-2-2-2h-2c-1.1 0-2 .9-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_off\": {\n    \"name\": \"grid_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h3c.55 0 1 .45 1 1v3h-4V4zm6.16 17.88L2.12 1.84c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L2 4.55V20c0 1.1.9 2 2 2h15.45l1.3 1.3c.39.39 1.02.39 1.41 0 .39-.39.39-1.03 0-1.42zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H5c-.55 0-1-.45-1-1v-3h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_weak\": {\n    \"name\": \"center_focus_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15c-.55 0-1 .45-1 1v3c0 1.1.9 2 2 2h3c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1-.45-1-1v-2c0-.55-.45-1-1-1zm1-9c0-.55.45-1 1-1h2c.55 0 1-.45 1-1s-.45-1-1-1H5c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1s1-.45 1-1V6zm14-3h-3c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1 .45 1 1v2c0 .55.45 1 1 1s1-.45 1-1V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c1.1 0 2-.9 2-2v-3c0-.55-.45-1-1-1s-1 .45-1 1v2zM12 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>\"\n      }\n    }\n  },\n  \"colorize\": {\n    \"name\": \"colorize\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.71 5.63l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-3.12 3.12-1.23-1.21c-.39-.39-1.02-.38-1.41 0-.39.39-.39 1.02 0 1.41l.72.72-8.77 8.77c-.1.1-.15.22-.15.36v4.04c0 .28.22.5.5.5h4.04c.13 0 .26-.05.35-.15l8.77-8.77.72.72c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41l-1.22-1.22 3.12-3.12c.41-.4.41-1.03.02-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_6\": {\n    \"name\": \"brightness_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31l2.6-2.6c.39-.39.39-1.02 0-1.41L20 8.69V5c0-.55-.45-1-1-1h-3.69l-2.6-2.6c-.39-.39-1.02-.39-1.41 0L8.69 4H5c-.55 0-1 .45-1 1v3.69l-2.6 2.6c-.39.39-.39 1.02 0 1.41L4 15.3V19c0 .55.45 1 1 1h3.69l2.6 2.6c.39.39 1.02.39 1.41 0l2.6-2.6H19c.55 0 1-.45 1-1v-3.69zm-8 1.59V7.1c0-.61.55-1.11 1.15-.99C15.91 6.65 18 9.08 18 12s-2.09 5.35-4.85 5.89c-.6.12-1.15-.38-1.15-.99z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_3\": {\n    \"name\": \"brightness_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M8.93,2C8.88,2,8.84,2,8.79,2C7.96,2.02,7.7,3.12,8.4,3.56c2.78,1.77,4.63,4.89,4.63,8.44c0,3.55-1.84,6.66-4.62,8.43 C7.7,20.89,7.98,21.98,8.82,22c0.07,0,0.14,0,0.21,0c6.05,0,10.86-5.39,9.87-11.63C18.14,5.53,13.83,1.95,8.93,2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"panorama_vertical_select\": {\n    \"name\": \"panorama_vertical_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.5,12c0-3.89,0.84-6.95,1.43-8.69C20.15,2.67,19.67,2,18.98,2L5,2C4.32,2,3.84,2.66,4.05,3.31C4.74,5.36,5.5,8.1,5.5,12 c0,3.87-0.76,6.66-1.45,8.69C3.84,21.34,4.32,22,5,22h14c0.68,0,1.17-0.66,0.95-1.31C19.27,18.66,18.5,15.86,18.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_photosphere_select\": {\n    \"name\": \"panorama_photosphere_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68 C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68 C16.49,18.96,14.37,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_ruble\": {\n    \"name\": \"currency_ruble\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,21c0.55,0,1-0.45,1-1v-2h3c0.55,0,1-0.45,1-1s-0.45-1-1-1H9v-2h4.5c3.22,0,5.79-2.76,5.47-6.04 C18.7,5.1,16.14,3,13.26,3l-0.96,0H8C7.45,3,7,3.45,7,4v8H6c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h1v2H6c-0.55,0-1,0.45-1,1 s0.45,1,1,1h1v2C7,20.55,7.45,21,8,21z M13.5,12H9V5h4.5C15.43,5,17,6.57,17,8.5S15.43,12,13.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.75,17c0.41,0,0.75-0.34,0.75-0.75V14.5h2.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75H7.5v-1.5h3.75 c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3H7C6.45,3,6,3.45,6,4v6H5.25c-0.41,0-0.75,0.34-0.75,0.75 c0,0.41,0.34,0.75,0.75,0.75H6V13H5.25c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75H6v1.75C6,16.66,6.34,17,6.75,17z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mp\": {\n    \"name\": \"mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7,9h4.5c0.55,0,1,0.45,1,1v4.25 c0,0.41-0.34,0.75-0.75,0.75h0C11.34,15,11,14.66,11,14.25V10.5h-1v2.25c0,0.41-0.34,0.75-0.75,0.75h0 c-0.41,0-0.75-0.34-0.75-0.75V10.5h-1v3.75C7.5,14.66,7.16,15,6.75,15h0C6.34,15,6,14.66,6,14.25V10C6,9.45,6.45,9,7,9z M14.25,15 L14.25,15c-0.41,0-0.75-0.33-0.75-0.75V10c0-0.55,0.45-1,1-1H17c0.55,0,1,0.45,1,1v2.5c0,0.55-0.45,1-1,1h-2v0.75 C15,14.66,14.66,15,14.25,15z M15,12h1.5v-1.5H15V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bedtime_off\": {\n    \"name\": \"bedtime_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11.65 3.46c.27-.71-.36-1.45-1.12-1.34-1.48.21-2.85.76-4.04 1.54l4.59 4.59c-.2-1.56-.04-3.2.57-4.79zm-9.55.05c-.39.39-.39 1.02 0 1.41l1.56 1.56c-1.4 2.11-2.02 4.77-1.46 7.56.79 3.94 3.99 7.07 7.94 7.78 2.74.49 5.3-.15 7.35-1.51l1.57 1.57c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L3.51 3.51c-.39-.39-1.02-.39-1.41 0z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.91 2.71c.16-.34-.13-.72-.51-.69-1.45.11-2.78.6-3.9 1.36l3.8 3.79c-.23-1.45-.06-2.99.61-4.46zm-7.51.75c-.29.29-.29.77 0 1.06l.98.98c-1.17 1.73-1.69 3.93-1.19 6.24.65 3.06 3.15 5.51 6.22 6.1 2.27.44 4.4-.1 6.08-1.24l1 1c.29.29.77.29 1.06 0 .29-.29.29-.77 0-1.06L3.46 3.46c-.29-.29-.77-.29-1.06 0z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"photo_library\": {\n    \"name\": \"photo_library\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-10.6-3.47l1.63 2.18 2.58-3.22c.2-.25.58-.25.78 0l2.96 3.7c.26.33.03.81-.39.81H9c-.41 0-.65-.47-.4-.8l2-2.67c.2-.26.6-.26.8 0zM2 7v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1s-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"reply_all\": {\n    \"name\": \"reply_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7.56c0-.94-1.14-1.42-1.81-.75L.71 11.29c-.39.39-.39 1.02 0 1.41l4.48 4.48c.67.68 1.81.2 1.81-.74 0-.28-.11-.55-.31-.75L3 12l3.69-3.69c.2-.2.31-.47.31-.75zM13 9V7.41c0-.89-1.08-1.34-1.71-.71L6.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.18 1.71-.71V14.9c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread\": {\n    \"name\": \"markunread\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25l-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z\\\"></path>\"\n      }\n    }\n  },\n  \"mail\": {\n    \"name\": \"mail\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25l-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z\\\"></path>\"\n      }\n    }\n  },\n  \"biotech\": {\n    \"name\": \"biotech\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56 C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H7z\\\"></path><path d=\\\"M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.25,0.68c0.19,0.52,0.76,0.79,1.28,0.6 c0.19,0.52,0.76,0.79,1.28,0.6c0.52-0.19,0.79-0.76,0.6-1.28c0.52-0.19,0.79-0.76,0.6-1.28L14.1,3.54 c-0.19-0.52-0.76-0.79-1.28-0.6c-0.19-0.52-0.76-0.79-1.28-0.6c-0.52,0.19-0.79,0.76-0.6,1.28c-0.52,0.19-0.79,0.76-0.6,1.28 L10.56,5.51z\\\"></path><circle cx=\\\"10.5\\\" cy=\\\"8\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,15c-0.55,0-1,0.45-1,1h10c0-0.55-0.45-1-1-1h-4v-2h3c0.55,0,1-0.45,1-1H8.47v0C7.11,11.98,6,10.87,6,9.5 c0-0.93,0.51-1.73,1.26-2.16C7.1,7.1,7,6.81,7,6.5c0-0.05,0.01-0.11,0.02-0.16C5.83,6.9,5,8.1,5,9.5c0,1.76,1.31,3.2,3,3.45V15H6z\\\"></path><path d=\\\"M8.15,5.04C8.26,5.02,8.38,5,8.5,5C9.33,5,10,5.67,10,6.5c0,0.59-0.34,1.09-0.83,1.34l0.42,1.14 c0.09,0.26,0.38,0.39,0.64,0.3l0.47-0.17l0.15,0.41c0.09,0.26,0.38,0.39,0.64,0.3c0.26-0.09,0.39-0.38,0.3-0.64l-0.15-0.41 L12.1,8.6c0.26-0.09,0.39-0.38,0.3-0.64l-1.5-4.11c-0.09-0.26-0.38-0.39-0.64-0.3L9.8,3.71L9.65,3.3C9.55,3.04,9.26,2.9,9,3 c-0.26,0.09-0.39,0.38-0.3,0.64l0.15,0.41L8.39,4.22c-0.26,0.09-0.39,0.38-0.3,0.64L8.15,5.04z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"weekend\": {\n    \"name\": \"weekend\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 10c-1.1 0-2 .9-2 2v3H5v-3c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm-3-5H6c-1.1 0-2 .9-2 2v2.15c1.16.41 2 1.51 2 2.82V14h12v-2.03c0-1.3.84-2.4 2-2.82V7c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"attribution\": {\n    \"name\": \"attribution\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8.5c-.91 0-2.75.46-2.75 1.38V14c0 .28.22.5.5.5h1v3.25c0 .69.56 1.25 1.25 1.25s1.25-.56 1.25-1.25V14.5h1c.28 0 .5-.22.5-.5V9.88c0-.91-1.84-1.38-2.75-1.38zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"stacked_bar_chart\": {\n    \"name\": \"stacked_bar_chart\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,20L6,20c1.1,0,2-0.9,2-2V9H4v9C4,19.1,4.9,20,6,20z\\\"></path><path d=\\\"M4,8h4V6c0-1.1-0.9-2-2-2h0C4.9,4,4,4.9,4,6V8z\\\"></path><path d=\\\"M10,11h4V9c0-1.1-0.9-2-2-2h0c-1.1,0-2,0.9-2,2V11z\\\"></path><path d=\\\"M16,12v2h4v-2c0-1.1-0.9-2-2-2h0C16.9,10,16,10.9,16,12z\\\"></path><path d=\\\"M18,20L18,20c1.1,0,2-0.9,2-2v-3h-4v3C16,19.1,16.9,20,18,20z\\\"></path><path d=\\\"M12,20L12,20c1.1,0,2-0.9,2-2v-6h-4v6C10,19.1,10.9,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,16L14.5,16c0.83,0,1.5-0.67,1.5-1.5V12h-3v2.5C13,15.33,13.67,16,14.5,16z\\\"></path><path d=\\\"M5.5,16L5.5,16C6.33,16,7,15.33,7,14.5V8H4v6.5C4,15.33,4.67,16,5.5,16z\\\"></path><path d=\\\"M5.5,4L5.5,4C4.67,4,4,4.67,4,5.5V7h3V5.5C7,4.67,6.33,4,5.5,4z\\\"></path><path d=\\\"M8.5,9h3V7.5C11.5,6.67,10.83,6,10,6h0C9.17,6,8.5,6.67,8.5,7.5V9z\\\"></path><path d=\\\"M13,9.5V11h3V9.5C16,8.67,15.33,8,14.5,8h0C13.67,8,13,8.67,13,9.5z\\\"></path><path d=\\\"M10,16L10,16c0.83,0,1.5-0.67,1.5-1.5V10h-3v4.5C8.5,15.33,9.17,16,10,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"insights\": {\n    \"name\": \"insights\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z\\\"></path><polygon points=\\\"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93\\\"></polygon><polygon points=\\\"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"12.5,8 13.29,6.28 15,5.5 13.29,4.72 12.5,3 11.74,4.72 10,5.5 11.74,6.28\\\"></polygon><polygon points=\\\"4,10 4.4,8.4 6,8 4.4,7.6 4,6 3.6,7.6 2,8 3.6,8.4\\\"></polygon><path d=\\\"M16.5,6c-1.07,0-1.84,1.12-1.35,2.14l-3.01,3.01c-0.52-0.25-0.99-0.14-1.29,0l-1.01-1.01C9.94,9.95,10,9.73,10,9.5 C10,8.67,9.33,8,8.5,8S7,8.67,7,9.5c0,0.23,0.06,0.45,0.15,0.64l-3.01,3.01C3.95,13.06,3.73,13,3.5,13C2.67,13,2,13.67,2,14.5 S2.67,16,3.5,16S5,15.33,5,14.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01c0.52,0.25,0.99,0.14,1.29,0l1.01,1.01 C10.06,12.05,10,12.27,10,12.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01 C16.89,9.35,18,8.56,18,7.5C18,6.67,17.33,6,16.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upcoming\": {\n    \"name\": \"upcoming\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.45,6.55L20.45,6.55c-0.38-0.38-1.01-0.38-1.39,0L16.89,8.7c-0.39,0.38-0.39,1.01,0,1.39l0.01,0.01 c0.39,0.39,1.01,0.39,1.4,0c0.62-0.63,1.52-1.54,2.15-2.17C20.83,7.55,20.83,6.93,20.45,6.55z\\\"></path><path d=\\\"M12.02,3h-0.03C11.44,3,11,3.44,11,3.98v3.03C11,7.56,11.44,8,11.98,8h0.03C12.56,8,13,7.56,13,7.02V3.98 C13,3.44,12.56,3,12.02,3z\\\"></path><path d=\\\"M7.1,10.11l0.01-0.01c0.38-0.38,0.38-1.01,0-1.39L4.96,6.54c-0.38-0.39-1.01-0.39-1.39,0L3.55,6.55 c-0.39,0.39-0.39,1.01,0,1.39c0.63,0.62,1.53,1.54,2.15,2.17C6.09,10.49,6.72,10.49,7.1,10.11z\\\"></path><path d=\\\"M12,15c-1.24,0-2.31-0.75-2.76-1.83C8.92,12.43,8.14,12,7.34,12L4,12c-1.1,0-2,0.9-2,2l0,5c0,1.1,0.9,2,2,2h16 c1.1,0,2-0.9,2-2v-5c0-1.1-0.9-2-2-2l-3.34,0c-0.8,0-1.58,0.43-1.9,1.17C14.31,14.25,13.24,15,12,15\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"link_off\": {\n    \"name\": \"link_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,9h2.87c1.46,0,2.8,0.98,3.08,2.42c0.31,1.64-0.74,3.11-2.22,3.48l1.53,1.53c1.77-0.91,2.95-2.82,2.7-5.01 C21.68,8.86,19.37,7,16.79,7H14c-0.55,0-1,0.45-1,1C13,8.55,13.45,9,14,9z M3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0 c-0.39,0.39-0.39,1.02,0,1.41l2.64,2.64c-1.77,0.91-2.95,2.82-2.7,5.01C2.32,15.14,4.63,17,7.21,17H10c0.55,0,1-0.45,1-1 c0-0.55-0.45-1-1-1H7.13c-1.46,0-2.8-0.98-3.08-2.42C3.74,10.94,4.8,9.47,6.27,9.1l2.12,2.12C8.16,11.41,8,11.68,8,12 c0,0.55,0.45,1,1,1h1.17l8.9,8.9c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51z M14,11l1.71,1.71 C15.89,12.53,16,12.28,16,12c0-0.55-0.45-1-1-1H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"font_download\": {\n    \"name\": \"font_download\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.93 13.5h4.14L12 7.98 9.93 13.5zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.29 15.88l-.9-2.38H9.17l-.89 2.37c-.14.38-.5.63-.91.63-.68 0-1.15-.69-.9-1.32l4.25-10.81c.22-.53.72-.87 1.28-.87s1.06.34 1.27.87l4.25 10.81c.25.63-.22 1.32-.9 1.32-.4 0-.76-.25-.91-.62z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_search\": {\n    \"name\": \"content_paste_search\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v1c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5 C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><path d=\\\"M22.3,20.9l-2-2c0.58-1.01,0.95-2.23,0.51-3.65c-0.53-1.72-2.04-3.05-3.84-3.22c-2.87-0.28-5.23,2.07-4.95,4.95 c0.18,1.79,1.5,3.31,3.22,3.84c1.43,0.44,2.64,0.07,3.65-0.51l2,2c0.39,0.39,1.01,0.39,1.4,0S22.69,21.29,22.3,20.9z M16.5,19 c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C19,17.9,17.9,19,16.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V6c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57 c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3 c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><path d=\\\"M18.47,17.41l-1.53-1.53c0.51-0.79,0.72-1.79,0.42-2.86c-0.35-1.24-1.41-2.22-2.68-2.46c-2.47-0.47-4.59,1.65-4.12,4.12 c0.24,1.27,1.21,2.33,2.46,2.68c1.07,0.3,2.07,0.09,2.86-0.42l1.53,1.53c0.29,0.29,0.77,0.29,1.06,0S18.76,17.7,18.47,17.41z M14,16c-1.1,0-2-0.9-2-2c0-0.31,0.07-0.61,0.2-0.87C12.52,12.46,13.21,12,14,12c1.1,0,2,0.9,2,2S15.1,16,14,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"remove_circle_outline\": {\n    \"name\": \"remove_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 12c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1zm5-10C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"ballot\": {\n    \"name\": \"ballot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 9.5h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm0 7h3c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1s.45 1 1 1zm5 4.5H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2zM7 11h3c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm0-4h3v3H7V7zm0 11h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm0-4h3v3H7v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"outlined_flag\": {\n    \"name\": \"outlined_flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-.72-1.45c-.17-.34-.52-.55-.9-.55H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5l.72 1.45c.17.34.52.55.89.55H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-5zm4 8h-4l-1-2H7V6h5l1 2h5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_format\": {\n    \"name\": \"text_format\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1zm4.5-5.2h5l.66 1.6c.15.36.5.6.89.6.69 0 1.15-.71.88-1.34l-3.88-8.97C12.87 4.27 12.46 4 12 4c-.46 0-.87.27-1.05.69l-3.88 8.97c-.27.63.2 1.34.89 1.34.39 0 .74-.24.89-.6l.65-1.6zM12 5.98L13.87 11h-3.74L12 5.98z\\\"></path>\"\n      }\n    }\n  },\n  \"tag\": {\n    \"name\": \"tag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,9L20,9c0-0.55-0.45-1-1-1h-3V5c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3h-4V5c0-0.55-0.45-1-1-1h0C8.45,4,8,4.45,8,5 v3H5C4.45,8,4,8.45,4,9v0c0,0.55,0.45,1,1,1h3v4H5c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h3v3c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1v-3h4v3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3h3c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1h-3v-4h3 C19.55,10,20,9.55,20,9z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_circle_outline\": {\n    \"name\": \"add_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7c-.55 0-1 .45-1 1v3H8c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1h-3V8c0-.55-.45-1-1-1zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"link\": {\n    \"name\": \"link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,7h-3c-0.55,0-1,0.45-1,1s0.45,1,1,1h3c1.65,0,3,1.35,3,3s-1.35,3-3,3h-3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h3 c2.76,0,5-2.24,5-5S19.76,7,17,7z M8,12c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1s-0.45-1-1-1H9C8.45,11,8,11.45,8,12z M10,15H7 c-1.65,0-3-1.35-3-3s1.35-3,3-3h3c0.55,0,1-0.45,1-1s-0.45-1-1-1H7c-2.76,0-5,2.24-5,5s2.24,5,5,5h3c0.55,0,1-0.45,1-1 C11,15.45,10.55,15,10,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"square_foot\": {\n    \"name\": \"square_foot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.66,17.66l-0.71,0.71c-0.2,0.2-0.51,0.2-0.71,0l0,0c-0.2-0.2-0.2-0.51,0-0.71l0.71-0.71l-1.94-1.94l-0.71,0.71 c-0.2,0.2-0.51,0.2-0.71,0l0,0c-0.2-0.2-0.2-0.51,0-0.71l0.71-0.71l-1.94-1.94l-0.71,0.71c-0.2,0.2-0.51,0.2-0.71,0l0,0 c-0.2-0.2-0.2-0.51,0-0.71l0.71-0.71L9.7,9.7l-0.71,0.71c-0.2,0.2-0.51,0.2-0.71,0l0,0c-0.2-0.2-0.2-0.51,0-0.71l0.71-0.71 L7.05,7.05L6.34,7.76c-0.2,0.2-0.51,0.2-0.71,0l0,0c-0.2-0.2-0.2-0.51,0-0.71l0.71-0.71L4.85,4.85C4.54,4.54,4,4.76,4,5.21V18 c0,1.1,0.9,2,2,2h12.79c0.45,0,0.67-0.54,0.35-0.85L17.66,17.66z M7,16v-4.76L12.76,17H8C7.45,17,7,16.55,7,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.24,14.24l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71 l-0.35-0.35l0.71-0.71L8.14,8.14L7.44,8.85L7.08,8.5l0.71-0.71L6.11,6.11L5.4,6.82L5.05,6.46l0.71-0.71L4,4v10.5 C4,15.33,4.67,16,5.5,16H16L14.24,14.24z M6,13.5V8.83L11.17,14H6.5C6.22,14,6,13.78,6,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"next_week\": {\n    \"name\": \"next_week\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm.5 13c-.28-.28-.28-.72 0-1l2.5-2.5-2.5-2.5c-.28-.28-.28-.72 0-1s.72-.28 1 0l3.15 3.15c.2.2.2.51 0 .71L11.5 18c-.28.28-.72.28-1 0z\\\"></path>\"\n      }\n    }\n  },\n  \"deselect\": {\n    \"name\": \"deselect\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,13h2v-2H3V13z M7,21h2v-2H7V21z M13,3h-2v2h2V3z M19,3v2h2C21,3.9,20.1,3,19,3z M5,21v-2H3C3,20.1,3.9,21,5,21z M3,17h2 v-2H3V17z M11,21h2v-2h-2V21z M19,13h2v-2h-2V13z M19,9h2V7h-2V9z M15,5h2V3h-2V5z M7.83,5L7,4.17V3h2v2H7.83z M19.83,17L19,16.17 V15h2v2H19.83z M9,15v-3.17L12.17,15H9z M2.1,3.51c-0.39,0.39-0.39,1.02,0,1.41L4.17,7H3v2h2V7.83l2,2V16c0,0.55,0.45,1,1,1h6.17 l2,2H15v2h2v-1.17l2.07,2.07c0.39,0.39,1.02,0.39,1.41,0c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51C3.12,3.12,2.49,3.12,2.1,3.51z M17,8c0-0.55-0.45-1-1-1H9.83l2,2H15v3.17l2,2V8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11.88V7c0-0.55-0.45-1-1-1H8.12l1.5,1.5h2.88v2.88L14,11.88z M4.5,17v-1.5H3C3,16.33,3.67,17,4.5,17z M3,13.88h1.5 v-1.5H3V13.88z M3,10.75h1.5v-1.5H3V10.75z M15.5,10.75H17v-1.5h-1.5V10.75z M15.5,7.62H17v-1.5h-1.5V7.62z M15.5,3v1.5H17 C17,3.67,16.33,3,15.5,3z M12.38,4.5h1.5V3h-1.5V4.5z M9.25,4.5h1.5V3h-1.5V4.5z M6.12,17h1.5v-1.5h-1.5V17z M9.25,17h1.5v-1.5 h-1.5V17z M2.4,3.46c-0.29,0.29-0.29,0.77,0,1.06L4,6.12H3v1.5h1.5v-1L6,8.12V13c0,0.55,0.45,1,1,1h4.88l1.5,1.5h-1V17h1.5v-1 l1.6,1.6c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46C3.17,3.17,2.69,3.17,2.4,3.46z M7.62,4.5V3h-1.5v1 l0.5,0.5H7.62z M17,13.88v-1.5h-1.5v1l0.5,0.5H17z M10.38,12.5H7.5V9.62L10.38,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add\": {\n    \"name\": \"add\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list\": {\n    \"name\": \"filter_list\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm4 6h10c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_vote\": {\n    \"name\": \"how_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,12.18l-1.5,1.64l2,2.18h-13l2-2.18L6,12.18l-3,3.27V20c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4.54L18,12.18z\\\"></path><path d=\\\"M10.59,14.42c0.78,0.79,2.05,0.8,2.84,0.01l4.98-4.98c0.78-0.78,0.78-2.05,0-2.83l-3.54-3.53c-0.78-0.78-2.05-0.78-2.83,0 L7.09,8.04c-0.78,0.78-0.78,2.03-0.01,2.82L10.59,14.42z M13.46,4.5l3.53,3.53l-4.94,4.94L8.52,9.44L13.46,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"save_as\": {\n    \"name\": \"save_as\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.41,6.41l-2.83-2.83C17.21,3.21,16.7,3,16.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h7.4l8.6-8.6V7.83 C21,7.3,20.79,6.79,20.41,6.41z M12,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,18,12,18z M15,9c0,0.55-0.45,1-1,1H7 c-0.55,0-1-0.45-1-1V7c0-0.55,0.45-1,1-1h7c0.55,0,1,0.45,1,1V9z M19.99,16.25l1.77,1.77l-4.84,4.84C16.82,22.95,16.69,23,16.56,23 H15.5c-0.28,0-0.5-0.22-0.5-0.5v-1.06c0-0.13,0.05-0.26,0.15-0.35L19.99,16.25z M23.25,16.51l-0.85,0.85l-1.77-1.77l0.85-0.85 c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06C23.45,16,23.45,16.32,23.25,16.51z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.5,5.5h5c0.55,0,1,0.45,1,1v1c0,0.55-0.45,1-1,1h-5c-0.55,0-1-0.45-1-1v-1C5.5,5.95,5.95,5.5,6.5,5.5z M10,14.75 c-1.24,0-2.25-1.01-2.25-2.25s1.01-2.25,2.25-2.25s2.25,1.01,2.25,2.25S11.24,14.75,10,14.75z M16.82,13.77l1.41,1.41L14.41,19H13 l0-1.41L16.82,13.77z M17.31,13.27l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L17.31,13.27z M17,6.62c0-0.4-0.16-0.78-0.44-1.06l-2.12-2.12C14.16,3.16,13.78,3,13.38,3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17 h6.97L17,11.46V6.62z\\\"></path></g>\"\n      }\n    }\n  },\n  \"content_cut\": {\n    \"name\": \"content_cut\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.64 7.64c.29-.62.42-1.33.34-2.09-.19-1.73-1.54-3.2-3.26-3.49-2.77-.48-5.14 1.89-4.66 4.65.3 1.72 1.76 3.07 3.49 3.26.76.08 1.46-.05 2.09-.34L10 12l-2.36 2.36c-.62-.29-1.33-.42-2.09-.34-1.73.19-3.2 1.54-3.49 3.26-.48 2.77 1.89 5.13 4.65 4.65 1.72-.3 3.07-1.76 3.26-3.49.08-.76-.05-1.46-.34-2.09L12 14l7.59 7.59c.89.89 2.41.26 2.41-1v-.01c0-.37-.15-.73-.41-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm7.59-10.09L13 9l2 2 6.59-6.59c.26-.26.41-.62.41-1V3.4c0-1.25-1.52-1.88-2.41-.99z\\\"></path>\"\n      }\n    }\n  },\n  \"forward\": {\n    \"name\": \"forward\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8V6.41c0-.89 1.08-1.34 1.71-.71l5.59 5.59c.39.39.39 1.02 0 1.41l-5.59 5.59c-.63.63-1.71.19-1.71-.7V16H5c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h7z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_reg\": {\n    \"name\": \"how_to_reg\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 20l-.86-.86c-1.18-1.18-1.17-3.1.02-4.26l.84-.82c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9zm-1-8c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4\\\"></path><path d=\\\"M16.18 19.78c-.39.39-1.03.39-1.42 0l-2.07-2.09c-.38-.39-.38-1.01 0-1.39l.01-.01c.39-.39 1.02-.39 1.4 0l1.37 1.37 4.43-4.46c.39-.39 1.02-.39 1.41 0l.01.01c.38.39.38 1.01 0 1.39l-5.14 5.18z\\\"></path>\"\n      }\n    }\n  },\n  \"inbox\": {\n    \"name\": \"inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,5v9h-3.56 c-0.36,0-0.68,0.19-0.86,0.5C14.06,15.4,13.11,16,12,16s-2.06-0.6-2.58-1.5C9.24,14.19,8.91,14,8.56,14H5V5H19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sort\": {\n    \"name\": \"sort\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1zm1 6h10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"copy_all\": {\n    \"name\": \"copy_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,2H9C7.9,2,7,2.9,7,4v12c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,16H9V4h9V16z M3,15v-2h2v2H3z M3,9.5h2v2H3V9.5z M10,20h2v2h-2V20z M3,18.5v-2h2v2H3z M5,22c-1.1,0-2-0.9-2-2h2V22z M8.5,22h-2v-2h2V22z M13.5,22L13.5,22l0-2h2 v0C15.5,21.1,14.6,22,13.5,22z M5,6L5,6l0,2H3v0C3,6.9,3.9,6,5,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,2h-8C6.67,2,6,2.67,6,3.5v10C6,14.33,6.67,15,7.5,15h8c0.83,0,1.5-0.67,1.5-1.5v-10C17,2.67,16.33,2,15.5,2z M15.5,13.5h-8v-10h8V13.5z M3,12v-1.5h1.5V12H3z M3,15v-1.5h1.5V15H3z M9,16.5h1.5V18H9V16.5z M3,7.5h1.5V9H3V7.5z M7.5,18H6v-1.5 h1.5V18z M4.5,18C3.67,18,3,17.33,3,16.5h1.5V18z M4.5,6H3c0-0.83,0.67-1.5,1.5-1.5V6z M13.49,16.5c0,0.83-0.67,1.5-1.5,1.5h0v-1.5 L13.49,16.5L13.49,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove\": {\n    \"name\": \"remove\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13H6c-.55 0-1-.45-1-1s.45-1 1-1h12c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"content_copy\": {\n    \"name\": \"content_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,20H5V7c0-0.55-0.45-1-1-1h0C3.45,6,3,6.45,3,7v13c0,1.1,0.9,2,2,2h10c0.55,0,1-0.45,1-1v0C16,20.45,15.55,20,15,20z M20,16V4c0-1.1-0.9-2-2-2H9C7.9,2,7,2.9,7,4v12c0,1.1,0.9,2,2,2h9C19.1,18,20,17.1,20,16z M18,16H9V4h9V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"content_paste\": {\n    \"name\": \"content_paste\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 18H6c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h1v1c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V4h1c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"gesture\": {\n    \"name\": \"gesture\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.72 6.04c.47.46 1.21.48 1.71.06.37-.32.69-.51.87-.43.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1h1.21c.69 0 1.25-.56 1.25-1.25s-.56-1.25-1.25-1.25h-1.22c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3c-1.09 0-2.04.63-2.7 1.22-.53.48-.53 1.32-.02 1.82zm10.16 12.51c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z\\\"></path>\"\n      }\n    }\n  },\n  \"web_stories\": {\n    \"name\": \"web_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2V4z M2,20c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4c0-1.1-0.9-2-2-2H4 C2.9,2,2,2.9,2,4V20z M21,18c0.83,0,1.5-0.67,1.5-1.5v-9C22.5,6.67,21.83,6,21,6V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,2H3.5C2.67,2,2,2.67,2,3.5v13C2,17.33,2.67,18,3.5,18H11c0.83,0,1.5-0.67,1.5-1.5v-13C12.5,2.67,11.83,2,11,2z\\\"></path><path d=\\\"M14,4v12c0.83,0,1.5-0.67,1.5-1.5v-9C15.5,4.67,14.83,4,14,4z\\\"></path><path d=\\\"M17,5v10c0.58-0.21,1-0.76,1-1.41V6.41C18,5.76,17.58,5.21,17,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"block\": {\n    \"name\": \"block\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"send\": {\n    \"name\": \"send\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.4 20.4l17.45-7.48c.81-.35.81-1.49 0-1.84L3.4 3.6c-.66-.29-1.39.2-1.39.91L2 9.12c0 .5.37.93.87.99L17 12 2.87 13.88c-.5.07-.87.5-.87 1l.01 4.61c0 .71.73 1.2 1.39.91z\\\"></path>\"\n      }\n    }\n  },\n  \"stream\": {\n    \"name\": \"stream\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"20\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"4\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"2\\\"></circle><path d=\\\"M7.89,14.65l-2.94,2.93c-0.39,0.39-0.39,1.02,0,1.41s1.02,0.39,1.41,0l2.94-2.93c0.39-0.38,0.39-1.02,0-1.41 C8.91,14.26,8.28,14.26,7.89,14.65z\\\"></path><path d=\\\"M6.41,4.94C6.02,4.55,5.39,4.55,5,4.94C4.61,5.33,4.61,5.96,5,6.35l2.93,2.94c0.39,0.39,1.02,0.39,1.42,0 C9.73,8.9,9.73,8.27,9.34,7.88L6.41,4.94z\\\"></path><path d=\\\"M16.12,14.65c-0.39-0.39-1.02-0.39-1.42,0c-0.39,0.39-0.39,1.02,0,1.41L17.64,19c0.39,0.39,1.02,0.39,1.41,0 s0.39-1.02,0-1.41L16.12,14.65z\\\"></path><path d=\\\"M16.06,9.33l2.99-2.98c0.39-0.4,0.39-1.03,0-1.42c-0.39-0.39-1.02-0.39-1.41,0l-2.99,2.98c-0.39,0.39-0.39,1.02,0,1.42 C15.04,9.72,15.67,9.72,16.06,9.33z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"move_to_inbox\": {\n    \"name\": \"move_to_inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,14h-3.56 c-0.36,0-0.68,0.19-0.86,0.5C14.06,15.4,13.11,16,12,16s-2.06-0.6-2.58-1.5C9.24,14.19,8.91,14,8.56,14H5V5h14V14z M14.79,10H13V7 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3H9.21c-0.45,0-0.67,0.54-0.35,0.85l2.79,2.79c0.2,0.2,0.51,0.2,0.71,0l2.79-2.79 C15.46,10.54,15.24,10,14.79,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"unarchive\": {\n    \"name\": \"unarchive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.55 5.22l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.15.55L3.46 5.22C3.17 5.57 3 6.01 3 6.5V19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.49-.17-.93-.45-1.28zm-8.2 4.63L17.5 15H14v2h-4v-2H6.5l5.15-5.15c.19-.19.51-.19.7 0zM5.12 5l.82-1h12l.93 1H5.12z\\\"></path>\"\n      }\n    }\n  },\n  \"reply\": {\n    \"name\": \"reply\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9V7.41c0-.89-1.08-1.34-1.71-.71L3.7 11.29c-.39.39-.39 1.02 0 1.41l4.59 4.59c.63.63 1.71.19 1.71-.7V14.9c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_circle\": {\n    \"name\": \"remove_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11H8c-.55 0-1-.45-1-1s.45-1 1-1h8c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"push_pin\": {\n    \"name\": \"push_pin\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,12.87c0-0.47-0.34-0.85-0.8-0.98C16.93,11.54,16,10.38,16,9V4l1,0 c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3c0,0.55,0.45,1,1,1l1,0v5c0,1.38-0.93,2.54-2.2,2.89 C5.34,12.02,5,12.4,5,12.87V13c0,0.55,0.45,1,1,1h4.98L11,21c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1l-0.02-7H18c0.55,0,1-0.45,1-1 V12.87z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10.47c0-0.26-0.19-0.46-0.44-0.52C13.67,9.75,13,8.95,13,8V4h0.5C13.78,4,14,3.78,14,3.5C14,3.22,13.78,3,13.5,3h-7 C6.22,3,6,3.22,6,3.5C6,3.78,6.22,4,6.5,4H7v4c0,0.95-0.67,1.75-1.56,1.95C5.19,10.01,5,10.21,5,10.47v0C5,10.76,5.24,11,5.53,11 H9.5v5.5c0,0.28,0.22,0.5,0.5,0.5h0c0.28,0,0.5-0.22,0.5-0.5V11h3.97C14.76,11,15,10.76,15,10.47L15,10.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"inventory\": {\n    \"name\": \"inventory\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v1c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h2v5h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5 C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h6v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><path d=\\\"M21.75,12.25c-0.41-0.41-1.09-0.41-1.5,0L15.51,17l-2.26-2.25c-0.41-0.41-1.08-0.41-1.5,0l0,0c-0.41,0.41-0.41,1.09,0,1.5 l3.05,3.04c0.39,0.39,1.02,0.39,1.41,0l5.53-5.54C22.16,13.34,22.16,12.66,21.75,12.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"drafts\": {\n    \"name\": \"drafts\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 8c0-.72-.37-1.35-.94-1.7l-8.04-4.71c-.62-.37-1.4-.37-2.02 0L2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zm-11.05 4.34l-7.2-4.5 7.25-4.25c.62-.37 1.4-.37 2.02 0l7.25 4.25-7.2 4.5c-.65.4-1.47.4-2.12 0z\\\"></path>\"\n      }\n    }\n  },\n  \"report_off\": {\n    \"name\": \"report_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7c.55 0 1 .45 1 1v1.33l7.2 7.2.51-.51c.19-.19.29-.44.29-.71V8.68c0-.27-.11-.52-.29-.71l-4.68-4.68c-.19-.18-.45-.29-.71-.29H8.68c-.26 0-.52.11-.7.29l-.51.51 3.69 3.69c.17-.29.48-.49.84-.49zM2.41 1.58L1 2.99l3.64 3.64-1.35 1.35c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l1.35-1.35L21.01 23l1.41-1.41L2.41 1.58zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z\\\"></path>\"\n      }\n    }\n  },\n  \"save_alt\": {\n    \"name\": \"save_alt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13v5c0 .55-.45 1-1 1H6c-.55 0-1-.45-1-1v-5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-.55-.45-1-1-1s-1 .45-1 1zm-6-.33l1.88-1.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-3.59 3.59c-.39.39-1.02.39-1.41 0L7.7 12.2c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L11 12.67V4c0-.55.45-1 1-1s1 .45 1 1v8.67z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_off\": {\n    \"name\": \"content_paste_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L3,5.83V19c0,1.1,0.9,2,2,2h13.17 l0.9,0.9c0.39,0.39,1.02,0.39,1.41,0l0,0C20.88,21.51,20.88,20.88,20.49,20.49z M5,19V7.83L16.17,19H5z M17,8V5h2v11.17l2,2V5 c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5.83l5,5H17z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,3,12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.54,16.54L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0l0,0c-0.29,0.29-0.29,0.77,0,1.06L3,5.12V15.5C3,16.33,3.67,17,4.5,17 h10.38l0.6,0.6c0.29,0.29,0.77,0.29,1.06,0l0,0C16.83,17.31,16.83,16.83,16.54,16.54z M4.5,15.5V6.62l8.88,8.88H4.5z M14,7V4.5h1.5 v8.88l1.5,1.5V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3H5.12l4,4H14z M10,3 c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.34,9.59,3,10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"create\": {\n    \"name\": \"create\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_go\": {\n    \"name\": \"content_paste_go\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v1c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h2v6h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5 C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h5v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><path d=\\\"M21.29,16.29l-2.58-2.58c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l0.87,0.88H13c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1h5.17l-0.87,0.88c-0.39,0.39-0.39,1.02,0,1.41v0c0.39,0.39,1.02,0.39,1.41,0l2.58-2.58 C21.68,17.31,21.68,16.68,21.29,16.29z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V6c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57 c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9v-1.5H4.5V4.5z M10,3 c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><path d=\\\"M17.65,13.65l-2.12-2.12c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06l0.66,0.66h-3.38C11.34,13.25,11,13.59,11,14 c0,0.41,0.34,0.75,0.75,0.75h3.38l-0.66,0.66c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l2.12-2.12 C17.84,14.16,17.84,13.84,17.65,13.65z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shield\": {\n    \"name\": \"shield\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11.3,2.26l-6,2.25C4.52,4.81,4,5.55,4,6.39v4.7c0,4.83,3.13,9.37,7.43,10.75c0.37,0.12,0.77,0.12,1.14,0 c4.3-1.38,7.43-5.91,7.43-10.75v-4.7c0-0.83-0.52-1.58-1.3-1.87l-6-2.25C12.25,2.09,11.75,2.09,11.3,2.26z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"file_copy\": {\n    \"name\": \"file_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 1H4c-1.1 0-2 .9-2 2v13c0 .55.45 1 1 1s1-.45 1-1V4c0-.55.45-1 1-1h10c.55 0 1-.45 1-1s-.45-1-1-1zm.59 4.59l4.83 4.83c.37.37.58.88.58 1.41V21c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h6.17c.53 0 1.04.21 1.42.59zM15 12h4.5L14 6.5V11c0 .55.45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"delete_sweep\": {\n    \"name\": \"delete_sweep\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 16h2c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1s.45-1 1-1zm0-8h5c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1zm0 4h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM13 5h-2l-.71-.71c-.18-.18-.44-.29-.7-.29H6.41c-.26 0-.52.11-.7.29L5 5H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"flag\": {\n    \"name\": \"flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.4 6l-.24-1.2c-.09-.46-.5-.8-.98-.8H6c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1v-6h5.6l.24 1.2c.09.47.5.8.98.8H19c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-4.6z\\\"></path>\"\n      }\n    }\n  },\n  \"save\": {\n    \"name\": \"save\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.59 3.59c-.38-.38-.89-.59-1.42-.59H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7.83c0-.53-.21-1.04-.59-1.41l-2.82-2.83zM12 19c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm1-10H7c-1.1 0-2-.9-2-2s.9-2 2-2h6c1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"report\": {\n    \"name\": \"report\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.32 3H8.68c-.26 0-.52.11-.7.29L3.29 7.98c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l4.68-4.68c.19-.19.29-.44.29-.71V8.68c0-.27-.11-.52-.29-.71l-4.68-4.68c-.18-.18-.44-.29-.7-.29zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3zm0-4.3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"undo\": {\n    \"name\": \"undo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8c-2.65 0-5.05.99-6.9 2.6L3.71 8.71C3.08 8.08 2 8.52 2 9.41V15c0 .55.45 1 1 1h5.59c.89 0 1.34-1.08.71-1.71l-1.91-1.91c1.39-1.16 3.16-1.88 5.12-1.88 3.16 0 5.89 1.84 7.19 4.5.27.56.91.84 1.5.64.71-.23 1.07-1.04.75-1.72C20.23 10.42 16.65 8 12.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"low_priority\": {\n    \"name\": \"low_priority\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm0 5.5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm0 5.5h6c.55 0 1 .45 1 1s-.45 1-1 1h-6c-.55 0-1-.45-1-1s.45-1 1-1zm-5.15 3.15l1.79-1.79c.2-.2.2-.51 0-.71l-1.79-1.79c-.31-.32-.85-.1-.85.35v3.59c0 .44.54.66.85.35zM9 16h-.3c-2.35 0-4.45-1.71-4.68-4.05C3.76 9.27 5.87 7 8.5 7H11c.55 0 1-.45 1-1s-.45-1-1-1H8.5c-3.86 0-6.96 3.4-6.44 7.36C2.48 15.64 5.43 18 8.73 18H9\\\"></path>\"\n      }\n    }\n  },\n  \"flag_circle\": {\n    \"name\": \"flag_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M17,15h-3.38 c-0.38,0-0.73-0.21-0.89-0.55L12,13H9.5v4.25C9.5,17.66,9.16,18,8.75,18h0C8.34,18,8,17.66,8,17.25V8c0-0.55,0.45-1,1-1h4.38 c0.38,0,0.73,0.21,0.89,0.55L15,9h2c0.55,0,1,0.45,1,1v4C18,14.55,17.55,15,17,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M14,12h-2.46c-0.33,0-0.65-0.17-0.83-0.45L10,10.5H8v4 C8,14.78,7.78,15,7.5,15h0C7.22,15,7,14.78,7,14.5V7c0-0.55,0.45-1,1-1h2.96c0.33,0,0.65,0.17,0.83,0.45l0.7,1.05H14 c0.55,0,1,0.45,1,1V11C15,11.55,14.55,12,14,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"report_gmailerrorred\": {\n    \"name\": \"report_gmailerrorred\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.71 7.98L16.03 3.3c-.19-.19-.45-.3-.71-.3H8.68c-.26 0-.52.11-.7.29L3.29 7.98c-.18.18-.29.44-.29.7v6.63c0 .27.11.52.29.71l4.68 4.68c.19.19.45.3.71.3h6.63c.27 0 .52-.11.71-.29l4.68-4.68c.19-.19.29-.44.29-.71V8.68c.01-.26-.1-.52-.28-.7zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M12 7c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"inventory_2\": {\n    \"name\": \"inventory_2\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4C3,2,2,2.9,2,4v3.01C2,7.73,2.43,8.35,3,8.7V20c0,1.1,1.1,2,2,2h14c0.9,0,2-0.9,2-2V8.7c0.57-0.35,1-0.97,1-1.69V4 C22,2.9,21,2,20,2z M14,14h-4c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v0C15,13.55,14.55,14,14,14z M20,7H4V4 h16V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v3c0,0.65,0.42,1.2,1,1.41v8.59C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5V7.91 c0.58-0.21,1-0.76,1-1.41v-3C18,2.67,17.33,2,16.5,2z M16.5,6.5h-13v-3h13V6.5z M11.25,11.5h-2.5C8.34,11.5,8,11.16,8,10.75v0 C8,10.34,8.34,10,8.75,10h2.5c0.41,0,0.75,0.34,0.75,0.75v0C12,11.16,11.66,11.5,11.25,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"archive\": {\n    \"name\": \"archive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zm-8.89 11.92L6.5 12H10v-2h4v2h3.5l-5.15 5.15c-.19.19-.51.19-.7 0zM5.12 5l.81-1h12l.94 1H5.12z\\\"></path>\"\n      }\n    }\n  },\n  \"waves\": {\n    \"name\": \"waves\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.43.22-.81.41-1.27.52-.45.1-.78.46-.78.91v.1c0 .6.56 1.03 1.14.91.74-.15 1.3-.43 1.81-.69.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.91v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.39-1.6-.81-2.95-.81zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.43.21-.81.41-1.28.52-.44.1-.77.46-.77.91v.1c0 .59.54 1.03 1.12.91.75-.15 1.31-.44 1.83-.69.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.92v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.43.22-.81.41-1.27.52-.45.1-.78.46-.78.91v.07c0 .6.54 1.04 1.12.92.75-.15 1.31-.44 1.83-.69.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.92v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.28-1.26-.5zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.43.23-.8.42-1.26.52-.45.1-.79.46-.79.92v.09c0 .59.54 1.03 1.12.91.75-.15 1.31-.44 1.83-.69.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.52.26 1.08.55 1.83.7.58.11 1.12-.33 1.12-.91v-.09c0-.46-.34-.82-.79-.92-.46-.1-.83-.29-1.26-.52-.75-.39-1.6-.81-2.95-.81z\\\"></path>\"\n      }\n    }\n  },\n  \"policy\": {\n    \"name\": \"policy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21,6.3c0-0.79-0.47-1.51-1.19-1.83l-7-3.11c-0.52-0.23-1.11-0.23-1.62,0l-7,3.11C3.47,4.79,3,5.51,3,6.3V11 c0,5.55,3.84,10.74,9,12c2.3-0.56,4.33-1.9,5.88-3.71l-3.12-3.12c-1.94,1.29-4.58,1.07-6.29-0.64c-1.95-1.95-1.95-5.12,0-7.07 c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29l2.9,2.9C20.29,15.69,21,13.38,21,11V6.3z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M10,13c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3c0,0.65-0.21,1.24-0.56,1.73l2.1,2.1C15.46,12.52,16,10.94,16,9.31V5.72 c0-0.43-0.28-0.81-0.68-0.95l-5-1.67c-0.21-0.07-0.43-0.07-0.63,0l-5,1.67C4.28,4.91,4,5.29,4,5.72v3.59c0,3.55,2.56,6.88,6,7.69 c1.53-0.36,2.89-1.22,3.92-2.37l-2.19-2.19C11.24,12.79,10.65,13,10,13z\\\"></path><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"dynamic_feed\": {\n    \"name\": \"dynamic_feed\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7,8L7,8C6.45,8,6,8.45,6,9v6c0,1.1,0.9,2,2,2h8c0.55,0,1-0.45,1-1l0,0c0-0.55-0.45-1-1-1H8V9C8,8.45,7.55,8,7,8z\\\"></path><path d=\\\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\\\"></path><path d=\\\"M3,12L3,12c-0.55,0-1,0.45-1,1v6c0,1.1,0.9,2,2,2h8c0.55,0,1-0.45,1-1l0,0c0-0.55-0.45-1-1-1H4v-6C4,12.45,3.55,12,3,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M16.5,3h-7C8.67,3,8,3.67,8,4.5v5C8,10.33,8.67,11,9.5,11h7c0.83,0,1.5-0.67,1.5-1.5v-5C18,3.67,17.33,3,16.5,3z M9.5,9.5V6h7v3.5H9.5z\\\"></path></g><g><path d=\\\"M5.75,7L5.75,7C5.34,7,5,7.34,5,7.75v4.75C5,13.33,5.67,14,6.5,14h6.75c0.41,0,0.75-0.34,0.75-0.75v0 c0-0.41-0.34-0.75-0.75-0.75H6.5V7.75C6.5,7.34,6.16,7,5.75,7z\\\"></path></g><g><path d=\\\"M2.75,10L2.75,10C2.34,10,2,10.34,2,10.75v4.75C2,16.33,2.67,17,3.5,17h6.75c0.41,0,0.75-0.34,0.75-0.75l0,0 c0-0.41-0.34-0.75-0.75-0.75H3.5v-4.75C3.5,10.34,3.16,10,2.75,10z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"clear\": {\n    \"name\": \"clear\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.3 5.71c-.39-.39-1.02-.39-1.41 0L12 10.59 7.11 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"add_box\": {\n    \"name\": \"add_box\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 10h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"amp_stories\": {\n    \"name\": \"amp_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M16,4H8C7.45,4,7,4.45,7,5v13c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z\\\"></path><path d=\\\"M4,6C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1s1-0.45,1-1V7C5,6.45,4.55,6,4,6z\\\"></path><path d=\\\"M20,6c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1s1-0.45,1-1V7C21,6.45,20.55,6,20,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M13,4H7C6.45,4,6,4.45,6,5v9c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1V5C14,4.45,13.55,4,13,4z\\\"></path><path d=\\\"M3.5,5C3.22,5,3,5.22,3,5.5v8C3,13.78,3.22,14,3.5,14S4,13.78,4,13.5v-8C4,5.22,3.78,5,3.5,5z\\\"></path><path d=\\\"M16.5,5C16.22,5,16,5.22,16,5.5v8c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5v-8C17,5.22,16.78,5,16.5,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"redo\": {\n    \"name\": \"redo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.16 0-7.74 2.42-9.44 5.93-.32.67.04 1.47.75 1.71.59.2 1.23-.08 1.5-.64 1.3-2.66 4.03-4.5 7.19-4.5 1.95 0 3.73.72 5.12 1.88l-1.91 1.91c-.63.63-.19 1.71.7 1.71H21c.55 0 1-.45 1-1V9.41c0-.89-1.08-1.34-1.71-.71l-1.89 1.9z\\\"></path>\"\n      }\n    }\n  },\n  \"where_to_vote\": {\n    \"name\": \"where_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.18,2.45,6.92,7.34,11.23c0.38,0.33,0.95,0.33,1.33,0C17.55,17.12,20,13.38,20,10.2 C20,5.22,16.2,2,12,2z M10.23,12.66l-1.41-1.41c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71l2.83-2.83 c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41l-3.54,3.54C11.26,13.05,10.62,13.05,10.23,12.66z\\\"></path></g>\"\n      }\n    }\n  },\n  \"font_download_off\": {\n    \"name\": \"font_download_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.58,9.75l-0.87-0.87l0.23-0.66h0.1L12.58,9.75z M10.35,7.52L10.55,7c0.23-0.6,0.8-1,1.45-1s1.22,0.4,1.45,1l2.17,5.79 L22,19.17V4c0-1.1-0.9-2-2-2H4.83L10.35,7.52z M21.19,22.61L21.19,22.61c-0.39,0.39-1.02,0.39-1.41,0L19.17,22H4c-1.1,0-2-0.9-2-2 V4.83L1.39,4.22C1,3.83,1,3.2,1.39,2.81l0,0c0.39-0.39,1.02-0.39,1.41,0l18.38,18.38C21.58,21.58,21.58,22.22,21.19,22.61z M12.1,14.93l-3.3-3.3L6.9,16.7C6.67,17.33,7.13,18,7.8,18h0.01c0.41,0,0.77-0.26,0.9-0.64l0.86-2.43H12.1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.04,6.86l0.57,1.63L9.7,7.58l0.25-0.72H10.04z M8.56,6.44l0.23-0.6C8.98,5.33,9.46,5,10,5h0c0.54,0,1.02,0.33,1.21,0.84 l1.95,5.2L18,15.88V3.5C18,2.67,17.33,2,16.5,2H4.12L8.56,6.44z M17.25,18.31L17.25,18.31c-0.29,0.29-0.77,0.29-1.06,0L15.88,18H3.5 C2.67,18,2,17.33,2,16.5V4.12L1.69,3.81c-0.29-0.29-0.29-0.77,0-1.06l0,0c0.29-0.29,0.77-0.29,1.06,0l14.5,14.5 C17.54,17.54,17.54,18.02,17.25,18.31z M10.32,12.44L7.4,9.52l-1.65,4.39C5.56,14.44,5.95,15,6.51,15h0c0.34,0,0.64-0.21,0.76-0.53 l0.72-2.02H10.32z\\\"></path>\"\n      }\n    }\n  },\n  \"add_circle\": {\n    \"name\": \"add_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 11h-3v3c0 .55-.45 1-1 1s-1-.45-1-1v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"select_all\": {\n    \"name\": \"select_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM8 17h8c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1zm1-8h6v6H9V9z\\\"></path>\"\n      }\n    }\n  },\n  \"change_circle\": {\n    \"name\": \"change_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12.91,18.15 c-0.31,0.31-0.85,0.09-0.85-0.35v-0.8c-0.02,0-0.04,0-0.06,0c-1.28,0-2.56-0.49-3.54-1.46c-1.43-1.43-1.81-3.52-1.14-5.3 c0.19-0.51,0.86-0.64,1.24-0.25l0,0c0.22,0.22,0.27,0.54,0.17,0.82c-0.46,1.24-0.2,2.68,0.8,3.68c0.7,0.7,1.62,1.03,2.54,1.01v-0.94 c0-0.45,0.54-0.67,0.85-0.35l1.62,1.62c0.2,0.2,0.2,0.51,0,0.71L12.91,18.15z M15.44,14.02L15.44,14.02 c-0.22-0.22-0.27-0.54-0.17-0.82c0.46-1.24,0.2-2.68-0.8-3.68c-0.7-0.7-1.62-1.04-2.53-1.02c0,0,0,0,0,0v0.94 c0,0.45-0.54,0.67-0.85,0.35L9.46,8.18c-0.2-0.2-0.2-0.51,0-0.71l1.62-1.62c0.31-0.31,0.85-0.09,0.85,0.35v0.81 c1.3-0.02,2.61,0.45,3.6,1.45c1.43,1.43,1.81,3.52,1.14,5.3C16.48,14.28,15.82,14.41,15.44,14.02z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M9.88,14.66V14c-1.02-0.03-1.98-0.44-2.71-1.17 C6.42,12.07,6,11.07,6,10c0-0.45,0.07-0.89,0.21-1.3c0.12-0.34,0.56-0.43,0.81-0.18l0.01,0.01c0.14,0.14,0.18,0.33,0.12,0.51 C7.05,9.35,7,9.67,7,10c0,0.8,0.31,1.55,0.88,2.12c0.54,0.53,1.27,0.82,2,0.85v-0.62c0-0.36,0.43-0.53,0.68-0.28l1.16,1.16 c0.16,0.16,0.16,0.41,0,0.57l-1.16,1.16C10.31,15.19,9.88,15.01,9.88,14.66z M12.96,11.46L12.96,11.46 c-0.14-0.14-0.18-0.33-0.12-0.5C12.94,10.66,13,10.33,13,10c0-0.8-0.31-1.55-0.88-2.12c-0.54-0.54-1.24-0.85-2-0.88v0.65 c0,0.36-0.43,0.53-0.68,0.28L8.28,6.78c-0.16-0.16-0.16-0.41,0-0.57l1.16-1.16c0.25-0.25,0.68-0.07,0.68,0.28v0.69 c1,0.03,1.98,0.41,2.71,1.13C13.58,7.93,14,8.93,14,10c0,0.44-0.07,0.88-0.21,1.28C13.67,11.63,13.22,11.72,12.96,11.46z\\\"></path>\"\n      }\n    }\n  },\n  \"add_link\": {\n    \"name\": \"add_link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,11h6c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v0C8,11.45,8.45,11,9,11z M20.93,12L20.93,12 c0.62,0,1.07-0.59,0.93-1.19C21.32,8.62,19.35,7,17,7h-3.05C13.43,7,13,7.43,13,7.95v0c0,0.52,0.43,0.95,0.95,0.95H17 c1.45,0,2.67,1,3.01,2.34C20.12,11.68,20.48,12,20.93,12z M3.96,11.38C4.24,9.91,5.62,8.9,7.12,8.9l2.93,0 C10.57,8.9,11,8.47,11,7.95v0C11,7.43,10.57,7,10.05,7L7.22,7c-2.61,0-4.94,1.91-5.19,4.51C1.74,14.49,4.08,17,7,17h3.05 c0.52,0,0.95-0.43,0.95-0.95v0c0-0.52-0.43-0.95-0.95-0.95H7C5.09,15.1,3.58,13.36,3.96,11.38z M18,12L18,12c-0.55,0-1,0.45-1,1v2 h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-2h2c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h-2v-2C19,12.45,18.55,12,18,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calculate\": {\n    \"name\": \"calculate\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M13.56,6.53L13.56,6.53 c0.29-0.29,0.77-0.29,1.06,0l0.88,0.88l0.88-0.88c0.29-0.29,0.77-0.29,1.06,0l0,0c0.29,0.29,0.29,0.77,0,1.06l-0.88,0.88l0.88,0.88 c0.29,0.29,0.29,0.77,0,1.06v0c-0.29,0.29-0.77,0.29-1.06,0L15.5,9.54l-0.88,0.88c-0.29,0.29-0.77,0.29-1.06,0l0,0 c-0.29-0.29-0.29-0.77,0-1.06l0.88-0.88l-0.88-0.88C13.26,7.3,13.26,6.82,13.56,6.53z M7,7.72h3.5c0.41,0,0.75,0.34,0.75,0.75v0 c0,0.41-0.34,0.75-0.75,0.75H7c-0.41,0-0.75-0.34-0.75-0.75v0C6.25,8.06,6.59,7.72,7,7.72z M10.75,16H9.5v1.25 C9.5,17.66,9.16,18,8.75,18h0C8.34,18,8,17.66,8,17.25V16H6.75C6.34,16,6,15.66,6,15.25v0c0-0.41,0.34-0.75,0.75-0.75H8v-1.25 c0-0.41,0.34-0.75,0.75-0.75h0c0.41,0,0.75,0.34,0.75,0.75v1.25h1.25c0.41,0,0.75,0.34,0.75,0.75v0C11.5,15.66,11.16,16,10.75,16z M17.25,17.25h-3.5c-0.41,0-0.75-0.34-0.75-0.75l0,0c0-0.41,0.34-0.75,0.75-0.75h3.5c0.41,0,0.75,0.34,0.75,0.75l0,0 C18,16.91,17.66,17.25,17.25,17.25z M17.25,14.75h-3.5C13.34,14.75,13,14.41,13,14v0c0-0.41,0.34-0.75,0.75-0.75h3.5 c0.41,0,0.75,0.34,0.75,0.75v0C18,14.41,17.66,14.75,17.25,14.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M6.5,7.27h2 c0.28,0,0.5,0.22,0.5,0.5v0c0,0.28-0.22,0.5-0.5,0.5h-2C6.22,8.27,6,8.04,6,7.77v0C6,7.49,6.22,7.27,6.5,7.27z M9.5,12.5h-1v1 C8.5,13.78,8.28,14,8,14h0c-0.28,0-0.5-0.22-0.5-0.5v-1h-1C6.22,12.5,6,12.28,6,12v0c0-0.28,0.22-0.5,0.5-0.5h1v-1 C7.5,10.22,7.72,10,8,10h0c0.28,0,0.5,0.22,0.5,0.5v1h1c0.28,0,0.5,0.22,0.5,0.5v0C10,12.28,9.78,12.5,9.5,12.5z M13.5,13.25h-2 c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5v0C14,13.03,13.78,13.25,13.5,13.25z M13.5,11.75 h-2c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5v0C14,11.53,13.78,11.75,13.5,11.75z M13.91,9.18L13.91,9.18c-0.2,0.2-0.51,0.2-0.71,0L12.5,8.47l-0.71,0.71c-0.2,0.2-0.51,0.2-0.71,0l0,0c-0.2-0.2-0.2-0.51,0-0.71 l0.71-0.71l-0.71-0.71c-0.2-0.2-0.2-0.51,0-0.71v0c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71l0.71-0.71c0.2-0.2,0.51-0.2,0.71,0v0 c0.2,0.2,0.2,0.51,0,0.71l-0.71,0.71l0.71,0.71C14.11,8.67,14.11,8.99,13.91,9.18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"backspace\": {\n    \"name\": \"backspace\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L.37 11.45c-.22.34-.22.77 0 1.11l5.04 7.56c.36.52.9.88 1.59.88h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3.7 13.3c-.39.39-1.02.39-1.41 0L14 13.41l-2.89 2.89c-.39.39-1.02.39-1.41 0-.39-.39-.39-1.02 0-1.41L12.59 12 9.7 9.11c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L14 10.59l2.89-2.89c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L15.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list_off\": {\n    \"name\": \"filter_list_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,7c0-0.55-0.45-1-1-1H8.83l2,2H20C20.55,8,21,7.55,21,7z M18,12c0-0.55-0.45-1-1-1h-3.17l2,2H17 C17.55,13,18,12.55,18,12z M13.98,16.81C13.99,16.87,14,16.94,14,17c0,0.55-0.45,1-1,1h-2c-0.55,0-1-0.45-1-1s0.45-1,1-1h2 c0.06,0,0.13,0.01,0.19,0.02L10.17,13H7c-0.55,0-1-0.45-1-1s0.45-1,1-1h1.17l-3-3H4C3.45,8,3,7.55,3,7c0-0.32,0.15-0.6,0.38-0.79 L2.1,4.93c-0.39-0.39-0.39-1.02,0-1.41s1.02-0.39,1.41,0l16.97,16.97c0.39,0.39,0.39,1.02,0,1.41s-1.02,0.39-1.41,0L13.98,16.81z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,6.25C17,6.66,16.66,7,16.25,7H9.12l-1.5-1.5h8.63C16.66,5.5,17,5.84,17,6.25z M15,10c0-0.41-0.34-0.75-0.75-0.75h-2.88 l1.5,1.5h1.38C14.66,10.75,15,10.41,15,10z M10.88,13l-2.13,0C8.34,13,8,13.34,8,13.75s0.34,0.75,0.75,0.75h2.5 c0.31,0,0.57-0.18,0.68-0.44l3.55,3.55c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0 s-0.29,0.77,0,1.06l1.05,1.05C3.18,5.68,3,5.94,3,6.25C3,6.66,3.34,7,3.75,7h1.13l2.25,2.25H5.75C5.34,9.25,5,9.59,5,10 s0.34,0.75,0.75,0.75h2.88L10.88,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bolt\": {\n    \"name\": \"bolt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.67,21L10.67,21c-0.35,0-0.62-0.31-0.57-0.66L11,14H7.5c-0.88,0-0.33-0.75-0.31-0.78c1.26-2.23,3.15-5.53,5.65-9.93 c0.1-0.18,0.3-0.29,0.5-0.29h0c0.35,0,0.62,0.31,0.57,0.66L13.01,10h3.51c0.4,0,0.62,0.19,0.4,0.66c-3.29,5.74-5.2,9.09-5.75,10.05 C11.07,20.89,10.88,21,10.67,21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_email_read\": {\n    \"name\": \"mark_email_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M18.05,21.29c-0.39,0.39-1.02,0.39-1.41,0l-2.12-2.12c-0.39-0.39-0.39-1.02,0-1.41h0c0.39-0.39,1.02-0.39,1.41,0 l1.41,1.41l3.54-3.54c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41L18.05,21.29z M12.08,20H4c-1.1,0-2-0.9-2-2V6 c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v6.68C21.09,12.25,20.08,12,19,12c-3.87,0-7,3.13-7,7C12,19.34,12.03,19.67,12.08,20z M11.47,12.67c0.32,0.2,0.74,0.2,1.06,0l7.07-4.42C19.85,8.09,20,7.82,20,7.53c0-0.67-0.73-1.07-1.3-0.72L12,11L5.3,6.81 C4.73,6.46,4,6.86,4,7.53c0,0.29,0.15,0.56,0.4,0.72L11.47,12.67z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.11,16.65c-0.2,0.2-0.51,0.2-0.71,0l-1.41-1.41c-0.2-0.2-0.2-0.51,0-0.71v0c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06 l3.18-3.18c0.2-0.2,0.51-0.2,0.71,0h0c0.2,0.2,0.2,0.51,0,0.71L14.11,16.65z M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h6.1 c-0.07-0.32-0.1-0.66-0.1-1c0-2.76,2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5C17,4.45,16.55,4,16,4z M15.77,6.33l-5.23,3.33 c-0.33,0.21-0.75,0.21-1.07,0L4.23,6.33C4.09,6.24,4,6.08,4,5.91c0-0.39,0.43-0.63,0.76-0.42L10,8.82l5.23-3.33 C15.57,5.28,16,5.51,16,5.91C16,6.08,15.91,6.24,15.77,6.33z\\\"></path></g>\"\n      }\n    }\n  },\n  \"app_registration\": {\n    \"name\": \"app_registration\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"2\\\"></circle><circle cx=\\\"6\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M11,18.07v1.43c0,0.28,0.22,0.5,0.5,0.5h1.4c0.13,0,0.26-0.05,0.35-0.15l5.83-5.83l-2.12-2.12l-5.81,5.81 C11.05,17.81,11,17.94,11,18.07z\\\"></path><path d=\\\"M12.03,14L14,12.03V12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2H12.03z\\\"></path><path d=\\\"M20.85,11.56l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12l1.06-1.06C21.05,12.07,21.05,11.76,20.85,11.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g><g><circle cx=\\\"5.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g><g><circle cx=\\\"5.5\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle></g><g><circle cx=\\\"5.5\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g><g><circle cx=\\\"14.5\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g><g><polygon points=\\\"9,14.49 9,16 10.51,16 15.4,11.1 13.9,9.6\\\"></polygon></g><g><path d=\\\"M11.49,9.89C11.43,9.11,10.79,8.5,10,8.5c-0.83,0-1.5,0.67-1.5,1.5c0,0.79,0.61,1.43,1.39,1.49L11.49,9.89z\\\"></path></g><g><path d=\\\"M16.85,8.94l-0.79-0.79c-0.2-0.2-0.51-0.2-0.71,0L14.6,8.9l1.5,1.5l0.75-0.75C17.05,9.45,17.05,9.13,16.85,8.94z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"import_contacts\": {\n    \"name\": \"import_contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 4.5c-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5-1.45 0-2.99.22-4.28.79C1.49 5.62 1 6.33 1 7.14v11.28c0 1.3 1.22 2.26 2.48 1.94.98-.25 2.02-.36 3.02-.36 1.56 0 3.22.26 4.56.92.6.3 1.28.3 1.87 0 1.34-.67 3-.92 4.56-.92 1 0 2.04.11 3.02.36 1.26.33 2.48-.63 2.48-1.94V7.14c0-.81-.49-1.52-1.22-1.85-1.28-.57-2.82-.79-4.27-.79zM21 17.23c0 .63-.58 1.09-1.2.98-.75-.14-1.53-.2-2.3-.2-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5.92 0 1.83.09 2.7.28.46.1.8.51.8.98v9.47z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel_presentation\": {\n    \"name\": \"cancel_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12zm-5.71-9.3c-.39-.39-1.02-.39-1.41 0L12 10.59 10.11 8.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 8.7 13.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l1.89 1.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l1.89-1.89c.38-.38.38-1.02-.01-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied_alt\": {\n    \"name\": \"sentiment_satisfied_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.41-6.11c-.35-.22-.82-.11-1.03.24-.74 1.17-2 1.87-3.38 1.87s-2.64-.7-3.38-1.88c-.22-.35-.68-.46-1.03-.24-.35.22-.46.68-.24 1.03C8.37 16.54 10.1 17.5 12 17.5s3.63-.97 4.65-2.58c.22-.35.11-.81-.24-1.03z\\\"></path>\"\n      }\n    }\n  },\n  \"live_help\": {\n    \"name\": \"live_help\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l2.29 2.29c.39.39 1.02.39 1.41 0L15 20h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75-.9.92c-.58.59-.99 1.1-1.12 2.06-.06.43-.41.76-.85.76h-.31c-.52 0-.92-.46-.85-.98.11-.91.53-1.72 1.14-2.34l1.24-1.26c.36-.36.58-.86.58-1.41 0-1.1-.9-2-2-2-.87 0-1.62.57-1.89 1.35-.13.37-.44.64-.83.64h-.3c-.58 0-.98-.56-.82-1.12C8.65 5.21 10.18 4 12 4c2.21 0 4 1.79 4 4 0 .88-.36 1.68-.93 2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"location_on\": {\n    \"name\": \"location_on\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.18,2.45,6.92,7.34,11.23c0.38,0.33,0.95,0.33,1.33,0C17.55,17.12,20,13.38,20,10.2 C20,5.22,16.2,2,12,2z M12,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C14,11.1,13.1,12,12,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_unread_chat_alt\": {\n    \"name\": \"mark_unread_chat_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"19\\\" cy=\\\"3\\\" r=\\\"3\\\"></circle><path d=\\\"M7,8C6.45,8,6,7.55,6,7c0-0.55,0.45-1,1-1h8.03c-1.21-1.6-1.08-3.21-0.92-4H4.01c-1.1,0-2,0.89-2,2L2,19.58 c0,0.89,1.08,1.34,1.71,0.71L6,18h14c1.1,0,2-0.9,2-2V6.97C21.16,7.61,20.13,8,19,8H7z M13,14H7c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1C14,13.55,13.55,14,13,14z M17,11H7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h10 c0.55,0,1,0.45,1,1C18,10.55,17.55,11,17,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"15.5\\\" cy=\\\"2.75\\\" r=\\\"2.5\\\"></circle><path d=\\\"M14.15,6.5h-8.4C5.34,6.5,5,6.16,5,5.75C5,5.34,5.34,5,5.75,5h6.45c-0.33-0.49-0.9-1.55-0.62-3H3.5C2.67,2,2,2.67,2,3.5 v13.29c0,0.45,0.54,0.67,0.85,0.35L5,15h11.5c0.83,0,1.5-0.67,1.5-1.5V5.85c-0.69,0.56-1.55,0.9-2.5,0.9 C15.03,6.75,14.58,6.65,14.15,6.5z M11.25,12h-5.5C5.34,12,5,11.66,5,11.25c0-0.41,0.34-0.75,0.75-0.75h5.5 c0.41,0,0.75,0.34,0.75,0.75C12,11.66,11.66,12,11.25,12z M14.25,9.25h-8.5C5.34,9.25,5,8.91,5,8.5c0-0.41,0.34-0.75,0.75-0.75 h8.5C14.66,7.75,15,8.09,15,8.5C15,8.91,14.66,9.25,14.25,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"qr_code_2\": {\n    \"name\": \"qr_code_2\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M15,21h-2v-2h2V21z M13,14h-2v5h2V14z M21,12h-2v4h2V12z M19,10h-2v2h2V10z M7,12H5v2h2V12z M5,10H3v2h2V10z M12,5h2V3h-2V5 z M4.5,4.5v3h3v-3H4.5z M8,9H4C3.45,9,3,8.55,3,8V4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v4C9,8.55,8.55,9,8,9z M4.5,16.5v3h3v-3 H4.5z M8,21H4c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v4C9,20.55,8.55,21,8,21z M16.5,4.5v3h3v-3H16.5z M20,9 h-4c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v4C21,8.55,20.55,9,20,9z M19,19v-3l-4,0v2h2v3h4v-2H19z M17,12 l-4,0v2h4V12z M13,10H7v2h2v2h2v-2h2V10z M14,9V7h-2V5h-2v4L14,9z M6.75,5.25h-1.5v1.5h1.5V5.25z M6.75,17.25h-1.5v1.5h1.5V17.25z M18.75,5.25h-1.5v1.5h1.5V5.25z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_access_disabled\": {\n    \"name\": \"desktop_access_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M.31 2c-.39.39-.39 1.02 0 1.41l.69.68V16c0 1.1.9 2 2 2h7v2H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-1v-2h.9l5.29 5.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L1.72 2C1.33 1.61.7 1.61.31 2zm2.68 13V6.09L12.9 16H3.99c-.55 0-1-.45-1-1zM4.55 2l2 2H20c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1h-1.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z\\\"></path>\"\n      }\n    }\n  },\n  \"call_end\": {\n    \"name\": \"call_end\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.51 15.48l2-1.59c.48-.38.76-.96.76-1.57v-2.6c3.02-.98 6.29-.99 9.32 0v2.61c0 .61.28 1.19.76 1.57l1.99 1.58c.8.63 1.94.57 2.66-.15l1.22-1.22c.8-.8.8-2.13-.05-2.88-6.41-5.66-16.07-5.66-22.48 0-.85.75-.85 2.08-.05 2.88l1.22 1.22c.71.72 1.85.78 2.65.15z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling\": {\n    \"name\": \"wifi_calling\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z\\\"></path><path d=\\\"M19.2,15.28l-2.54-0.29c-0.61-0.07-1.21,0.14-1.64,0.57l-1.84,1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85 c0.43-0.43,0.64-1.04,0.57-1.64L8.72,4.8C8.6,3.79,7.75,3.03,6.73,3.03H5c-1.13,0-2.07,0.94-2,2.07 C3.53,13.64,10.36,20.47,18.9,21c1.13,0.07,2.07-0.87,2.07-2v-1.73C20.97,16.25,20.21,15.4,19.2,15.28z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.8,12.19l-1.69-0.2c-0.4-0.05-0.81,0.09-1.1,0.38L9.79,13.6c-1.89-0.96-3.43-2.5-4.39-4.39l1.23-1.23 c0.29-0.29,0.43-0.69,0.38-1.1L6.81,5.2C6.73,4.53,6.16,4.02,5.49,4.02H4.34C3.58,4.02,2.96,4.65,3,5.4 C3.36,11.09,7.91,15.64,13.6,16c0.75,0.05,1.38-0.58,1.38-1.33v-1.15C14.98,12.84,14.47,12.27,13.8,12.19z\\\"></path><path d=\\\"M16.67,5.3C16.53,5.19,15.11,4,13,4c-2.12,0-3.53,1.19-3.67,1.3L13,10L16.67,5.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alternate_email\": {\n    \"name\": \"alternate_email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.72 2.03C6.63 1.6 1.6 6.63 2.03 12.72 2.39 18.01 7.01 22 12.31 22H16c.55 0 1-.45 1-1s-.45-1-1-1h-3.67c-3.73 0-7.15-2.42-8.08-6.03-1.49-5.8 3.91-11.21 9.71-9.71C17.58 5.18 20 8.6 20 12.33v1.1c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.25c0-2.51-1.78-4.77-4.26-5.12-3.4-.49-6.27 2.45-5.66 5.87.34 1.91 1.83 3.49 3.72 3.94 1.84.43 3.59-.16 4.74-1.33.89 1.22 2.67 1.86 4.3 1.21 1.34-.53 2.16-1.9 2.16-3.34v-1.09c0-5.31-3.99-9.93-9.28-10.29zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_ic_call\": {\n    \"name\": \"add_ic_call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1zm5.21 7.27l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64l-.29-2.52c-.11-1.01-.97-1.78-1.98-1.78H5.02c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1-.76-1.86-1.77-1.97z\\\"></path>\"\n      }\n    }\n  },\n  \"business\": {\n    \"name\": \"business\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"no_sim\": {\n    \"name\": \"no_sim\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.09 4.44c-.39.39-.39 1.02 0 1.41l2.03 2.03-.12.13V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.17 1.17c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.5 4.44c-.39-.39-1.02-.39-1.41 0zM19 16.11V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06 19 16.11z\\\"></path>\"\n      }\n    }\n  },\n  \"key\": {\n    \"name\": \"key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.59,10h-7.94C11.7,7.31,8.89,5.5,5.77,6.12c-2.29,0.46-4.15,2.3-4.63,4.58C0.32,14.58,3.26,18,7,18 c2.61,0,4.83-1.67,5.65-4H13l1.29,1.29c0.39,0.39,1.02,0.39,1.41,0L17,14l1.29,1.29c0.39,0.39,1.03,0.39,1.42,0l2.59-2.61 c0.39-0.39,0.39-1.03-0.01-1.42l-0.99-0.97C21.1,10.1,20.85,10,20.59,10z M7,15c-1.65,0-3-1.35-3-3c0-1.65,1.35-3,3-3s3,1.35,3,3 C10,13.65,8.65,15,7,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.29,8.5h-6.55c-0.73-2.31-3.07-3.91-5.72-3.41c-1.93,0.37-3.5,1.9-3.91,3.82C0.43,12.15,2.88,15,6,15 c2.24,0,4.11-1.48,4.75-3.5h0.75l1.15,1.15c0.2,0.2,0.51,0.2,0.71,0l1.15-1.15l1.15,1.15c0.2,0.2,0.51,0.2,0.71,0l2.29-2.29 c0.2-0.2,0.2-0.51,0-0.71l-1-1C17.55,8.55,17.43,8.5,17.29,8.5z M6,12.5c-1.38,0-2.5-1.12-2.5-2.5S4.62,7.5,6,7.5S8.5,8.62,8.5,10 S7.38,12.5,6,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_erase\": {\n    \"name\": \"phonelink_erase\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 7.7c-.28-.28-.72-.28-1 0L8 11.2 4.5 7.7c-.28-.28-.72-.28-1 0s-.28.72 0 1L7 12.2l-3.5 3.5c-.28.28-.28.72 0 1s.72.28 1 0L8 13.2l3.5 3.5c.28.28.72.28 1 0s.28-.72 0-1L9 12.2l3.5-3.5c.28-.28.28-.72 0-1zM19 1H9c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_enabled\": {\n    \"name\": \"phone_enabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M4.78,15.27l2.54-0.29c0.61-0.07,1.21,0.14,1.64,0.57l1.84,1.84c2.83-1.44,5.15-3.75,6.59-6.59l-1.85-1.85 c-0.43-0.43-0.64-1.03-0.57-1.64l0.29-2.52c0.12-1.01,0.97-1.77,1.99-1.77h1.73c1.13,0,2.07,0.94,2,2.07 c-0.53,8.54-7.36,15.36-15.89,15.89c-1.13,0.07-2.07-0.87-2.07-2v-1.73C3.01,16.24,3.77,15.39,4.78,15.27z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stay_current_landscape\": {\n    \"name\": \"stay_current_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code\": {\n    \"name\": \"qr_code\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,11h4c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v4C3,10.1,3.9,11,5,11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M5,21h4c1.1,0,2-0.9,2-2v-4c0-1.1-0.9-2-2-2H5c-1.1,0-2,0.9-2,2v4C3,20.1,3.9,21,5,21z M5,15h4v4H5V15z\\\"></path><path d=\\\"M13,5v4c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-4C13.9,3,13,3.9,13,5z M19,9h-4V5h4V9z\\\"></path><path d=\\\"M21,20.5v-1c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5v1c0,0.28,0.22,0.5,0.5,0.5h1C20.78,21,21,20.78,21,20.5 z\\\"></path><path d=\\\"M13,13.5v1c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-1c0-0.28-0.22-0.5-0.5-0.5h-1C13.22,13,13,13.22,13,13.5z\\\"></path><path d=\\\"M16.5,15h-1c-0.28,0-0.5,0.22-0.5,0.5v1c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-1C17,15.22,16.78,15,16.5,15 z\\\"></path><path d=\\\"M13,17.5v1c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-1c0-0.28-0.22-0.5-0.5-0.5h-1C13.22,17,13,17.22,13,17.5z\\\"></path><path d=\\\"M15.5,21h1c0.28,0,0.5-0.22,0.5-0.5v-1c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5v1C15,20.78,15.22,21,15.5,21 z\\\"></path><path d=\\\"M17.5,19h1c0.28,0,0.5-0.22,0.5-0.5v-1c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5v1C17,18.78,17.22,19,17.5,19 z\\\"></path><path d=\\\"M18.5,13h-1c-0.28,0-0.5,0.22-0.5,0.5v1c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-1C19,13.22,18.78,13,18.5,13 z\\\"></path><path d=\\\"M19.5,17h1c0.28,0,0.5-0.22,0.5-0.5v-1c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5v1C19,16.78,19.22,17,19.5,17 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,9h3c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1H5C4.45,4,4,4.45,4,5v3C4,8.55,4.45,9,5,9z M4.94,4.94h3.12v3.12H4.94V4.94z\\\"></path><path d=\\\"M5,16h3c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1H5c-0.55,0-1,0.45-1,1v3C4,15.55,4.45,16,5,16z M4.94,11.94h3.12v3.12 H4.94V11.94z\\\"></path><path d=\\\"M11,5v3c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1h-3C11.45,4,11,4.45,11,5z M15.06,8.06h-3.12V4.94 h3.12V8.06z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"duo\": {\n    \"name\": \"duo\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clear_all\": {\n    \"name\": \"clear_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-2 4h12c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm3-9c0 .55.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"rss_feed\": {\n    \"name\": \"rss_feed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"6.18\\\" cy=\\\"17.82\\\" r=\\\"2.18\\\"></circle><path d=\\\"M5.59 10.23c-.84-.14-1.59.55-1.59 1.4 0 .71.53 1.28 1.23 1.4 2.92.51 5.22 2.82 5.74 5.74.12.7.69 1.23 1.4 1.23.85 0 1.54-.75 1.41-1.59-.68-4.2-3.99-7.51-8.19-8.18zm-.03-5.71C4.73 4.43 4 5.1 4 5.93c0 .73.55 1.33 1.27 1.4 6.01.6 10.79 5.38 11.39 11.39.07.73.67 1.28 1.4 1.28.84 0 1.5-.73 1.42-1.56-.73-7.34-6.57-13.19-13.92-13.92z\\\"></path>\"\n      }\n    }\n  },\n  \"rtt\": {\n    \"name\": \"rtt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8.76,4.69L8.15,8.58c-0.12,0.78,0.48,1.49,1.28,1.49h0c0.64,0,1.18-0.46,1.28-1.09l0.53-3.41h2.58L11.8,18.43h-1.24 c-0.63,0-1.16,0.46-1.26,1.08l0,0.01C9.17,20.3,9.77,21,10.56,21h4.67c0.63,0,1.17-0.46,1.26-1.08l0-0.01 c0.12-0.78-0.48-1.48-1.26-1.48h-0.86l2-12.86h2.58l-0.47,3.01c-0.12,0.78,0.48,1.49,1.28,1.49h0.03c0.64,0,1.18-0.46,1.28-1.09 l0.57-3.67C21.83,4.09,20.89,3,19.66,3h-8.92C9.76,3,8.92,3.72,8.76,4.69z M8,5H4.86C4.36,5,3.94,5.36,3.87,5.85l0,0 C3.77,6.45,4.24,7,4.86,7h2.83L8,5z M7.39,9H4.25C3.75,9,3.33,9.36,3.26,9.85l0,0C3.16,10.45,3.63,11,4.25,11h2.83L7.39,9z M8.31,17H3.17c-0.49,0-0.91,0.36-0.99,0.85l0,0C2.08,18.45,2.55,19,3.17,19H8L8.31,17z M8.93,13H3.79c-0.49,0-0.91,0.36-0.99,0.85 l0,0C2.7,14.45,3.17,15,3.79,15h4.84L8.93,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hourglass_bottom\": {\n    \"name\": \"hourglass_bottom\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,22c1.1,0,2-0.9,2-2l-0.01-3.18c0-0.53-0.21-1.03-0.58-1.41L14,12l3.41-3.43c0.37-0.37,0.58-0.88,0.58-1.41L18,4 c0-1.1-0.9-2-2-2H8C6.9,2,6,2.9,6,4v3.16C6,7.69,6.21,8.2,6.58,8.58L10,12l-3.41,3.4C6.21,15.78,6,16.29,6,16.82V20 c0,1.1,0.9,2,2,2H16z M8,7.09V5c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1v2.09c0,0.27-0.11,0.52-0.29,0.71L12,11.5L8.29,7.79 C8.11,7.61,8,7.35,8,7.09z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7,17h6c0.55,0,1-0.45,1-1v-2.59c0-0.27-0.11-0.52-0.29-0.71L11,10l2.71-2.71C13.89,7.11,14,6.85,14,6.59V4 c0-0.55-0.45-1-1-1H7C6.45,3,6,3.45,6,4v2.59c0,0.27,0.11,0.52,0.29,0.71L9,10l-2.71,2.71C6.11,12.89,6,13.15,6,13.41V16 C6,16.55,6.45,17,7,17z M7,6.59V4.5C7,4.22,7.22,4,7.5,4h5C12.78,4,13,4.22,13,4.5v2.09l-3,3L7,6.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"portable_wifi_off\": {\n    \"name\": \"portable_wifi_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.71 3.07c-.39.39-.39 1.02 0 1.41L4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.3 1.6 6.22 4.06 8.04.48.35 1.16.21 1.46-.31.25-.43.14-.99-.26-1.29C5.29 16.98 4 14.65 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 1.8.8 3.41 2.06 4.51.46.4 1.19.25 1.5-.28l.01-.01c.24-.42.13-.94-.23-1.26C8.52 14.23 8 13.18 8 12c0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 6.81 6.81c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.13 3.07c-.39-.39-1.03-.39-1.42 0zm15 10.75c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_phone\": {\n    \"name\": \"speaker_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.76,7.83l0.02,0.02c0.35,0.35,0.89,0.38,1.3,0.09C9.91,7.37,10.92,7.02,12,7.02s2.09,0.35,2.92,0.93 c0.4,0.29,0.95,0.26,1.3-0.09l0.02-0.02c0.42-0.42,0.39-1.14-0.09-1.49C14.98,5.5,13.55,5,12,5S9.02,5.5,7.86,6.34 C7.37,6.69,7.34,7.41,7.76,7.83z\\\"></path><path d=\\\"M12,1C9.38,1,6.97,1.93,5.08,3.47C4.62,3.84,4.57,4.53,5,4.96l0,0c0.36,0.36,0.93,0.39,1.32,0.07C7.86,3.76,9.85,3,12,3 s4.14,0.76,5.69,2.03c0.39,0.32,0.96,0.29,1.32-0.07l0,0c0.42-0.42,0.38-1.11-0.08-1.49C17.03,1.93,14.62,1,12,1z\\\"></path><path d=\\\"M15,10l-6,0c-0.55,0-1,0.45-1,1v10c0,0.55,0.45,1,1,1h5.99c0.55,0,1-0.45,1-1L16,11C16,10.45,15.55,10,15,10z M15,20H9v-8 h6V20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_search\": {\n    \"name\": \"person_search\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M10.35,14.01C7.62,13.91,2,15.27,2,18v1c0,0.55,0.45,1,1,1h8.54C9.07,17.24,10.31,14.11,10.35,14.01z\\\"></path><path d=\\\"M19.43,18.02c0.47-0.8,0.7-1.77,0.48-2.82c-0.34-1.64-1.72-2.95-3.38-3.16c-2.63-0.34-4.85,1.87-4.5,4.5 c0.22,1.66,1.52,3.04,3.16,3.38c1.05,0.22,2.02-0.01,2.82-0.48l1.86,1.86c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C18,17.1,17.1,18,16,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.14,10.93C7.85,10.59,4,11.52,4,13.21V14c0,0.55,0.45,1,1,1h4.35C9.04,14.36,8.47,12.47,10.14,10.93z\\\"></path><circle cx=\\\"9\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M16.06,16.35l-1.48-1.48c0.26-0.4,0.42-0.87,0.42-1.38c0-1.38-1.12-2.5-2.5-2.5S10,12.12,10,13.5c0,1.38,1.12,2.5,2.5,2.5 c0.51,0,0.98-0.15,1.38-0.42l1.48,1.48L16.06,16.35z M12.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S13.33,15,12.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"domain_disabled\": {\n    \"name\": \"domain_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M.71 2.39c-.39.39-.39 1.02 0 1.41L2 5.1V19c0 1.1.9 2 2 2h13.9l2.29 2.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.39C1.73 2 1.1 2 .71 2.39zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h7c.55 0 1 .45 1 1v7.45l2 2V9c0-1.1-.9-2-2-2h-8V5c0-1.1-.9-2-2-2H5.55L8 5.45V5zm8 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_chat_read\": {\n    \"name\": \"mark_chat_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M18.05,19.29c-0.39,0.39-1.02,0.39-1.41,0l-2.12-2.12c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0 l1.41,1.41l3.54-3.54c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41L18.05,19.29z M12,17c0-3.87,3.13-7,7-7 c1.08,0,2.09,0.25,3,0.68V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.17,0.01-0.33,0.03-0.5C12.01,17.33,12,17.17,12,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.11,14.65c-0.2,0.2-0.51,0.2-0.71,0l-1.41-1.41c-0.2-0.2-0.2-0.51,0-0.71v0c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06 l3.18-3.18c0.2-0.2,0.51-0.2,0.71,0l0,0c0.2,0.2,0.2,0.51,0,0.71L14.11,14.65z M10,13c0-2.76,2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V4 c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h4.1C10.04,13.68,10,13.34,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"comments_disabled\": {\n    \"name\": \"comments_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.39,2.81C1,3.2,1,3.83,1.39,4.22L2,4.83V16c0,1.1,0.9,2,2,2h11.17l4.61,4.61c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L2.81,2.81C2.42,2.42,1.78,2.42,1.39,2.81z M6.38,9.21L8.17,11H7c-0.55,0-1-0.45-1-1 C6,9.68,6.15,9.4,6.38,9.21z M7,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h2.17l2,2H7z M14.83,12l-1-1H17c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1h-5.17l-1-1H17c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H8.83l-4-4H20c1.1,0,2,0.9,2,2v15.17L16.83,14H17 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H14.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.25,17.25L2.75,2.75c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06L2,4.12v9.38C2,14.33,2.67,15,3.5,15h9.38 l3.31,3.31c0.29,0.29,0.77,0.29,1.06,0S17.54,17.54,17.25,17.25z M5.75,9.25C5.34,9.25,5,8.91,5,8.5c0-0.38,0.28-0.69,0.64-0.74 l1.49,1.49H5.75z M8.75,12C8.34,12,8,11.66,8,11.25c0-0.31,0.18-0.57,0.44-0.68L9.88,12H8.75z M15,5.75C15,5.34,14.66,5,14.25,5 c0,0-7.13,0-7.13,0l-3-3H16.5C17.33,2,18,2.67,18,3.5v12.38L14.12,12h0.13c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75h-1.63 l-1.25-1.25h2.88C14.66,9.25,15,8.91,15,8.5s-0.34-0.75-0.75-0.75H9.87L8.62,6.5h5.63C14.66,6.5,15,6.16,15,5.75z\\\"></path>\"\n      }\n    }\n  },\n  \"mail_lock\": {\n    \"name\": \"mail_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M22,9.97V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h12v-5.03c0-2.76,2.24-5,5-5H22z M19.6,8.25 l-6.54,4.09c-0.65,0.41-1.47,0.41-2.12,0L4.4,8.25C4.15,8.09,4,7.82,4,7.53v0c0-0.67,0.73-1.07,1.3-0.72L12,11l6.7-4.19 C19.27,6.46,20,6.86,20,7.53v0C20,7.82,19.85,8.09,19.6,8.25z\\\"></path></g><g><path d=\\\"M23,15v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C24,15.45,23.55,15,23,15z M22,15h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,8.5v-3C18,4.67,17.33,4,16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h10v-4c0-1.93,1.57-3.5,3.5-3.5H18z M9.25,10.57L3.89,7.49C3.65,7.35,3.5,7.1,3.5,6.82v0c0-0.59,0.64-0.96,1.15-0.67L10,9.23l5.35-3.07 c0.51-0.29,1.15,0.08,1.15,0.67v0c0,0.27-0.15,0.53-0.39,0.67l-5.37,3.08C10.28,10.84,9.72,10.84,9.25,10.57z\\\"></path><path d=\\\"M19.5,12H19v-1c0-0.83-0.67-1.5-1.5-1.5S16,10.17,16,11v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C20,12.22,19.78,12,19.5,12z M16.75,12v-1c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1 H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"phonelink_ring\": {\n    \"name\": \"phonelink_ring\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.63-11.74c-.26-.32-.74-.36-1.04-.06l-.03.03c-.25.25-.26.65-.05.93 1.26 1.64 1.25 3.87-.02 5.57-.21.28-.19.67.05.92l.05.05c.29.29.76.26 1.03-.05 1.8-2.13 1.8-5.19.01-7.39zm-3.21 2.11l-.06.06c-.2.2-.26.5-.15.76.21.49.21 1.03 0 1.52-.11.26-.05.56.15.76l.08.08c.32.32.87.25 1.09-.15.49-.89.49-1.94-.01-2.86-.22-.42-.77-.5-1.1-.17z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_top\": {\n    \"name\": \"hourglass_top\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,2C6.9,2,6,2.9,6,4l0.01,3.18c0,0.53,0.21,1.03,0.58,1.41L10,12l-3.41,3.43c-0.37,0.37-0.58,0.88-0.58,1.41L6,20 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3.16c0-0.53-0.21-1.04-0.58-1.41L14,12l3.41-3.4C17.79,8.22,18,7.71,18,7.18V4 c0-1.1-0.9-2-2-2H8z M16,16.91V19c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-2.09c0-0.27,0.11-0.52,0.29-0.71L12,12.5l3.71,3.71 C15.89,16.39,16,16.65,16,16.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,3H7C6.45,3,6,3.45,6,4v2.59c0,0.27,0.11,0.52,0.29,0.71L9,10l-2.71,2.71C6.11,12.89,6,13.15,6,13.41V16 c0,0.55,0.45,1,1,1h6c0.55,0,1-0.45,1-1v-2.59c0-0.27-0.11-0.52-0.29-0.71L11,10l2.71-2.71C13.89,7.11,14,6.85,14,6.59V4 C14,3.45,13.55,3,13,3z M13,13.41v2.09c0,0.28-0.22,0.5-0.5,0.5h-5C7.22,16,7,15.78,7,15.5v-2.09l3-3L13,13.41z\\\"></path></g>\"\n      }\n    }\n  },\n  \"invert_colors_off\": {\n    \"name\": \"invert_colors_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.49,20.49L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l3.5,3.5c-1,1.31-1.6,2.94-1.6,4.7 C4,17.48,7.58,21,12,21c1.75,0,3.36-0.56,4.67-1.5l2.4,2.4c0.39,0.39,1.02,0.39,1.41,0l0,0C20.88,21.51,20.88,20.88,20.49,20.49z M12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83V19z M8.38,5.56l2.91-2.87c0.39-0.38,1.01-0.38,1.4,0l4.95,4.87 l0,0C19.1,8.99,20,10.96,20,13.13c0,1.18-0.27,2.29-0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.08,4.96l2.56-2.6c0.2-0.2,0.52-0.2,0.71,0l4.17,4.23l0,0c1.07,1.1,1.72,2.6,1.72,4.24c0,0.96-0.23,1.86-0.62,2.67 L10,7.88V4.14L8.14,6.02L7.08,4.96z M15.48,17.6l-1.8-1.8C12.65,16.55,11.38,17,10,17c-3.45,0-6.25-2.76-6.25-6.16 c0-1.39,0.47-2.67,1.26-3.7L2.4,4.52c-0.29-0.29-0.29-0.77,0-1.06l0,0c0.29-0.29,0.77-0.29,1.06,0l13.08,13.08 c0.29,0.29,0.29,0.77,0,1.06l0,0C16.25,17.89,15.77,17.89,15.48,17.6z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63 c0,2.57,2.13,4.66,4.75,4.66V12.12z\\\"></path>\"\n      }\n    }\n  },\n  \"hub\": {\n    \"name\": \"hub\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.4,18.2C8.78,18.7,9,19.32,9,20c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3c0.44,0,0.85,0.09,1.23,0.26l1.41-1.77 c-0.92-1.03-1.29-2.39-1.09-3.69l-2.03-0.68C4.98,11.95,4.06,12.5,3,12.5c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 c0,0.07,0,0.14-0.01,0.21l2.03,0.68c0.64-1.21,1.82-2.09,3.22-2.32l0-2.16C9.96,5.57,9,4.4,9,3c0-1.66,1.34-3,3-3s3,1.34,3,3 c0,1.4-0.96,2.57-2.25,2.91v2.16c1.4,0.23,2.58,1.11,3.22,2.32l2.03-0.68C18,9.64,18,9.57,18,9.5c0-1.66,1.34-3,3-3s3,1.34,3,3 s-1.34,3-3,3c-1.06,0-1.98-0.55-2.52-1.37l-2.03,0.68c0.2,1.29-0.16,2.65-1.09,3.69l1.41,1.77C17.15,17.09,17.56,17,18,17 c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3c0-0.68,0.22-1.3,0.6-1.8l-1.41-1.77c-1.35,0.75-3.01,0.76-4.37,0L8.4,18.2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.71,12.84c0.84-0.88,1.17-2.06,0.99-3.18l1.59-0.48c0.42,0.78,1.25,1.32,2.2,1.32c1.38,0,2.5-1.12,2.5-2.5 s-1.12-2.5-2.5-2.5C16.12,5.5,15,6.62,15,8c0,0.08,0,0.15,0.01,0.22L13.42,8.7c-0.52-1.15-1.61-2-2.92-2.17l0-1.58 c1.14-0.23,2-1.24,2-2.45C12.5,1.12,11.38,0,10,0S7.5,1.12,7.5,2.5c0,1.21,0.86,2.22,2,2.45l0,1.58C8.2,6.71,7.11,7.55,6.58,8.7 L4.99,8.22C5,8.15,5,8.08,5,8c0-1.38-1.12-2.5-2.5-2.5S0,6.62,0,8s1.12,2.5,2.5,2.5c0.95,0,1.78-0.53,2.2-1.32L6.3,9.66 c-0.18,1.12,0.15,2.3,0.99,3.18l-1.15,1.43C5.8,14.1,5.41,14,5,14c-1.38,0-2.5,1.12-2.5,2.5S3.62,19,5,19s2.5-1.12,2.5-2.5 c0-0.61-0.22-1.17-0.58-1.6l1.15-1.43c1.18,0.71,2.68,0.71,3.86,0l1.15,1.43c-0.36,0.43-0.58,0.99-0.58,1.6c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5S16.38,14,15,14c-0.41,0-0.8,0.1-1.14,0.27L12.71,12.84z\\\"></path>\"\n      }\n    }\n  },\n  \"phone\": {\n    \"name\": \"phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.23 15.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\\\"></path>\"\n      }\n    }\n  },\n  \"location_off\": {\n    \"name\": \"location_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.71 3.56c-.39.39-.39 1.02 0 1.41l2.47 2.47C5.07 7.95 5 8.47 5 9c0 4.17 4.42 9.92 6.23 12.11.4.48 1.13.48 1.53 0 .65-.78 1.62-2.01 2.61-3.46l2.65 2.65c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L4.12 3.56c-.39-.39-1.02-.39-1.41 0zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55 1.38 0 2.5 1.12 2.5 2.5 0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code_scanner\": {\n    \"name\": \"qr_code_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M21,7L21,7c-0.55,0-1-0.45-1-1V4h-2 c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v3C22,6.55,21.55,7,21,7z M22,21v-3c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v2h-2c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h3C21.55,22,22,21.55,22,21z M3,22h3c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H4v-2c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3C2,21.55,2.45,22,3,22z M2,3v3c0,0.55,0.45,1,1,1h0 c0.55,0,1-0.45,1-1V4h2c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H3C2.45,2,2,2.45,2,3z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_primary_portrait\": {\n    \"name\": \"stay_primary_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_mail\": {\n    \"name\": \"contact_mail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 8V7l-3 2-3-2v1l2.72 1.82c.17.11.39.11.55 0L21 8zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm7.5-6h-7c-.28 0-.5-.22-.5-.5v-5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v5c0 .28-.22.5-.5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_tower\": {\n    \"name\": \"cell_tower\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.9,14.1l0.09-0.09c0.27-0.27,0.32-0.71,0.08-1.01C7.36,12.09,7,11.01,7,10c0-1.08,0.35-2.16,1.04-3.01 c0.25-0.3,0.21-0.75-0.07-1.02L7.9,5.9C7.56,5.56,7,5.6,6.7,5.98C5.79,7.16,5.3,8.58,5.3,10c0,1.42,0.49,2.84,1.4,4.02 C7,14.4,7.56,14.44,7.9,14.1z\\\"></path><path d=\\\"M18.51,3.49l-0.08,0.08c-0.3,0.3-0.29,0.76-0.03,1.08c1.26,1.53,1.9,3.48,1.9,5.35c0,1.87-0.63,3.81-1.9,5.35 c-0.28,0.33-0.23,0.83,0.08,1.14v0c0.35,0.35,0.93,0.31,1.24-0.07C21.29,14.54,22,12.31,22,10c0-2.32-0.79-4.55-2.31-6.43 C19.39,3.2,18.84,3.16,18.51,3.49z\\\"></path><path d=\\\"M5.57,3.57L5.49,3.49C5.16,3.16,4.61,3.2,4.31,3.57C2.79,5.45,2,7.68,2,10c0,2.32,0.79,4.55,2.31,6.43 c0.3,0.37,0.85,0.42,1.18,0.08l0.08-0.08c0.3-0.3,0.29-0.76,0.03-1.08C4.33,13.81,3.7,11.87,3.7,10c0-1.87,0.63-3.81,1.9-5.35 C5.86,4.33,5.87,3.87,5.57,3.57z\\\"></path><path d=\\\"M16.07,14.07c0.36,0.36,0.95,0.32,1.26-0.09c0.9-1.18,1.37-2.58,1.37-3.98c-0.08-1.41-0.51-2.83-1.4-4.01 c-0.29-0.39-0.86-0.43-1.2-0.09l-0.08,0.08c-0.27,0.27-0.32,0.71-0.08,1.01C16.64,7.91,17,8.99,17,10c0,1.07-0.34,2.13-1.01,2.98 C15.73,13.3,15.77,13.77,16.07,14.07L16.07,14.07z\\\"></path><path d=\\\"M14.5,10c0-1.6-1.51-2.85-3.18-2.41c-0.8,0.21-1.46,0.85-1.7,1.65c-0.32,1.06,0.06,2.04,0.76,2.64l-2.96,8.87 C7.21,21.37,7.67,22,8.32,22h0c0.41,0,0.77-0.26,0.9-0.65L9.67,20h4.67l0.45,1.35c0.13,0.39,0.49,0.65,0.9,0.65h0 c0.65,0,1.1-0.63,0.9-1.25l-2.96-8.87C14.16,11.42,14.5,10.76,14.5,10z M10.33,18L12,13l1.67,5H10.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.08,10.92L7.08,10.92c0.25-0.25,0.3-0.65,0.1-0.94C6.78,9.42,6.55,8.74,6.55,8s0.23-1.42,0.63-1.98 c0.2-0.29,0.15-0.69-0.1-0.94l0,0C6.75,4.75,6.19,4.8,5.93,5.19C5.37,5.99,5.05,6.96,5.05,8s0.32,2.01,0.88,2.81 C6.19,11.2,6.75,11.25,7.08,10.92z\\\"></path><path d=\\\"M4.9,2.91L4.9,2.91C4.59,2.59,4.07,2.61,3.79,2.95C2.67,4.33,2,6.09,2,8s0.67,3.67,1.79,5.05 c0.28,0.34,0.8,0.36,1.11,0.05l0,0c0.27-0.27,0.29-0.71,0.05-1.01C4.04,10.97,3.5,9.55,3.5,8s0.54-2.97,1.45-4.09 C5.19,3.61,5.18,3.18,4.9,2.91z\\\"></path><path d=\\\"M12.92,5.08L12.92,5.08c-0.25,0.25-0.3,0.65-0.1,0.94c0.4,0.56,0.63,1.25,0.63,1.98c0,0.74-0.23,1.42-0.63,1.98 c-0.2,0.29-0.15,0.69,0.1,0.94l0,0c0.33,0.33,0.89,0.28,1.15-0.11c0.55-0.8,0.88-1.77,0.88-2.81c0-1.04-0.32-2.01-0.88-2.81 C13.81,4.8,13.25,4.75,12.92,5.08z\\\"></path><path d=\\\"M15.1,2.9L15.1,2.9c-0.28,0.28-0.29,0.71-0.05,1.01C15.96,5.03,16.5,6.45,16.5,8c0,1.55-0.54,2.97-1.45,4.09 c-0.24,0.3-0.23,0.73,0.05,1.01l0,0c0.31,0.31,0.83,0.29,1.11-0.05C17.33,11.67,18,9.91,18,8c0-1.91-0.67-3.67-1.79-5.05 C15.93,2.61,15.41,2.59,15.1,2.9z\\\"></path><path d=\\\"M12,8c0-1.26-1.16-2.24-2.47-1.95C8.81,6.22,8.22,6.8,8.06,7.52C7.86,8.34,8.18,9.09,8.75,9.55L6.3,17.07 C6.15,17.53,6.5,18,6.98,18h0c0.31,0,0.58-0.2,0.68-0.49l0.33-1.01h3.6l0.27,0.98c0.09,0.31,0.37,0.52,0.69,0.52h0.02 c0.47,0,0.81-0.45,0.69-0.9l-2.06-7.5C11.68,9.23,12,8.66,12,8z M8.47,15l1.46-4.5l1.24,4.5H8.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mark_chat_unread\": {\n    \"name\": \"mark_chat_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M22,6.98V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3c0,2.76,2.24,5,5,5 C20.13,8,21.16,7.61,22,6.98z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17,6.22V13c0,0.55-0.45,1-1,1H6l-3,3V4c0-0.55,0.45-1,1-1h8.18C12.07,3.31,12,3.65,12,4c0,1.66,1.34,3,3,3 C15.77,7,16.47,6.7,17,6.22z M13,4c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,2.9,13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forum\": {\n    \"name\": \"forum\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-1v8c0 .55-.45 1-1 1H6v1c0 1.1.9 2 2 2h10l4 4V8c0-1.1-.9-2-2-2zm-3 5V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v13l4-4h9c1.1 0 2-.9 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_presentation\": {\n    \"name\": \"pause_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12zM10 8c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1zm4 0c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1V9c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"read_more\": {\n    \"name\": \"read_more\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,9h7c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-7c-0.55,0-1,0.45-1,1C13,8.55,13.45,9,14,9z\\\"></path><path d=\\\"M21,15h-7c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h7c0.55,0,1-0.45,1-1C22,15.45,21.55,15,21,15z\\\"></path><path d=\\\"M21,11h-4c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1C22,11.45,21.55,11,21,11z\\\"></path><path d=\\\"M8.85,7.85C8.54,7.54,8,7.76,8,8.21V11H3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h5v2.79c0,0.45,0.54,0.67,0.85,0.35 l3.79-3.79c0.2-0.2,0.2-0.51,0-0.71L8.85,7.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,10L8,7v2.5H3.5C3.22,9.5,3,9.72,3,10c0,0.28,0.22,0.5,0.5,0.5H8V13L11,10z\\\"></path><path d=\\\"M11.5,8h5C16.78,8,17,7.78,17,7.5C17,7.22,16.78,7,16.5,7h-5C11.22,7,11,7.22,11,7.5C11,7.78,11.22,8,11.5,8z\\\"></path><path d=\\\"M16.5,12h-5c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h5c0.28,0,0.5-0.22,0.5-0.5C17,12.22,16.78,12,16.5,12z\\\"></path><path d=\\\"M16.5,9.5h-3C13.22,9.5,13,9.72,13,10c0,0.28,0.22,0.5,0.5,0.5h3c0.28,0,0.5-0.22,0.5-0.5C17,9.72,16.78,9.5,16.5,9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"co_present\": {\n    \"name\": \"co_present\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v8h2V5h18v16c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g><g><circle cx=\\\"9\\\" cy=\\\"10\\\" r=\\\"4\\\"></circle></g><g><path d=\\\"M15.39,16.56C13.71,15.7,11.53,15,9,15c-2.53,0-4.71,0.7-6.39,1.56C1.61,17.07,1,18.1,1,19.22V22h16v-2.78 C17,18.1,16.39,17.07,15.39,16.56z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.5,3h-15C1.67,3,1,3.67,1,4.5v6.75C1,11.66,1.34,12,1.75,12h0c0.41,0,0.75-0.34,0.75-0.75V4.5h15V17 c0.83,0,1.5-0.67,1.5-1.5v-11C19,3.67,18.33,3,17.5,3z\\\"></path><circle cx=\\\"7\\\" cy=\\\"9\\\" r=\\\"3\\\"></circle><path d=\\\"M12.03,14.37C10.56,13.5,8.84,13,7,13s-3.56,0.5-5.03,1.37C1.36,14.73,1,15.39,1,16.09l0,0.41C1,17.33,1.67,18,2.5,18h9 c0.83,0,1.5-0.67,1.5-1.5l0-0.41C13,15.39,12.64,14.73,12.03,14.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"call\": {\n    \"name\": \"call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.23 15.26l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.03.57-1.64l-.29-2.52c-.12-1.01-.97-1.77-1.99-1.77H5.03c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1.01-.75-1.86-1.76-1.98z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble_outline\": {\n    \"name\": \"chat_bubble_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g enable-background=\\\"new\\\"><path d=\\\"M20 4v12H5.17L4 17.17V4h16m0-2H4c-1.1 0-2 .9-2 2v15.59c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stay_current_portrait\": {\n    \"name\": \"stay_current_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"present_to_all\": {\n    \"name\": \"present_to_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm-1 16.02H4c-.55 0-1-.45-1-1V5.98c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.04c0 .55-.45 1-1 1zM10 12H8l3.65-3.65c.2-.2.51-.2.71 0L16 12h-2v4h-4v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_missed\": {\n    \"name\": \"call_missed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.89 7.7L12 14.59 6.41 9H10c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1v-3.59l6.29 6.29c.39.39 1.02.39 1.41 0l7.59-7.59c.39-.39.39-1.02 0-1.41-.38-.38-1.02-.38-1.4 0z\\\"></path>\"\n      }\n    }\n  },\n  \"import_export\": {\n    \"name\": \"import_export\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.65 3.35L5.86 6.14c-.32.31-.1.85.35.85H8V13c0 .55.45 1 1 1s1-.45 1-1V6.99h1.79c.45 0 .67-.54.35-.85L9.35 3.35c-.19-.19-.51-.19-.7 0zM16 17.01V11c0-.55-.45-1-1-1s-1 .45-1 1v6.01h-1.79c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H16z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble\": {\n    \"name\": \"chat_bubble\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key_off\": {\n    \"name\": \"vpn_key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.98,6.81C2.2,7.85,1,9.79,1,12c0,3.31,2.69,6,6,6c2.21,0,4.15-1.2,5.18-2.99l6.89,6.89c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L3.51,3.51c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41L3.98,6.81z M8.99,11.82 C9,11.88,9,11.94,9,12c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.06,0,0.12,0,0.18,0.01L8.99,11.82z M20.32,17.5 C20.74,17.13,21,16.59,21,16v-2c1.1,0,2-0.9,2-2s-0.9-2-2-2h-8.17L20.32,17.5\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.48,17.6c0.29,0.29,0.77,0.29,1.06,0c0.29-0.29,0.29-0.77,0-1.06L3.46,3.46c-0.29-0.29-0.77-0.29-1.06,0 c-0.29,0.29-0.29,0.77,0,1.06l1.13,1.13C2.02,6.51,1,8.14,1,10c0,2.76,2.24,5,5,5c1.87,0,3.48-1.03,4.33-2.55L15.48,17.6z M6,12 c-1.1,0-2-0.9-2-2c0-1.06,0.83-1.94,1.88-2L8,10.12C7.93,11.17,7.06,12,6,12z M16.62,14.5c0.24-0.27,0.38-0.61,0.38-1v-2h0.5 c0.83,0,1.5-0.67,1.5-1.5v0c0-0.83-0.67-1.5-1.5-1.5h-6.88L16.62,14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"voicemail\": {\n    \"name\": \"voicemail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_setup\": {\n    \"name\": \"phonelink_setup\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 3v2c0 .55.45 1 1 1s1-.45 1-1V4h10v16H9v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_emergency\": {\n    \"name\": \"contact_emergency\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,3H2C0.9,3,0,3.9,0,5v14c0,1.1,0.9,2,2,2h20c1.1,0,1.99-0.9,1.99-2L24,5C24,3.9,23.1,3,22,3z M9,8c1.65,0,3,1.35,3,3 s-1.35,3-3,3s-3-1.35-3-3S7.35,8,9,8z M2.08,19c1.38-2.39,3.96-4,6.92-4s5.54,1.61,6.92,4H2.08z M20.6,10.5L20.6,10.5 c-0.21,0.36-0.67,0.48-1.02,0.27l-0.82-0.48v0.95c0,0.41-0.34,0.75-0.75,0.75h0c-0.41,0-0.75-0.34-0.75-0.75V10.3l-0.82,0.48 c-0.36,0.21-0.82,0.08-1.02-0.27l0,0c-0.21-0.36-0.08-0.82,0.27-1.02L16.5,9l-0.82-0.48c-0.36-0.21-0.48-0.67-0.27-1.02l0,0 c0.21-0.36,0.67-0.48,1.02-0.27l0.82,0.48V6.75C17.25,6.34,17.59,6,18,6h0c0.41,0,0.75,0.34,0.75,0.75V7.7l0.82-0.48 c0.36-0.21,0.82-0.08,1.02,0.27v0c0.21,0.36,0.08,0.82-0.27,1.02L19.5,9l0.82,0.48C20.68,9.68,20.81,10.14,20.6,10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.5,3h-17C0.67,3,0,3.67,0,4.5v11C0,16.33,0.67,17,1.5,17h17c0.83,0,1.5-0.67,1.5-1.5v-11C20,3.67,19.33,3,18.5,3z M7,7 c1.38,0,2.5,1.12,2.5,2.5S8.38,12,7,12s-2.5-1.12-2.5-2.5S5.62,7,7,7z M1.64,15.5C2.93,13.97,4.85,13,7,13s4.07,0.97,5.36,2.5H1.64 z M17.17,9.75L17.17,9.75c-0.14,0.24-0.44,0.32-0.68,0.18L15.5,9.37v1.13c0,0.28-0.22,0.5-0.5,0.5h0c-0.28,0-0.5-0.22-0.5-0.5V9.37 l-0.98,0.57c-0.24,0.14-0.54,0.06-0.68-0.18l0,0c-0.14-0.24-0.06-0.54,0.18-0.68L14,8.5l-0.98-0.57c-0.24-0.14-0.32-0.44-0.18-0.68 l0,0c0.14-0.24,0.44-0.32,0.68-0.18l0.98,0.57V6.5C14.5,6.22,14.72,6,15,6h0c0.28,0,0.5,0.22,0.5,0.5v1.13l0.98-0.57 c0.24-0.14,0.54-0.06,0.68,0.18v0c0.14,0.24,0.06,0.54-0.18,0.68L16,8.5l0.98,0.57C17.22,9.21,17.3,9.51,17.17,9.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stop_screen_share\": {\n    \"name\": \"stop_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 18h-1.2l1.79 1.79c.24-.18.41-.46.41-.79 0-.55-.45-1-1-1zM3.23 2.28c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.02 0 1.41l.84.86s-.66.57-.66 1.47C2 6.92 2 16 2 16l.01.01c0 1.09.88 1.98 1.97 1.99H1c-.55 0-1 .45-1 1s.45 1 1 1h17.13l2 2c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L3.23 2.28zM7 15c.31-1.48.94-2.93 2.08-4.05l1.59 1.59C9.13 12.92 7.96 13.71 7 15zm6-5.87v-.98c0-.44.52-.66.84-.37L15 8.87l1.61 1.5c.21.2.21.53 0 .73l-.89.83 5.58 5.58c.43-.37.7-.9.7-1.51V6c0-1.09-.89-1.98-1.98-1.98H7.8l5.14 5.13c.02-.01.04-.02.06-.02z\\\"></path>\"\n      }\n    }\n  },\n  \"spoke\": {\n    \"name\": \"spoke\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,7c0,2.21-1.79,4-4,4S8,9.21,8,7s1.79-4,4-4S16,4.79,16,7z M7,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.21,13,7,13 z M17,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S19.21,13,17,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3C8.34,3,7,4.34,7,6c0,1.66,1.34,3,3,3s3-1.34,3-3C13,4.34,11.66,3,10,3z M14,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3 s3-1.34,3-3C17,12.34,15.66,11,14,11z M6,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C9,12.34,7.66,11,6,11z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_wifi\": {\n    \"name\": \"cell_wifi\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.29,7.68L7.7,20.29C7.07,20.92,7.52,22,8.41,22H21c0.55,0,1-0.45,1-1V8.39C22,7.5,20.92,7.05,20.29,7.68z M20,20h-2 v-7.22l2-2V20z\\\"></path><path d=\\\"M9.61,10.68c-0.28,0.17-0.32,0.56-0.09,0.79l0.82,0.82c0.39,0.39,1.02,0.39,1.41,0l0.82-0.82 c0.23-0.23,0.18-0.62-0.09-0.79C11.61,10.14,10.49,10.14,9.61,10.68z\\\"></path><path d=\\\"M8.42,9.3c1.57-1.12,3.7-1.12,5.27,0c0.36,0.26,0.85,0.22,1.16-0.1c0.39-0.39,0.35-1.06-0.1-1.38 c-2.2-1.57-5.19-1.57-7.4,0C6.9,8.14,6.85,8.81,7.25,9.2C7.57,9.52,8.06,9.56,8.42,9.3z\\\"></path><path d=\\\"M16.26,6.69c0.34,0.28,0.83,0.28,1.14-0.03l0.12-0.12c0.35-0.35,0.31-0.92-0.08-1.24c-3.67-3.05-9.02-3.07-12.7-0.06 C4.31,5.59,4.27,6.23,4.66,6.61C4.98,6.94,5.5,6.98,5.85,6.69C8.86,4.21,13.25,4.21,16.26,6.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"call_missed_outgoing\": {\n    \"name\": \"call_missed_outgoing\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.7 9.11l7.59 7.59c.39.39 1.02.39 1.41 0l6.3-6.3V14c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1h3.59L12 14.59 5.11 7.7c-.39-.39-1.02-.39-1.41 0-.38.39-.38 1.03 0 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"call_made\": {\n    \"name\": \"call_made\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 6c0 .56.45 1 1 1h5.59L4.7 17.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L17 8.41V14c0 .55.45 1 1 1s1-.45 1-1V6c0-.55-.45-1-1-1h-8c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"send_time_extension\": {\n    \"name\": \"send_time_extension\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6c0-1.1-0.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H5.01c-1.1,0-2,0.9-2,2v3.8C5.7,9.8,6,11.96,6,12.5 c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8c0-2.16,1.37-2.78,2.2-2.94v-9.3l9,4.5V6z\\\"></path><polygon points=\\\"13,12 13,16 17,17 13,18 13,22 23,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,11.32V4.5C17,3.67,16.33,3,15.5,3H12c0-1.1-0.9-2-2-2S8,1.9,8,3H4.5C3.67,3,3,3.67,3,4.5V8c1.1,0,2,0.9,2,2 s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-0.93,0.64-1.71,1.5-1.93V10V7.57l2.17,1.09L17,11.32z\\\"></path><polygon points=\\\"11,10 11,13 14,14 11,15 11,18 19,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"mail_outline\": {\n    \"name\": \"mail_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1 14H5c-.55 0-1-.45-1-1V8l6.94 4.34c.65.41 1.47.41 2.12 0L20 8v9c0 .55-.45 1-1 1zm-7-7L4 6h16l-8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"email\": {\n    \"name\": \"email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-.4 4.25l-7.07 4.42c-.32.2-.74.2-1.06 0L4.4 8.25c-.25-.16-.4-.43-.4-.72 0-.67.73-1.07 1.3-.72L12 11l6.7-4.19c.57-.35 1.3.05 1.3.72 0 .29-.15.56-.4.72z\\\"></path>\"\n      }\n    }\n  },\n  \"print_disabled\": {\n    \"name\": \"print_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.12 2.32c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L4.98 8C3.33 8.01 2 9.35 2 11v4c0 1.1.9 2 2 2h2v2c0 1.1.9 2 2 2h8c.55 0 1.04-.22 1.4-.58l2.83 2.83c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.32zM15 19H9c-.55 0-1-.45-1-1v-4h2.98l4.72 4.72c-.19.17-.43.28-.7.28zm4-11h-8.37l9 9H20c1.1 0 2-.9 2-2v-4c0-1.66-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2-5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1H7c-.37 0-.68.21-.85.51L9.63 7H17z\\\"></path>\"\n      }\n    }\n  },\n  \"comment\": {\n    \"name\": \"comment\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM17 14H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"dialer_sip\": {\n    \"name\": \"dialer_sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 8c.28 0 .5-.22.5-.5v-4c0-.28-.22-.5-.5-.5s-.5.22-.5.5v4c0 .28.22.5.5.5zm-4-1c-.28 0-.5.22-.5.5s.22.5.5.5h1.95c.3 0 .55-.25.55-.55v-1.9c0-.3-.25-.55-.55-.55H13V4h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-1.95c-.3 0-.55.25-.55.55v1.89c0 .31.25.56.55.56H14v1h-1.5zm7.95-4h-1.89c-.31 0-.56.25-.56.55V7.5c0 .28.22.5.5.5s.5-.22.5-.5V6h1.45c.3 0 .55-.25.55-.55v-1.9c0-.3-.25-.55-.55-.55zM20 5h-1V4h1v1zm-.79 10.27l-2.54-.29c-.61-.07-1.21.14-1.64.57l-1.84 1.84c-2.83-1.44-5.15-3.75-6.59-6.59l1.85-1.85c.43-.43.64-1.04.57-1.64l-.29-2.52c-.11-1.01-.97-1.78-1.98-1.78H5.02c-1.13 0-2.07.94-2 2.07.53 8.54 7.36 15.36 15.89 15.89 1.13.07 2.07-.87 2.07-2v-1.73c.01-1-.76-1.86-1.77-1.97z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_screen_share\": {\n    \"name\": \"mobile_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 1H7c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.78v1.75l2.81-2.62c.21-.2.21-.53 0-.73L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z\\\"></path>\"\n      }\n    }\n  },\n  \"key_off\": {\n    \"name\": \"key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.83,10l4.09,4.09L17,14l1.29,1.29c0.39,0.39,1.03,0.39,1.42,0l2.59-2.61c0.39-0.39,0.39-1.03-0.01-1.42l-0.99-0.97 C21.1,10.1,20.85,10,20.59,10H12.83z M19.07,21.9c0.39,0.39,1.02,0.39,1.41,0s0.39-1.02,0-1.41L3.51,3.51 c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41l1.88,1.88C2.2,7.85,1,9.79,1,12c0,3.31,2.69,6,6,6 c2.21,0,4.15-1.2,5.18-2.99L19.07,21.9z M9.91,12.74C9.58,14.03,8.4,15,7,15c-1.65,0-3-1.35-3-3c0-1.4,0.97-2.58,2.26-2.91 L9.91,12.74z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.62,8.5l3.44,3.44l0.44-0.44h0.01l1.15,1.15c0.2,0.2,0.51,0.2,0.71,0l2.29-2.29c0.2-0.2,0.2-0.51,0-0.71l-1-1 c-0.11-0.1-0.23-0.15-0.37-0.15H10.62z M2.4,3.46c0.29-0.29,0.77-0.29,1.06,0l13.08,13.08c0.29,0.29,0.29,0.77,0,1.06 s-0.77,0.29-1.06,0l-5.15-5.15c-1,1.77-3.03,2.88-5.29,2.45c-1.95-0.36-3.55-1.93-3.94-3.88C0.65,8.75,1.75,6.67,3.53,5.65 L2.4,4.52C2.11,4.23,2.11,3.75,2.4,3.46z M5.44,7.56C4.33,7.82,3.5,8.81,3.5,10c0,1.38,1.12,2.5,2.5,2.5 c1.19,0,2.18-0.83,2.44-1.94L5.44,7.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stay_primary_landscape\": {\n    \"name\": \"stay_primary_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"dialpad\": {\n    \"name\": \"dialpad\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"more_time\": {\n    \"name\": \"more_time\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.75,8C10.34,8,10,8.34,10,8.75v4.69c0,0.35,0.18,0.67,0.47,0.85l3.64,2.24c0.33,0.2,0.76,0.11,0.97-0.21 c0.23-0.34,0.12-0.8-0.23-1.01L11.5,13.3V8.75C11.5,8.34,11.16,8,10.75,8z\\\"></path><path d=\\\"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z\\\"></path><path d=\\\"M22,5h-2V3c0-0.55-0.45-1-1-1s-1,0.45-1,1v2h-2c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V7 h2c0.55,0,1-0.45,1-1C23,5.45,22.55,5,22,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.5,8.53v3.24c0,0.18,0.09,0.34,0.24,0.43l2.52,1.51c0.23,0.14,0.52,0.06,0.66-0.16l0,0c0.14-0.23,0.06-0.53-0.16-0.66 L9.5,11.55V8.53c0-0.26-0.21-0.48-0.48-0.48H8.98C8.71,8.05,8.5,8.26,8.5,8.53z\\\"></path><path d=\\\"M13.9,10c0.07,0.32,0.1,0.66,0.1,1c0,2.76-2.24,5-5,5s-5-2.24-5-5s2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5.35 C10.37,5.13,9.7,5,9,5c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6c0-0.34-0.04-0.67-0.09-1H13.9z\\\"></path><path d=\\\"M15,6V4.5C15,4.22,14.78,4,14.5,4h0C14.22,4,14,4.22,14,4.5V6h0h-1.5C12.22,6,12,6.22,12,6.5v0C12,6.78,12.22,7,12.5,7H14 v1.5C14,8.78,14.22,9,14.5,9h0C14.78,9,15,8.78,15,8.5V7v0h1.5C16.78,7,17,6.78,17,6.5v0C17,6.22,16.78,6,16.5,6H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"chat\": {\n    \"name\": \"chat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 9h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1zm6 5H7c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm4-6H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"ring_volume\": {\n    \"name\": \"ring_volume\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.98 7h.03c.55 0 .99-.44.99-.98V2.98c0-.54-.44-.98-.98-.98h-.03c-.55 0-.99.44-.99.98v3.03c0 .55.44.99.98.99zm4.92 2.11c.39.39 1.01.39 1.4 0 .62-.63 1.52-1.54 2.15-2.17.39-.38.39-1.01 0-1.39-.38-.38-1.01-.38-1.39 0L16.89 7.7c-.39.38-.39 1.01 0 1.39l.01.02zM5.71 9.1c.38.39 1.01.39 1.4 0 .38-.38.38-1.01 0-1.39L4.96 5.54c-.38-.39-1.01-.39-1.39 0l-.02.01c-.39.39-.39 1.01 0 1.39.63.62 1.54 1.53 2.16 2.16zm17.58 7.13c-6.41-5.66-16.07-5.66-22.48 0-.85.75-.85 2.08-.05 2.88l1.22 1.22c.72.72 1.86.78 2.66.15l2-1.59c.48-.38.76-.96.76-1.57v-2.6c3.02-.98 6.29-.99 9.32 0v2.61c0 .61.28 1.19.76 1.57l1.99 1.58c.8.63 1.94.57 2.66-.15l1.22-1.22c.79-.8.79-2.13-.06-2.88z\\\"></path>\"\n      }\n    }\n  },\n  \"call_merge\": {\n    \"name\": \"call_merge\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.7 19.7c.39-.39.39-1.02 0-1.41l-2.7-2.7L13.59 17l2.7 2.7c.39.39 1.03.39 1.41 0zM8.71 8H11v5.59l-4.71 4.7c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l5.3-5.3V8h2.29c.45 0 .67-.54.35-.85l-3.29-3.29c-.2-.2-.51-.2-.71 0L8.35 7.15c-.31.31-.09.85.36.85z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_email_unread\": {\n    \"name\": \"mark_email_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M19,10c1.13,0,2.16-0.39,3-1.02V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1C14.04,4.32,14,4.66,14,5 c0,1.48,0.65,2.79,1.67,3.71L12,11L5.3,6.81C4.73,6.46,4,6.86,4,7.53c0,0.29,0.15,0.56,0.4,0.72l7.07,4.42 c0.32,0.2,0.74,0.2,1.06,0l4.77-2.98C17.84,9.88,18.4,10,19,10z M16,5c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,8c0.77,0,1.47-0.3,2-0.78V15c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h8.18 C12.07,4.31,12,4.65,12,5c0,0.79,0.31,1.5,0.81,2.03L10,8.82L4.76,5.49C4.43,5.28,4,5.51,4,5.91c0,0.17,0.09,0.33,0.23,0.42 l5.23,3.33c0.33,0.21,0.75,0.21,1.07,0l3.12-1.99C14.06,7.87,14.52,8,15,8z M13,5c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2 S13,3.9,13,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"list_alt\": {\n    \"name\": \"list_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 9h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20 3H4c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"unsubscribe\": {\n    \"name\": \"unsubscribe\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 11.5c.92 0 1.75.26 2.49.69V5c0-1.1-.89-2-1.99-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8.55c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5zm-5.61-1.45c-.56.28-1.23.28-1.79 0l-5.61-2.8c-.3-.15-.49-.46-.49-.8 0-.66.7-1.1 1.29-.8L12 8.5l5.71-2.85c.59-.3 1.29.13 1.29.8 0 .34-.19.65-.49.8l-5.62 2.8zM18.5 13c-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.5zm2 3.5c0 .28-.22.5-.5.5h-3c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h3c.28 0 .5.22.5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"message\": {\n    \"name\": \"message\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-3 12H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1zm0-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"domain_verification\": {\n    \"name\": \"domain_verification\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.23,15.83c0.39,0.39,1.02,0.39,1.41,0l4.24-4.24c0.39-0.39,0.39-1.02,0-1.42v0c-0.39-0.39-1.02-0.39-1.41,0l-3.54,3.53 l-1.41-1.41c-0.39-0.39-1.02-0.39-1.42,0s-0.39,1.02,0,1.41L10.23,15.83z\\\"></path><path d=\\\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,17c0,0.55-0.45,1-1,1H6 c-0.55,0-1-0.45-1-1V8h14V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,14.5 c0,0.28-0.22,0.5-0.5,0.5h-9C5.22,15,5,14.78,5,14.5V7h10V14.5z\\\"></path><path d=\\\"M8.59,13.12c0.2,0.2,0.51,0.2,0.71,0l3.54-3.54c0.2-0.2,0.2-0.51,0-0.71s-0.51-0.2-0.71,0l-3.18,3.18L7.88,11 c-0.2-0.2-0.51-0.2-0.71,0s-0.2,0.51,0,0.71L8.59,13.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nat\": {\n    \"name\": \"nat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z\\\"></path><path d=\\\"M22.47,12.4c0.27-0.2,0.27-0.6,0-0.8L19,9v2h-4.05c-0.47-4.69-4.16-8.42-8.83-8.94C5.52,2,5,2.46,5,3.06v0 c0,0.5,0.37,0.93,0.87,0.99C9.88,4.48,13,7.87,13,12s-3.12,7.52-7.13,7.95C5.37,20.01,5,20.44,5,20.94v0c0,0.6,0.52,1.07,1.11,1 c4.67-0.52,8.37-4.25,8.83-8.94H19v2L22.47,12.4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.93,10.5H10v-1H5.93C5.71,8.64,4.93,8,4,8c-1.1,0-2,0.9-2,2s0.9,2,2,2C4.93,12,5.71,11.36,5.93,10.5z M4,11 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S4.55,11,4,11z\\\"></path><path d=\\\"M18,10l-3-2v1.5h-3.03c-0.24-3.45-2.98-6.21-6.43-6.48C5.25,3,5,3.23,5,3.52v0C5,3.78,5.19,4,5.45,4.02 C8.55,4.25,11,6.84,11,10s-2.45,5.75-5.55,5.98C5.19,16,5,16.22,5,16.48l0,0c0,0.3,0.25,0.52,0.55,0.5 c3.44-0.27,6.18-3.03,6.43-6.48H15V12L18,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"document_scanner\": {\n    \"name\": \"document_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,6C2.45,6,2,5.55,2,5V2c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1S6.55,3,6,3H4v2C4,5.55,3.55,6,3,6z M17,2 c0,0.55,0.45,1,1,1h2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1h-3C17.45,1,17,1.45,17,2z M3,18c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1H4v-2C4,18.45,3.55,18,3,18z M17,22c0,0.55,0.45,1,1,1h3 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v2h-2C17.45,21,17,21.45,17,22z M19,18c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V6 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2V18z M9,9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-4C9.45,8,9,8.45,9,9z M9,12c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-4C9.45,11,9,11.45,9,12z M9,15c0,0.55,0.45,1,1,1h4 c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-4C9.45,14,9,14.45,9,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,1.75C6,2.16,5.66,2.5,5.25,2.5H3.5v1.75C3.5,4.66,3.16,5,2.75,5C2.34,5,2,4.66,2,4.25v-2.5C2,1.34,2.34,1,2.75,1h2.5 C5.66,1,6,1.34,6,1.75z M14,1.75C14,1.34,14.34,1,14.75,1l2.5,0C17.66,1,18,1.34,18,1.75v2.5C18,4.66,17.66,5,17.25,5 c-0.41,0-0.75-0.34-0.75-0.75V2.5l-1.75,0C14.34,2.5,14,2.16,14,1.75z M17.25,15c0.41,0,0.75,0.34,0.75,0.75v2.5 c0,0.41-0.34,0.75-0.75,0.75h-2.5C14.34,19,14,18.66,14,18.25s0.34-0.75,0.75-0.75h1.75v-1.75C16.5,15.34,16.84,15,17.25,15z M2.75,15c0.41,0,0.75,0.34,0.75,0.75l0,1.75l1.75,0C5.66,17.5,6,17.84,6,18.25C6,18.66,5.66,19,5.25,19l-2.5,0 C2.34,19,2,18.66,2,18.25l0-2.5C2,15.34,2.34,15,2.75,15z M13.57,4H6.43C5.64,4,5,4.67,5,5.5v9C5,15.33,5.64,16,6.43,16h7.14 c0.79,0,1.43-0.67,1.43-1.5v-9C15,4.67,14.36,4,13.57,4z M8,12.25c0-0.41,0.34-0.75,0.75-0.75h2.5c0.41,0,0.75,0.34,0.75,0.75 S11.66,13,11.25,13h-2.5C8.34,13,8,12.66,8,12.25z M8,10c0-0.41,0.34-0.75,0.75-0.75h2.5C11.66,9.25,12,9.59,12,10 s-0.34,0.75-0.75,0.75h-2.5C8.34,10.75,8,10.41,8,10z M8,7.75C8,7.34,8.34,7,8.75,7h2.5C11.66,7,12,7.34,12,7.75 S11.66,8.5,11.25,8.5h-2.5C8.34,8.5,8,8.16,8,7.75z\\\"></path>\"\n      }\n    }\n  },\n  \"contacts\": {\n    \"name\": \"contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 0H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM5 24h14c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1 .45-1 1s.45 1 1 1zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_calls\": {\n    \"name\": \"swap_calls\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.65 4.35l-2.79 2.79c-.32.32-.1.86.35.86H17v6.88c0 1-.67 1.93-1.66 2.09-1.25.21-2.34-.76-2.34-1.97V8.17c0-2.09-1.53-3.95-3.61-4.15C7.01 3.79 5 5.66 5 8v7H3.21c-.45 0-.67.54-.35.85l2.79 2.79c.2.2.51.2.71 0l2.79-2.79c.31-.31.09-.85-.36-.85H7V8.12c0-1 .67-1.93 1.66-2.09C9.91 5.82 11 6.79 11 8v6.83c0 2.09 1.53 3.95 3.61 4.15C16.99 19.21 19 17.34 19 15V8h1.79c.45 0 .67-.54.35-.85l-2.79-2.79c-.19-.2-.51-.2-.7-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"call_received\": {\n    \"name\": \"call_received\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.3 4.71c-.39-.39-1.02-.39-1.41 0L7 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H8.41L19.3 6.11c.38-.38.38-1.02 0-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_split\": {\n    \"name\": \"call_split\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.85 4.85l1.44 1.44-2.88 2.88 1.42 1.42 2.88-2.88 1.44 1.44c.31.31.85.09.85-.36V4.5c0-.28-.22-.5-.5-.5h-4.29c-.45 0-.67.54-.36.85zM8.79 4H4.5c-.28 0-.5.22-.5.5v4.29c0 .45.54.67.85.35L6.29 7.7 11 12.4V19c0 .55.45 1 1 1s1-.45 1-1v-7c0-.26-.11-.52-.29-.71l-5-5.01 1.44-1.44c.31-.3.09-.84-.36-.84z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_disabled\": {\n    \"name\": \"person_add_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21l5.74 5.74c.33-.17.57-.5.57-.9v-1c0-2.14-3.56-3.5-6.31-3.84zM2.12 2.42c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L4 7.12V10H2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v1c0 .55.45 1 1 1h8.88l3.29 3.29c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L2.12 2.42zM6 10v-.88l.88.88H6z\\\"></path>\"\n      }\n    }\n  },\n  \"3p\": {\n    \"name\": \"3p\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,2H4.01c-1.1,0-2,0.9-2,2L2,19.58c0,0.89,1.08,1.34,1.71,0.71L6,18h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M12,6 c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,6,12,6z M16,14H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,11.21,11.01,11,12,11 c0.99,0,1.93,0.21,2.78,0.58C15.52,11.9,16,12.62,16,13.43V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sip\": {\n    \"name\": \"sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"15.5\\\" y=\\\"10.5\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M10,9.75 c0,0.41-0.34,0.75-0.75,0.75H6.5v0.75H9c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H5.75C5.34,15,5,14.66,5,14.25v0 c0-0.41,0.34-0.75,0.75-0.75H8.5v-0.75H6c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3.25C9.66,9,10,9.34,10,9.75L10,9.75z M12,15 L12,15c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v4C13,14.55,12.55,15,12,15z M19,12c0,0.55-0.45,1-1,1h-2.5 v1.25c0,0.41-0.34,0.75-0.75,0.75h0C14.34,15,14,14.66,14,14.25V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"forward_to_inbox\": {\n    \"name\": \"forward_to_inbox\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l6.94,4.34c0.65,0.41,1.47,0.41,2.12,0L20,8v5h2V6C22,4.9,21.1,4,20,4 z M12,11L4,6h16L12,11z M19,16.21c0-0.45,0.54-0.67,0.85-0.35l2.79,2.79c0.2,0.2,0.2,0.51,0,0.71l-2.79,2.79 C19.54,22.46,19,22.24,19,21.79V20h-3c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h3V16.21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,12.5l3,3l-3,3V16h-2.5c-0.28,0-0.5-0.22-0.5-0.5v0c0-0.28,0.22-0.5,0.5-0.5H15V12.5z M11,16H4c-0.55,0-1-0.45-1-1V5 c0-0.55,0.45-1,1-1h12c0.55,0,1,0.45,1,1v7h-1V6.18l-5.46,3.48c-0.33,0.21-0.75,0.21-1.07,0L4,6.18V15h7L11,16z M4,5l6,3.82L16,5H4 z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_lock\": {\n    \"name\": \"phonelink_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2L7,1.01C5.9,1.01,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z\\\"></path><path d=\\\"M20,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C21,11.45,20.55,11,20,11z M19,11h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"contact_phone\": {\n    \"name\": \"contact_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.39c.16 0 .3.07.4.2l1.1 1.45c.15.2.13.48-.05.65l-1.36 1.36c-.18.18-.48.2-.67.04-1.13-.96-1.97-2.25-2.38-3.71-.18-.63-.28-1.3-.28-1.99s.1-1.36.28-2c.41-1.47 1.25-2.75 2.38-3.71.2-.17.49-.14.67.04l1.36 1.36c.18.18.2.46.05.65l-1.1 1.45c-.09.13-.24.2-.4.2h-1.39c-.22.63-.35 1.3-.35 2s.13 1.38.35 2.01z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_disabled\": {\n    \"name\": \"phone_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M14.54,17.37c-2.63,2.08-5.89,3.39-9.45,3.61c-1.13,0.07-2.07-0.87-2.07-2v-1.73 c-0.01-1.01,0.75-1.86,1.76-1.98l2.54-0.29c0.61-0.07,1.21,0.14,1.64,0.57l1.84,1.84c0.81-0.41,1.59-0.9,2.31-1.45L2.1,4.93 c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.03-0.39,1.42,0L20.49,20.5c0.39,0.39,0.39,1.02,0,1.41s-1.02,0.39-1.41,0 L14.54,17.37z M17.39,10.8l-1.85-1.85c-0.43-0.43-0.64-1.03-0.57-1.64l0.29-2.52c0.12-1.01,0.97-1.77,1.99-1.77h1.73 c1.13,0,2.07,0.94,2,2.07c-0.22,3.57-1.54,6.83-3.62,9.47l-1.43-1.43C16.48,12.4,16.97,11.62,17.39,10.8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"textsms\": {\n    \"name\": \"textsms\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key\": {\n    \"name\": \"vpn_key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.65 10C11.7 7.31 8.9 5.5 5.77 6.12c-2.29.46-4.15 2.29-4.63 4.58C.32 14.57 3.26 18 7 18c2.61 0 4.83-1.67 5.65-4H17v2c0 1.1.9 2 2 2s2-.9 2-2v-2c1.1 0 2-.9 2-2s-.9-2-2-2h-8.35zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_share\": {\n    \"name\": \"screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.89 2 2 2H1c-.55 0-1 .45-1 1s.45 1 1 1h22c.55 0 1-.45 1-1s-.45-1-1-1h-3zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l3.61 3.36c.21.2.21.53 0 .73L13 14.47z\\\"></path>\"\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "sphinx_design/compiled/material_sharp.json",
    "content": "{\n  \"auto_delete\": {\n    \"name\": \"auto_delete\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4\\\"></polygon><path d=\\\"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v14h7.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7C23,12.13,19.87,9,16,9z M16,21 c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z\\\"></path><polygon points=\\\"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,4 11,4 10,3 6,3 5,4 3,4 3,5 13,5\\\"></polygon><path d=\\\"M12.5,8c-0.17,0-0.33,0.03-0.5,0.05V6H4v9h4.76c0.81,1.21,2.18,2,3.74,2c2.49,0,4.5-2.01,4.5-4.5S14.99,8,12.5,8z M12.5,16C10.57,16,9,14.43,9,12.5S10.57,9,12.5,9s3.5,1.57,3.5,3.5S14.43,16,12.5,16z\\\"></path><polygon points=\\\"13,12.42 13,10 12,10 12,13 14.6,14.5 15.1,13.63\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_alert\": {\n    \"name\": \"add_alert\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-3-3.99h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z\\\"></path>\"\n      }\n    }\n  },\n  \"warning\": {\n    \"name\": \"warning\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_important\": {\n    \"name\": \"notification_important\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-6-1h-2v-2h2v2zm0-4h-2V8h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"error_outline\": {\n    \"name\": \"error_outline\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"error\": {\n    \"name\": \"error\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"warning_amber\": {\n    \"name\": \"warning_amber\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"recommend\": {\n    \"name\": \"recommend\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M18,12.05L15.46,18H7l0-7.56L12,5l1,1l0,0.53 L12.41,10H18V12.05z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plus_one\": {\n    \"name\": \"plus_one\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z\\\"></path>\"\n      }\n    }\n  },\n  \"mood_bad\": {\n    \"name\": \"mood_bad\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_mma\": {\n    \"name\": \"sports_mma\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"17\\\"></rect><path d=\\\"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8h10.36c0.45,0,0.89-0.36,0.98-0.8l0.8-4C18.99,11.06,19,10.93,19,10.8V8C19,7.45,18.55,7,18,7z M15,10 H7V7h8V10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,15.5C6,15.78,6.22,16,6.5,16h7c0.28,0,0.5-0.22,0.5-0.5V14H6V15.5z\\\"></path><path d=\\\"M14,7c-0.55,0-1,0.45-1,1l-0.01-3c0-0.55-0.45-1-1-1H6C5.45,4,5,4.45,5,5v4.57c0.01,0.07,0.01,0.13,0.02,0.2l0.57,2.83 C5.63,12.83,5.84,13,6.08,13h7.85c0.23,0,0.45-0.18,0.49-0.4l0.57-2.83c0.01-0.07,0.01-0.13,0.02-0.2V8C15,7.45,14.55,7,14,7z M11,9H7V7h4V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compost\": {\n    \"name\": \"compost\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.87,11.81c-0.23-0.38-0.37-0.83-0.37-1.31C12.5,9.12,13.62,8,15,8l1,0c1.51,0,2-1,2-1s0.55,6-3,6 c-0.49,0-0.94-0.14-1.32-0.38c-0.24,0.64-0.59,1.76-0.76,2.96c1.26,0.22,2.28,0.89,2.77,1.77c1.69-1.17,2.81-3.13,2.81-5.35h3 c0,5.24-4.26,9.5-9.5,9.5S2.5,17.24,2.5,12S6.76,2.5,12,2.5V0l4,4l-4,4V5.5c-3.58,0-6.5,2.92-6.5,6.5c0,2.21,1.11,4.17,2.81,5.35 c0.51-0.92,1.63-1.62,2.98-1.8c-0.09-0.69-0.26-1.42-0.49-2.03C10.45,13.82,10,14,9.5,14c-1.1,0-2-0.9-2-2v-0.99 c0-0.56-0.19-1.09-0.5-1.51c0,0,4.45-0.23,4.5,2.5c0,0.29-0.06,0.56-0.17,0.8C10.91,12.48,10.47,12.2,10,12 c0.58,0.43,1.37,1.37,2,2.6c0.67-1.62,1.68-3.27,3-4.6C14.24,10.52,13.53,11.12,12.87,11.81z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.4,10.69c0.07-0.18,0.1-0.37,0.1-0.57C9.5,8,6,8,6,8s0.25,0.27,0.24,1.25l0.01,0.88c0,0.9,0.73,1.62,1.62,1.62 c0.42,0,0.8-0.16,1.09-0.42c0.16,0.4,0.4,1.1,0.42,1.72c-1.06,0.16-1.96,0.73-2.46,1.51C5.46,13.57,4.5,11.9,4.5,10 c0-3.03,2.47-5.5,5.5-5.5h0v2l3.5-3.25L10,0v2h0c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8h-2.5c0,1.9-0.97,3.57-2.43,4.56 c-0.49-0.77-1.36-1.33-2.39-1.5c0.11-0.95,0.33-1.57,0.63-2.38C11.63,10.88,12,11,12.4,11C15,11,15,6.91,15,6c0,0-0.5,1-2,1h-0.6 c-1.1,0-2,0.9-2,2c0,0.38,0.11,0.74,0.29,1.04c0.14-0.15,1.05-1.09,1.81-1.54c-0.48,0.4-1.78,1.93-2.5,3.71 C9.42,11.08,8.51,10.17,8.25,10C8.69,10.17,9.24,10.58,9.4,10.69z\\\"></path></g>\"\n      }\n    }\n  },\n  \"front_hand\": {\n    \"name\": \"front_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,8v7H18c-1.65,0-3,1.35-3,3h-1c0-2.04,1.53-3.72,3.5-3.97V2H15v9h-1V0h-2.5v11h-1V1.5H8V12H7V4.5H4.5v11.25 c0,4.56,3.69,8.25,8.25,8.25S21,20.31,21,15.75V8H18.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.5,20c-3.87,0-7-3.13-7-7V4h2v6h1V1.25h2V9h1V0h2v9h1V1.5h2l0,10.04c-1.69,0.24-3,1.7-3,3.46h1c0-1.38,1.12-2.5,2.5-2.5 h0.5v-6h2V13C17.5,16.87,14.37,20,10.5,20z\\\"></path>\"\n      }\n    }\n  },\n  \"safety_divider\": {\n    \"name\": \"safety_divider\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,5h2v14h-2V5z M5,12c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C3,11.1,3.9,12,5,12z M7.78,13.58 C6.93,13.21,5.99,13,5,13s-1.93,0.21-2.78,0.58C1.48,13.9,1,14.62,1,15.43L1,16h8l0-0.57C9,14.62,8.52,13.9,7.78,13.58z M19,12 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C17,11.1,17.9,12,19,12z M21.78,13.58C20.93,13.21,19.99,13,19,13s-1.93,0.21-2.78,0.58 C15.48,13.9,15,14.62,15,15.43L15,16h8l0-0.57C23,14.62,22.52,13.9,21.78,13.58z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_2\": {\n    \"name\": \"groups_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.27,12h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C14.67,7.04,13.44,6,12,6S9.33,7.04,9.09,8.47l-0.3,1.79 C8.64,11.17,9.34,12,10.27,12z\\\"></path><path d=\\\"M1.66,11.11c-0.13,0.26-0.18,0.57-0.1,0.88c0.16,0.69,0.76,1.03,1.53,1c0,0,1.49,0,1.95,0c0.83,0,1.51-0.58,1.51-1.29 c0-0.14-0.03-0.27-0.07-0.4c-0.01-0.03-0.01-0.05,0.01-0.08c0.09-0.16,0.14-0.34,0.14-0.53c0-0.31-0.14-0.6-0.36-0.82 c-0.03-0.03-0.03-0.06-0.02-0.1c0.07-0.2,0.07-0.43,0.01-0.65C6.1,8.69,5.71,8.4,5.27,8.38c-0.03,0-0.05-0.01-0.07-0.03 C5.03,8.14,4.72,8,4.37,8C4.07,8,3.8,8.1,3.62,8.26C3.59,8.29,3.56,8.29,3.53,8.28c-0.14-0.06-0.3-0.09-0.46-0.09 c-0.65,0-1.18,0.49-1.24,1.12c0,0.02-0.01,0.04-0.03,0.06c-0.29,0.26-0.46,0.65-0.41,1.05c0.03,0.22,0.12,0.43,0.25,0.6 C1.67,11.04,1.67,11.08,1.66,11.11z\\\"></path><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M22,11v-0.5c0-1.1-0.9-2-2-2h-2c-0.42,0-0.65,0.48-0.39,0.81l0.7,0.63C18.12,10.25,18,10.61,18,11c0,1.1,0.9,2,2,2 S22,12.1,22,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.22,10h3.56c0.63,0,1.1-0.58,0.98-1.2l-0.37-1.84C12.16,5.82,11.16,5,10,5S7.84,5.82,7.61,6.96L7.24,8.8 C7.12,9.42,7.59,10,8.22,10z\\\"></path><path d=\\\"M1.63,9.49C1.52,9.7,1.49,9.95,1.54,10.2c0.13,0.55,0.61,0.83,1.22,0.8c0,0,1.19,0,1.56,0C5,11,5.54,10.54,5.54,9.97 c0-0.11-0.02-0.22-0.06-0.32c-0.01-0.02-0.01-0.04,0-0.06c0.07-0.13,0.11-0.27,0.11-0.42c0-0.25-0.11-0.48-0.29-0.66 C5.28,8.49,5.28,8.46,5.29,8.43c0.05-0.16,0.06-0.34,0.01-0.52C5.18,7.56,4.86,7.32,4.51,7.3c-0.02,0-0.04-0.01-0.05-0.03 C4.32,7.11,4.08,7,3.8,7c-0.24,0-0.46,0.08-0.6,0.21C3.18,7.23,3.15,7.23,3.12,7.22C3.01,7.18,2.89,7.15,2.76,7.15 c-0.52,0-0.94,0.39-0.99,0.9c0,0.02-0.01,0.03-0.02,0.05C1.51,8.31,1.38,8.62,1.42,8.94c0.02,0.18,0.09,0.34,0.2,0.48 C1.64,9.44,1.64,9.47,1.63,9.49z\\\"></path><path d=\\\"M16.5,11c0.83,0,1.5-0.67,1.5-1.5c0-0.04-0.01-0.07-0.01-0.11H18V9.01c0-0.83-0.68-1.51-1.51-1.51h-1.61 c-0.32,0-0.49,0.37-0.29,0.61l0.65,0.58C15.09,8.93,15,9.2,15,9.5C15,10.33,15.67,11,16.5,11z\\\"></path><path d=\\\"M13.9,11.93C12.87,11.41,11.54,11,10,11c-1.54,0-2.87,0.41-3.9,0.93C5.42,12.26,5,12.96,5,13.72L5,15h10l0-1.28 C15,12.96,14.58,12.26,13.9,11.93z\\\"></path><path d=\\\"M18.74,12.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,15h4l0-1.13 C20,13.05,19.5,12.31,18.74,12.01z\\\"></path><path d=\\\"M3.5,11.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,12.31,0,13.05,0,13.87L0,15h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,11.65,3.94,11.6,3.5,11.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"groups\": {\n    \"name\": \"groups\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M12,12.75c1.63,0,3.07,0.39,4.24,0.9c1.08,0.48,1.76,1.56,1.76,2.73L18,18H6l0-1.61c0-1.18,0.68-2.26,1.76-2.73 C8.93,13.14,10.37,12.75,12,12.75z M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1 C4.76,14.04,4.39,14,4,14c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85 C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M12,6c1.66,0,3,1.34,3,3 c0,1.66-1.34,3-3,3s-3-1.34-3-3C9,7.34,10.34,6,12,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"girl\": {\n    \"name\": \"girl\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,16v4h-4v-4H8l2.38-6.38 C10.63,8.95,11.28,8.5,12,8.5s1.37,0.45,1.62,1.12L16,16H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z M11.5,13v3h-3v-3H7l1.9-4.76 C9.08,7.79,9.52,7.5,10,7.5s0.92,0.29,1.1,0.74L13,13H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"piano\": {\n    \"name\": \"piano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,3H3v18h18V3z M13,14.5h1.25V19h-4.5v-4.5H11V5h2V14.5z M5,5h2v9.5h1.25V19H5V5z M19,19h-3.25v-4.5H17V5h2V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17,3H3v14h14V3z M7,15.5H4.5v-11H6V12h1V15.5z M12,15.5H8V12h1V4.5h2V12h1V15.5z M15.5,15.5H13V12h1V4.5h1.5V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people_outline\": {\n    \"name\": \"people_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"group\": {\n    \"name\": \"group\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_off\": {\n    \"name\": \"notifications_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_objects\": {\n    \"name\": \"emoji_objects\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M12,3c-0.42,0-0.85,0.04-1.28,0.11c-2.81,0.5-5.08,2.75-5.6,5.55c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69C8,18.21,8,21,8,21h2.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H16v-4.31c0-0.55,0.22-1.09,0.64-1.46 C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M12.5,11.41V14h-1v-2.59L9.67,9.59 l0.71-0.71L12,10.5l1.62-1.62l0.71,0.71L12.5,11.41z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M14.91,7.07c-0.01-0.04-0.01-0.08-0.02-0.12c-0.06-0.28-0.15-0.56-0.26-0.82c-0.02-0.05-0.04-0.09-0.06-0.14 c-0.11-0.26-0.25-0.5-0.4-0.74c-0.03-0.04-0.05-0.08-0.08-0.11c-0.16-0.23-0.34-0.46-0.55-0.66c-0.02-0.02-0.03-0.03-0.05-0.05 c-0.2-0.2-0.42-0.38-0.66-0.54c-0.02-0.02-0.04-0.03-0.06-0.05c-0.24-0.16-0.49-0.29-0.75-0.41c-0.04-0.02-0.09-0.04-0.13-0.06 c-0.26-0.11-0.53-0.19-0.81-0.25c-0.05-0.01-0.1-0.02-0.15-0.03C10.64,3.04,10.34,3.01,10.04,3C10.03,3,10.01,3,10,3 C9.9,3,9.79,3.01,9.69,3.02c-0.06,0-0.12,0-0.18,0.01C9.31,3.04,9.12,3.07,8.93,3.11c-1.94,0.4-3.49,2-3.84,3.95 c-0.31,1.72,0.26,3.3,1.33,4.4C6.78,11.84,7,12.34,7,12.87C7,13.63,7,16,7,16h1.28l0,0c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1l0,0 H13v-3.13c0-0.52,0.21-1.02,0.58-1.4C14.45,10.57,15,9.35,15,8C15,7.68,14.96,7.37,14.91,7.07z M8.73,6.73L10,8l1.27-1.27 l0.71,0.71L10.5,8.91V11h-1V8.91L8.03,7.44L8.73,6.73z M12,15l-2,0l0,0l0,0l-2,0l0-1h4V15z M12,13H8h0l0-1h4V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_notifications\": {\n    \"name\": \"edit_notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25z M20.85,5.81l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.85,0.85 l1.77,1.77l0.85-0.85C21.05,6.32,21.05,6,20.85,5.81z M18,12.2V17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V2h3v2.2 c0.82,0.21,1.57,0.59,2.21,1.09L10.6,10.4V15h4.6L18,12.2z M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M12.53,12H9c0-1.93,0-3.5,0-3.5l3.71-3.71C12.19,4.47,11.62,4.23,11,4.1V2H9v2.1C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1 V9.53L12.53,12z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z M14.32,5.27l1.41,1.41l-3.82,3.82H10.5l0-1.41 L14.32,5.27z M14.81,4.77l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L14.81,4.77z\\\"></path></g>\"\n      }\n    }\n  },\n  \"whatshot\": {\n    \"name\": \"whatshot\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"roller_skating\": {\n    \"name\": \"roller_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,16l-0.01-6l-5.71-1.43C13.4,8.35,12.7,7.76,12.32,7H9V6h3.02L12,5H9V4h3V1H4v15H20z M5,23c-1.66,0-3-1.34-3-3 s1.34-3,3-3s3,1.34,3,3S6.66,23,5,23z M19,23c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S20.66,23,19,23z M12,23 c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,23,12,23z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,13.5V8.64l-5.18-1.57c-0.33-0.1-0.6-0.3-0.79-0.57H7.5v-1h2.75v-1H7.5v-1h2.75V1H3.5v12.5H16.5z M6.5,16.75 c0-1.24-1.01-2.25-2.25-2.25S2,15.51,2,16.75S3.01,19,4.25,19S6.5,17.99,6.5,16.75z M18,16.75c0-1.24-1.01-2.25-2.25-2.25 s-2.25,1.01-2.25,2.25S14.51,19,15.75,19S18,17.99,18,16.75z M12.25,16.75c0-1.24-1.01-2.25-2.25-2.25s-2.25,1.01-2.25,2.25 S8.76,19,10,19S12.25,17.99,12.25,16.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"downhill_skiing\": {\n    \"name\": \"downhill_skiing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18.5,3.4,18.5,4.5z M15.78,20.9l0.76,0.27c0.62,0.21,1.27,0.33,1.96,0.33 c0.84,0,1.65-0.18,2.38-0.5L22,22.13C20.95,22.68,19.76,23,18.5,23c-0.86,0-1.68-0.14-2.45-0.41L2,17.47l0.5-1.41l6.9,2.51 l1.72-4.44L7.55,10.4C6.66,9.46,6.88,7.93,8,7.28l3.48-2.01c1.1-0.64,2.52-0.1,2.91,1.11l0.33,1.08c0.44,1.42,1.48,2.57,2.83,3.14 L18.07,9l1.43,0.46l-1.12,3.45c-2.45-0.4-4.48-2.07-5.38-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1-6.44h0l0,0 c0.46,0.18,0.94,0.31,1.44,0.41L15.78,20.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,3.75C12,2.78,12.78,2,13.75,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C12.79,5.5,12,4.72,12,3.75z M6.83,6.38 c-0.89,0.5-1.13,1.7-0.37,2.43l3.1,2.94L8,15.8l-5.66-2.04L2,14.7l10.85,3.9C13.52,18.86,14.24,19,15,19c1.09,0,2.12-0.29,3-0.8 l-0.74-0.74C16.58,17.81,15.81,18,15,18c-0.6,0-1.14-0.1-1.67-0.29l-0.35-0.12l1.9-5.83c-0.34-0.04-0.67-0.11-0.98-0.2l0,0l0,0 l-1.85,5.7l-2.62-0.94l1.91-4.98L8.74,8.74L10.9,7.5c0.65,1.8,2.31,3.12,4.3,3.28L16,8.31L15.05,8l-0.38,1.17 c-1.22-0.34-2.17-1.31-2.47-2.55l-0.24-0.97C11.72,4.67,10.61,4.2,9.75,4.7L6.83,6.38z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_symbols\": {\n    \"name\": \"emoji_symbols\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><polygon points=\\\"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7\\\"></polygon><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)\\\" width=\\\"11\\\" x=\\\"11.5\\\" y=\\\"16\\\"></rect><circle cx=\\\"14.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z\\\"></path><path d=\\\"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M5.21,14.09l-1.06,1.06C4.02,15.27,4,15.42,4,15.5s0.02,0.23,0.15,0.35C4.27,15.98,4.42,16,4.5,16 s0.23-0.02,0.35-0.15l0.35-0.35l0.71-0.71L5.21,14.09z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.71,11.96c0-0.08-0.02-0.23-0.15-0.35s-0.28-0.15-0.35-0.15c-0.08,0-0.23,0.02-0.35,0.15 c-0.13,0.13-0.15,0.28-0.15,0.35c0,0.08,0.02,0.23,0.15,0.35l0.35,0.35l0.35-0.35C5.69,12.19,5.71,12.04,5.71,11.96z\\\" fill=\\\"none\\\"></path><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"4\\\" y=\\\"3\\\"></rect><polygon points=\\\"4,5 4,6 6,6 6,9 6.99,9 6.99,6 9,6 9,5\\\"></polygon><rect height=\\\".99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.8428 13.8943)\\\" width=\\\"7.07\\\" x=\\\"10.31\\\" y=\\\"13.5\\\"></rect><path d=\\\"M12.71,12.71c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41 C11.68,13.1,12.32,13.1,12.71,12.71z\\\"></path><path d=\\\"M16.71,15.29c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 C17.1,16.32,17.1,15.68,16.71,15.29z\\\"></path><path d=\\\"M12.5,9C13.33,9,14,8.33,14,7.5C14,7.47,14,4,14,4h2V3h-3v3.09C12.84,6.04,12.68,6,12.5,6C11.67,6,11,6.67,11,7.5 S11.67,9,12.5,9z\\\"></path><path d=\\\"M8.04,12.67l-1.41,1.41l-0.71-0.71l0.35-0.35c0.59-0.59,0.59-1.54,0-2.12c-0.29-0.29-0.68-0.44-1.06-0.44 c-0.38,0-0.77,0.15-1.06,0.44c-0.59,0.59-0.59,1.54,0,2.12l0.35,0.35l-1.06,1.06c-0.59,0.59-0.59,1.54,0,2.12 C3.73,16.85,4.12,17,4.5,17s0.77-0.15,1.06-0.44l1.06-1.06l1.41,1.41l0.71-0.71l-1.41-1.41v0l1.41-1.41L8.04,12.67z M4.85,12.32 c-0.13-0.13-0.15-0.28-0.15-0.35c0-0.08,0.02-0.23,0.15-0.35c0.13-0.13,0.28-0.15,0.35-0.15c0.08,0,0.23,0.02,0.35,0.15 s0.15,0.28,0.15,0.35c0,0.08-0.02,0.23-0.15,0.35l-0.35,0.35L4.85,12.32z M4.85,15.85C4.73,15.98,4.58,16,4.5,16 s-0.23-0.02-0.35-0.15C4.02,15.73,4,15.58,4,15.5s0.02-0.23,0.15-0.35l1.06-1.06l0.71,0.71L5.21,15.5L4.85,15.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interests\": {\n    \"name\": \"interests\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.02,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.23,13,7.02,13z M13,13v8h8v-8H13z M7,2l-5,9h10L7,2z M19.25,2.5 c-1.06,0-1.81,0.56-2.25,1.17c-0.44-0.61-1.19-1.17-2.25-1.17C13.19,2.5,12,3.78,12,5.25c0,2,2.42,3.42,5,5.75 c2.58-2.33,5-3.75,5-5.75C22,3.78,20.81,2.5,19.25,2.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,11c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3S7.65,11,6,11z M11,17h6v-6h-6V17z M2.01,9H10L6,2L2.01,9z M15.72,2.5 c-0.81,0-1.39,0.43-1.72,0.89c-0.33-0.47-0.91-0.89-1.72-0.89c-1.19,0-2.1,0.98-2.1,2.1c0,1.53,1.85,2.61,3.82,4.4 c1.98-1.78,3.82-2.87,3.82-4.4C17.82,3.48,16.92,2.5,15.72,2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_active\": {\n    \"name\": \"notifications_active\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z\\\"></path>\"\n      }\n    }\n  },\n  \"follow_the_signs\": {\n    \"name\": \"follow_the_signs\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.4,5.5,9.5,5.5z M5.75,8.9L3,23h2.1l1.75-8L9,17v6h2v-7.55L8.95,13.4 l0.6-3C10.85,12,12.8,13,15,13v-2c-1.85,0-3.45-1-4.35-2.45L9.7,6.95C9.35,6.35,8.7,6,8,6C7.75,6,7.5,6.05,7.25,6.15L2,8.3V13h2 V9.65L5.75,8.9 M13,2v7h3.75v14h1.5V9H22V2H13z M18.01,8V6.25H14.5v-1.5h3.51V3l2.49,2.5L18.01,8z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_3\": {\n    \"name\": \"groups_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M12,12c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,7.34,9,9C9,10.66,10.34,12,12,12z\\\"></path><rect height=\\\"3.54\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.6066 6.0503)\\\" width=\\\"3.54\\\" x=\\\"2.23\\\" y=\\\"9.23\\\"></rect><polygon points=\\\"20,9 17.5,13 22.5,13\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.6317 4.818)\\\" width=\\\"2.83\\\" x=\\\"2.09\\\" y=\\\"6.59\\\"></rect><polygon points=\\\"16.5,6.5 14.5,10 18.5,10\\\"></polygon><path d=\\\"M13.9,10.93C12.87,10.41,11.54,10,10,10c-1.54,0-2.87,0.41-3.9,0.93C5.42,11.26,5,11.96,5,12.72L5,14h10l0-1.28 C15,11.96,14.58,11.26,13.9,10.93z\\\"></path><path d=\\\"M18.74,11.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,14h4l0-1.13 C20,12.05,19.5,11.31,18.74,11.01z\\\"></path><path d=\\\"M3.5,10.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,11.31,0,12.05,0,12.87L0,14h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,10.65,3.94,10.6,3.5,10.6z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications\": {\n    \"name\": \"notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_food_beverage\": {\n    \"name\": \"emoji_food_beverage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"2\\\" y=\\\"19\\\"></rect><path d=\\\"M20,3H9v2.4L11,7v5H6V7l2-1.6V3H4v14h14v-7h2c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,8h-2V5h2V8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M15,5H7.75v2.17L9,8v3H6V8l1.25-0.83V5H5v9h9V9h1c0.55,0,1-0.45,1-1V6C16,5.45,15.55,5,15,5z M15,8h-1V6h1V8z\\\"></path><rect height=\\\"1\\\" width=\\\"11\\\" x=\\\"4\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"domain\": {\n    \"name\": \"domain\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"person_off\": {\n    \"name\": \"person_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8.65,5.82C9.36,4.72,10.6,4,12,4c2.21,0,4,1.79,4,4c0,1.4-0.72,2.64-1.82,3.35L8.65,5.82z M20,17.17 c-0.02-1.1-0.63-2.11-1.61-2.62c-0.54-0.28-1.13-0.54-1.77-0.76L20,17.17z M21.19,21.19L2.81,2.81L1.39,4.22l8.89,8.89 c-1.81,0.23-3.39,0.79-4.67,1.45C4.61,15.07,4,16.1,4,17.22V20h13.17l2.61,2.61L21.19,21.19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.64,9.51C12.46,8.98,13,8.05,13,7c0-1.66-1.34-3-3-3C8.95,4,8.02,4.54,7.49,5.36L11.64,9.51z M15.99,13.87 c-0.07-0.62-0.41-1.18-0.95-1.5c-0.35-0.21-0.72-0.39-1.1-0.56L15.99,13.87z M2.93,2.93L1.87,3.99l7.07,7.07 c-1.44,0.15-2.78,0.62-3.97,1.31C4.36,12.72,4,13.39,4,14.09V16h9.88l2.13,2.13l1.06-1.06L2.93,2.93z\\\"></path>\"\n      }\n    }\n  },\n  \"assist_walker\": {\n    \"name\": \"assist_walker\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12.5\\\" cy=\\\"4.5\\\" r=\\\"2\\\"></circle><path d=\\\"M19.77,17.72L19,10h-3c-1.5-0.02-2.86-0.54-3.76-1.44l-2-1.98C10.08,6.42,9.62,6,8.83,6C8.32,6,7.81,6.2,7.42,6.59 l-4.2,4.17l2.08,4.07l-3.15,4.05l1.57,1.24l3.68-4.73l-0.17-1.36L8,14.75V20h2v-6.12l-2.12-2.12l2.36-2.36 c0.94,0.94,1.72,1.82,3.59,2.32L13,20h1.5l0.41-3.5h3.18l0.14,1.22c-0.44,0.26-0.73,0.74-0.73,1.28c0,0.83,0.67,1.5,1.5,1.5 s1.5-0.67,1.5-1.5C20.5,18.46,20.21,17.98,19.77,17.72z M15.09,15l0.41-3.5h2l0.41,3.5H15.09z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.25,15.05l-0.75-5.8H12c-0.48-0.16-0.93-0.41-1.3-0.78L8.66,6.44c0,0-0.01,0-0.01-0.01L8.64,6.42l0,0 c-0.59-0.57-1.52-0.57-2.1,0.01L3.8,9.17l0.94,4.06l-2.32,3.09l1.22,0.88l2.68-3.59l-0.19-1.19l1.11,1.08V17h1.5v-4.2l-2.2-2.2 l2.08-2.08c1.09,1.09,1.34,1.42,2.23,1.87L10,17h1.01l0.39-3h2.71l0.16,1.26c-0.31,0.23-0.52,0.57-0.52,0.99 c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25C16.25,15.65,15.81,15.17,15.25,15.05z M11.53,13l0.36-2.75h1.73l0,0L13.97,13 H11.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thunderstorm\": {\n    \"name\": \"thunderstorm\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.92,7.02C17.45,4.18,14.97,2,12,2C9.82,2,7.83,3.18,6.78,5.06C4.09,5.41,2,7.74,2,10.5C2,13.53,4.47,16,7.5,16h10 c2.48,0,4.5-2.02,4.5-4.5C22,9.16,20.21,7.23,17.92,7.02z\\\"></path><polygon points=\\\"14.8,17 11.9,20.32 13.9,21.32 11.55,24 14.2,24 17.1,20.68 15.1,19.68 17.45,17\\\"></polygon><polygon points=\\\"8.8,17 5.9,20.32 7.9,21.32 5.55,24 8.2,24 11.1,20.68 9.1,19.68 11.45,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.69,6.01c-0.35-2.23-2.25-3.95-4.58-4C10.07,2,10.04,2,10,2C8.19,2,6.6,3.02,5.8,4.52C3.71,4.74,2.05,6.49,2,8.65 C1.95,11,3.81,12.94,6.15,13l8.35,0c1.93,0,3.5-1.57,3.5-3.5C18,7.63,16.54,6.1,14.69,6.01z\\\"></path><polygon points=\\\"12.55,14 10.06,16.68 11.84,17.7 9.87,20 11.84,20 14.16,17.3 12.44,16.32 14.6,14\\\"></polygon><polygon points=\\\"7.55,14 5.06,16.68 6.84,17.7 4.87,20 6.84,20 9.16,17.3 7.44,16.32 9.6,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_football\": {\n    \"name\": \"sports_football\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3.02,15.62c-0.08,2.42,0.32,4.34,0.67,4.69s2.28,0.76,4.69,0.67L3.02,15.62z\\\"></path><path d=\\\"M13.08,3.28C10.75,3.7,8.29,4.62,6.46,6.46s-2.76,4.29-3.18,6.62l7.63,7.63c2.34-0.41,4.79-1.34,6.62-3.18 s2.76-4.29,3.18-6.62L13.08,3.28z M9.9,15.5l-1.4-1.4l5.6-5.6l1.4,1.4L9.9,15.5z\\\"></path><path d=\\\"M20.98,8.38c0.08-2.42-0.32-4.34-0.67-4.69s-2.28-0.76-4.69-0.67L20.98,8.38z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.01,12.49c-0.04,1.57,0.22,2.81,0.45,3.05s1.47,0.5,3.05,0.45L4.01,12.49z\\\"></path><path d=\\\"M15.99,7.51c0.04-1.57-0.22-2.81-0.45-3.05c-0.23-0.23-1.47-0.5-3.05-0.45L15.99,7.51z\\\"></path><path d=\\\"M11.18,4.11C9.49,4.34,7.65,4.96,6.31,6.31c-1.34,1.34-1.97,3.19-2.19,4.88l4.71,4.71c1.69-0.23,3.53-0.85,4.88-2.19 s1.97-3.19,2.19-4.88L11.18,4.11z M8.23,12.47l-0.71-0.71l4.24-4.24l0.71,0.71L8.23,12.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"luggage\": {\n    \"name\": \"luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,6h-4V2H9v4H5v15h2c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1h6c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1h2V6z M9.5,18H8V9h1.5 V18z M12.75,18h-1.5V9h1.5V18z M13.5,6h-3V3.5h3V6z M16,18h-1.5V9H16V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vaccines\": {\n    \"name\": \"vaccines\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,5.5H8V4h1.5V2h-5v2H6v1.5H2v2c0,0,0.45,0,1,0V17h3v4l2,1.5V17h3V7.5c0.55,0,1,0,1,0V5.5z M9,9H6.5v1.5H9V12H6.5v1.5H9 L9,15H5V7.5h4V9z M19.5,10.5V10h1V8h-7l-0.01,2h1.01v0.5c0,0.5-1.5,1.16-1.5,3V22h8v-8.5C21,11.66,19.5,11,19.5,10.5z M16.5,10.5V10 h1v0.5c0,1.6,1.5,2,1.5,3V14h-4c0-0.21,0-0.39,0-0.5C15,12.5,16.5,12.1,16.5,10.5z M15,20c0,0,0-0.63,0-1.5h4V20H15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,9V8.5h0.75V7h-5.52L11,8.5h0.75V9c0,0-1.25,1-1.25,2.5V18H17v-6.75C17,10,15.75,9,15.75,9z M15.5,16.5H12V15h3.5 V16.5z M15.5,12H12v-0.5c0-1.13,1.25-1.25,1.25-2.5V8.5h1V9c0,1.25,1.25,1.37,1.25,2.5V12z M6,11l2,0v1.5H4.5v-6H8V8H6v1l2,0v1H6V11 z M2.25,6.5H3L3,14h2.5v3L7,18.5V14h2.5l0-7.5h0.75V5H7V3.5h1.25V2h-4v1.5H5.5V5H2.25V6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"boy\": {\n    \"name\": \"boy\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,20v-5h1v-4.5 c0-1.1-0.9-2-2-2h-2c-1.1,0-2,0.9-2,2V15h1v5H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.5,12.5h-1V16h-3v-3.5h-1V9c0-0.83,0.67-1.5,1.5-1.5h2c0.83,0,1.5,0.67,1.5,1.5V12.5z M10,6.5 c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"landslide\": {\n    \"name\": \"landslide\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15.47,13.79 12.89,12.76 6,15.05 2,13.51 2,15.61 6,16.95\\\"></polygon><polygon points=\\\"10.57,11.42 8,8 2,8 2,11.61 6,12.95\\\"></polygon><polygon points=\\\"6,19.05 2,17.72 2,22 22,22 17.03,15.38\\\"></polygon><polygon points=\\\"17,6 17,1 12,0 9,2 9,6 12,8\\\"></polygon><polygon points=\\\"18.5,7 16,9 16,12 18.5,14 23,12 23,8\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"14,5 14,1 10,0 7,2 7,5 10,7\\\"></polygon></g><g><polygon points=\\\"15,6 13,7.5 13,10 15,12 19,10 19,7\\\"></polygon></g><g><polygon points=\\\"12.45,11.73 10.27,10.64 4.94,12.31 2,10.84 2,12.66 5.06,14.19\\\"></polygon></g><g><polygon points=\\\"4.94,15.81 2,14.34 2,18 18,18 13.73,12.88\\\"></polygon></g><g><polygon points=\\\"8.7,9.56 7,7 2,7 2,9.16 5.06,10.69\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"back_hand\": {\n    \"name\": \"back_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.21,10.47L5,9.36L7.25,15H8V2h2.5v10h1V0H14v12h1V1.5h2.5V12h1V4.5H21V16c0,4.42-3.58,8-8,8c-3.26,0-6.19-1.99-7.4-5.02 L2.21,10.47z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.5,4h-2v6h-1V1.25h-2V10h-1V0l-2,0v10h-1V1.5h-2v11H6.25l-1.99-5L1.93,8.42l2.96,7.44C5.89,18.36,8.31,20,11,20l0,0 c3.59,0,6.5-2.91,6.5-6.5V4z\\\"></path>\"\n      }\n    }\n  },\n  \"woman_2\": {\n    \"name\": \"woman_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"13.41,7 10.59,7 7,16 10.5,16 10.5,22 13.5,22 13.5,16 17,16\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><polygon points=\\\"11,7 9,7 6,14 9,14 9,18 11,18 11,14 14,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"6_ft_apart\": {\n    \"name\": \"6_ft_apart\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7v4h3v-2.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3 V19z M12.5,19v0.5h1v1h-1V22h-1v-4H14v1H12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fitbit\": {\n    \"name\": \"fitbit\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.89,13.89c1.04,0,1.89-0.85,1.89-1.89s-0.85-1.89-1.89-1.89C18.85,10.11,18,10.96,18,12S18.85,13.89,19.89,13.89z M15.65,13.68c0.93,0,1.68-0.75,1.68-1.68s-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68S14.72,13.68,15.65,13.68z M15.65,9.42 c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68C13.97,8.67,14.72,9.42,15.65,9.42z M15.65,17.93c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68 C13.97,17.17,14.72,17.93,15.65,17.93z M11.41,13.47c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,13.47,11.41,13.47z M11.41,9.21c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,9.21,11.41,9.21z M11.41,17.73c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 C9.93,17.07,10.59,17.73,11.41,17.73z M11.41,22c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47 c-0.81,0-1.47,0.66-1.47,1.47C9.93,21.34,10.59,22,11.41,22z M11.41,4.94c0.81,0,1.47-0.66,1.47-1.47S12.22,2,11.41,2 c-0.81,0-1.47,0.66-1.47,1.47S10.59,4.94,11.41,4.94z M7.16,13.26c0.7,0,1.26-0.57,1.26-1.26s-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26S6.46,13.26,7.16,13.26z M7.16,17.51c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,16.94,6.46,17.51,7.16,17.51z M7.16,9.02c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,8.45,6.46,9.02,7.16,9.02z M3.29,13.05c0.58,0,1.05-0.47,1.05-1.05s-0.47-1.05-1.05-1.05 c-0.58,0-1.05,0.47-1.05,1.05S2.71,13.05,3.29,13.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.31,11.51c0.83,0,1.51-0.68,1.51-1.51s-0.68-1.51-1.51-1.51c-0.83,0-1.51,0.68-1.51,1.51S15.48,11.51,16.31,11.51z M12.92,11.34c0.74,0,1.34-0.6,1.34-1.34s-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34S12.18,11.34,12.92,11.34z M12.92,7.94 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,7.33,12.18,7.94,12.92,7.94z M12.92,14.74 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,14.14,12.18,14.74,12.92,14.74z M9.52,11.18 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,11.18,9.52,11.18z M9.52,7.77 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,7.77,9.52,7.77z M9.52,14.59 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,14.06,8.87,14.59,9.52,14.59z M9.52,18 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,17.47,8.87,18,9.52,18z M9.52,4.36 c0.65,0,1.18-0.53,1.18-1.18S10.17,2,9.52,2C8.87,2,8.35,2.53,8.35,3.18S8.87,4.36,9.52,4.36z M6.13,11.01 c0.56,0,1.01-0.45,1.01-1.01S6.69,8.99,6.13,8.99c-0.56,0-1.01,0.45-1.01,1.01S5.57,11.01,6.13,11.01z M6.13,14.41 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,13.95,5.57,14.41,6.13,14.41z M6.13,7.61 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,7.16,5.57,7.61,6.13,7.61z M3.04,10.84 c0.46,0,0.84-0.38,0.84-0.84S3.5,9.16,3.04,9.16C2.57,9.16,2.2,9.54,2.2,10S2.57,10.84,3.04,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"precision_manufacturing\": {\n    \"name\": \"precision_manufacturing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10V9.82l2.01,2.01l5.23-2.44l-0.63-1.36l-4.28,2L14,7.7V6.3l2.33-2.33l4.28,2l0.63-1.36l-5.23-2.44L14,4.18V4h-2v2 H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7c0,1.1,0.6,2.05,1.48,2.58L7.08,18H4v3h13v-3h-3.62L8.41,8.76 C8.58,8.53,8.72,8.28,8.82,8H12v2H14z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.89,8.9L11,7.01V6.99l1.89-1.89l2.85,1.33l0.42-0.91L12.67,3.9L11,5.57V5h-1v1.5H7.93C7.71,5.64,6.93,5,6,5 C4.9,5,4,5.9,4,7c0,0.82,0.5,1.53,1.21,1.84L6.5,14H5v2h8v-2h-2.14L7.56,8.23C7.73,8.02,7.86,7.77,7.93,7.5H10V9h1V8.43l1.67,1.67 l3.49-1.63l-0.42-0.91L12.89,8.9z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"king_bed\": {\n    \"name\": \"king_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect fill=\\\"none\\\" height=\\\"3\\\" width=\\\"5\\\" x=\\\"6\\\" y=\\\"7\\\"></rect><rect fill=\\\"none\\\" height=\\\"3\\\" width=\\\"5\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><path d=\\\"M20,10V5H4v5H2v7h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-7H20z M11,10H6V7h5V10z M18,10h-5V7h5V10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,8V5H4v3H3v5h1l0.75,2h0.5L6,13h8l0.75,2h0.5L16,13h1V8H16z M9.5,8H5V6h4.5V8z M15,8h-4.5V6H15V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"reduce_capacity\": {\n    \"name\": \"reduce_capacity\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z\\\"></path>\"\n      }\n    }\n  },\n  \"face_3\": {\n    \"name\": \"face_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M22.91,11.96c-0.54-5.93-5.75-10.41-11.8-9.92C5.73,2.46,1.55,6.94,1.06,12.32L0,24h24c0,0,0,0,0,0L22.91,11.96z M4.54,9.13C5.41,9.68,6.43,10,7.5,10C9.36,10,11,9.07,12,7.65C13,9.07,14.64,10,16.5,10c1.07,0,2.09-0.32,2.96-0.87 C19.8,10.02,20,10.99,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8C4,10.99,4.2,10.02,4.54,9.13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M20,20l-1.08-9.76c-0.48-4.3-3.85-7.85-8.16-8.21c-4.88-0.4-9.11,3.14-9.64,7.92L0,20H20z M3.9,7.78 C4.61,8.24,5.44,8.5,6.32,8.5C7.85,8.5,9.2,7.72,10,6.53c0.8,1.19,2.15,1.97,3.68,1.97c0.87,0,1.71-0.26,2.42-0.72 c0.25,0.7,0.4,1.44,0.4,2.22c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10C3.5,9.22,3.65,8.47,3.9,7.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public\": {\n    \"name\": \"public\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_volleyball\": {\n    \"name\": \"sports_volleyball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,4.01C3.58,5.84,2,8.73,2,12c0,1.46,0.32,2.85,0.89,4.11L6,14.31V4.01z\\\"></path><path d=\\\"M11,11.42V2.05C9.94,2.16,8.93,2.43,8,2.84v10.32L11,11.42z\\\"></path><path d=\\\"M12,13.15l-8.11,4.68c0.61,0.84,1.34,1.59,2.18,2.2L15,14.89L12,13.15z\\\"></path><path d=\\\"M13,7.96v3.46l8.11,4.68c0.42-0.93,0.7-1.93,0.82-2.98L13,7.96z\\\"></path><path d=\\\"M8.07,21.2C9.28,21.71,10.6,22,12,22c3.34,0,6.29-1.65,8.11-4.16L17,16.04L8.07,21.2z\\\"></path><path d=\\\"M21.92,10.81c-0.55-4.63-4.26-8.3-8.92-8.76v3.6L21.92,10.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.03,16.33C7.93,16.76,8.94,17,10,17c2.41,0,4.54-1.22,5.8-3.08l-2.3-1.33L7.03,16.33z\\\"></path><path d=\\\"M9.5,9.71V3.03C8.61,3.09,7.77,3.32,7,3.68v7.47L9.5,9.71z\\\"></path><path d=\\\"M10,10.58l-5.8,3.35c0.49,0.72,1.11,1.34,1.82,1.83l6.47-3.74L10,10.58z\\\"></path><path d=\\\"M6,4.26C4.19,5.53,3,7.62,3,10c0,1.1,0.26,2.13,0.71,3.05L6,11.73V4.26z\\\"></path><path d=\\\"M10.5,6.82v2.89l5.79,3.34c0.37-0.76,0.61-1.6,0.68-2.49L10.5,6.82z\\\"></path><path d=\\\"M16.97,9.41c-0.29-3.42-3.03-6.14-6.47-6.39v2.64L16.97,9.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kayaking\": {\n    \"name\": \"kayaking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M12,5.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,5.5,12,5.5z M24,17.5c0,0-1.52,0.71-3.93,1.37c-0.82-0.23-1.53-0.75-2.07-1.37c-0.73,0.84-1.8,1.5-3,1.5 s-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5s-2.27-0.66-3-1.5c-0.54,0.61-1.25,1.13-2.07,1.37C1.52,18.21,0,17.5,0,17.5 s2.93-1.36,7.13-2.08l1.35-4.17c0.31-0.95,1.32-1.47,2.27-1.16c0.09,0.03,0.19,0.07,0.27,0.11l0,0l2.47,1.3l2.84-1.5l1.65-3.71 l-0.51-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87,24,17.5,24,17.5z M15.02,12.96l-1.52,0.8l-1.75-0.92 l-0.71,2.17C11.36,15.01,11.68,15,12,15c0.71,0,1.4,0.03,2.07,0.08L15.02,12.96z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,6.25C11.5,7.22,10.72,8,9.75,8S8,7.22,8,6.25S8.78,4.5,9.75,4.5S11.5,5.28,11.5,6.25z M18,17.5h-0.5 c-0.87,0-1.74-0.33-2.5-1h0c-1.52,1.33-3.47,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18L18,17.5z M20,14.5 c0,0-1.43,0.64-3.67,1.19c-0.52-0.27-0.97-0.7-1.33-1.19c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 S5.61,15.34,5,14.5c-0.36,0.49-0.81,0.92-1.33,1.19C1.43,15.14,0,14.5,0,14.5s2.47-1.1,6-1.67l1.07-3.29 c0.26-0.79,1.1-1.22,1.89-0.96C9.05,8.6,9.13,8.64,9.2,8.68l2,1.12l2.44-1.3l1.33-3L14.6,4.51L15.72,2L18,3.02l-1.12,2.51L15.89,5.9 l-3.01,6.77C17,13.16,20,14.5,20,14.5z M12.65,10.72l-1.46,0.8l-1.36-0.77l-0.57,1.77C9.5,12.51,9.75,12.5,10,12.5 c0.63,0,1.24,0.02,1.83,0.07L12.65,10.72z\\\"></path>\"\n      }\n    }\n  },\n  \"man_2\": {\n    \"name\": \"man_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16,7 8,7 8,15 10.5,15 10.5,22 13.5,22 13.5,15 16,15\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M13,7H7v6h2v5h2v-5h2V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"severe_cold\": {\n    \"name\": \"severe_cold\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12,10.41 16,6.41 14.59,5 12,7.59 12,4 10,4 10,7.59 7.41,5 6,6.41 10,10.41 10,12 8.41,12 4.41,8 3,9.41 5.59,12 2,12 2,14 5.59,14 3,16.59 4.41,18 8.41,14 10,14 10,15.59 6,19.59 7.41,21 10,18.41 10,22 12,22 12,18.41 14.59,21 16,19.59 12,15.59 12,14 13.59,14 17.59,18 19,16.59 16.41,14 20,14 20,12 12,12\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"9.75,8.81 13,5.56 11.94,4.5 9.75,6.69 9.75,4 8.25,4 8.25,6.69 6.06,4.5 5,5.56 8.25,8.81 8.25,10.25 6.81,10.25 3.56,7 2.5,8.06 4.69,10.25 2,10.25 2,11.75 4.69,11.75 2.5,13.94 3.56,15 6.81,11.75 8.25,11.75 8.25,13.19 5,16.44 6.06,17.5 8.25,15.31 8.25,18 9.75,18 9.75,15.31 11.94,17.5 13,16.44 9.75,13.19 9.75,11.75 11.19,11.75 14.44,15 15.5,13.94 13.31,11.75 16,11.75 16,10.25 9.75,10.25\\\"></polygon><rect height=\\\"4\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"2\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"location_city\": {\n    \"name\": \"location_city\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_soccer\": {\n    \"name\": \"sports_soccer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,5.45l1.55-1.08 c1.14,0.41,2.11,1.16,2.81,2.12l-0.48,1.67l-0.68,0.23L10.5,6.15V5.45z M13.01,9.13l-1.14,3.37H8.12L6.99,9.13L10,7.02L13.01,9.13 z M7.95,4.37L9.5,5.45v0.7L6.31,8.39L5.63,8.15L5.15,6.49C5.84,5.53,6.82,4.78,7.95,4.37z M6.8,13.55l-1.52,0.13 c-0.79-1-1.26-2.26-1.27-3.63l1.3-0.95L6,9.34l1.19,3.53L6.8,13.55z M11.53,15.8c-0.49,0.13-1,0.2-1.53,0.2s-1.04-0.08-1.53-0.2 l-0.81-1.74l0.32-0.55h4.04l0.32,0.55L11.53,15.8z M14.72,13.69l-1.52-0.13l-0.4-0.68L14,9.34l0.69-0.24l1.3,0.95 C15.98,11.42,15.51,12.68,14.72,13.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ios_share\": {\n    \"name\": \"ios_share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,8 15,8 15,10 18,10 18,21 6,21 6,10 9,10 9,8 4,8 4,23 20,23\\\"></polygon><polygon points=\\\"11,16 13,16 13,5 16,5 12,1 8,5 11,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"self_improvement\": {\n    \"name\": \"self_improvement\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,12v-1c-1.67,0-3.28-0.85-4.11-2.16C11.55,8.29,10.91,8,10.27,8H9.73C9.09,8,8.45,8.29,8.11,8.84 C7.28,10.15,5.67,11,4,11v1c2,0,3.51-0.75,4.5-1.96v2.45l-2.77,1.19C5.29,13.88,5,14.31,5,14.79C5,15.46,5.54,16,6.21,16H8 c0,0,0-0.11,0-0.25C8,14.79,8.79,14,9.75,14h2c0.14,0,0.25,0.11,0.25,0.25s-0.11,0.25-0.25,0.25h-2c-0.69,0-1.25,0.56-1.25,1.25 c0,0.05,0,0.25,0,0.25h5.29c0.67,0,1.21-0.54,1.21-1.21c0-0.48-0.29-0.92-0.73-1.11L11.5,12.5v-2.45C12.49,11.25,14,12,16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hive\": {\n    \"name\": \"hive\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"13.79,8 15.59,5 13.79,2 10.21,2 8.41,5 10.21,8\\\"></polygon><polygon points=\\\"10.21,9 8.41,12 10.21,15 13.79,15 15.59,12 13.79,9\\\"></polygon><polygon points=\\\"16.45,11.51 20.04,11.51 21.83,8.51 20.04,5.51 16.45,5.51 14.65,8.51\\\"></polygon><polygon points=\\\"20.04,12.51 16.45,12.51 14.65,15.51 16.45,18.51 20.04,18.51 21.83,15.51\\\"></polygon><polygon points=\\\"7.55,11.51 9.35,8.51 7.55,5.51 3.96,5.51 2.17,8.51 3.96,11.51\\\"></polygon><polygon points=\\\"7.55,12.51 3.96,12.51 2.17,15.51 3.96,18.51 7.55,18.51 9.35,15.51\\\"></polygon><polygon points=\\\"10.21,16 8.41,19 10.21,22 13.79,22 15.59,19 13.79,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8.55,6.66 11.38,6.66 11.39,6.66 12.8,4.34 11.38,2 8.55,2 7.13,4.34 8.55,6.66\\\"></polygon><polygon points=\\\"11.38,13.34 8.55,13.34 8.55,13.34 7.13,15.66 8.55,18 11.38,18 12.8,15.66 11.39,13.34\\\"></polygon><polygon points=\\\"11.38,7.67 8.55,7.67 8.55,7.67 7.13,10 8.55,12.33 8.55,12.33 11.38,12.33 11.39,12.33 12.8,10 11.39,7.67\\\"></polygon><polygon points=\\\"13.67,9.5 16.5,9.5 17.92,7.17 16.5,4.83 13.67,4.83 12.25,7.17\\\"></polygon><polygon points=\\\"13.67,10.5 12.25,12.83 13.67,15.17 16.5,15.17 17.92,12.83 16.5,10.5\\\"></polygon><polygon points=\\\"6.26,9.5 7.68,7.17 6.26,4.83 3.43,4.83 2.02,7.17 3.43,9.5\\\"></polygon><polygon points=\\\"6.26,10.5 3.43,10.5 2.02,12.83 3.43,15.17 6.26,15.17 7.68,12.83\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"poll\": {\n    \"name\": \"poll\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v18h18V3H3zm6 14H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_injury\": {\n    \"name\": \"personal_injury\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M8,6c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4S8,8.21,8,6z M17,22h1c1.1,0,2-0.9,2-2l0-4.78 c0-1.12-0.61-2.15-1.61-2.66c-0.43-0.22-0.9-0.43-1.39-0.62L17,22z M12.34,17L15,11.33C14.07,11.12,13.07,11,12,11 c-2.53,0-4.71,0.7-6.39,1.56C4.61,13.07,4,14.1,4,15.22L4,22h2.34C6.12,21.55,6,21.04,6,20.5C6,18.57,7.57,17,9.5,17H12.34z M10,22 l1.41-3H9.5C8.67,19,8,19.67,8,20.5S8.67,22,9.5,22H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,5c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S7,6.66,7,5z M14.5,18c0.83,0,1.5-0.67,1.5-1.5v-4.41 c0-0.7-0.36-1.36-0.97-1.72C14.7,10.17,14.36,10,14,9.84V18H14.5z M10.34,14l2.16-4.68C11.7,9.11,10.86,9,10,9 c-1.84,0-3.56,0.5-5.03,1.37C4.36,10.73,4,11.39,4,12.09V18h1.8c-0.19-0.38-0.3-0.8-0.3-1.25C5.5,15.23,6.73,14,8.25,14H10.34z M8.5,18l1.15-2.5h-1.4C7.56,15.5,7,16.06,7,16.75S7.56,18,8.25,18H8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied\": {\n    \"name\": \"sentiment_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_kabaddi\": {\n    \"name\": \"sports_kabaddi\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"16.5\\\" cy=\\\"2.38\\\" r=\\\"2\\\"></circle><path d=\\\"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z\\\"></path><path d=\\\"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z\\\"></path><path d=\\\"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"13.5\\\" cy=\\\"2.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12,10.34c-0.81-0.06-1.53-0.32-2.17-0.78l0,0C9.6,9.4,9.38,9.22,9.17,9.01L7.29,7.12c-0.39-0.39-1.02-0.39-1.41,0 L3.07,9.91c-0.22,0.22-0.32,0.52-0.29,0.82l0.42,3.75l-2.75,2.75l0.71,0.71l3.25-3.25l0.04-2L6,14.03L6,18h1v-4.69l-1.96-2.05 l2.51-2.51l0.9,0.9c1.02,1.02,2.13,1.62,3.56,1.69V10.34z\\\"></path><path d=\\\"M9.5,6.99c0.82,0,1.5-0.68,1.5-1.5c0-0.77-0.59-1.38-1.34-1.47C9.61,4.01,9.56,3.99,9.5,3.99C8.68,3.99,8,4.66,8,5.49 C8,5.67,8.05,5.84,8.11,6C8.32,6.57,8.86,6.99,9.5,6.99z\\\"></path><path d=\\\"M19,9.53V6.18l-3.85-1.53c-0.18-0.08-0.37-0.11-0.56-0.11c-0.5,0-0.96,0.25-1.23,0.68l-0.82,1.32 C12,7.46,11.11,8.15,10.08,8.47c0.24,0.21,0.48,0.39,0.74,0.53c0.06,0.03,0.15,0.08,0.26,0.15c0.73-0.34,1.38-0.82,1.91-1.42 l0.44-0.51l0.67,3.33L12,12.24V18h1v-4.8l2.59-2.16L17.16,18h1.08L15.87,6.09L18,6.81v2.72H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hiking\": {\n    \"name\": \"hiking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M17.5,10.78c-1.23-0.37-2.22-1.17-2.8-2.18l-1-1.6 c-0.41-0.65-1.11-1-1.84-1c-0.78,0-1.59,0.5-1.78,1.44S7,23,7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3c1,1.15,2.41,2.01,4,2.34V23 H19V9h-1.5L17.5,10.78z M7.43,13.13l-3.1-0.6l1.34-6.87l3.13,0.61L7.43,13.13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M4.41,10.65l2.13,0.41l0.96-4.91L5.37,5.74L4.41,10.65z M14,18h1V8h-1l0,1.41c-2.11-0.42-2.13-2.19-3.11-2.97 c-0.21-0.17-0.45-0.29-0.7-0.36c-0.81-0.23-1.7,0.27-1.88,1.16C8.15,8.06,6.2,18,6.2,18h1.53l1.19-6.01l1.58,1.58V18H12v-5.05 l-1.46-1.46l0.49-2.48c0.72,0.95,1.76,1.64,2.97,1.89L14,18z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_none\": {\n    \"name\": \"notifications_none\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V2.5h-3v2.18C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clean_hands\": {\n    \"name\": \"clean_hands\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.99,7l1.37-0.63L16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7z M20,14c1.1,0,2-0.9,2-2 c0-1.1-2-4-2-4s-2,2.9-2,4C18,13.1,18.9,14,20,14z M1,22h4V11H1V22z M9.24,9.5L15,11.65V11c0-2.42-1.72-4.44-4-4.9V4h2 c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.48,0-5.5,0-5.5,0v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5H9.24z M22,17h-9l-2.09-0.73l0.33-0.94L13,16h4l0-2l-8.03-3H7v9.02L14,22l8-3V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_remove\": {\n    \"name\": \"person_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86V16H2v-2.14C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"female\": {\n    \"name\": \"female\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.5,9.5C17.5,6.46,15.04,4,12,4S6.5,6.46,6.5,9.5c0,2.7,1.94,4.93,4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1 C15.56,14.43,17.5,12.2,17.5,9.5z M8.5,9.5C8.5,7.57,10.07,6,12,6s3.5,1.57,3.5,3.5S13.93,13,12,13S8.5,11.43,8.5,9.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.25,8.25C14.25,5.9,12.35,4,10,4S5.75,5.9,5.75,8.25c0,2.09,1.51,3.82,3.5,4.17V14h-1.5v1.5h1.5V17h1.5v-1.5h1.5V14h-1.5 v-1.58C12.74,12.07,14.25,10.34,14.25,8.25z M7.25,8.25C7.25,6.73,8.48,5.5,10,5.5s2.75,1.23,2.75,2.75S11.52,11,10,11 S7.25,9.77,7.25,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_2\": {\n    \"name\": \"diversity_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.1,15.9l1.42-1.42C8.79,12.05,7,10.41,7,8.85C7,7.8,7.8,7,8.85,7c1.11,0,1.54,0.65,2.68,2h0.93 c1.12-1.31,1.53-2,2.68-2c0.87,0,1.55,0.54,1.77,1.32c0.35-0.04,0.68-0.06,1-0.06c0.36,0,0.7,0.03,1.03,0.08 C18.7,6.43,17.13,5,15.15,5c-0.12,0-0.23,0.03-0.35,0.04C14.92,4.71,15,4.37,15,4c0-1.66-1.34-3-3-3S9,2.34,9,4 c0,0.37,0.08,0.71,0.2,1.04C9.08,5.03,8.97,5,8.85,5C6.69,5,5,6.69,5,8.85C5,11.27,7.04,13.16,10.1,15.9z\\\"></path><path d=\\\"M22.5,16.24c-0.32-0.18-0.66-0.29-1-0.35c0.07-0.1,0.15-0.18,0.21-0.28c1.08-1.87,0.46-4.18-1.41-5.26 c-2.09-1.21-4.76-0.39-8.65,0.9l0.52,1.94c3.47-1.14,5.79-1.88,7.14-1.1c0.91,0.53,1.2,1.61,0.68,2.53 c-0.56,0.96-1.33,1-3.07,1.32l-0.47,0.81c0.58,1.62,0.97,2.33,0.39,3.32c-0.53,0.91-1.61,1.2-2.53,0.68 c-0.06-0.03-0.11-0.09-0.17-0.13c-0.3,0.67-0.64,1.24-1.03,1.73c0.07,0.04,0.13,0.09,0.2,0.14c1.87,1.08,4.18,0.46,5.26-1.41 c0.06-0.1,0.09-0.21,0.14-0.32c0.22,0.27,0.48,0.51,0.8,0.69c1.43,0.83,3.27,0.34,4.1-1.1S23.93,17.06,22.5,16.24z\\\"></path><path d=\\\"M12.32,14.01c-0.74,3.58-1.27,5.95-2.62,6.73c-0.91,0.53-2,0.24-2.53-0.68c-0.56-0.96-0.2-1.66,0.39-3.32L7.1,15.93 c-1.7-0.31-2.5-0.33-3.07-1.32c-0.53-0.91-0.24-2,0.68-2.53c0.09-0.05,0.19-0.08,0.29-0.11c-0.35-0.56-0.64-1.17-0.82-1.85 c-0.16,0.07-0.32,0.14-0.48,0.23c-1.87,1.08-2.49,3.39-1.41,5.26c0.06,0.1,0.14,0.18,0.21,0.28c-0.34,0.06-0.68,0.17-1,0.35 c-1.43,0.83-1.93,2.66-1.1,4.1s2.66,1.93,4.1,1.1c0.32-0.18,0.58-0.42,0.8-0.69c0.05,0.11,0.08,0.22,0.14,0.32 c1.08,1.87,3.39,2.49,5.26,1.41c2.09-1.21,2.71-3.93,3.55-7.94L12.32,14.01z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.53,13.47l1.06-1.06C7.13,10.22,5.5,8.76,5.5,7.3c0-1.03,0.77-1.8,1.8-1.8c1.05,0,1.5,0.66,2.22,1.5h0.97 c1.26-1.48,1.57-1.5,2.22-1.5c0.81,0,1.46,0.49,1.69,1.19c0.27-0.03,0.52-0.05,0.77-0.05c0.27,0,0.53,0.02,0.78,0.05 C15.67,5.15,14.34,4,12.7,4c-0.09,0-0.17,0.02-0.26,0.03c0.04-0.17,0.06-0.35,0.06-0.53C12.5,2.12,11.38,1,10,1 C8.62,1,7.5,2.12,7.5,3.5c0,0.18,0.02,0.36,0.06,0.53C7.47,4.02,7.39,4,7.3,4C5.45,4,4,5.45,4,7.3C4,9.41,5.82,11.06,8.53,13.47z\\\"></path><path d=\\\"M18.75,13.09c-0.16-0.09-0.32-0.16-0.49-0.21c0.05-0.07,0.11-0.13,0.15-0.21c0.92-1.6,0.39-3.58-1.21-4.51 C15.38,7.1,13.04,7.85,9.6,8.99l0.39,1.45c3.13-1.03,5.21-1.71,6.47-0.98c0.89,0.51,1.17,1.57,0.66,2.46 c-0.53,0.91-1.33,0.97-2.41,1.17l-0.48,0.84c0.65,1.83,0.51,2.11,0.19,2.67c-0.51,0.89-1.57,1.17-2.46,0.66 c-0.18-0.11-0.35-0.25-0.5-0.42c-0.23,0.51-0.48,0.97-0.77,1.35c0.16,0.14,0.33,0.27,0.52,0.38c1.6,0.92,3.58,0.39,4.51-1.21 c0.04-0.08,0.07-0.16,0.1-0.24c0.13,0.12,0.27,0.22,0.43,0.32c1.2,0.69,2.72,0.28,3.42-0.92C20.35,15.3,19.95,13.78,18.75,13.09z\\\"></path><path d=\\\"M10.43,11.15c-0.67,3.23-1.12,5.37-2.38,6.1c-0.89,0.51-1.95,0.23-2.46-0.66c-0.53-0.91-0.18-1.63,0.19-2.67l-0.48-0.84 c-1.91-0.35-2.08-0.61-2.41-1.17c-0.51-0.89-0.23-1.95,0.66-2.46C3.31,8.98,3.16,8.5,3.08,8.02c-0.1,0.04-0.2,0.08-0.29,0.13 c-1.6,0.92-2.13,2.91-1.21,4.51c0.04,0.08,0.11,0.14,0.15,0.21c-0.17,0.05-0.33,0.12-0.49,0.21c-1.2,0.69-1.61,2.22-0.92,3.42 c0.69,1.2,2.22,1.61,3.42,0.92c0.16-0.09,0.3-0.2,0.43-0.32c0.04,0.08,0.06,0.16,0.1,0.24c0.92,1.6,2.91,2.13,4.51,1.21 c1.83-1.06,2.35-3.45,3.09-7.01L10.43,11.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications_paused\": {\n    \"name\": \"notifications_paused\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z\\\"></path>\"\n      }\n    }\n  },\n  \"school\": {\n    \"name\": \"school\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3 1 9l11 6 9-4.91V17h2V9L12 3z\\\"></path>\"\n      }\n    }\n  },\n  \"blind\": {\n    \"name\": \"blind\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"11.5\\\" cy=\\\"3.5\\\" r=\\\"2\\\"></circle><path d=\\\"M12.13,7.12c-0.17-0.35-0.44-0.65-0.8-0.85C10.72,5.91,9.99,5.93,9.4,6.24l0-0.01L4,9.3V14h2v-3.54l1.5-0.85 C7.18,10.71,7,11.85,7,13v5.33L4.4,21.8L6,23l3-4l0.22-3.54L11,18v5h2v-6.5l-1.97-2.81c-0.04-0.52-0.14-1.76,0.45-3.4 c0.75,1.14,1.88,1.98,3.2,2.41L20.63,23l0.87-0.5L16.02,13H17v-2c-0.49,0-2.88,0.17-4.08-2.21\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M12.68,10.78L16.85,18l0.65-0.38l-3.86-6.68c0.12,0.01,0.23,0.03,0.36,0.03v-1.5c-3.08,0-3.01-2.16-4.11-3.05 C9.63,6.22,9.32,6.09,9,6.04C8.63,5.97,8.23,6,7.86,6.15L4,7.79v3.21h1.5V8.78L6.86,8.2C6.65,8.96,6.5,9.7,6.5,10.49v4l-2,2.5l1,1 L8,15l0.19-2.62l1.31,1.61V18H11v-5.01l-1.46-1.93c-0.02-0.22-0.12-1.1,0.28-2.34C10.04,9.06,11.01,10.3,12.68,10.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_emotions\": {\n    \"name\": \"emoji_emotions\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M9.99,3C6.13,3,3,6.14,3,10s3.13,7,6.99,7c3.87,0,7.01-3.14,7.01-7S13.86,3,9.99,3z M7,7c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1S6,8.55,6,8C6,7.45,6.45,7,7,7z M10,14c-1.86,0-3.41-1.28-3.86-3h7.72C13.41,12.72,11.86,14,10,14z M13,9 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14,8.55,13.55,9,13,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"waving_hand\": {\n    \"name\": \"waving_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M23,17c0,3.31-2.69,6-6,6v-1.5c2.48,0,4.5-2.02,4.5-4.5H23z M1,7c0-3.31,2.69-6,6-6v1.5C4.52,2.5,2.5,4.52,2.5,7H1z M8.9,3.43L3.42,8.91c-3.22,3.22-3.22,8.44,0,11.67s8.44,3.22,11.67,0l7.95-7.95l-1.77-1.77l-5.3,5.3l-0.71-0.71l7.42-7.42 l-1.77-1.77l-6.72,6.72l-0.71-0.71l7.78-7.78L19.5,2.73l-7.78,7.78L11.02,9.8l6.36-6.36l-1.77-1.77l-8.51,8.51 c1.22,1.57,1.11,3.84-0.33,5.28l-0.71-0.71c1.17-1.17,1.17-3.08,0-4.24l-0.35-0.35l4.95-4.95L8.9,3.43z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M1,6c0-2.76,2.24-5,5-5v1C3.79,2,2,3.79,2,6H1z M19,14c0,2.76-2.24,5-5,5v-1c2.21,0,4-1.79,4-4H19z M3.05,16.95 c2.73,2.73,7.17,2.73,9.9,0l6.36-6.36L17.9,9.17l-4.24,4.24l-0.71-0.71l6.19-6.19l-1.41-1.41l-5.48,5.48l-0.71-0.71l6.36-6.36 L16.49,2.1l-6.36,6.36L9.41,7.76l5.3-5.3L13.3,1.04l-7.1,7.1c1.03,1.37,0.92,3.33-0.33,4.57L5.17,12c0.98-0.98,0.98-2.56,0-3.54 L4.82,8.11l4.24-4.24L7.65,2.45l-4.6,4.6C0.32,9.78,0.32,14.22,3.05,16.95z\\\"></path>\"\n      }\n    }\n  },\n  \"cake\": {\n    \"name\": \"cake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.53 9.92l-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V22h18v-5.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_basketball\": {\n    \"name\": \"sports_basketball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17.09,11h4.86c-0.16-1.61-0.71-3.11-1.54-4.4C18.68,7.43,17.42,9.05,17.09,11z\\\"></path></g><g><path d=\\\"M6.91,11C6.58,9.05,5.32,7.43,3.59,6.6C2.76,7.89,2.21,9.39,2.05,11H6.91z\\\"></path></g><g><path d=\\\"M15.07,11c0.32-2.59,1.88-4.79,4.06-6c-1.6-1.63-3.74-2.71-6.13-2.95V11H15.07z\\\"></path></g><g><path d=\\\"M8.93,11H11V2.05C8.61,2.29,6.46,3.37,4.87,5C7.05,6.21,8.61,8.41,8.93,11z\\\"></path></g><g><path d=\\\"M15.07,13H13v8.95c2.39-0.24,4.54-1.32,6.13-2.95C16.95,17.79,15.39,15.59,15.07,13z\\\"></path></g><g><path d=\\\"M3.59,17.4c1.72-0.83,2.99-2.46,3.32-4.4H2.05C2.21,14.61,2.76,16.11,3.59,17.4z\\\"></path></g><g><path d=\\\"M17.09,13c0.33,1.95,1.59,3.57,3.32,4.4c0.83-1.29,1.38-2.79,1.54-4.4H17.09z\\\"></path></g><g><path d=\\\"M8.93,13c-0.32,2.59-1.88,4.79-4.06,6c1.6,1.63,3.74,2.71,6.13,2.95V13H8.93z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M13.05,9.5h3.92c-0.1-1.43-0.63-2.74-1.47-3.81C14.16,6.48,13.22,7.87,13.05,9.5z\\\"></path></g><g><path d=\\\"M6.95,10.5H3.03c0.1,1.43,0.63,2.74,1.47,3.81C5.84,13.52,6.78,12.13,6.95,10.5z\\\"></path></g><g><path d=\\\"M6.95,9.5c-0.17-1.63-1.1-3.02-2.46-3.81C3.66,6.76,3.13,8.07,3.03,9.5H6.95z\\\"></path></g><g><path d=\\\"M13.05,10.5c0.17,1.63,1.1,3.02,2.46,3.81c0.83-1.07,1.36-2.38,1.47-3.81H13.05z\\\"></path></g><g><path d=\\\"M12.03,10.5H10.5v6.47c1.67-0.12,3.17-0.82,4.31-1.9C13.26,14.1,12.18,12.43,12.03,10.5z\\\"></path></g><g><path d=\\\"M12.03,9.5c0.16-1.93,1.23-3.6,2.79-4.58c-1.14-1.08-2.64-1.78-4.31-1.9V9.5H12.03z\\\"></path></g><g><path d=\\\"M7.97,10.5c-0.16,1.93-1.23,3.6-2.79,4.58c1.14,1.08,2.64,1.78,4.31,1.9V10.5H7.97z\\\"></path></g><g><path d=\\\"M7.97,9.5H9.5V3.03c-1.67,0.12-3.17,0.82-4.31,1.9C6.74,5.9,7.82,7.57,7.97,9.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"surfing\": {\n    \"name\": \"surfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M17,1.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S18.1,1.5,17,1.5z M14.43,8.48L12.18,10L16,13v3.84c0.53,0.38,1.03,0.78,1.49,1.17C16.81,18.59,15.94,19,15,19 c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.33,0-0.65-0.05-0.96-0.14C5.19,16.9,3,14.72,3,13.28C3,12.25,4.01,12,4.85,12 c0.98,0,2.28,0.31,3.7,0.83L7.83,8.59l3.12-2.1l-2-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03c0.45,0.09,0.93,0.37,1.22,0.89l0.88,1.55 C17.01,8.98,18.64,10,20.5,10v2C17.91,12,15.64,10.58,14.43,8.48z M10.3,11.1l0.44,2.65c0.92,0.42,2.48,1.27,3.26,1.75V14L10.3,11.1 z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,3.25C15.5,4.22,14.72,5,13.75,5S12,4.22,12,3.25s0.78-1.75,1.75-1.75S15.5,2.28,15.5,3.25z M15,16.5 c-1.52,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5c0.86,0,1.71-0.2,2.5-0.6 c1.57,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5C16.63,17.5,15.76,17.17,15,16.5z M11.9,7.2 L10,8.48L13,11v3.09c0.5,0.35,0.98,0.71,1.41,1.07c-0.54,0.5-1.2,0.84-1.91,0.84c-1,0-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 c-0.19,0-0.37-0.02-0.55-0.07C4.71,14.38,3,12.66,3,11.52c0-0.45,0.28-1.02,1.47-1.02c0.68,0,1.56,0.19,2.53,0.51L6.82,10L6.36,7.32 l1.63-1.1l0.89-0.6L7.54,5.38l-2.3,1.56L4.4,5.7l2.8-1.9l4.22,0.69c0.36,0.06,0.69,0.23,0.91,0.51l1.38,2.1 c0.64,0.85,1.66,1.4,2.8,1.4V10c-1.64,0-3.09-0.79-4-2L11.9,7.2z M8.4,9.15l0.35,2.55c0.86,0.37,2.18,1.05,2.74,1.42V11.7L8.4,9.15z\\\"></path>\"\n      }\n    }\n  },\n  \"real_estate_agent\": {\n    \"name\": \"real_estate_agent\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1,22h4V11H1V22z M14,1.5l-7,5V9h2l10,4v2h2V6.5L14,1.5z M13.5,10h-1V9h1V10z M13.5,8h-1V7h1V8z M15.5,10h-1V9h1V10z M15.5,8h-1V7h1V8z M22,19l-8,3l-7-1.98V11h1.97L17,14l0,2h-4l-1.76-0.68l-0.33,0.94L13,17h9V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,1.5L6,5.5v2h1.5l8,2.85v2.15H17v-7L11.5,1.5z M11.12,8.25h-0.75V7.5h0.75V8.25z M11.12,6.75h-0.75V6h0.75V6.75z M12.62,8.25h-0.75V7.5h0.75V8.25z M12.62,6.75h-0.75V6h0.75V6.75z M1,18h3V9H1V18z M10.5,14l-1.53-0.51l0.36-1.01L10.5,13H14v-1.5 L7,9H5.5v7.36l6,1.64l6.5-2.5V14H10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"person_4\": {\n    \"name\": \"person_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z\\\"></path></g><g><path d=\\\"M12,12c2.21,0,4-1.79,4-4c0-1.37,0-3.5,0-3.5C16,3.67,15.33,3,14.5,3c-0.52,0-0.98,0.27-1.25,0.67 C12.98,3.27,12.52,3,12,3s-0.98,0.27-1.25,0.67C10.48,3.27,10.02,3,9.5,3C8.67,3,8,3.67,8,4.5c0,0,0,2.12,0,3.5 C8,10.21,9.79,12,12,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3c0-1.03,0-2.83,0-2.83v0c0-0.62-0.5-1.12-1.12-1.12c-0.4,0-0.74,0.22-0.94,0.54 C10.74,3.26,10.4,3.04,10,3.04c-0.39,0-0.72,0.21-0.92,0.52C8.88,3.23,8.54,3,8.12,3C7.5,3,7,3.5,7,4.12c0,0,0,1.84,0,2.88 C7,8.66,8.34,10,10,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sanitizer\": {\n    \"name\": \"sanitizer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v10H4V12c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43C14.1,4.17,13.57,4,13,4h-2v2.09 C13.84,6.57,16,9.03,16,12z\\\"></path>\"\n      }\n    }\n  },\n  \"fireplace\": {\n    \"name\": \"fireplace\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,2v20h20V2H2z M13.2,13.74c-0.08-0.46-0.07-0.85,0.08-1.28c0.54,1.21,2.15,1.64,1.98,3.18 c-0.19,1.69-2.11,2.37-3.39,1.32c0.76-0.24,1.4-1.04,1.53-1.63C13.52,14.78,13.29,14.29,13.2,13.74z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8c0.03,0.96,0.49,2.07,1.23,3 H6v2H4V4h16V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,3v14h14V3H3z M9.45,13.63c0.57-0.18,1.05-0.78,1.15-1.22c0.1-0.42-0.08-0.78-0.15-1.2c-0.06-0.34-0.05-0.64,0.06-0.96 c0.41,0.91,1.61,1.23,1.48,2.39C11.85,13.9,10.41,14.41,9.45,13.63z M16,16h-2v-1h-1.33c0.81-0.7,1.33-1.71,1.33-2.85 c0-1.45-0.87-2.19-1.48-2.59C10.16,8.01,10.8,6,10.8,6C5.42,8.74,5.99,11.74,6,12.15C6.03,13.1,6.63,14.21,7.53,15H6v1H4V4h12V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"architecture\": {\n    \"name\": \"architecture\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z\\\"></path><path d=\\\"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z\\\"></path><path d=\\\"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.67,14.89L6.79,16l0.81-0.77l1.92-5.28C9.19,9.9,8.87,9.79,8.58,9.63L6.67,14.89z\\\"></path><path d=\\\"M11.42,9.63c-0.29,0.16-0.61,0.27-0.95,0.32l1.92,5.28L13.21,16l0.13-1.11L11.42,9.63z\\\"></path><path d=\\\"M12,7c0-0.93-0.64-1.71-1.5-1.93V4h-1v1.07C8.64,5.29,8,6.07,8,7c0,1.1,0.9,2,2,2S12,8.1,12,7z M10,8C9.45,8,9,7.55,9,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C11,7.55,10.55,8,10,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"heart_broken\": {\n    \"name\": \"heart_broken\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.5,3c-0.96,0-1.9,0.25-2.73,0.69L12,9h3l-3,10l1-9h-3l1.54-5.39C10.47,3.61,9.01,3,7.5,3C4.42,3,2,5.42,2,8.5 c0,4.13,4.16,7.18,10,12.5c5.47-4.94,10-8.26,10-12.5C22,5.42,19.58,3,16.5,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.6,3c-0.77,0-1.52,0.2-2.18,0.56L10,8h2.5L10,15.89L11,9H8.5l1.13-4.7C8.77,3.49,7.61,3,6.4,3C3.94,3,2,4.95,2,7.43 c0,3.33,3.33,5.79,8,10.07c4.38-3.98,8-6.65,8-10.07C18,4.95,16.06,3,13.6,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_nature\": {\n    \"name\": \"emoji_nature\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.94,4.88C21.76,4.35,21.25,4,20.68,4c-0.03,0-0.06,0-0.09,0H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0 c-0.61,0-1.15,0.43-1.29,1.04L16.4,4h-0.98c-0.03,0-0.06,0-0.09,0c-0.57,0-1.08,0.35-1.26,0.88c-0.19,0.56,0.04,1.17,0.56,1.48 l0.87,0.52L15.1,8.12c-0.23,0.58-0.04,1.25,0.45,1.62C15.78,9.91,16.06,10,16.33,10c0.31,0,0.61-0.11,0.86-0.32L18,8.98l0.81,0.7 C19.06,9.89,19.36,10,19.67,10c0.27,0,0.55-0.09,0.78-0.26c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52 C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z\\\"></path><path d=\\\"M13.49,10.51c-0.43-0.43-0.94-0.73-1.49-0.93V8h-1v1.38c-0.11-0.01-0.23-0.03-0.34-0.03c-1.02,0-2.05,0.39-2.83,1.17 c-0.16,0.16-0.3,0.34-0.43,0.53L6,10.52c-1.56-0.55-3.28,0.27-3.83,1.82c0,0,0,0,0,0c-0.27,0.75-0.23,1.57,0.12,2.29 c0.23,0.48,0.58,0.87,1,1.16c-0.38,1.35-0.06,2.85,1,3.91c1.06,1.06,2.57,1.38,3.91,1c0.29,0.42,0.68,0.77,1.16,1 C9.78,21.9,10.21,22,10.65,22c0.34,0,0.68-0.06,1.01-0.17c0,0,0,0,0,0c1.56-0.55,2.38-2.27,1.82-3.85l-0.52-1.37 c0.18-0.13,0.36-0.27,0.53-0.43c0.87-0.87,1.24-2.04,1.14-3.17H16v-1h-1.59C14.22,11.46,13.92,10.95,13.49,10.51z M4.67,14.29 c-0.25-0.09-0.45-0.27-0.57-0.51s-0.13-0.51-0.04-0.76c0.19-0.52,0.76-0.79,1.26-0.61l3.16,1.19C7.33,14.2,5.85,14.71,4.67,14.29z M10.99,19.94c-0.25,0.09-0.52,0.08-0.76-0.04c-0.24-0.11-0.42-0.32-0.51-0.57c-0.42-1.18,0.09-2.65,0.7-3.8l1.18,3.13 C11.78,19.18,11.51,19.76,10.99,19.94z M12.2,14.6l-0.61-1.61c0-0.01-0.01-0.02-0.02-0.03c-0.02-0.04-0.04-0.08-0.06-0.12 c-0.02-0.04-0.04-0.07-0.07-0.11c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.06-0.06-0.09-0.09c-0.03-0.03-0.07-0.05-0.11-0.07 c-0.04-0.02-0.07-0.05-0.12-0.06c-0.01,0-0.02-0.01-0.03-0.02L9.4,11.8c0.36-0.29,0.79-0.46,1.26-0.46c0.53,0,1.04,0.21,1.41,0.59 C12.8,12.66,12.84,13.81,12.2,14.6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M16.96,4.8c-0.11-0.33-0.43-0.55-0.79-0.55c-0.02,0-0.04,0-0.06,0H15.5l-0.19-0.6C15.22,3.27,14.88,3,14.5,3h0 c-0.38,0-0.72,0.27-0.81,0.65l-0.19,0.6h-0.61c-0.02,0-0.04,0-0.06,0c-0.36,0-0.68,0.22-0.79,0.55c-0.12,0.35,0.03,0.73,0.35,0.92 l0.54,0.33l-0.24,0.77c-0.14,0.36-0.03,0.78,0.28,1.01C13.12,7.95,13.29,8,13.46,8c0.19,0,0.38-0.07,0.54-0.2l0.51-0.43l0.51,0.43 C15.16,7.93,15.35,8,15.54,8c0.17,0,0.34-0.05,0.49-0.16c0.31-0.23,0.43-0.65,0.28-1.01l-0.24-0.77l0.54-0.33 C16.93,5.53,17.08,5.15,16.96,4.8z M14.5,6C14.22,6,14,5.78,14,5.5C14,5.22,14.22,5,14.5,5S15,5.22,15,5.5C15,5.78,14.78,6,14.5,6 z\\\"></path><path d=\\\"M11.27,8.73c-0.36-0.36-0.8-0.59-1.27-0.68V7H9.5v1C8.86,8,8.22,8.24,7.73,8.73C7.56,8.91,7.43,9.1,7.32,9.31l-1.58-0.6 C5.23,8.53,4.67,8.56,4.18,8.79C3.69,9.02,3.32,9.43,3.14,9.95c-0.36,1.01,0.13,2.1,1.09,2.53c-0.41,0.92-0.25,2.04,0.5,2.79 c0.76,0.76,1.88,0.92,2.8,0.5c0.2,0.46,0.54,0.82,0.99,1.04C8.8,16.94,9.1,17,9.4,17c0.23,0,0.46-0.04,0.68-0.12h0 c0.51-0.18,0.92-0.55,1.16-1.04c0.23-0.49,0.26-1.04,0.08-1.56l-0.6-1.6c0.2-0.11,0.39-0.24,0.56-0.41 C11.76,11.78,12,11.14,12,10.5h1V10h-1.05C11.85,9.54,11.63,9.09,11.27,8.73z M4.71,11.6c-0.26-0.09-0.47-0.28-0.59-0.53 s-0.13-0.53-0.04-0.79c0.09-0.26,0.28-0.47,0.53-0.59c0.14-0.07,0.29-0.1,0.45-0.1c0.11,0,0.23,0.02,0.34,0.06l2.94,1.11 C7.46,11.31,5.95,12.04,4.71,11.6z M10.33,15.41c-0.12,0.25-0.33,0.44-0.59,0.53S9.2,16.02,8.95,15.9 c-0.25-0.12-0.44-0.33-0.53-0.59c-0.44-1.24,0.29-2.75,0.84-3.63l1.11,2.93C10.46,14.88,10.45,15.16,10.33,15.41z M10.56,11.56 c-0.07,0.07-0.14,0.12-0.21,0.17l-0.49-1.28c-0.01-0.03-0.03-0.04-0.05-0.07c-0.02-0.04-0.04-0.07-0.07-0.1 c-0.03-0.03-0.06-0.05-0.1-0.07c-0.02-0.01-0.04-0.04-0.07-0.05L8.28,9.67c0.05-0.08,0.09-0.16,0.15-0.23C8.72,9.16,9.1,9,9.5,9 s0.78,0.16,1.06,0.44C11.15,10.02,11.15,10.98,10.56,11.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transgender\": {\n    \"name\": \"transgender\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,8c1.93,0,3.5,1.57,3.5,3.5S13.93,15,12,15s-3.5-1.57-3.5-3.5S10.07,8,12,8z M16.53,8.38l3.97-3.96V7h2V1h-6v2h2.58 l-3.97,3.97C14.23,6.36,13.16,6,12,6c-1.16,0-2.23,0.36-3.11,0.97L8.24,6.32l1.41-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42 l1.91,1.9L3.99,7.74l1.41,1.41l1.41-1.41l0.65,0.65C6.86,9.27,6.5,10.34,6.5,11.5c0,2.7,1.94,4.94,4.5,5.41L11,19H9v2h2v2h2v-2h2v-2 h-2l0-2.09c2.56-0.47,4.5-2.71,4.5-5.41C17.5,10.34,17.14,9.27,16.53,8.38z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,1.5V3h1.94l-3.16,3.16C11.62,5.74,10.84,5.5,10,5.5S8.38,5.74,7.72,6.16l-0.6-0.6L8.18,4.5L7.12,3.44L6.06,4.5L4.56,3 H6.5V1.5H2V6h1.5V4.06L5,5.56L3.94,6.62L5,7.68l1.06-1.06l0.56,0.56C6.07,7.89,5.75,8.78,5.75,9.75c0,2.09,1.51,3.83,3.5,4.18v1.57 h-1.5V17h1.5v1.5h1.5V17h1.5v-1.5h-1.5v-1.57c1.99-0.35,3.5-2.09,3.5-4.18c0-0.97-0.32-1.86-0.87-2.57l3.12-3.12V6H18V1.5H13.5z M10,12.5c-1.52,0-2.75-1.23-2.75-2.75C7.25,8.23,8.48,7,10,7s2.75,1.23,2.75,2.75C12.75,11.27,11.52,12.5,10,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_hockey\": {\n    \"name\": \"sports_hockey\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z\\\"></path><path d=\\\"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z\\\"></path><g><path d=\\\"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z\\\"></path></g><path d=\\\"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M3,14v2h1v-3C3.45,13,3,13.45,3,14z\\\"></path></g><g><polygon points=\\\"12.32,13 11.1,10.34 14,4 11.8,4 10,7.94 8.2,4 6,4 8.9,10.34 10,12.74 11.5,16 15,16 15,13\\\"></polygon></g><g><path d=\\\"M16,13v3h1v-2C17,13.45,16.55,13,16,13z\\\"></path></g><g><polygon points=\\\"7.68,13 5,13 5,16 8.5,16 9.45,13.94 8.35,11.54\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"person_outline\": {\n    \"name\": \"person_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"group_add\": {\n    \"name\": \"group_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"22,9 22,7 20,7 20,9 18,9 18,11 20,11 20,13 22,13 22,11 24,11 24,9\\\"></polygon><path d=\\\"M8,12c2.21,0,4-1.79,4-4s-1.79-4-4-4S4,5.79,4,8S5.79,12,8,12z\\\"></path><path d=\\\"M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z\\\"></path><path d=\\\"M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z\\\"></path><path d=\\\"M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"6\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle></g><g><path d=\\\"M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z\\\"></path></g><g><path d=\\\"M15.03,12.37c-0.92-0.54-1.94-0.92-3.02-1.14c0.92,0.64,1.48,1.71,1.48,2.86V16H16v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3s-1.34-3-3-3C9.79,4,9.58,4.02,9.38,4.06C10.07,4.85,10.5,5.87,10.5,7 c0,1.13-0.43,2.14-1.12,2.93C9.58,9.98,9.79,10,10,10z\\\"></path></g><g><polygon points=\\\"19.5,7.75 17.75,7.75 17.75,6 16.25,6 16.25,7.75 14.5,7.75 14.5,9.25 16.25,9.25 16.25,11 17.75,11 17.75,9.25 19.5,9.25\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"thumb_up_alt\": {\n    \"name\": \"thumb_up_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_handball\": {\n    \"name\": \"sports_handball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z\\\"></path><path d=\\\"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z\\\"></path><path d=\\\"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.23,8.6l-3.46-2c-1.43-0.83-1.93-2.67-1.1-4.1l0.5-0.87L8.3,1.14L7.8,2C6.7,3.92,7.35,6.36,9.27,7.47l-4.5,7.79 l0.87,0.5l1.5-2.6l1.73,1l-3,5.2l0.87,0.5l6-10.39c1.43,0.83,1.93,2.67,1.1,4.1l-0.5,0.87l0.87,0.5l0.5-0.87 C15.8,12.15,15.14,9.71,13.23,8.6z\\\"></path><circle cx=\\\"11\\\" cy=\\\"2\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"domain_add\": {\n    \"name\": \"domain_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2 V7z M10,19H8v-2h2V19z M10,15H8v-2h2V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24z M18,11h-2v2h2 V11z M18,15h-2v2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,15.5H3.5V14H5V15.5z M5,12.33H3.5v-1.5H5V12.33z M5,9.17H3.5v-1.5H5V9.17z M5,6H3.5V4.5H5V6z M8.5,15.5H7V14h1.5V15.5z M8.5,12.33H7v-1.5h1.5V12.33z M8.5,9.17H7v-1.5h1.5V9.17z M7,6V4.5h1.5V6H7z M18,12.5V6h-8V3H2v14h11.5v-1.5H10v-1.67h1.5v-1.5H10 v-1.67h1.5v-1.5H10V7.5h6.5v5H18z M15,9.17h-1.5v1.5H15V9.17z M15,12.33h-1.5v1.5H15V12.33z M18,15.5V14h-1.5v1.5H15V17h1.5v1.5H18 V17h1.5v-1.5H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sports_gymnastics\": {\n    \"name\": \"sports_gymnastics\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M1,9h6l7-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2 l-0.5-10L8,11H1V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M19,5.16L12,10l-0.5,8H10l-0.5-7.7L7,9.5H1V8h5l5.5-4l0.98,1.14L9.2,7.5h2.3L18,4L19,5.16z M4,5.5C4,6.33,4.67,7,5.5,7 S7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_luggage\": {\n    \"name\": \"no_luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.75,9v0.92l1.75,1.75V9H16v4.17l3,3V6h-4V2H9v4H8.83l3,3H12.75z M10.5,3.5h3V6h-3V3.5z M21.19,21.19L2.81,2.81L1.39,4.22 L5,7.83V21h2v1h2v-1h6v1h2v-1h1.17l1.61,1.61L21.19,21.19z M8,18v-7.17l1.5,1.5V18H8z M11.25,18v-3.92l1.5,1.5V18H11.25z\\\"></path>\"\n      }\n    }\n  },\n  \"piano_off\": {\n    \"name\": \"piano_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V21h15.17l1.61,1.61L21.19,21.19z M8.25,19H5V7.83l2,2v4.67h1.25V19z M9.75,19v-4.5 H11v-0.67l3.25,3.25V19H9.75z M5.83,3H21v15.17l-2-2V5h-2v9.17l-4-4V5h-2v3.17L5.83,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M5.12,3H17v11.88l-1.5-1.5V4.5H14v7.38l-3-3V4.5H9v2.38L5.12,3z M16.01,18.13L14.88,17H3V5.12L1.87,3.99l1.06-1.06 l14.14,14.14L16.01,18.13z M7,12H6V8.12l-1.5-1.5v8.88H7V12z M12,15.5v-1.38l-3-3V12H8v3.5H12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tsunami\": {\n    \"name\": \"tsunami\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.67,17.63c-3.8,2.8-6.12,0.4-6.67,0c-0.66,0.49-2.92,2.76-6.67,0C3.43,19.03,2.65,19,2,19v2c1.16,0,2.3-0.32,3.33-0.93 c2.06,1.22,4.61,1.22,6.67,0c2.06,1.22,4.61,1.22,6.67,0C19.7,20.68,20.84,21,22,21v-2C21.34,19,20.5,18.98,18.67,17.63z\\\"></path><path d=\\\"M19.33,12H22v-2h-2.67C17.5,10,16,8.5,16,6.67c0-1.02,0.38-1.74,1.09-3.34C15.72,3.12,15.09,3,14,3 C7.36,3,2.15,8.03,2.01,14.5c0,0-0.01,2-0.01,2c1.16,0,2.3-0.32,3.33-0.93c2.06,1.22,4.61,1.22,6.67,0c2.06,1.22,4.61,1.22,6.67,0 c1.03,0.61,2.17,0.93,3.33,0.93v-2c-0.66,0-1.5-0.02-3.33-1.37c-3.8,2.8-6.12,0.4-6.67,0c-0.9,0.67-0.54,0.41-0.91,0.63 C10.39,12.82,10,11.7,10,10.5c0-2.58,1.77-4.74,4.21-5.33C14.08,5.68,14,6.19,14,6.67C14,9.61,16.39,12,19.33,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.33,14.28c-1.95,1.59-3.31,1.65-5.33,0c-1.95,1.59-3.31,1.65-5.33,0C3.17,15.5,2.54,15.5,2,15.5V17 c0.93,0,1.85-0.28,2.67-0.82c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0C16.15,16.72,17.07,17,18,17v-1.5 C17.49,15.5,16.83,15.5,15.33,14.28z\\\"></path><path d=\\\"M16.5,10.5H18V9h-1.5c-1.6,0-2.9-1.3-2.9-2.9c0-0.57,0.18-1.31,0.46-1.91l0.46-0.92C13.44,3.1,12.92,3,12.01,3 C6.3,3,2,7.08,2,12.5V14c0.93,0,1.85-0.28,2.67-0.82c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0 C16.15,13.72,17.07,14,18,14v-1.5c-0.51,0-1.17,0-2.67-1.22c-1.95,1.59-3.31,1.65-5.33,0c-0.16,0.13-0.59,0.47-0.65,0.51 c-0.51-0.77-0.79-1.66-0.79-2.61c0-2.2,1.51-3.92,3.73-4.35c-0.1,0.44-0.17,0.88-0.17,1.27C12.11,8.53,14.08,10.5,16.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports\": {\n    \"name\": \"sports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z\\\"></path></g><g><circle cx=\\\"11\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.5,6C8.06,6,6.8,6.68,5.98,7.73C5.99,7.66,6,7.58,6,7.5C6,6.67,5.33,6,4.5,6S3,6.67,3,7.5S3.67,9,4.5,9 c0.33,0,0.62-0.11,0.87-0.28C5.13,9.26,5,9.87,5,10.5C5,12.99,7.01,15,9.5,15s4.5-2.01,4.5-4.5c0-0.08-0.02-0.16-0.02-0.24 c0-0.04,0.01-0.09,0.01-0.12C13.93,9.53,14.37,9,14.97,9H18V6H9.5z M4.5,8C4.22,8,4,7.78,4,7.5C4,7.22,4.22,7,4.5,7S5,7.22,5,7.5 C5,7.78,4.78,8,4.5,8z M11.47,12.02C11.02,12.61,10.31,13,9.5,13C8.12,13,7,11.88,7,10.5c0-1.27,0.95-2.3,2.17-2.47 C9.28,8.02,9.39,8,9.5,8c1.38,0,2.5,1.12,2.5,2.5C12,11.07,11.8,11.6,11.47,12.02z\\\"></path></g><g><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"man\": {\n    \"name\": \"man\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16,7 8,7 8,15 10,15 10,22 14,22 14,15 16,15\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><polygon points=\\\"13,7 7,7 7,13 8.5,13 8.5,18 11.5,18 11.5,13 13,13\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"tornado\": {\n    \"name\": \"tornado\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"20.11,8 23,3 1,3 3.89,8\\\"></polygon></g><g><polygon points=\\\"7.95,15 12,22 16.05,15\\\"></polygon></g><g><polygon points=\\\"18.95,10 5.05,10 6.79,13 17.21,13\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"16.6,7 19,3 1,3 3.4,7\\\"></polygon></g><g><polygon points=\\\"6.7,12.5 10,18 13.3,12.5\\\"></polygon></g><g><polygon points=\\\"15.7,8.5 4.3,8.5 5.8,11 14.2,11\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"emoji_events\": {\n    \"name\": \"emoji_events\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M19,8 c0,1.3-0.84,2.4-2,2.82V7h2V8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M13,6V5H7v1H4v2c0,1.66,1.34,3,3,3h0.18c0.36,1.01,1.24,1.77,2.32,1.95V15H7v1h2.5h1H13v-1h-2.5v-2.05 c1.08-0.18,1.96-0.94,2.32-1.95H13c1.66,0,3-1.34,3-3V6H13z M7,10c-1.1,0-2-0.9-2-2V7h2V10z M15,8c0,1.1-0.9,2-2,2V7h2V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"face_2\": {\n    \"name\": \"face_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.97,13.52c0-0.01,0-0.02,0-0.04C23.21,12.38,24,10.78,24,9c0-3.31-2.69-6-6-6c-0.26,0-0.52,0.02-0.78,0.06 C16.19,1.23,14.24,0,12,0S7.81,1.23,6.78,3.06C6.52,3.02,6.26,3,6,3C2.69,3,0,5.69,0,9c0,1.78,0.79,3.38,2.02,4.48 c0,0.01,0,0.02,0,0.04C0.79,14.62,0,16.22,0,18c0,3.31,2.69,6,6,6c1.39,0,2.67-0.48,3.69-1.28C10.43,22.9,11.2,23,12,23 s1.57-0.1,2.31-0.28C15.33,23.52,16.61,24,18,24c3.31,0,6-2.69,6-6C24,16.22,23.21,14.62,21.97,13.52z M12,21c-4.41,0-8-3.59-8-8 c0-3.72,2.56-6.85,6-7.74c0,0.02,0,0.03,0,0.05c0,3.34,2.72,6.06,6.06,6.06c1.26,0,2.45-0.39,3.45-1.09 C19.82,11.14,20,12.05,20,13C20,17.41,16.41,21,12,21z\\\"></path><circle cx=\\\"9\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.12,11.5c1.13-0.87,1.87-2.22,1.87-3.75c0-2.62-2.13-4.75-4.75-4.75c-0.28,0-0.55,0.04-0.81,0.08 C13.75,1.29,12.03,0,10,0C7.97,0,6.25,1.29,5.57,3.08C5.3,3.04,5.03,3,4.75,3C2.13,3,0,5.13,0,7.75c0,1.53,0.74,2.88,1.87,3.75 C0.74,12.37,0,13.72,0,15.25C0,17.87,2.13,20,4.75,20c1.24,0,2.36-0.49,3.2-1.28C8.6,18.9,9.29,19,10,19 c0.71,0,1.39-0.1,2.05-0.27C12.89,19.51,14,20,15.24,20c2.62,0,4.75-2.13,4.75-4.75C19.99,13.72,19.25,12.37,18.12,11.5z M10,17.5 c-3.58,0-6.5-2.92-6.5-6.5c0-3.26,2.41-5.96,5.55-6.42C9.29,7.05,11.36,9,13.89,9c0.74,0,1.46-0.17,2.11-0.49 c0.32,0.77,0.5,1.61,0.5,2.49C16.5,14.58,13.58,17.5,10,17.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"man_4\": {\n    \"name\": \"man_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"7.96,7 10,22 14,22 16.04,7\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"6.44,7 8.5,18 11.5,18 13.56,7\\\"></polygon><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sentiment_very_dissatisfied\": {\n    \"name\": \"sentiment_very_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"snowshoeing\": {\n    \"name\": \"snowshoeing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S12.5,4.6,12.5,3.5z M6.32,19.03l-1.14-1.47L4,18.5l2.38,3.04 c0.51,0.65,1.16,1.15,1.88,1.41c0.28,0.1,0.53,0.04,0.72-0.11c0.3-0.23,0.42-0.7,0.12-1.07c-0.08-0.1-0.2-0.17-0.31-0.22 c-0.43-0.18-0.82-0.45-1.14-0.83l-0.08-0.1L11,18.2l0.89-3.22l2.11,2v4.52h-2V23h3.87c0.82,0,1.61-0.21,2.26-0.61 c0.26-0.16,0.37-0.39,0.37-0.64c0-0.38-0.3-0.75-0.77-0.75c-0.13,0-0.26,0.04-0.37,0.1c-0.4,0.23-0.87,0.37-1.36,0.4l0-6.02l-2.11-2 l0.6-3C15.79,11.98,17.8,13,20,13v-2c-1.9,0-3.51-1.02-4.31-2.42l-1-1.58c-0.4-0.6-1-1-1.7-1C12.24,6,11.58,6.34,7,8.28V13h2V9.58 l1.79-0.7L9.2,17L6.32,19.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.25,3.75C10.25,2.78,11.03,2,12,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C11.04,5.5,10.25,4.72,10.25,3.75z M8.16,17.02c-0.4-0.11-0.78-0.35-1.06-0.7l2.29-1.65l0.53-2.69l1.58,1.58V17L10,17v1h3c0.67,0,1.3-0.22,1.8-0.6 c0.14-0.11,0.2-0.25,0.2-0.4c0-0.25-0.19-0.5-0.5-0.5c-0.11,0-0.21,0.04-0.3,0.1C13.87,16.85,13.45,17,13,17v-4.05l-1.46-1.46 l0.49-2.48C12.94,10.21,14.37,11,16,11V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L6,7.79V11h1.5V8.79 l1.65-0.7L8.03,13.8l-1.85,1.34L5.29,14L4.5,14.61l1.82,2.32C6.92,17.71,7.81,18,8.03,18c0.39,0,0.66-0.47,0.39-0.81 C8.35,17.11,8.26,17.05,8.16,17.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scoreboard\": {\n    \"name\": \"scoreboard\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.5,13.5H16v-3h1.5V13.5z M22,4h-5V2h-2v2H9V2H7v2H2v16h20V4z M9.5,12.5h-3v1h3V15H5v-3.5h3v-1H5V9h4.5V12.5z M12.75,18 h-1.5v-1.5h1.5V18z M12.75,14.5h-1.5V13h1.5V14.5z M12.75,11h-1.5V9.5h1.5V11z M12.75,7.5h-1.5V6h1.5V7.5z M19,9v6h-4.5V9H19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11h-1V9h1V11z M18,4h-4V2.5h-1.5V4h-5V2.5H6V4H2v12h16V4z M8,10.5H6V11h2v1H5V9.5h2V9H5V8h3V10.5z M10.5,14.5h-1v-1h1 V14.5z M10.5,11.83h-1v-1h1V11.83z M10.5,9.17h-1v-1h1V9.17z M10.5,6.5h-1v-1h1V6.5z M15,8v4h-3V8H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"male\": {\n    \"name\": \"male\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,11c1.93,0,3.5,1.57,3.5,3.5S11.43,18,9.5,18S6,16.43,6,14.5S7.57,11,9.5,11z M9.5,9C6.46,9,4,11.46,4,14.5 S6.46,20,9.5,20s5.5-2.46,5.5-5.5c0-1.16-0.36-2.23-0.97-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36,10.66,9,9.5,9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,4h-4.5v1.5h1.94l-2.76,2.76C9.99,7.78,9.15,7.5,8.25,7.5C5.9,7.5,4,9.4,4,11.75C4,14.1,5.9,16,8.25,16 s4.25-1.9,4.25-4.25c0-0.9-0.28-1.74-0.76-2.43l2.76-2.76V8.5H16V4z M8.25,14.5c-1.52,0-2.75-1.23-2.75-2.75S6.73,9,8.25,9 S11,10.23,11,11.75S9.77,14.5,8.25,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flood\": {\n    \"name\": \"flood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.67,19c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1 v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1c1.95,0,2.1-1,3.34-1c1.22,0,1.4,1,3.33,1c1.93,0,2.1-1,3.33-1c1.22,0,1.4,1,3.33,1 v-2C20.76,20,20.62,19,18.67,19z\\\"></path><path d=\\\"M8.68,17.5c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1v-2 c-0.63,0-1-0.28-1.48-0.55l-2.02-7.53l2.09,0.85l0.74-1.86L9.78,2L2,11.61l1.57,1.23l1.39-1.78l0.93,3.48 c-0.18-0.02-0.35-0.05-0.56-0.05c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1C6.54,16.5,6.77,17.5,8.68,17.5z M14.04,10.18 l1.42,5.31c-1.34,0.09-1.47-0.99-3.47-0.99c-0.36,0-0.65,0.04-0.91,0.1l-0.91-3.39L14.04,10.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.67,16.5c-0.96,0-1.13-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8c-1,0-1.1-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8V18 c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8c1.55,0,1.68-0.8,2.66-0.8 c0.96,0,1.13,0.8,2.66,0.8v-1.5c-1,0-1.1-0.8-2.66-0.8C13.77,15.7,13.67,16.5,12.67,16.5z\\\"></path><path d=\\\"M17.44,13.39L15.62,6.6l1.28,0.51l0.56-1.39L8.17,2L2,9.87l1.18,0.93l0.85-1.08l0.8,3c-0.06,0-0.1-0.01-0.16-0.01 c-1.56,0-1.68,0.8-2.67,0.8V15c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8 c1.55,0,1.68-0.8,2.66-0.8c0.96,0,1.13,0.8,2.66,0.8v-1.5C17.78,13.5,17.6,13.46,17.44,13.39z M9.01,12.85L8.18,9.76l3.86-1.04 l1.24,4.65c-1.28,0.56-1.53-0.67-3.28-0.67C9.58,12.7,9.27,12.76,9.01,12.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kitesurfing\": {\n    \"name\": \"kitesurfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M6,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S6,4.1,6,3z M20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1z M22,23v-2h-1 c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75 c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z M21,13.28c0,1.44-2.19,3.62-5.04,5.58 C15.65,18.95,15.33,19,15,19c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.94,0-1.81-0.41-2.49-0.99 c0.46-0.39,0.96-0.78,1.49-1.17L6,13V8c0-1.1,0.9-2,2-2h3c1.38,0,2.63-0.56,3.54-1.46l1.41,1.41C14.68,7.21,12.93,8,11,8H9.6l0,3.5 h2.8l1.69,1.88c1.95-0.84,3.77-1.38,5.06-1.38C19.99,12,21,12.25,21,13.28z M12.2,14.27l-0.7-0.77L9,13.6l0.83,2.01 C10.42,15.23,11.64,14.55,12.2,14.27z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M8.26,3c0,0.97-0.78,1.75-1.75,1.75S4.76,3.97,4.76,3s0.78-1.75,1.75-1.75S8.26,2.03,8.26,3z M16.33,1h-1.41l-2.52,2.51 l0.71,0.71L16.33,1z M15,16.5c-1.53,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5 C16.63,17.5,15.76,17.17,15,16.5z M15.52,10c-1.1,0-2.7,0.49-4.39,1.25L10,10H8V7h1c1.51,0,2.86-0.67,3.78-1.72l-1.07-1.07 C11.07,5,10.09,5.5,9,5.5H6.5C5.67,5.5,5,6.17,5,7v1.46V11l1.5,2.95c-0.42,0.31-0.82,0.63-1.19,0.94C5.9,15.53,6.66,16,7.5,16 c1,0,1.89-0.66,2.5-1.5c0.55,0.76,1.33,1.37,2.22,1.48C14.85,14.3,17,12.3,17,11.02C17,10.2,16.19,10,15.52,10z M7.88,13L7.3,11.5 h2.03l0.39,0.44C9.24,12.19,8.36,12.69,7.88,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sentiment_neutral\": {\n    \"name\": \"sentiment_neutral\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M7,9.5C7,8.67,7.67,8,8.5,8 S10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5z M15,15.5H9V14h6V15.5z M15.5,11c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8 S17,8.67,17,9.5S16.33,11,15.5,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water_drop\": {\n    \"name\": \"water_drop\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M13,18.91 C12.68,18.97,12.35,19,12,19c-2.69,0-4.88-1.94-5-5h1.5c0.08,2.07,1.5,3.5,3.5,3.5c0.35,0,0.69-0.04,1-0.13V18.91z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c0,0-6.5,5.16-6.5,9.5c0,3.59,2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5C16.5,7.16,10,2,10,2z M11,15.37 c-0.32,0.08-0.65,0.13-1,0.13c-2.21,0-4-1.79-4-4h1c0,1.65,1.35,3,3,3c0.35,0,0.69-0.06,1-0.17L11,15.37z\\\"></path>\"\n      }\n    }\n  },\n  \"co2\": {\n    \"name\": \"co2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,9h-5v6h5V9z M13.5,13.5h-2v-3h2V13.5z M8,13v2H3V9h5v2H6.5v-0.5h-2v3h2V13H8z M18.5,15.5v1h3V18H17v-3.5h3v-1h-3V12h4.5 v3.5H18.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,8H9v4h3V8z M11,11h-1V9h1V11z M17,14h-3v-2.5h2V11h-2v-1h3v2.5h-2V13h2V14z M4,12V8h3v1.33H6V9H5v2h1v-0.34h1V12H4z\\\"></path>\"\n      }\n    }\n  },\n  \"sign_language\": {\n    \"name\": \"sign_language\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.49,13l-1.39-2.7L12.49,9L19,15.2V24H4.5v-2H10v-1H3v-2h7v-1H2v-2h8v-1H3.5v-2H12.49z M11.78,7.12 c-0.84,0.4-1.17,0.62-1.63,1.19L6.76,4.74l1.45-1.38L11.78,7.12z M9.64,9.21C9.41,9.76,9.35,10.45,9.44,11H8.58L5.62,7.89 l1.45-1.38L9.64,9.21z M21.98,12.34L22,3.35l-1.9-0.1l-1,2.86L13.3,0l-1.45,1.38l4.09,4.3l-0.73,0.69L9.74,0.64L8.3,2l3.36,3.53 l1.06,1.11l2.65,2.33l5.08,4.83L21.98,12.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.37,10.75L9.32,8.73l1.04-0.98l5.13,4.89V19H4.38v-1.5H8.5v-0.75H3.25v-1.5H8.5V14.5h-6V13h6v-0.75H3.62v-1.5H10.37z M9.84,6.34C9.21,6.64,8.96,6.8,8.61,7.23L6.07,4.55l1.09-1.03L9.84,6.34z M8.23,7.91C8.06,8.32,8.01,8.84,8.08,9.25H7.43 L5.21,6.91L6.3,5.88L8.23,7.91z M7.19,2.46l3.35,3.53l5.79,5.72l1.17-1.1V3.52l-1.42-0.08l-0.75,2.14l-4.64-4.89L9.59,1.72 l3.36,3.54l-0.54,0.52L8.28,1.42L7.19,2.46z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people\": {\n    \"name\": \"people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"outdoor_grill\": {\n    \"name\": \"outdoor_grill\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 c0.29,0,0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5 c0,2.84,1.69,5.27,4.12,6.37l-4.5,6.92l1.68,1.09L7.84,20h6.34C14.6,21.16,15.7,22,17,22z M17,18c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z\\\"></path><path d=\\\"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z\\\"></path><path d=\\\"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z\\\"></path><path d=\\\"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.66,13.88c-0.14-0.21-0.33-0.4-0.54-0.54C14.8,13.13,14.41,13,14,13s-0.8,0.13-1.12,0.34 c-0.21,0.14-0.4,0.33-0.54,0.54c-0.03,0.04-0.04,0.08-0.06,0.12H7.72l1.36-2.09C9.38,11.96,9.69,12,10,12s0.62-0.04,0.92-0.09 l0.78,1.2c0.22-0.26,0.47-0.49,0.76-0.66l-0.54-0.83C13.73,10.86,15,9.08,15,7H5c0,2.08,1.27,3.86,3.08,4.62l-3.27,5.03l0.84,0.55 L7.07,15H12c0,1.1,0.9,2,2,2s2-0.9,2-2C16,14.59,15.87,14.2,15.66,13.88z M14,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C15,15.55,14.55,16,14,16z\\\"></path><path d=\\\"M8.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C8.37,3.92,8.21,3.76,8.34,3h-0.5C7.71,3.67,7.86,4.23,8.37,4.78 C8.51,4.92,8.85,5.18,8.64,6z\\\"></path><path d=\\\"M10.14,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C9.87,3.92,9.71,3.76,9.84,3h-0.5C9.21,3.67,9.36,4.23,9.87,4.78 C10.01,4.92,10.35,5.18,10.14,6z\\\"></path><path d=\\\"M11.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77c-0.25-0.3-0.41-0.47-0.28-1.23h-0.5c-0.13,0.67,0.02,1.23,0.53,1.78 C11.51,4.92,11.85,5.18,11.64,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_flags\": {\n    \"name\": \"emoji_flags\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><path d=\\\"M12,8l-1-1H7V5.85C7.29,5.67,7.5,5.37,7.5,5c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V16h1v-3h3l1,1h4V8 H12z M14,13h-2.59l-1-1H7V8h3.59l1,1H14V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snowboarding\": {\n    \"name\": \"snowboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S14,4.1,14,3z M21.4,20.09c-0.23-0.05-0.46,0.02-0.64,0.17 c-0.69,0.6-1.64,0.88-2.6,0.67L17,20.69l-1-6.19l-3.32-2.67l1.8-2.89C15.63,10.78,17.68,12,20,12v-2c-1.85,0-3.44-1.12-4.13-2.72 l-0.52-1.21C15.16,5.64,14.61,5,13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35L8.5,11.7l1,4.3L6,18.35l-0.47-0.1c-0.96-0.2-1.71-0.85-2.1-1.67 c-0.1-0.21-0.28-0.37-0.51-0.42c-0.43-0.09-0.82,0.2-0.9,0.58C1.98,16.88,2,17.05,2.07,17.2c0.58,1.24,1.71,2.2,3.15,2.51 l12.63,2.69c1.44,0.31,2.86-0.11,3.9-1.01c0.13-0.11,0.21-0.26,0.24-0.41C22.06,20.6,21.83,20.18,21.4,20.09z M8.73,18.93l3.02-2.03 l-0.44-3.32l2.84,2.02l0.75,4.64L8.73,18.93z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M12.75,4.5c0.96,0,1.75-0.78,1.75-1.75C14.5,1.78,13.72,1,12.75,1S11,1.78,11,2.75C11,3.72,11.79,4.5,12.75,4.5z M17.6,16.93c-0.14-0.03-0.29,0-0.41,0.09c-0.55,0.4-1.27,0.58-1.99,0.43L14,17.19l-1-4.89l-2.6-2l1.46-2.35 c0.98,1.53,2.69,2.55,4.64,2.55V9c-1.47,0-2.75-0.79-3.45-1.97L12.3,5.76C12.11,5.43,11.68,5,11,5H6.5l-2,3l1.27,0.9L7.3,6.5h1.93 l-2.22,3.57L8,13.5l-2.75,1.83l-0.66-0.14c-0.72-0.15-1.3-0.61-1.65-1.2c-0.07-0.12-0.19-0.21-0.34-0.24 c-0.29-0.06-0.54,0.13-0.59,0.38c-0.03,0.11,0,0.25,0.06,0.36c0.36,0.63,1.09,1.42,2.31,1.68l8.89,1.89L15,18.42 c1.29,0.27,2.3-0.23,2.79-0.59c0.11-0.08,0.17-0.19,0.2-0.31C18.04,17.27,17.9,16.99,17.6,16.93z M7.3,15.76l2.45-1.62L9.3,11.5 l2.34,1.65l0.76,3.7L7.3,15.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wallet\": {\n    \"name\": \"wallet\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,4H2v16h20V4z M15.75,14.09L4,11.22V10h16v0.53L15.75,14.09z M4,6h16v2H4V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,4H2v12h16V4z M13.01,11.57L3.5,9.24V8.5h13v0.15L13.01,11.57z M16.5,7h-13V5.5h13V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_3\": {\n    \"name\": \"person_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z\\\"></path></g><g><path d=\\\"M10,12c0.17,0,3.83,0,4,0c1.66,0,3-1.34,3-3c0-0.73-0.27-1.4-0.71-1.92C16.42,6.75,16.5,6.38,16.5,6 c0-1.25-0.77-2.32-1.86-2.77C14,2.48,13.06,2,12,2s-2,0.48-2.64,1.23C8.27,3.68,7.5,4.75,7.5,6c0,0.38,0.08,0.75,0.21,1.08 C7.27,7.6,7,8.27,7,9C7,10.66,8.34,12,10,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.4,10c0.14,0,3.06,0,3.2,0c1.33,0,2.4-1.07,2.4-2.4c0-0.59-0.22-1.12-0.57-1.53c0.1-0.27,0.17-0.56,0.17-0.87 c0-1-0.61-1.86-1.49-2.22C11.6,2.39,10.85,2,10,2S8.4,2.39,7.89,2.98C7.01,3.34,6.4,4.2,6.4,5.2c0,0.31,0.06,0.6,0.17,0.87 C6.22,6.48,6,7.01,6,7.6C6,8.93,7.07,10,8.4,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"construction\": {\n    \"name\": \"construction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8.48\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)\\\" width=\\\"3\\\" x=\\\"16.34\\\" y=\\\"12.87\\\"></rect><path d=\\\"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.3383 13.8538)\\\" width=\\\"2\\\" x=\\\"13.05\\\" y=\\\"10.62\\\"></rect><path d=\\\"M14.23,8.98c1.38,0,2.5-1.12,2.5-2.5c0-0.51-0.15-0.98-0.42-1.38l-2.08,2.08l-0.71-0.71l2.08-2.08 c-0.4-0.26-0.87-0.42-1.38-0.42c-1.38,0-2.5,1.12-2.5,2.5c0,0.32,0.07,0.63,0.18,0.91L10.69,8.6L9.64,7.54l0.71-0.71L8.93,5.42 L10.34,4C9.56,3.22,8.29,3.22,7.51,4L4.69,6.83l1.06,1.06l-2.13,0L3.27,8.24l2.83,2.83l0.35-0.35L6.46,8.6l1.06,1.06l0.71-0.71 l1.06,1.06l-4.6,4.6l1.41,1.41l7.22-7.22C13.6,8.91,13.91,8.98,14.23,8.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"elderly\": {\n    \"name\": \"elderly\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z\\\"></path>\"\n      }\n    }\n  },\n  \"face_5\": {\n    \"name\": \"face_5\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-1.12,0.23-2.18,0.65-3.15C4.74,8.94,4.86,9,5,9c0.28,0,0.5-0.22,0.5-0.5c0-0.25-0.19-0.45-0.43-0.49 c0.15-0.26,0.32-0.51,0.49-0.75C5.53,7.34,5.5,7.41,5.5,7.5C5.5,7.78,5.72,8,6,8s0.5-0.22,0.5-0.5C6.5,7.22,6.28,7,6,7 C5.87,7,5.75,7.05,5.66,7.13c0.52-0.68,1.15-1.28,1.86-1.76C7.51,5.41,7.5,5.45,7.5,5.5C7.5,5.78,7.72,6,8,6s0.5-0.22,0.5-0.5 c0-0.24-0.17-0.43-0.4-0.48c0.16-0.09,0.32-0.17,0.49-0.25C8.68,4.91,8.83,5,9,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.03-0.01-0.06-0.02-0.09c0.39-0.13,0.79-0.23,1.21-0.3C10.58,4.21,10.5,4.34,10.5,4.5C10.5,4.78,10.72,5,11,5 s0.5-0.22,0.5-0.5c0-0.21-0.13-0.38-0.3-0.46C11.46,4.01,11.73,4,12,4s0.54,0.01,0.8,0.04c-0.18,0.08-0.3,0.25-0.3,0.46 C12.5,4.78,12.72,5,13,5s0.5-0.22,0.5-0.5c0-0.16-0.08-0.29-0.19-0.38c0.41,0.07,0.82,0.17,1.21,0.3 C14.51,4.44,14.5,4.47,14.5,4.5C14.5,4.78,14.72,5,15,5c0.17,0,0.32-0.09,0.41-0.23c0.17,0.08,0.33,0.16,0.49,0.25 c-0.23,0.05-0.4,0.24-0.4,0.48C15.5,5.78,15.72,6,16,6s0.5-0.22,0.5-0.5c0-0.05-0.01-0.09-0.03-0.13 c0.71,0.48,1.34,1.08,1.86,1.76C18.25,7.05,18.13,7,18,7c-0.28,0-0.5,0.22-0.5,0.5C17.5,7.78,17.72,8,18,8s0.5-0.22,0.5-0.5 c0-0.09-0.03-0.16-0.07-0.23c0.18,0.24,0.34,0.49,0.49,0.75C18.69,8.05,18.5,8.25,18.5,8.5C18.5,8.78,18.72,9,19,9 c0.14,0,0.26-0.06,0.35-0.15C19.77,9.82,20,10.88,20,12C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"16\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.71,0.12-1.39,0.33-2.03C3.88,7.99,3.94,8,4,8c0.28,0,0.5-0.22,0.5-0.5c0-0.2-0.12-0.37-0.29-0.45 C4.3,6.88,4.4,6.71,4.51,6.54C4.53,6.8,4.74,7,5,7c0.28,0,0.5-0.22,0.5-0.5C5.5,6.22,5.28,6,5,6C4.95,6,4.91,6.01,4.87,6.03 c0.22-0.28,0.45-0.54,0.71-0.77C5.53,5.33,5.5,5.41,5.5,5.5C5.5,5.78,5.72,6,6,6s0.5-0.22,0.5-0.5C6.5,5.22,6.28,5,6,5 C5.93,5,5.87,5.01,5.81,5.04c0.22-0.19,0.45-0.35,0.7-0.51C6.52,4.79,6.73,5,7,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.17-0.09-0.31-0.21-0.4c0.15-0.07,0.3-0.13,0.45-0.19C7.81,3.96,7.9,4,8,4c0.21,0,0.39-0.13,0.46-0.31 C8.8,3.61,9.15,3.55,9.51,3.53C9.52,3.79,9.73,4,10,4s0.48-0.21,0.49-0.47c0.36,0.03,0.71,0.08,1.04,0.17C11.61,3.87,11.79,4,12,4 c0.1,0,0.19-0.04,0.26-0.09c0.15,0.06,0.3,0.12,0.45,0.19c-0.13,0.09-0.21,0.23-0.21,0.4C12.5,4.78,12.72,5,13,5 c0.27,0,0.48-0.21,0.49-0.47c0.24,0.16,0.48,0.32,0.7,0.51C14.13,5.01,14.07,5,14,5c-0.28,0-0.5,0.22-0.5,0.5 C13.5,5.78,13.72,6,14,6s0.5-0.22,0.5-0.5c0-0.09-0.03-0.17-0.08-0.25c0.26,0.24,0.49,0.5,0.71,0.77C15.09,6.01,15.05,6,15,6 c-0.28,0-0.5,0.22-0.5,0.5C14.5,6.78,14.72,7,15,7c0.26,0,0.47-0.2,0.49-0.46c0.11,0.17,0.2,0.34,0.29,0.51 C15.62,7.13,15.5,7.3,15.5,7.5C15.5,7.78,15.72,8,16,8c0.06,0,0.12-0.01,0.17-0.03C16.38,8.61,16.5,9.29,16.5,10 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sports_esports\": {\n    \"name\": \"sports_esports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5H4L2,19h4l3-3h6l3,3h4L20,5z M11,11H9v2H8v-2H6v-1h2V8h1v2h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,6H5l-1,9h2l2-2h4l2,2h2L15,6z M9.25,9.75H8V11H7.5V9.75H6.25v-0.5H7.5V8H8v1.25h1.25V9.75z M11.5,9 C11.22,9,11,8.78,11,8.5C11,8.22,11.22,8,11.5,8S12,8.22,12,8.5C12,8.78,11.78,9,11.5,9z M12.5,11c-0.28,0-0.5-0.22-0.5-0.5 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5C13,10.78,12.78,11,12.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mood\": {\n    \"name\": \"mood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_baseball\": {\n    \"name\": \"sports_baseball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3.81,6.28C2.67,7.9,2,9.87,2,12s0.67,4.1,1.81,5.72C6.23,16.95,8,14.68,8,12S6.23,7.05,3.81,6.28z\\\"></path></g><g><path d=\\\"M20.19,6.28C17.77,7.05,16,9.32,16,12s1.77,4.95,4.19,5.72C21.33,16.1,22,14.13,22,12S21.33,7.9,20.19,6.28z\\\"></path></g><g><path d=\\\"M14,12c0-3.28,1.97-6.09,4.79-7.33C17.01,3.02,14.63,2,12,2S6.99,3.02,5.21,4.67C8.03,5.91,10,8.72,10,12 s-1.97,6.09-4.79,7.33C6.99,20.98,9.37,22,12,22s5.01-1.02,6.79-2.67C15.97,18.09,14,15.28,14,12z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15.22,5.34C13.34,6.06,12,7.87,12,10s1.34,3.94,3.22,4.66C16.32,13.42,17,11.79,17,10C17,8.21,16.32,6.58,15.22,5.34z\\\"></path></g><g><path d=\\\"M11,10c0-2.39,1.41-4.45,3.43-5.42C13.23,3.59,11.68,3,10,3S6.77,3.59,5.57,4.58C7.59,5.55,9,7.61,9,10 s-1.41,4.45-3.43,5.42C6.77,16.41,8.32,17,10,17s3.23-0.59,4.43-1.58C12.41,14.45,11,12.39,11,10z\\\"></path></g><g><path d=\\\"M4.78,5.34C3.68,6.58,3,8.21,3,10c0,1.79,0.68,3.42,1.78,4.66C6.66,13.94,8,12.13,8,10S6.66,6.06,4.78,5.34z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"sick\": {\n    \"name\": \"sick\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,9c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C23,8.1,22.1,9,21,9z M17.5,7c0-0.73,0.41-1.71,0.92-2.66 C16.68,2.88,14.44,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5C19.07,10.5,17.5,8.93,17.5,7z M15.62,7.38l1.06,1.06L15.62,9.5l1.06,1.06l-1.06,1.06L13.5,9.5 L15.62,7.38z M7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12l-1.06-1.06L8.38,9.5L7.32,8.44z M15.44,17c-0.69-1.19-1.97-2-3.44-2 s-2.75,0.81-3.44,2H6.88c0.3-0.76,0.76-1.43,1.34-1.99L5.24,13.3c-0.45,0.26-1.01,0.28-1.49,0c-0.72-0.41-0.96-1.33-0.55-2.05 c0.41-0.72,1.33-0.96,2.05-0.55c0.48,0.28,0.74,0.78,0.74,1.29l3.58,2.07c0.73-0.36,1.55-0.56,2.43-0.56c2.33,0,4.32,1.45,5.12,3.5 H15.44z\\\"></path>\"\n      }\n    }\n  },\n  \"nights_stay\": {\n    \"name\": \"nights_stay\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15 1.67.48 2.9 2.02 2.9 3.85 0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z\\\"></path></g><path d=\\\"M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.38 10.05C7.75 6.89 9.03 4.11 9.76 3 6 3.13 3 6.21 3 9.99c0 .4.04.78.1 1.16.29-.09.59-.15.9-.15.86 0 1.68.38 2.24 1.01 1.27.12 2.26 1.19 2.26 2.49 0 .83-.41 1.56-1.04 2.02.79.3 1.65.48 2.55.48 2.45 0 4.6-1.26 5.86-3.17-1.66.16-4.89-.67-6.49-3.78z\\\"></path></g><path d=\\\"M6 13h-.27c-.35-.6-.99-1-1.73-1-1.1 0-2 .9-2 2s.9 2 2 2h2c.83 0 1.5-.67 1.5-1.5S6.83 13 6 13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_account\": {\n    \"name\": \"switch_account\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6H2v16h16v-2H4V6z M6,2v16h16V2H6z M14,5c1.66,0,3,1.34,3,3c0,1.66-1.34,3-3,3s-3-1.34-3-3C11,6.34,12.34,5,14,5z M7.76,16c1.47-1.83,3.71-3,6.24-3s4.77,1.17,6.24,3H7.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"volcano\": {\n    \"name\": \"volcano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"18,8 11,8 9,13 6,13 2,22 22,22\\\"></polygon></g><g><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.9792 14.2929)\\\" width=\\\"4\\\" x=\\\"16.24\\\" y=\\\"3.76\\\"></rect></g><g><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.5061 8.2929)\\\" width=\\\"2\\\" x=\\\"8.76\\\" y=\\\"2.76\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"15,7 9,7 8,11 5,11 2,18 18,18\\\"></polygon></g><g><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"11.25\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.7627 11.8536)\\\" width=\\\"3\\\" x=\\\"13.69\\\" y=\\\"3.05\\\"></rect></g><g><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1067 7.3403)\\\" width=\\\"1.5\\\" x=\\\"8.06\\\" y=\\\"2.3\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"single_bed\": {\n    \"name\": \"single_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10V5H6v5H4v7h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2H20v-7H18z M11,10H8V7h3V10z M16,10h-3V7h3V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,8V5H5v3H4v5h1l0.75,2h0.5L7,13h6l0.75,2h0.5L15,13h1V8H15z M6,8V6h3.5v2H6z M10.5,8V6H14v2H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"public_off\": {\n    \"name\": \"public_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"party_mode\": {\n    \"name\": \"party_mode\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 7c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1 0-2.76 2.24-5 5-5zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1 0 2.76-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"person\": {\n    \"name\": \"person\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"ice_skating\": {\n    \"name\": \"ice_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M21,17c0,1.66-1.34,3-3,3h-2v-2h3l-0.01-6l-5.71-1.43C12.4,10.35,11.7,9.76,11.32,9H8V8h3.02L11,7H8V6h3V3H3v15h3v2H2v2h16 c2.76,0,5-2.24,5-5H21z M14,20H8v-2h6V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.5,14c0,1.38-1.12,2.5-2.5,2.5h-1.5V15H16v-4.86l-5.18-1.57c-0.33-0.1-0.6-0.3-0.79-0.57H7V7h2.75V6H7V5h2.75V2.5H3V15 h2.5v1.5H2V18h13c2.21,0,4-1.79,4-4H17.5z M12,16.5H7V15h5V16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_golf\": {\n    \"name\": \"sports_golf\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7S5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5s-2.24,5-5,5 s-5-2.24-5-5S9.24,4,12,4z\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"14\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3C7.24,3,5,5.24,5,8s2.24,5,5,5s5-2.24,5-5S12.76,3,10,3z M10,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.21,12.21,12,10,12z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><path d=\\\"M7,15h1.5c0.55,0,1,0.45,1,1v1h1v-1c0-0.55,0.45-1,1-1H13v-1H7V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"handshake\": {\n    \"name\": \"handshake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.59,5.95l-7.05,7.04L0.7,10.3l8.55-8.55l7.95,7.95l-1.42,1.42L10.59,5.95z M23.24,10.24l-8.49-8.49l-2.06,2.06l5.9,5.88 l-2.83,2.83l-5.17-5.17l-6.27,6.27l1.42,1.41l5.32-5.32l0.71,0.71l-5.32,5.32l1.42,1.41l5.32-5.32l0.71,0.71l-5.32,5.32l1.41,1.41 l5.32-5.32l0.71,0.71L10.68,20l1.41,1.41L23.24,10.24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M19.74,8.05l-6.8-6.8l-2.4,2.4l4.72,4.71l-2.26,2.26L8.88,6.49l-5.12,5.12l1.13,1.13l4.36-4.35l0.57,0.57l-4.36,4.35 l1.13,1.13l4.36-4.35l0.57,0.57L7.16,15l1.13,1.13l4.36-4.35l0.57,0.57L8.85,16.7l1.13,1.13L19.74,8.05z M7.03,1.26L0.26,8.03 L3.23,11l5.64-5.64l4.14,4.14l1.14-1.14L7.03,1.26z\\\"></path></g>\"\n      }\n    }\n  },\n  \"group_off\": {\n    \"name\": \"group_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8c0-1.42-0.5-2.73-1.33-3.76C14.09,4.1,14.53,4,15,4c2.21,0,4,1.79,4,4s-1.79,4-4,4c-0.06,0-0.12,0-0.18,0l-0.77-0.77 C14.65,10.29,15,9.18,15,8z M22.83,20H23v-3c0-2.18-3.58-3.47-6.34-3.87c1.1,0.75,1.95,1.71,2.23,2.94L22.83,20z M7.24,4.41 C7.77,4.15,8.37,4,9,4c2.21,0,4,1.79,4,4c0,0.63-0.15,1.23-0.41,1.76L7.24,4.41z M9.17,12C9.11,12,9.06,12,9,12c-2.21,0-4-1.79-4-4 c0-0.06,0-0.11,0-0.17L0.69,3.51L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0-2.66,5.33-4,8-4c0.37,0,0.8,0.03,1.25,0.08 L9.17,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.61,8.49C10.86,8.05,11,7.54,11,7c0-1.66-1.34-3-3-3C7.46,4,6.95,4.14,6.51,4.39L10.61,8.49z M11.68,9.56 C12.19,8.83,12.5,7.95,12.5,7c0-1.13-0.43-2.15-1.12-2.94C11.58,4.02,11.79,4,12,4c1.66,0,3,1.34,3,3c0,1.62-1.28,2.94-2.88,3 L11.68,9.56z M15.41,13.29c-0.2-0.83-0.69-1.57-1.39-2.06c1.08,0.22,2.1,0.6,3.02,1.14c0.6,0.36,0.97,1.02,0.97,1.72v1.79 L15.41,13.29z M5,7.12L1.16,3.28l1.06-1.06l15.56,15.56l-1.06,1.06L13.88,16H2v-1.91c0-0.7,0.36-1.36,0.97-1.72 C4.44,11.5,6.16,11,8,11c0.31,0,0.62,0.01,0.92,0.04l0,0L7.88,10C6.32,9.93,5.07,8.68,5,7.12z\\\"></path>\"\n      }\n    }\n  },\n  \"face_6\": {\n    \"name\": \"face_6\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c5.52,0,10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8h2.62l2-4h6.76l2,4 H20C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.17,0.01-0.33,0.03-0.5H5.4l2-3h5.2l2,3h1.88c0.01,0.17,0.03,0.33,0.03,0.5C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"add_moderator\": {\n    \"name\": \"add_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,10c1.08,0,2.09,0.25,3,0.68V5l-8-3L4,5v6.09c0,5.05,3.41,9.76,8,10.91c0.03-0.01,0.05-0.02,0.08-0.02 C10.8,20.71,10,18.95,10,17C10,13.13,13.13,10,17,10z\\\"></path><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"catching_pokemon\": {\n    \"name\": \"catching_pokemon\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,12c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5C13.38,9.5,14.5,10.62,14.5,12z M22,12 c0,5.52-4.48,10-10,10C6.48,22,2,17.52,2,12S6.48,2,12,2C17.52,2,22,6.48,22,12z M20,12h-4c0-2.21-1.79-4-4-4c-2.21,0-4,1.79-4,4H4 c0,4.41,3.59,8,8,8C16.41,20,20,16.41,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.25,10c0,1.24-1.01,2.25-2.25,2.25S7.75,11.24,7.75,10S8.76,7.75,10,7.75S12.25,8.76,12.25,10z M18,10c0,4.42-3.58,8-8,8 s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M16.5,10h-3.25c0-1.79-1.46-3.25-3.25-3.25S6.75,8.21,6.75,10H3.5c0,3.58,2.92,6.5,6.5,6.5 S16.5,13.58,16.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_moderator\": {\n    \"name\": \"remove_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,11.09V5l-8-3L6.78,3.96l12.09,12.09C19.59,14.52,20,12.83,20,11.09z M2.81,2.81L1.39,4.22L4,6.83v4.26 c0,5.05,3.41,9.76,8,10.91c1.72-0.43,3.28-1.36,4.55-2.62l3.23,3.23l1.41-1.41L2.81,2.81z\\\"></path></g>\"\n      }\n    }\n  },\n  \"health_and_safety\": {\n    \"name\": \"health_and_safety\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13z M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2 z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_people\": {\n    \"name\": \"emoji_people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><circle cx=\\\"10\\\" cy=\\\"5\\\" r=\\\"1\\\"></circle><path d=\\\"M12.29,7.29C12.11,7.11,11.85,7,11.59,7H8.5C7.12,7,6,5.88,6,4.5V4H5v0.5C5,6.26,6.31,7.75,8,8v4v4h1v-4h2v4h1v-4V8.41 l2.83,2.83l0.71-0.71L12.29,7.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"whatsapp\": {\n    \"name\": \"whatsapp\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19.05,4.91C17.18,3.03,14.69,2,12.04,2c-5.46,0-9.91,4.45-9.91,9.91c0,1.75,0.46,3.45,1.32,4.95L2.05,22l5.25-1.38 c1.45,0.79,3.08,1.21,4.74,1.21h0c0,0,0,0,0,0c5.46,0,9.91-4.45,9.91-9.91C21.95,9.27,20.92,6.78,19.05,4.91z M12.04,20.15 L12.04,20.15c-1.48,0-2.93-0.4-4.2-1.15l-0.3-0.18l-3.12,0.82l0.83-3.04l-0.2-0.31c-0.82-1.31-1.26-2.83-1.26-4.38 c0-4.54,3.7-8.24,8.24-8.24c2.2,0,4.27,0.86,5.82,2.42c1.56,1.56,2.41,3.63,2.41,5.83C20.28,16.46,16.58,20.15,12.04,20.15z M16.56,13.99c-0.25-0.12-1.47-0.72-1.69-0.81c-0.23-0.08-0.39-0.12-0.56,0.12c-0.17,0.25-0.64,0.81-0.78,0.97 c-0.14,0.17-0.29,0.19-0.54,0.06c-0.25-0.12-1.05-0.39-1.99-1.23c-0.74-0.66-1.23-1.47-1.38-1.72c-0.14-0.25-0.02-0.38,0.11-0.51 c0.11-0.11,0.25-0.29,0.37-0.43c0.12-0.14,0.17-0.25,0.25-0.41c0.08-0.17,0.04-0.31-0.02-0.43c-0.06-0.12-0.56-1.34-0.76-1.84 c-0.2-0.48-0.41-0.42-0.56-0.43C8.86,7.33,8.7,7.33,8.53,7.33c-0.17,0-0.43,0.06-0.66,0.31C7.65,7.89,7.01,8.49,7.01,9.71 c0,1.22,0.89,2.4,1.01,2.56c0.12,0.17,1.75,2.67,4.23,3.74c0.59,0.26,1.05,0.41,1.41,0.52c0.59,0.19,1.13,0.16,1.56,0.1 c0.48-0.07,1.47-0.6,1.67-1.18c0.21-0.58,0.21-1.07,0.14-1.18S16.81,14.11,16.56,13.99z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.69,4.23c-1.51-1.51-3.51-2.34-5.65-2.34c-4.4,0-7.98,3.58-7.98,7.98c0,1.41,0.37,2.78,1.07,3.99L2,18l4.23-1.11 c1.17,0.64,2.48,0.97,3.81,0.97h0c4.4,0,7.98-3.58,7.98-7.98C18.03,7.75,17.2,5.74,15.69,4.23z M10.05,16.51L10.05,16.51 c-1.19,0-2.36-0.32-3.38-0.92l-0.24-0.14L3.92,16.1l0.67-2.45L4.43,13.4c-0.66-1.06-1.01-2.28-1.01-3.53 c0-3.66,2.98-6.63,6.64-6.63c1.77,0,3.44,0.69,4.69,1.95c1.25,1.25,1.94,2.92,1.94,4.69C16.68,13.54,13.71,16.51,10.05,16.51z M13.69,11.55c-0.2-0.1-1.18-0.58-1.36-0.65c-0.18-0.07-0.32-0.1-0.45,0.1c-0.13,0.2-0.52,0.65-0.63,0.78 c-0.12,0.13-0.23,0.15-0.43,0.05c-0.2-0.1-0.84-0.31-1.6-0.99C8.62,10.31,8.22,9.66,8.1,9.46S8.09,9.15,8.19,9.05 c0.09-0.09,0.2-0.23,0.3-0.35s0.13-0.2,0.2-0.33c0.07-0.13,0.03-0.25-0.02-0.35c-0.05-0.1-0.45-1.08-0.61-1.48 C7.89,6.15,7.73,6.2,7.61,6.19C7.49,6.19,7.36,6.19,7.22,6.19c-0.13,0-0.35,0.05-0.53,0.25c-0.18,0.2-0.7,0.68-0.7,1.66 c0,0.98,0.71,1.93,0.81,2.06c0.1,0.13,1.41,2.15,3.41,3.01c0.48,0.21,0.85,0.33,1.14,0.42c0.48,0.15,0.91,0.13,1.26,0.08 c0.38-0.06,1.18-0.48,1.35-0.95c0.17-0.47,0.17-0.87,0.12-0.95C14.02,11.69,13.89,11.64,13.69,11.55z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"person_add_alt\": {\n    \"name\": \"person_add_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.39,14.56C13.71,13.7,11.53,13,9,13c-2.53,0-4.71,0.7-6.39,1.56C1.61,15.07,1,16.1,1,17.22V20h16v-2.78 C17,16.1,16.39,15.07,15.39,14.56z M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M20,9V6h-2v3h-3v2 h3v3h2v-3h3V9H20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,12.37C11.56,11.5,9.84,11,8,11s-3.56,0.5-5.03,1.37C2.36,12.72,2,13.39,2,14.09V16h12v-1.91 C14,13.39,13.64,12.72,13.03,12.37z\\\"></path><polygon points=\\\"16.25,7.75 16.25,6 14.75,6 14.75,7.75 13,7.75 13,9.25 14.75,9.25 14.75,11 16.25,11 16.25,9.25 18,9.25 18,7.75\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pix\": {\n    \"name\": \"pix\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.45,16.52l-3.01-3.01c-0.11-0.11-0.24-0.13-0.31-0.13s-0.2,0.02-0.31,0.13L8.8,16.53c-0.34,0.34-0.87,0.89-2.64,0.89 l3.71,3.7c1.17,1.17,3.07,1.17,4.24,0l3.72-3.71C16.92,17.41,16.16,17.23,15.45,16.52z\\\"></path><path d=\\\"M8.8,7.47l3.02,3.02c0.08,0.08,0.2,0.13,0.31,0.13s0.23-0.05,0.31-0.13l2.99-2.99c0.71-0.74,1.52-0.91,2.43-0.91 l-3.72-3.71c-1.17-1.17-3.07-1.17-4.24,0l-3.71,3.7C7.95,6.58,8.49,7.16,8.8,7.47z\\\"></path><path d=\\\"M21.11,9.85l-2.25-2.26H17.6c-0.54,0-1.08,0.22-1.45,0.61l-3,3c-0.28,0.28-0.65,0.42-1.02,0.42 c-0.36,0-0.74-0.15-1.02-0.42L8.09,8.17c-0.38-0.38-0.9-0.6-1.45-0.6H5.17l-2.29,2.3c-1.17,1.17-1.17,3.07,0,4.24l2.29,2.3h1.48 c0.54,0,1.06-0.22,1.45-0.6l3.02-3.02c0.28-0.28,0.65-0.42,1.02-0.42c0.37,0,0.74,0.14,1.02,0.42l3.01,3.01 c0.38,0.38,0.9,0.6,1.45,0.6h1.26l2.25-2.26C22.3,12.96,22.3,11.04,21.11,9.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.79,13.58l-2.41-2.41c-0.1-0.1-0.22-0.12-0.28-0.12c-0.06,0-0.18,0.02-0.28,0.12L7.4,13.59 c-0.71,0.71-1.45,0.7-2.13,0.7l3.02,3.01c0.94,0.94,2.46,0.94,3.39,0l3.03-3.02C14,14.28,13.38,14.17,12.79,13.58z\\\"></path><path d=\\\"M7.4,6.41l2.42,2.42C9.9,8.9,10,8.94,10.1,8.94s0.21-0.04,0.28-0.12l2.39-2.39c0.58-0.59,1.21-0.71,1.96-0.71L11.71,2.7 c-0.94-0.94-2.46-0.94-3.39,0L5.29,5.71C6.02,5.71,6.7,5.71,7.4,6.41z\\\"></path><path d=\\\"M17.29,8.28l-1.8-1.81h-1.01c-0.44,0-0.86,0.17-1.16,0.48l-2.4,2.4c-0.22,0.22-0.52,0.34-0.81,0.34 c-0.29,0-0.59-0.12-0.81-0.34L6.87,6.94C6.57,6.63,6.15,6.46,5.72,6.46H4.53L2.7,8.3c-0.94,0.94-0.94,2.46,0,3.39l1.83,1.84h1.18 c0.43,0,0.85-0.17,1.16-0.48l2.42-2.42c0.22-0.22,0.52-0.34,0.81-0.34s0.59,0.11,0.81,0.34l2.41,2.41 c0.08,0.08,0.16,0.15,0.25,0.2c0.27,0.18,0.58,0.28,0.91,0.28h1.01l1.8-1.81c0.36-0.36,0.58-0.8,0.67-1.25 C17.99,10.31,18,10.16,18,10C18,9.38,17.76,8.76,17.29,8.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"scale\": {\n    \"name\": \"scale\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,11V8c4.56-0.58,8-3.1,8-6H2c0,2.9,3.44,5.42,8,6l0,3c-3.68,0.73-8,3.61-8,11h6v-2H4.13c0.93-6.83,6.65-7.2,7.87-7.2 s6.94,0.37,7.87,7.2H16v2h6C22,14.61,17.68,11.73,14,11z M12,22c-1.1,0-2-0.9-2-2c0-0.55,0.22-1.05,0.59-1.41 C11.39,17.79,16,16,16,16s-1.79,4.61-2.59,5.41C13.05,21.78,12.55,22,12,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,18c-0.83,0-1.5-0.67-1.5-1.5c0-0.41,0.17-0.79,0.44-1.06l0,0C9.54,14.84,13,13.5,13,13.5s-1.34,3.46-1.94,4.06 C10.79,17.83,10.41,18,10,18z M18,18h-5v-1.5l3.4,0c-0.77-5.48-5.79-5.65-6.4-5.65c-0.61,0-5.63,0.17-6.4,5.65l3.4,0V18H2 c0-5.88,3.72-7.97,6.5-8.5V7C4.8,6.55,2,4.49,2,2h16c0,2.49-2.8,4.55-6.5,5v2.5C14.28,10.03,18,12.12,18,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_reaction\": {\n    \"name\": \"add_reaction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,9V7h-2V2.84C14.77,2.3,13.42,2,11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12 c0-1.05-0.17-2.05-0.47-3H18z M15.5,8C16.33,8,17,8.67,17,9.5S16.33,11,15.5,11S14,10.33,14,9.5S14.67,8,15.5,8z M8.5,8 C9.33,8,10,8.67,10,9.5S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,17.5c-2.33,0-4.31-1.46-5.11-3.5h10.22 C16.31,16.04,14.33,17.5,12,17.5z M22,3h2v2h-2v2h-2V5h-2V3h2V1h2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"18_up_rating\": {\n    \"name\": \"18_up_rating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"12.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><path d=\\\"M21,3H3v18h18V3z M10,15H8.5v-4.5H7V9h3V15z M16,14c0,0.55-0.45,1-1,1h-2.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H15 c0.55,0,1,0.45,1,1V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\".75\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"10.25\\\"></rect><rect height=\\\".75\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"9\\\"></rect><path d=\\\"M17,3H3v14h14V3z M9,12H8V9H7V8h2V12z M13,11.5c0,0.28-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5v-3 C10,8.22,10.22,8,10.5,8h2C12.78,8,13,8.22,13,8.5V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_cricket\": {\n    \"name\": \"sports_cricket\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15.05,12.81L6.56,4.32c-0.39-0.39-1.02-0.39-1.41,0L2.32,7.15c-0.39,0.39-0.39,1.02,0,1.41l8.49,8.49 c0.39,0.39,1.02,0.39,1.41,0l2.83-2.83C15.44,13.83,15.44,13.2,15.05,12.81z\\\"></path><rect height=\\\"6\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)\\\" width=\\\"2\\\" x=\\\"16.17\\\" y=\\\"16.17\\\"></rect></g><circle cx=\\\"18.5\\\" cy=\\\"5.5\\\" r=\\\"3.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"14.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M12.34,11.51L5.97,5.15c-0.2-0.2-0.51-0.2-0.71,0L3.15,7.26c-0.2,0.2-0.2,0.51,0,0.71l6.36,6.36c0.2,0.2,0.51,0.2,0.71,0 l2.12-2.12C12.53,12.02,12.53,11.71,12.34,11.51z\\\"></path><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.9645 13.9853)\\\" width=\\\"1\\\" x=\\\"12.9\\\" y=\\\"13.4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"facebook\": {\n    \"name\": \"facebook\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_martial_arts\": {\n    \"name\": \"sports_martial_arts\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"19.8,2 11.6,8.7 10.39,7.66 13.99,5.58 9.41,1 8,2.41 10.74,5.15 5,8.46 3.81,12.75 6.27,17 8,16 5.97,12.48 6.32,11.18 9.5,13 10,22 12,22 12.5,12 21,3.4\\\"></polygon><circle cx=\\\"5\\\" cy=\\\"5\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"4.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><polygon points=\\\"16.79,2 9.96,7.54 8.27,6.22 11.01,4.64 7.37,1 6.67,1.71 9.38,4.42 4.25,7.38 3.31,10.78 5.13,14 6,13.51 4.39,10.65 4.88,8.87 8.5,11 9,18 10,18 10.5,10 17.5,2.71\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_motorsports\": {\n    \"name\": \"sports_motorsports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,11.39c0-0.65-0.39-1.23-0.98-1.48L5.44,7.55c-1.48,1.68-2.32,3.7-2.8,5.45h7.75C11.28,13,12,12.28,12,11.39z\\\"></path><path d=\\\"M21.96,11.22c-0.41-4.41-4.56-7.49-8.98-7.2c-2.51,0.16-4.44,0.94-5.93,2.04l4.74,2.01c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H2.21C2,16.31,2,17.2,2,17.2V20h12C18.67,20,22.41,15.99,21.96,11.22z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.53,11.53c0.39-0.39,0.55-0.92,0.44-1.45C10.86,9.54,10.51,9.11,10,8.91L5.8,7.18C4.34,8.64,3.64,10.56,3.31,12h6.08 C9.82,12,10.22,11.83,10.53,11.53z\\\"></path><path d=\\\"M16,7.15c-0.64-1.04-2.17-1.99-3.39-2.1C9.96,4.8,8.04,5.43,6.65,6.45l3.73,1.54c1.72,0.71,2.17,2.94,0.85,4.25 C10.75,12.73,10.08,13,9.39,13H3.11C3.01,13.65,3,14.07,3,14.07V16h8.5C15.61,16,18.67,11.49,16,7.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"diversity_1\": {\n    \"name\": \"diversity_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"4\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M1.22,17.58C0.48,17.9,0,18.62,0,19.43V21l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,17.04,4.39,17,4,17 C3.01,17,2.07,17.21,1.22,17.58z\\\"></path><circle cx=\\\"20\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M22.78,17.58C21.93,17.21,20.99,17,20,17c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V21l4.5,0v-1.57 C24,18.62,23.52,17.9,22.78,17.58z\\\"></path><path d=\\\"M16.24,16.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,17.13,6,18.21,6,19.39V21h12v-1.61 C18,18.21,17.32,17.13,16.24,16.65z\\\"></path><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3c0-1.66-1.34-3-3-3S9,10.34,9,12z\\\"></path><path d=\\\"M2.48,10.86C2.17,10.1,2,9.36,2,8.6C2,6.02,4.02,4,6.6,4c2.68,0,3.82,1.74,5.4,3.59C13.57,5.76,14.7,4,17.4,4 C19.98,4,22,6.02,22,8.6c0,0.76-0.17,1.5-0.48,2.26c0.65,0.31,1.18,0.82,1.53,1.44C23.65,11.1,24,9.88,24,8.6 C24,4.9,21.1,2,17.4,2c-2.09,0-4.09,0.97-5.4,2.51C10.69,2.97,8.69,2,6.6,2C2.9,2,0,4.9,0,8.6c0,1.28,0.35,2.5,0.96,3.7 C1.31,11.68,1.84,11.17,2.48,10.86z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"3.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M13.54,14.25c-0.98-0.43-2.18-0.75-3.54-0.75c-1.36,0-2.56,0.32-3.54,0.75C5.57,14.65,5,15.55,5,16.53V18h10v-1.47 C15,15.55,14.43,14.65,13.54,14.25z\\\"></path><path d=\\\"M19.15,15.61C18.44,15.27,17.54,15,16.5,15c-0.29,0-0.56,0.02-0.82,0.06c0.21,0.45,0.32,0.95,0.32,1.47V18h4v-1.04 C20,16.39,19.67,15.86,19.15,15.61z\\\"></path><path d=\\\"M0.85,15.61C0.33,15.86,0,16.39,0,16.96V18h4v-1.47c0-0.52,0.11-1.02,0.32-1.47C4.06,15.02,3.79,15,3.5,15 C2.46,15,1.56,15.27,0.85,15.61z\\\"></path><path d=\\\"M7.5,10.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C12.5,9.12,11.38,8,10,8S7.5,9.12,7.5,10.5z\\\"></path><path d=\\\"M2.33,10.3C1.79,9.36,1.5,8.44,1.5,7.5c0-2.24,1.76-4,4-4c2.53,0,3.77,2.04,4.5,2.9c0.62-0.73,1.91-2.9,4.5-2.9 c2.24,0,4,1.76,4,4c0,0.94-0.29,1.86-0.83,2.8c0.46,0.25,0.84,0.63,1.07,1.1C19.54,10.12,20,8.86,20,7.5C20,4.42,17.58,2,14.5,2 c-1.74,0-3.41,0.81-4.5,2.09C8.91,2.81,7.24,2,5.5,2C2.42,2,0,4.42,0,7.5c0,1.36,0.46,2.62,1.26,3.9 C1.5,10.93,1.87,10.55,2.33,10.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cyclone\": {\n    \"name\": \"cyclone\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4C16,9.79,14.21,8,12,8z M12,14c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M22,7.47V5.35C20.05,4.77,16.56,4,12,4C9.85,4,7.89,4.86,6.46,6.24C6.59,5.39,6.86,3.84,7.47,2H5.35 C4.77,3.95,4,7.44,4,12c0,2.15,0.86,4.11,2.24,5.54c-0.85-0.14-2.4-0.4-4.24-1.01v2.12C3.95,19.23,7.44,20,12,20 c2.15,0,4.11-0.86,5.54-2.24c-0.14,0.85-0.4,2.4-1.01,4.24h2.12C19.23,20.05,20,16.56,20,12c0-2.15-0.86-4.11-2.24-5.54 C18.61,6.59,20.16,6.86,22,7.47z M12,18c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,13.5c1.93,0,3.5-1.57,3.5-3.5S11.93,6.5,10,6.5S6.5,8.07,6.5,10S8.07,13.5,10,13.5z M10,8c1.1,0,2,0.9,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,8.9,8.9,8,10,8z\\\"></path><path d=\\\"M18,5.68V4.09C14.49,3.06,11.23,3,10,3C8,3,6.2,3.84,4.93,5.18C4.93,5.15,5.15,3.71,5.68,2H4.09C3.06,5.51,3,8.77,3,10 c0,2,0.84,3.8,2.18,5.07C5.15,15.07,3.71,14.85,2,14.32v1.59C5.51,16.94,8.77,17,10,17c2,0,3.8-0.84,5.07-2.18 c-0.01,0.03-0.23,1.48-0.76,3.18h1.59c1.03-3.51,1.09-6.77,1.09-8c0-2-0.84-3.8-2.18-5.07C14.85,4.93,16.3,5.15,18,5.68z M15.5,10 c0,3.03-2.47,5.5-5.5,5.5S4.5,13.03,4.5,10S6.97,4.5,10,4.5S15.5,6.97,15.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"deck\": {\n    \"name\": \"deck\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"22,9 12,2 2,9 11,9 11,22 13,22 13,9\\\"></polygon><polygon points=\\\"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16\\\"></polygon><polygon points=\\\"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"17,8 10,3 3,8 9.5,8 9.5,17 10.5,17 10.5,8\\\"></polygon><polygon points=\\\"4.92,13 4.37,10 3.38,10.18 4,13.5 4,17 5,17 5,14 7,14 7,17 8,17 8,13\\\"></polygon><polygon points=\\\"15.63,10 15.08,13 12,13 12,17 13,17 13,14 15,14 15,17 16,17 16,13.5 16.62,10.18\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"history_edu\": {\n    \"name\": \"history_edu\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7,4v0.73c-0.68-0.32-1.4-0.5-2.13-0.5c-1.28,0-2.56,0.49-3.54,1.46l2.12,2.12h1.41L4.76,9.13 c0.62,0.62,1.42,0.92,2.23,0.92c0,0,0.01,0,0.01,0V12H5v2.5C5,15.33,5.67,16,6.5,16H14c1.1,0,2-0.9,2-2V4H7z M6.99,9.05 c-0.43,0-0.84-0.12-1.19-0.36l0.15-1.87H3.87L2.84,5.79c0.61-0.36,1.31-0.55,2.03-0.55c1.07,0,2.07,0.42,2.83,1.17l1.41,1.41 l-0.6,0.6C8.1,8.82,7.56,9.05,6.99,9.05z M15,14c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2H8V9.87c0.44-0.15,0.86-0.39,1.22-0.74l0.6-0.6 L12.29,11H13v-0.71L8.4,5.7C8.28,5.57,8.14,5.48,8,5.37V5h7V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_transportation\": {\n    \"name\": \"emoji_transportation\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z\\\"></path><polygon points=\\\"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4\\\"></polygon><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><polygon points=\\\"8,5 11,5 11,8 12,8 12,4 7,4 7,7 4,7 4,16 5,16 5,8 8,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"13\\\"></rect><path d=\\\"M15,9H9l-1,3v2v1v1h1v-1h6v1h1v-1v-1v-2L15,9z M9.72,10h4.56l0.67,2H9.05L9.72,10z M9.5,14C9.22,14,9,13.78,9,13.5 S9.22,13,9.5,13s0.5,0.22,0.5,0.5S9.78,14,9.5,14z M14.5,14c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5 S14.78,14,14.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"masks\": {\n    \"name\": \"masks\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1s1,0.45,1,1V9z M10.69,10.48 c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62 c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10C11.51,10,11.16,10.2,10.69,10.48z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_3\": {\n    \"name\": \"diversity_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.32,13.01c0.96,0.02,1.85,0.5,2.45,1.34C9.5,15.38,10.71,16,12,16c1.29,0,2.5-0.62,3.23-1.66 c0.6-0.84,1.49-1.32,2.45-1.34C16.96,11.78,14.08,11,12,11C9.93,11,7.04,11.78,6.32,13.01z\\\"></path><path d=\\\"M4,13L4,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C1,11.66,2.34,13,4,13z\\\"></path><path d=\\\"M20,13L20,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C17,11.66,18.34,13,20,13z\\\"></path><path d=\\\"M12,10c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,5.34,9,7C9,8.66,10.34,10,12,10z\\\"></path><path d=\\\"M21,14h-3.27c-0.77,0-1.35,0.45-1.68,0.92C16.01,14.98,14.69,17,12,17c-1.43,0-3.03-0.64-4.05-2.08 C7.56,14.37,6.95,14,6.27,14H3c-1.1,0-2,0.9-2,2v4h7v-2.26c1.15,0.8,2.54,1.26,4,1.26s2.85-0.46,4-1.26V20h7v-4 C23,14.9,22.1,14,21,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M7.13,11.23c0.65,0.95,1.73,1.52,2.87,1.52s2.22-0.57,2.87-1.52c0.36-0.53,0.93-0.86,1.56-0.94C13.91,9.78,12.01,9,10,9 c-2.02,0-3.91,0.79-4.43,1.29C6.19,10.37,6.76,10.7,7.13,11.23z\\\"></path></g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"3.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.5,11h-2.78c-0.49,0-0.95,0.25-1.23,0.65c-0.81,1.17-2.13,1.85-3.49,1.85c-0.31,0-2.25-0.03-3.49-1.85 C6.27,11.3,5.84,11,5.28,11H2.5C1.67,11,1,11.67,1,12.5V16h6v-1.87C7.89,14.68,8.92,15,10,15s2.11-0.32,3-0.87V16h6v-3.5 C19,11.67,18.33,11,17.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology\": {\n    \"name\": \"psychology\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,8.57c-0.79,0-1.43,0.64-1.43,1.43s0.64,1.43,1.43,1.43s1.43-0.64,1.43-1.43S13.79,8.57,13,8.57z\\\"></path><path d=\\\"M13,3C9.25,3,6.2,5.94,6.02,9.64L4.1,12.2C3.85,12.53,4.09,13,4.5,13H6v3c0,1.1,0.9,2,2,2h1v3h7v-4.68 c2.36-1.12,4-3.53,4-6.32C20,6.13,16.87,3,13,3z M16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66c0.08,0.06,0.1,0.16,0.05,0.25 l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6 c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39 c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95 c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06 C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09 l0.8,1.38c0.05,0.09,0.03,0.2-0.05,0.26l-0.85,0.66C15.99,9.73,16,9.86,16,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.5,4C8.22,4,6.35,5.71,6.06,7.91l-1.54,2.31C4.3,10.55,4.53,11,4.93,11H6v2c0,0.55,0.45,1,1,1h1v2h5v-3.76 c1.21-0.81,2-2.18,2-3.74C15,6.01,12.99,4,10.5,4z M12.33,8.67c0,0.09-0.01,0.18-0.02,0.26l0.56,0.44 c0.05,0.04,0.07,0.11,0.03,0.17l-0.53,0.92c-0.03,0.06-0.1,0.08-0.16,0.06l-0.66-0.27c-0.14,0.1-0.29,0.19-0.45,0.26L11,11.22 c-0.01,0.07-0.06,0.11-0.13,0.11H9.8c-0.07,0-0.12-0.05-0.13-0.11l-0.1-0.71c-0.16-0.07-0.31-0.15-0.45-0.26l-0.66,0.27 c-0.06,0.02-0.13,0-0.16-0.06L7.76,9.54C7.73,9.48,7.74,9.41,7.79,9.37l0.56-0.44C8.34,8.84,8.33,8.75,8.33,8.67 s0.01-0.18,0.02-0.26L7.79,7.97C7.74,7.93,7.73,7.86,7.76,7.8l0.53-0.92c0.03-0.06,0.1-0.08,0.16-0.06l0.66,0.27 c0.14-0.1,0.29-0.19,0.45-0.26l0.1-0.71C9.68,6.05,9.73,6,9.8,6h1.07c0.07,0,0.12,0.05,0.13,0.11l0.1,0.71 c0.16,0.07,0.31,0.15,0.45,0.26l0.66-0.27c0.06-0.02,0.13,0,0.16,0.06l0.53,0.92c0.03,0.06,0.02,0.13-0.03,0.17l-0.56,0.44 C12.33,8.49,12.33,8.58,12.33,8.67z\\\"></path><path d=\\\"M10.33,7.71c-0.52,0-0.95,0.43-0.95,0.95c0,0.52,0.43,0.95,0.95,0.95s0.95-0.43,0.95-0.95 C11.29,8.14,10.86,7.71,10.33,7.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology_alt\": {\n    \"name\": \"psychology_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.94,9.06C19.5,5.73,16.57,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48C3.74,13.14,4.22,14,5,14h1l0,4h3v3h7l0-4.68 C18.62,15.07,20.35,12.24,19.94,9.06z M12.5,14c-0.41,0-0.74-0.33-0.74-0.74c0-0.41,0.33-0.73,0.74-0.73 c0.41,0,0.73,0.32,0.73,0.73C13.23,13.67,12.92,14,12.5,14z M14.26,9.68c-0.44,0.65-0.86,0.85-1.09,1.27 c-0.09,0.17-0.13,0.28-0.13,0.82h-1.06c0-0.29-0.04-0.75,0.18-1.16c0.28-0.51,0.83-0.81,1.14-1.26c0.33-0.47,0.15-1.36-0.8-1.36 c-0.62,0-0.92,0.47-1.05,0.86l-0.96-0.4C10.76,7.67,11.46,7,12.5,7c0.86,0,1.45,0.39,1.75,0.88C14.51,8.31,14.66,9.1,14.26,9.68z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.87,3.01C8.08,2.83,5.71,4.72,5.13,7.3L3.2,10.2C2.68,10.97,3.24,12,4.16,12h0.83v3H8v2h5.5v-3.89 c1.53-1,2.53-2.74,2.5-4.71C15.95,5.59,13.67,3.19,10.87,3.01z M10.25,12c-0.35,0-0.63-0.28-0.63-0.63c0-0.35,0.28-0.62,0.63-0.62 c0.35,0,0.62,0.27,0.62,0.62C10.88,11.72,10.61,12,10.25,12z M11.76,8.3c-0.38,0.56-0.74,0.73-0.93,1.09 c-0.08,0.14-0.11,0.24-0.11,0.71H9.8c0-0.25-0.04-0.65,0.16-0.99c0.24-0.44,0.71-0.7,0.98-1.08c0.29-0.41,0.13-1.16-0.68-1.16 c-0.53,0-0.79,0.4-0.9,0.74L8.53,7.25C8.76,6.58,9.36,6,10.25,6c0.74,0,1.25,0.34,1.5,0.76C11.97,7.12,12.1,7.8,11.76,8.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elderly_woman\": {\n    \"name\": \"elderly_woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.5,11c-1.56,0-2.92-0.9-3.58-2.21l-0.79-1.67l0,0C14.12,7.1,13.63,6,12.34,6l0,0C8.72,6,6,16.69,6,19h2.5l-2.1,2.8 L8,23l3-4h2v4h2v-4.03L13,13l0.49-2.71c0.81,1.23,2.05,2.14,3.51,2.52v0.69h1v-1c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V23h1 V12.5C20,11.67,19.33,11,18.5,11z\\\"></path><path d=\\\"M11.6,2.91c-0.06,0.19-0.1,0.38-0.1,0.59c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2c-0.21,0-0.4,0.04-0.59,0.1 C12.76,1.25,12.41,1,12,1c-0.55,0-1,0.45-1,1C11,2.41,11.25,2.76,11.6,2.91z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.62,8.99c-0.32,0-0.61,0.14-0.81,0.35c-1.91-0.49-1.98-2.15-2.92-2.91c-0.26-0.21-0.57-0.34-0.89-0.4 C6.85,5.45,5.5,14.26,5.5,15h1.6l-1.6,2l1,1L9,15h1.5v3H12v-3l-1.46-3.93l0.28-2.33l0,0c0,0,0,0,0,0 c0.02,0.03,0.91,1.44,2.68,2.02v0.25h0.75v-0.88c0-0.21,0.17-0.38,0.38-0.38S15,9.91,15,10.12V18h0.75v-7.88 C15.75,9.5,15.25,8.99,14.62,8.99z\\\"></path><path d=\\\"M9.34,3.22C9.29,3.39,9.25,3.56,9.25,3.75c0,0.97,0.79,1.75,1.75,1.75c0.96,0,1.75-0.78,1.75-1.75 C12.75,2.78,11.97,2,11,2c-0.29,0-0.57,0.08-0.81,0.21C10.08,1.94,9.81,1.75,9.5,1.75c-0.41,0-0.75,0.34-0.75,0.75 C8.75,2.86,9.01,3.14,9.34,3.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sentiment_dissatisfied\": {\n    \"name\": \"sentiment_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"paragliding\": {\n    \"name\": \"paragliding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,17c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,17,12,17z M8.52,17.94C8.04,17.55,7,16.76,7,14H5 c0,2.7,0.93,4.41,2.3,5.5c0.5,0.4,1.1,0.7,1.7,0.9L9,24h6v-3.6c0.6-0.2,1.2-0.5,1.7-0.9c1.37-1.09,2.3-2.8,2.3-5.5h-2 c0,2.76-1.04,3.55-1.52,3.94C14.68,18.54,14,19,12,19S9.32,18.54,8.52,17.94z M12,0C5.92,0,1,1.9,1,4.25v3.49 C1,8.55,1.88,9,2.56,8.57C2.7,8.48,2.84,8.39,3,8.31L5,13h2l1.5-6.28C9.6,6.58,10.78,6.5,12,6.5s2.4,0.08,3.5,0.22L17,13h2l2-4.69 c0.16,0.09,0.3,0.17,0.44,0.26C22.12,9,23,8.55,23,7.74V4.25C23,1.9,18.08,0,12,0z M5.88,11.24L4.37,7.69 c0.75-0.28,1.6-0.52,2.53-0.71L5.88,11.24z M18.12,11.24L17.1,6.98c0.93,0.19,1.78,0.43,2.53,0.71L18.12,11.24z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><g><path d=\\\"M8.25,12.5c0-0.97,0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75s-0.78,1.75-1.75,1.75S8.25,13.47,8.25,12.5z M12.5,20v-3.38 c2.05-0.8,3.5-2.79,3.5-5.12h-1.5c0,2.21-1.79,4-4,4h-1c-2.21,0-4-1.79-4-4H4c0,2.33,1.45,4.32,3.5,5.12V20H12.5z M10,0 C5.03,0,1,1.56,1,3.48v3.17c0,0.61,0.68,0.95,1.19,0.61c0.1-0.07,0.2-0.13,0.31-0.19L4,10.5h1.5L7,5.7c0.94-0.13,1.95-0.2,3-0.2 s2.06,0.07,3,0.2l1.5,4.8H16l1.5-3.44c0.11,0.06,0.21,0.13,0.31,0.19C18.32,7.59,19,7.26,19,6.64V3.48C19,1.56,14.97,0,10,0z M4.72,9.64L3.4,6.61c0.7-0.29,1.52-0.54,2.44-0.72L4.72,9.64z M15.28,9.64l-1.13-3.75c0.92,0.19,1.75,0.43,2.44,0.72L15.28,9.64z\\\"></path></g>\"\n      }\n    }\n  },\n  \"military_tech\": {\n    \"name\": \"military_tech\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11V2H7v9l4.66,2.8l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22l-0.78-3.33l2.59-2.24l-3.41-0.29 l-0.99-2.34L17,11z M13,12.23l-1,0.6l-1-0.6V3h2V12.23z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.16,13.29l-2.27-0.19l-0.56-1.31L13,10V3H7v7l2.67,1.78l-0.56,1.31l-2.27,0.19l1.72,1.49L8.05,17L10,15.82L11.95,17 l-0.52-2.22L13.16,13.29z M9.5,4h1v6.46L10,10.8l-0.5-0.33V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumb_down_alt\": {\n    \"name\": \"thumb_down_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69zM19 3h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"group_remove\": {\n    \"name\": \"group_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M24,9v2h-6V9H24z M8,4C5.79,4,4,5.79,4,8s1.79,4,4,4s4-1.79,4-4S10.21,4,8,4z M8,13c-2.67,0-8,1.34-8,4v3h16v-3 C16,14.34,10.67,13,8,13z M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05 z M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37 C0.36,12.72,0,13.39,0,14.09V16h12v-1.91C12,13.39,11.64,12.72,11.03,12.37z M16,14.09V16h-2.5v-1.91c0-1.15-0.56-2.22-1.48-2.86 c1.08,0.22,2.1,0.6,3.02,1.14C15.64,12.72,16,13.39,16,14.09z M9.38,9.93C10.07,9.14,10.5,8.13,10.5,7s-0.43-2.15-1.12-2.94 C9.58,4.02,9.79,4,10,4c1.66,0,3,1.34,3,3s-1.34,3-3,3C9.79,10,9.58,9.98,9.38,9.93z M19.5,9.25h-5v-1.5h5V9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"recycling\": {\n    \"name\": \"recycling\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.77 7.15 7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62-3.43-2.06zm15.95 5.82-1.6-2.66-3.46 2L18.87 16H20c.76 0 1.45-.43 1.79-1.11.14-.28.21-.58.21-.89 0-.36-.1-.71-.28-1.03zM16 21h1.5c.76 0 1.45-.43 1.79-1.11L20.74 17H16v-2l-4 4 4 4v-2zm-6-4H5.7l-.84 1.41c-.3.5-.32 1.12-.06 1.65.28.57.87.94 1.52.94H10v-4zm-3.88-2.65 1.73 1.04L6.48 9.9 1 11.27l1.7 1.02-.41.69c-.35.59-.38 1.31-.07 1.92l1.63 3.26 2.27-3.81zm10.9-9.21-1.3-2.17C15.35 2.37 14.7 2 14 2h-3.53l3.12 5.2-1.72 1.03 5.49 1.37 1.37-5.49-1.71 1.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13 14h3.83l-1.09 2.17c-.25.51-.77.83-1.34.83H13M7.62 7.72l1.8-3-.9-1.49c-.39-.65-1.33-.65-1.72 0L5.05 6.17l2.57 1.55zm8.72.77L13.72 10l1.83 3h.85c.57 0 1.09-.32 1.34-.83.23-.46.21-1-.06-1.44l-1.34-2.24zM4.37 15.08c-.22.37-.24.83-.05 1.22.22.43.66.7 1.14.7H8.5v-3H5.02l-.65 1.08zM13 14v-1.54l-3 3 3 3V17m1.01-12.4-1.13-1.88c-.26-.44-.75-.72-1.28-.72H8.95l2.49 4.15-1.29.77 4.12 1.03 1.03-4.12-1.29.77zM5.3 11.58l1.28.77-1.02-4.12-4.12 1.03 1.29.77-.42.69c-.26.44-.28.98-.06 1.44l1.22 2.44 1.83-3.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scuba_diving\": {\n    \"name\": \"scuba_diving\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,13c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S1,14.1,1,13z M8.89,10.11l4.53-1.21L12.64,6L8.11,7.21 c-0.8,0.21-1.28,1.04-1.06,1.84l0,0C7.27,9.85,8.09,10.33,8.89,10.11z M20.5,5.9L23,3l-1-1l-3,3l-2,4l-9.48,2.87 c-0.82,0.2-1.39,0.89-1.5,1.68L5.24,18L2.4,21.8L4,23l3-4l1.14-3.14L14,14l5-3.5L20.5,5.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M1,11c0,0.83,0.67,1.5,1.5,1.5S4,11.83,4,11S3.33,9.5,2.5,9.5S1,10.17,1,11z M11,11.53l-4.08,1.3l-0.85,2.83L3.45,19 l-1.31-0.98l2.22-2.89l0.67-4.04c0.11-0.55,0.53-1.02,1.11-1.17L14,7.5l1.5-3L18,2l1,1l-2,2l-1.5,4L11,11.53z M6.05,7.59L6.05,7.59 c-0.19-0.63,0.16-1.3,0.8-1.5L10.44,5l0.7,2.3l-3.59,1.1C6.92,8.59,6.25,8.23,6.05,7.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_remove_alt_1\": {\n    \"name\": \"person_remove_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,8c0-2.21-1.79-4-4-4S6,5.79,6,8s1.79,4,4,4S14,10.21,14,8z M17,10v2h6v-2H17z M2,18v2h16v-2c0-2.66-5.33-4-8-4 S2,15.34,2,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86V16H2v-2.14C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"sledding\": {\n    \"name\": \"sledding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,3.4,14,4.5z M17.22,17.9l1.93,0.63l-0.46,1.43l-3.32-1.08L14.9,20.3 l3.32,1.08l0,0c1.31,0.43,2.72-0.29,3.15-1.61c0.43-1.31-0.29-2.72-1.61-3.15l0.46-1.43c2.1,0.68,3.25,2.94,2.57,5.04 c-0.68,2.1-2.94,3.25-5.04,2.57h0L1,17.36l0.46-1.43l3.93,1.28l0.46-1.43L1.93,14.5l0.46-1.43L4,13.6V9.5l5.47-2.35 c0.39-0.17,0.84-0.21,1.28-0.07c0.95,0.31,1.46,1.32,1.16,2.27l-1.05,3.24L14.5,12L17.22,17.9z M6,14.25l0.48,0.16l0.75-2.31 L7.92,10L6,10.82V14.25z M13.94,18.41l-6.66-2.16l-0.46,1.43l6.66,2.16L13.94,18.41z M14.63,17.05l-1.18-2.56l-3.97,0.89 L14.63,17.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.25,3.75C8.25,2.78,9.03,2,10,2s1.75,0.78,1.75,1.75S10.97,5.5,10,5.5S8.25,4.72,8.25,3.75z M14.24,14.9l1.92,0.62 l-0.31,0.95l-2.85-0.93l-0.46,1.43l2.85,0.93c1.05,0.34,2.18-0.24,2.52-1.28c0.34-1.05-0.24-2.18-1.28-2.52l0.31-0.95 c1.58,0.51,2.44,2.2,1.93,3.78c-0.51,1.58-2.21,2.44-3.78,1.93L1,14.28l0.31-0.95l3.13,1.02l0.46-1.43L1.77,11.9l0.31-0.95 l1.42,0.46V8l4.4-1.87c0.32-0.14,0.68-0.17,1.04-0.06c0.79,0.24,1.24,1.08,1,1.87L9.15,10.5L12,10L14.24,14.9z M5,11.9l0.54,0.17 l1.16-3.8L5,9V11.9z M12.04,15.24l-6.18-2.01l-0.46,1.43l6.18,2.01L12.04,15.24z M12.3,14.27l-1.12-2.46L7.7,12.78L12.3,14.27z\\\"></path>\"\n      }\n    }\n  },\n  \"man_3\": {\n    \"name\": \"man_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16,7 8,7 8,15 10,15 10,22 14,22 14,15 16,15\\\"></polygon><rect height=\\\"3.18\\\" transform=\\\"matrix(0.7071 0.7071 -0.7071 0.7071 6.3431 -7.3137)\\\" width=\\\"3.18\\\" x=\\\"10.41\\\" y=\\\"2.41\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,7 7,7 7,13 8.5,13 8.5,18 11.5,18 11.5,13 13,13\\\"></polygon><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 0.1005 8.2426)\\\" width=\\\"2.83\\\" x=\\\"8.59\\\" y=\\\"2.59\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"person_2\": {\n    \"name\": \"person_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z\\\"></path><path d=\\\"M9.78,12h4.44c1.21,0,2.14-1.06,1.98-2.26l-0.32-2.45C15.57,5.39,13.92,4,12,4S8.43,5.39,8.12,7.29L7.8,9.74 C7.64,10.94,8.57,12,9.78,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.27,10h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C12.67,5.04,11.44,4,10,4S7.33,5.04,7.09,6.47l-0.3,1.79 C6.64,9.17,7.34,10,8.27,10z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"people_alt\": {\n    \"name\": \"people_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><g><path d=\\\"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3 C23,14.82,19.43,13.53,16.67,13.13z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><circle cx=\\\"9\\\" cy=\\\"8\\\" fill-rule=\\\"evenodd\\\" r=\\\"4\\\"></circle></g><g><path d=\\\"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24 C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76C14.09,11.9,14.53,12,15,12z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><g><circle cx=\\\"8.5\\\" cy=\\\"7.5\\\" fill-rule=\\\"evenodd\\\" r=\\\"2.5\\\"></circle></g><g><path d=\\\"M10.99,9.95C11.16,9.98,11.33,10,11.5,10c1.38,0,2.5-1.12,2.5-2.5 C14,6.12,12.88,5,11.5,5c-0.17,0-0.34,0.02-0.51,0.05C11.61,5.68,12,6.55,12,7.5S11.61,9.32,10.99,9.95z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M8.5,11C6.66,11,3,11.66,3,13.23V15h11v-1.77C14,11.66,10.34,11,8.5,11z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><path d=\\\"M13.73,11.23c0.75,0.48,1.27,1.12,1.27,2V15h2v-1.77 C17,12.18,15.36,11.54,13.73,11.23z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"cookie\": {\n    \"name\": \"cookie\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.95,10.99c-1.79-0.03-3.7-1.95-2.68-4.22c-2.98,1-5.77-1.59-5.19-4.56C6.95,0.71,2,6.58,2,12c0,5.52,4.48,10,10,10 C17.89,22,22.54,16.92,21.95,10.99z M8.5,15C7.67,15,7,14.33,7,13.5S7.67,12,8.5,12s1.5,0.67,1.5,1.5S9.33,15,8.5,15z M10.5,10 C9.67,10,9,9.33,9,8.5S9.67,7,10.5,7S12,7.67,12,8.5S11.33,10,10.5,10z M15,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C16,15.55,15.55,16,15,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.96,9.2C16.53,9.17,15,7.64,15.81,5.82c-2.38,0.8-4.62-1.28-4.15-3.65C5.88,0.95,2,5.74,2,10c0,4.42,3.58,8,8,8 C14.71,18,18.43,13.94,17.96,9.2z M6.75,12.5c-0.69,0-1.25-0.56-1.25-1.25S6.06,10,6.75,10S8,10.56,8,11.25S7.44,12.5,6.75,12.5z M8.75,8.5C8.06,8.5,7.5,7.94,7.5,7.25C7.5,6.56,8.06,6,8.75,6S10,6.56,10,7.25C10,7.94,9.44,8.5,8.75,8.5z M12.5,13.25 c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75S12.92,13.25,12.5,13.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cruelty_free\": {\n    \"name\": \"cruelty_free\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.84,14.52c-0.26-0.19-0.62-0.63-0.79-0.84C17.24,12.01,19,8.87,19,5c0-1.95-0.74-3-2-3c-1.54,0-3.96,2.06-5,5.97 C10.96,4.06,8.54,2,7,2C5.74,2,5,3.05,5,5c0,3.87,1.76,7.01,2.95,8.68c-0.17,0.21-0.53,0.65-0.79,0.84 c-0.5,0.41-1.66,1.37-1.66,2.98c0,2.21,1.79,4,4,4c1.55,0,2.5-0.56,2.5-0.56s0.95,0.56,2.5,0.56c2.21,0,4-1.79,4-4 C18.5,15.89,17.34,14.93,16.84,14.52z M9.35,12.2C8.34,10.7,7,8.12,7,5c0-0.49,0.06-0.8,0.12-0.97c0.94,0.31,3.24,2.71,3.38,7.64 C10.03,11.79,9.66,11.97,9.35,12.2z M10.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75S11,15.59,11,16 C11,16.41,10.78,16.75,10.5,16.75z M12,19.5c-0.55,0-1-0.72-1-1c0-0.28,0.45-0.5,1-0.5s1,0.22,1,0.5C13,18.78,12.55,19.5,12,19.5z M13.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16C14,16.41,13.78,16.75,13.5,16.75z M13.5,11.67 c0.14-4.93,2.44-7.33,3.38-7.64C16.94,4.2,17,4.51,17,5c0,3.12-1.34,5.7-2.35,7.2C14.34,11.97,13.97,11.79,13.5,11.67z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.89,12c-0.21-0.17-0.39-0.39-0.68-0.72c0.54-0.73,2.29-3.37,2.29-6.77C15.5,2.94,15.01,2,14,2c-1.23,0-3.17,1.65-4,4.78 C9.17,3.65,7.23,2,6,2C4.99,2,4.5,2.94,4.5,4.5c0,3.4,1.75,6.04,2.29,6.77C6.5,11.61,6.32,11.82,6.11,12 c-0.37,0.31-1.36,1.13-1.36,2.5c0,1.79,1.46,3.25,3.25,3.25c1.19,0,2-0.43,2-0.43s0.81,0.43,2,0.43c1.79,0,3.25-1.46,3.25-3.25 C15.25,13.13,14.26,12.31,13.89,12z M7.87,10.19C7.08,9.04,6,6.96,6,4.5C6,4,6.06,3.69,6.12,3.53C6.77,3.75,8.84,5.57,8.9,9.76 C8.29,9.88,7.87,10.19,7.87,10.19z M8.8,13.8c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6 C9.2,13.53,9.02,13.8,8.8,13.8z M10,16c-0.44,0-0.8-0.58-0.8-0.8c0-0.22,0.36-0.4,0.8-0.4s0.8,0.18,0.8,0.4 C10.8,15.42,10.44,16,10,16z M11.2,13.8c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6 C11.6,13.53,11.42,13.8,11.2,13.8z M11.1,9.76c0.06-4.19,2.12-6.01,2.78-6.23C13.94,3.69,14,4,14,4.5c0,2.46-1.08,4.54-1.87,5.69 C12.13,10.19,11.71,9.88,11.1,9.76z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_alt_1\": {\n    \"name\": \"person_add_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,8c0-2.21-1.79-4-4-4S5,5.79,5,8s1.79,4,4,4S13,10.21,13,8z M15,10v2h3v3h2v-3h3v-2h-3V7h-2v3H15z M1,18v2h16v-2 c0-2.66-5.33-4-8-4S1,15.34,1,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c2,0,6,0.96,6,2.86V16H2v-2.14C2,11.96,6,11,8,11z\\\"></path><circle cx=\\\"8\\\" cy=\\\"7\\\" r=\\\"3\\\"></circle><polygon points=\\\"13,10 13,9 15,9 15,7 16,7 16,9 18,9 18,10 16,10 16,12 15,12 15,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"social_distance\": {\n    \"name\": \"social_distance\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S4,6.1,4,5z M8.78,8.58C7.93,8.21,6.99,8,6,8S4.07,8.21,3.22,8.58 C2.48,8.9,2,9.62,2,10.43L2,11h8l0-0.57C10,9.62,9.52,8.9,8.78,8.58z M18,7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C16,6.1,16.9,7,18,7z M20.78,8.58C19.93,8.21,18.99,8,18,8c-0.99,0-1.93,0.21-2.78,0.58C14.48,8.9,14,9.62,14,10.43L14,11h8l0-0.57 C22,9.62,21.52,8.9,20.78,8.58z M22,17l-4-4v3H6v-3l-4,4l4,4v-3h12v3L22,17z\\\"></path>\"\n      }\n    }\n  },\n  \"skateboarding\": {\n    \"name\": \"skateboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S13,4.1,13,3z M7.25,22.5c-0.41,0-0.75,0.34-0.75,0.75S6.84,24,7.25,24 S8,23.66,8,23.25S7.66,22.5,7.25,22.5z M15.75,22.5c-0.41,0-0.75,0.34-0.75,0.75S15.34,24,15.75,24s0.75-0.34,0.75-0.75 S16.16,22.5,15.75,22.5z M19.24,19c-0.24,0-0.45,0.11-0.59,0.3c-0.55,0.73-1.42,1.2-2.4,1.2H16v-6l-4.32-2.67l1.8-2.89 C14.63,10.78,16.68,12,19,12v-2c-1.85,0-3.44-1.12-4.13-2.72l-0.52-1.21C14.16,5.64,13.61,5,12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35 l-2.89,4.63l1.62,5.03l-3.12,3.76c-0.7-0.16-1.3-0.57-1.71-1.12C4.21,19.11,3.99,19,3.75,19C3.31,19,3,19.36,3,19.75 c0,0.15,0.05,0.31,0.15,0.45c0.82,1.1,2.13,1.8,3.6,1.8h9.5c1.47,0,2.78-0.7,3.6-1.8c0.1-0.14,0.15-0.3,0.15-0.45 C20,19.36,19.68,19,19.24,19z M14,20.5H8.6l2.9-3.5l-1-3.3l3.5,2.2V20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M7.49,19.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S7.49,18.84,7.49,19.25z M13.26,18.5 c-0.41,0-0.75,0.34-0.75,0.75S12.85,20,13.26,20c0.41,0,0.75-0.34,0.75-0.75S13.67,18.5,13.26,18.5z M12.25,4.5 C13.21,4.5,14,3.72,14,2.75C14,1.78,13.22,1,12.25,1S10.5,1.78,10.5,2.75C10.5,3.72,11.29,4.5,12.25,4.5z M17,16.5 c0,0.12-0.04,0.24-0.13,0.34C16.46,17.29,15.58,18,14.26,18H5.74c-1.25,0-2.13-0.62-2.61-1.16C3.05,16.75,3,16.62,3,16.5 C3,16.24,3.2,16,3.5,16c0.14,0,0.28,0.06,0.38,0.17C4.34,16.68,5,17,5.74,17H6l2-3l-1.49-3.93L8.73,6.5H6.8L5.27,8.9L4,8l2-3h4.5 c0.68,0,1.11,0.43,1.3,0.76l0.75,1.27C13.25,8.21,14.53,9,16,9v1.5c-1.95,0-3.66-1.02-4.64-2.55L10,10.13l3.5,2.37V17h0.76 c0.74,0,1.4-0.32,1.86-0.83c0.1-0.11,0.23-0.17,0.38-0.17C16.8,16,17,16.24,17,16.5z M12,13.4l-3-1.65l0.7,2.45L7.8,17H12V13.4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"engineering\": {\n    \"name\": \"engineering\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z\\\"></path><path d=\\\"M13.75,8H13c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4 S8.32,4.06,8,4.14V5.5C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.25v1h9.5V8z\\\"></path><path d=\\\"M9,13c1.86,0,3.41-1.28,3.86-3H5.14C5.59,11.72,7.14,13,9,13z\\\"></path><path d=\\\"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z\\\"></path><path d=\\\"M19.4,10.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87c-0.12,0.05-0.24,0.12-0.34,0.19 l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27c0.1,0.07,0.2,0.13,0.31,0.18 L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61c0.01-0.13,0.01-0.25,0-0.37l0.66-0.59 L19.4,10.79z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C18.39,12.99,17.99,13.39,17.5,13.39z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,8h0.57V7.5H10c0-1.02-0.62-1.9-1.5-2.29v0.54C8.5,5.89,8.39,6,8.25,6S8,5.89,8,5.75v-0.7C7.84,5.02,7.67,5,7.5,5 S7.16,5.02,7,5.05v0.7C7,5.89,6.89,6,6.75,6S6.5,5.89,6.5,5.75V5.21C5.62,5.6,5,6.48,5,7.5H4.57V8H5H10z\\\"></path><path d=\\\"M7.5,10.5c1.21,0,2.22-0.86,2.45-2h-4.9C5.28,9.64,6.29,10.5,7.5,10.5z\\\"></path><path d=\\\"M17.27,5.31l0.66-0.59L17.4,3.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L16.04,3h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19L13.6,3.79l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L14.96,8h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C17.28,5.55,17.28,5.43,17.27,5.31z M15.5,6.39c-0.49,0-0.89-0.4-0.89-0.89c0-0.49,0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 C16.39,5.99,15.99,6.39,15.5,6.39z\\\"></path><path d=\\\"M15.3,8.72l-0.59,0.2c-0.07-0.05-0.15-0.1-0.23-0.13l-0.13-0.61H13.6l-0.13,0.61c-0.08,0.04-0.17,0.08-0.24,0.14 l-0.59-0.19l-0.38,0.65l0.46,0.41c-0.01,0.09-0.01,0.18,0,0.26l-0.46,0.42l0.38,0.65l0.6-0.19c0.07,0.05,0.14,0.09,0.22,0.12 l0.14,0.62h0.75l0.13-0.61c0.08-0.04,0.15-0.08,0.22-0.13l0.59,0.19l0.38-0.65l-0.46-0.42c0.01-0.09,0.01-0.17,0-0.26l0.47-0.42 L15.3,8.72z M13.97,10.54c-0.35,0-0.62-0.28-0.62-0.62c0-0.35,0.28-0.62,0.62-0.62c0.35,0,0.62,0.28,0.62,0.62 C14.6,10.26,14.32,10.54,13.97,10.54z\\\"></path><path d=\\\"M7.5,12C5,12,2,13.24,2,15v0.97h11V15C13,13.24,10,12,7.5,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"no_adult_content\": {\n    \"name\": \"no_adult_content\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.54,1.69-4.9L7.59,9h2.83 L7.1,5.69C8.46,4.63,10.15,4,12,4c4.41,0,8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.9-1.9h-2.83l3.31,3.31 C15.54,19.37,13.85,20,12,20C7.59,20,4,16.41,4,12z\\\"></path><polygon points=\\\"14.25,14 12.75,12 14.25,10 12.75,10 12,11 11.25,10 9.75,10 11.25,12 9.75,14 11.25,14 12,13 12.75,14\\\"></polygon><polygon points=\\\"8,10 7.25,11 6.5,10 5,10 6.5,12 5,14 6.5,14 7.25,13 8,14 9.5,14 8,12 9.5,10\\\"></polygon><polygon points=\\\"16,14 16.75,13 17.5,14 19,14 17.5,12 19,10 17.5,10 16.75,11 16,10 14.5,10 16,12 14.5,14\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.52,0.53-2.92,1.41-4.03L6.44,7.5h2.12 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5c0,1.52-0.53,2.92-1.41,4.03l-1.53-1.53h-2.12l2.59,2.59 c-1.11,0.88-2.51,1.41-4.03,1.41C6.42,16.5,3.5,13.58,3.5,10z\\\"></path><polygon points=\\\"10.5,10 11.5,8.5 10.5,8.5 10,9.25 9.5,8.5 8.5,8.5 9.5,10 8.5,11.5 9.5,11.5 10,10.75 10.5,11.5 11.5,11.5\\\"></polygon><polygon points=\\\"7,8.5 6.5,9.25 6,8.5 5,8.5 6,10 5,11.5 6,11.5 6.5,10.75 7,11.5 8,11.5 7,10 8,8.5\\\"></polygon><polygon points=\\\"13.25,11.5 13.75,10.75 14.25,11.5 15.25,11.5 14.25,10 15.25,8.5 14.25,8.5 13.75,9.25 13.25,8.5 12.25,8.5 13.25,10 12.25,11.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"travel_explore\": {\n    \"name\": \"travel_explore\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.3,16.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S11,12,11,14.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l3.2,3.2 l1.4-1.4L19.3,16.9z M15.5,17c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S16.9,17,15.5,17z M12,20v2 C6.48,22,2,17.52,2,12C2,6.48,6.48,2,12,2c4.84,0,8.87,3.44,9.8,8h-2.07c-0.64-2.46-2.4-4.47-4.73-5.41V5c0,1.1-0.9,2-2,2h-2v2 c0,0.55-0.45,1-1,1H8v2h2v3H9l-4.79-4.79C4.08,10.79,4,11.38,4,12C4,16.41,7.59,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.85,8.5h-1.54c-0.48-2.03-1.93-3.68-3.82-4.48V4.5C12.5,5.33,11.83,6,11,6H9v1c0,0.55-0.45,1-1,1H7v2h1v2H7L3.64,8.64 C3.55,9.08,3.5,9.53,3.5,10c0,3.58,2.92,6.5,6.5,6.5V18c-4.42,0-8-3.58-8-8s3.58-8,8-8C13.91,2,17.15,4.8,17.85,8.5z M18,16.44 l-1.06,1.06l-2.56-2.56c-0.54,0.35-1.19,0.56-1.88,0.56C10.57,15.5,9,13.93,9,12s1.57-3.5,3.5-3.5S16,10.07,16,12 c0,0.69-0.21,1.34-0.56,1.88L18,16.44z M14.5,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14.5,13.1,14.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_tennis\": {\n    \"name\": \"sports_tennis\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z\\\"></path><path d=\\\"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.09,10.28c2.2-2.2,2.55-5.4,0.8-7.16c-1.76-1.76-4.96-1.4-7.16,0.8C6.4,5.24,5.75,6.93,5.82,8.44l0,0 c-0.04,0.82,0.29,2.73-0.98,4.01L2.28,15L3,15.72l2.56-2.56c1.27-1.27,3.19-0.94,4.01-0.98l0,0 C11.07,12.25,12.76,11.6,14.09,10.28z M7.64,10.36C6.27,9,6.63,6.42,8.43,4.62s4.38-2.16,5.75-0.8c1.36,1.36,1.01,3.94-0.8,5.75 S9,11.73,7.64,10.36z\\\"></path><path d=\\\"M16.12,12.88C15.54,12.29,14.77,12,14,12s-1.54,0.29-2.12,0.88c-1.17,1.17-1.17,3.07,0,4.24C12.46,17.71,13.23,18,14,18 s1.54-0.29,2.12-0.88C17.29,15.95,17.29,14.05,16.12,12.88z M15.41,16.41C15.04,16.79,14.53,17,14,17s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C12.96,13.21,13.47,13,14,13s1.04,0.21,1.41,0.59C16.19,14.37,16.19,15.63,15.41,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_add\": {\n    \"name\": \"person_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z\\\"></path>\"\n      }\n    }\n  },\n  \"coronavirus\": {\n    \"name\": \"coronavirus\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.5,10.5v0.75h-1.54c-0.15-1.37-0.69-2.63-1.52-3.65l1.09-1.09l0.01,0.01l0.53,0.53l1.06-1.06l-2.12-2.12l-1.06,1.06 l0.52,0.52l-1.09,1.09c-1.02-0.82-2.27-1.36-3.64-1.51V3.5h0.01h0.75V2h-3v1.5h0.74v1.54C9.87,5.19,8.62,5.74,7.6,6.56L6.51,5.47 l0.01-0.01l0.53-0.53L5.99,3.87L3.87,5.99l1.06,1.06l0.52-0.52l1.09,1.09c-0.82,1.02-1.36,2.26-1.5,3.63H3.5V10.5H2v3h1.5v-0.75 h1.54c0.15,1.37,0.69,2.61,1.5,3.63l-1.09,1.09l-0.52-0.52l-1.06,1.06l2.12,2.12l1.06-1.06l-0.53-0.53v0l-0.01-0.01l1.09-1.09 c1.02,0.82,2.26,1.36,3.63,1.51v1.54H10.5V22h3v-1.5h-0.75h-0.01v-1.54c1.37-0.14,2.62-0.69,3.64-1.51l1.09,1.09l-0.52,0.52 l1.06,1.06l2.12-2.12l-1.06-1.06l-0.53,0.53c0,0,0,0,0,0l-0.01,0.01l-1.09-1.09c0.82-1.02,1.37-2.27,1.52-3.65h1.54v0.75H22v-3H20.5 z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.2,8,13.75,8z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C11.25,15.55,10.8,16,10.25,16z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,12.55,12.55,13,12,13z M13.75,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M15.5,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C16.5,12.55,16.05,13,15.5,13z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_rugby\": {\n    \"name\": \"sports_rugby\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M7.76,7.76 c2.64-2.64,6.35-3.12,8.03-3.19c-2.05,0.94-4.46,2.45-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.35,3.12-8.03,3.19c2.05-0.94,4.46-2.45,6.61-4.61c2.16-2.16,3.67-4.58,4.62-6.63 C19.34,10.67,18.56,13.93,16.24,16.24z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7c-0.35-0.35-1.34-0.6-2.6-0.6 c-1.93,0-4.47,0.6-6.24,2.37C3.54,9.39,3.81,14.42,4.7,15.3c0.35,0.35,1.34,0.6,2.6,0.6c1.93,0,4.47-0.6,6.24-2.37 C16.46,10.61,16.19,5.58,15.3,4.7z M7.17,7.17C8.79,5.55,11,5.19,12.16,5.12C10.8,5.64,9.23,6.53,7.88,7.88 c-1.35,1.35-2.24,2.92-2.76,4.28C5.22,10.58,5.75,8.6,7.17,7.17z M12.83,12.83c-1.62,1.62-3.83,1.98-4.99,2.06 c1.35-0.52,2.93-1.41,4.28-2.76c1.35-1.35,2.24-2.92,2.76-4.28C14.78,9.42,14.25,11.4,12.83,12.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"connect_without_contact\": {\n    \"name\": \"connect_without_contact\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7H2v4h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M17.5,18 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-4H17.5z\\\"></path>\"\n      }\n    }\n  },\n  \"woman\": {\n    \"name\": \"woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"13.41,7 10.59,7 7,16 10,16 10,22 14,22 14,16 17,16\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><polygon points=\\\"11,7 9,7 6,14 8.5,14 8.5,18 11.5,18 11.5,14 14,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"science\": {\n    \"name\": \"science\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.8,18.4L14,10.67V6.5l1.35-1.69C15.61,4.48,15.38,4,14.96,4H9.04C8.62,4,8.39,4.48,8.65,4.81L10,6.5v4.17L4.2,18.4 C3.71,19.06,4.18,20,5,20h14C19.82,20,20.29,19.06,19.8,18.4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.74,14.39L11.5,8.93V5.87l0.85-1.06C12.61,4.48,12.38,4,11.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L8.5,5.87v3.05 l-4.24,5.46C3.74,15.04,4.21,16,5.04,16h9.91C15.79,16,16.26,15.04,15.74,14.39z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nordic_walking\": {\n    \"name\": \"nordic_walking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,23h-1.5v-9H19V23z M7.53,14H6l-2,9h1.53L7.53,14z M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M9.8,8.9L7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3C14.8,12,16.8,13,19,13v-2c-1.9,0-3.5-1-4.3-2.4l-1-1.6 c-0.56-0.89-1.68-1.25-2.65-0.84L6,8.3V13h2V9.6L9.8,8.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M15,11 V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L5,7.79V11h1.5V8.78l1.65-0.7L6.2,18h1.53l1.19-6.02l1.58,1.59V18 H12v-5.05l-1.46-1.46l0.49-2.48C11.94,10.21,13.37,11,15,11z M14,18h1v-6h-1V18z M6.03,12H5l-1.4,6h1.03L6.03,12z\\\"></path>\"\n      }\n    }\n  },\n  \"face_4\": {\n    \"name\": \"face_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2c-0.96,0-1.88,0.14-2.75,0.39C8.37,0.96,6.8,0,5,0C2.24,0,0,2.24,0,5c0,1.8,0.96,3.37,2.39,4.25 C2.14,10.12,2,11.04,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0.01-0.15 c2.6-0.98,4.68-2.99,5.74-5.55C11.58,8.56,14.37,10,17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12 C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M10,2C9.18,2,8.38,2.12,7.64,2.36C7.01,0.97,5.62,0,4,0C1.79,0,0,1.79,0,4c0,1.62,0.97,3.01,2.36,3.64 C2.12,8.38,2,9.18,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.14,0.03-0.28,0.04-0.42C5.66,8.87,7.38,7.3,8.29,5.29c2.28,2.44,5.34,3.04,7.84,2.55c0.24,0.68,0.38,1.4,0.38,2.16 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"workspace_premium\": {\n    \"name\": \"workspace_premium\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.68,13.69L12,11.93l2.31,1.76l-0.88-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69z M20,10 c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,2.03,0.76,3.87,2,5.28V23l6-2l6,2v-7.72C19.24,13.87,20,12.03,20,10z M12,4c3.31,0,6,2.69,6,6 s-2.69,6-6,6s-6-2.69-6-6S8.69,4,12,4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2C6.41,2,3.5,4.91,3.5,8.5c0,1.83,0.76,3.48,1.97,4.66V19L10,18l4.5,1v-5.82c1.23-1.18,2-2.84,2-4.68 C16.5,4.91,13.59,2,10,2z M10,13.5c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S12.76,13.5,10,13.5z M8.14,11.35L10,9.94l1.85,1.41 l-0.7-2.28L13,7.6h-2.27L10,5.35L9.27,7.6H7l1.85,1.47L8.14,11.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_america\": {\n    \"name\": \"south_america\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M4,12c0-1.95,0.7-3.74,1.87-5.13L9,10 v1c0,1.1,0.9,2,2,2v5.59c0,0.27,0.11,0.52,0.29,0.71L12,20C7.58,20,4,16.42,4,12z M13,19.94V18l3.75-5.62 c0.16-0.25,0.25-0.54,0.25-0.83V10.5c0-0.55-0.45-1-1-1h-1.5l-1.4-1.75C12.72,7.28,12.15,7,11.54,7H8V5.07C9.18,4.39,10.54,4,12,4 c4.41,0,8,3.59,8,8C20,16.07,16.94,19.44,13,19.94z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.54,0.54-2.95,1.43-4.07L7.5,8.5v1 C7.5,10.33,8.17,11,9,11v4.17c0,0.22,0.07,0.43,0.2,0.6l0.55,0.73C6.28,16.36,3.5,13.5,3.5,10z M10.5,16.48V15l3.32-4.74 C13.94,10.09,14,9.89,14,9.68V9c0-0.55-0.45-1-1-1h-1.2l-1.15-1.44C10.37,6.21,9.93,6,9.48,6H6.5V4.52C7.51,3.88,8.71,3.5,10,3.5 c3.58,0,6.5,2.92,6.5,6.5C16.5,13.42,13.85,16.22,10.5,16.48z\\\"></path>\"\n      }\n    }\n  },\n  \"share\": {\n    \"name\": \"share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_add\": {\n    \"name\": \"notification_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z M14,9c0,2.61,1.67,4.83,4,5.66L18,17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V2 l3,0v2.2c0.71,0.18,1.36,0.49,1.95,0.9C14.54,6.14,14,7.51,14,9z M24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M15,11.03C13.52,10.3,12.5,8.77,12.5,7c0-0.73,0.17-1.41,0.48-2.02C12.4,4.56,11.73,4.25,11,4.1V2H9v2.1 C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1L15,11.03z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z M20,6.31h-2.25V4 h-1.5v2.31H14v1.38h2.25V10h1.5V7.69H20V6.31z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pages\": {\n    \"name\": \"pages\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v8h5L7 7l4 1V3H3zm5 10H3v8h8v-5l-4 1 1-4zm9 4l-4-1v5h8v-8h-5l1 4zm4-14h-8v5l4-1-1 4h5V3z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_very_satisfied\": {\n    \"name\": \"sentiment_very_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.88 9.94L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm1-7.56L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_callback\": {\n    \"name\": \"phone_callback\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 14.85l-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_individual_suite\": {\n    \"name\": \"airline_seat_individual_suite\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm16-6H11v7H3V7H1v10h22V7z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_lock\": {\n    \"name\": \"vpn_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13c0 2.08-.8 3.97-2.1 5.39V17H14v-4H7v-2h3V8h4V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03c.04.33.08.66.08 1zm-9 7.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v3h2v1.93zM22 4v-.36c0-1.31-.94-2.5-2.24-2.63C18.26.86 17 2.03 17 3.5V4h-1v6h7V4h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_forwarded\": {\n    \"name\": \"phone_forwarded\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 11l5-5-5-5v3h-4v4h4zm-4.79 6.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_paused\": {\n    \"name\": \"phone_paused\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 3h2v7h-2zm4 0h2v7h-2zm-5.79 14.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi\": {\n    \"name\": \"wifi\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat_angled\": {\n    \"name\": \"airline_seat_flat_angled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.56 16.18L9.2 11.71l2.08-5.66 12.35 4.47-2.07 5.66zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94c1.49-.72 2.12-2.51 1.41-4C7.99 4.71 6.2 4.08 4.7 4.8c-1.49.71-2.12 2.5-1.4 4 .71 1.49 2.5 2.12 4 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"vibration\": {\n    \"name\": \"vibration\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM18 3H6v18h12V3zm-2 16H8V5h8v14z\\\"></path>\"\n      }\n    }\n  },\n  \"more\": {\n    \"name\": \"more\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M24 3H6l-6 9 6 9h18V3zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"support_agent\": {\n    \"name\": \"support_agent\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z\\\"></path><path d=\\\"M20.99,12C20.88,6.63,16.68,3,12,3c-4.61,0-8.85,3.53-8.99,9H2v6h3v-5.81c0-3.83,2.95-7.18,6.78-7.29 c3.96-0.12,7.22,3.06,7.22,7V19h-8v2h10v-3h1v-6H20.99z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6C9.32,6,6.12,6.51,6.01,9.88c1.72-0.4,3.06-1.77,3.4-3.51c0.53,1.15,1.96,2.8,4.43,2.6C13.39,7.26,11.85,6,10,6z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><path d=\\\"M16,10c0-3.31-2.69-6-6-6s-6,2.69-6,6H3v4h2v-4c0-2.76,2.24-5,5-5s5,2.24,5,5v5H9v1h7v-2h1v-4H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"voice_chat\": {\n    \"name\": \"voice_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2.01L2 22l4-4h16V2zm-4 12l-4-3.2V14H6V6h8v3.2L18 6v8z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_normal\": {\n    \"name\": \"airline_seat_legroom_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15V3H3v14h11v-2H5zm17 3h-3v-7c0-1.1-.9-2-2-2h-5V3H6v11h10v7h6v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_special\": {\n    \"name\": \"folder_special\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6H12l-2-2H2v16h20V6zm-4.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z\\\"></path>\"\n      }\n    }\n  },\n  \"ondemand_video\": {\n    \"name\": \"ondemand_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12zm-5-6l-7 4V7l7 4z\\\"></path>\"\n      }\n    }\n  },\n  \"imagesearch_roller\": {\n    \"name\": \"imagesearch_roller\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2H20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_tree\": {\n    \"name\": \"account_tree\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><polygon points=\\\"22,11 22,3 15,3 15,6 9,6 9,3 2,3 2,11 9,11 9,8 11,8 11,18 15,18 15,21 22,21 22,13 15,13 15,16 13,16 13,8 15,8 15,11\\\"></polygon>\"\n      }\n    }\n  },\n  \"bluetooth_audio\": {\n    \"name\": \"bluetooth_audio\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card\": {\n    \"name\": \"sd_card\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"time_to_leave\": {\n    \"name\": \"time_to_leave\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.43-7zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_extra\": {\n    \"name\": \"airline_seat_legroom_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 3H2v14h11v-2H4zm18.24 12.96l-2.53 1.15-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v11h10l3.41 7 5.07-2.32-1.24-2.72z\\\"></path>\"\n      }\n    }\n  },\n  \"power\": {\n    \"name\": \"power\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 7V3h-2v4h-4V3H8v4H6v7.5L9.5 18v3h5v-3l3.5-3.51V7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"live_tv\": {\n    \"name\": \"live_tv\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 6h-9.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H1v16h22V6zm-2 14H3V8h18v12zM9 10v8l7-4-7-4z\\\"></path>\"\n      }\n    }\n  },\n  \"sms_failed\": {\n    \"name\": \"sms_failed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_off\": {\n    \"name\": \"do_not_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11v2h-1.17l4.51,4.51C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10C9.96,2,8.07,2.61,6.49,3.66L13.83,11H17z M1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27l1.41-1.41L2.81,2.81 L1.39,4.22z M7,11h1.17l2,2H7V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phone_locked\": {\n    \"name\": \"phone_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5V4c0-1.1-0.9-2-2-2s-2,0.9-2,2v1h-1v5h6V5H20z M19,5h-2V4c0-0.55,0.45-1,1-1s1,0.45,1,1V5z\\\"></path><path d=\\\"M21,15l-5-1l-2.9,2.9c-2.5-1.43-4.57-3.5-6-6L10,8L9,3L3,3c0,3.28,0.89,6.35,2.43,9c1.58,2.73,3.85,4.99,6.57,6.57 c2.65,1.53,5.72,2.43,9,2.43L21,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,4.98v-1c0-0.82-0.67-1.5-1.5-1.5S13,3.15,13,3.98v1h-1v4h5v-4H16z M13.75,3.98c0-0.41,0.34-0.75,0.75-0.75 c0.41,0,0.75,0.34,0.75,0.75v1h-1.5V3.98z M17,12.37l0,4.67C9.27,17.04,2.96,10.73,2.96,3l4.67,0l0.79,3.55L5.98,8.98 c1.15,2.11,2.89,3.85,5,5l2.48-2.39L17,12.37L17,12.37z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb\": {\n    \"name\": \"do_not_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-1.85,0.63-3.55,1.69-4.9L16.9,18.31C15.55,19.37,13.85,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.55,18.31,16.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"phone_in_talk\": {\n    \"name\": \"phone_in_talk\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm-1.79 5.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_off\": {\n    \"name\": \"wifi_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm10-4c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption\": {\n    \"name\": \"no_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81L3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"tv_off\": {\n    \"name\": \"tv_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 7v10.88l2 2V5h-9.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2zM2.41 2.13l-.14.14L1 3.54l1.53 1.53H1V21h17.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_eta\": {\n    \"name\": \"drive_eta\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.92 5.01L18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z\\\"></path>\"\n      }\n    }\n  },\n  \"network_locked\": {\n    \"name\": \"network_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 16v-.36c0-1.31-.94-2.5-2.24-2.63-1.5-.15-2.76 1.02-2.76 2.49v.5h-1v6h7v-6h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zm-1.5-5c.15 0 .3.01.46.02.01 0 .03.01.04.01V1L1 20h13v-6h1.26c.22-.63.58-1.2 1.06-1.68.85-.85 1.98-1.32 3.18-1.32z\\\"></path>\"\n      }\n    }\n  },\n  \"event_note\": {\n    \"name\": \"event_note\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10H7v2h10v-2zm4-7h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zm-5-5H7v2h7v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_missed\": {\n    \"name\": \"phone_missed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.32 16.67c-2.95-2.79-6.93-4.51-11.31-4.51-4.39 0-8.37 1.72-11.31 4.51l-.69.69L3.65 21l3.93-2.72-.01-3.49c1.4-.45 2.9-.7 4.44-.7 1.55 0 3.04.24 4.44.7l-.01 3.49L20.37 21l3.64-3.64c0-.01-.52-.52-.69-.69zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z\\\"></path>\"\n      }\n    }\n  },\n  \"priority_high\": {\n    \"name\": \"priority_high\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"19\\\" r=\\\"2\\\"></circle><path d=\\\"M10 3h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_alt\": {\n    \"name\": \"do_not_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M4,12c0-4.4,3.6-8,8-8c1.8,0,3.5,0.6,4.9,1.7L5.7,16.9 C4.6,15.5,4,13.8,4,12z M12,20c-1.8,0-3.5-0.6-4.9-1.7L18.3,7.1C19.4,8.5,20,10.2,20,12C20,16.4,16.4,20,12,20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"confirmation_number\": {\n    \"name\": \"confirmation_number\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 10V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_disabled\": {\n    \"name\": \"sync_disabled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wc\": {\n    \"name\": \"wc\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 22v-7.5H4V7h7v7.5H9.5V22h-4zM18 22v-6h3l-3-9h-3l-3 9h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"sms\": {\n    \"name\": \"sms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"tap_and_play\": {\n    \"name\": \"tap_and_play\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM5 1v9.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H19V1H5z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_reduced\": {\n    \"name\": \"airline_seat_legroom_reduced\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.97 21H14v-3l1-4H6V3h6v6h5c1.1 0 2 .9 2 2l-2 7h2.97v3zM5 15V3H3v14h9v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_problem\": {\n    \"name\": \"sync_problem\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"video_chat\": {\n    \"name\": \"video_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,2v20l4-4h16V2H2z M17,13l-2-1.99V14H7V6h8v2.99L17,7V13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,2H2v16l3-3h13V2z M14.5,11l-2-1.8V12h-7V5h7v2.8l2-1.8V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airline_seat_recline_normal\": {\n    \"name\": \"airline_seat_recline_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 19V7H4v14h11v-2H6zm14 1.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V18h8.07l3.5 3.5L20 20.07z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_off\": {\n    \"name\": \"directions_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"13,7.5 16.5,11 15.17,12.34 18.62,15.79 22.41,12 12.01,1.58 8.21,5.38 13,10.17\\\"></polygon><path d=\\\"m1.39 4.22 3.99 3.99L1.59 12l10.42 10.4 3.79-3.79 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm8.6 8.6V15h-2v-4.18l2 2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_busy\": {\n    \"name\": \"event_busy\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM21 3h-3V1h-2v2H8V1H6v2H3.01L3 21h18V3zm-2 16H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"sim_card_alert\": {\n    \"name\": \"sim_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,2H10L4,8v14h16V2z M13,17h-2v-2h2V17z M13,13h-2V8h2V13z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_alt\": {\n    \"name\": \"do_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_on\": {\n    \"name\": \"do_not_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M17,13H7v-2h10V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_on\": {\n    \"name\": \"do_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sync\": {\n    \"name\": \"sync\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"network_check\": {\n    \"name\": \"network_check\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z\\\"></path>\"\n      }\n    }\n  },\n  \"event_available\": {\n    \"name\": \"event_available\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.53 11.06L15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"adb\": {\n    \"name\": \"adb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_video\": {\n    \"name\": \"personal_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat\": {\n    \"name\": \"airline_seat_flat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 7v6H9V7h13zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9c1.16-1.19 1.14-3.08-.04-4.24-1.19-1.16-3.08-1.14-4.24.04-1.16 1.19-1.14 3.08.04 4.24 1.19 1.16 3.08 1.14 4.24-.04z\\\"></path>\"\n      }\n    }\n  },\n  \"mms\": {\n    \"name\": \"mms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20l4-4h16V2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_lock\": {\n    \"name\": \"sync_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73C5.06,16.54,4,14.4,4,12 C4,8.27,6.55,5.15,10,4.26z M20,4h-6v6h2V7.56c1.22,1.1,2,2.67,2,4.44h2c0-2.4-1.06-4.54-2.73-6H20V4z M20,17v-1c0-1.1-0.9-2-2-2 s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C21,17.45,20.55,17,20,17z M19,17h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,14H16v-1c0-0.82-0.67-1.5-1.5-1.5S13,12.18,13,13v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C17,14.22,16.78,14,16.5,14z M13.75,13c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V13z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10 C4,7.21,5.91,4.86,8.5,4.2z M14.5,10c-0.08-1.32-0.59-2.5-1.5-3.32V8h-1.5V4h4v1.5h-1.55C15.2,6.6,16,8.2,16,10H14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_off\": {\n    \"name\": \"do_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 11v2h-.88l4.33 4.33C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55L14.12 11H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM7 13v-2h1.46l2 2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"do_disturb\": {\n    \"name\": \"do_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_recline_extra\": {\n    \"name\": \"airline_seat_recline_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H6.5L4 7H2l2.85 14H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61L7.44 18h9.24l3.82 3 1.5-1.5-5.77-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card_alert\": {\n    \"name\": \"sd_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z\\\"></path>\"\n      }\n    }\n  },\n  \"disc_full\": {\n    \"name\": \"disc_full\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_update\": {\n    \"name\": \"system_update\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 1v22h14V1H5zm12 18H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_bluetooth_speaker\": {\n    \"name\": \"phone_bluetooth_speaker\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21zm3 8.25l-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption_gmailerrorred\": {\n    \"name\": \"no_encryption_gmailerrorred\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81L3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"running_with_errors\": {\n    \"name\": \"running_with_errors\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10v8h-2v-8H22z M20,20v2h2v-2H20z M18,17.29C16.53,18.95,14.39,20,12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8v9 l7.55-7.55C17.72,3.34,15.02,2,12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c2.25,0,4.33-0.74,6-2V17.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,8v7h-1.5V8H18z M16.5,16.5V18H18v-1.5H16.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5 c2.01,0,3.81-0.92,5-2.35l0,2.1c-1.37,1.1-3.11,1.75-5,1.75c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0c2.46,0,4.67,1.11,6.13,2.87L10,11 V3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_off\": {\n    \"name\": \"power_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 14.49V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l7.69 7.69.19-.2zM10 3H8v1.88l2 2zm-5.88.84L2.71 5.25l3.34 3.34c-.03.13-.05.27-.05.4v5.51L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84z\\\"></path>\"\n      }\n    }\n  },\n  \"enhanced_encryption\": {\n    \"name\": \"enhanced_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"turn_slight_right\": {\n    \"name\": \"turn_slight_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"12.34,6 12.34,4 18,4 18,9.66 16,9.66 16,7.41 11,12.41 11,20 9,20 9,11.59 14.59,6\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"7.5,9.94 7.5,16 9,16 9,10.56 13,6.56 13,8.25 14.5,8.25 14.5,4 10.25,4 10.25,5.5 11.94,5.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"no_crash\": {\n    \"name\": \"no_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.57,8H5.43L3,15v9h3v-2h12v2h3v-9L18.57,8z M6.85,10h10.29l1.04,3H5.81L6.85,10z M6,17.5C6,16.67,6.67,16,7.5,16 S9,16.67,9,17.5S8.33,19,7.5,19S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19 S15,18.33,15,17.5z M12,6.36L9.17,3.54l1.41-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.87,1l1.06,1.06L9.4,5.6L7.28,3.47l1.06-1.06L9.4,3.47L11.87,1z M17,12v7h-2v-1.5H5V19H3l0-7l2-5h10L17,12z M6.02,8.5 l-1,2.5h9.97l-1-2.5H6.02z M6.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25 c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S14.05,13.25,13.5,13.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_location_alt\": {\n    \"name\": \"edit_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M13.95,13H9V8.05l5.61-5.61C13.78,2.16,12.9,2,12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-1.01-0.16-1.94-0.45-2.8L13.95,13z M11,11h2.12l6.16-6.16l-2.12-2.12L11,8.88V11z M19.29,0.59l-1.42,1.42l2.12,2.12l1.42-1.42 L19.29,0.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><polygon points=\\\"9,10 10.41,10 15.44,4.97 14.03,3.56 9,8.59\\\"></polygon></g><g><path d=\\\"M11.04,11.5H7.5V7.96l5.32-5.32C11.96,2.24,11.01,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18 s6.5-5.16,6.5-9.5c0-0.74-0.13-1.45-0.36-2.11L11.04,11.5z\\\"></path></g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 2.5347 12.1798)\\\" width=\\\"1.5\\\" x=\\\"15.22\\\" y=\\\"2.03\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"temple_hindu\": {\n    \"name\": \"temple_hindu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.6,11 17.4,11 16.5,8 7.5,8\\\"></polygon><polygon points=\\\"20,11 20,13 4,13 4,11 2,11 2,22 10,22 10,17 14,17 14,22 22,22 22,11\\\"></polygon><polygon points=\\\"15.9,6 15,3 15,1 13,1 13,3 10.97,3 10.97,1 8.97,1 8.97,3.12 8.1,6\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13.5,7 6.5,7 5.56,9.5 14.44,9.5\\\"></polygon><polygon points=\\\"12,3 12,1 10.5,1 10.5,3 9.5,3 9.5,1 8,1 8,3 7.06,5.5 12.94,5.5\\\"></polygon><polygon points=\\\"16.5,9 16.5,11 3.5,11 3.5,9 2,9 2,18 8,18 8,14 12,14 12,18 18,18 18,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"dinner_dining\": {\n    \"name\": \"dinner_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><polygon points=\\\"2,19 4,21 20,21 22,19\\\"></polygon><path d=\\\"M3,18l16.97,0c0,0,0,0,0,0c0.29-3.26-2.28-6-5.48-6c-2.35,0-4.35,1.48-5.14,3.55C8.94,15.32,8.48,15.17,8,15.08V9h4V6.75 h9v-1.5h-9V3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85,3.22,17.39,3,18z M8,7.5V6.75h2V7.5H8z M10,5.25H8V4.5h2V5.25z M5.5,4.5h1v0.75h-1V4.5z M5.5,6.75h1V7.5h-1V6.75z M6.5,9v6.06c-0.35,0.06-0.68,0.17-1,0.3V9H6.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,14.5h14c0-2.49-2.01-4.5-4.5-4.5c-2.03,0-3.72,1.35-4.28,3.19C7.86,12.92,7.45,12.73,7,12.61V8h3V6h7V5h-7V3H3v1h1v1H3 v1h1v1H3v1h1v5.26C3.58,13.59,3.23,14.01,3,14.5z M8.5,7H7V6h1.5V7z M8.5,4v1H7V4H8.5z M5,4h1v1H5V4z M5,6h1v1H5V6z M5,8h1v4.51 c-0.35,0.02-0.68,0.08-1,0.19V8z\\\"></path><polygon points=\\\"2,15.5 3.5,17 16.5,17 18,15.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"maps_ugc\": {\n    \"name\": \"maps_ugc\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><g><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z\\\"></path></g><polygon fill-rule=\\\"evenodd\\\" points=\\\"13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11\\\"></polygon>\"\n      }\n    }\n  },\n  \"signpost\": {\n    \"name\": \"signpost\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2c-0.55,0-1,0.45-1,1v1H5.5C4.67,4,4,4.67,4,5.5v3C4,9.33,4.67,10,5.5,10H11v2H6.62c-0.4,0-0.78,0.16-1.06,0.44 l-1.5,1.5c-0.59,0.59-0.59,1.54,0,2.12l1.5,1.5C5.84,17.84,6.22,18,6.62,18H11v3c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-3h5.5 c0.83,0,1.5-0.67,1.5-1.5v-3c0-0.83-0.67-1.5-1.5-1.5H13v-2h4.38c0.4,0,0.78-0.16,1.06-0.44l1.5-1.5c0.59-0.59,0.59-1.54,0-2.12 l-1.5-1.5C18.16,4.16,17.78,4,17.38,4H13V3C13,2.45,12.55,2,12,2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2C9.59,2,9.25,2.34,9.25,2.75V3.5H5c-0.55,0-1,0.45-1,1V7c0,0.55,0.45,1,1,1h4.25v1.5h-3.8 c-0.29,0-0.56,0.12-0.75,0.34l-1.11,1.25c-0.34,0.38-0.34,0.95,0,1.33l1.11,1.25C4.89,13.88,5.16,14,5.45,14h3.8v3.25 C9.25,17.66,9.59,18,10,18c0.41,0,0.75-0.34,0.75-0.75V14H15c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-4.25V8h3.8 c0.29,0,0.56-0.12,0.75-0.34l1.11-1.25c0.34-0.38,0.34-0.95,0-1.33L15.3,3.84c-0.19-0.21-0.46-0.34-0.75-0.34h-3.8V2.75 C10.75,2.34,10.41,2,10,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_laundry_service\": {\n    \"name\": \"local_laundry_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0s1.56-4.1 0-5.66l-5.66 5.66zM20 2.01L4 2v20h16V2.01zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_attributes\": {\n    \"name\": \"edit_attributes\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_of_travel\": {\n    \"name\": \"mode_of_travel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.31,18.9c-0.96,1-2.06,2.03-3.31,3.1c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2c4,0,7.64,2.92,7.97,7.5l3.53,0L19,14 l-4.5-4.5l3.47,0C17.65,6.24,15.13,4,12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c0.64-0.59,1.23-1.16,1.77-1.71 c-0.17-0.34-0.27-0.72-0.27-1.12c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S17.38,19,16,19C15.76,19,15.53,18.97,15.31,18.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.48,8C16.23,4.64,13.42,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s1.28-1.01,2.7-2.52 c0.1,0.01,0.2,0.02,0.3,0.02c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2c0,0.44,0.14,0.85,0.38,1.18c-0.49,0.51-0.97,0.97-1.38,1.35 C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5c2.59,0,4.72,1.98,4.98,4.5h-2.73l3.5,3.5l3.5-3.5L16.48,8z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control_rodent\": {\n    \"name\": \"pest_control_rodent\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.31,17.38l-2.39-2.13C19.44,12.89,17.56,11,15.5,11c-1.16,0-3.5,0.9-3.5,3.5c0,0.97,0.39,1.84,1.03,2.47l-0.71,0.71 C11.5,16.87,11,15.74,11,14.5c0-1.7,0.96-3.17,2.35-3.93c-0.7-0.36-1.48-0.57-2.28-0.57c-2.38,0-4.37,1.65-4.91,3.87 C4.91,13.5,4,12.36,4,11c0-1.66,1.34-3,3-3c0.94,0,1.56,0,2.5,0C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H7v2h2.5 C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6C9.47,6,9,6,7,6c-2.76,0-5,2.24-5,5c0,2.42,1.72,4.44,4,4.9v0.03 C6,18.73,8.27,21,11.07,21h8.86C21.8,21,22.74,18.66,21.31,17.38z M18,19c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,18.55,18.55,19,18,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.57,13.59l-1.63-1.55C15.31,10.33,13.96,9,12.5,9C11.32,9,10,9.96,10,11.5c0,0.69,0.28,1.32,0.73,1.77l-0.71,0.71 C9.39,13.34,9,12.47,9,11.5c0-1.36,0.78-2.52,1.91-3.1C10.43,8.15,9.91,8,9.36,8C6.44,8,6,10.79,6,11.47c-1.12-0.13-2-1.07-2-2.22 C4,8.01,5.01,7,6.25,7H8.5C9.33,7,10,6.33,10,5.5S9.33,4,8.5,4H7v1h1.5C8.78,5,9,5.22,9,5.5C9,5.78,8.78,6,8.5,6H6.25 C4.46,6,3,7.46,3,9.25c0,1.71,1.32,3.1,3,3.22C6,13.07,6.34,16,9.36,16h6.24C16.86,16,17.47,14.45,16.57,13.59z M14.25,15 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S15,13.84,15,14.25C15,14.66,14.66,15,14.25,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_mall\": {\n    \"name\": \"local_mall\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6h-4c0-2.76-2.24-5-5-5S7 3.24 7 6H3v16h18V6zm-9-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"airlines\": {\n    \"name\": \"airlines\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M13,4L2,20h17l3-16H13z M14.5,14c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C17,12.88,15.88,14,14.5,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,4L2.5,16h12.75L17.5,4H10.75z M11.88,11.75c-1.04,0-1.88-0.84-1.88-1.88S10.84,8,11.88,8s1.88,0.84,1.88,1.88 S12.91,11.75,11.88,11.75z\\\"></path>\"\n      }\n    }\n  },\n  \"railway_alert\": {\n    \"name\": \"railway_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M4,11V8h7.29c-0.77-2.6,0.21-4.61,0.37-4.97C2.97,2.67,2,5.02,2,7v9.5C2,18.43,3.57,20,5.5,20L4,21v1h12v-1l-1.5-1 c1.93,0,3.5-1.57,3.5-3.5V13c-1.91,0-3.63-0.76-4.89-2H4z M10,17c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5C11.5,16.33,10.83,17,10,17z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"connecting_airports\": {\n    \"name\": \"connecting_airports\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3l2.6-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1 l-0.75-1H15.4z M5.75,7L5,6H4l0.6,2L4,10h1l0.75-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0,1-0.45,1-1s-0.45-1-1-1h-3L8.4,2.6H7.3L8.6,7 H5.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4,8.5l0.5-1.75L4,5h0.7l0.75,1H7.7L6.6,2.5h0.9L9.6,6h2.15c0.41,0,0.75,0.34,0.75,0.75S12.16,7.5,11.75,7.5H9.6L7.5,11H6.6 l1.1-3.5H5.45l-0.75,1H4z M15.5,13.25L16,11.5h-0.7l-0.75,1H12.3L13.4,9h-0.9l-2.1,3.5H8.25c-0.41,0-0.75,0.34-0.75,0.75 S7.84,14,8.25,14h2.15l2.1,3.5h0.9L12.3,14h2.25l0.75,1H16L15.5,13.25z\\\"></path>\"\n      }\n    }\n  },\n  \"add_business\": {\n    \"name\": \"add_business\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z\\\"></path><rect height=\\\"2\\\" width=\\\"15\\\" x=\\\"2\\\" y=\\\"4\\\"></rect><polygon points=\\\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><path d=\\\"M13,14h1v-3h1v-1l-1-4H4l-1,4v1h1v5h6v-5h3V14z M9,15H5v-4h4V15z\\\"></path><polygon points=\\\"16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16 18,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"zoom_out_map\": {\n    \"name\": \"zoom_out_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"local_printshop\": {\n    \"name\": \"local_printshop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 8v9h4v4h12v-4h4V8H2zm14 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_railway\": {\n    \"name\": \"directions_railway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z\\\"></path>\"\n      }\n    }\n  },\n  \"hvac\": {\n    \"name\": \"hvac\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M8.56,14h6.89c0.26-0.45,0.44-0.96,0.51-1.5h-7.9C8.12,13.04,8.29,13.55,8.56,14z\\\"></path></g><g><path d=\\\"M12,16c1.01,0,1.91-0.39,2.62-1H9.38C10.09,15.61,10.99,16,12,16z\\\"></path></g><g><path d=\\\"M12,8c-1.01,0-1.91,0.39-2.62,1h5.24C13.91,8.39,13.01,8,12,8z\\\"></path></g><g><path d=\\\"M8.56,10c-0.26,0.45-0.44,0.96-0.51,1.5h7.9c-0.07-0.54-0.24-1.05-0.51-1.5H8.56z\\\"></path></g><g><path d=\\\"M3,3v18h18V3H3z M12,18c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S15.31,18,12,18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M10,13c0.88,0,1.67-0.39,2.22-1H7.78C8.33,12.61,9.12,13,10,13z\\\"></path></g><g><path d=\\\"M10,7C9.12,7,8.34,7.39,7.79,7.99h4.42C11.66,7.39,10.88,7,10,7z\\\"></path></g><g><path d=\\\"M7.42,11.5h5.17c0.22-0.38,0.36-0.8,0.39-1.26H7.02C7.06,10.7,7.2,11.12,7.42,11.5z\\\"></path></g><g><path d=\\\"M7.42,8.49c-0.22,0.38-0.36,0.8-0.4,1.26h5.95c-0.04-0.46-0.18-0.88-0.4-1.26H7.42z\\\"></path></g><g><path d=\\\"M4,4v12h12V4H4z M10,14c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c2.21,0,4,1.79,4,4C14,12.21,12.21,14,10,14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"alt_route\": {\n    \"name\": \"alt_route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.38,9.41l-0.71,0.71c-0.47-0.5-0.93-1.1-1.25-1.96L7.4,7.91C7.66,8.54,8,9.01,8.38,9.41z M9.5,6l-3-3l-3,3h2.53 c0.02,0.43,0.07,0.83,0.14,1.19l0.97-0.24C7.08,6.66,7.04,6.34,7.02,6H9.5z M16.5,6l-3-3l-3,3h2.48c-0.12,2.22-1.02,3.11-1.9,3.96 c-0.39,0.37-0.78,0.75-1.08,1.23c-0.26-0.41-0.58-0.75-0.91-1.07l-0.71,0.71C9.03,11.47,9.5,11.99,9.5,13v4h1v-4c0,0,0,0,0,0h0 c0-1.1,0.53-1.61,1.27-2.32c0.94-0.9,2.07-2.03,2.21-4.68H16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_bar\": {\n    \"name\": \"local_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7L5.66 5h12.69l-1.78 2H7.43z\\\"></path>\"\n      }\n    }\n  },\n  \"taxi_alert\": {\n    \"name\": \"taxi_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,13c-1.91,0-3.63-0.76-4.89-2H4.81l1.04-3h5.44C11.1,7.37,11,6.7,11,6s0.1-1.37,0.29-2H8v2H4.43L2,13v9h3v-2h12v2h3 v-9l-0.09-0.27C19.3,12.9,18.66,13,18,13z M6.5,17C5.67,17,5,16.33,5,15.5S5.67,14,6.5,14S8,14.67,8,15.5S7.33,17,6.5,17z M15.5,17c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,17,15.5,17z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"emergency\": {\n    \"name\": \"emergency\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"20.79,9.23 18.79,5.77 14,8.54 14,3 10,3 10,8.54 5.21,5.77 3.21,9.23 8,12 3.21,14.77 5.21,18.23 10,15.46 10,21 14,21 14,15.46 18.79,18.23 20.79,14.77 16,12\\\"></polygon>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon points=\\\"16.81,7.8 15.31,5.2 11.5,7.4 11.5,3 8.5,3 8.5,7.4 4.69,5.2 3.19,7.8 7,10 3.19,12.2 4.69,14.8 8.5,12.6 8.5,17 11.5,17 11.5,12.6 15.31,14.8 16.81,12.2 13,10\\\"></polygon>\"\n      }\n    }\n  },\n  \"directions_car_filled\": {\n    \"name\": \"directions_car_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M18.57,5H5.43L3,12v9h3v-2h12v2h3v-9L18.57,5z M7.5,16C6.67,16,6,15.33,6,14.5S6.67,13,7.5,13S9,13.67,9,14.5 S8.33,16,7.5,16z M16.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,16,16.5,16z M5.81,10l1.04-3h10.29 l1.04,3H5.81z\\\"></path></g>\"\n      }\n    }\n  },\n  \"park\": {\n    \"name\": \"park\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"17,12 19,12 12,2 5.05,12 7,12 3.1,18 10.02,18 10.02,22 13.98,22 13.98,18 21,18\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"13.82,10 15,10 10,2 5,10 6.18,10 3,15 8.5,15 8.5,18 11.5,18 11.5,15 17,15\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"temple_buddhist\": {\n    \"name\": \"temple_buddhist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,9.02c0,1.09-0.89,1.98-1.98,1.98H4.98C3.89,11,3,10.11,3,9.02H1c0,1.86,1.28,3.4,3,3.84V22h6v-5h4v5h6v-9.14 c0.55-0.14,3-1.04,3-3.86L21,9.02z\\\"></path></g><g><path d=\\\"M6,8.86V10h12V8.86c0.55-0.14,3-1.04,3-3.86l-2,0.02C19,6.11,18.11,7,17.02,7H6.98C5.89,7,5,6.11,5,5.02H3 C3,6.87,4.28,8.42,6,8.86z\\\"></path></g><g><polygon points=\\\"12,1 8.25,6 15.75,6\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M17.5,7.01C17.5,8.11,16.61,9,15.52,9H4.48C3.39,9,2.5,8.11,2.5,7.01H1c0,1.76,1.31,3.2,3,3.44V18h4v-4h4v4h4v-7.55 c0.55-0.08,3-0.77,3-3.45L17.5,7.01z\\\"></path></g><g><polygon points=\\\"10,1 6.92,5 13.08,5\\\"></polygon></g><g><path d=\\\"M5,7.16V8h10V7.16c1.89-0.9,2-2.74,2-3.16l-1.5,0.01c0,1.08-0.88,1.97-1.96,1.98H6.46C5.38,5.98,4.5,5.1,4.5,4.02L3,4 C3,4.42,3.11,6.26,5,7.16z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"money\": {\n    \"name\": \"money\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 16h5V8h-5v8zm2-6h1v4h-1v-4zm-8 6h5V8H8v8zm2-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"emergency_share\": {\n    \"name\": \"emergency_share\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,9c-3.15,0-6,2.41-6,6.15c0,2.49,2,5.44,6,8.85c4-3.41,6-6.36,6-8.85C18,11.41,15.15,9,12,9z M12,16.5 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,16.5,12,16.5z M12,4c1.93,0,3.68,0.78,4.95,2.05l-1.41,1.41 C14.63,6.56,13.38,6,12,6S9.37,6.56,8.46,7.46L7.05,6.05C8.32,4.78,10.07,4,12,4z M19.78,3.23l-1.41,1.41 C16.74,3.01,14.49,2,12.01,2S7.27,3.01,5.64,4.63L4.22,3.22C6.22,1.23,8.97,0,12.01,0S17.79,1.23,19.78,3.23z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.34,2.66l-1.06,1.06C13.92,2.35,12.03,1.5,9.95,1.5c-2.06,0-3.92,0.83-5.28,2.18L3.61,2.61C5.24,1,7.48,0,9.95,0 C12.45,0,14.71,1.02,16.34,2.66z M6.09,5.09l1.06,1.06C7.87,5.44,8.86,5,9.95,5c1.11,0,2.12,0.46,2.85,1.2l1.06-1.06 c-1-1.01-2.38-1.63-3.91-1.63C8.45,3.5,7.08,4.11,6.09,5.09z M15.28,12.28C15.28,15.81,10,20,10,20s-5.28-4.19-5.28-7.72 C4.72,9.36,7.08,7,10,7S15.28,9.36,15.28,12.28z M10,11c-0.69,0-1.25,0.56-1.25,1.25c0,0.69,0.56,1.25,1.25,1.25 c0.69,0,1.25-0.56,1.25-1.25C11.25,11.56,10.69,11,10,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pin_drop\": {\n    \"name\": \"pin_drop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 20h14v2H5v-2zm7-13c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 100-4zm0-5c3.27 0 7 2.46 7 7.15 0 3.12-2.33 6.41-7 9.85-4.67-3.44-7-6.73-7-9.85C5 4.46 8.73 2 12 2z\\\" fill-rule=\\\"evenodd\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_right\": {\n    \"name\": \"roundabout_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,13c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c2.21,0,4,1.79,4,4l0,1l6.17,0l-1.59,1.59L18,13l4-4l-4-4l-1.41,1.41L18.17,8 l-4.25,0C13.44,5.16,10.97,3,8,3C4.69,3,2,5.69,2,9c0,2.97,2.16,5.44,5,5.92L7,21h2l0-8L8,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.75,3c2.37,0,4.33,1.73,4.69,4l3.69,0l-1.19-1.19L15,4.75l3,3l-3,3l-1.06-1.06l1.19-1.19L10,8.46c0,0,0-0.12,0-0.71 C10,5.96,8.54,4.5,6.75,4.5S3.5,5.96,3.5,7.75S4.96,11,6.75,11H7.5v6H6v-4.56l0,0c-2.27-0.36-4-2.32-4-4.69C2,5.13,4.13,3,6.75,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"synagogue\": {\n    \"name\": \"synagogue\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,8v13h4v-7h4v7h4V8l-6-5L6,8z M13.5,10c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5S13.5,9.17,13.5,10z\\\"></path><path d=\\\"M3,5C1.9,5,1,5.9,1,7v1h4V7C5,5.9,4.1,5,3,5z\\\"></path><rect height=\\\"12\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"9\\\"></rect><path d=\\\"M21,5c-1.1,0-2,0.9-2,2v1h4V7C23,5.9,22.1,5,21,5z\\\"></path><rect height=\\\"12\\\" width=\\\"4\\\" x=\\\"19\\\" y=\\\"9\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,7v10h3v-5h4v5h3V7l-5-4L5,7z M11.25,8.25c0,0.69-0.56,1.25-1.25,1.25S8.75,8.94,8.75,8.25S9.31,7,10,7 S11.25,7.56,11.25,8.25z\\\"></path><path d=\\\"M17.5,4C16.67,4,16,4.67,16,5.5v1.17h3V5.5C19,4.67,18.33,4,17.5,4z\\\"></path><rect height=\\\"9.5\\\" width=\\\"3\\\" x=\\\"16\\\" y=\\\"7.5\\\"></rect><path d=\\\"M2.5,4C1.67,4,1,4.67,1,5.5v1.17h3V5.5C4,4.67,3.33,4,2.5,4z\\\"></path><rect height=\\\"9.5\\\" width=\\\"3\\\" x=\\\"1\\\" y=\\\"7.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"nightlife\": {\n    \"name\": \"nightlife\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9l0,0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17V5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.74,10.96L12,5H2l4.24,5.94v3.56H5V16h4v-1.5H7.74V10.96z M5.99,8L4.91,6.5h4.17L8.01,8H5.99z\\\"></path><path d=\\\"M13.5,5v6.21c-0.31-0.13-0.64-0.21-1-0.21c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V7h2V5H13.5 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plumbing\": {\n    \"name\": \"plumbing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.16,5.64l3.54,3.54c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-4.24,4.24l2.12,2.12L16.16,5.64z\\\"></path><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.2383 8.9393)\\\" width=\\\"5\\\" x=\\\"5.17\\\" y=\\\"10.5\\\"></rect><path d=\\\"M15.45,7.76l-1.41,1.41L9.79,4.93L7.67,7.05l4.24,4.24l-8.49,8.49l2.83,2.83L16.86,12l0.71,0.71l1.41-1.41L15.45,7.76z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.6,4.34l2.83,2.83c0.78-0.78,0.78-2.05,0-2.83L13.6,1.51l-3.54,3.54l1.41,1.41L13.6,4.34z\\\"></path><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.1599 7.5429)\\\" width=\\\"4\\\" x=\\\"4.53\\\" y=\\\"9\\\"></rect><path d=\\\"M12.89,6.46l-1.41,1.41L7.94,4.34L6.53,5.76l3.54,3.54l-7.07,7.07l2.12,2.12L13.6,10l0.71,0.71l1.41-1.41L12.89,6.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_transit_filled\": {\n    \"name\": \"directions_transit_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M8.5,16C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M11,10H6V7h5V10z M15.5,16 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10h-5V7h5V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"badge\": {\n    \"name\": \"badge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M22,7h-7V2H9v5H2v15h20V7z M9,12c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 C7.5,12.67,8.17,12,9,12z M12,18H6v-0.43c0-0.6,0.36-1.15,0.92-1.39C7.56,15.9,8.26,15.75,9,15.75s1.44,0.15,2.08,0.43 c0.55,0.24,0.92,0.78,0.92,1.39V18z M13,9h-2V4h2V9z M18,16.5h-4V15h4V16.5z M18,13.5h-4V12h4V13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M18,6h-6V2H8v4H2v12h16V6z M7.5,10c0.69,0,1.25,0.56,1.25,1.25S8.19,12.5,7.5,12.5s-1.25-0.56-1.25-1.25S6.81,10,7.5,10z M10,15H5v-0.48c0-0.5,0.3-0.95,0.76-1.16C6.3,13.13,6.88,13,7.5,13c0.62,0,1.2,0.13,1.74,0.36C9.7,13.56,10,14.01,10,14.52V15z M10.5,7.5h-1v-4h1V7.5z M15,14h-3v-1.5h3V14z M15,11.5h-3V10h3V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"diamond\": {\n    \"name\": \"diamond\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"12.16,3 11.84,3 9.21,8.25 14.79,8.25\\\"></polygon></g><g><polygon points=\\\"16.46,8.25 21.62,8.25 19,3 13.84,3\\\"></polygon></g><g><polygon points=\\\"21.38,9.75 12.75,9.75 12.75,20.1\\\"></polygon></g><g><polygon points=\\\"11.25,20.1 11.25,9.75 2.62,9.75\\\"></polygon></g><g><polygon points=\\\"7.54,8.25 10.16,3 5,3 2.38,8.25\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"9.5,16.44 9.5,8.5 2.44,8.5\\\"></polygon></g><g><polygon points=\\\"9.9,3.31 7.81,7.5 12.16,7.5\\\"></polygon></g><g><polygon points=\\\"10.5,8.5 10.5,16.44 17.56,8.5\\\"></polygon></g><g><polygon points=\\\"6.69,7.5 8.94,3 4,3 2.2,7.5\\\"></polygon></g><g><polygon points=\\\"13.3,7.5 17.8,7.5 16,3 10.87,3\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"turn_sharp_left\": {\n    \"name\": \"turn_sharp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"6,6.83 4.41,8.41 3,7 7,3 11,7 9.59,8.41 8,6.83 8,13 18,13 18,21 16,21 16,15 6,15\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"5.5,5.87 5.5,12 13,12 13,17 14.5,17 14.5,10.5 7,10.5 7,5.87 8.19,7.06 9.25,6 6.25,3 3.25,6 4.31,7.06\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"fastfood\": {\n    \"name\": \"fastfood\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 5V1h-2v4h-5l.23 2.31C14.9 8.16 18 10.77 18 15l.02 8h3.18L23 5h-5zM1 21h15v2H1zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM1 17h15v2H1z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_boat\": {\n    \"name\": \"directions_boat\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99 2.52 1.29 5.48 1.29 8 0 1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z\\\"></path>\"\n      }\n    }\n  },\n  \"flight\": {\n    \"name\": \"flight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hail\": {\n    \"name\": \"hail\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,6c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,6,12,6z M17,2h2c0,2.7-0.93,4.41-2.3,5.5c-0.5,0.4-1.1,0.7-1.7,0.9V22h-2 v-6h-2v6H9V10.1c-0.3,0.1-0.5,0.2-0.6,0.3C7.87,10.81,7,11.43,7,14H5c0-2.06,0.35-3.78,2.11-5.29C8.21,7.81,10,7,12,7 s2.68-0.46,3.48-1.06C15.96,5.55,17,4.76,17,2z M4,16h3v6H4V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"traffic\": {\n    \"name\": \"traffic\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V3H7v2H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V21h10v-2.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2s.89-2 2-2c1.1 0 2 .9 2 2s-.89 2-2 2zm0-5c-1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2 0 1.1-.89 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control\": {\n    \"name\": \"pest_control\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 C15.97,8.48,16,8.25,16,8c0-0.8-0.24-1.55-0.65-2.18L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17 l1.65,1.65C8.24,6.45,8,7.2,8,8c0,0.25,0.03,0.48,0.07,0.72C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49 c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3 s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49c0.1-0.37,0.17-0.75,0.22-1.14H21z M13,17h-2v-6h2V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,12v-1h-2.04c-0.04-0.38-0.11-0.74-0.22-1.08l1.71-0.99l-0.5-0.87L13.33,9c-0.24-0.4-0.54-0.74-0.87-1.03 c0.07-0.39,0.13-1.19-0.48-1.99l1.24-1.24l-0.71-0.71l-1.29,1.29c-0.41-0.23-1.35-0.61-2.43,0L7.49,4.04L6.78,4.74l1.24,1.24 C7.41,6.78,7.47,7.58,7.55,7.97C7.21,8.26,6.91,8.6,6.67,9L5.05,8.07l-0.5,0.87l1.71,0.99c-0.11,0.34-0.18,0.7-0.22,1.08H4v1h2.04 c0.04,0.38,0.11,0.74,0.22,1.08l-1.71,0.99l0.5,0.87L6.67,14c0.72,1.21,1.94,2,3.33,2s2.61-0.8,3.33-2l1.62,0.94l0.5-0.87 l-1.71-0.99c0.11-0.34,0.18-0.7,0.22-1.08H16z M10.5,13.5h-1v-4h1V13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"multiple_stop\": {\n    \"name\": \"multiple_stop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,4l4,4l-4,4V9h-4V7h4V4z M7,17h4v-2H7v-3l-4,4l4,4V17z M19,15h-2v2h2V15z M15,15h-2v2h2V15z M11,7H9v2h2V7z M7,7H5v2h2 V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"emergency_recording\": {\n    \"name\": \"emergency_recording\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V4H2v16h16v-6.48l4,3.98v-11L18,10.48z M12,12l3,1.73l-1,1.73l-3-1.73V17H9v-3.27l-3,1.73l-1-1.73L8,12l-3-1.73 l1-1.73l3,1.73V7h2v3.27l3-1.73l1,1.73L12,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,6l-3,3V4H3v12h12v-5l3,3V6z M10.5,10l2.25,1.3L12,12.6l-2.25-1.3v2.45h-1.5V11.3L6,12.6l-0.75-1.3L7.5,10L5.25,8.7 L6,7.4l2.25,1.3V6.25h1.5V8.7L12,7.4l0.75,1.3L10.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_left\": {\n    \"name\": \"turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"6.83,11 8.41,12.59 7,14 3,10 7,6 8.41,7.41 6.83,9 17,9 17,20 15,20 15,11\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"12,16 13.5,16 13.5,7.5 5.87,7.5 7.06,6.31 6,5.25 3,8.25 6,11.25 7.06,10.19 5.87,9 12,9\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"flight_class\": {\n    \"name\": \"flight_class\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M18,4h-6v9h6V4z M9.5,16H18v2H8L5,8V4h2v4L9.5,16z M8,19h10v2H8V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.5,4H10v6.75h4.5V4z M8.4,13H15v1.5H7.29L5,7V4h1.5v3L8.4,13z M7.5,15.5H15V17H7.5V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_road\": {\n    \"name\": \"remove_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><polygon points=\\\"22.5,16.41 21.09,15 19,17.09 16.91,15 15.5,16.41 17.59,18.5 15.5,20.59 16.91,22 19,19.91 21.09,22 22.5,20.59 20.41,18.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13\\\"></rect><polygon points=\\\"18,13.56 16.94,12.5 15.25,14.19 13.56,12.5 12.5,13.56 14.19,15.25 12.5,16.94 13.56,18 15.25,16.31 16.94,18 18,16.94 16.31,15.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_grocery_store\": {\n    \"name\": \"local_grocery_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 4h2l3.6 7.59L3.62 17H19v-2H7l1.1-2h8.64l4.97-9H5.21l-.94-2H1v2zm16 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_road\": {\n    \"name\": \"edit_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,4 16,4 16,11.9 18,9.9\\\"></polygon><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"16\\\"></rect><path d=\\\"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"9\\\"></rect><path d=\\\"M18.07,9.64l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0L11,13.88V16h2.12l4.95-4.95C18.46,10.66,18.46,10.03,18.07,9.64z M12.71,15H12v-0.71l3.24-3.24l0.71,0.71L12.71,15z\\\"></path><polygon points=\\\"14,4 13,4 13,10.46 14,9.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"category\": {\n    \"name\": \"category\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2l-5.5 9h11z\\\"></path><circle cx=\\\"17.5\\\" cy=\\\"17.5\\\" r=\\\"4.5\\\"></circle><path d=\\\"M3 13.5h8v8H3z\\\"></path>\"\n      }\n    }\n  },\n  \"fork_right\": {\n    \"name\": \"fork_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.59,15.59L16,17l4-4l-4-4l-1.41,1.41L16.17,12c-1.51-0.33-3.73,0.08-5.17,1.36l0-6.53l1.59,1.59L14,7l-4-4L6,7 l1.41,1.41L9,6.83V21l2,0v-4c0.73-2.58,3.07-3.47,5.17-3L14.59,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,11.36c1.2-1.05,2.74-1.4,4.13-1.11l-1.19-1.19L13,8l3,3l-3,3l-1.06-1.06l1.19-1.19C11.26,11.32,9.56,12.28,9,14v3H7.5 l0-11.13L6.31,7.06L5.25,6l3-3l3,3l-1.06,1.06L9,5.87L9,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_movies\": {\n    \"name\": \"local_movies\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"streetview\": {\n    \"name\": \"streetview\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z\\\"></path><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"5\\\"></circle><path d=\\\"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"soup_kitchen\": {\n    \"name\": \"soup_kitchen\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.4,7C6.06,7.55,6,7.97,6,8.38C6,9.15,7,11,7,12c0,0.95-0.4,1.5-0.4,1.5H5.1c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62 C4.5,7.97,4.56,7.55,4.9,7H6.4z M11.4,7C11.06,7.55,11,7.97,11,8.38C11,9.15,12,11,12,12c0,0.95-0.4,1.5-0.4,1.5h1.5 c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H11.4z M8.15,7c-0.34,0.55-0.4,0.97-0.4,1.38 c0,0.77,1,2.63,1,3.62c0,0.95-0.4,1.5-0.4,1.5h1.5c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H8.15z M21.47,6.5c0,0,0.13-1.06,0.13-1.5c0-1.65-1.35-3-3-3c-1.54,0-2.81,1.16-2.98,2.65L14.53,15l-11.6,0c-0.02,3.87,3.09,7,6.82,7 c3.48,0,6.34-2.73,6.71-6.23l1.15-10.87C17.66,4.39,18.08,4,18.6,4c0.55,0,1,0.45,1,1c0,0.3-0.1,1.25-0.1,1.25L21.47,6.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M4.96,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79C4.5,6.74,4.54,6.42,4.81,6h0.98 C5.53,6.42,5.48,6.74,5.48,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H4.96z M8.32,11c0,0,0.31-0.42,0.31-1.15 c0-0.77-0.77-2.19-0.77-2.79C7.86,6.74,7.9,6.42,8.16,6H7.18C6.92,6.42,6.88,6.74,6.88,7.06c0,0.59,0.77,2.02,0.77,2.79 c0,0.73-0.31,1.15-0.31,1.15H8.32z M10.69,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79c0-0.31,0.04-0.64,0.31-1.06H9.56 C9.29,6.42,9.25,6.74,9.25,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H10.69z M17.68,5.49 c0,0,0.06-0.42,0.07-1.12c0.01-1.09-0.71-2.1-1.78-2.32C14.61,1.77,13.4,2.73,13.26,4l-0.94,8.4l-9.34,0C2.97,15.49,5.42,18,8.4,18 c2.78,0,5.07-2.18,5.36-4.99l0.99-8.84c0.04-0.38,0.36-0.67,0.75-0.67c0.41,0,0.75,0.34,0.75,0.75S16.2,5.3,16.2,5.3L17.68,5.49z\\\"></path></g>\"\n      }\n    }\n  },\n  \"castle\": {\n    \"name\": \"castle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-5h4v5h9V9H21z M11,12H9V9h2V12z M15,12h-2V9h2V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.5,7v2H16V2h-1.5v2h-2V2H11v2H9V2H7.5v2h-2V2H4v7H2.5V7H1v10h7v-4h4v4h7V7H17.5z M9,10H7.5V7H9V10z M12.5,10H11V7h1.5 V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hardware\": {\n    \"name\": \"hardware\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><g><path d=\\\"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v3h6V8l3,3h2V3H18z\\\"></path></g><g><path d=\\\"M9,13v8h6v-8H9z\\\"></path></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"6.25\\\" width=\\\"4.5\\\" x=\\\"7.5\\\" y=\\\"10.75\\\"></rect><path d=\\\"M14.5,3L12,5.5V3H8C5.79,3,4,4.79,4,7h3.5v2.25H12V6.5L14.5,9H16V3H14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"trip_origin\": {\n    \"name\": \"trip_origin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"pedal_bike\": {\n    \"name\": \"pedal_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.18,10L16,4h-4v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9c-0.44-2.23-2.31-3.88-4.65-3.99 C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5 c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64 l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.82,9L13,4h-3v1h2.3l1.46,4H8.75L8.38,8H10V7H6v1h1.32l1.46,4H7.95C7.7,10.19,6.12,8.86,4.2,9.01 c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,14.25,2.41,16,4.5,16c1.79,0,3.21-1.29,3.45-3h4.1c0.25,1.81,1.83,3.14,3.75,2.99 c1.64-0.13,3.01-1.46,3.18-3.1C19.2,10.75,17.59,9,15.5,9H14.82z M9.11,10h3.92c-0.53,0.52-0.88,1.22-0.98,2H9.84L9.11,10z M4.5,15 C3.1,15,2,13.9,2,12.5S3.1,10,4.5,10c1.23,0,2.23,0.85,2.45,2H4v1h2.95C6.73,14.15,5.73,15,4.5,15z M15.5,15 c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,10.02,15.4,10,15.5,10 c1.4,0,2.5,1.1,2.5,2.5S16.9,15,15.5,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"store_mall_directory\": {\n    \"name\": \"store_mall_directory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z\\\"></path>\"\n      }\n    }\n  },\n  \"local_hotel\": {\n    \"name\": \"local_hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant_menu\": {\n    \"name\": \"restaurant_menu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"train\": {\n    \"name\": \"train\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z\\\"></path>\"\n      }\n    }\n  },\n  \"moving\": {\n    \"name\": \"moving\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.71,9.71L22,12V6h-6l2.29,2.29l-4.17,4.17c-0.39,0.39-1.02,0.39-1.41,0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24,0L2,16.59 L3.41,18l5.29-5.29c0.39-0.39,1.02-0.39,1.41,0l1.17,1.17c1.17,1.17,3.07,1.17,4.24,0L19.71,9.71z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.03,8.03l-3.23,3.23c-0.98,0.98-2.56,0.98-3.54,0l-0.7-0.7c-0.39-0.39-1.02-0.39-1.41,0l-4.09,4.09L2,13.59L6.08,9.5 c0.98-0.98,2.56-0.98,3.54,0l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0l3.23-3.23L13,5h5v5L16.03,8.03z\\\"></path>\"\n      }\n    }\n  },\n  \"local_police\": {\n    \"name\": \"local_police\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M3,5v6 c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5l-9-4L3,5z\\\"></path>\"\n      }\n    }\n  },\n  \"my_location\": {\n    \"name\": \"my_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"car_crash\": {\n    \"name\": \"car_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,7h-1V3h1V7z M18.5,8v1h-1V8H18.5z M17.91,13 c0.06,0.16,0.09,0.33,0.09,0.5c0,0.83-0.67,1.5-1.5,1.5S15,14.33,15,13.5c0-0.39,0.15-0.74,0.39-1.01 c-1.63-0.66-2.96-1.91-3.71-3.49H5.81l1.04-3H11c0-0.69,0.1-1.37,0.29-2H5.41L3,11v9h3v-2h12v2h3v-7.68 C19.95,12.83,18.84,13.01,17.91,13z M7.5,15C6.67,15,6,14.33,6,13.5S6.67,12,7.5,12S9,12.67,9,13.5S8.33,15,7.5,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M19,5c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S19,2.79,19,5z M15.5,6h-1v1h1V6z M15.5,3h-1v2h1V3z M15,10.5 c-0.32,0-0.64-0.03-0.94-0.08c0.27,0.18,0.44,0.48,0.44,0.83c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c0-0.51,0.39-0.93,0.88-0.99 C12.14,9.87,11.09,9.06,10.39,8H5.02l1-2.5h3.51C9.47,4.99,9.51,4.39,9.59,4H5L3,9l0,7h2v-1.5h10V16h2v-5.88 C16.38,10.37,15.71,10.5,15,10.5z M6.5,12.25c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1S7.05,12.25,6.5,12.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"u_turn_left\": {\n    \"name\": \"u_turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,9v12h-2V9c0-2.21-1.79-4-4-4S8,6.79,8,9v4.17l1.59-1.59L11,13l-4,4l-4-4l1.41-1.41L6,13.17V9c0-3.31,2.69-6,6-6 S18,5.69,18,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,7.5C5.5,5.01,7.51,3,10,3s4.5,2.01,4.5,4.5V16H13V7.5c0-1.66-1.34-3-3-3s-3,1.34-3,3l0,2.63l1.19-1.19L9.25,10l-3,3 l-3-3l1.06-1.06l1.19,1.19L5.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"run_circle\": {\n    \"name\": \"run_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M11,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 s-1-0.45-1-1C10,5.45,10.45,5,11,5z M13.5,10.62c-0.6,0-1.87-0.38-2.67-1.4l-0.21,1.19L12,11.79V15h-1v-2.79l-1-0.99l-0.42,2.13 l-3.17-0.65l0.2-0.98l2.19,0.45l0.62-3.12L8.5,9.37v1.25h-1V8.67l2.67-0.96c0.46-0.16,0.99,0.01,1.22,0.44 c0.7,1.32,1.77,1.47,2.11,1.47V10.62z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bike\": {\n    \"name\": \"electric_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7h-0.82L16,1h-4v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9C9.46,8.77,7.59,7.12,5.25,7.01 C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5 C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64 l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,7h-0.68L13,2h-3v1h2.3l1.46,4H8.75L8.38,6H10V5H6v1h1.32l1.46,4H7.95C7.7,8.19,6.12,6.86,4.2,7.01 c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,12.25,2.41,14,4.5,14c1.79,0,3.21-1.29,3.45-3h4.1c0.25,1.81,1.83,3.14,3.75,2.99 c1.64-0.13,3.01-1.46,3.18-3.1C19.2,8.75,17.59,7,15.5,7z M6.95,11c-0.23,1.15-1.22,2-2.45,2C3.1,13,2,11.9,2,10.5S3.1,8,4.5,8 c1.23,0,2.23,0.85,2.45,2H4v1H6.95z M12.05,10H9.84L9.11,8h3.92C12.5,8.52,12.16,9.22,12.05,10z M15.5,13c-1.4,0-2.5-1.1-2.5-2.5 c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,8.02,15.4,8,15.5,8c1.4,0,2.5,1.1,2.5,2.5S16.9,13,15.5,13z\\\"></path><polygon points=\\\"9.5,16 7,16 10.5,18 10.5,17 13,17 9.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_hospital\": {\n    \"name\": \"local_hospital\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3.01L3 21h18V3zm-3 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"tire_repair\": {\n    \"name\": \"tire_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,7c0,0.55,0.45,1,1,1c0.28,0,0.53-0.11,0.71-0.29c0.4-0.4,1.04-2.46,1.04-2.46s-2.06,0.64-2.46,1.04 C18.11,6.47,18,6.72,18,7z\\\"></path><path d=\\\"M19,2c-2.76,0-5,2.24-5,5c0,2.05,1.23,3.81,3,4.58V13h1v6h-2v-6h-4V5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v14 c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2v-4h2v6h6v-8h1v-1.42c1.77-0.77,3-2.53,3-4.58C24,4.24,21.76,2,19,2z M6,19.5l-2-2v-2.83l2,2 V19.5z M6,14.5l-2-2V9.67l2,2V14.5z M6,9.5l-2-2V4.67l2,2V9.5z M10,17.5l-2,2v-2.83l2-2V17.5z M10,12.5l-2,2v-2.83l2-2V12.5z M10,7.5l-2,2V6.67l2-2V7.5z M19,10c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S20.66,10,19,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,5.75c0,0.41,0.34,0.75,0.75,0.75c0.21,0,0.39-0.08,0.53-0.22C15.58,5.98,16,4.5,16,4.5s-1.48,0.42-1.78,0.72 C14.08,5.36,14,5.54,14,5.75z\\\"></path><path d=\\\"M14.75,2C12.68,2,11,3.68,11,5.75c0,1.44,0.81,2.69,2,3.32V10h1v5.5h-1.5V11h-3V4.5C9.5,3.67,8.83,3,8,3H3.5 C2.67,3,2,3.67,2,4.5v11C2,16.33,2.67,17,3.5,17H8c0.83,0,1.5-0.67,1.5-1.5v-3H11V17h4.5v-7h1V9.07c1.19-0.63,2-1.88,2-3.32 C18.5,3.68,16.82,2,14.75,2z M5,15.5L3.5,14v-2.12l1.5,1.5V15.5z M5,11.75l-1.5-1.5V8.13L5,9.62V11.75z M5,8L3.5,6.5V4.38L5,5.88 V8z M8,14l-1.5,1.5v-2.12l1.5-1.5V14z M8,10.25l-1.5,1.5V9.62L8,8.13V10.25z M8,6.5L6.5,8V5.88L8,4.38V6.5z M14.75,8 c-1.24,0-2.25-1.01-2.25-2.25c0-1.24,1.01-2.25,2.25-2.25S17,4.51,17,5.75C17,6.99,15.99,8,14.75,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"egg\": {\n    \"name\": \"egg\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3C8.5,3,5,9.33,5,14c0,3.87,3.13,7,7,7s7-3.13,7-7C19,9.33,15.5,3,12,3z M13,18c-3,0-5-1.99-5-5c0-0.55,0-1,0-1h2 c0,0,0,1,0,1c0,2.92,2.42,3,3,3c0.55,0,1,0,1,0l0,2C14,18,13.55,18,13,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-2.75,0-5.5,4.93-5.5,8.56C4.5,14.56,6.96,17,10,17s5.5-2.44,5.5-5.44C15.5,7.93,12.75,3,10,3z M10.25,14.5 C8.37,14.5,7,12.92,7,10.75C7,10.34,7,10,7,10h1.5c0,0,0,0.5,0,0.75c0,1.12,0.54,2.25,1.75,2.25c0.41,0,0.75-0.01,0.75,0 c0,0,0,1.5,0,1.5S10.66,14.5,10.25,14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_pizza\": {\n    \"name\": \"local_pizza\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"liquor\": {\n    \"name\": \"liquor\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><g><path d=\\\"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z\\\"></path></g><g><path d=\\\"M22,9l-3-1.01V2h-5v6l-3,1.01V22h11V9z M16,4h1v1h-1V4z M13,10.44l3-0.98V7h1v2.46l3,0.98V12h-7V10.44z M20,20h-7v-2h7 V20z\\\"></path></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M3,11.5c0,1.12,0.74,2.05,1.75,2.37v2.63H3V18h5v-1.5H6.25v-2.63C7.26,13.55,8,12.62,8,11.5V5H3V11.5z M6.5,6.5V9h-2V6.5 H6.5z\\\"></path></g><g><path d=\\\"M18,8l-2.5-1V2h-4v5L9,8v10h9V8z M14,3.5v1h-1v-1H14z M13,8.02L13,6h1l-0.04,2l2.54,1.02V10h-6V9.02L13,8.02z M10.5,16.5 V15h6v1.5H10.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_taxi\": {\n    \"name\": \"local_taxi\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.58 5H15V3H9v2H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_truck\": {\n    \"name\": \"fire_truck\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M23,11l-2-6h-2V3h-3v2h-4v6H1v7h3c0,1.66,1.34,3,3,3s3-1.34,3-3h4c0,1.66,1.34,3,3,3s3-1.34,3-3h3V11z M7,19 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,19,7,19z M17,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,19,17,19z M14,11V7h5.56l1.33,4H14z\\\"></path><path d=\\\"M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5z M5.25,8.5H3.5v-2h1.75V8.5z M8.5,8.5H6.75v-2H8.5V8.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M19,9l-2-4h-1.5V3H13v2h-3v4.5H1V15h2.05c0.23,1.14,1.24,2,2.45,2c1.21,0,2.22-0.86,2.45-2h4.1c0.23,1.14,1.24,2,2.45,2 c1.21,0,2.22-0.86,2.45-2H19V9z M5.5,15.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,15.5,5.5,15.5z M14.5,15.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.05,15.5,14.5,15.5z M17.5,9.5h-6v-3h4.57l1.43,2.85V9.5z\\\"></path><path d=\\\"M9,7.5H8V6h1V5H1v1h1v1.5H1v1h8V7.5z M4.5,7.5H3V6h1.5V7.5z M7,7.5H5.5V6H7V7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_car\": {\n    \"name\": \"directions_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.58 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_right\": {\n    \"name\": \"ramp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,21h2V6.83l1.59,1.59L16,7l-4-4L8,7l1.41,1.41L11,6.83V9c0,4.27-4.03,7.13-6,8.27l1.46,1.46 C8.37,17.56,9.9,16.19,11,14.7L11,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,5.87L8.06,7.06L7,6l3-3l3,3l-1.06,1.06l-1.19-1.19l0,11.13h-1.5l0-4.99l0-0.01c-1.02,1.39-2.35,2.43-3.39,3.09 L4.77,14c1.6-0.96,4.48-3.18,4.48-6.3L9.25,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mosque\": {\n    \"name\": \"mosque\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.12,8C6,8,18,8,17.88,8\\\"></path><path d=\\\"M17.88,8C17.95,7.71,18,7.41,18,7.09c0-1.31-0.65-2.53-1.74-3.25L12,1L7.74,3.84C6.65,4.56,6,5.78,6,7.09 C6,7.41,6.05,7.71,6.12,8\\\"></path><path d=\\\"M24,7c0-1.1-2-3-2-3s-2,1.9-2,3c0,0.74,0.4,1.38,1,1.72V13h-2V9H5v4H3V8.72C3.6,8.38,4,7.74,4,7c0-1.1-2-3-2-3S0,5.9,0,7 c0,0.74,0.4,1.38,1,1.72V21h9v-6h4v6h9V8.72C23.6,8.38,24,7.74,24,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.83,7C14.93,6.68,15,6.34,15,5.99c0-1.23-0.65-2.38-1.71-3.01L10,1L6.71,2.98C5.65,3.61,5,4.76,5,5.99 C5,6.34,5.07,6.68,5.17,7\\\"></path><path d=\\\"M19.75,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5c0,0.55,0.3,1.03,0.75,1.29V11H16V8H4c0,0,0,0,0,0v3H2.5V6.79 C2.95,6.53,3.25,6.05,3.25,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5c0,0.55,0.3,1.03,0.75,1.29V17h7v-5h4v5h7V6.79 C19.45,6.53,19.75,6.05,19.75,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electrical_services\": {\n    \"name\": \"electrical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"18\\\" y=\\\"13\\\"></rect><polygon points=\\\"12,12 12,14 10,14 10,18 12,18 12,20 17,20 17,12\\\"></polygon><polygon points=\\\"5,11 12,11 12,4 4,4 4,6 10,6 10,9 3,9 3,17 9,17 9,15 5,15\\\"></polygon><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"18\\\" y=\\\"17\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5,9 10,9 10,4 5,4 5,5 9,5 9,8 4,8 4,13.5 7,13.5 7,12.5 5,12.5\\\"></polygon><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"14\\\"></rect><polygon points=\\\"9,12 8,12 8,14 9,14 9,16 13,16 13,10 9,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"satellite\": {\n    \"name\": \"satellite\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_transit\": {\n    \"name\": \"directions_transit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_bike\": {\n    \"name\": \"directions_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L6.31 9.9 11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"transit_enterexit\": {\n    \"name\": \"transit_enterexit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_hydrant_alt\": {\n    \"name\": \"fire_hydrant_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,11h-3V8h2V6h-2.35C16.83,3.67,14.61,2,12,2S7.17,3.67,6.35,6H4v2h2v3H3v6h3v3H4v2h16v-2h-2v-3h3V11z M12,17.5 c-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.93,17.5,12,17.5z\\\"></path><circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"11.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M17,9h-2V7h1V5.5h-1.25C14.11,3.48,12.24,2,10,2S5.89,3.48,5.25,5.5H4V7h1v2H3v5h2v2.5H4V18h12v-1.5h-1V14h2V9z M10.54,14.2c-1.94,0.37-3.6-1.3-3.24-3.24c0.2-1.08,1.08-1.96,2.16-2.16c1.94-0.37,3.6,1.3,3.24,3.24 C12.49,13.11,11.61,13.99,10.54,14.2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"minor_crash\": {\n    \"name\": \"minor_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.57,8H5.43L3,15v9h3v-2h12v2h3v-9L18.57,8z M6.85,10h10.29l1.04,3H5.81L6.85,10z M6,17.5C6,16.67,6.67,16,7.5,16 S9,16.67,9,17.5S8.33,19,7.5,19S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19 S15,18.33,15,17.5z M9.41,5L8,6.41l-3-3L6.41,2L9.41,5z M16,6.41L14.59,5l3-3L19,3.41L16,6.41z M13,5h-2V0h2V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,12v7h-2v-1.5H5V19H3l0-7l2-5h10L17,12z M6.02,8.5l-1,2.5h9.97l-1-2.5H6.02z M6.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1 c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S14.05,13.25,13.5,13.25z M6.95,5.75L8,4.7L5.65,2.35L4.6,3.4L6.95,5.75z M15.4,3.4l-1.05-1.05L12,4.7l1.05,1.05L15.4,3.4z M10.75,4.7h-1.5V1h1.5V4.7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_library\": {\n    \"name\": \"local_library\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"local_parking\": {\n    \"name\": \"local_parking\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"factory\": {\n    \"name\": \"factory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,10v12H2V10l7-3v2l5-2l0,0l0,3H22z M17.2,8.5L18,2h3l0.8,6.5H17.2z M11,18h2v-4h-2V18z M7,18h2v-4H7V18z M17,14h-2v4h2 V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.85,7.5L17,2h-2l-0.85,5.5L17.85,7.5z M11.5,8.5V6l-4,1.75V6L2,8.5V18h16V8.5H11.5z M7.5,15H6v-3.5h1.5V15z M10.75,15 h-1.5v-3.5h1.5V15z M14,15h-1.5v-3.5H14V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_pin_circle\": {\n    \"name\": \"person_pin_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c-1.33 0-4 .67-4 2v.16c.97 1.12 2.4 1.84 4 1.84s3.03-.72 4-1.84V13c0-1.33-2.67-2-4-2zm0-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-8c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"volunteer_activism\": {\n    \"name\": \"volunteer_activism\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"11\\\"></rect><path d=\\\"M16,3.25C16.65,2.49,17.66,2,18.7,2C20.55,2,22,3.45,22,5.3c0,2.27-2.91,4.9-6,7.7c-3.09-2.81-6-5.44-6-7.7 C10,3.45,11.45,2,13.3,2C14.34,2,15.35,2.49,16,3.25z\\\"></path><polygon points=\\\"22,17 13,17 10.91,16.27 11.24,15.32 13,16 17,16 17,14 8.97,11 7,11 7,20.02 14,22 22,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"9\\\" width=\\\"3\\\" x=\\\"1\\\" y=\\\"9\\\"></rect><path d=\\\"M13.25,10.5C15.7,8.28,18,6.41,18,4.61C18,3.15,16.85,2,15.39,2c-0.82,0-1.62,0.39-2.14,0.99C12.74,2.39,11.94,2,11.11,2 C9.65,2,8.5,3.15,8.5,4.61C8.5,6.4,10.8,8.28,13.25,10.5z\\\"></path><path d=\\\"M10.5,14l-1.53-0.51l0.36-1.01L10.5,13H14v-1.5L7,9H5.5v7.36l6,1.64l6.5-2.5V14H10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bakery_dining\": {\n    \"name\": \"bakery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><polygon points=\\\"16.36,7.58 15.5,16.99 17,16.99 20.16,9.1\\\"></polygon></g><g><polygon points=\\\"3.84,9.1 7,16.99 8.5,16.99 7.64,7.58\\\"></polygon></g><g><polygon points=\\\"10,16.99 14,16.99 15,6 9,6\\\"></polygon></g><g><polygon points=\\\"20.32,12.75 18.51,17.25 20.46,18.21 22.52,16.99\\\"></polygon></g><g><polygon points=\\\"1.48,16.99 3.54,18.21 5.49,17.25 3.68,12.75\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><polygon points=\\\"3.25,7.59 5.88,14 7.33,14 6.62,6.26\\\"></polygon></g><g><polygon points=\\\"13.38,6.26 12.67,14 14.12,14 16.75,7.59\\\"></polygon></g><g><polygon points=\\\"8.35,14 11.65,14 12.48,5 7.52,5\\\"></polygon></g><g><polygon points=\\\"16.71,10.33 15.11,14.24 17.19,15.29 18.55,13.91\\\"></polygon></g><g><polygon points=\\\"1.45,13.91 2.81,15.29 4.89,14.24 3.29,10.33\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"add_road\": {\n    \"name\": \"add_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\\\"></polygon><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"7\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"14\\\"></rect><polygon points=\\\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\\\"></polygon><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"electric_scooter\": {\n    \"name\": \"electric_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74L17.49,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0c-2.16,0.65-3.81,2.48-4.19,4.75 H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18C6.3,18,7.4,17.16,7.82,16z M5,16 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z\\\"></path><path d=\\\"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,13,15,13z\\\"></path><path d=\\\"M12,11.99C12,10.34,13.34,9,14.99,9l0.24,0l-1.38-6H10v1h3.05l0.95,4.14c-1.57,0.4-2.75,1.72-2.96,3.36H6.93 c-0.26-1.01-1.29-1.72-2.44-1.44c-0.71,0.18-1.29,0.78-1.44,1.5C2.77,12.86,3.75,14,5,14c0.93,0,1.71-0.64,1.93-1.5H12V11.99z M5,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,13,5,13z\\\"></path><polygon points=\\\"9.5,15 7,15 10.5,17 10.5,16 13,16 9.5,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"u_turn_right\": {\n    \"name\": \"u_turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,9v12h2V9c0-2.21,1.79-4,4-4s4,1.79,4,4v4.17l-1.59-1.59L13,13l4,4l4-4l-1.41-1.41L18,13.17V9c0-3.31-2.69-6-6-6 S6,5.69,6,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.5,7.5C14.5,5.01,12.49,3,10,3S5.5,5.01,5.5,7.5V16H7l0-8.5c0-1.66,1.34-3,3-3s3,1.34,3,3l0,2.63l-1.19-1.19L10.75,10 l3,3l3-3l-1.06-1.06l-1.19,1.19L14.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"beenhere\": {\n    \"name\": \"beenhere\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.01 1L3 17l9 6 8.99-6L21 1H3.01zM10 16l-5-5 1.41-1.42L10 13.17l7.59-7.59L19 7l-9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"forest\": {\n    \"name\": \"forest\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16,12 9,2 2,12 3.86,12 0,18 7,18 7,22 11,22 11,18 18,18 14.14,12\\\"></polygon><polygon points=\\\"20.14,12 22,12 15,2 12.61,5.41 17.92,13 16,13 15.97,13 19.19,18 24,18\\\"></polygon><rect height=\\\"3\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,10 8,2 3,10 4.18,10 1,15 6.5,15 6.5,18 9.5,18 9.5,15 15,15 11.82,10\\\"></polygon><polygon points=\\\"15.82,10 17,10 12,2 10.59,4.26 14.8,11 13.64,11 16.19,15 19,15\\\"></polygon><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"10.5\\\" y=\\\"16\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"directions_railway_filled\": {\n    \"name\": \"directions_railway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5 V6C20,2.5,16.42,2,12,2z M12,16c-0.83,0-1.5-0.67-1.5-1.5S11.17,13,12,13s1.5,0.67,1.5,1.5S12.83,16,12,16z M18,10H6V7h12V10z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"icecream\": {\n    \"name\": \"icecream\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18.38,6.24C17.79,3.24,15.14,1,12,1S6.21,3.24,5.62,6.24C4.08,6.81,3,8.29,3,10c0,2.21,1.79,4,4,4 c0.12,0,0.23-0.02,0.34-0.02L12.07,23l4.61-9.03C16.79,13.98,16.89,14,17,14c2.21,0,4-1.79,4-4C21,8.29,19.92,6.81,18.38,6.24z M12.05,18.63l-2.73-5.21C10.15,13.79,11.06,14,12,14c0.95,0,1.88-0.21,2.72-0.6L12.05,18.63z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.92,5.16C14.51,2.8,12.47,1,10,1S5.49,2.8,5.08,5.16C3.88,5.55,3,6.66,3,8c0,1.66,1.34,3,3,3c0.02,0,0.03,0,0.04,0 L10,19l3.96-8c0.01,0,0.03,0,0.04,0c1.66,0,3-1.34,3-3C17,6.66,16.12,5.55,14.92,5.16z M10,15.61l-2.49-5.04 c0.16-0.1,0.07-0.08,0.37-0.08C8.53,10.81,9.24,11,10,11s1.47-0.19,2.12-0.5c0.3,0,0.21-0.02,0.37,0.08L10,15.61z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_airport\": {\n    \"name\": \"local_airport\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tram\": {\n    \"name\": \"tram\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z\\\"></path>\"\n      }\n    }\n  },\n  \"stadium\": {\n    \"name\": \"stadium\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,5L3,7V3L7,5z M18,3v4l4-2L18,3z M11,2v4l4-2L11,2z M5,10.04C6.38,10.53,8.77,11,12,11s5.62-0.47,7-0.96 C19,9.86,16.22,9,12,9S5,9.86,5,10.04z M15,17H9l0,4.88C4.94,21.49,2,20.34,2,19v-9c0-1.66,4.48-3,10-3s10,1.34,10,3v9 c0,1.34-2.94,2.48-7,2.87L15,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,4.5L3,6V3L6,4.5z M15,3v3l3-1.5L15,3z M9,2v3l3-1.5L9,2z M18,8.25c0,0,0,5.87,0,7.25c0,1.11-2.31,2.06-5.5,2.39l0-3.89 h-5l0,3.89C4.31,17.56,2,16.61,2,15.5c0-0.99,0-7.25,0-7.25C2,7.01,5.58,6,10,6S18,7.01,18,8.25z M4.4,8.3C5.51,8.65,7.42,9,10,9 s4.49-0.35,5.6-0.7c0-0.21-2.38-0.8-5.6-0.8S4.4,8.09,4.4,8.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"breakfast_dining\": {\n    \"name\": \"breakfast_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M17.85,3L6.14,3C4.15,3,2.36,4.39,2.05,6.36C1.78,8.11,2.64,9.65,4,10.45V21h16V10.45c1.36-0.79,2.23-2.36,1.95-4.11 C21.63,4.38,19.83,3,17.85,3z M16.41,13L12,17.42L7.59,13L12,8.59L16.41,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M17.99,5.74C17.86,4.16,16.43,3,14.85,3H5.15C3.57,3,2.14,4.16,2.01,5.74C1.89,7.16,2.76,8.38,4,8.82V17h12l0-8.18 C17.24,8.38,18.11,7.16,17.99,5.74z M13.41,11L10,14.41L6.59,11c0,0,0,0,0,0L10,7.59c0,0,0,0,0,0L13.41,11 C13.41,11,13.41,11,13.41,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"takeout_dining\": {\n    \"name\": \"takeout_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"22,7.46 20.59,6.05 19,7.63 19.03,7.07 14.98,3 9.02,3 4.97,7.07 5,7.57 3.41,6.01 2,7.44 4.66,10 19.35,10\\\"></polygon><polygon points=\\\"5.93,20 18.07,20 18.7,11.55 5.3,11.55\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5.5,16 14.5,16 14.8,10 5.2,10\\\"></polygon><polygon points=\\\"16.44,5.5 14.95,6.99 15,6 12,3 8,3 5,6 5.05,6.99 3.56,5.5 2.5,6.56 4.94,9 15.06,9 17.5,6.56\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"edit_location\": {\n    \"name\": \"edit_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.11 1.77L19.78.1l2.12 2.12-1.67 1.67-2.12-2.12zm-1 1l2.12 2.12L13.12 11H11V8.89l6.11-6.12zm-1.98-.13L9.5 8.27v4.24h4.24l5.62-5.62c.41.99.64 2.1.64 3.32 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2 1.09 0 2.16.22 3.13.63z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_subway_filled\": {\n    \"name\": \"directions_subway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M8.5,16C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M11,10H6V7h5V10z M15.5,16 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10h-5V7h5V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_activity\": {\n    \"name\": \"local_activity\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z\\\"></path>\"\n      }\n    }\n  },\n  \"layers\": {\n    \"name\": \"layers\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z\\\"></path>\"\n      }\n    }\n  },\n  \"directions\": {\n    \"name\": \"directions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.41 12 12 1.59 1.59 11.99 12 22.41 22.41 12zM14 14.5V12h-4v3H8v-5h6V7.5l3.5 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"add_location_alt\": {\n    \"name\": \"add_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z\\\"></path>\"\n      }\n    }\n  },\n  \"handyman\": {\n    \"name\": \"handyman\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.37,12.87h-0.99l-2.54,2.54v0.99l6.01,6.01l3.54-3.54L16.37,12.87z\\\"></path></g><g><path d=\\\"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-6.01,6.01 l3.54,3.54l6.01-6.01v-2.12l5.15-5.15L17.34,10.19z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.41,15.29l-4.24-4.24h-1.41l-0.34-0.34l-0.71,0.71l0.34,0.34v1.41l4.24,4.24L17.41,15.29z\\\"></path><path d=\\\"M12.57,8.14L12.57,8.14l0.88,0.88l1.06-1.06l1.41,1.41c0.78-0.78,0.78-2.05,0-2.83l-2.47-2.47l-0.74,0.74l0-1.49 l-0.49-0.49L9.74,5.31l0.49,0.49l1.49,0l-0.74,0.74l0.88,0.88L10,9.29L7.51,6.81l0.15-1.26L5.36,3.23L3.23,5.36l2.31,2.31 l1.26-0.15L9.29,10l-1.05,1.05H6.83l-4.24,4.24l2.12,2.12l4.24-4.24v-1.41L12.57,8.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"attractions\": {\n    \"name\": \"attractions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M10.44,18.75c0.37-0.46,0.94-0.75,1.57-0.75s1.19,0.29,1.56,0.75c0.39-0.09,0.76-0.21,1.12-0.36l-1.42-3.18 c-0.39,0.15-0.82,0.23-1.26,0.23c-0.46,0-0.9-0.09-1.3-0.25l-1.43,3.19C9.65,18.54,10.03,18.67,10.44,18.75z M5.16,10 C5,10.59,4.91,11.21,4.91,11.85c0,0.75,0.12,1.47,0.33,2.15c0.63,0.05,1.22,0.4,1.56,0.99c0.33,0.57,0.35,1.23,0.11,1.79 c0.27,0.27,0.56,0.53,0.87,0.76l1.52-3.39l0,0c-0.47-0.58-0.75-1.32-0.75-2.13c0-1.89,1.55-3.41,3.46-3.41s3.46,1.53,3.46,3.41 c0,0.82-0.29,1.57-0.78,2.16l1.5,3.35c0.32-0.24,0.62-0.5,0.9-0.79c-0.22-0.55-0.2-1.2,0.12-1.75c0.33-0.57,0.9-0.92,1.52-0.99 c0.22-0.68,0.34-1.41,0.34-2.16c0-0.64-0.09-1.27-0.25-1.86c-0.64-0.04-1.26-0.39-1.6-1c-0.36-0.62-0.35-1.36-0.03-1.95 c-0.91-0.98-2.1-1.71-3.44-2.05C13.4,5.6,12.74,6,12.01,6s-1.39-0.41-1.74-1.01C8.93,5.33,7.74,6.04,6.83,7.02 C7.16,7.62,7.18,8.37,6.81,9C6.45,9.62,5.82,9.97,5.16,10z M3.86,9.58C3.08,8.98,2.84,7.88,3.35,7s1.58-1.23,2.49-0.85 c1.11-1.17,2.56-2.03,4.18-2.42C10.15,2.75,10.99,2,12.01,2s1.85,0.75,1.98,1.73c1.63,0.39,3.07,1.24,4.18,2.42 c0.91-0.38,1.99-0.03,2.49,0.85c0.51,0.88,0.27,1.98-0.51,2.58c0.23,0.77,0.35,1.58,0.35,2.42s-0.12,1.65-0.35,2.42 c0.78,0.6,1.02,1.7,0.51,2.58s-1.58,1.23-2.49,0.85c-0.4,0.43-0.85,0.81-1.34,1.15l1.34,3h-1.86l-0.97-2.17 c-0.43,0.18-0.88,0.33-1.34,0.44C13.86,21.25,13.02,22,12.01,22s-1.85-0.75-1.98-1.73C9.55,20.15,9.09,20,8.65,19.81L7.66,22H5.79 l1.36-3.03c-0.47-0.33-0.91-0.71-1.3-1.12c-0.92,0.38-1.99,0.03-2.5-0.85s-0.27-1.98,0.51-2.58C3.62,13.65,3.51,12.84,3.51,12 S3.62,10.35,3.86,9.58z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M17,10c0-0.68-0.1-1.34-0.29-1.97c0.49-0.55,0.6-1.36,0.21-2.03c-0.39-0.67-1.15-0.98-1.87-0.83 c-0.91-0.95-2.08-1.64-3.4-1.96C11.42,2.51,10.77,2,10,2S8.58,2.51,8.35,3.21c-1.32,0.32-2.49,1.01-3.4,1.96 C4.22,5.02,3.46,5.33,3.07,6C2.68,6.67,2.8,7.48,3.29,8.03C3.1,8.66,3,9.32,3,10s0.1,1.34,0.29,1.97C2.8,12.52,2.68,13.33,3.07,14 c0.39,0.67,1.15,0.98,1.87,0.83c0.33,0.35,0.69,0.66,1.09,0.93L4.99,18h1.66l0.71-1.52c0.32,0.13,0.65,0.23,0.99,0.32 C8.58,17.49,9.23,18,10,18s1.42-0.51,1.65-1.21c0.34-0.08,0.67-0.19,0.99-0.32L13.36,18h1.66l-1.04-2.24 c0.4-0.27,0.76-0.59,1.09-0.93c0.72,0.15,1.48-0.16,1.87-0.83c0.39-0.67,0.27-1.48-0.21-2.03C16.9,11.34,17,10.68,17,10z M11.46,15.3c-0.31-0.48-0.85-0.8-1.46-0.8s-1.15,0.32-1.46,0.8c-0.19-0.05-0.37-0.11-0.55-0.18l1.06-2.28 C9.35,12.93,9.67,13,10,13s0.65-0.07,0.95-0.17l1.06,2.28C11.83,15.18,11.65,15.24,11.46,15.3z M15.32,11.38 c-0.57,0.03-1.11,0.34-1.42,0.87c-0.31,0.53-0.3,1.16-0.04,1.67c-0.17,0.16-0.35,0.32-0.53,0.46l-1.1-2.37 C12.7,11.47,13,10.78,13,10c0-1.66-1.34-3-3-3s-3,1.34-3,3c0,0.78,0.3,1.47,0.78,2.01l-1.1,2.37c-0.19-0.14-0.37-0.29-0.53-0.46 c0.26-0.51,0.26-1.14-0.04-1.67c-0.31-0.53-0.85-0.84-1.42-0.87C4.57,10.94,4.5,10.48,4.5,10s0.07-0.94,0.18-1.38 C5.25,8.59,5.8,8.28,6.1,7.75c0.31-0.53,0.3-1.16,0.04-1.67C6.8,5.44,7.62,4.96,8.54,4.7C8.85,5.18,9.39,5.5,10,5.5 s1.15-0.32,1.46-0.8c0.91,0.25,1.73,0.73,2.39,1.38c-0.26,0.51-0.26,1.14,0.04,1.67c0.31,0.53,0.85,0.84,1.42,0.87 c0.11,0.44,0.18,0.9,0.18,1.38S15.43,10.94,15.32,11.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"egg_alt\": {\n    \"name\": \"egg_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,9C17,7,15.99,2,9.97,2C4.95,2,1.94,6,2,11.52C2.06,17.04,6.96,19,9.97,19c2.01,0,2.01,3,6.02,3C19,22,22,19,22,15.02 C22,12,21.01,11,19,9z M12,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.93,15.5,12,15.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.6,7.6C14,6,13.19,2,8.38,2C4.36,2,1.95,5.2,2,9.62S5.97,16,8.38,16c1.61,0,1.61,2,4.82,2C15.6,18,18,15.6,18,12.42 C18,10,17.21,9.2,15.6,7.6z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"map\": {\n    \"name\": \"map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 5.1L9 3 3 5.02v16.2l6-2.33 6 2.1 6-2.02V2.77L15 5.1zm0 13.79l-6-2.11V5.11l6 2.11v11.67z\\\"></path>\"\n      }\n    }\n  },\n  \"local_phone\": {\n    \"name\": \"local_phone\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 15.46l-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"snowmobile\": {\n    \"name\": \"snowmobile\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,17c0,0.55-0.45,1-1,1h-0.17l-2.2-2.2C21.6,15.18,23,13,23,13l-9-8h-3v2h2.25l1.45,1.3L11,11l-9.5-1L0,13l4.54,1.36 l-3.49,1.88C-0.77,17.22-0.07,20,2,20h6c2.21,0,4-1.79,4-4h4l2,2h-3v2h6c1.66,0,3-1.34,3-3H22z M8,18H2l5.25-2.83L10,16 C10,17.1,9.11,18,8,18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18.5,14.5c0,0.55-0.45,1-1,1l-2.22-2.19C17.25,13,19,12,19,12c-1-1.5-7.5-7.5-7.5-7.5H9V6h1.91l1.22,1.14L9.1,9L1.25,8.5 L0,11l4.32,1.27l-3.53,1.91C-0.58,14.92-0.06,17,1.5,17h5c1.93,0,3.5-1.57,3.5-3.5h3.33l2.05,2H12.5V17h5c1.38,0,2.5-1.12,2.5-2.5 H18.5z M6.5,15.5h-5l4.87-2.63L8.5,13.5C8.5,14.6,7.6,15.5,6.5,15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"subway\": {\n    \"name\": \"subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"local_car_wash\": {\n    \"name\": \"local_car_wash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.58 7H5.43L3 14v9h3v-2h12v2h3v-9l-2.42-7zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5zm12-8c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5z\\\"></path>\"\n      }\n    }\n  },\n  \"local_cafe\": {\n    \"name\": \"local_cafe\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM2 21h18v-2H2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"two_wheeler\": {\n    \"name\": \"two_wheeler\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M14.5,9c-0.16,0-0.31,0.02-0.45,0.05L13,8h1.5V6.5l-2,1L11,6H9.01v1h1.58l1,1H9.5L7,9L6,8H3v1h2.5C4.12,9,3,10.12,3,11.5 C3,12.88,4.12,14,5.5,14c1.23,0,2.24-0.88,2.45-2.05L9,13h1.5l2.03-4.06l0.52,0.52C12.42,9.92,12,10.66,12,11.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,10.12,15.88,9,14.5,9z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10 S7,10.67,7,11.5S6.33,13,5.5,13z M14.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.33,13,14.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"straight\": {\n    \"name\": \"straight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"11,6.83 9.41,8.41 8,7 12,3 16,7 14.59,8.41 13,6.83 13,21 11,21\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"9.25,17 10.75,17 10.75,5.87 11.94,7.06 13,6 10,3 7,6 8.06,7.06 9.25,5.87\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"directions_subway\": {\n    \"name\": \"directions_subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_bus_filled\": {\n    \"name\": \"directions_bus_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44V21h3v-2h8v2h3v-3.06 c0.62-0.63,1-1.49,1-2.44V6C20,2.5,16.42,2,12,2z M8.5,16C7.67,16,7,15.33,7,14.5S7.67,13,8.5,13s1.5,0.67,1.5,1.5S9.33,16,8.5,16z M15.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,16,15.5,16z M18,10H6V7h12V10z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"route\": {\n    \"name\": \"route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,15.18V3h-8v16H7V8.82C8.16,8.4,9,7.3,9,6c0-1.66-1.34-3-3-3S3,4.34,3,6c0,1.3,0.84,2.4,2,2.82V21h8V5h4v10.18 c-1.16,0.41-2,1.51-2,2.82c0,1.66,1.34,3,3,3s3-1.34,3-3C21,16.7,20.16,15.6,19,15.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.25,12.13V3h-6v12.5h-3V7.87C7.26,7.55,8,6.62,8,5.5C8,4.12,6.88,3,5.5,3S3,4.12,3,5.5c0,1.12,0.74,2.05,1.75,2.37V17 h6V4.5h3v7.63C12.74,12.45,12,13.38,12,14.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,13.38,16.26,12.45,15.25,12.13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation_alt\": {\n    \"name\": \"screen_rotation_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7.59l6.41-6.41L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59z M20,19h2v-6h-6v2h2.59l-4.99,5l-7.01-7H3.76l9.83,9.83 L20,16.41V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.56,7.5H6.5V9H2V4.5h1.5v1.94l5.06-5.06L16.18,9h-2.12l-5.5-5.5L4.56,7.5z M15.44,12.5H13.5V11H18v4.5h-1.5v-1.94 l-5.06,5.06L3.82,11h2.12l5.5,5.5L15.44,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"zoom_in_map\": {\n    \"name\": \"zoom_in_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,9l0-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9z M21,9V7l-2.59,0l3.09-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9z M3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0-6L3,15z M15,15l0,6h2v-2.59l3.09,3.09l1.41-1.41L18.41,17H21v-2L15,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.44,6.5L3,4.06L4.06,3L6.5,5.44V4H8v4H4V6.5H5.44z M16,8V6.5h-1.44L17,4.06L15.94,3L13.5,5.44V4H12v4H16z M4.06,17 l2.44-2.44V16H8v-4H4v1.5h1.44L3,15.94L4.06,17z M13.5,14.56L15.94,17L17,15.94l-2.44-2.44H16V12h-4v4h1.5V14.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"safety_check\": {\n    \"name\": \"safety_check\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M12,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 s5,2.24,5,5S14.76,17,12,17z M13.65,14.35l-2.15-2.15V9h1v2.79l1.85,1.85L13.65,14.35z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M10,14c-2.21,0-4-1.79-4-4 c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z M11.15,11.85L9.5,10.21V8h1v1.79l1.35,1.35L11.15,11.85z\\\"></path></g>\"\n      }\n    }\n  },\n  \"departure_board\": {\n    \"name\": \"departure_board\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V23h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68V4z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant\": {\n    \"name\": \"restaurant\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel\": {\n    \"name\": \"hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z\\\"></path>\"\n      }\n    }\n  },\n  \"dry_cleaning\": {\n    \"name\": \"dry_cleaning\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M21,12l-8-3.56V6h-1c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-8,3.56L3,16h4v6h10v-6h4V12z M19,14h-2v-1H7v1H5v-0.7l7-3.11 l7,3.11V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M17,10l-6.25-2.68V5.5H10c-0.62,0-1-0.56-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1h1.5c0-1.56-1.43-2.78-3.05-2.44 C8.5,2.26,7.73,3.05,7.55,4.01c-0.25,1.33,0.55,2.5,1.7,2.86v0.45L3,10v3h3v5h8v-5h3V10z M15.5,11.5H14V11H6v0.5H4.5v-0.51L10,8.63 l5.5,2.36V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fork_left\": {\n    \"name\": \"fork_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.41,15.59L8,17l-4-4l4-4l1.41,1.41L7.83,12c1.51-0.33,3.73,0.08,5.17,1.36l0-6.53l-1.59,1.59L10,7l4-4l4,4l-1.41,1.41 L15,6.83V21l-2,0v-4c-0.73-2.58-3.07-3.47-5.17-3L9.41,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,11.36c-1.2-1.05-2.74-1.4-4.13-1.11l1.19-1.19L7,8l-3,3l3,3l1.06-1.06l-1.19-1.19C8.74,11.32,10.44,12.28,11,14v3h1.5 l0-11.13l1.19,1.19L14.75,6l-3-3l-3,3l1.06,1.06L11,5.87L11,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turn_right\": {\n    \"name\": \"turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"17.17,11 15.59,12.59 17,14 21,10 17,6 15.59,7.41 17.17,9 7,9 7,20 9,20 9,11\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"8,16 6.5,16 6.5,7.5 14.13,7.5 12.94,6.31 14,5.25 17,8.25 14,11.25 12.94,10.19 14.13,9 8,9\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"bike_scooter\": {\n    \"name\": \"bike_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,14h0.74L8.47,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6v-1C6,15.79,7.79,14,10,14z\\\"></path><path d=\\\"M18.18,8l-1.83-5H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79l0.46,2h2.33 c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z\\\"></path><path d=\\\"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,13c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,13,9,13z M9,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,16,9,16z\\\"></path><path d=\\\"M9.24,12L7.64,5H4.01v1h2.84l1.17,5.14c-1.57,0.4-2.75,1.72-2.96,3.36H1v1h5.01v-0.51C6.01,13.34,7.35,12,9,12L9.24,12z\\\"></path><path d=\\\"M15.5,8h-0.68L13,3h-3v1h2.3l1.46,4h-4.4l0.23,1h3.45c-0.53,0.52-0.88,1.22-0.98,2h-2.01l0.23,1h1.79 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,9.75,17.59,8,15.5,8z M15.5,14c-1.4,0-2.5-1.1-2.5-2.5 c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,9.02,15.4,9,15.5,9c1.4,0,2.5,1.1,2.5,2.5S16.9,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"theater_comedy\": {\n    \"name\": \"theater_comedy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11,2v5.5h3.5v3.31C14.55,9.8,15.64,9,16.99,9c1.38,0,2.5,0.84,2.5,1.88H14.5v3.56C15.26,14.8,16.11,15,17,15 c3.31,0,6-2.69,6-6V2H11z M15,7.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,7.5,15,7.5z M19,7.5c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S19.55,7.5,19,7.5z\\\"></path><path d=\\\"M1,16c0,3.31,2.69,6,6,6s6-2.69,6-6V9H1V16z M7,17.88c-1.38,0-2.5-0.84-2.5-1.88h5C9.5,17.04,8.38,17.88,7,17.88z M9,12.5 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S8.45,12.5,9,12.5z M5,12.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S4.45,12.5,5,12.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M1,13c0,2.76,2.24,5,5,5s5-2.24,5-5V7H1V13z M6,14.51c-1.11,0-2-0.67-2-1.51h4C8,13.83,7.11,14.51,6,14.51z M7.5,9.75 c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75C6.75,10.09,7.09,9.75,7.5,9.75z M4.5,9.75 c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75C3.75,10.09,4.09,9.75,4.5,9.75z\\\"></path></g><g><path d=\\\"M9,2v4h2h0.95c-0.12-0.13-0.2-0.31-0.2-0.5c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 c-0.19,0-0.37-0.08-0.5-0.2V7v2.51C12,8.67,12.89,8,14,8s2,0.67,2,1.51h-4v3.07c0.61,0.27,1.29,0.42,2,0.42c2.76,0,5-2.24,5-5V2 H9z M15.5,6.25c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C16.25,5.91,15.91,6.25,15.5,6.25z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_dining\": {\n    \"name\": \"local_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z\\\"></path>\"\n      }\n    }\n  },\n  \"medical_information\": {\n    \"name\": \"medical_information\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,7h-7V2H9v5H2v15h20V7z M11,4h2v5h-2V4z M11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16z M13,14.5V13h6v1.5H13z M13,17.5V16h4v1.5 H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,6h-5.75V2h-4.5v4H2v12h16V6z M9.25,13.25H7.5V15H6v-1.75H4.25v-1.5H6V10h1.5v1.75h1.75V13.25z M9.25,3.5h1.5v4h-1.5 V3.5z M14,14.5h-3.25v-1H14V14.5z M15.75,12h-5v-1h5V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_bus\": {\n    \"name\": \"directions_bus\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 16c0 .88.39 1.67 1 2.22V21h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z\\\"></path>\"\n      }\n    }\n  },\n  \"layers_clear\": {\n    \"name\": \"layers_clear\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 9l-9-7-2.59 2.02 7.87 7.87zm0 5.07l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_left\": {\n    \"name\": \"ramp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,21h-2V6.83L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83V9c0,4.27,4.03,7.13,6,8.27l-1.46,1.46 c-1.91-1.16-3.44-2.53-4.54-4.02L13,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,5.87l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19l0,11.13h1.5l0-4.99l0-0.01c1.02,1.39,2.35,2.43,3.39,3.09 L15.23,14c-1.6-0.96-4.48-3.18-4.48-6.3L10.75,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"electric_rickshaw\": {\n    \"name\": \"electric_rickshaw\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,11.18V9l-5-6H1v12h2.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.48,1.34,1.86,2.25,3.42,1.94 c1.16-0.23,2.11-1.17,2.33-2.33C23.25,13.05,22.34,11.66,21,11.18z M18.4,9H16V6.12L18.4,9z M3,5h4v4H3V5z M6,15 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M9,13v-2h3V9H9V5h5v8H9z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.55,15,20,15z\\\"></path><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"9,17 6,17 11,19.5 11,17.5 14,17.5 9,15\\\"></polygon></g><g><path d=\\\"M17,10.05V8l-4-5H1v9.5h2C3,13.88,4.12,15,5.5,15S8,13.88,8,12.5h6c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5 C19,11.29,18.14,10.28,17,10.05z M2.5,8V4.5h3.75V8H2.5z M5.5,13.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,13.5,5.5,13.5 z M11.5,11H7.75V9.5H10V8H7.75V4.5h3.75V11z M13,8V5.4L15.08,8H13z M16.5,13.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S17.05,13.5,16.5,13.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"add_location\": {\n    \"name\": \"add_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M13,6h-2v3H8v2h3v3h2v-3h3V9h-3V6z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8 c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"delivery_dining\": {\n    \"name\": \"delivery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19,10.35V5h-5v2h3v2.65L13.52,14H10V9H2v7h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35z M7,17c-0.55,0-1-0.45-1-1h2 C8,16.55,7.55,17,7,17z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 C20,16.55,19.55,17,19,17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"5.5\\\"></rect><path d=\\\"M15.5,8.46V5h-4v1.5H14v1.41l-3,3.59H8V8H2v5h1.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5h3.2L15.5,8.46z M6,14 c-0.55,0-1-0.45-1-1h2C7,13.55,6.55,14,6,14z\\\"></path><path d=\\\"M15.5,10.5c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5S18,14.38,18,13S16.88,10.5,15.5,10.5z M15.5,14c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S16.05,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"car_rental\": {\n    \"name\": \"car_rental\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z M17.11,9H6.89L5,14.69V22h2v-2h10v2h2v-7.31L17.11,9z M9,17.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,17.5,9,17.5z M15,17.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,17.5,15,17.5z M7.67,13l0.66-2h7.34l0.66,2H7.67z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,8L5,12v5h1.5v-1h7v1H15v-5l-1.46-4H6.5z M7.75,14.25C7.34,14.25,7,13.91,7,13.5s0.34-0.75,0.75-0.75 S8.5,13.09,8.5,13.5S8.16,14.25,7.75,14.25z M12.25,14.25c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S13,13.09,13,13.5 S12.66,14.25,12.25,14.25z M6.98,11l0.56-1.5h4.95l0.55,1.5H6.98z\\\"></path><path d=\\\"M9.37,2.75C9.05,1.74,8.11,1,7,1C5.62,1,4.5,2.12,4.5,3.5S5.62,6,7,6c1.11,0,2.05-0.74,2.37-1.75h3.13V6H14V4.25h1v-1.5 H9.37z M7,4.5c-0.54,0-1-0.46-1-1s0.46-1,1-1s1,0.46,1,1S7.54,4.5,7,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crisis_alert\": {\n    \"name\": \"crisis_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.5,2.5c0,1.06-0.75,3.64-1.19,5.04C13.13,8.11,12.6,8.5,12,8.5h0c-0.6,0-1.13-0.39-1.31-0.96 C10.25,6.14,9.5,3.56,9.5,2.5C9.5,1.12,10.62,0,12,0S14.5,1.12,14.5,2.5z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 S13.1,10,12,10z M16.08,5.11c0.18-0.75,0.33-1.47,0.39-2.06C19.75,4.69,22,8.08,22,12c0,5.52-4.48,10-10,10S2,17.52,2,12 c0-3.92,2.25-7.31,5.53-8.95C7.6,3.64,7.74,4.37,7.92,5.11C5.58,6.51,4,9.07,4,12c0,4.42,3.58,8,8,8s8-3.58,8-8 C20,9.07,18.42,6.51,16.08,5.11z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6c0-2,0.98-3.77,2.48-4.86c0.23,0.81,0.65,2.07,0.65,2.07 C8.43,9.93,8,10.92,8,12c0,2.21,1.79,4,4,4s4-1.79,4-4c0-1.08-0.43-2.07-1.13-2.79c0,0,0.41-1.22,0.65-2.07C17.02,8.23,18,10,18,12 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2c0,0.86-0.62,3.05-0.96,4.23C10.9,6.69,10.48,7,10,7h0C9.52,7,9.1,6.69,8.96,6.23C8.62,5.05,8,2.86,8,2 c0-1.1,0.9-2,2-2S12,0.9,12,2z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z M13.12,4.3c2.01,1.1,3.38,3.24,3.38,5.7c0,3.59-2.91,6.5-6.5,6.5S3.5,13.59,3.5,10c0-2.46,1.37-4.6,3.38-5.7 C6.75,3.76,6.64,3.23,6.57,2.77C3.87,4.06,2,6.81,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8c0-3.19-1.87-5.94-4.57-7.23 C13.36,3.23,13.25,3.76,13.12,4.3z M13.5,10c0,1.93-1.57,3.5-3.5,3.5S6.5,11.93,6.5,10c0-1.07,0.48-2.02,1.23-2.67 c-0.11-0.35-0.28-0.9-0.46-1.53C5.91,6.7,5,8.24,5,10c0,2.76,2.24,5,5,5s5-2.24,5-5c0-1.76-0.91-3.3-2.28-4.19 c-0.18,0.63-0.35,1.18-0.46,1.53C13.02,7.98,13.5,8.93,13.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"menu_book\": {\n    \"name\": \"menu_book\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v15.5 C2.45,20.4,4.55,20,6.5,20s4.05,0.4,5.5,1.5c1.45-1.1,3.55-1.5,5.5-1.5c1.17,0,2.39,0.15,3.5,0.5c0.75,0.25,1.4,0.55,2,1V6 C22.4,5.55,21.75,5.25,21,5z M21,18.5c-1.1-0.35-2.3-0.5-3.5-0.5c-1.7,0-4.15,0.65-5.5,1.5V8c1.35-0.85,3.8-1.5,5.5-1.5 c1.2,0,2.4,0.15,3.5,0.5V18.5z\\\"></path><g><path d=\\\"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.7,0-3.24,0.29-4.5,0.83v1.66 C14.13,10.85,15.7,10.5,17.5,10.5z\\\"></path><path d=\\\"M13,12.49v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24 C15.8,11.66,14.26,11.96,13,12.49z\\\"></path><path d=\\\"M17.5,14.33c-1.7,0-3.24,0.29-4.5,0.83v1.66c1.13-0.64,2.7-0.99,4.5-0.99c0.88,0,1.73,0.09,2.5,0.26v-1.52 C19.21,14.41,18.36,14.33,17.5,14.33z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fort\": {\n    \"name\": \"fort\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"21,3 21,5 19,5 19,3 17,3 17,5 15,5 15,3 13,3 13,7 15,9 15,10 9,10 9,9 11,7 11,3 9,3 9,5 7,5 7,3 5,3 5,5 3,5 3,3 1,3 1,7 3,9 3,15 1,17 1,21 10,21 10,16 14,16 14,21 23,21 23,17 21,15 21,9 23,7 23,3\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"17.5,3 17.5,4.5 15.75,4.5 15.75,3 14.25,3 14.25,4.5 12.5,4.5 12.5,3 11,3 11,6 13,8 13,9 7,9 7,8 9,6 9,3 7.5,3 7.5,4.5 5.75,4.5 5.75,3 4.25,3 4.25,4.5 2.5,4.5 2.5,3 1,3 1,6 3,8 3,12 1,14 1,17 8,17 8,13 12,13 12,17 19,17 19,14 17,12 17,8 19,6 19,3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"electric_car\": {\n    \"name\": \"electric_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.58,1H5.43L3,8v9h3v-2h12v2h3V8L18.58,1z M6.5,12C5.67,12,5,11.33,5,10.5S5.67,9,6.5,9S8,9.67,8,10.5S7.33,12,6.5,12z M17.5,12c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5S18.33,12,17.5,12z M5,7l1.5-4.5h11L19,7H5z\\\"></path><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,7l-2-4H6L4,7v6h2v-1h8v1h2V7z M6.62,4h6.76l1.5,3H5.12L6.62,4z M6,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C7,9.55,6.55,10,6,10z M14,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C15,9.55,14.55,10,14,10z\\\"></path><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"brunch_dining\": {\n    \"name\": \"brunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,8h2V4h-2V8z M16,22H2v-2h14V22z M18,15.89l-0.4-0.42c-1.02-1.08-1.6-2.52-1.6-4V2h6v9.51c0,1.46-0.54,2.87-1.53,3.94 L20,15.97V20h2v2h-4V15.89z M7,16v-2h4v2h5v2H2v-2H7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><rect height=\\\"1.5\\\" width=\\\"11\\\" x=\\\"2\\\" y=\\\"16.5\\\"></rect></g><g><polygon points=\\\"13,13.5 9,13.5 9,12 6,12 6,13.5 2,13.5 2,15 13,15\\\"></polygon></g><g><path d=\\\"M18,9.76V2h-5v7.76c0,1.27,0.67,2.44,1.75,3.09V18H18v-1.5h-1.75v-3.65C17.33,12.2,18,11.04,18,9.76z M16.5,3.5V7h-2V3.5 H16.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"celebration\": {\n    \"name\": \"celebration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><polygon points=\\\"2,22 16,17 7,8\\\"></polygon><path d=\\\"M14.53,12.53L21,6.05l1.48,1.48l1.06-1.06L21,3.93l-7.53,7.53L14.53,12.53z\\\"></path><path d=\\\"M10.94,6L9.47,7.47l1.06,1.06l2.54-2.54l-2.54-2.53L9.47,4.53L10.94,6z\\\"></path><path d=\\\"M18.97,9.97l-3.5,3.5l1.06,1.06L19,12.06l2.5,2.49l1.06-1.06L18.97,9.97z\\\"></path><path d=\\\"M15.97,4.97l-4.5,4.5l1.06,1.06L18.07,5l-3.53-3.53l-1.06,1.06L15.97,4.97z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><polygon points=\\\"2,18 13.49,13.93 6.07,6.51\\\"></polygon><polygon points=\\\"11.55,2.09 10.84,2.8 12.96,4.92 9.78,8.1 10.49,8.81 14.37,4.92\\\"></polygon><polygon points=\\\"9.07,3.15 8.36,3.86 9.78,5.27 8.36,6.69 9.07,7.39 11.19,5.27\\\"></polygon><polygon points=\\\"15.79,7.75 12.61,10.93 13.31,11.64 15.79,9.16 17.91,11.28 18.62,10.58\\\"></polygon><polygon points=\\\"19.32,5.63 17.2,3.5 11.19,9.51 11.9,10.22 17.2,4.92 18.62,6.33\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_play\": {\n    \"name\": \"local_play\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z\\\"></path>\"\n      }\n    }\n  },\n  \"local_pharmacy\": {\n    \"name\": \"local_pharmacy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"design_services\": {\n    \"name\": \"design_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.79,17.06l-5.55-5.55l1.57-1.57l-3.75-3.75l-1.57,1.57L6.94,2.21L2.21,6.94l5.55,5.55L3,17.25V21h3.75l4.76-4.76 l5.55,5.55l0,0v0L21.79,17.06z M9.18,11.07L5.04,6.94l1.9-1.9l1.27,1.27L7.02,7.5l1.41,1.41l1.19-1.19l1.45,1.45L9.18,11.07z M12.93,14.82l1.9-1.9l1.45,1.45l-1.19,1.19l1.41,1.41l1.19-1.19l1.27,1.27l-1.9,1.9L12.93,14.82z\\\"></path><rect height=\\\"5.3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.302 14.5981)\\\" width=\\\"3.59\\\" x=\\\"16.48\\\" y=\\\"3.08\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.42,13.92l-4.17-4.17l1.33-1.33l-2-2l-1.33,1.33L6.08,3.58l-2.5,2.5l4.17,4.17L4,14v2h2l3.75-3.75l4.17,4.17 L16.42,13.92z M8.46,9.54L5,6.08L6.08,5c0,0,0,0,0,0l0.69,0.69L6.23,6.23L6.89,6.9l0.54-0.54l1.06,1.06L7.95,7.96l0.67,0.67 l0.54-0.54l0.38,0.38L8.46,9.54z M13.92,15l-3.46-3.46l1.08-1.08l0.4,0.4L11.4,11.4l0.67,0.67l0.54-0.54l1.06,1.06l-0.54,0.54 l0.67,0.67l0.54-0.54L15,13.92L13.92,15z\\\"></path><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.0106 11.7111)\\\" width=\\\"2.39\\\" x=\\\"12.94\\\" y=\\\"4.45\\\"></rect></g><g></rect></g>\"\n      }\n    }\n  },\n  \"local_post_office\": {\n    \"name\": \"local_post_office\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2.01v16H22V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"local_see\": {\n    \"name\": \"local_see\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3.2\\\"></circle><path d=\\\"M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"person_pin\": {\n    \"name\": \"person_pin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 2H3v18h6l3 3 3-3h6V2zm-9 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z\\\"></path>\"\n      }\n    }\n  },\n  \"electric_moped\": {\n    \"name\": \"electric_moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,8.35V3h-5v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35z M7,15 c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z\\\"></path></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,4h-3v1h2v1.79L10.79,10H9V6H6C4.34,6,3,7.34,3,9v2h2c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,7.21V4z M7,12 c-0.55,0-1-0.45-1-1h2C8,11.55,7.55,12,7,12z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M15,9c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,9.9,16.1,9,15,9z M15,12c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,11.55,15.55,12,15,12z\\\"></path></g><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"local_convenience_store\": {\n    \"name\": \"local_convenience_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"place\": {\n    \"name\": \"place\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0-10c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"agriculture\": {\n    \"name\": \"agriculture\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.5,12c0.93,0,1.78,0.28,2.5,0.76V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71 l1.41-1.41L13,6.71V9c0,1.1-0.9,2-2,2h-0.54c0.95,1.06,1.54,2.46,1.54,4c0,0.34-0.04,0.67-0.09,1h3.14 C15.3,13.75,17.19,12,19.5,12z\\\"></path><path d=\\\"M19.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S21.43,13,19.5,13z M19.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S20.33,18,19.5,18z\\\"></path><path d=\\\"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z\\\"></path><path d=\\\"M9.83,13.82l-0.18-0.47L10.58,13c-0.46-1.06-1.28-1.91-2.31-2.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4C10.87,16.26,11,15.64,11,15c0-0.53-0.11-1.04-0.26-1.52L9.83,13.82z M7.15,17.77c-1.53,0.63-3.29-0.09-3.92-1.62c-0.63-1.53,0.09-3.29,1.62-3.92c1.53-0.63,3.29,0.09,3.92,1.62 C9.41,15.38,8.68,17.14,7.15,17.77z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,10c0.54,0,1.04,0.13,1.5,0.35V7c0-0.55-0.45-1-1-1h-4.47l-0.8-0.8l1.06-1.06l-0.53-0.53L8.61,6.27L9.14,6.8 l1.06-1.06l0.8,0.8V9c0,0.55-0.45,1-1,1H9.24C9.72,10.72,10,11.57,10,12.5c0,0.17-0.03,0.33-0.05,0.5h2.1 C12.29,11.31,13.74,10,15.5,10z\\\"></path><path d=\\\"M3.5,8H8c0-0.55-0.45-1-1-1H3.5C3.22,7,3,7.22,3,7.5C3,7.78,3.22,8,3.5,8z\\\"></path><path d=\\\"M15.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C18,12.12,16.88,11,15.5,11z M15.5,15 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,15,15.5,15z\\\"></path><path d=\\\"M8.34,11.53L8.2,11.18l0.45-0.19C8.3,10.28,7.72,9.7,7.01,9.35L6.82,9.8L6.47,9.66l0.18-0.44C6.29,9.08,5.91,9,5.5,9 S4.71,9.08,4.34,9.21l0.18,0.44L4.18,9.8L3.99,9.35c-0.72,0.34-1.3,0.92-1.64,1.64l0.45,0.19l-0.14,0.35l-0.44-0.18 C2.08,11.71,2,12.09,2,12.5s0.08,0.79,0.21,1.16l0.44-0.18l0.14,0.35l-0.45,0.19c0.34,0.72,0.92,1.3,1.64,1.64l0.19-0.45 l0.35,0.14l-0.18,0.44C4.71,15.92,5.09,16,5.5,16s0.79-0.08,1.16-0.21l-0.18-0.44l0.35-0.14l0.19,0.45 c0.72-0.34,1.3-0.92,1.64-1.64L8.2,13.82l0.14-0.35l0.44,0.18C8.92,13.29,9,12.91,9,12.5s-0.08-0.79-0.21-1.16L8.34,11.53z M5.5,15C4.12,15,3,13.88,3,12.5C3,11.12,4.12,10,5.5,10S8,11.12,8,12.5C8,13.88,6.88,15,5.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"museum\": {\n    \"name\": \"museum\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M16,18h-2v-4l-2,3l-2-3v4H8v-7h2l2,3l2-3h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.03L3,8h0.02v1H5v7H3.02v1h13.97v-1H15V9h1.98V8H17L10,3.03z M13,15h-1v-3.67L10,14l-2-2.67V15H7V9h1l2,3l2-3h1V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"warehouse\": {\n    \"name\": \"warehouse\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,21V7L12,3L2,7v14h5v-9h10v9H22z M11,19H9v2h2V19z M13,16h-2v2h2V16z M15,19h-2v2h2V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,17h4V6l-8-3L2,6v11h4v-7h8V17z M9.25,17h-1.5v-1.5h1.5V17z M10.75,14.5h-1.5V13h1.5V14.5z M12.25,17h-1.5v-1.5h1.5V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_fire_department\": {\n    \"name\": \"local_fire_department\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,12.9l-2.13,2.09C9.31,15.55,9,16.28,9,17.06C9,18.68,10.35,20,12,20s3-1.32,3-2.94c0-0.78-0.31-1.52-0.87-2.07 L12,12.9z\\\"></path></g><g><path d=\\\"M16,6l-0.44,0.55C14.38,8.02,12,7.19,12,5.3V2c0,0-8,4-8,11c0,2.92,1.56,5.47,3.89,6.86C7.33,19.07,7,18.1,7,17.06 c0-1.32,0.52-2.56,1.47-3.5L12,10.1l3.53,3.47c0.95,0.93,1.47,2.17,1.47,3.5c0,1.02-0.31,1.96-0.85,2.75 c1.89-1.15,3.29-3.06,3.71-5.3C20.52,10.97,18.79,7.62,16,6z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M11.67,12.5L10,10.63L8.33,12.5c-0.37,0.42-0.58,0.95-0.58,1.5c0,1.24,1.01,2.25,2.25,2.25s2.25-1.01,2.25-2.25 C12.25,13.45,12.04,12.92,11.67,12.5L11.67,12.5z\\\"></path></g><g><path d=\\\"M13,5l-0.33,0.41C11.79,6.52,10,5.89,10,4.47V2c0,0-6,3.75-6,9c0,2.2,1.18,4.12,2.95,5.16c-0.44-0.61-0.7-1.36-0.7-2.16 c0-0.92,0.34-1.81,0.96-2.5L10,8.37l2.79,3.12c0.62,0.69,0.96,1.58,0.96,2.5c0,0.79-0.25,1.52-0.67,2.13 c1.43-0.86,2.5-2.3,2.81-3.99C16.39,9.48,15.1,6.21,13,5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"lunch_dining\": {\n    \"name\": \"lunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M18.66,11.5c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.32,1l-0.01-1.98C20.38,12.19,20.37,11.5,18.66,11.5z\\\"></path><path d=\\\"M22,9c0.02-4-4.28-6-10-6C6.29,3,2,5,2,9v1h20L22,9L22,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.99,8c0.26-2.73-3.42-5-7.99-5C5.44,3,1.76,5.27,2.01,8H17.99z\\\"></path><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"13\\\"></rect><path d=\\\"M15.34,9.25c-1.58,0-1.72,1-2.67,1c-0.95,0-1.08-1-2.67-1c-1.58,0-1.72,1-2.67,1c-0.95,0-1.09-1-2.67-1 c-1.58,0-1.72,1-2.67,1v1.5c1.58,0,1.72-1,2.67-1c0.95,0,1.09,1,2.67,1c1.58,0,1.72-1,2.67-1c0.95,0,1.08,1,2.67,1 c1.58,0,1.72-1,2.67-1c0.95,0,1.08,1,2.66,1v-1.5C17.05,10.25,16.92,9.25,15.34,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wrong_location\": {\n    \"name\": \"wrong_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,10V3.26C13.35,3.09,12.68,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 c0-0.41-0.04-0.81-0.09-1.2H14z M12,13c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,12.1,13.1,13,12,13z\\\"></path><polygon points=\\\"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,8V4.37C11.37,4.13,10.69,4,10,4C7.06,4,4.4,6.25,4.4,9.74c0,2.32,1.87,5.08,5.6,8.26c3.73-3.18,5.6-5.94,5.6-8.26 c0-0.62-0.09-1.2-0.24-1.74H12z M10,11c-0.83,0-1.5-0.67-1.5-1.5S9.17,8,10,8s1.5,0.67,1.5,1.5S10.83,11,10,11z\\\"></path><polygon points=\\\"17.47,3.23 16.77,2.53 15,4.29 13.23,2.53 12.53,3.23 14.29,5 12.53,6.77 13.23,7.47 15,5.71 16.77,7.47 17.47,6.77 15.71,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"bus_alert\": {\n    \"name\": \"bus_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M4,11V8h7.29c-0.77-2.6,0.21-4.61,0.37-4.97C2.97,2.67,2,5.02,2,7v9.5c0,0.95,0.38,1.81,1,2.44V22h3v-2h8v2h3v-3.06 c0.62-0.63,1-1.49,1-2.44V13c-1.91,0-3.63-0.76-4.89-2H4z M6.5,17C5.67,17,5,16.33,5,15.5S5.67,14,6.5,14S8,14.67,8,15.5 S7.33,17,6.5,17z M15,15.5c0,0.83-0.67,1.5-1.5,1.5S12,16.33,12,15.5s0.67-1.5,1.5-1.5S15,14.67,15,15.5z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"local_gas_station\": {\n    \"name\": \"local_gas_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5v7.49h5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_run\": {\n    \"name\": \"directions_run\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"sailing\": {\n    \"name\": \"sailing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,13.5V2L3,13.5H11z M21,13.5C21,6.5,14.5,1,12.5,1c0,0,1,3,1,6.5s-1,6-1,6H21z M22,15H2c0.31,1.53,1.16,2.84,2.33,3.73 C4.98,18.46,5.55,18.01,6,17.5C6.73,18.34,7.8,19,9,19s2.27-0.66,3-1.5c0.73,0.84,1.8,1.5,3,1.5s2.26-0.66,3-1.5 c0.45,0.51,1.02,0.96,1.67,1.23C20.84,17.84,21.69,16.53,22,15z M22,23v-2h-1c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0 c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0 c0.95,0.5,1.97,0.75,3,0.75H22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.5,11.5V2L3,11.5H9.5z M17,11.5C17,5.5,12.03,1,10.5,1c0,0,0.8,2.5,0.8,5.5s-0.8,5-0.8,5H17z M17.5,17.5H18l0,1.5h-0.5 c-0.86,0-1.71-0.2-2.5-0.6c-1.58,0.8-3.43,0.8-5,0c-1.58,0.8-3.42,0.8-5,0C4.21,18.8,3.36,19,2.5,19H2v-1.5h0.5 c0.87,0,1.74-0.33,2.5-1c1.53,1.33,3.47,1.33,5,0c1.53,1.33,3.48,1.33,5,0C15.76,17.17,16.63,17.5,17.5,17.5z M16.08,15.55 c-0.41-0.27-0.78-0.64-1.08-1.05c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16S5.61,15.34,5,14.5 c-0.3,0.41-0.67,0.78-1.08,1.05C2.94,14.83,2.24,13.76,2,12.5h16C17.76,13.76,17.06,14.83,16.08,15.55z\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_left\": {\n    \"name\": \"roundabout_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,13c2.21,0,4-1.79,4-4s-1.79-4-4-4c-2.21,0-4,1.79-4,4l0,1l-6.17,0l1.59,1.59L6,13L2,9l4-4l1.41,1.41L5.83,8l4.25,0 c0.48-2.84,2.94-5,5.92-5c3.31,0,6,2.69,6,6c0,2.97-2.16,5.44-5,5.92L17,21h-2l0-8L16,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.25,3c-2.37,0-4.33,1.73-4.69,4L4.87,7l1.19-1.19L5,4.75l-3,3l3,3l1.06-1.06L4.87,8.5L10,8.46c0,0,0-0.12,0-0.71 c0-1.79,1.46-3.25,3.25-3.25s3.25,1.46,3.25,3.25S15.04,11,13.25,11H12.5v6H14v-4.56l0,0c2.27-0.36,4-2.32,4-4.69 C18,5.13,15.87,3,13.25,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_transfer\": {\n    \"name\": \"no_transfer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.78,2.95C7.24,2.16,9.48,2,12,2c4.42,0,8,0.5,8,4v10c0,0.35-0.08,0.67-0.19,0.98L13.83,11H18V6H8.83L5.78,2.95z M19.78,22.61L18.17,21H16v-2H8v2H5v-2.78C4.39,17.67,4,16.88,4,16V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M9,15.5 C9,14.67,8.33,14,7.5,14S6,14.67,6,15.5C6,16.33,6.67,17,7.5,17S9,16.33,9,15.5z M8.17,11L6,8.83V11H8.17z\\\"></path>\"\n      }\n    }\n  },\n  \"church\": {\n    \"name\": \"church\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h8v-5h4v5h8v-8L18,12.22z M12,13.5 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,13.5,12,13.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,11V8l-4.25-2.55v-1.2h1.75v-1.5h-1.75V1h-1.5v1.75H7.5v1.5h1.75v1.2L5,8v3l-3,1v6h6v-4h4v4h6v-6L15,11z M10,11.25 c-0.69,0-1.25-0.56-1.25-1.25S9.31,8.75,10,8.75s1.25,0.56,1.25,1.25S10.69,11.25,10,11.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_offer\": {\n    \"name\": \"local_offer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.83 12.99 11.83 2H2v9.83l10.99 10.99 9.84-9.83zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z\\\"></path>\"\n      }\n    }\n  },\n  \"not_listed_location\": {\n    \"name\": \"not_listed_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 16a.99.99 0 001-1 .99.99 0 00-1-1c-.28 0-.51.1-.71.29-.2.19-.3.43-.3.7s.1.51.29.71c.2.2.44.3.72.3zm-.88-3.66V13h1.85v-.42c0-.33.06-.6.18-.81.12-.21.33-.47.65-.77.4-.38.68-.75.89-1.09.19-.35.3-.76.3-1.25s-.13-.94-.39-1.35a2.57 2.57 0 00-1.05-.96C13.11 6.12 12.58 6 12 6c-.78 0-1.51.32-2.03.79C9.46 7.27 9 7.99 9 9h1.68c0-.52.19-.77.4-.98.21-.2.58-.3.96-.3.35 0 .64.1.85.3.21.2.32.45.32.74 0 .24-.06.46-.19.64-.13.19-.33.41-.61.66-.48.42-.81.79-1 1.12-.19.33-.28.71-.28 1.16zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"navigation\": {\n    \"name\": \"navigation\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"local_drink\": {\n    \"name\": \"local_drink\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 2l2.21 20H18.8L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z\\\"></path>\"\n      }\n    }\n  },\n  \"360\": {\n    \"name\": \"360\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z\\\"></path>\"\n      }\n    }\n  },\n  \"moped\": {\n    \"name\": \"moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,10.35V5h-5v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35z M7,17 c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,6h-3v1h2v1.79L10.79,12H9V8H6c-1.66,0-3,1.34-3,3v2h2c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V6z M7,14 c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_florist\": {\n    \"name\": \"local_florist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.38 1.12 2.5 2.5 2.5.53 0 1.01-.16 1.42-.44l-.02.19c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5l-.02-.19c.4.28.89.44 1.42.44 1.38 0 2.5-1.12 2.5-2.5 0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25 0-1.38-1.12-2.5-2.5-2.5-.53 0-1.01.16-1.42.44l.02-.19C14.5 2.12 13.38 1 12 1S9.5 2.12 9.5 3.5l.02.19c-.4-.28-.89-.44-1.42-.44-1.38 0-2.5 1.12-2.5 2.5 0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5c1.38 0 2.5 1.12 2.5 2.5s-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8s1.12-2.5 2.5-2.5zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"local_atm\": {\n    \"name\": \"local_atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17h2v-1h2v-5h-4v-1h4V8h-2V7h-2v1H9v5h4v1H9v2h2v1zM22 4H2.01L2 20h20V4zm-2 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"atm\": {\n    \"name\": \"atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM7 9H2v6h1.5v-1.5h2V15H7V9zm-1.5 3h-2v-1.5h2V12zM22 9h-6.5v6H17v-4.5h1V14h1.5v-3.51h1V15H22V9z\\\"></path>\"\n      }\n    }\n  },\n  \"local_shipping\": {\n    \"name\": \"local_shipping\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-3V4H1v13h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5l1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"wine_bar\": {\n    \"name\": \"wine_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91l0-6H6z M16,8H8l0-3h8C16,5,16,8,16,8z\\\"></path>\"\n      }\n    }\n  },\n  \"transfer_within_a_station\": {\n    \"name\": \"transfer_within_a_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75\\\"></path>\"\n      }\n    }\n  },\n  \"ramen_dining\": {\n    \"name\": \"ramen_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,3.51V2L4,3.99V12H2c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51z M6.5,5.22V6.5h-1V5.34L6.5,5.22z M5.5,8h1v4h-1V8z M9,12H8V8h1V12z M9,6.5H8V5.06l1-0.11V6.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,3.01V2L4,3.54V9H2c0,3.36,2.07,6.23,5,7.41V18h6v-1.59c2.93-1.19,5-4.06,5-7.41H9V7h9V6H9V3.99L18,3.01z M5,4.43 l1-0.11V6H5V4.43z M5,7h1v2H5V7z M8,9H7V7h1V9z M8,6H7V4.21L8,4.1V6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cleaning_services\": {\n    \"name\": \"cleaning_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,11V1H9v10H3v12h18V11H15z M19,21h-2v-4h-2v4h-2v-4h-2v4H9v-4H7v4H5v-8h14V21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,9h-4V3H8v6H4v8h12V9z M15,16h-2v-2h-1v2h-1.5v-2h-1v2H8v-2H7v2H5v-6h10V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sos\": {\n    \"name\": \"sos\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.5,7h-7v10h7V7z M13.5,15h-3V9h3V15z M1,15h4v-2H1V7h6v2H3v2h4v6H1V15z M17,15h4v-2h-4V7h6v2h-4v2h4v6h-6V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.38,6.5v7h5.25v-7H7.38z M11.12,12H8.88V8h2.25V12z M1.5,12h3v-1.25h-3V6.5H6V8H3v1.25h3v4.25H1.5V12z M14,12h3v-1.25h-3 V6.5h4.5V8h-3v1.25h3v4.25H14V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_sharp_right\": {\n    \"name\": \"turn_sharp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"18,6.83 19.59,8.41 21,7 17,3 13,7 14.41,8.41 16,6.83 16,13 6,13 6,21 8,21 8,15 18,15\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"14.5,5.87 14.5,12 7,12 7,17 5.5,17 5.5,10.5 13,10.5 13,5.87 11.81,7.06 10.75,6 13.75,3 16.75,6 15.69,7.06\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"directions_boat_filled\": {\n    \"name\": \"directions_boat_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,21c-1.39,0-2.78-0.47-4-1.32c-2.44,1.71-5.56,1.71-8,0C6.78,20.53,5.39,21,4,21H2v2h2c1.38,0,2.74-0.35,4-0.99 c2.52,1.29,5.48,1.29,8,0c1.26,0.65,2.62,0.99,4,0.99h2v-2H20z M3.95,19H4c1.6,0,3.02-0.88,4-2c0.98,1.12,2.4,2,4,2s3.02-0.88,4-2 c0.98,1.12,2.4,2,4,2h0.05l2.18-7.65L20,10.62V4h-5V1H9v3H4v6.62l-2.23,0.73L3.95,19z M6,6h12v3.97L12,8L6,9.97V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rate_review\": {\n    \"name\": \"rate_review\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20l4-4h16V2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"set_meal\": {\n    \"name\": \"set_meal\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M22,3v11H2V3H22z M20,6 c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73 C16.96,10.02,18.32,11,20,11V6z\\\"></path>\"\n      }\n    }\n  },\n  \"terrain\": {\n    \"name\": \"terrain\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\\\"></path>\"\n      }\n    }\n  },\n  \"festival\": {\n    \"name\": \"festival\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M23,11V9c-6-2-11-7-11-7S7,7,1,9v2c0,1.49,0.93,2.75,2.24,3.26C3.2,16.76,2.92,19.69,2,22h5h10h5 c-0.92-2.31-1.2-5.24-1.24-7.74C22.07,13.75,23,12.49,23,11z M12,4.71c1.33,1.14,3.49,2.84,6.11,4.29H5.89 C8.51,7.55,10.67,5.85,12,4.71z M13,11h3c0,0.83-0.67,1.5-1.5,1.5S13,11.83,13,11z M9.5,12.5C8.67,12.5,8,11.83,8,11h3 C11,11.83,10.33,12.5,9.5,12.5z M6,11c0,0.83-0.67,1.5-1.5,1.5S3,11.83,3,11H6z M4.66,20c0.39-1.86,0.54-3.82,0.57-5.58 c0.68-0.15,1.29-0.49,1.76-0.98c0.25,0.25,0.54,0.45,0.85,0.62c-0.1,1.87-0.26,4-0.52,5.93H4.66z M9.35,20 c0.24-1.83,0.39-3.78,0.48-5.53c0.84-0.08,1.61-0.45,2.17-1.02c0.56,0.57,1.32,0.94,2.17,1.02c0.1,1.75,0.24,3.7,0.48,5.53H9.35z M16.67,20c-0.27-1.94-0.43-4.07-0.52-5.93c0.31-0.17,0.61-0.37,0.85-0.62c0.47,0.48,1.08,0.83,1.76,0.98 c0.03,1.76,0.18,3.72,0.57,5.58H16.67z M19.5,12.5c-0.83,0-1.5-0.67-1.5-1.5h3C21,11.83,20.33,12.5,19.5,12.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M10,2c0,0-5,5-9,5.5V9c0,1.23,0.79,2.26,1.89,2.64C2.77,14.11,2.53,16.95,2,18h16c-0.06-0.12-0.68-1.27-0.91-6.35 C18.2,11.27,19,10.24,19,9V7.5C15,7,10,2,10,2z M9.25,9c0,0.72-0.59,1.31-1.31,1.31S6.63,9.72,6.63,9H9.25z M8.23,11.78 c0.7-0.08,1.32-0.39,1.77-0.88c0.45,0.49,1.07,0.81,1.77,0.88c0.03,0.95,0.13,2.67,0.4,4.72H7.83C8.11,14.45,8.2,12.73,8.23,11.78z M12.06,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C13.37,9.72,12.79,10.31,12.06,10.31z M10,4.05c1.07,0.95,2.79,2.37,4.72,3.45H5.28 C7.21,6.42,8.93,5.01,10,4.05z M2.5,9h2.62c0,0.72-0.59,1.31-1.31,1.31S2.5,9.72,2.5,9z M4.39,11.75c0.58-0.12,1.09-0.43,1.48-0.85 c0.24,0.27,0.54,0.48,0.87,0.64c-0.03,0.88-0.11,2.76-0.43,4.97H3.95C4.18,15.17,4.31,13.37,4.39,11.75z M13.69,16.5 c-0.31-2.21-0.4-4.09-0.43-4.97c0.33-0.16,0.62-0.37,0.87-0.64c0.39,0.42,0.9,0.73,1.48,0.85c0.08,1.62,0.21,3.42,0.44,4.75H13.69z M16.19,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C17.5,9.72,16.91,10.31,16.19,10.31z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_slight_left\": {\n    \"name\": \"turn_slight_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"11.66,6 11.66,4 6,4 6,9.66 8,9.66 8,7.41 13,12.41 13,20 15,20 15,11.59 9.41,6\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"12.5,9.94 12.5,16 11,16 11,10.56 7,6.56 7,8.25 5.5,8.25 5.5,4 9.75,4 9.75,5.5 8.06,5.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"medical_services\": {\n    \"name\": \"medical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,6V2H8v4H2v16h20V6H16z M10,4h4v2h-4V4z M16,15h-3v3h-2v-3H8v-2h3v-3h2v3h3V15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,6V3H7v3H3v11h14V6H13z M8,4h4v2H8V4z M12.5,12h-2v2h-1v-2h-2v-1h2V9h1v2h2V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_walk\": {\n    \"name\": \"directions_walk\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7\\\"></path>\"\n      }\n    }\n  },\n  \"kebab_dining\": {\n    \"name\": \"kebab_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.75,8H11v5H7.75v1H8.5c1.38,0,2.5,1.12,2.5,2.5S9.88,19,8.5,19H7.75v4h-1.5v-4H5.5C4.12,19,3,17.88,3,16.5S4.12,14,5.5,14 h0.75v-1H3V8h3.25V7H5.5C4.12,7,3,5.88,3,4.5S4.12,2,5.5,2h0.75V1h1.5v1H8.5C9.88,2,11,3.12,11,4.5S9.88,7,8.5,7H7.75V8z M17.75,7 h0.75C19.88,7,21,5.88,21,4.5S19.88,2,18.5,2h-0.75V1h-1.5v1H15.5C14.12,2,13,3.12,13,4.5S14.12,7,15.5,7h0.75v1H13v5h3.25v1H15.5 c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5h0.75v4h1.5v-4h0.75c1.38,0,2.5-1.12,2.5-2.5S19.88,14,18.5,14h-0.75v-1H21V8h-3.25V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.5,7H9v4H6.5v1H7c1.1,0,2,0.9,2,2s-0.9,2-2,2H6.5v3h-1v-3H5c-1.1,0-2-0.9-2-2s0.9-2,2-2h0.5v-1H3V7h2.5V6H5 C3.9,6,3,5.1,3,4s0.9-2,2-2h0.5V1h1v1H7c1.1,0,2,0.9,2,2S8.1,6,7,6H6.5V7z M14.5,6H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5V1h-1v1H13 c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5v1H11v4h2.5v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5v3h1v-3H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5v-1H17 V7h-2.5V6z\\\"></path>\"\n      }\n    }\n  },\n  \"ev_station\": {\n    \"name\": \"ev_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5V21h5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me_disabled\": {\n    \"name\": \"near_me_disabled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6.34L21,3l-3.34,9L12,6.34z M22.61,19.78L4.22,1.39L2.81,2.81l5.07,5.07L3,9.69v1.41l7.07,2.83L12.9,21h1.41l1.81-4.88 l5.07,5.07L22.61,19.78z\\\"></path>\"\n      }\n    }\n  },\n  \"car_repair\": {\n    \"name\": \"car_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M4,17.01V19h7v3h2v-3h7v-1.99H4z M7,14h10v2h2V8.69L17.11,3H6.89L5,8.69V16h2V14z M9,11.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S9.55,11.5,9,11.5z M15,11.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,11.5,15,11.5z M8.33,5h7.34l0.66,2H7.67 L8.33,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,11h7v1H15V7l-1.46-4H6.5L5,7v5h1.5V11z M7.75,9.25C7.34,9.25,7,8.91,7,8.5s0.34-0.75,0.75-0.75S8.5,8.09,8.5,8.5 S8.16,9.25,7.75,9.25z M12.25,9.25c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S13,8.09,13,8.5S12.66,9.25,12.25,9.25z M7.54,4.5h4.95L13.04,6H6.98L7.54,4.5z\\\"></path><polygon points=\\\"4,13 4,14.5 9.25,14.5 9.25,17 10.75,17 10.75,14.5 16,14.5 16,13\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"merge\": {\n    \"name\": \"merge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.41,21L5,19.59l4.83-4.83c0.75-0.75,1.17-1.77,1.17-2.83v-5.1L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83v5.1 c0,1.06,0.42,2.08,1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,10.45c0,0.8-0.32,1.56-0.88,2.12L5,15.94L6.06,17L10,13.06L13.94,17L15,15.94l-3.37-3.37 c-0.56-0.56-0.88-1.33-0.88-2.12l0-4.58l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19L9.25,10.45z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meals\": {\n    \"name\": \"no_meals\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z\\\"></path>\"\n      }\n    }\n  },\n  \"miscellaneous_services\": {\n    \"name\": \"miscellaneous_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.02,13.97l1.7-2.94c0,0-0.09-0.08-0.23-0.18l-1.47-1.16l-0.01,0.02c0.03-0.24,0.05-0.47,0.05-0.71S14.04,8.53,14,8.31 l0.01,0.01l1.71-1.34l-1.7-2.95l-2.01,0.81v0.01c-0.37-0.28-0.77-0.52-1.2-0.7h0.01L10.52,2H7.11L6.8,4.15h0.01 c-0.43,0.18-0.83,0.42-1.2,0.7V4.84L3.6,4.03L1.9,6.98l1.7,1.34l0.01-0.01C3.58,8.53,3.56,8.76,3.56,9s0.02,0.47,0.05,0.71 L3.6,9.69l-1.47,1.16C2,10.95,1.9,11.03,1.9,11.03l1.7,2.94l2.02-0.8L5.6,13.14c0.37,0.29,0.77,0.53,1.21,0.71H6.8L7.11,16h3.4 c0,0,0.02-0.13,0.04-0.3l0.27-1.85h-0.01c0.44-0.18,0.84-0.42,1.21-0.71L12,13.17L14.02,13.97z M8.81,11c-1.1,0-2-0.9-2-2 s0.9-2,2-2s2,0.9,2,2S9.91,11,8.81,11z\\\"></path><path d=\\\"M20.98,17.94l-0.01,0.01C20.99,17.8,21,17.65,21,17.5c0-0.15-0.01-0.3-0.04-0.44l0.01,0.01l1.1-0.86l-1.09-1.9l-1.29,0.52 v0.01c-0.24-0.18-0.49-0.33-0.77-0.45h0.01L18.73,13h-2.19l-0.2,1.38h0.01c-0.28,0.12-0.53,0.27-0.77,0.45v-0.01l-1.29-0.52 l-1.09,1.9l1.09,0.86l0.01-0.01c-0.02,0.14-0.03,0.29-0.03,0.44c0,0.15,0.01,0.3,0.03,0.46l-0.01-0.01l-0.94,0.75 c-0.08,0.06-0.15,0.12-0.15,0.12l1.09,1.89l1.3-0.51l-0.01-0.02c0.24,0.19,0.5,0.34,0.78,0.46h-0.01l0.2,1.38h2.19 c0,0,0.01-0.08,0.03-0.19l0.17-1.19h-0.01c0.28-0.12,0.54-0.27,0.78-0.46l-0.01,0.02l1.3,0.51l1.09-1.89c0,0-0.06-0.05-0.15-0.12 L20.98,17.94z M17.63,18.79c-0.71,0-1.29-0.58-1.29-1.29s0.58-1.29,1.29-1.29s1.29,0.58,1.29,1.29S18.34,18.79,17.63,18.79z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.58,11.55l1.21-2.1c0,0-0.06-0.06-0.16-0.13l-1.05-0.83l-0.01,0.01C11.6,8.34,11.61,8.17,11.61,8 c0-0.17-0.01-0.34-0.04-0.49l0.01,0.01l1.22-0.96l-1.21-2.11l-1.44,0.58v0.01c-0.26-0.2-0.55-0.37-0.86-0.5H9.3L9.08,3H6.65 L6.42,4.54h0.01c-0.31,0.13-0.59,0.3-0.86,0.5V5.03L4.14,4.45L2.92,6.56l1.21,0.96l0.01-0.01C4.12,7.66,4.11,7.83,4.11,8 c0,0.17,0.01,0.34,0.04,0.51L4.14,8.49L3.09,9.32C3,9.39,2.92,9.45,2.92,9.45l1.21,2.1l1.44-0.57l-0.01-0.02 c0.26,0.21,0.55,0.38,0.86,0.51H6.42L6.65,13h2.43c0,0,0.01-0.09,0.03-0.21l0.19-1.32H9.29c0.31-0.13,0.6-0.3,0.86-0.51 l-0.01,0.02L11.58,11.55z M7.86,9.5c-0.83,0-1.5-0.68-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5c0.82,0,1.5,0.67,1.5,1.5 C9.36,8.82,8.68,9.5,7.86,9.5z\\\"></path><path d=\\\"M16.17,14.3L16.17,14.3c0.01-0.09,0.02-0.19,0.02-0.3c0-0.1-0.01-0.2-0.03-0.3l0,0l0.73-0.57l-0.73-1.26l-0.86,0.35v0 c-0.16-0.12-0.33-0.22-0.51-0.3h0L14.67,11h-1.46l-0.13,0.92h0c-0.18,0.08-0.36,0.18-0.51,0.3v0l-0.86-0.35l-0.73,1.26l0.73,0.57 l0,0c-0.01,0.09-0.02,0.19-0.02,0.3c0,0.1,0.01,0.2,0.02,0.3l0-0.01l-0.63,0.5c-0.06,0.04-0.1,0.08-0.1,0.08l0.73,1.26l0.87-0.34 l-0.01-0.01c0.16,0.12,0.33,0.23,0.52,0.3h0L13.21,17h1.46c0,0,0.01-0.06,0.02-0.13l0.12-0.79h0c0.19-0.08,0.36-0.18,0.52-0.3 l-0.01,0.01l0.87,0.34l0.73-1.26c0,0-0.04-0.03-0.1-0.08L16.17,14.3z M14,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1C15,14.55,14.55,15,14,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compass_calibration\": {\n    \"name\": \"compass_calibration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"4\\\"></circle><path d=\\\"M12 3C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me\": {\n    \"name\": \"near_me\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z\\\"></path>\"\n      }\n    }\n  },\n  \"home_repair_service\": {\n    \"name\": \"home_repair_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"18,16 16,16 16,15 8,15 8,16 6,16 6,15 2,15 2,20 22,20 22,15 18,15\\\"></polygon></g><path d=\\\"M17,8V4H7v4H2v6h4v-2h2v2h8v-2h2v2h4V8H17z M9,6h6v2H9V6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"14,13 13,13 13,12 7,12 7,13 6,13 6,12 3,12 3,16 17,16 17,12 14,12\\\"></polygon></g><path d=\\\"M13,7V4H7v3H3v4h3v-1h1v1h6v-1h1v1h3V7H13z M12,7H8V5h4V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airline_stops\": {\n    \"name\": \"airline_stops\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.21,9.21C15.93,10.78,13.45,13.3,13,17h2v2H9v-2h2c-0.5-4.5-4.37-8-9-8V7c4.39,0,8.22,2.55,10,6.3 c1.13-2.43,2.99-4.25,4.78-5.52L14,5h7v7L18.21,9.21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,14C9.25,10.41,6,7.5,2,7.5V6c3.56,0,6.64,1.96,8,4.76c0.72-1.49,1.96-2.87,3.68-4.08L11.5,4.5H17V10l-2.24-2.24 c-1.78,1.21-4.01,3.28-4.01,6.24h1.5v1.5h-4.5V14H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"bedroom_baby\": {\n    \"name\": \"bedroom_baby\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,2H2v20h20V2z M12,18c-2.64,0-5.13-1.03-7-2.9l1.06-1.06c0.34,0.34,0.71,0.65,1.1,0.92L8,13.5V9.51L6.45,10.5l-0.95-1 L7,7.76L6,7h3.65l1.73,3H17v1h-1v2.5l0.84,1.46c0.39-0.28,0.76-0.58,1.1-0.92L19,15.1C17.13,16.97,14.64,18,12,18z\\\"></path><path d=\\\"M14.69,14.24c-1.74,0.65-3.66,0.65-5.4,0l-0.81,1.41l-0.03,0.06c1.1,0.52,2.28,0.79,3.53,0.79s2.45-0.28,3.55-0.79 l-0.03-0.06L14.69,14.24z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"garage\": {\n    \"name\": \"garage\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><polygon points=\\\"8.33,7.5 7.67,9.5 16.33,9.5 15.67,7.5\\\"></polygon><path d=\\\"M22,2H2v20h20V2z M19,18.5h-2v-2H7v2H5v-7.31L6.89,5.5h10.21L19,11.19V18.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feed\": {\n    \"name\": \"feed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,3H3v18h18V8L16,3z M7,7h5v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10V13z M15,9V5l4,4H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flatware\": {\n    \"name\": \"flatware\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,7.08c0,1.77-0.84,3.25-2,3.82V21h-2V10.9c-1.16-0.57-2-2.05-2-3.82C10.01,4.83,11.35,3,13,3C14.66,3,16,4.83,16,7.08z M17,3v18h2v-8h2V7C21,5.24,19.76,3,17,3z M8.28,3H7.56v4H6.72V3L6,3L5.28,3v4H4.44V3L3.72,3H3v8c0,0,0.9,0,2,0v10h2V11 c1.1,0,2,0,2,0V3L8.28,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bathroom\": {\n    \"name\": \"bathroom\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M22,2H2v20h20V2z M9,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,18,9,18z M9,15c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S9.55,15,9,15z M12,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.55,18,12,18z M12,15c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S12.55,15,12,15z M15,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,18,15,18z M15,15c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S15.55,15,15,15z M17,12H7v-1c0-2.76,2.24-5,5-5s5,2.24,5,5V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair_alt\": {\n    \"name\": \"chair_alt\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,10h3V3H5v7h3v2H5v9h2v-3h10v3h2v-9h-3V10z M7,8V5h10v3H7z M17,16H7v-2h10V16z M14,12h-4v-2h4V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee\": {\n    \"name\": \"coffee\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18.5,3H4v8c0,3.87,3.13,7,7,7h0c3.87,0,7-3.13,7-7v-1l0.4,0c1.67,0,3.19-1.13,3.52-2.77C22.39,4.98,20.67,3,18.5,3z M16,5 v3H6V5H16z M18.5,8H18V5h0.5C19.33,5,20,5.67,20,6.5S19.33,8,18.5,8z M4,19h16v2H4V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"coffee_maker\": {\n    \"name\": \"coffee_maker\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,7V4h2V2H4v20h16v-2h-4.03C17.2,19.09,18,17.64,18,16v-5H8v5c0,1.64,0.81,3.09,2.03,4H6V4h2v3H18z\\\"></path><circle cx=\\\"13\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"bedroom_parent\": {\n    \"name\": \"bedroom_parent\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"6.5\\\" y=\\\"12\\\"></rect><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"7.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"12.75\\\" y=\\\"8.5\\\"></rect><path d=\\\"M22,2H2v20h20V2z M19,17h-1.5v-1.5h-11V17H5v-5l0.65-0.55V7H11c0.37,0,0.72,0.12,1,0.32C12.28,7.12,12.63,7,13,7h5.35 v4.45L19,12V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"window\": {\n    \"name\": \"window\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"13\\\" y=\\\"3\\\"></rect><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"13\\\"></rect><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"6.25\\\" width=\\\"6.25\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"6.25\\\" width=\\\"6.25\\\" x=\\\"10.75\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"6.25\\\" width=\\\"6.25\\\" x=\\\"10.75\\\" y=\\\"10.75\\\"></rect></g><g><rect height=\\\"6.25\\\" width=\\\"6.25\\\" x=\\\"3\\\" y=\\\"10.75\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"living\": {\n    \"name\": \"living\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"15.5,12 15.5,14.5 8.5,14.5 8.5,12 7.52,12 6.5,12 6.5,16.5 17.5,16.5 17.5,12\\\"></polygon><polygon points=\\\"10,10 10,13 14,13 14,10 16.25,9.99 16.25,7.5 7.75,7.5 7.75,9.99\\\"></polygon><path d=\\\"M22,2H2v20h20V2z M19,9.99V18H5v-8l1.25-0.01V6h11.5v3.99H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dining\": {\n    \"name\": \"dining\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M22,2H2v20h20V2z M11,10.3c0,0.93-0.64,1.71-1.5,1.93V19H8v-6.77c-0.86-0.22-1.5-1-1.5-1.93V6H7h0.5v3h0.75V6h0.5h0.5v3H10 V6h0.5H11V10.3z M15.58,12.59l-0.08,0.03V19H14v-6.38l-0.08-0.04c-0.97-0.47-1.67-1.7-1.67-3.18c0-1.88,1.13-3.4,2.5-3.4 c1.38,0,2.5,1.53,2.5,3.41C17.25,10.89,16.55,12.12,15.58,12.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"chair\": {\n    \"name\": \"chair\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"7,13 17,13 17,7 20,7 20,3 4,3 4,7 7,7\\\"></polygon><path d=\\\"M23,9h-4v6H5V9H1v10h3v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1h3V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"table_bar\": {\n    \"name\": \"table_bar\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,7.5C22,5.57,17.52,4,12,4S2,5.57,2,7.5c0,1.81,3.95,3.31,9,3.48V15H8l-2,5h2l1.2-3h5.6l1.2,3h2l-2-5h-3v-4.02 C18.05,10.81,22,9.31,22,7.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,6.5C18,5.12,14.42,4,10,4S2,5.12,2,6.5c0,1.3,3.18,2.37,7.25,2.49v3.51H6.67L5,16h1.5l1-2h5l1,2H15l-1.67-3.5h-2.58 V8.99C14.82,8.87,18,7.8,18,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_indoor\": {\n    \"name\": \"camera_indoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,3L4,9v12h16V9L12,3z M16,16.06L14,15v2H8v-6h6v2l2-1.06V16.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"door_back\": {\n    \"name\": \"door_back\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,19V3H5v16H3v2h18v-2H19z M11,13H9v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bedroom_child\": {\n    \"name\": \"bedroom_child\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"8.5\\\"></rect><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"7.51\\\" y=\\\"12\\\"></rect><path d=\\\"M22,2H2v20h20V2z M18,17h-1.5v-1.5h-9V17H6l0-6.32l1.5-0.01V7h9v3.67l1.5,0V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"door_front\": {\n    \"name\": \"door_front\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M19,19V3H5v16H3v2h18v-2H19z M15,13h-2v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shower\": {\n    \"name\": \"shower\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><circle cx=\\\"8\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M13,5.08V3h-2v2.08C7.61,5.57,5,8.47,5,12v2h14v-2C19,8.47,16.39,5.57,13,5.08z\\\"></path><circle cx=\\\"8\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle></g>\"\n      }\n    }\n  },\n  \"door_sliding\": {\n    \"name\": \"door_sliding\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,19V3h-7.25v16h-1.5V3H4v16H3v2h18v-2H20z M10,13H8v-2h2V13z M16,13h-2v-2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"light\": {\n    \"name\": \"light\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M13,6.06V3h-2v3.06C5.87,6.63,2.03,11.51,3.22,17L8,17c0,2.21,1.79,4,4,4s4-1.79,4-4l4.78,0 C21.97,11.51,18.13,6.63,13,6.06z M12,15H5c0-3.86,3.14-7,7-7s7,3.14,7,7H12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_restaurant\": {\n    \"name\": \"table_restaurant\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22.33,11l-2-7H3.67l-2,7H5.2L4,20h2l0.67-5h10.67L18,20h2l-1.2-9H22.33z M6.93,13l0.27-2h9.6l0.27,2H6.93z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.48,9l-2-5H3.52l-2,5h2.75L3,16h1.5l0.73-4h9.32l0.73,4h1.5L15.5,9H18.48z M5.5,10.5L5.77,9H14l0.27,1.5H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"podcasts\": {\n    \"name\": \"podcasts\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,12c0,0.74-0.4,1.38-1,1.72V22h-2v-8.28c-0.6-0.35-1-0.98-1-1.72c0-1.1,0.9-2,2-2S14,10.9,14,12z M12,6 c-3.31,0-6,2.69-6,6c0,1.74,0.75,3.31,1.94,4.4l1.42-1.42C8.53,14.25,8,13.19,8,12c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.19-0.53,2.25-1.36,2.98l1.42,1.42C17.25,15.31,18,13.74,18,12C18,8.69,15.31,6,12,6z M12,2C6.48,2,2,6.48,2,12 c0,2.85,1.2,5.41,3.11,7.24l1.42-1.42C4.98,16.36,4,14.29,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8c0,2.29-0.98,4.36-2.53,5.82l1.42,1.42 C20.8,17.41,22,14.85,22,12C22,6.48,17.52,2,12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"manage_search\": {\n    \"name\": \"manage_search\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M7,9H2V7h5V9z M7,12H2v2h5V12z M20.59,19l-3.83-3.83C15.96,15.69,15.02,16,14,16c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 c0,1.02-0.31,1.96-0.83,2.75L22,17.59L20.59,19z M17,11c0-1.65-1.35-3-3-3s-3,1.35-3,3s1.35,3,3,3S17,12.65,17,11z M2,19h10v-2H2 V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bed\": {\n    \"name\": \"bed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21 10V5H3v5H2v9h2v-2h16v2h2v-9h-1zm-8-3h6v3h-6V7zm-8 3V7h6v3H5zm-1 5v-3h16v3H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"doorbell\": {\n    \"name\": \"doorbell\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,3L4,9v12h16V9L12,3z M12,17.5c-0.55,0-1-0.45-1-1h2C13,17.05,12.55,17.5,12,17.5z M16,16H8v-1h1v-2.34 c0-1.54,0.82-2.82,2.25-3.16v-1h1.5v1C14.19,9.84,15,11.12,15,12.66V15h1V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"camera_outdoor\": {\n    \"name\": \"camera_outdoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,14v-2h-6v6h6v-2l2,1.06v-4.12L18,14z M12,3L4,9v12h16v-2H6v-9l6-4.5l6,4.5v1h2V9L12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"yard\": {\n    \"name\": \"yard\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,2H2v20h20V2z M8,8.22c0-0.86,0.7-1.56,1.56-1.56c0.33,0,0.64,0.1,0.89,0.28l-0.01-0.12c0-0.86,0.7-1.56,1.56-1.56 s1.56,0.7,1.56,1.56l-0.01,0.12c0.26-0.18,0.56-0.28,0.89-0.28c0.86,0,1.56,0.7,1.56,1.56c0,0.62-0.37,1.16-0.89,1.4 C15.63,9.87,16,10.41,16,11.03c0,0.86-0.7,1.56-1.56,1.56c-0.33,0-0.64-0.11-0.89-0.28l0.01,0.12c0,0.86-0.7,1.56-1.56,1.56 s-1.56-0.7-1.56-1.56l0.01-0.12c-0.26,0.18-0.56,0.28-0.89,0.28C8.7,12.59,8,11.89,8,11.03c0-0.62,0.37-1.16,0.89-1.4 C8.37,9.38,8,8.84,8,8.22z M12,19c-3.31,0-6-2.69-6-6C9.31,13,12,15.69,12,19c0-3.31,2.69-6,6-6C18,16.31,15.31,19,12,19z\\\"></path><circle cx=\\\"12\\\" cy=\\\"9.62\\\" r=\\\"1.56\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"blender\": {\n    \"name\": \"blender\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,3h-4V2h-4v1H3v8h4.23l0.64,4.13L6,17v5h12v-5l-1.87-1.87L18,3z M5,9V5h1.31l0.62,4H5z M12,19c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,19,12,19z M14.29,14H9.72L8.33,5h7.34L14.29,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sim_card\": {\n    \"name\": \"sim_card\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.99 2H10L4 8v14h16l-.01-20zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds\": {\n    \"name\": \"earbuds\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.2,3.01C4.44,2.89,3,4.42,3,6.19L3,16c0,2.76,2.24,5,5,5h0c2.76,0,5-2.24,5-5V8c0-1.66,1.34-3,3-3h0c1.66,0,3,1.34,3,3 v7l-0.83,0c-1.61,0-3.06,1.18-3.17,2.79c-0.12,1.69,1.16,3.1,2.8,3.21c1.76,0.12,3.2-1.42,3.2-3.18L21,8c0-2.76-2.24-5-5-5h0 c-2.76,0-5,2.24-5,5v8c0,1.66-1.34,3-3,3l0,0c-1.66,0-3-1.34-3-3V9l0.83,0C7.44,9,8.89,7.82,9,6.21C9.11,4.53,7.83,3.11,6.2,3.01z\\\"></path></g><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"3\\\"></rect><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"15\\\" y=\\\"15\\\"></rect></g>\"\n      }\n    }\n  },\n  \"smart_toy\": {\n    \"name\": \"smart_toy\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,9V5h-5V2H9v3H4v4H1v6h3v6h16v-6h3V9H20z M7.5,11.5C7.5,10.67,8.17,10,9,10s1.5,0.67,1.5,1.5S9.83,13,9,13 S7.5,12.33,7.5,11.5z M16,17H8v-2h8V17z M15,13c-0.83,0-1.5-0.67-1.5-1.5S14.17,10,15,10s1.5,0.67,1.5,1.5S15.83,13,15,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"videogame_asset\": {\n    \"name\": \"videogame_asset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 6H1v12h22V6zm-12 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smartphone\": {\n    \"name\": \"smartphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 1v22h14V1H5zm12 18H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_for_education\": {\n    \"name\": \"cast_for_education\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_screen\": {\n    \"name\": \"smart_screen\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M1,5v14h22V5H1z M18,17H6V7h12V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"12.5\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"10\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"7.5\\\" y=\\\"11.25\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"tablet\": {\n    \"name\": \"tablet\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 4H1v16h21.99L23 4zm-4 14H5V6h14v12z\\\"></path>\"\n      }\n    }\n  },\n  \"security\": {\n    \"name\": \"security\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z\\\"></path>\"\n      }\n    }\n  },\n  \"laptop_windows\": {\n    \"name\": \"laptop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18v-1h1.99L22 3H2v14h2v1H0v2h24v-2h-4zM4 5h16v10H4V5z\\\"></path>\"\n      }\n    }\n  },\n  \"cast\": {\n    \"name\": \"cast\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"device_unknown\": {\n    \"name\": \"device_unknown\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H5v22h14V1zm-2 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_mic\": {\n    \"name\": \"headset_mic\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.4 1.02C6.62 1.33 3 5.51 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-4v8h4v1h-7v2h9V10c0-5.17-4.36-9.32-9.6-8.98z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_option_key\": {\n    \"name\": \"keyboard_option_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><polygon points=\\\"9,5 3,5 3,7 7.85,7 14.77,19 21,19 21,17 15.93,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8,5 3,5 3,6.5 7.13,6.5 12.04,15 17,15 17,13.5 12.91,13.5\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"12\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"developer_board_off\": {\n    \"name\": \"developer_board_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V3H5.83L7.83,5z M12,9.17V7h4v3h-3.17L12,9.17z M9.83,7H11v1.17 L9.83,7z M13.83,11H16v2.17L13.83,11z M18.17,21l2.31,2.31l1.41-1.41L2.1,2.1L0.69,3.51L2,4.83V21H18.17z M4,19V6.83l2,2V12h3.17 l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.12,14H18v-1.5h-2v-1.75h2v-1.5h-2V7.5h2V6h-2V3H5.12l1.5,1.5h7.88v7.88L16.12,14z M8.12,6H9v0.88L8.12,6z M13,8h-2.88 L10,7.88V6h3V8z M11.12,9H13v1.88L11.12,9z M2.22,2.22L1.16,3.28L2,4.12L2,17h12.88l1.84,1.84l1.06-1.06L2.22,2.22z M3.5,15.5V5.62 L5,7.12V10h2.88l1,1H5v3h4v-2.88l1,1V14h1.88l1.5,1.5H3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_right\": {\n    \"name\": \"keyboard_double_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.41,6 5,7.41 9.58,12 5,16.59 6.41,18 12.41,12\\\"></polygon><polygon points=\\\"13,6 11.59,7.41 16.17,12 11.59,16.59 13,18 19,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5.06,5 4,6.06 7.94,10 4,13.94 5.06,15 10.06,10\\\"></polygon><polygon points=\\\"11,5 9.94,6.06 13.88,10 9.94,13.94 11,15 16,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_down\": {\n    \"name\": \"keyboard_double_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,6.41 16.59,5 12,9.58 7.41,5 6,6.41 12,12.41\\\"></polygon><polygon points=\\\"18,13 16.59,11.59 12,16.17 7.41,11.59 6,13 12,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"15,5.06 13.94,4 10,7.94 6.06,4 5,5.06 10,10.06\\\"></polygon><polygon points=\\\"15,11 13.94,9.94 10,13.88 6.06,9.94 5,11 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_backspace\": {\n    \"name\": \"keyboard_backspace\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_mac\": {\n    \"name\": \"tablet_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 0H2v24h19V0zm-9.5 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z\\\"></path>\"\n      }\n    }\n  },\n  \"videogame_asset_off\": {\n    \"name\": \"videogame_asset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M20.83,18H22V6H8.83L20.83,18z M17.5,9c0.83,0,1.5,0.67,1.5,1.5S18.33,12,17.5,12S16,11.33,16,10.5S16.67,9,17.5,9z M21.19,21.19L2.81,2.81L1.39,4.22L3.17,6H2v12h13.17l4.61,4.61L21.19,21.19z M9,13v2H7v-2H5v-2h2V9.83L10.17,13H9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17.12,15H18V5H7.12L17.12,15z M14.5,7.75c0.69,0,1.25,0.56,1.25,1.25s-0.56,1.25-1.25,1.25S13.25,9.69,13.25,9 S13.81,7.75,14.5,7.75z M17.07,17.07L2.93,2.93L1.87,3.99L2.88,5H2v10h10.88l3.13,3.13L17.07,17.07z M7.55,10.75v1.75h-1.5v-1.75 H4.3v-1.5h1.75V8.17l2.58,2.58H7.55z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_android\": {\n    \"name\": \"tablet_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 0H3v24h18V0zm-7 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_off\": {\n    \"name\": \"watch_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7c2.76,0,5,2.24,5,5c0,0.64-0.13,1.25-0.35,1.82l1.5,1.5C18.69,14.33,19,13.2,19,12c0-2.22-1.03-4.19-2.64-5.47L15,2 H9L8.04,5.21l2.14,2.14C10.75,7.13,11.36,7,12,7z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67,5,10.8,5,12c0,2.22,1.03,4.19,2.64,5.47L9,22h6l0.96-3.21l3.82,3.82l1.41-1.41 L2.81,2.81z M12,17c-2.76,0-5-2.24-5-5c0-0.64,0.13-1.25,0.35-1.82l6.47,6.47C13.25,16.87,12.64,17,12,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c1.93,0,3.5,1.57,3.5,3.5c0,0.41-0.08,0.8-0.21,1.17l1.14,1.14C14.79,11.62,15,10.83,15,10 c0-1.65-0.81-3.1-2.04-4.01L12,2H8L7.25,5.13l1.59,1.59C9.2,6.58,9.59,6.5,10,6.5z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99l3.7,3.7C5.21,8.38,5,9.17,5,10c0,1.64,0.8,3.07,2.01,3.99L8,18h4l0.77-3.11l3.24,3.24l1.06-1.06 L2.93,2.93z M10,13.5c-1.93,0-3.5-1.57-3.5-3.5c0-0.41,0.08-0.8,0.21-1.17l4.45,4.45C10.8,13.42,10.41,13.5,10,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_hide\": {\n    \"name\": \"keyboard_hide\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3H2.01L2 17h20V3zM11 6h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15 4-4H8l4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"home_max\": {\n    \"name\": \"home_max\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M19,5H5C2.79,5,1,6.79,1,9v5c0,2.21,1.79,4,4,4h2v1h10v-1h2c2.21,0,4-1.79,4-4V9C23,6.79,21.21,5,19,5z M21,14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_return\": {\n    \"name\": \"keyboard_return\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"computer\": {\n    \"name\": \"computer\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18l2-2V4H2v12l2 2H0v2h24v-2h-4zM4 6h16v10H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"memory\": {\n    \"name\": \"memory\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V5h-4V3h-2v2h-2V3H9v2H5v4H3v2h2v2H3v2h2v4h4v2h2v-2h2v2h2v-2h4v-4h2v-2h-2v-2h2zm-4 6H7V7h10v10z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_capslock\": {\n    \"name\": \"keyboard_capslock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"tv\": {\n    \"name\": \"tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"adf_scanner\": {\n    \"name\": \"adf_scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,12h-4V4H6v8H2v8h20V12z M16,12H8V6h8V12z M18,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C19,16.55,18.55,17,18,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,9.5h-3V4H5v5.5H2V16h16V9.5z M13.5,9.5h-7v-4h7V9.5z M14.75,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,13.16,15.16,13.5,14.75,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop\": {\n    \"name\": \"laptop\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,18l2-2V4H2v12l2,2H0v2h24v-2H20z M4,6h16v10H4V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"laptop_chromebook\": {\n    \"name\": \"laptop_chromebook\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_group\": {\n    \"name\": \"speaker_group\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 1H8v17.99h12V1zm-6 2c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path><circle cx=\\\"14\\\" cy=\\\"12.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M6 5H4v18h12v-2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_iphone\": {\n    \"name\": \"phone_iphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 1H5v22h13V1zm-6.5 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard\": {\n    \"name\": \"keyboard\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5H2.01L2 19h20V5zM11 8h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker\": {\n    \"name\": \"speaker\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 2H5v19.99h14V2zm-7 2c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"gamepad\": {\n    \"name\": \"gamepad\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_up\": {\n    \"name\": \"keyboard_double_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6,17.59 7.41,19 12,14.42 16.59,19 18,17.59 12,11.59\\\"></polygon><polygon points=\\\"6,11 7.41,12.41 12,7.83 16.59,12.41 18,11 12,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5,14.94 6.06,16 10,12.06 13.94,16 15,14.94 10,9.94\\\"></polygon><polygon points=\\\"5,9 6.06,10.06 10,6.12 13.94,10.06 15,9 10,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"watch\": {\n    \"name\": \"watch\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_not_supported\": {\n    \"name\": \"browser_not_supported\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"19,6 19,16.5 21,18.5 21,4 6.5,4 8.5,6\\\"></polygon><path d=\\\"M3.22,3.32L1.95,4.59L3,5.64L3,20h14.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"15,5 15,13.59 16,14.59 16,4 5.41,4 6.41,5\\\"></polygon><path d=\\\"M3.64,3.64L2.93,4.34L4,5.41V16h10.59l1.07,1.07l0.71-0.71L3.64,3.64z M5,15V6.41L13.59,15H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dock\": {\n    \"name\": \"dock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 23h8v-2H8v2zM18 1.01L6 1v18h12V1.01zM16 15H8V5h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"device_hub\": {\n    \"name\": \"device_hub\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds_battery\": {\n    \"name\": \"earbuds_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,7 20,6 18,6 18,7 16,7 16,18 22,18 22,7\\\"></polygon><path d=\\\"M5.38,16.5L5.38,16.5c-1.04,0-1.88-0.84-1.88-1.87V10H6V6H4C2.9,6,2,6.9,2,8v6.63C2,16.49,3.51,18,5.37,18h0 c1.86,0,3.37-1.51,3.37-3.37V9.37c0-1.04,0.84-1.87,1.87-1.87h0c1.04,0,1.87,0.84,1.87,1.87V14H10v4h2c1.1,0,2-0.9,2-2V9.37 C14,7.51,12.49,6,10.63,6h0C8.76,6,7.25,7.51,7.25,9.37v5.25C7.25,15.66,6.41,16.5,5.38,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headphones\": {\n    \"name\": \"headphones\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,3c-4.97,0-9,4.03-9,9v9h6v-8H5v-1c0-3.87,3.13-7,7-7s7,3.13,7,7v1h-4v8h6v-9C21,7.03,16.97,3,12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"headphones_battery\": {\n    \"name\": \"headphones_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,7 20,6 18,6 18,7 16,7 16,18 22,18 22,7\\\"></polygon><path d=\\\"M8,6c-3.31,0-6,2.69-6,6v6h4v-5H3.5v-1c0-2.48,2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5v1H10v5h4v-6C14,8.69,11.31,6,8,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"start\": {\n    \"name\": \"start\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6-6l-6-6L14.59,7.41z M2,6v12h2V6H2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2.5,5v10H4V5H2.5z M17.5,10l-4,4l-1.06-1.06l2.19-2.19H5.5v-1.5h9.13l-2.19-2.19L13.5,6L17.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_windows\": {\n    \"name\": \"desktop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 2H1v16h9v2H8v2h8v-2h-2v-2h9V2zm-2 14H3V4h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"toys\": {\n    \"name\": \"toys\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M18.72,10l-2-6H7.28L5.81,8.4L4.41,7l1-1L4,4.59L0.59,8L2,9.41l1-1L4.59,10H2v8h2.18C4.59,19.16,5.7,20,7,20 c1.3,0,2.4-0.84,2.82-2h4.37c0.41,1.16,1.51,2,2.82,2c1.3,0,2.41-0.84,2.82-2H22v-8H18.72z M7,18c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S7.55,18,7,18z M11,10H7.41L7.39,9.98L8.72,6c0,0,0,0,0,0H11V10z M13,10V6h2.28l1.33,4H13z M17,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S17.55,18,17,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.54,8.5l-1.33-4H6.79L5.73,7.67l-1-1L5.41,6L4.35,4.94L1.94,7.35L3,8.41l0.67-0.67L4.44,8.5H3V14h1.39 c0.31,0.87,1.14,1.5,2.11,1.5s1.8-0.63,2.11-1.5h2.78c0.31,0.87,1.14,1.5,2.11,1.5s1.8-0.63,2.11-1.5H17V8.5H14.54z M10.75,6h1.38 l0.83,2.5h-2.21V6z M7.87,6h1.38v2.5H7.04L7.87,6z M6.5,14c-0.41,0-0.75-0.34-0.75-0.75S6.09,12.5,6.5,12.5s0.75,0.34,0.75,0.75 S6.91,14,6.5,14z M13.5,14c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75S13.91,14,13.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_board\": {\n    \"name\": \"developer_board\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9V7h-2V3H2v18h18v-4h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"home_mini\": {\n    \"name\": \"home_mini\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,5C4.19,5,2,9.48,2,12c0,3.86,3.13,7,6.99,7h6.02c2.69,0,6.99-2.08,6.99-7C22,12,22,5,12,5z M12,7c7.64,0,7.99,4.51,8,5 H4C4,11.8,4.09,7,12,7z M14.86,17H9.14c-2.1,0-3.92-1.24-4.71-3h15.15C18.78,15.76,16.96,17,14.86,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_control_key\": {\n    \"name\": \"keyboard_control_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"5,12 6.41,13.41 12,7.83 17.59,13.41 19,12 12,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"5,10 6.06,11.06 10,7.12 13.94,11.06 15,10 10,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"connected_tv\": {\n    \"name\": \"connected_tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.57,16H10c0-2.76-2.24-5-5-5v1.43C6.97,12.43,8.57,14.03,8.57,16z\\\"></path><path d=\\\"M11.55,16H13c0-4.42-3.59-8-8-8v1.45C8.61,9.45,11.55,12.38,11.55,16z\\\"></path><path d=\\\"M5,14v2h2C7,14.89,6.11,14,5,14z\\\"></path><path d=\\\"M22,3H2v16h6v2h8v-2h6V3z M20,17H4V5h16V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_down\": {\n    \"name\": \"keyboard_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_connected\": {\n    \"name\": \"cast_connected\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm22-7H1v5h2V5h18v14h-7v2h9V3z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_mac\": {\n    \"name\": \"desktop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 2H1v16h9l-2 3v1h8v-1l-2-3h9V2zm-2 12H3V4h18v10z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_display\": {\n    \"name\": \"smart_display\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M22,4H2v16h20V4z M9.5,16.5v-9l7,4.5L9.5,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"point_of_sale\": {\n    \"name\": \"point_of_sale\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,2H5c0,0,0,0,0,0v6c0,0,0,0,0,0h14c0,0,0,0,0,0L19,2C19,2,19,2,19,2z M17,6H7V4h10V6z M22,22H2c0,0,0,0,0,0v-3h20L22,22 C22,22,22,22,22,22z M18,9H6c0,0,0,0,0,0l-4,9h20L18,9z M10,16H8v-1h2V16z M10,14H8v-1h2V14z M10,12H8v-1h2V12z M13,16h-2v-1h2V16z M13,14h-2v-1h2V14z M13,12h-2v-1h2V12z M16,16h-2v-1h2V16z M16,14h-2v-1h2V14z M16,12h-2v-1h2V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,6V3H5v3c0,0,0,0,0,0L15,6C15,6,15,6,15,6z M14,5H6V4h8V5z M14,7H6l-3,7h14L14,7z M8.25,13h-1.5v-1h1.5V13z M8.25,11 h-1.5v-1h1.5V11z M8.25,9h-1.5V8h1.5V9z M10.75,13h-1.5v-1h1.5V13z M10.75,11h-1.5v-1h1.5V11z M10.75,9h-1.5V8h1.5V9z M13.25,13 h-1.5v-1h1.5V13z M13.25,11h-1.5v-1h1.5V11z M13.25,9h-1.5V8h1.5V9z M17,15l0,2H3l0-2H17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"scanner\": {\n    \"name\": \"scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.2 5l-.7 1.9L17.6 12H3v8h18v-8.86L4.2 5zM7 17H5v-2h2v2zm12 0H9v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_off\": {\n    \"name\": \"phonelink_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.56 4l-2.5-2.49L4.56 4zM24 8h-8v4.61l2 2V10h4v7h-1.61l3 3H24zm-2-2V4H7.39l2 2zM2.06 1.51L.65 2.92 2 4.27V17H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z\\\"></path>\"\n      }\n    }\n  },\n  \"power_input\": {\n    \"name\": \"power_input\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_android\": {\n    \"name\": \"phone_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H5v22h14V1zm-5 20h-4v-1h4v1zm3-3H7V4h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_updated\": {\n    \"name\": \"browser_updated\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M22,13v5h-5l1,1v2H6v-2l1-1H2V3l10,0v2L4,5v11h16v-3H22z M15,15l-5-5h4V3h2v7h4L15,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M18,10.5V15h-5l1,1v1H6v-1l1-1H2V3h8.25v1.5H3.5v9h13v-3H18z M16.5,9l-3.25,0V3h-1.5v6L8.5,9l4,4L16.5,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_alt\": {\n    \"name\": \"keyboard_alt\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M23,4H1v17h22V4z M7,12v2H5v-2H7z M5,10V8h2v2H5z M11,12v2H9v-2H11z M9,10V8h2v2H9z M16,16v1H8v-1H16z M15,12v2h-2v-2H15z M13,10V8h2v2H13z M17,14v-2h2v2H17z M19,10h-2V8h2V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headset\": {\n    \"name\": \"headset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.4 1.02C6.62 1.33 3 5.52 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3 15.76 2.89 19 6.06 19 10v2h-4v8h6V10c0-5.17-4.36-9.32-9.6-8.98z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_voice\": {\n    \"name\": \"keyboard_voice\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\\\"></path>\"\n      }\n    }\n  },\n  \"mouse\": {\n    \"name\": \"mouse\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_tab\": {\n    \"name\": \"keyboard_tab\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_command_key\": {\n    \"name\": \"keyboard_command_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.5,3C15.57,3,14,4.57,14,6.5V8h-4V6.5C10,4.57,8.43,3,6.5,3S3,4.57,3,6.5S4.57,10,6.5,10H8v4H6.5 C4.57,14,3,15.57,3,17.5S4.57,21,6.5,21s3.5-1.57,3.5-3.5V16h4v1.5c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S19.43,14,17.5,14H16 v-4h1.5c1.93,0,3.5-1.57,3.5-3.5S19.43,3,17.5,3L17.5,3z M16,8V6.5C16,5.67,16.67,5,17.5,5S19,5.67,19,6.5S18.33,8,17.5,8H16L16,8 z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5V8H6.5L6.5,8z M10,14v-4h4v4H10L10,14z M17.5,19c-0.83,0-1.5-0.67-1.5-1.5 V16h1.5c0.83,0,1.5,0.67,1.5,1.5S18.33,19,17.5,19L17.5,19z M6.5,19C5.67,19,5,18.33,5,17.5S5.67,16,6.5,16H8v1.5 C8,18.33,7.33,19,6.5,19L6.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.25,11.5H13v-3h1.25C15.77,8.5,17,7.27,17,5.75S15.77,3,14.25,3S11.5,4.23,11.5,5.75V7h-3V5.75C8.5,4.23,7.27,3,5.75,3 S3,4.23,3,5.75S4.23,8.5,5.75,8.5H7v3H5.75C4.23,11.5,3,12.73,3,14.25S4.23,17,5.75,17s2.75-1.23,2.75-2.75V13h3v1.25 c0,1.52,1.23,2.75,2.75,2.75S17,15.77,17,14.25S15.77,11.5,14.25,11.5z M13,5.75c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S14.94,7,14.25,7H13V5.75z M5.75,7C5.06,7,4.5,6.44,4.5,5.75S5.06,4.5,5.75,4.5S7,5.06,7,5.75V7H5.75z M7,14.25 c0,0.69-0.56,1.25-1.25,1.25c-0.69,0-1.25-0.56-1.25-1.25S5.06,13,5.75,13H7h0V14.25z M8.5,11.5L8.5,11.5l0-3h3v3H8.5z M14.25,15.5 c-0.69,0-1.25-0.56-1.25-1.25V13h1.25c0.69,0,1.25,0.56,1.25,1.25S14.94,15.5,14.25,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop_mac\": {\n    \"name\": \"laptop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18l1.99-2L22 3H2v13l2 2H0v2h24v-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"router\": {\n    \"name\": \"router\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.2 5.9l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8zM21 13h-4V9h-2v4H3v8h18v-8zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_off\": {\n    \"name\": \"headset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,4c3.87,0,7,3.13,7,7v1h-4v0.17l6,6V11c0-4.97-4.03-9-9-9C9.98,2,8.12,2.67,6.62,3.8l1.43,1.43C9.17,4.45,10.53,4,12,4 z\\\"></path><path d=\\\"M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09,3,9.5,3,11v9h6v-8H5v-1c0-0.94,0.19-1.83,0.52-2.65L15,17.83V20h2.17l1,1H12v2 h8.17l0.31,0.31l1.41-1.41L2.1,2.1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"monitor\": {\n    \"name\": \"monitor\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M22,3H2v15h5l-1,1v2h12v-2l-1-1h5V3z M20,16H4V5h16V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"devices_other\": {\n    \"name\": \"devices_other\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 6h18V4H1v16h6v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM23 8h-8v12h8V8zm-2 10h-4v-8h4v8z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_up\": {\n    \"name\": \"keyboard_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_left\": {\n    \"name\": \"keyboard_double_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.59,18 19,16.59 14.42,12 19,7.41 17.59,6 11.59,12\\\"></polygon><polygon points=\\\"11,18 12.41,16.59 7.83,12 12.41,7.41 11,6 5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14.94,15 16,13.94 12.06,10 16,6.06 14.94,5 9.94,10\\\"></polygon><polygon points=\\\"9,15 10.06,13.94 6.12,10 10.06,6.06 9,5 4,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_right\": {\n    \"name\": \"keyboard_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink\": {\n    \"name\": \"phonelink\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_left\": {\n    \"name\": \"keyboard_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3_select\": {\n    \"name\": \"timer_3_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,11v2h-4v1h4v5h-6v-2h4v-1h-4v-5H21z M4,5v3h6v2.5H4v3h6V16H4v3h9V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_no_sim\": {\n    \"name\": \"signal_cellular_no_sim\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-9L7.95 5.06 19 16.11zm-15.21.74L2.38 5.15 5 7.77V21h13.23l1.62 1.62 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"data_usage\": {\n    \"name\": \"data_usage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"mobiledata_off\": {\n    \"name\": \"mobiledata_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"16,7 19,7 15,3 11,7 14,7 14,11.17 16,13.17\\\"></polygon><polygon points=\\\"2.81,2.81 1.39,4.22 8,10.83 8,17.01 5,17.02 9,21 13,17 10,17.01 10,12.83 19.78,22.61 21.19,21.19\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"battery_full\": {\n    \"name\": \"battery_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h-3V2h-4v2H7v18h10V4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_0_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M18,20v2H2L22,2v6h-2V6.83L6.83,20H18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,9v6H18V9H16.5z M2,18h13v-1.5H5.62L16.5,5.62V7.5H18V2L2,18z M18,18h-1.5v-1.5H18V18z\\\"></path>\"\n      }\n    }\n  },\n  \"graphic_eq\": {\n    \"name\": \"graphic_eq\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_friendly\": {\n    \"name\": \"mobile_friendly\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_off\": {\n    \"name\": \"media_bluetooth_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,6.17V3h6v4h-4v1.17L9,6.17z M19.42,15L22,17.57l-0.8,0.8l-6.78-6.78l0.8-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15z M19.17,13.55l1.13-1.13l-1.13-1.13V13.55z M17.21,17.21l3.98,3.98l-1.41,1.41l-3.98-3.98l-0.58,0.58l-0.85-0.85l0.58-0.58 L11,13.83V17c0,2.21-1.78,4-3.99,4S3,19.21,3,17s1.79-4,4.01-4c0.73,0,1.41,0.21,2,0.55v-1.72L1.39,4.22L2.8,2.81l13.56,13.56 L17.21,17.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_2_bar\": {\n    \"name\": \"network_wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M16.78,13.38C15.4,12.5,13.76,12,12,12 c-1.76,0-3.4,0.5-4.78,1.38l-4.3-4.3C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L16.78,13.38z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M6.36,11.25L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5 c2.83,0,5.54,0.91,7.79,2.6l-4.15,4.15C12.58,10.43,11.33,10,10,10C8.67,10,7.42,10.43,6.36,11.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bloodtype\": {\n    \"name\": \"bloodtype\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M15,18H9v-2h6V18z M15,13h-2 v2h-2v-2H9v-2h2V9h2v2h2V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"medication_liquid\": {\n    \"name\": \"medication_liquid\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><polygon points=\\\"7.5,17.5 10.5,17.5 10.5,15 13,15 13,12 10.5,12 10.5,9.5 7.5,9.5 7.5,12 5,12 5,15 7.5,15\\\"></polygon><path d=\\\"M14,6H4C2.9,6,2,6.9,2,8v11c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V8C16,6.9,15.1,6,14,6z M14,19H4V8h10V19z\\\"></path><path d=\\\"M20,6c-1.68,0-3,1.76-3,4c0,1.77,0.83,3.22,2,3.76V20c0,0.55,0.45,1,1,1s1-0.45,1-1v-6.24c1.17-0.54,2-1.99,2-3.76 C23,7.76,21.68,6,20,6z M20,12c-0.41,0-1-0.78-1-2s0.59-2,1-2s1,0.78,1,2S20.41,12,20,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.5,5.5h-8C2.67,5.5,2,6.17,2,7v8.5C2,16.33,2.67,17,3.5,17h8c0.83,0,1.5-0.67,1.5-1.5V7C13,6.17,12.33,5.5,11.5,5.5z M11.5,15.5h-8V7h8V15.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><polygon points=\\\"6.5,14 8.5,14 8.5,12 10.5,12 10.5,10 8.5,10 8.5,8 6.5,8 6.5,10 4.5,10 4.5,12 6.5,12\\\"></polygon><path d=\\\"M16.5,5.5c-1.38,0-2.5,1.46-2.5,3.25c0,1.45,0.74,2.67,1.75,3.08v4.42c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75 v-4.42C18.26,11.42,19,10.2,19,8.75C19,6.96,17.88,5.5,16.5,5.5z M16.5,10.5c-0.46,0-1-0.76-1-1.75c0-0.99,0.54-1.75,1-1.75 c0.46,0,1,0.76,1,1.75C17.5,9.74,16.96,10.5,16.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dark_mode\": {\n    \"name\": \"dark_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36c-0.98,1.37-2.58,2.26-4.4,2.26 c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7c0-0.36-0.03-0.72-0.08-1.06C16.16,10,14.91,10.7,13.5,10.7 c-2.32,0-4.2-1.88-4.2-4.2c0-1.41,0.7-2.66,1.76-3.42C10.72,3.03,10.36,3,10,3L10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"reset_tv\": {\n    \"name\": \"reset_tv\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><polygon points=\\\"22,10 12.99,10 12.99,7 9,11 12.99,15 12.99,12 20,12 20,17 4,17 4,5 20,5 20,8 22,8 22,3 2,3 2,19 8,19 8,21 16,21 16,19 22,19\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_1_bar\": {\n    \"name\": \"signal_cellular_alt_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,14h3v6H5V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,16h2v-5H5V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airplane_ticket\": {\n    \"name\": \"airplane_ticket\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M22,4H2.01v6C3.11,10,4,10.9,4,12s-0.89,2-2,2v6h20V4z M17.73,13.3l-8.86,2.36l-1.66-2.88l0.93-0.25l1.26,0.99l2.39-0.64 l-2.4-4.16l1.4-0.38l4.01,3.74l2.44-0.65c0.51-0.14,1.04,0.17,1.18,0.68C18.55,12.62,18.25,13.15,17.73,13.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth\": {\n    \"name\": \"bluetooth\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_nodata\": {\n    \"name\": \"signal_cellular_nodata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,13h-9v9H2L22,2V13z M21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21 L21,19.59l-2.08-2.09L21,15.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_inactive\": {\n    \"name\": \"airplanemode_inactive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M11,8V4c0-0.55-0.45-1-1-1S9,3.45,9,4v3.59l4.12,4.12L17,13v-1L11,8z M16.36,17.78L11,12.41V15l1.5,1v1L10,16.5L7.5,17v-1 L9,15v-4l-6,2v-1l4.55-3.03L2.22,3.64l0.71-0.71l14.14,14.14L16.36,17.78z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_auto\": {\n    \"name\": \"brightness_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z\\\"></path>\"\n      }\n    }\n  },\n  \"device_thermostat\": {\n    \"name\": \"device_thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,13V5c0-1.66-1.34-3-3-3S9,3.34,9,5v8c-1.21,0.91-2,2.37-2,4c0,2.76,2.24,5,5,5s5-2.24,5-5C17,15.37,16.21,13.91,15,13 z M11,11V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-1v1h1v1v1h-1v1h1v1H11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_lock_rotation\": {\n    \"name\": \"screen_lock_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM20.05 4v-.36c0-1.31-.94-2.5-2.24-2.63-1.5-.15-2.76 1.02-2.76 2.49V4h-1v6h7V4h-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm.48 7.2l-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41L9.22.69.74 9.17l14.14 14.14 8.48-8.48z\\\"></path>\"\n      }\n    }\n  },\n  \"dvr\": {\n    \"name\": \"dvr\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_disabled\": {\n    \"name\": \"bluetooth_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"h_mobiledata\": {\n    \"name\": \"h_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_system_daydream\": {\n    \"name\": \"settings_system_daydream\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h6.5c1.38 0 2.5-1.12 2.5-2.5S16.88 11 15.5 11h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16C7.17 10.18 6 11.45 6 13c0 1.66 1.34 3 3 3zM23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_charging_full\": {\n    \"name\": \"battery_charging_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h-3V2h-4v2H7v18h10V4zm-6 16v-5.5H9L13 7v5.5h2L11 20z\\\"></path>\"\n      }\n    }\n  },\n  \"flourescent\": {\n    \"name\": \"flourescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"6\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"9\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"light_mode\": {\n    \"name\": \"light_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7L12,7z M11,1v4h2V1L11,1z M11,19v4h2v-4L11,19z M23,11l-4,0v2 l4,0V11z M5,11l-4,0l0,2l4,0L5,11z M16.24,17.66l2.47,2.47l1.41-1.41l-2.47-2.47L16.24,17.66z M3.87,5.28l2.47,2.47l1.41-1.41 L5.28,3.87L3.87,5.28z M6.34,16.24l-2.47,2.47l1.41,1.41l2.47-2.47L6.34,16.24z M18.72,3.87l-2.47,2.47l1.41,1.41l2.47-2.47 L18.72,3.87z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,6c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S12.21,6,10,6L10,6z M9.25,4.5h1.5V1l-1.5,0V4.5z M9.25,19h1.5v-3.5l-1.5,0 V19z M15.5,9.25l0,1.5l3.5,0l0-1.5L15.5,9.25z M1,9.25l0,1.5h3.5l0-1.5H1z M15.48,16.54l1.06-1.06l-2.12-2.12l-1.06,1.06 L15.48,16.54z M5.58,6.64l1.06-1.06L4.52,3.46L3.46,4.52L5.58,6.64z M3.46,15.48l1.06,1.06l2.12-2.12l-1.06-1.06L3.46,15.48z M13.36,5.58l1.06,1.06l2.12-2.12l-1.06-1.06L13.36,5.58z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_1_bar\": {\n    \"name\": \"battery_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4v18H7V4h3V2h4v2H17z M15,6H9v12h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,3.5H14V18H6V3.5h2.5V2h3V3.5z M12.5,5h-5v9.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_password\": {\n    \"name\": \"wifi_password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M24,8.98l-2.12,2.13C19.35,8.57,15.85,7,12,7s-7.35,1.57-9.88,4.11L0,8.98C3.07,5.9,7.31,4,12,4S20.93,5.9,24,8.98z M4.24,13.22l2.12,2.12C7.8,13.9,9.8,13,12,13c2.2,0,4.2,0.9,5.64,2.35l2.12-2.12C17.78,11.23,15.03,10,12,10 C8.97,10,6.22,11.23,4.24,13.22z M24,19v5h-6v-5h1v-1c0-1.1,0.9-2,2-2s2,0.9,2,2v1H24z M22,18c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h2 V18z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21l3.53-3.54C14.63,16.56,13.38,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M20,7.01l-1.42,1.42C16.34,6.31,13.32,5,10,5S3.66,6.31,1.42,8.43L0,7.01C2.6,4.53,6.12,3,10,3C13.88,3,17.4,4.53,20,7.01 z M3.54,10.54l1.42,1.42C6.29,10.75,8.06,10,10,10c1.94,0,3.71,0.75,5.04,1.96l1.42-1.42C14.76,8.97,12.5,8,10,8 S5.24,8.97,3.54,10.54z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z M16.75,16h1.5v-1 c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V16z M20,16v4h-5v-4h1v-1c0-0.82,0.67-1.5,1.5-1.5S19,14.18,19,15v1H20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarm\": {\n    \"name\": \"access_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_channel\": {\n    \"name\": \"wifi_channel\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,3c-2.51,0-3.77,5.61-4.4,10.57C10.79,10.66,9.61,8,8,8C4.43,8,3,21,3,21h2.01c0.61-5.27,2-9.82,2.99-10.87 c0.98,1.05,2.38,5.61,2.99,10.87H13c0.5-2.53,2-6,3-6s2.5,3.53,3,6h2C21,21,20.5,3,16,3z M16,13c-0.99,0-1.82,0.62-2.5,1.5 c0.57-4.77,1.54-8.62,2.5-9.44c0.97,0.81,1.91,4.67,2.49,9.43C17.81,13.62,16.98,13,16,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.12,3c-1.96,0-2.94,4.51-3.42,8.41C9.08,9.12,8.15,7,6.88,7C4.1,7,3,17,3,17h1.5C5,12.83,6.11,9.28,6.88,8.57 C7.64,9.28,8.75,12.83,9.25,17h1.5c0.39-1.97,1.59-4.5,2.38-4.5c0.77,0,1.99,2.58,2.38,4.5H17C17,17,16.58,3,13.12,3z M13.12,11 c-0.81,0-1.49,0.54-2.04,1.28c0.47-4.11,1.31-7.16,2.04-7.74c0.73,0.58,1.57,3.63,2.04,7.74C14.62,11.54,13.94,11,13.12,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth_drive\": {\n    \"name\": \"bluetooth_drive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,10H4.81l1.04-3H15V5H4.43L2,12v9h3v-2h12v2h3v-9h-3C15.9,12,15,11.1,15,10z M6.5,16C5.67,16,5,15.33,5,14.5 S5.67,13,6.5,13S8,13.67,8,14.5S7.33,16,6.5,16z M15.5,16c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S16.33,16,15.5,16z\\\"></path><path d=\\\"M22,3.85L19.15,1h-0.5v3.79l-2.3-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3-2.3V11h0.5L22,8.14L19.85,6L22,3.85z M19.65,2.91l0.94,0.94l-0.94,0.94V2.91z M20.59,8.14l-0.94,0.94V7.2L20.59,8.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edgesensor_high\": {\n    \"name\": \"edgesensor_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7h2v7H3V7z M0,10h2v7H0V10z M22,7h2v7h-2V7z M19,10h2v7h-2V10z M18,2H6v20h12V2z M16,17H8V7h8V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_0_bar\": {\n    \"name\": \"signal_wifi_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"note_alt\": {\n    \"name\": \"note_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21,3h-6.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H3v18h18V3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25 s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M9.1,17H7v-2.14l5.96-5.96l2.12,2.12L9.1,17z M17.2,8.91l-1.41,1.41L13.66,8.2 l1.41-1.41L17.2,8.91z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gpp_maybe\": {\n    \"name\": \"gpp_maybe\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M13,16h-2v-2h2V16z M13,12h-2V7h2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"devices_fold\": {\n    \"name\": \"devices_fold\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17,3v-3.03l-7,3V3v18h12V3H17z M20,19h-5.33L17,18V5h3V19z\\\"></path></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"19\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"15\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"11\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"19\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"6.12\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"9.25\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"12.38\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"15.5\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"15.5\\\"></rect></g><g><path d=\\\"M13.5,3v-3.02l-5.5,3V3v14h10V3H13.5z M16.5,15.5h-5.75L13.5,14V4.5h3V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"battery_saver\": {\n    \"name\": \"battery_saver\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,4h-3V2h-4v2H7v18h10V4z M15,14h-2v2h-2v-2H9v-2h2v-2h2v2h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_4_bar\": {\n    \"name\": \"battery_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4v18H7V4h3V2h4v2H17z M15,6H9v6h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,3.5H14V18H6V3.5h2.5V2h3V3.5z M12.5,5h-5v5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water\": {\n    \"name\": \"water\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,14H22H21.98z M5.35,13c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c1.19,0,1.4,0.98,3.31,1v-2c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1 c-1.19,0-1.42-1-3.33-1C3.38,11,3.24,12,2,12v2C3.9,14,4.17,13,5.35,13z M18.67,15c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1 c1.95,0,2.1-1,3.34-1c1.19,0,1.42,1,3.33,1c1.94,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1v-2C20.76,16,20.62,15,18.67,15z M5.35,9 c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1V8 c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1C10.04,7,9.9,8,8.66,8C7.47,8,7.24,7,5.33,7 C3.38,7,3.24,8,2,8v2C3.9,10,4.17,9,5.35,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thermostat\": {\n    \"name\": \"thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_4x4\": {\n    \"name\": \"grid_4x4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22z M7,7h4v4 H7V7z M7,17v-4h4v4H7z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt\": {\n    \"name\": \"signal_cellular_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_on_select\": {\n    \"name\": \"hdr_on_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,19.9V16h-5v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1H18z M16.5,18.5h-2v-1h2V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5 V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2 H22v2h2V20z M12,4c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4S9.79,4,12,4 M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6 S15.31,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_null\": {\n    \"name\": \"signal_wifi_statusbar_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 c3.33,0,6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_disabled\": {\n    \"name\": \"location_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_0_bar\": {\n    \"name\": \"battery_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4v18H7V4h3V2h4v2H17z M15,6H9v14h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,3.5H14V18H6V3.5h2.5V2h3V3.5z M12.5,5h-5v11.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_2_bar\": {\n    \"name\": \"battery_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4v18H7V4h3V2h4v2H17z M15,6H9v10h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,3.5H14V18H6V3.5h2.5V2h3V3.5z M12.5,5h-5v8h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_3x3\": {\n    \"name\": \"grid_3x3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phishing\": {\n    \"name\": \"phishing\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9c0-1.3-0.84-2.4-2-2.82V2h-2v4.18C13.84,6.6,13,7.7,13,9s0.84,2.4,2,2.82V15c0,2.21-1.79,4-4,4s-4-1.79-4-4v-1h3L5,9 v6c0,3.31,2.69,6,6,6s6-2.69,6-6v-3.18C18.16,11.4,19,10.3,19,9z M16,10c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S16.55,10,16,10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,5.39V2h-1.5v3.39C10.63,5.7,10,6.52,10,7.5c0,0.98,0.63,1.8,1.5,2.11V13c0,1.38-1.12,2.5-2.5,2.5S6.5,14.38,6.5,13v-1 H9L5,8v5c0,2.21,1.79,4,4,4s4-1.79,4-4V9.61c0.87-0.31,1.5-1.13,1.5-2.11C14.5,6.52,13.87,5.7,13,5.39z M12.25,8.25 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S13,7.09,13,7.5C13,7.91,12.66,8.25,12.25,8.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_4_bar\": {\n    \"name\": \"signal_cellular_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 22h20V2L2 22z\\\"></path>\"\n      }\n    }\n  },\n  \"devices\": {\n    \"name\": \"devices\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error_rounded\": {\n    \"name\": \"wifi_tethering_error_rounded\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_not_disturb_on_total_silence\": {\n    \"name\": \"do_not_disturb_on_total_silence\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.4,6,12,6z M15,13H9v-2h6V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_connected\": {\n    \"name\": \"bluetooth_connected\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_security_update\": {\n    \"name\": \"system_security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,1v22h14V1H5z M17,18H7V6h10V18z M16,12h-3V8h-2v4H8l4,4L16,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mobile_off\": {\n    \"name\": \"mobile_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5v8.61l2 2V1H5v.61L8.39 5zM2.9 2.35L1.49 3.76 5 7.27V23h14v-1.73l1.7 1.7 1.41-1.41L2.9 2.35zM7 19V9.27L16.73 19H7z\\\"></path>\"\n      }\n    }\n  },\n  \"network_wifi_3_bar\": {\n    \"name\": \"network_wifi_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-2.85,2.86C16.46,10.71,14.31,10,12,10c-2.31,0-4.46,0.71-6.23,1.93L2.92,9.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M14.71,10.18C13.35,9.08,11.73,8.5,10,8.5 c-1.73,0-3.35,0.58-4.71,1.68L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L14.71,10.18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_standby\": {\n    \"name\": \"mode_standby\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,10.34,15,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_bad\": {\n    \"name\": \"signal_wifi_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"discount\": {\n    \"name\": \"discount\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"12.79,21 3,11.21 3,14.04 12.79,23.83 21.83,14.79 20.41,13.38\\\"></polygon></g><g><path d=\\\"M3,9.04l9.79,9.79l9.04-9.04L12.04,0H3V9.04z M7.25,3C7.94,3,8.5,3.56,8.5,4.25S7.94,5.5,7.25,5.5S6,4.94,6,4.25 S6.56,3,7.25,3z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16.56,11.53l-5.97,5.97L3,9.91v2.12l6.53,6.53C9.82,18.85,10.21,19,10.59,19c0.38,0,0.77-0.15,1.06-0.44l5.97-5.97 L16.56,11.53z\\\"></path></g><g><path d=\\\"M3,8.03l7.59,7.59l7.03-7.03L10.03,1H3V8.03z M6.5,3.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S5.95,3.5,6.5,3.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"battery_std\": {\n    \"name\": \"battery_std\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h-3V2h-4v2H7v18h10V4z\\\"></path>\"\n      }\n    }\n  },\n  \"widgets\": {\n    \"name\": \"widgets\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z\\\"></path>\"\n      }\n    }\n  },\n  \"flashlight_off\": {\n    \"name\": \"flashlight_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"18,5 18,2 6,2 6,3.17 7.83,5\\\"></polygon><polygon points=\\\"16,11 18,8 18,7 9.83,7 16,13.17\\\"></polygon><path d=\\\"M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41-1.41L2.81,2.81z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_warning\": {\n    \"name\": \"system_security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M5.01,1v22H19V1H5.01z M17,18H7V6h10V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"task\": {\n    \"name\": \"task\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,2H4v20h16V8L14,2z M10.94,18L7.4,14.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L10.94,18z M13,9V3.5L18.5,9H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"share_location\": {\n    \"name\": \"share_location\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.02,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.42-1.43C15.81,19.17,14.48,19.75,13.02,19.93z\\\"></path><path d=\\\"M4.03,12c0-4.05,3.03-7.41,6.95-7.93V2.05C5.95,2.58,2.03,6.84,2.03,12c0,5.16,3.92,9.42,8.95,9.95v-2.02 C7.06,19.41,4.03,16.05,4.03,12z\\\"></path><path d=\\\"M19.95,11h2.02c-0.2-2.01-1-3.84-2.21-5.32l-1.43,1.43C19.19,8.21,19.77,9.54,19.95,11z\\\"></path><path d=\\\"M18.34,4.26c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.34,4.26z\\\"></path><path d=\\\"M18.33,16.9l1.43,1.42c1.21-1.48,2.01-3.31,2.21-5.32h-2.02C19.77,14.46,19.19,15.79,18.33,16.9z\\\"></path><path d=\\\"M16,11.1C16,8.61,14.1,7,12,7s-4,1.61-4,4.1c0,1.66,1.33,3.63,4,5.9C14.67,14.73,16,12.76,16,11.1z M12,12 c-0.59,0-1.07-0.48-1.07-1.07c0-0.59,0.48-1.07,1.07-1.07s1.07,0.48,1.07,1.07C13.07,11.52,12.59,12,12,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"password\": {\n    \"name\": \"password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,17h20v2H2V17z M3.15,12.95L4,11.47l0.85,1.48l1.3-0.75L5.3,10.72H7v-1.5H5.3l0.85-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75 L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95z M9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H15v-1.5h-1.7l0.85-1.47 L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2z M23,9.22h-1.7l0.85-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75 l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H23V9.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update\": {\n    \"name\": \"security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,1v22h14V1H5z M17,18H7V6h10V18z M16,12h-3V8h-2v4H8l4,4L16,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"developer_mode\": {\n    \"name\": \"developer_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v2h2V1.01L5 1v6h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v6h14v-6h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"screenshot\": {\n    \"name\": \"screenshot\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M5,1v22h14V1H5z M17,18H7V6h10V18z M9.5,8.5H12V7H8v4h1.5V8.5z M12,17h4v-4h-1.5v2.5H12V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_2_bar\": {\n    \"name\": \"signal_cellular_alt_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,14h3v6H5V14z M11,9h3v11h-3V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,8h2v8H9V8z M5,16h2v-5H5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dataset\": {\n    \"name\": \"dataset\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,3H3v18h18V3z M11,17H7v-4h4V17z M11,11H7V7h4V11z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,3H3v14h14V3z M9,14H6v-3h3V14z M9,9H6V6h3V9z M14,14h-3v-3h3V14z M14,9h-3V6h3V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_score\": {\n    \"name\": \"sports_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,6H9V4h2V6z M15,4h-2v2h2V4z M9,14h2v-2H9V14z M19,10V8h-2v2H19z M19,14v-2h-2v2H19z M13,14h2v-2h-2V14z M19,4h-2v2h2 V4z M13,8V6h-2v2H13z M7,10V8h2V6H7V4H5v16h2v-8h2v-2H7z M15,12h2v-2h-2V12z M11,10v2h2v-2H11z M9,8v2h2V8H9z M13,10h2V8h-2V10z M15,6v2h2V6H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation\": {\n    \"name\": \"screen_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zM9.17.69L.69 9.17l14.14 14.14 8.48-8.48L9.17.69zm5.66 20.5L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto\": {\n    \"name\": \"hdr_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"12.04,8.04 11.95,8.04 10.35,12.59 13.64,12.59\\\"></polygon><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M15.21,17l-0.98-2.81H9.78l-1,2.81h-1.9l4.13-11 h1.97l4.13,11H15.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flashlight_on\": {\n    \"name\": \"flashlight_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"2\\\"></rect><path d=\\\"M6,7v1l2,3v11h8V11l2-3V7H6z M12,15.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,15.5,12,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_fixed\": {\n    \"name\": \"gps_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error\": {\n    \"name\": \"wifi_tethering_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><circle cx=\\\"10\\\" cy=\\\"11\\\" r=\\\"1.5\\\"></circle><path d=\\\"M10,6c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,12.84,6.5,11.96,6.5,11c0-1.93,1.57-3.5,3.5-3.5 s3.5,1.57,3.5,3.5c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,13.63,15,12.38,15,11C15,8.24,12.76,6,10,6z\\\"></path><path d=\\\"M10,3c-4.42,0-8,3.58-8,8c0,2.21,0.9,4.21,2.34,5.66l1.06-1.06C4.23,14.42,3.5,12.79,3.5,11c0-3.58,2.92-6.5,6.5-6.5 c2.3,0,4.31,1.2,5.47,3h1.72C15.89,4.84,13.16,3,10,3z\\\"></path><rect height=\\\"5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_off\": {\n    \"name\": \"signal_cellular_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_lock_portrait\": {\n    \"name\": \"screen_lock_portrait\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM19 1H5v22h14V1zm-2 18H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"pin\": {\n    \"name\": \"pin\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,4H2v16h20V4z M7.64,15H6.49v-4.5l-0.9,0.66l-0.58-0.89L6.77,9h0.87V15z M13.5,15H9.61v-1.02 c1.07-1.07,1.77-1.77,2.13-2.15c0.4-0.42,0.54-0.69,0.54-1.06c0-0.4-0.31-0.72-0.81-0.72c-0.52,0-0.8,0.39-0.9,0.72l-1.01-0.42 c0.01-0.02,0.18-0.76,1-1.15c0.69-0.33,1.48-0.2,1.95,0.03c0.86,0.44,0.91,1.24,0.91,1.48c0,0.64-0.31,1.26-0.92,1.86 c-0.25,0.25-0.72,0.71-1.4,1.39l0.03,0.05h2.37V15z M18.75,14.15C18.67,14.28,18.19,15,16.99,15c-0.04,0-1.6,0.08-2.05-1.51 l1.03-0.41c0.03,0.1,0.19,0.86,1.02,0.86c0.41,0,0.89-0.28,0.89-0.77c0-0.55-0.48-0.79-1.04-0.79h-0.5v-1h0.46 c0.33,0,0.88-0.14,0.88-0.72c0-0.39-0.31-0.65-0.75-0.65c-0.5,0-0.74,0.32-0.85,0.64l-0.99-0.41C15.2,9.9,15.68,9,16.94,9 c1.09,0,1.54,0.64,1.62,0.75c0.33,0.5,0.28,1.16,0.02,1.57c-0.15,0.22-0.32,0.38-0.52,0.48v0.07c0.28,0.11,0.51,0.28,0.68,0.52 C19.11,12.91,19.07,13.66,18.75,14.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"4g_mobiledata\": {\n    \"name\": \"4g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7z M17,11v2h2v2h-5V9h7V7h-9v10h9v-6H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_to_home_screen\": {\n    \"name\": \"add_to_home_screen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 1.01L6 1v5h2V5h10v14H8v-1H6v5h14V1.01zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z\\\"></path>\"\n      }\n    }\n  },\n  \"usb_off\": {\n    \"name\": \"usb_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8h4v4h-1v2c0,0.34-0.08,0.66-0.23,0.94L16,13.17V12h-1V8z M11,8.17l2,2V6h2l-3-4L9,6h2V8.17z M13,16v2.28 c0.6,0.34,1,0.98,1,1.72c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.74,0.4-1.37,1-1.72V16H8c-1.11,0-2-0.89-2-2v-2.28C5.4,11.38,5,10.74,5,10 c0-0.59,0.26-1.13,0.68-1.49L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L13.17,16H13z M11,14v-0.17l-2.51-2.51 c-0.14,0.16-0.31,0.29-0.49,0.4V14H11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,5H7.5L10,2l2.5,3h-1.75v3.63l-1.5-1.5V5z M12.5,10h0.75v1.13l1.23,1.23c0.17-0.24,0.27-0.54,0.27-0.86V10h0.75V7h-3 V10z M10.75,13v2.21c0.45,0.26,0.75,0.74,0.75,1.29c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.55,0.3-1.03,0.75-1.29V13h-2.5 c-0.83,0-1.5-0.67-1.5-1.5V9.79C4.8,9.53,4.5,9.05,4.5,8.5c0-0.51,0.26-0.96,0.65-1.23L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06 L10.88,13H10.75z M9.25,11.5v-0.13L7.23,9.35C7.1,9.53,6.94,9.68,6.75,9.79v1.71H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_1_bar\": {\n    \"name\": \"wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.53,17.46L12,21l-3.53-3.54C9.37,16.56,10.62,16,12,16S14.63,16.56,15.53,17.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,13c1.12,0,2.12,0.42,2.91,1.09L10,17l-2.91-2.91C7.88,13.42,8.88,13,10,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"summarize\": {\n    \"name\": \"summarize\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,3H3v18h18V9L15,3z M8,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S8.55,17,8,17z M8,13c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S8.55,13,8,13z M8,9C7.45,9,7,8.55,7,8s0.45-1,1-1s1,0.45,1,1S8.55,9,8,9z M14,10V4.5l5.5,5.5H14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_medium\": {\n    \"name\": \"brightness_medium\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"add_alarm\": {\n    \"name\": \"add_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off_select\": {\n    \"name\": \"hdr_off_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,20v-4h-5v6h1.5v-2h1.1l0.9,2H18l-0.86-2L18,20z M16.5,18.5h-2v-1h2V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5 V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2 H22v2h2V20z M10.98,4.15L9.42,2.59c5.1-2.42,10.41,2.89,7.99,7.99l-1.56-1.56C16.66,6.06,13.94,3.34,10.98,4.15z M6.34,2.34 L4.93,3.76l1.66,1.66c-2.42,5.1,2.89,10.41,7.99,7.99l1.66,1.66l1.41-1.41L6.34,2.34z M8.15,6.98l4.87,4.87 C10.06,12.66,7.34,9.94,8.15,6.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"send_to_mobile\": {\n    \"name\": \"send_to_mobile\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"17,18 7,18 7,6 17,6 17,7 19,7 19,1 5,1 5,23 19,23 19,17 17,17\\\"></polygon><polygon points=\\\"22,12 18,8 18,11 13,11 13,13 18,13 18,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"dataset_linked\": {\n    \"name\": \"dataset_linked\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.09,17H7v-4h3.69c0.95-0.63,2.09-1,3.31-1h6c0.34,0,0.67,0.04,1,0.09V3H3v18h5.81C8.3,20.12,8,19.09,8,18 C8,17.66,8.04,17.33,8.09,17z M13,7h4v4h-4V7z M7,7h4v4H7V7z\\\"></path><path d=\\\"M12,18c0-1.1,0.9-2,2-2h2v-2h-2c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2v-2h-2C12.9,20,12,19.1,12,18z\\\"></path><path d=\\\"M20,14h-2v2h2c1.1,0,2,0.9,2,2s-0.9,2-2,2h-2v2h2c2.21,0,4-1.79,4-4C24,15.79,22.21,14,20,14z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"14\\\" y=\\\"17\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M6.75,14H6v-3h3.36c0.65-0.31,1.37-0.5,2.14-0.5h5c0.17,0,0.33,0.03,0.5,0.05V3H3v14h3.75C6.6,16.52,6.5,16.03,6.5,15.5 S6.6,14.48,6.75,14z M11,6h3v3h-3V6z M6,6h3v3H6V6z\\\"></path></g><path d=\\\"M9.5,15.5c0-1.1,0.9-2,2-2h1.75V12H11.5C9.57,12,8,13.57,8,15.5S9.57,19,11.5,19h1.75v-1.5H11.5 C10.4,17.5,9.5,16.6,9.5,15.5z\\\"></path><path d=\\\"M16.5,12h-1.75v1.5h1.75c1.1,0,2,0.9,2,2s-0.9,2-2,2h-1.75V19h1.75c1.93,0,3.5-1.57,3.5-3.5S18.43,12,16.5,12z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4.5\\\" x=\\\"11.75\\\" y=\\\"14.75\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mode_night\": {\n    \"name\": \"mode_night\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M9.5,2c-1.82,0-3.53,0.5-5,1.35c2.99,1.73,5,4.95,5,8.65s-2.01,6.92-5,8.65C5.97,21.5,7.68,22,9.5,22c5.52,0,10-4.48,10-10 S15.02,2,9.5,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_4_bar\": {\n    \"name\": \"signal_wifi_statusbar_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_high\": {\n    \"name\": \"brightness_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"ad_units\": {\n    \"name\": \"ad_units\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><g><path d=\\\"M19,1H5v22h14V1z M17,19H7V5h10V19z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"6\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"4g_plus_mobiledata\": {\n    \"name\": \"4g_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,11v2h2v2h-4V9h6V7H9v10h8v-6H13z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z M7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"r_mobiledata\": {\n    \"name\": \"r_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h7v5.2H7.8z M7,4H4v1.33h3V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sell\": {\n    \"name\": \"sell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M22.83,12.83L12,2H2v10l10.83,10.83L22.83,12.83z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5S7.33,8,6.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"play_lesson\": {\n    \"name\": \"play_lesson\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,11c0.34,0,0.67,0.03,1,0.08V2H3v20h9.26C11.47,20.87,11,19.49,11,18C11,14.13,14.13,11,18,11z M7,11V4h5v7L9.5,9.5 L7,11z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M16.75,20.5v-5l4,2.5L16.75,20.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_2_bar\": {\n    \"name\": \"wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,10c3.03,0,5.78,1.23,7.76,3.22l-2.12,2.12C16.2,13.9,14.2,13,12,13c-2.2,0-4.2,0.9-5.64,2.35l-2.12-2.12 C6.22,11.23,8.97,10,12,10z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21l3.53-3.54C14.63,16.56,13.38,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,8c2.5,0,4.76,0.97,6.46,2.54l-1.42,1.42C13.71,10.75,11.94,10,10,10c-1.94,0-3.71,0.75-5.04,1.96l-1.42-1.42 C5.24,8.97,7.5,8,10,8z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_null\": {\n    \"name\": \"signal_cellular_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling_3\": {\n    \"name\": \"wifi_calling_3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.49,3c-2.21,0-4.21,0.9-5.66,2.34l1.06,1.06c1.18-1.18,2.8-1.91,4.59-1.91s3.42,0.73,4.59,1.91l1.06-1.06 C20.7,3.9,18.7,3,16.49,3z\\\"></path><path d=\\\"M20.03,7.46C19.12,6.56,17.87,6,16.49,6s-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03 s1.84,0.39,2.47,1.03L20.03,7.46z\\\"></path><path d=\\\"M15.08,9.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9S15.44,9.22,15.08,9.59z\\\"></path><path d=\\\"M21,15l-5-1l-2.9,2.9c-2.5-1.43-4.57-3.5-6-6L10,8L9,3L3,3c0,3.28,0.89,6.35,2.43,9c1.58,2.73,3.85,4.99,6.57,6.57 c2.65,1.53,5.72,2.43,9,2.43L21,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pattern\": {\n    \"name\": \"pattern\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,8 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M18,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S19.1,10,18,10z M17.98,16 c-0.74,0-1.37,0.4-1.72,1h-2.54c-0.34-0.6-0.98-1-1.72-1s-1.37,0.4-1.72,1H8.41l3.07-3.07C11.65,13.97,11.82,14,12,14 c1.1,0,2-0.9,2-2c0-0.18-0.03-0.35-0.07-0.51l3.56-3.56C17.65,7.97,17.82,8,18,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56C12.35,10.03,12.18,10,12,10c-1.1,0-2,0.9-2,2c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56 C6.35,16.03,6.18,16,6,16c-1.1,0-2,0.9-2,2s0.9,2,2,2c0.74,0,1.37-0.4,1.72-1h2.57c0.34,0.6,0.98,1,1.72,1s1.37-0.4,1.72-1h2.55 c0.34,0.6,0.98,1,1.72,1c1.1,0,2-0.9,2-2C19.98,16.9,19.08,16,17.98,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"reviews\": {\n    \"name\": \"reviews\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M22,2H2v20l4-4h16V2z M13.57,11.57L12,15l-1.57-3.43L7,10l3.43-1.57L12,5l1.57,3.43L17,10L13.57,11.57z\\\"></path></g>\"\n      }\n    }\n  },\n  \"security_update_good\": {\n    \"name\": \"security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,1v22h14V1H5z M17,18H7V6h10V18z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"quiz\": {\n    \"name\": \"quiz\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"4,6 2,6 2,22 18,22 18,20 4,20\\\"></polygon><path d=\\\"M6,2v16h16V2H6z M13.51,10.16c0.41-0.73,1.18-1.16,1.63-1.8c0.48-0.68,0.21-1.94-1.14-1.94c-0.88,0-1.32,0.67-1.5,1.23 l-1.37-0.57C11.51,5.96,12.52,5,13.99,5c1.23,0,2.08,0.56,2.51,1.26c0.37,0.6,0.58,1.73,0.01,2.57c-0.63,0.93-1.23,1.21-1.56,1.81 c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52C13.26,11.41,13.19,10.74,13.51,10.16z M12.95,13.95c0-0.59,0.47-1.04,1.05-1.04 c0.59,0,1.04,0.45,1.04,1.04c0,0.58-0.44,1.05-1.04,1.05C13.42,15,12.95,14.53,12.95,13.95z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_active\": {\n    \"name\": \"airplanemode_active\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_off\": {\n    \"name\": \"nearby_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22.82,12.01L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l3.99-3.99L22.82,12.01z M21.19,21.19l-1.41,1.41 L16,18.83l-3.99,3.99L1.18,11.99L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19z M14.19,17.02l-1.39-1.39l-0.8,0.8L7.58,12l0.8-0.8 l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update_warning\": {\n    \"name\": \"security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M5.01,1v22H19V1H5.01z M17,18H7V6h10V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_low\": {\n    \"name\": \"brightness_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"nfc\": {\n    \"name\": \"nfc\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20h20V2zm-2 18H4V4h16v16zM18 6h-7v4.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto_select\": {\n    \"name\": \"hdr_auto_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\\\"></polygon><path d=\\\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path><polygon points=\\\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\\\"></polygon><path d=\\\"M13,22h1.5v-2h1.1l0.9,2H18l-0.86-2H18v-4h-5V22z M14.5,17.5h2v1h-2V17.5z\\\"></path><polygon points=\\\"11.97,5.3 10.95,8.19 13.05,8.19 12.03,5.3\\\"></polygon><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14.04,11l-0.63-1.79h-2.83L9.96,11H8.74l2.63-7h1.25 l2.63,7H14.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_bad\": {\n    \"name\": \"gpp_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M15.5,14.09l-1.41,1.41L12,13.42L9.91,15.5 L8.5,14.09L10.59,12L8.5,9.91L9.91,8.5L12,10.59l2.09-2.09l1.41,1.41L13.42,12L15.5,14.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"storm\": {\n    \"name\": \"storm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18.93,8C16.72,4.18,11.82,2.87,8,5.07c-1.41,0.82-2.48,2-3.16,3.37C4.71,6.24,5.06,4.04,5.86,2H3.74 C2.2,6.49,2.52,11.58,5.07,16c1.1,1.91,2.88,3.19,4.86,3.72c1.98,0.53,4.16,0.31,6.07-0.79c1.41-0.82,2.48-2,3.16-3.37 c0.13,2.2-0.21,4.4-1.01,6.44h2.11C21.79,17.51,21.48,12.42,18.93,8z M15,17.2c-2.87,1.65-6.54,0.67-8.2-2.2 c-0.11-0.2-0.21-0.4-0.3-0.6C5.3,11.64,6.33,8.34,9,6.8c2.86-1.65,6.54-0.67,8.2,2.2c0.11,0.2,0.21,0.4,0.3,0.6 C18.7,12.36,17.67,15.66,15,17.2z M12,10c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,10,12,10 M12,8c-2.21,0-4,1.79-4,4 s1.79,4,4,4s4-1.79,4-4S14.21,8,12,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_searching\": {\n    \"name\": \"bluetooth_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_on\": {\n    \"name\": \"media_bluetooth_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,3l0.01,10.55c-0.6-0.34-1.28-0.55-2-0.55C4.79,13,3,14.79,3,17s1.79,4,4.01,4S11,19.21,11,17V7h4V3H9z M21,12.43 L17.57,9h-0.6v4.55l-2.75-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75-2.75V21h0.6L21,17.57L18.42,15L21,12.43z M18.17,11.3l1.13,1.13l-1.13,1.13V11.3z M19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wallpaper\": {\n    \"name\": \"wallpaper\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h7V2H2v9h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM22 2h-9v2h7v7h2V2zm-2 18h-7v2h9v-9h-2v7zM4 13H2v9h9v-2H4v-7z\\\"></path>\"\n      }\n    }\n  },\n  \"edgesensor_low\": {\n    \"name\": \"edgesensor_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,7h2v7H2V7z M20,10h2v7h-2V10z M6,2v20h12V2H6z M16,17H8V7h8V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"restart_alt\": {\n    \"name\": \"restart_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,5V2L8,6l4,4V7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02c3.95-0.49,7-3.85,7-7.93C20,8.58,16.42,5,12,5z\\\"></path><path d=\\\"M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"credit_score\": {\n    \"name\": \"credit_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,4v16h7v-2H4v-6h18V4H2z M20,8H4V6h16V8z M14.93,19.17l-2.83-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41-1.41L14.93,19.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_find\": {\n    \"name\": \"wifi_find\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11,14c0-3.36,2.64-6,6-6c2.2,0,4.08,1.13,5.13,2.86L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21 l1.86-1.87C12.14,18.09,11,16.2,11,14z\\\"></path></g><g><path d=\\\"M21,14c0-2.24-1.76-4-4-4s-4,1.76-4,4c0,2.24,1.76,4,4,4c0.75,0,1.44-0.21,2.03-0.56L21.59,20L23,18.59l-2.56-2.56 C20.79,15.44,21,14.75,21,14z M15,14c0-1.12,0.88-2,2-2s2,0.88,2,2c0,1.12-0.88,2-2,2S15,15.12,15,14z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.5,11c0-2.49,2.01-4.5,4.5-4.5c1.76,0,3.27,1.02,4.01,2.5L20,7.01C17.4,4.53,13.88,3,10,3C6.12,3,2.6,4.53,0,7.01 L10,17l1.99-1.99C10.52,14.27,9.5,12.76,9.5,11z\\\"></path></g><g><path d=\\\"M17,11c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.56,0,1.07-0.16,1.52-0.42L17.94,16L19,14.94l-2.42-2.42 C16.84,12.07,17,11.56,17,11z M12.5,11c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S12.5,11.83,12.5,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"punch_clock\": {\n    \"name\": \"punch_clock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,6h-3V1H6v5H3v16h18V6z M8,3h8v3H8V3z M12,19c-2.76,0-5-2.24-5-5s2.24-5,5-5c2.76,0,5,2.24,5,5S14.76,19,12,19z\\\"></path><polygon points=\\\"12.5,11.5 11.5,11.5 11.5,14.21 13.14,15.85 13.85,15.14 12.5,13.79\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,5h-2V1H5v4H3v13h14V5z M6.5,2.5h7V5h-7V2.5z M10,15.5c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,13.71,12.21,15.5,10,15.5z\\\"></path><polygon points=\\\"10.5,9.5 9.5,9.5 9.5,11.71 11.15,13.35 11.85,12.65 10.5,11.29\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"storage\": {\n    \"name\": \"storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"network_cell\": {\n    \"name\": \"network_cell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fluorescent\": {\n    \"name\": \"fluorescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"6\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"9\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"sim_card_download\": {\n    \"name\": \"sim_card_download\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,2H10L4,8v14h16V2z M12,17l-4-4h3V9.02L13,9v4h3L12,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"macro_off\": {\n    \"name\": \"macro_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.98,17.15C20.63,15.91,21,14.5,21,13c-1.5,0-2.91,0.37-4.15,1.02L19.98,17.15z\\\"></path><path d=\\\"M3,13c0,4.97,4.03,9,9,9C12,17.03,7.97,13,3,13z\\\"></path><path d=\\\"M12,5.5c1.38,0,2.5,1.12,2.5,2.5c0,0.99-0.58,1.84-1.42,2.25l2.48,2.48c0.11,0.02,0.23,0.03,0.35,0.03 c1.38,0,2.5-1.12,2.5-2.5c0-1-0.59-1.85-1.43-2.25c0.84-0.4,1.43-1.25,1.43-2.25c0-1.38-1.12-2.5-2.5-2.5 c-0.53,0-1.01,0.16-1.42,0.44L14.5,3.5C14.5,2.12,13.38,1,12,1S9.5,2.12,9.5,3.5l0.02,0.19C9.12,3.41,8.63,3.25,8.1,3.25 c-0.57,0-1.09,0.2-1.51,0.52l3.16,3.16C10.16,6.08,11.01,5.5,12,5.5z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.64,4.64C5.76,9.26,5.6,9.73,5.6,10.25c0,1.38,1.12,2.5,2.5,2.5c0.52,0,0.99-0.16,1.4-0.43 l0.02,0.02L9.5,12.5c0,1.38,1.12,2.5,2.5,2.5c0.05,0,0.1-0.01,0.16-0.02l1.64,1.64C12.67,18.12,12,19.98,12,22 c2.02,0,3.88-0.67,5.38-1.8l2.4,2.4l1.41-1.41L2.81,2.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4.5c1.1,0,2,0.9,2,2c0,0.92-0.62,1.68-1.46,1.92l1.62,1.62c0.93,0.45,2.07,0.12,2.6-0.79 c0.55-0.96,0.22-2.18-0.73-2.73C14.02,6.51,14,6.51,13.99,6.5c0.01-0.01,0.03-0.01,0.04-0.02c0.96-0.55,1.28-1.78,0.73-2.73 c-0.55-0.96-1.78-1.28-2.73-0.73C12.02,3.03,12.01,3.04,12,3.04c0-0.01,0-0.03,0-0.04c0-1.1-0.9-2-2-2S8,1.9,8,3 c0,0.01,0,0.03,0,0.04C7.99,3.04,7.98,3.03,7.97,3.02c-0.82-0.47-1.84-0.3-2.46,0.37l2.57,2.57C8.32,5.12,9.08,4.5,10,4.5z\\\"></path><path d=\\\"M3,11c0,3.86,3.15,7,7,7C10,14.14,6.85,11,3,11z\\\"></path><path d=\\\"M16.25,14.13c0.47-0.94,0.75-2,0.75-3.13c-1.12,0-2.19,0.27-3.13,0.75L16.25,14.13z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99L5.2,7.32C4.89,7.91,4.88,8.63,5.24,9.25c0.54,0.93,1.71,1.26,2.66,0.77l0.12,0.12 c0.07,0.99,0.86,1.78,1.85,1.85l1.66,1.66C10.58,14.84,10,16.35,10,18c1.64,0,3.15-0.57,4.35-1.53l1.66,1.66l1.06-1.06L2.93,2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_0_bar\": {\n    \"name\": \"signal_cellular_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,22h20V2L2,22z M20,20H6.83L20,6.83V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tungsten\": {\n    \"name\": \"tungsten\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"19\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.6665 17.8014)\\\" width=\\\"1.99\\\" x=\\\"16.66\\\" y=\\\"16.66\\\"></rect><rect height=\\\"1.99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -10.9791 9.8041)\\\" width=\\\"3\\\" x=\\\"4.85\\\" y=\\\"17.16\\\"></rect><path d=\\\"M15,8.02V3H9v5.02C7.79,8.94,7,10.37,7,12c0,2.76,2.24,5,5,5s5-2.24,5-5C17,10.37,16.21,8.94,15,8.02z M11,5h2v2.1 C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"1x_mobiledata\": {\n    \"name\": \"1x_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,7h4v10H6V9H4V7z M15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2-3.34l2,3.34H19 L15.83,11.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_good\": {\n    \"name\": \"fmd_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M12,12c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C14,11.1,13.1,12,12,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_searching\": {\n    \"name\": \"location_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight\": {\n    \"name\": \"nightlight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M14,2c1.82,0,3.53,0.5,5,1.35C16.01,5.08,14,8.3,14,12s2.01,6.92,5,8.65C17.53,21.5,15.82,22,14,22C8.48,22,4,17.52,4,12 S8.48,2,14,2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"30fps\": {\n    \"name\": \"30fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,5v3h6v2.5H3v3h5V16H2v3h9V5H2z M19,8v8h-4V8H19 M22,5H12v14h10V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_bad\": {\n    \"name\": \"fmd_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M13,15h-2v-2h2V15z M13,11h-2V6h2V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_off\": {\n    \"name\": \"signal_wifi_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_weight\": {\n    \"name\": \"monitor_weight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21,3H3v18h18V3z M14.2,11.2c-3.23,2.43-6.84-1.18-4.4-4.41C13.03,4.37,16.63,7.98,14.2,11.2z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"10\\\" y=\\\"8.5\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11.5\\\" y=\\\"8.5\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"8.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"screenshot_monitor\": {\n    \"name\": \"screenshot_monitor\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,3H2v16h6v2h8v-2h6V3z M20,17H4V5h16V17z\\\"></path><polygon points=\\\"6.5,7.5 9,7.5 9,6 5,6 5,10 6.5,10\\\"></polygon><polygon points=\\\"19,12 17.5,12 17.5,14.5 15,14.5 15,16 19,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,3H2v12h5v2h6v-2h5V3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><polygon points=\\\"5.5,6.5 7.5,6.5 7.5,5.5 4.5,5.5 4.5,8.5 5.5,8.5\\\"></polygon><polygon points=\\\"15.5,9.5 14.5,9.5 14.5,11.5 12.5,11.5 12.5,12.5 15.5,12.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lte_mobiledata\": {\n    \"name\": \"lte_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,14h3v2H4V8h2V14z M9,10h2v6h2v-6h2V8H9V10z M21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_1_bar\": {\n    \"name\": \"network_wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M15.32,14.84C14.34,14.3,13.2,14,12,14 c-1.2,0-2.34,0.3-3.32,0.84L2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L15.32,14.84z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M12.56,12.32c-1.53-1.07-3.6-1.07-5.13,0L2.21,7.1 C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L12.56,12.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"g_mobiledata\": {\n    \"name\": \"g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11v2h2v2H9V9h7V7H7v10h9v-6H12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"timer_10_select\": {\n    \"name\": \"timer_10_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,8v8h-3V8H13 M16,5H7v14h9V5z M1,8h2v11h3V5H1V8z M23,11h-6v5h4v1h-4v2h6v-5h-4v-1h4V11z\\\"></path>\"\n      }\n    }\n  },\n  \"3g_mobiledata\": {\n    \"name\": \"3g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7v2h5v2H4v2h4v2H3v2h7V7H3z M21,11v6h-9V7h9v2h-7v6h5v-2h-2.5v-2H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_unknown\": {\n    \"name\": \"battery_unknown\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_suggest\": {\n    \"name\": \"settings_suggest\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M17.41,6.59L15,5.5l2.41-1.09L18.5,2l1.09,2.41L22,5.5l-2.41,1.09L18.5,9L17.41,6.59z M21.28,12.72L20.5,11l-0.78,1.72 L18,13.5l1.72,0.78L20.5,16l0.78-1.72L23,13.5L21.28,12.72z M16.24,14.37l1.94,1.47l-2.5,4.33l-2.24-0.94 c-0.2,0.13-0.42,0.26-0.64,0.37L12.5,22h-5l-0.3-2.41c-0.22-0.11-0.43-0.23-0.64-0.37l-2.24,0.94l-2.5-4.33l1.94-1.47 C3.75,14.25,3.75,14.12,3.75,14s0-0.25,0.01-0.37l-1.94-1.47l2.5-4.33l2.24,0.94c0.2-0.13,0.42-0.26,0.64-0.37L7.5,6h5l0.3,2.41 c0.22,0.11,0.43,0.23,0.64,0.37l2.24-0.94l2.5,4.33l-1.94,1.47c0.01,0.12,0.01,0.24,0.01,0.37S16.25,14.25,16.24,14.37z M13,14 c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3S13,15.66,13,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_5_bar\": {\n    \"name\": \"battery_5_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4v18H7V4h3V2h4v2H17z M15,6H9v4h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,3.5H14V18H6V3.5h2.5V2h3V3.5z M12.5,5h-5v3.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gps_off\": {\n    \"name\": \"gps_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z\\\"></path>\"\n      }\n    }\n  },\n  \"shortcut\": {\n    \"name\": \"shortcut\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21,11l-6-6v5H8c-2.76,0-5,2.24-5,5v4h2v-4c0-1.65,1.35-3,3-3h7v5L21,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_6_bar\": {\n    \"name\": \"battery_6_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4v18H7V4h3V2h4v2H17z M15,6H9v2h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,3.5H14V18H6V3.5h2.5V2h3V3.5z M12.5,5h-5v2h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"data_saver_on\": {\n    \"name\": \"data_saver_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11z M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53 C21.68,14.83,22,13.45,22,12C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05 C5.94,2.55,2,6.81,2,12c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_time\": {\n    \"name\": \"access_time\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_3_bar\": {\n    \"name\": \"battery_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4v18H7V4h3V2h4v2H17z M15,6H9v8h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,3.5H14V18H6V3.5h2.5V2h3V3.5z M12.5,5h-5v6.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar\": {\n    \"name\": \"signal_wifi_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"splitscreen\": {\n    \"name\": \"splitscreen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,4v5H6V4H18 M20,2H4v9h16V2z M18,15v5H6v-5H18 M20,13H4v9h16V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21l5-5.01V8h5.92C19.97,5.51,16.16,4,12,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l5-5V7.5h4.51L20,7.01C17.4,4.53,13.88,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"h_plus_mobiledata\": {\n    \"name\": \"h_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11z M22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rsvp\": {\n    \"name\": \"rsvp\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9z M5.14,13L6,15H4.5l-0.85-2H2.5v2H1V9h5v4L5.14,13z M4.5,10.5h-2v1h2V10.5z M23,13h-3.5v2H18V9h5V13z M21.5,10.5h-2v1h2V10.5z M11.5,9v1.5h-3v0.75h3V15H7v-1.5h3v-0.75H7V9H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lte_plus_mobiledata\": {\n    \"name\": \"lte_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,14h3v2H1V8h2V14z M5,10h2v6h2v-6h2V8H5V10z M12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2 V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarms\": {\n    \"name\": \"access_alarms\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_heart\": {\n    \"name\": \"monitor_heart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.11,12.45L14,10.24l-3.11,6.21C10.73,16.79,10.38,17,10,17s-0.73-0.21-0.89-0.55L7.38,13H2v7h20v-7h-6 C15.62,13,15.27,12.79,15.11,12.45z\\\"></path><path d=\\\"M22,4H2v7h6c0.38,0,0.73,0.21,0.89,0.55L10,13.76l3.11-6.21c0.37-0.74,1.42-0.74,1.79,0L16.62,11H22V4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.34,10.36L11.5,8.82l-2.34,4.29C9.03,13.35,8.77,13.5,8.5,13.5s-0.53-0.15-0.66-0.39l-1.29-2.36H2V16h16v-5.25h-5 C12.73,10.75,12.47,10.6,12.34,10.36z\\\"></path><path d=\\\"M18,4H2v5.25h5c0.27,0,0.53,0.15,0.66,0.39l0.84,1.54l2.34-4.29c0.28-0.52,1.03-0.52,1.32,0l1.29,2.36H18V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"ssid_chart\": {\n    \"name\": \"ssid_chart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47z M21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8-2 l6.2,6l5-4h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,4.86L10,10L6.5,6.5L3,9V7.16l3.66-2.62l3.49,3.49L17,3L17,4.86z M17,12.5h-3.5l-3.36,2.52L5.5,10.3L3,12.14L3,14 l2.3-1.69L10,17l4-3h3V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"data_saver_off\": {\n    \"name\": \"data_saver_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12 C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_not_fixed\": {\n    \"name\": \"gps_not_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_storage\": {\n    \"name\": \"sd_storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"lens_blur\": {\n    \"name\": \"lens_blur\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,13,6,13z M6,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S6.55,17,6,17z M6,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,9,6,9z M3,9.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5S3.28,9.5,3,9.5z M6,5C5.45,5,5,5.45,5,6s0.45,1,1,1s1-0.45,1-1S6.55,5,6,5z M21,10.5c0.28,0,0.5-0.22,0.5-0.5 S21.28,9.5,21,9.5s-0.5,0.22-0.5,0.5S20.72,10.5,21,10.5z M14,7c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S13.45,7,14,7z M14,3.5 c0.28,0,0.5-0.22,0.5-0.5S14.28,2.5,14,2.5S13.5,2.72,13.5,3S13.72,3.5,14,3.5z M3,13.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S3.28,13.5,3,13.5z M10,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S10.28,20.5,10,20.5z M10,3.5c0.28,0,0.5-0.22,0.5-0.5S10.28,2.5,10,2.5S9.5,2.72,9.5,3S9.72,3.5,10,3.5z M10,7c0.55,0,1-0.45,1-1 s-0.45-1-1-1S9,5.45,9,6S9.45,7,10,7z M10,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,12.5,10,12.5z M18,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,13,18,13z M18,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,17,18,17z M18,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,9,18,9z M18,5c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,5,18,5z M21,13.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S21.28,13.5,21,13.5z M14,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S14.55,17,14,17z M14,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S14.28,20.5,14,20.5z M10,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,8.5,10,8.5z M10,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S10.55,17,10,17z M14,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S14.83,12.5,14,12.5z M14,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S14.83,8.5,14,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cable\": {\n    \"name\": \"cable\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,5V3h-4v2h-1v5h2v9h-4V3H5v11H3v5h1v2h4v-2h1v-5H7V5h4v16h8V10h2V5H20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"e_mobiledata\": {\n    \"name\": \"e_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lan\": {\n    \"name\": \"lan\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13,22 21,22 21,15 18,15 18,11 13,11 13,9 16,9 16,2 8,2 8,9 11,9 11,11 6,11 6,15 3,15 3,22 11,22 11,15 8,15 8,13 16,13 16,15 13,15\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"11,18 17,18 17,13 14.75,13 14.75,9.25 10.75,9.25 10.75,7 13,7 13,2 7,2 7,7 9.25,7 9.25,9.25 5.25,9.25 5.25,13 3,13 3,18 9,18 9,13 6.75,13 6.75,10.75 13.25,10.75 13.25,13 11,13\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"screen_lock_landscape\": {\n    \"name\": \"screen_lock_landscape\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 5H1v14h22V5zm-4 12H5V7h14v10zM9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_search_desktop\": {\n    \"name\": \"screen_search_desktop\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"22\\\" x=\\\"1\\\" y=\\\"19\\\"></rect><path d=\\\"M22,3H2v15h19.99L22,3z M15.47,15.03l-2.09-2.09c-1.35,0.87-3.17,0.71-4.36-0.47c-1.37-1.37-1.37-3.58,0-4.95 s3.58-1.37,4.95,0c1.18,1.18,1.34,3,0.47,4.36l2.09,2.09L15.47,15.03z\\\"></path><circle cx=\\\"11.5\\\" cy=\\\"10\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar_lock\": {\n    \"name\": \"signal_wifi_4_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,15.11c0-1-0.68-1.92-1.66-2.08c-0.12-0.02-0.24-0.02-0.36-0.02l0,0c0,0-0.01,0-0.01,0C18.88,13.03,18,13.91,18,15v1 c-0.55,0-1,0-1,0v5h6v-5c0,0-0.45,0-1,0V15.11z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M18,13h-1v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-1v4h5V13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75 c0.41,0,0.75,0.34,0.75,0.75v1h-1.5V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15 c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_error\": {\n    \"name\": \"nearby_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7.58L16.42,12L12,16.42L7.58,12L12,7.58z M12,19.2L4.8,12L12,4.8l6,6V7.17l-5.99-5.99L1.18,12.01l10.83,10.83 L18,16.83V13.2L12,19.2z M20,20h2v2h-2V20z M22,10h-2v8h2V10\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_check\": {\n    \"name\": \"price_check\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"11,8 6,8 6,6 11,6 11,4 8.5,4 8.5,3 6.5,3 6.5,4 4,4 4,10 9,10 9,12 4,12 4,14 6.5,14 6.5,15 8.5,15 8.5,14 11,14\\\"></polygon><polygon points=\\\"19.59,12.52 13.93,18.17 11.1,15.34 9.69,16.76 13.93,21 21,13.93\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_4_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M2,22h16V8h4V2L2,22z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><polygon points=\\\"2,18 15,18 15,7.5 18,7.5 18,2\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering_off\": {\n    \"name\": \"wifi_tethering_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6,2,10.71,2,13c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13 c0-1.75,0.57-3.35,1.51-4.66l1.43,1.43C6.35,10.7,6,11.81,6,13c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13 c0-0.63,0.15-1.23,0.41-1.76l1.61,1.61c0,0.05-0.02,0.1-0.02,0.15c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15 c0.05,0,0.1-0.01,0.16-0.02l7.62,7.62l1.41-1.41L2.81,2.81z M17.7,14.87C17.89,14.28,18,13.65,18,13c0-3.31-2.69-6-6-6 c-0.65,0-1.28,0.1-1.87,0.3l1.71,1.71C11.89,9,11.95,9,12,9c2.21,0,4,1.79,4,4c0,0.05,0,0.11-0.01,0.16L17.7,14.87z M12,5 c4.42,0,8,3.58,8,8c0,1.22-0.27,2.37-0.77,3.4l1.49,1.49C21.53,16.45,22,14.78,22,13c0-5.52-4.48-10-10-10 c-1.78,0-3.44,0.46-4.89,1.28l1.48,1.48C9.63,5.27,10.78,5,12,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"medication\": {\n    \"name\": \"medication\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"3\\\"></rect><path d=\\\"M19,6H5v15h14V6z M16,15h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_lock\": {\n    \"name\": \"wifi_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,15.11c0-1-0.68-1.92-1.66-2.08c-0.12-0.02-0.24-0.02-0.36-0.02l0,0c0,0-0.01,0-0.01,0C18.88,13.03,18,13.91,18,15v1 c-0.55,0-1,0-1,0v5h6v-5c0,0-0.45,0-1,0V15.11z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M18,13h-1v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-1v4h5V13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75 c0.41,0,0.75,0.34,0.75,0.75v1h-1.5V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15 c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radar\": {\n    \"name\": \"radar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.74,18.33C21.15,16.6,22,14.4,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12s4.48,10,10,10c2.4,0,4.6-0.85,6.33-2.26 c0.27-0.22,0.53-0.46,0.78-0.71c0.03-0.03,0.05-0.06,0.07-0.08C19.38,18.75,19.57,18.54,19.74,18.33z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.43-1.43c0.69-0.98,1.1-2.17,1.1-3.46c0-3.31-2.69-6-6-6s-6,2.69-6,6 s2.69,6,6,6c1.3,0,2.51-0.42,3.49-1.13l1.42,1.42C15.54,19.37,13.85,20,12,20z M13.92,12.51c0.17-0.66,0.02-1.38-0.49-1.9 l-0.02-0.02c-0.77-0.77-2-0.78-2.78-0.04c-0.01,0.01-0.03,0.02-0.05,0.04c-0.78,0.78-0.78,2.05,0,2.83l0.02,0.02 c0.52,0.51,1.25,0.67,1.91,0.49l1.51,1.51c-0.6,0.36-1.29,0.58-2.04,0.58c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 c0,0.73-0.21,1.41-0.56,2L13.92,12.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi\": {\n    \"name\": \"network_wifi\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M12,8c-2.86,0-5.5,0.94-7.65,2.51L2.92,9.07 C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cameraswitch\": {\n    \"name\": \"cameraswitch\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14,6h-4L9,7H6v10h12V7h-3L14,6z M12,14c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M8.57,0.51l4.48,4.48V2.04c4.72,0.47,8.48,4.23,8.95,8.95c0,0,2,0,2,0C23.34,3.02,15.49-1.59,8.57,0.51z\\\"></path><path d=\\\"M10.95,21.96C6.23,21.49,2.47,17.73,2,13.01c0,0-2,0-2,0c0.66,7.97,8.51,12.58,15.43,10.48l-4.48-4.48V21.96z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"aod\": {\n    \"name\": \"aod\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,1H5v22h14V1z M17,18H7V6h10V18z M8,10h8v1.5H8V10z M9,13h6v1.5H9V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_good\": {\n    \"name\": \"gpp_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M10.94,15.54L7.4,12l1.41-1.41l2.12,2.12 l4.24-4.24l1.41,1.41L10.94,15.54z\\\"></path></g>\"\n      }\n    }\n  },\n  \"60fps\": {\n    \"name\": \"60fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,8v8h-4V8H19 M22,5H12v14h10V5z M10,8V5H2v14h9v-9H5V8H10z M8,13v3H5v-3H8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_goldenratio\": {\n    \"name\": \"grid_goldenratio\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22z M13,13h-2v-2h2V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_good\": {\n    \"name\": \"system_security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,1v22h14V1H5z M17,18H7V6h10V18z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"remember_me\": {\n    \"name\": \"remember_me\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,1H5v22h14V1z M17,15.21C15.5,14.44,13.8,14,12,14s-3.5,0.44-5,1.21V6h10V15.21z\\\"></path><circle cx=\\\"12\\\" cy=\\\"10\\\" r=\\\"3\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering\": {\n    \"name\": \"wifi_tethering\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_alert\": {\n    \"name\": \"battery_alert\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h-3V2h-4v2H7v18h10V4zm-4 14h-2v-2h2v2zm0-4h-2V9h2v5z\\\"></path>\"\n      }\n    }\n  },\n  \"usb\": {\n    \"name\": \"usb\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"access_time_filled\": {\n    \"name\": \"access_time_filled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M15.29,16.71L11,12.41V7h2v4.59 l3.71,3.71L15.29,16.71z\\\"></path></g>\"\n      }\n    }\n  },\n  \"air\": {\n    \"name\": \"air\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3h2c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1H2v-2h9.5 C13.15,14,14.5,15.35,14.5,17z M19,6.5C19,4.57,17.43,3,15.5,3S12,4.57,12,6.5h2C14,5.67,14.67,5,15.5,5S17,5.67,17,6.5 S16.33,8,15.5,8H2v2h13.5C17.43,10,19,8.43,19,6.5z M18.5,11H2v2h16.5c0.83,0,1.5,0.67,1.5,1.5S19.33,16,18.5,16v2 c1.93,0,3.5-1.57,3.5-3.5S20.43,11,18.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_change\": {\n    \"name\": \"price_change\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,4v16h20V4H2z M12,10H8v1h4v5h-2v1H8v-1H6v-2h4v-1H6V8h2V7h2v1h2V10z M16,16.25l-2-2h4L16,16.25z M14,10l2-2l2,2H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_done\": {\n    \"name\": \"cloud_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18 15.18 9l1.41 1.41L10 17z\\\"></path>\"\n      }\n    }\n  },\n  \"difference\": {\n    \"name\": \"difference\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,23H2V7h2v14h14V23z M15,1H6.01L6,19h15V7L15,1z M16.5,15h-6v-2h6V15z M16.5,9h-2v2h-2V9h-2V7h2V5h2v2h2V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3.5,17.5H13V19H2V6h1.5V17.5z M17,5v11H5V1h8L17,5z M13.25,11h-4.5v1.5h4.5V11z M13.25,6.5h-1.5V5h-1.5v1.5h-1.5V8h1.5 v1.5h1.5V8h1.5V6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_queue\": {\n    \"name\": \"cloud_queue\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"approval\": {\n    \"name\": \"approval\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,14v8h16v-8H4z M18,18H6v-2h12V18z M12,2C9.24,2,7,4.24,7,7l5,7l5-7C17,4.24,14.76,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_for_offline\": {\n    \"name\": \"download_for_offline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M11,10V6h2v4h3l-4,4l-4-4H11z M17,17H7v-2h10V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"text_snippet\": {\n    \"name\": \"text_snippet\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,9l-6-6H3v18h18V9z M7,7h7v2H7V7z M17,17H7v-2h10V17z M17,13H7v-2h10V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud\": {\n    \"name\": \"cloud\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_delete\": {\n    \"name\": \"folder_delete\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,6v14H2V4h8l2,2H22z M16.5,10V9h-2v1H12v1.5h1V17h5v-5.5h1V10H16.5z M16.5,15.5h-2v-4h2V15.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,6h-8L8,4H2v12h16V6z M15.5,10H15v3.5h-3.5V10H11V9h1.5V8.5H14V9h1.5V10z M14,12.5h-1.5V10H14V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snippet_folder\": {\n    \"name\": \"snippet_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6l-2-2H2v16h20V6H12z M19,17l-6,0V9h3.5l2.5,2.5V17z M15.88,10.5l1.62,1.62v3.38l-3,0v-5H15.88z\\\"></path></g>\"\n      }\n    }\n  },\n  \"topic\": {\n    \"name\": \"topic\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6l-2-2H2v16h20V6H12z M14,16H6v-2h8V16z M18,12H6v-2h12V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_download\": {\n    \"name\": \"cloud_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_sync\": {\n    \"name\": \"cloud_sync\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.5,14.98c-0.02,0-0.03,0-0.05,0.01C21.2,13.3,19.76,12,18,12c-1.4,0-2.6,0.83-3.16,2.02C13.26,14.1,12,15.4,12,17 c0,1.66,1.34,3,3,3l6.5-0.02c1.38,0,2.5-1.12,2.5-2.5S22.88,14.98,21.5,14.98z M10,4.26v2.09C7.67,7.18,6,9.39,6,12 c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73C5.06,16.54,4,14.4,4,12C4,8.27,6.55,5.15,10,4.26z M20,6h-2.73 c1.43,1.26,2.41,3.01,2.66,5l-2.02,0C17.68,9.64,16.98,8.45,16,7.56V10h-2V4h6V6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.18,12.25C18.01,10.98,16.92,10,15.6,10c-1.06,0-1.97,0.64-2.35,1.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25h4.88c1.04,0,1.88-0.84,1.88-1.88C20,13.11,19.19,12.28,18.18,12.25z M8.5,4.2v1.58 c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10C4,7.21,5.91,4.86,8.5,4.2z M15.92,9l-1.53,0C14.17,8.09,13.68,7.29,13,6.68V8h-1.5V4h4v1.5h-1.55C14.96,6.39,15.68,7.61,15.92,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cloud_circle\": {\n    \"name\": \"cloud_circle\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5c1.38 0 2.5 1.12 2.5 2.5S17.88 16 16.5 16z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_file_move_rtl\": {\n    \"name\": \"drive_file_move_rtl\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,6H12l-2-2H2v16h20V6z M12,17l-4-4l4-4v3h4v2h-4V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,10.25h3v1.5h-3V14l-3-3l3-3V10.25z M18,6h-8L8,4H2v12h16V6z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_upload\": {\n    \"name\": \"cloud_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_open\": {\n    \"name\": \"folder_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6H12l-2-2H2v16h20V6zm-2 12H4V8h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"format_overline\": {\n    \"name\": \"format_overline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3v2H5V3H19z M12,7c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C19,10.13,15.87,7,12,7z M12,18.5 c-2.49,0-4.5-2.01-4.5-4.5S9.51,9.5,12,9.5s4.5,2.01,4.5,4.5S14.49,18.5,12,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,3v1.5H5V3H15z M15.5,11.5c0,3.04-2.46,5.5-5.5,5.5s-5.5-2.46-5.5-5.5C4.5,8.46,6.96,6,10,6S15.5,8.46,15.5,11.5z M13.5,11.5C13.5,9.57,11.93,8,10,8s-3.5,1.57-3.5,3.5S8.07,15,10,15S13.5,13.43,13.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attach_email\": {\n    \"name\": \"attach_email\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,10V2H1v16h13v-5c0-1.66,1.34-3,3-3H21z M11,11L3,6V4l8,5l8-5v2L11,11z\\\"></path><path d=\\\"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,8V3H2v12h10v-5c0-1.1,0.9-2,2-2H16z M9,8.93L3,5.18V4l6,3.75L15,4v1.18L9,8.93z\\\"></path><path d=\\\"M17,11v3.5c0,0.83-0.67,1.5-1.5,1.5S14,15.33,14,14.5v-4c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V14h1v-3.5 C16,9.67,15.33,9,14.5,9S13,9.67,13,10.5v4c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V11H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"folder_off\": {\n    \"name\": \"folder_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12,6 10,4 6.83,4 22,19.17 22,6\\\"></polygon><polygon points=\\\"2.1,2.1 0.69,3.51 2,4.83 2,20 17.17,20 20.49,23.31 21.9,21.9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"10,6 8,4 6.12,4 18,15.88 18,6\\\"></polygon><polygon points=\\\"2.22,2.22 1.16,3.28 2,4.12 2,16 13.88,16 16.72,18.84 17.78,17.78\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"grid_view\": {\n    \"name\": \"grid_view\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"13\\\"></rect><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"13\\\" y=\\\"3\\\"></rect><rect height=\\\"8\\\" width=\\\"8\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"downloading\": {\n    \"name\": \"downloading\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.32,4.26C16.84,3.05,15.01,2.25,13,2.05v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.32,4.26z M19.93,11h2.02 c-0.2-2.01-1-3.84-2.21-5.32L18.31,7.1C19.17,8.21,19.75,9.54,19.93,11z M18.31,16.9l1.43,1.43c1.21-1.48,2.01-3.32,2.21-5.32 h-2.02C19.75,14.46,19.17,15.79,18.31,16.9z M13,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.43-1.43 C15.79,19.17,14.46,19.75,13,19.93z M13,12V7h-2v5H7l5,5l5-5H13z M11,19.93v2.02c-5.05-0.5-9-4.76-9-9.95s3.95-9.45,9-9.95v2.02 C7.05,4.56,4,7.92,4,12S7.05,19.44,11,19.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upload_file\": {\n    \"name\": \"upload_file\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H4v20h16V8L14,2z M13,15v4h-2v-4H8l4.01-4L16,15H13z M13,9V3.5L18.5,9H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"folder_copy\": {\n    \"name\": \"folder_copy\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"3,6 1,6 1,21 20,21 20,19 3,19\\\"></polygon><path d=\\\"M23,4h-9l-2-2H5.01L5,17h18V4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"2.5,5 1,5 1,17 15.68,17 15.68,15.5 2.5,15.5\\\"></polygon><polygon points=\\\"18,4 11,4 9,2 4,2 4,14 18,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"download_done\": {\n    \"name\": \"download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"folder\": {\n    \"name\": \"folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4H2v16h20V6H12l-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_upload\": {\n    \"name\": \"file_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,10h4v6h6v-6h4l-7-7L5,10z M5,18v2h14v-2H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"newspaper\": {\n    \"name\": \"newspaper\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v18c0,0,0,0,0,0 l20,0V3z M11,19H4v-6h7V19z M20,19h-7v-2h7V19z M20,15h-7v-2h7V15z M20,11H4V8h16V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.67,4.33L15.33,3L14,4.33L12.67,3l-1.33,1.33L10,3L8.67,4.33L7.33,3L6,4.33L4.67,3L3.33,4.33L2,3v14h16V3L16.67,4.33z M16.5,9.5h-13v-3h13V9.5z M10.75,11h5.75v1.5h-5.75V11z M3.5,11h5.75v4.5H3.5V11z M10.75,15.5V14h5.75v1.5H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"drive_file_rename_outline\": {\n    \"name\": \"drive_file_rename_outline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,16 11,20 21,20 21,16\\\"></polygon><polygon points=\\\"12.06,7.19 3,16.25 3,20 6.75,20 15.81,10.94\\\"></polygon><rect height=\\\"5.3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 8.257289e-03 13.4765)\\\" width=\\\"3.59\\\" x=\\\"14.48\\\" y=\\\"4.08\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"drive_file_move\": {\n    \"name\": \"drive_file_move\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,6H12l-2-2H2v16h20V6z M12,17v-3H8v-2h4V9l4,4L12,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"file_download\": {\n    \"name\": \"file_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9h-4V3H9v6H5l7,7L19,9z M5,18v2h14v-2H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"folder_zip\": {\n    \"name\": \"folder_zip\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,6l-2-2H2v16h20V6H12z M18,12h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2V12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,6L8,4H2v12h16V6H10z M15,9h-1.5v1.5H15V12h-1.5v1.5H12V12h1.5v-1.5H12V9h1.5V7.5H15V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"download\": {\n    \"name\": \"download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"rule_folder\": {\n    \"name\": \"rule_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,6H12l-2-2H2v16h20V6z M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16 L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upload\": {\n    \"name\": \"upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_shared\": {\n    \"name\": \"folder_shared\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6H12l-2-2H2v16h20V6zm-7 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_off\": {\n    \"name\": \"cloud_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M24 15c0-2.64-2.05-4.78-4.65-4.96C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_folder_upload\": {\n    \"name\": \"drive_folder_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,6H12l-2-2H2v16h20V6z M13,13v4h-2v-4H8l4.01-4L16,13H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"workspaces\": {\n    \"name\": \"workspaces\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S8.2,13,6,13z M12,3C9.8,3,8,4.8,8,7s1.8,4,4,4s4-1.8,4-4S14.2,3,12,3z M18,13 c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S20.2,13,18,13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"3\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"create_new_folder\": {\n    \"name\": \"create_new_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6H12l-2-2H2v16h20V6zm-3 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_off\": {\n    \"name\": \"file_download_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,6.17V3h6v6h4l-3.59,3.59L9,6.17z M21.19,21.19L2.81,2.81L1.39,4.22L6.17,9H5l7,7l0.59-0.59L15.17,18H5v2h12.17l2.61,2.61 L21.19,21.19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,5.88V3h4v5h3l-2.44,2.44L8,5.88z M17.07,17.07L2.93,2.93L1.87,3.99L5.88,8H5l5,5l0.44-0.44l1.94,1.94H5V16h8.88 l2.13,2.13L17.07,17.07z\\\"></path>\"\n      }\n    }\n  },\n  \"file_open\": {\n    \"name\": \"file_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H4v20h11v-8h5V8L14,2z M13,9V3.5L18.5,9H13z M17,21.66V16h5.66v2h-2.24l2.95,2.95l-1.41,1.41L19,19.41l0,2.24H17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,17.74V13.5h4.24V15h-1.68l2.21,2.21l-1.06,1.06l-2.21-2.21v1.68H14z M12,2H4v16h8.5v-6H16V6L12,2z M11,7V3l4,4H11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attachment\": {\n    \"name\": \"attachment\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_done\": {\n    \"name\": \"file_download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20.13,5.41 18.72,4 9.53,13.19 5.28,8.95 3.87,10.36 9.53,16.02\\\"></polygon><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"18\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"request_quote\": {\n    \"name\": \"request_quote\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,2H4v20h16V8L14,2z M15,12h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9v-5h2V9h2v1h2V12z M13,8V3.5L17.5,8H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"paid\": {\n    \"name\": \"paid\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12.88,17.76V19h-1.75v-1.29 c-0.74-0.18-2.39-0.77-3.02-2.96l1.65-0.67c0.06,0.22,0.58,2.09,2.4,2.09c0.93,0,1.98-0.48,1.98-1.61c0-0.96-0.7-1.46-2.28-2.03 c-1.1-0.39-3.35-1.03-3.35-3.31c0-0.1,0.01-2.4,2.62-2.96V5h1.75v1.24c1.84,0.32,2.51,1.79,2.66,2.23l-1.58,0.67 c-0.11-0.35-0.59-1.34-1.9-1.34c-0.7,0-1.81,0.37-1.81,1.39c0,0.95,0.86,1.31,2.64,1.9c2.4,0.83,3.01,2.05,3.01,3.45 C15.9,17.17,13.4,17.67,12.88,17.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"toc\": {\n    \"name\": \"toc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2zM3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"gif_box\": {\n    \"name\": \"gif_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,3H3v18h18V3z M9.5,13v-1h1v2h-3v-4h3v1h-2v2H9.5z M12.5,14h-1v-4h1V14z M16.5,11h-2v0.5H16v1h-1.5V14h-1v-4h3V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,3H3v14h14V3z M7.5,11v-1h1v2h-3V8h3v1h-2v2H7.5z M10.5,12h-1V8h1V12z M14.5,9h-2v0.5H14v1h-1.5V12h-1V8h3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_bag\": {\n    \"name\": \"shopping_bag\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20 6h-4c0-2.21-1.79-4-4-4S8 3.79 8 6H4v16h16V6zm-10 5H8V8h2v3zm2-7c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 7h-2V8h2v3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"webhook\": {\n    \"name\": \"webhook\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,15l5.88,0c0.27-0.31,0.67-0.5,1.12-0.5c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5c-0.44,0-0.84-0.19-1.12-0.5 l-3.98,0c-0.46,2.28-2.48,4-4.9,4c-2.76,0-5-2.24-5-5c0-2.42,1.72-4.44,4-4.9l0,2.07C4.84,13.58,4,14.7,4,16c0,1.65,1.35,3,3,3 s3-1.35,3-3V15z M12.5,4c1.65,0,3,1.35,3,3h2c0-2.76-2.24-5-5-5l0,0c-2.76,0-5,2.24-5,5c0,1.43,0.6,2.71,1.55,3.62l-2.35,3.9 C6.02,14.66,5.5,15.27,5.5,16c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.16-0.02-0.31-0.07-0.45l3.38-5.63 C10.49,9.61,9.5,8.42,9.5,7C9.5,5.35,10.85,4,12.5,4z M17,13c-0.64,0-1.23,0.2-1.72,0.54l-3.05-5.07C11.53,8.35,11,7.74,11,7 c0-0.83,0.67-1.5,1.5-1.5S14,6.17,14,7c0,0.15-0.02,0.29-0.06,0.43l2.19,3.65C16.41,11.03,16.7,11,17,11l0,0c2.76,0,5,2.24,5,5 c0,2.76-2.24,5-5,5c-1.85,0-3.47-1.01-4.33-2.5l2.67,0C15.82,18.82,16.39,19,17,19c1.65,0,3-1.35,3-3S18.65,13,17,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,3.5C9.12,3.5,8,4.62,8,6c0,1.17,0.81,2.15,1.89,2.43L7,12.92c0,0.03,0,0.05,0,0.08c0,0.55-0.45,1-1,1s-1-0.45-1-1 c0-0.43,0.27-0.8,0.66-0.94l2.05-3.19C6.96,8.14,6.5,7.12,6.5,6c0-2.21,1.79-4,4-4l0,0c2.21,0,4,1.79,4,4H13 C13,4.62,11.88,3.5,10.5,3.5z M8.5,12.25h4.84C13.51,12.09,13.75,12,14,12c0.55,0,1,0.45,1,1s-0.45,1-1,1 c-0.25,0-0.49-0.09-0.66-0.25l-3.41,0C9.58,15.6,7.95,17,6,17c-2.21,0-4-1.79-4-4c0-1.86,1.27-3.43,3-3.87l0,1.58 C4.12,11.1,3.5,11.98,3.5,13c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V12.25z M14,10.5c1.38,0,2.5,1.12,2.5,2.5 c0,1.38-1.12,2.5-2.5,2.5c-0.56,0-1.08-0.19-1.5-0.5l-1.97,0c0.69,1.2,1.98,2,3.46,2c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4l0,0 c-0.36,0-0.71,0.05-1.04,0.14l-1.47-2.95c0.01-0.06,0.02-0.12,0.02-0.18c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.39,0.23,0.73,0.56,0.9 l2.17,4.33C12.68,10.78,13.31,10.5,14,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"preview\": {\n    \"name\": \"preview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,3v18h18V3H3z M19,19H5V7h14V19z M13.5,13c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 S13.5,12.17,13.5,13z M12,9c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9z M12,15.5 c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5C14.5,14.38,13.38,15.5,12,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"work\": {\n    \"name\": \"work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6h-6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6zm-8 0h-4V4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors\": {\n    \"name\": \"sensors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.41,14.59l-1.06,1.06C2.9,14.21,2,12.21,2,10c0-2.21,0.9-4.21,2.34-5.66l1.06,1.06C4.23,6.58,3.5,8.21,3.5,10 S4.23,13.42,5.41,14.59z M16.5,10c0,1.79-0.73,3.42-1.91,4.59l1.06,1.06C17.1,14.21,18,12.21,18,10c0-2.21-0.9-4.21-2.34-5.66 l-1.06,1.06C15.77,6.58,16.5,8.21,16.5,10z M13.5,10c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,12.63,15,11.38,15,10 c0-1.38-0.56-2.63-1.46-3.54l-1.06,1.06C13.11,8.16,13.5,9.04,13.5,10z M6.5,10c0-0.96,0.39-1.84,1.03-2.47L6.46,6.46 C5.56,7.37,5,8.62,5,10c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,11.84,6.5,10.96,6.5,10z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"launch\": {\n    \"name\": \"launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_accessibility\": {\n    \"name\": \"settings_accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,4c-2.61,0.7-5.67,1-8.5,1S6.11,4.7,3.5,4L3,6c1.86,0.5,4,0.83,6,1v12h2v-6h2v6h2V7c2-0.17,4.14-0.5,6-1L20.5,4z M12,4c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,4,12,4z M7,24h2v-2H7V24z M11,24h2v-2h-2V24z M15,24h2v-2h-2V24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"install_mobile\": {\n    \"name\": \"install_mobile\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17,18 7,18 7,6 14,6 14,1 5,1 5,23 19,23 19,16 17,16\\\"></polygon><polygon points=\\\"18,14 23,9 21.59,7.59 19,10.17 19,3 17,3 17,10.17 14.41,7.59 13,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14.5,15 5.5,15 5.5,5 12,5 12,1 4,1 4,19 16,19 16,13 14.5,13\\\"></polygon><polygon points=\\\"15.23,11 18.75,7.48 17.69,6.42 16,8.11 16,3 14.5,3 14.5,8.14 12.81,6.45 11.75,7.52\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pan_tool_alt\": {\n    \"name\": \"pan_tool_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.18,13.4L19.1,21h-9L5,15.62l1.22-1.23L10,15.24V4.5C10,3.67,10.67,3,11.5,3S13,3.67,13,4.5v6h1.38L20.18,13.4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.66,9H11V4.25C11,3.56,10.44,3,9.75,3h0C9.06,3,8.5,3.56,8.5,4.25V13l-3-1l-1,1l4,4h7.16l1-6L12.66,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_button\": {\n    \"name\": \"smart_button\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,17h-3l0-2h1V9H4v6h6v2H2V7h20V17z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09 L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"credit_card\": {\n    \"name\": \"credit_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2.01L2 20h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down\": {\n    \"name\": \"thumb_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.83 23L17 15.82V3H4.69L1 11.6V16h8.31l-1.12 5.38zM19 3h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_balance\": {\n    \"name\": \"account_balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"shop\": {\n    \"name\": \"shop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z\\\"></path>\"\n      }\n    }\n  },\n  \"display_settings\": {\n    \"name\": \"display_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,3H2v16h6v2h8v-2h6V3z M20,17H4V5h16V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"8.25\\\"></rect><polygon points=\\\"16.5,9.75 18,9.75 18,8.25 16.5,8.25 16.5,7 15,7 15,11 16.5,11\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"10\\\" y=\\\"12.25\\\"></rect><polygon points=\\\"7.5,15 9,15 9,11 7.5,11 7.5,12.25 6,12.25 6,13.75 7.5,13.75\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,3H2v12h5v2h6v-2h5V3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><polygon points=\\\"14,8 15,8 15,7 14,7 14,6 13,6 13,9 14,9\\\"></polygon><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><polygon points=\\\"6,12 7,12 7,9 6,9 6,10 5,10 5,11 6,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"next_plan\": {\n    \"name\": \"next_plan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,13.97h-5l2.26-2.26 c-0.91-1.06-2.25-1.74-3.76-1.74c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32c0.64-2.62,3-4.56,5.82-4.56c1.78,0,3.37,0.79,4.47,2.03 L18,8.97V13.97z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M14,11.5h-2.99l1.19-1.19 C11.59,9.81,10.84,9.5,10,9.5c-1.39,0-2.58,0.82-3.15,1.99l-0.96-0.32C6.59,9.6,8.17,8.5,10,8.5c1.12,0,2.13,0.41,2.91,1.09L14,8.5 V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"account_balance_wallet\": {\n    \"name\": \"account_balance_wallet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 18v3H3V3h18v3H10v12h11zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_stream\": {\n    \"name\": \"view_stream\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,19v-6h18v6H3z M3,5v6h18V5H3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,9.25H3V5h14V9.25z M17,10.75H3V15h14V10.75z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up\": {\n    \"name\": \"swipe_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2.06,5.56L1,4.5L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76,5,5.62,5,6.5c0,2.42,0.82,4.65,2.2,6.43L6.13,14 C4.49,11.95,3.5,9.34,3.5,6.5c0-0.92,0.1-1.82,0.3-2.68L2.06,5.56z M21.71,11.18l2.09,7.39l-8.23,3.65l-6.84-2.85l0.61-1.62 l3.8-0.75L8.79,7.17c-0.34-0.76,0-1.64,0.76-1.98c0.76-0.34,1.64,0,1.98,0.76l2.43,5.49l1.26-0.56L21.71,11.18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.02,8.84L12.5,9.52l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0C8.29,4.82,8.01,5.56,8.29,6.19l3.54,8l-3.15,0.3 l-0.51,1.32l5.28,2.04l6.55-2.9l-1.52-5.89L14.02,8.84z M4,5.5c0,2.03,0.75,3.88,2,5.29L5.29,11.5C3.87,9.91,3,7.81,3,5.5 c0-0.93,0.14-1.82,0.4-2.66L1.71,4.53L1,3.83L3.83,1l2.83,2.83L5.94,4.53L4.4,2.99C4.14,3.78,4,4.62,4,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flip_to_front\": {\n    \"name\": \"flip_to_front\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm12 12h2v-2h-2v2zm6-18H7v14h14V3zm-2 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2zm-4 0h2v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"update_disabled\": {\n    \"name\": \"update_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M8.67,5.84L7.22,4.39C8.6,3.51,10.24,3,12,3c2.74,0,5.19,1.23,6.84,3.16L21,4v6h-6l2.41-2.41C16.12,6.02,14.18,5,12,5 C10.8,5,9.66,5.31,8.67,5.84z M13,7h-2v1.17l2,2V7z M19.78,22.61l-3-3C15.39,20.48,13.76,21,12,21c-4.97,0-9-4.03-9-9 c0-1.76,0.51-3.4,1.39-4.78L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.32,18.15L5.84,8.67C5.31,9.66,5,10.8,5,12 c0,3.86,3.14,7,7,7C13.2,19,14.34,18.69,15.32,18.15z M20.94,13h-2.02c-0.12,0.83-0.39,1.61-0.77,2.32l1.47,1.47 C20.32,15.67,20.79,14.38,20.94,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,6v2.63l-1.5-1.5V6H10.75z M7.32,5.2C8.11,4.75,9.03,4.5,10,4.5c1.64,0,3.11,0.74,4.12,1.88L12.5,8H17V3.5l-1.82,1.82 C13.9,3.9,12.06,3,10,3C8.61,3,7.31,3.41,6.23,4.1L7.32,5.2z M15.9,13.77c0.7-1.09,1.1-2.38,1.1-3.77h-1.5 c0,0.97-0.25,1.89-0.7,2.68L15.9,13.77z M17.07,17.07l-1.06,1.06l-2.24-2.24C12.69,16.59,11.39,17,10,17c-3.87,0-7-3.13-7-7 c0-1.39,0.41-2.69,1.1-3.77L1.87,3.99l1.06-1.06L17.07,17.07z M12.68,14.8L5.2,7.32C4.75,8.11,4.5,9.03,4.5,10 c0,3.03,2.47,5.5,5.5,5.5C10.97,15.5,11.89,15.25,12.68,14.8z\\\"></path>\"\n      }\n    }\n  },\n  \"delete\": {\n    \"name\": \"delete\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 21h12V7H6v14zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horizontal_circle\": {\n    \"name\": \"swap_horizontal_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"polymer\": {\n    \"name\": \"polymer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_composite\": {\n    \"name\": \"settings_input_composite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_split\": {\n    \"name\": \"horizontal_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z\\\"></path>\"\n      }\n    }\n  },\n  \"free_cancellation\": {\n    \"name\": \"free_cancellation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.21,20H5V10h14v4.38l2-2V4h-3V2h-2v2H8V2H6v2H3v18h10.21L11.21,20z M16.54,22.5L13,18.96l1.41-1.41l2.12,2.12l4.24-4.24 l1.41,1.41L16.54,22.5z M10.41,14L12,15.59L10.59,17L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41 L10.41,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.21,16.5H4.5V9h11v3.09l1.5-1.5V4h-3V2h-1.5v2h-5V2H6v2H3v14h7.71L9.21,16.5z M13.33,16.38l3.54-3.54l1.06,1.06l-4.6,4.6 l-2.83-2.83l1.06-1.06L13.33,16.38z M8.81,12.25L10,13.44L8.94,14.5l-1.19-1.19L6.56,14.5L5.5,13.44l1.19-1.19L5.5,11.06L6.56,10 l1.19,1.19L8.94,10L10,11.06L8.81,12.25z\\\"></path>\"\n      }\n    }\n  },\n  \"theaters\": {\n    \"name\": \"theaters\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket\": {\n    \"name\": \"rocket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2.5c0,0,4.5,2.04,4.5,10.5c0,2.49-1.04,5.57-1.6,7H9.1c-0.56-1.43-1.6-4.51-1.6-7C7.5,4.54,12,2.5,12,2.5z M14,11 c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14,12.1,14,11z M7.69,20.52c-0.48-1.23-1.52-4.17-1.67-6.87L4,15v7L7.69,20.52z M20,22v-7 l-2.02-1.35c-0.15,2.69-1.2,5.64-1.67,6.87L20,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.98,16c-0.1-0.24-1.23-3.01-1.23-5.5c0-5.46,2.49-7.52,3.25-8c0.76,0.48,3.25,2.54,3.25,8c0,2.49-1.13,5.26-1.23,5.5 H7.98z M11.5,9c0-0.82-0.67-1.5-1.5-1.5C9.18,7.5,8.5,8.18,8.5,9c0,0.83,0.68,1.5,1.5,1.5C10.83,10.5,11.5,9.83,11.5,9z M5.76,10.88L4,12.25V18l3.09-1.54C6.59,15.28,5.85,13.05,5.76,10.88z M14.24,10.88L16,12.25V18l-3.09-1.54 C13.41,15.28,14.15,13.05,14.24,10.88z\\\"></path></g>\"\n      }\n    }\n  },\n  \"css\": {\n    \"name\": \"css\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.5,15v-2H11v0.5h2v-1H9.5V9h5v2H13v-0.5h-2v1h3.5V15H9.5z M16,15h5v-3.5h-3.5v-1h2V11H21V9h-5v3.5h3.5v1h-2V13H16V15z M8,11V9H3v6h5v-2H6.5v0.5h-2v-3h2V11H8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.5,12v-1.25h1V11h1v-0.75h-2V8h3v1.25h-1V9h-1v0.75h2V12H8.5z M16,12V9.75h-2V9h1v0.25h1V8h-3v2.25h2V11h-1v-0.25h-1V12 H16z M7,12v-1.25H6V11H5V9h1v0.25h1V8H4v4H7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"saved_search\": {\n    \"name\": \"saved_search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.73,13.31C15.52,12.24,16,10.93,16,9.5C16,5.91,13.09,3,9.5,3S3,5.91,3,9.5C3,13.09,5.91,16,9.5,16 c1.43,0,2.74-0.48,3.81-1.27L19.59,21L21,19.59L14.73,13.31z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5 S11.99,14,9.5,14z\\\"></path><polygon points=\\\"10.29,8.44 9.5,6 8.71,8.44 6.25,8.44 8.26,10.03 7.49,12.5 9.5,10.97 11.51,12.5 10.74,10.03 12.75,8.44\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"satellite_alt\": {\n    \"name\": \"satellite_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.44,0.59l-3.18,3.18c-0.78,0.78-0.78,2.05,0,2.83l1.24,1.24l-0.71,0.71l-2.65-2.65l-4.24,4.24l2.65,2.65l-0.71,0.71 L6.6,12.25c-0.78-0.78-2.05-0.78-2.83,0l-3.18,3.18c-0.78,0.78-0.78,2.05,0,2.83l3.54,3.54c0.78,0.78,2.05,0.78,2.83,0l3.18-3.18 c0.78-0.78,0.78-2.05,0-2.83l-1.24-1.24l0.71-0.71l2.65,2.65l4.24-4.24L13.84,9.6l0.71-0.71l1.24,1.24c0.78,0.78,2.05,0.78,2.83,0 l3.18-3.18c0.78-0.78,0.78-2.05,0-2.83l-3.54-3.54C17.48-0.2,16.22-0.2,15.44,0.59z M6.6,19.32l-1.06,1.06L2,16.85l1.06-1.06 L6.6,19.32z M8.72,17.2l-1.06,1.06l-3.54-3.54l1.06-1.06L8.72,17.2z M18.26,7.66L17.2,8.72l-3.54-3.54l1.06-1.06L18.26,7.66z M20.38,5.54L19.32,6.6l-3.54-3.54L16.85,2L20.38,5.54z M21,14l2,0c0,4.97-4.03,9-9,9l0-2C17.87,21,21,17.87,21,14z M17,14l2,0 c0,2.76-2.24,5-5,5l0-2C15.66,17,17,15.66,17,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.5,12H19c0,3.87-3.13,7-7,7v-1.5C15.03,17.5,17.5,15.03,17.5,12z M12,14.5V16c2.21,0,4-1.79,4-4h-1.5 C14.5,13.38,13.38,14.5,12,14.5z M11.58,8.04l2.3,2.3l-3.54,3.54l-2.3-2.3l-0.71,0.71l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12 l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-3.18-3.18c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83c0.59-0.59,1.54-0.59,2.12,0l1.24,1.24 l0.71-0.71l-2.3-2.3l3.54-3.54l2.3,2.3l0.71-0.71l-1.24-1.24c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83c0.59-0.59,1.54-0.59,2.12,0 l3.18,3.18c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-1.24-1.24L11.58,8.04z M2.56,13.17L1.5,14.23 l3.18,3.18l1.06-1.06L2.56,13.17z M4.33,11.4l-1.06,1.06l3.18,3.18l1.06-1.06L4.33,11.4z M12.46,3.27L11.4,4.33l3.18,3.18 l1.06-1.06L12.46,3.27z M14.23,1.5l-1.06,1.06l3.18,3.18l1.06-1.06L14.23,1.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"eject\": {\n    \"name\": \"eject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17h14v2H5v-2zm7-12L5.33 15h13.34L12 5z\\\"></path>\"\n      }\n    }\n  },\n  \"minimize\": {\n    \"name\": \"minimize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h12v2H6v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"print\": {\n    \"name\": \"print\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 8H2v9h4v4h12v-4h4V8zm-6 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z\\\"></path>\"\n      }\n    }\n  },\n  \"data_thresholding\": {\n    \"name\": \"data_thresholding\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M10.67,8.17l2,2l3.67-3.67l1.41,1.41L12.67,13l-2-2l-3,3l-1.41-1.41L10.67,8.17z M5,16h1.72L5,17.72V16z M5.84,19l3-3h1.83l-3,3H5.84z M9.8,19l3-3h1.62l-3,3H9.8z M13.53,19l3-3h1.62l-3,3H13.53z M19,19h-1.73L19,17.27V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,3H3v14h14V3z M9.19,7l1.5,1.5l2.5-2.5l1.06,1.06l-3.56,3.56l-1.5-1.5L6.81,11.5l-1.06-1.06L9.19,7z M4.5,13h1.09 L4.5,14.09V13z M4.5,15.5L7,13h1.07l-2.5,2.5H4.5z M6.98,15.5l2.5-2.5h1.07l-2.5,2.5H6.98z M9.46,15.5l2.5-2.5h1.07l-2.5,2.5H9.46z M15.5,15.5h-1.08l1.08-1.08V15.5z M15.5,13L13,15.5h-1.07l2.5-2.5L15.5,13L15.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tour\": {\n    \"name\": \"tour\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M15,9c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S15,7.9,15,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_today\": {\n    \"name\": \"calendar_today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 3h-3V1h-2v2H7V1H5v2H2v20h20V3zm-2 18H4V8h16v13z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_cart_checkout\": {\n    \"name\": \"shopping_cart_checkout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2 S18.1,18,17,18z M8.1,13h8.66L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59L3.61,17H19v-2H7L8.1,13z M12,2l4,4l-4,4 l-1.41-1.41L12.17,7L8,7l0-2l4.17,0l-1.59-1.59L12,2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,15C6.33,15,7,15.67,7,16.5C7,17.33,6.33,18,5.5,18S4,17.33,4,16.5C4,15.67,4.67,15,5.5,15z M14.5,15 c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5S13,17.33,13,16.5C13,15.67,13.67,15,14.5,15z M6.6,11h7.66L17,4.59L15.62,4 l-2.35,5.5H6.99L3.77,2H1v1.5h1.79l2.73,6.37L3.13,14H16v-1.5H5.73L6.6,11z M8.94,3.06l1.19,1.19H7v1.5h3.13L8.94,6.94L10,8l3-3 l-3-3L8.94,3.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"book\": {\n    \"name\": \"book\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z\\\"></path>\"\n      }\n    }\n  },\n  \"report_problem\": {\n    \"name\": \"report_problem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_calendar\": {\n    \"name\": \"edit_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M12,22H3V4h3V2h2v2h8V2h2v2h3v8h-2v-2H5v10h7V22z M22.13,16.99l1.41-1.41l-2.12-2.12l-1.41,1.41L22.13,16.99z M21.42,17.7 l-5.3,5.3H14v-2.12l5.3-5.3L21.42,17.7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.5,18H3V4h3V2h1.5v2h5V2H14v2h3v6h-1.5V9h-11v7.5h5V18z M17.78,13.99l1.18-1.18l-1.77-1.77l-1.18,1.18L17.78,13.99z M17.19,14.58L12.77,19H11v-1.77l4.42-4.42L17.19,14.58z\\\"></path>\"\n      }\n    }\n  },\n  \"book_online\": {\n    \"name\": \"book_online\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,1H5v22h14V1z M7,18V6h10v12H7z M16,11l0-3H8l0,3.1c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1L8,16h8v-3c-0.55,0-1-0.45-1-1 C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tab\": {\n    \"name\": \"tab\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10zm2-16H1v18h22V3zm-2 16H3V5h10v4h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"eco\": {\n    \"name\": \"eco\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.05,8.05c-2.73,2.73-2.73,7.15-0.02,9.88c1.47-3.4,4.09-6.24,7.36-7.93c-2.77,2.34-4.71,5.61-5.39,9.32 c2.6,1.23,5.8,0.78,7.95-1.37C19.43,14.47,20,4,20,4S9.53,4.57,6.05,8.05z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.53,7.04c-2.05,2.05-2.05,5.36-0.01,7.41c1.11-2.55,3.07-4.68,5.53-5.95C8.97,10.26,7.51,12.71,7,15.49 c1.95,0.92,4.35,0.59,5.96-1.03C15.57,11.86,16,4,16,4S8.14,4.43,5.53,7.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_update_alt\": {\n    \"name\": \"system_update_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zM23 3h-8v1.99h6v14.03H3V4.99h6V3H1v18h22V3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_shopping_cart\": {\n    \"name\": \"add_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59L3.62 17H19v-2H7l1.1-2z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_later\": {\n    \"name\": \"watch_later\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M16.2,16.2L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"assessment\": {\n    \"name\": \"assessment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"fit_screen\": {\n    \"name\": \"fit_screen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,4h5v5h-2V6h-3V4z M4,9V6h3V4H2v5H4z M20,15v3h-3v2h5v-5H20z M7,18H4v-3H2v5h5V18z M18,8H6v8h12V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hls_off\": {\n    \"name\": \"hls_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.83,15h2.67v-3.5H17v-1h2V11h1.5V9h-5v3.5H19v1h-2V13h-1.17L17.83,15z M8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33 L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L12.17,15H10v-2.17L8,10.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"16,12 16,9.75 14,9.75 14,9 15,9 15,9.25 16,9.25 16,8 13,8 13,10.25 15,10.25 15,11 14,11 14,10.75 13,10.75 13,10.88 14.12,12\\\"></polygon><polygon points=\\\"2.93,2.93 1.87,3.99 6,8.12 6,9.5 5,9.5 5,8 4,8 4,12 5,12 5,10.5 6,10.5 6,12 7,12 7,9.12 9,11.12 9,12 9.88,12 16.01,18.13 17.07,17.07\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"view_kanban\": {\n    \"name\": \"view_kanban\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M9,17H7V7h2V17z M13,12h-2V7h2V12z M17,15h-2V7h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,3H3v14h14V3z M7.5,14H6V6h1.5V14z M10.75,10h-1.5V6h1.5V10z M14,12h-1.5V6H14V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_input_component\": {\n    \"name\": \"settings_input_component\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z\\\"></path>\"\n      }\n    }\n  },\n  \"commute\": {\n    \"name\": \"commute\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angleup\": {\n    \"name\": \"text_rotation_angleup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z\\\"></path>\"\n      }\n    }\n  },\n  \"chrome_reader_mode\": {\n    \"name\": \"chrome_reader_mode\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 12h7v1.5h-7V12zm0-2.5h7V11h-7V9.5zm0 5h7V16h-7v-1.5zM23 4H1v17h22V4zm-2 15h-9V6h9v13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_cozy\": {\n    \"name\": \"view_cozy\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,4H2v16h20V4z M11.25,16.75h-4v-4h4V16.75z M11.25,11.25h-4v-4h4V11.25z M16.75,16.75h-4v-4h4V16.75z M16.75,11.25h-4 v-4h4V11.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,4H2v12h16V4z M9.25,13.75h-3v-3h3V13.75z M9.25,9.25h-3v-3h3V9.25z M13.75,13.75h-3v-3h3V13.75z M13.75,9.25h-3v-3h3 V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"token\": {\n    \"name\": \"token\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M19.97,6.43L12,2L4.03,6.43L9.1,9.24C9.83,8.48,10.86,8,12,8s2.17,0.48,2.9,1.24L19.97,6.43z M10,12c0-1.1,0.9-2,2-2 s2,0.9,2,2s-0.9,2-2,2S10,13.1,10,12z M11,21.44L3,17V8.14l5.13,2.85C8.04,11.31,8,11.65,8,12c0,1.86,1.27,3.43,3,3.87V21.44z M13,21.44v-5.57c1.73-0.44,3-2.01,3-3.87c0-0.35-0.04-0.69-0.13-1.01L21,8.14L21,17L13,21.44z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M15.98,5.82L10,2.5L4.02,5.82l3.8,2.11C8.37,7.36,9.14,7,10,7s1.63,0.36,2.17,0.93L15.98,5.82z M8.5,10 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M9.25,17.08l-6-3.33V7.11L7.1,9.24 C7.03,9.49,7,9.74,7,10c0,1.4,0.96,2.57,2.25,2.91V17.08z M10.75,17.08v-4.18C12.04,12.57,13,11.4,13,10c0-0.26-0.03-0.51-0.1-0.76 l3.85-2.14l0,6.64L10.75,17.08z\\\"></path>\"\n      }\n    }\n  },\n  \"opacity\": {\n    \"name\": \"opacity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z\\\"></path>\"\n      }\n    }\n  },\n  \"spellcheck\": {\n    \"name\": \"spellcheck\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_visible\": {\n    \"name\": \"disabled_visible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,5.17,3.93,9.43,8.96,9.95 c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69 C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z M17,13c-3.18,0-5.9,1.87-7,4.5 c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,20c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C19.5,18.88,18.38,20,17,20z M18.5,17.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 S18.5,16.67,18.5,17.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.99,10.38C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98 c-0.73-0.53-1.35-1.18-1.83-1.93C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z M15.5,14.5 c0,0.69-0.56,1.25-1.25,1.25S13,15.19,13,14.5s0.56-1.25,1.25-1.25S15.5,13.81,15.5,14.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5 c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,16.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S15.35,16.5,14.25,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_settings_new\": {\n    \"name\": \"power_settings_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_hdmi\": {\n    \"name\": \"settings_input_hdmi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7V2H6v5H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z\\\"></path>\"\n      }\n    }\n  },\n  \"label_off\": {\n    \"name\": \"label_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12l-4.97-7H8.66l10.7 10.73zM2 4l1 1v14h14l2 2 1.41-1.41L3.44 2.62z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel_class\": {\n    \"name\": \"hotel_class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.58 10H1l6.17 4.41L4.83 22 11 17.31 17.18 22l-2.35-7.59L21 10h-7.58L11 2l-2.42 8zm12.78 12-1.86-6.01L23.68 13h-3.44l-3.08 2.2 1.46 4.72L21.36 22zM17 8l-1.82-6-1.04 3.45.77 2.55H17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.06 8H1l4.94 3.93L4.06 18 9 14.25 13.94 18l-1.88-6.07L17 8h-6.06L9 2 7.06 8zm4.3-3.56.67 2.06h1.58L12.15 2l-.79 2.44zM16.9 10l-3.1 2.47 1.23 3.97L17.08 18l-1.55-5 3.77-3h-2.4z\\\"></path>\"\n      }\n    }\n  },\n  \"expand\": {\n    \"name\": \"expand\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4,20h16v2H4V20z M4,2h16v2H4V2z M13,9h3l-4-4L8,9h3v6H8l4,4l4-4h-3V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"visibility_off\": {\n    \"name\": \"visibility_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24zM3.42 2.45L2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.97-.3 4.31-.82l3.43 3.43 1.41-1.41L3.42 2.45zM12 16.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L14.14 16c-.65.32-1.37.5-2.14.5zm2.97-5.33c-.15-1.4-1.25-2.49-2.64-2.64l2.64 2.64z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_access_shortcut\": {\n    \"name\": \"switch_access_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M12,12 c0-2.73,1.08-5.27,2.75-7.25L12,2h7v7l-2.82-2.82C14.84,7.82,14,9.88,14,12c0,3.32,2.1,6.36,5,7.82L19,22 C14.91,20.41,12,16.35,12,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.2,0.83-4.24,2.2-5.8L10,2h5.5v5.5l-2.23-2.23C12.17,6.55,11.5,8.21,11.5,10c0,2.81,1.64,5.23,4,6.37 L15.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"find_in_page\": {\n    \"name\": \"find_in_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 19.59V8l-6-6H4v20l15.57-.02-4.81-4.81c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_in\": {\n    \"name\": \"zoom_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"done\": {\n    \"name\": \"done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark\": {\n    \"name\": \"bookmark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5v18l7-3 7 3V3z\\\"></path>\"\n      }\n    }\n  },\n  \"subtitles_off\": {\n    \"name\": \"subtitles_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.83,4 14.83,12 20,12 20,14 16.83,14 22,19.17 22,4\\\"></polygon><path d=\\\"M1.04,3.87L2,4.83V20h15.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,12h4v2H4V12z M4,16h9.17L14,16.83V18H4V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"16,12 16,13 14.41,13 17,15.59 17,4 5.41,4 13.41,12\\\"></polygon><path d=\\\"M2.93,2.93L2.22,3.64L3,4.41V16h11.59l1.78,1.78l0.71-0.71L2.93,2.93z M8,12h2.59l1,1H8V12z M4,12h3v1H4V12z M12,15H4v-1 h8V15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"verified\": {\n    \"name\": \"verified\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23,12l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,12l2.44,2.79l-0.34,3.7 l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,12z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,10l-1.77-2.03l0.25-2.69l-2.63-0.6l-1.37-2.32L10,3.43L7.53,2.36L6.15,4.68L3.53,5.28l0.25,2.69L2,10l1.77,2.03 l-0.25,2.69l2.63,0.6l1.37,2.32L10,16.56l2.47,1.07l1.37-2.32l2.63-0.6l-0.25-2.69L18,10z M8.59,13.07l-2.12-2.12l0.71-0.71 l1.41,1.41l4.24-4.24l0.71,0.71L8.59,13.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_left\": {\n    \"name\": \"arrow_circle_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10S17.52,2,12,2C6.48,2,2,6.48,2,12z M12,11l4,0v2l-4,0l0,3l-4-4l4-4L12,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10,9.25l3,0v1.5l-3,0L10,13l-3-3l3-3L10,9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"addchart\": {\n    \"name\": \"addchart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,9h2v8h-2V9z M9,17v-6H7v6H9z M19,19H5V5h6V3H3v18h18v-8h-2V19z M15,13v4h2v-4H15z M19,5V2h-2v3h-3v2h3v3h2V7h3V5H19z\\\"></path></g><g></rect>\"\n      }\n    }\n  },\n  \"delete_outline\": {\n    \"name\": \"delete_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 21h12V7H6v14zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"redeem\": {\n    \"name\": \"redeem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6h-4.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2v15h20V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_svideo\": {\n    \"name\": \"settings_input_svideo\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_ind\": {\n    \"name\": \"assignment_ind\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z\\\"></path>\"\n      }\n    }\n  },\n  \"abc\": {\n    \"name\": \"abc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,11h-1.5v-0.5h-2v3h2V13H21v2h-5V9h5V11z M8,9v6H6.5v-1.5h-2V15H3V9H8z M6.5,10.5h-2V12h2V10.5z M13.5,12 c0.55,0,1,0.45,1,1v1c0,0.55-0.45,1-1,1h-4V9h4c0.55,0,1,0.45,1,1v1C14.5,11.55,14.05,12,13.5,12z M11,10.5v0.75h2V10.5H11z M13,12.75h-2v0.75h2V12.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,8h3v1.25h-1V9h-1v2h1v-0.25l1-0.01V12h-3V8z M7,12H6v-1H5v1H4V8h3V12z M6,9H5v1h1V9z M11,10c0.28,0,0.5,0.22,0.5,0.5v1 c0,0.28-0.22,0.5-0.5,0.5H8.5V8H11c0.28,0,0.5,0.22,0.5,0.5v1C11.5,9.77,11.28,10,11,10z M9.5,9v0.5h1V9H9.5z M10.5,11v-0.5h-1V11 H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"unfold_more_double\": {\n    \"name\": \"unfold_more_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,7.83L15.17,11l1.41-1.41L12,5L7.41,9.59L8.83,11L12,7.83z M12,2.83L15.17,6l1.41-1.41L12,0L7.41,4.59L8.83,6L12,2.83 z M12,21.17L8.83,18l-1.41,1.41L12,24l4.59-4.59L15.17,18L12,21.17z M12,16.17L8.83,13l-1.41,1.41L12,19l4.59-4.59L15.17,13 L12,16.17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"6.63,7.37 7.69,8.43 10,6.12 12.31,8.43 13.37,7.37 10,4\\\"></polygon><polygon points=\\\"6.63,3.37 7.69,4.43 10,2.12 12.31,4.43 13.37,3.37 10,0\\\"></polygon><polygon points=\\\"13.37,16.63 12.31,15.57 10,17.88 7.69,15.57 6.63,16.63 10,20\\\"></polygon><polygon points=\\\"13.37,12.63 12.31,11.57 10,13.88 7.69,11.57 6.63,12.63 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"youtube_searched_for\": {\n    \"name\": \"youtube_searched_for\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z\\\"></path>\"\n      }\n    }\n  },\n  \"compress\": {\n    \"name\": \"compress\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><polygon points=\\\"16,4 13,4 13,1 11,1 11,4 8,4 12,8\\\"></polygon><polygon points=\\\"8,19 11,19 11,22 13,22 13,19 16,19 12,15\\\"></polygon><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"room\": {\n    \"name\": \"room\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"lightbulb_circle\": {\n    \"name\": \"lightbulb_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,19c-0.83,0-1.5-0.67-1.5-1.5h3 C13.5,18.33,12.83,19,12,19z M15,16.5H9V15h6V16.5z M14.97,14H9.03C7.8,13.09,7,11.64,7,10c0-2.76,2.24-5,5-5s5,2.24,5,5 C17,11.64,16.2,13.09,14.97,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,15.5c-0.55,0-1-0.45-1-1h2 C11,15.05,10.55,15.5,10,15.5z M12.5,13.75h-5v-1h5V13.75z M12.62,12H7.38C6.54,11.27,6,10.2,6,9c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.2,13.46,11.27,12.62,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"open_in_browser\": {\n    \"name\": \"open_in_browser\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 4v16h6v-2H5V8h14v10h-4v2h6V4H3zm9 6l-4 4h3v6h2v-6h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"question_answer\": {\n    \"name\": \"question_answer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z\\\"></path>\"\n      }\n    }\n  },\n  \"card_membership\": {\n    \"name\": \"card_membership\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v15h6v5l4-2 4 2v-5h6V2zm-2 13H4v-2h16v2zm0-5H4V4h16v6z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_full\": {\n    \"name\": \"open_in_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71\\\"></polygon>\"\n      }\n    }\n  },\n  \"schedule\": {\n    \"name\": \"schedule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_add\": {\n    \"name\": \"bookmark_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z M19,21l-7-3l-7,3V3l9,0c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5c0.34,0,0.68-0.03,1-0.1 V21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,4.25v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5v-1.5H15.75z M11,5c0,2.21,1.79,4,4,4v8l-5-2l-5,2V3l6.54,0 C11.19,3.59,11,4.27,11,5z\\\"></path>\"\n      }\n    }\n  },\n  \"repartition\": {\n    \"name\": \"repartition\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,21h18v-6H3V21z M10.33,19v-2h3.33v2H10.33z M19,19h-3.33v-2H19V19z M5,17h3.33v2H5V17z\\\"></path><path d=\\\"M6,10l1.42-1.42L5.83,7H17c1.1,0,2,0.9,2,2s-0.9,2-2,2H3v2h14c2.21,0,4-1.79,4-4s-1.79-4-4-4H5.83l1.59-1.59L6,2L2,6L6,10 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,8.25l1.06-1.06L4.87,6H14c0.83,0,1.5,0.67,1.5,1.5S14.83,9,14,9H3v1.5h11c1.65,0,3-1.35,3-3s-1.35-3-3-3H4.87 l1.19-1.19L5,2.25l-3,3L5,8.25z\\\"></path><path d=\\\"M3,17h14v-5H3V17z M12.83,13.5h2.67v2h-2.67V13.5z M8.67,13.5h2.67v2H8.67V13.5z M4.5,13.5h2.67v2H4.5V13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hourglass_disabled\": {\n    \"name\": \"hourglass_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17\\\"></polygon><path d=\\\"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"7,4 13,4 13,6.59 10.5,9.09 11.21,9.79 14,7 14,7 14,3 6,3 6,4.59 7,5.59\\\"></polygon><path d=\\\"M2.93,2.93L2.22,3.64l6.57,6.57L6,13h0v4h8v-1.59l2.36,2.36l0.71-0.71L2.93,2.93z M13,16H7l0-2.59l2.5-2.5l3.5,3.5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hls\": {\n    \"name\": \"hls\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9z M15.5,15h5v-3.5H17v-1h2V11h1.5V9h-5v3.5H19v1h-2V13h-1.5V15z M14,15v-1.5h-2.5 V9H10v6H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,8h1v4H6v-1.5H5V12H4V8h1v1.5h1V8z M13,12h3V9.75h-2V9h1v0.25h1V8h-3v2.25h2V11h-1v-0.25h-1V12z M11.5,11H10V8H9v4l2.5,0 V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"language\": {\n    \"name\": \"language\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z\\\"></path>\"\n      }\n    }\n  },\n  \"store\": {\n    \"name\": \"store\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z\\\"></path>\"\n      }\n    }\n  },\n  \"privacy_tip\": {\n    \"name\": \"privacy_tip\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,2.5L4,5.2v4.15c0,3.63,2.56,7.33,6,8.15c3.44-0.82,6-4.52,6-8.15V5.2L10,2.5z M10.5,13h-1V9h1V13z M10.5,8h-1V7h1V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_flat\": {\n    \"name\": \"trending_flat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12l-4-4v3H3v2h15v3l4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_alt\": {\n    \"name\": \"filter_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24 M24,24H0\\\" fill=\\\"none\\\"></path><path d=\\\"M3,4c2.01,2.59,7,9,7,9v7h4v-7c0,0,4.98-6.41,7-9H3z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_cell\": {\n    \"name\": \"settings_cell\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM6 0v20h12V0H6zm10 16H8V4h8v12z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_view_month\": {\n    \"name\": \"calendar_view_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M22,4H2v16h20V4z M8,11H4V6h4V11z M14,11h-4V6h4V11z M20,11h-4V6h4V11z M8,18H4v-5h4V18z M14,18h-4v-5h4V18z M20,18h-4v-5 h4V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_support\": {\n    \"name\": \"contact_support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\\\"></path>\"\n      }\n    }\n  },\n  \"voice_over_off\": {\n    \"name\": \"voice_over_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"dynamic_form\": {\n    \"name\": \"dynamic_form\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,20v-9h-2V4h7l-2,5h2L17,20z M15,13v7H2v-7H15z M6.25,15.75h-1.5v1.5h1.5V15.75z M13,4v7H2V4H13z M6.25,6.75h-1.5v1.5 h1.5V6.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"123\": {\n    \"name\": \"123\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,15H5.5v-4.5H4V9h3V15z M13.5,13.5h-3v-1h3V9H9v1.5h3v1H9V15h4.5V13.5z M19.5,15V9H15v1.5h3v1h-2v1h2v1h-3V15H19.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,12H5V9H4V8h2V12z M11,11H9v-0.5h2V8H8v1h2v0.5H8V12h3V11z M15.5,12V8h-3v1h2v0.5h-1v1h1V11h-2v1H15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_up\": {\n    \"name\": \"trending_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"wysiwyg\": {\n    \"name\": \"wysiwyg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,12H7v-2h10V12z M13,14H7v2h6V14z M21,21H3V3h18V21z M19,7H5v12h14V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"search\": {\n    \"name\": \"search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_tracking\": {\n    \"name\": \"spatial_tracking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><path d=\\\"M20.05,2.41L18.64,1c-3.51,3.51-3.51,9.21,0,12.73l1.41-1.41C17.32,9.58,17.32,5.14,20.05,2.41z\\\"></path><path d=\\\"M22.88,5.24l-1.41-1.41c-1.95,1.95-1.95,5.12,0,7.07l1.41-1.41C21.71,8.32,21.71,6.41,22.88,5.24z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M16.4,2.06L15.34,1c-3.12,3.12-3.12,8.19,0,11.31l1.06-1.06C13.87,8.72,13.87,4.59,16.4,2.06z\\\"></path><path d=\\\"M18.53,4.18l-1.06-1.06c-1.95,1.95-1.95,5.12,0,7.07l1.06-1.06C17.16,7.77,17.16,5.55,18.53,4.18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"html\": {\n    \"name\": \"html\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9z M18.5,9H12v6h1.5v-4.5h1V14H16v-3.51h1V15h1.5V9z M11,9H6v1.5h1.75V15h1.5v-4.5 H11V9z M24,15v-1.5h-2.5V9H20v6H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4,8h1v4H4v-1.5H3V12H2V8h1v1.5h1V8z M6,9h1v3h1V9h1V8H6V9z M18.5,11H17V8h-1v4l2.5,0V11z M15,8h-5v4h1V9h1v2h1V9h1v3h1V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_backup_restore\": {\n    \"name\": \"settings_backup_restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"admin_panel_settings\": {\n    \"name\": \"admin_panel_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,11c0.34,0,0.67,0.04,1,0.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55 C11.41,19.47,11,18.28,11,17C11,13.69,13.69,11,17,11z\\\"></path><path d=\\\"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38c0.62,0,1.12,0.51,1.12,1.12 s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75c-0.93,0-1.74-0.46-2.24-1.17 c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,9c0.35,0,0.68,0.06,1,0.14V6.18L9,4L4,6.18v3.27c0,3.03,2.13,5.86,5,6.55c0.35-0.08,0.7-0.2,1.02-0.35 C9.39,14.94,9,14.02,9,13C9,10.79,10.79,9,13,9z\\\"></path><path d=\\\"M13,10c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C16,11.34,14.66,10,13,10z M13,11.03c0.47,0,0.84,0.38,0.84,0.84 c0,0.46-0.38,0.84-0.84,0.84s-0.84-0.38-0.84-0.84C12.16,11.41,12.53,11.03,13,11.03z M13,15.06c-0.7,0-1.31-0.35-1.68-0.87 c0.04-0.54,1.13-0.81,1.68-0.81s1.64,0.27,1.68,0.81C14.31,14.72,13.7,15.06,13,15.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"accessible_forward\": {\n    \"name\": \"accessible_forward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"18\\\" cy=\\\"4.54\\\" r=\\\"2\\\"></circle><path d=\\\"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm5-3.5h-3.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-3.12 7H18v5h2v-7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle\": {\n    \"name\": \"check_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"face\": {\n    \"name\": \"face\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"grading\": {\n    \"name\": \"grading\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"12.25\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"6.75\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"9.5\\\"></rect><polygon points=\\\"12.17,14.59 11.46,13.88 10.76,14.59 12.17,16 15,13.17 14.29,12.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"contactless\": {\n    \"name\": \"contactless\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M7.63,11.71l-0.91-0.41 C6.91,10.86,7.01,10.42,7,9.98C6.99,9.53,6.9,9.11,6.72,8.71l0.91-0.42C7.87,8.82,7.99,9.38,8,9.97 C8.01,10.56,7.88,11.14,7.63,11.71z M9.82,12.79L8.95,12.3c0.37-0.65,0.55-1.39,0.55-2.22c0-0.84-0.19-1.64-0.57-2.39l0.89-0.45 c0.45,0.89,0.67,1.85,0.67,2.84C10.5,11.08,10.27,12,9.82,12.79z M12.07,13.72l-0.9-0.44c0.55-1.13,0.83-2.24,0.83-3.3 c0-1.06-0.28-2.16-0.83-3.26l0.9-0.44C12.69,7.52,13,8.77,13,9.99C13,11.2,12.69,12.46,12.07,13.72z\\\"></path></g>\"\n      }\n    }\n  },\n  \"all_inbox\": {\n    \"name\": \"all_inbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v11h18V3zm-2 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v5H3v-5h6c0 1.66 1.34 3 3 3s3-1.34 3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"help\": {\n    \"name\": \"help\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"offline_pin\": {\n    \"name\": \"offline_pin\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z\\\"></path>\"\n      }\n    }\n  },\n  \"info_outline\": {\n    \"name\": \"info_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z\\\"></path><path d=\\\"M11 7h2v2h-2zm0 4h2v6h-2z\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"highlight_off\": {\n    \"name\": \"highlight_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_scan_wifi\": {\n    \"name\": \"perm_scan_wifi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"alarm_off\": {\n    \"name\": \"alarm_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"work_history\": {\n    \"name\": \"work_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.66,11.13c2-0.37,3.88,0.11,5.34,1.13V6h-6V2H8v4H2v15h9.68c-0.63-1.33-0.87-2.88-0.52-4.51 C11.75,13.79,13.94,11.63,16.66,11.13z M10,4h4v2h-4V4z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,5h-5V2H7v3H2v12h6.88c-0.41-1.04-0.52-2.22-0.18-3.46c0.53-1.98,2.2-3.54,4.21-3.93c2.01-0.39,3.86,0.32,5.09,1.63V5z M11.5,5h-3V3.5h3V5z\\\"></path><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M15.15,16.85l-1.65-1.65V13h1v1.79 l1.35,1.35L15.15,16.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_enhance\": {\n    \"name\": \"camera_enhance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9l-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"accessible\": {\n    \"name\": \"accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V17h7v5h2v-7.5h-5v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"label_outline\": {\n    \"name\": \"label_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.03 5H3v13.99l14.03.01L22 12l-4.97-7zM16 17H5V7h11l3.55 5L16 17z\\\"></path>\"\n      }\n    }\n  },\n  \"pregnant_woman\": {\n    \"name\": \"pregnant_woman\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"http\": {\n    \"name\": \"http\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zM23 9h-5v6h1.5v-2H23V9zm-1.5 2.5h-2v-1h2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"info\": {\n    \"name\": \"info\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_day\": {\n    \"name\": \"view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 21h19v-3H2v3zM21 8H2v8h19V8zM2 3v3h19V3H2z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture\": {\n    \"name\": \"picture_in_picture\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7h-8v6h8V7zm4-4H1v17.98h22V3zm-2 16.01H3V4.98h18v14.03z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angledown\": {\n    \"name\": \"text_rotation_angledown\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z\\\"></path>\"\n      }\n    }\n  },\n  \"login\": {\n    \"name\": \"login\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h10V3H12v2h8V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"10,4 10,5 16,5 16,15 10,15 10,16 17,16 17,4\\\"></polygon><polygon points=\\\"9.5,6.5 8.79,7.21 11.09,9.5 3,9.5 3,10.5 11.09,10.5 8.79,12.79 9.5,13.5 13,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"text_rotate_up\": {\n    \"name\": \"text_rotate_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_audio_off\": {\n    \"name\": \"spatial_audio_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><path d=\\\"M20.36,1l-1.41,1.41c2.73,2.73,2.73,7.17,0,9.9l1.41,1.41C23.88,10.21,23.88,4.51,20.36,1z\\\"></path><path d=\\\"M17.54,10.9c1.95-1.95,1.95-5.12,0-7.07l-1.41,1.41c1.17,1.17,1.17,3.07,0,4.24L17.54,10.9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M16.66,1L15.6,2.06c2.53,2.53,2.53,6.66,0,9.19l1.06,1.06C19.78,9.19,19.78,4.12,16.66,1z\\\"></path><path d=\\\"M14.54,3.12l-1.06,1.06c1.36,1.36,1.36,3.59,0,4.95l1.06,1.06C16.49,8.24,16.49,5.07,14.54,3.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_vertical\": {\n    \"name\": \"swipe_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,3.5h2.02C1.13,5.82,0,8.78,0,12s1.13,6.18,3.02,8.5H1V22h5v-5H4.5v2.91c-1.86-2.11-3-4.88-3-7.91s1.14-5.79,3-7.91V7H6 V2H1V3.5z M21.71,11.18l2.09,7.39l-8.23,3.65l-6.84-2.85l0.61-1.62l3.8-0.75L8.79,7.17c-0.34-0.76,0-1.64,0.76-1.98 c0.76-0.34,1.64,0,1.98,0.76l2.43,5.49l1.26-0.56L21.71,11.18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.02,8.84L12.5,9.52l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0C8.29,4.82,8.01,5.56,8.29,6.19l3.54,8l-3.15,0.3 l-0.51,1.32l5.28,2.04l6.55-2.9l-1.52-5.89L14.02,8.84z M1,10c0,2.69,1.2,5.05,3,6.37V14h1v4H1v-1h2.18C1.26,15.47,0,12.91,0,10 s1.26-5.47,3.18-7H1V2h4v4H4V3.63C2.2,4.95,1,7.31,1,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gavel\": {\n    \"name\": \"gavel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_from_trash\": {\n    \"name\": \"restore_from_trash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 21h12V7H6v14zm6-11l4 4h-2v4h-4v-4H8l4-4zm3.5-6l-1-1h-5l-1 1H5v2h14V4z\\\"></path>\"\n      }\n    }\n  },\n  \"support\": {\n    \"name\": \"support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M12.16,4.41c1.57,0.61,2.82,1.85,3.43,3.42 l-2.78,1.15c-0.3-0.83-0.96-1.49-1.79-1.79L12.16,4.41z M7.84,4.41L9,7.18c-0.85,0.3-1.51,0.96-1.82,1.81v0L4.41,7.84 C5.02,6.27,6.27,5.02,7.84,4.41z M7.83,15.59c-1.57-0.61-2.82-1.86-3.43-3.43l2.78-1.15v0c0.3,0.84,0.97,1.51,1.81,1.81L7.83,15.59 z M8,10c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S8,11.1,8,10z M12.17,15.59l-1.15-2.78c0.84-0.3,1.5-0.97,1.79-1.81l2.77,1.16 C14.98,13.74,13.74,14.98,12.17,15.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"find_replace\": {\n    \"name\": \"find_replace\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z\\\"></path>\"\n      }\n    }\n  },\n  \"anchor\": {\n    \"name\": \"anchor\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"supervised_user_circle\": {\n    \"name\": \"supervised_user_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z\\\"></path>\"\n      }\n    }\n  },\n  \"data_exploration\": {\n    \"name\": \"data_exploration\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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,22h10V12C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S20.05,20.5,19.5,20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8c0,1.17,0.25,2.29,0.71,3.29L7,9l2.49,2.44l2.94-2.94H11V7h4v4h-1.5V9.55l-4,4l-2.49-2.44 l-3.53,3.53C4.93,16.67,7.31,18,10,18l0,0l8,0v-8C18,5.58,14.42,2,10,2z M16,16.75c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.75,16.41,16.41,16.75,16,16.75z\\\"></path>\"\n      }\n    }\n  },\n  \"timeline\": {\n    \"name\": \"timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55 C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11 c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2 c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55 C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_card\": {\n    \"name\": \"add_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2.01,4L2,20h12v-2H4v-6h18V4H2.01z M20,8H4V6h16V8z M24,17v2h-3v3h-2v-3h-3v-2h3v-3h2v3H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,4H2v12h10v-1.5H3.5V10H18V4z M16.5,7h-13V5.5h13V7z M20,15.5h-2.5V18H16v-2.5h-2.5V14H16v-2.5h1.5V14H20V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"model_training\": {\n    \"name\": \"model_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,16h1.5v-1h-1.5V16z M10,8L10,8L10,8C10,8,10,8,10,8c-1.38,0-2.5,1.12-2.5,2.5C7.5,12,9.25,13,9.25,14 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,9.12,11.38,8,10,8z M6.47,13.53l-0.71,0.71C4.67,13.16,4,11.66,4,10 c0-3.31,2.69-6,6-6V2l2.5,2.5L10,7V5c-2.76,0-5,2.24-5,5C5,11.38,5.56,12.63,6.47,13.53z M14.24,14.24l-0.71-0.71 C14.44,12.63,15,11.38,15,10s-0.56-2.63-1.47-3.53l0.71-0.71C15.33,6.84,16,8.34,16,10S15.33,13.16,14.24,14.24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_week\": {\n    \"name\": \"calendar_view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M22,4H2v16h20V4z M13,6h2.5v12H13V6z M11,18H8.5V6H11V18z M4,6h2.5v12H4V6z M20,18h-2.5V6H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_week\": {\n    \"name\": \"view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.33,20H2V4h5.33V20z M22,20V4h-5.33v16H22z M14.67,20V4H9.33v16H14.67z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.33,16H2V4h4.33V16z M12.17,16V4H7.83v12H12.17z M18,16V4h-4.33v12H18z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_takeoff\": {\n    \"name\": \"flight_takeoff\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33L21 11.49c.81-.23 1.28-1.05 1.07-1.85z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_left_alt\": {\n    \"name\": \"swipe_left_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.1,13c0.46,2.28,2.48,4,4.9,4c2.76,0,5-2.24,5-5s-2.24-5-5-5c-2.42,0-4.44,1.72-4.9,4H5.83l1.59-1.59L6,8l-4,4l4,4 l1.41-1.41L5.83,13H10.1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.07,10.75C8.42,12.6,10.05,14,12,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-1.95,0-3.58,1.4-3.93,3.25l-3.2,0l1.19-1.19 L5,7l-3,3l3,3l1.06-1.06l-1.19-1.19L8.07,10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history_toggle_off\": {\n    \"name\": \"history_toggle_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.45,4.58l-0.5-0.87C7.73,3.33,8.59,3.09,9.5,3.03v1C8.77,4.09,8.08,4.28,7.45,4.58z M15.97,9.5h1 c-0.06-0.91-0.3-1.77-0.69-2.55l-0.87,0.5C15.72,8.08,15.91,8.77,15.97,9.5z M12.55,4.58l0.5-0.87c-0.78-0.38-1.64-0.62-2.55-0.69 v1C11.23,4.09,11.92,4.28,12.55,4.58z M6.58,5.08l-0.5-0.87c-0.74,0.5-1.37,1.14-1.87,1.87l0.87,0.5C5.48,5.99,5.99,5.48,6.58,5.08 z M14.92,6.58l0.87-0.5c-0.5-0.74-1.14-1.37-1.87-1.87l-0.5,0.87C14.01,5.49,14.52,5.99,14.92,6.58z M7.45,15.42l-0.5,0.87 c0.78,0.38,1.64,0.62,2.55,0.69v-1C8.77,15.91,8.08,15.72,7.45,15.42z M4.03,10.5h-1c0.06,0.91,0.3,1.77,0.69,2.55l0.87-0.5 C4.28,11.92,4.09,11.23,4.03,10.5z M10.5,15.97v1c0.91-0.06,1.77-0.3,2.55-0.69l-0.5-0.87C11.92,15.72,11.23,15.91,10.5,15.97z M5.08,13.42l-0.87,0.5c0.5,0.74,1.14,1.37,1.87,1.87l0.5-0.87C5.99,14.52,5.48,14.01,5.08,13.42z M4.58,7.45l-0.87-0.5 C3.33,7.73,3.09,8.59,3.03,9.5h1C4.09,8.77,4.28,8.08,4.58,7.45z M15.97,10.5c-0.06,0.73-0.25,1.42-0.55,2.05l0.87,0.5 c0.38-0.78,0.62-1.64,0.69-2.55H15.97z M13.42,14.92l0.5,0.87c0.74-0.5,1.37-1.14,1.87-1.87l-0.87-0.5 C14.52,14.01,14.01,14.51,13.42,14.92z M10.5,7.05h-1v4l3.17,1.9l0.5-0.82l-2.67-1.58V7.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label_important\": {\n    \"name\": \"label_important\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18.99h12.04L21 12l-4.97-7H4l5 7-5 6.99z\\\"></path>\"\n      }\n    }\n  },\n  \"published_with_changes\": {\n    \"name\": \"published_with_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.66,9.53l-7.07,7.07l-4.24-4.24l1.41-1.41l2.83,2.83l5.66-5.66L17.66,9.53z M4,12c0-2.33,1.02-4.42,2.62-5.88L9,8.5v-6H3 l2.2,2.2C3.24,6.52,2,9.11,2,12c0,5.19,3.95,9.45,9,9.95v-2.02C7.06,19.44,4,16.07,4,12z M22,12c0-5.19-3.95-9.45-9-9.95v2.02 c3.94,0.49,7,3.86,7,7.93c0,2.33-1.02,4.42-2.62,5.88L15,15.5v6h6l-2.2-2.2C20.76,17.48,22,14.89,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"flutter_dash\": {\n    \"name\": \"flutter_dash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M11.07,11.7c0.29-0.39,0.81-0.56,1.27-0.37c0.17,0.07,0.32,0.18,0.43,0.33c0.22,0.28,0.25,0.59,0.22,0.85 c-0.05,0.33-0.25,0.63-0.54,0.79c0,0-4.87,2.95-5.07,2.69S11.07,11.7,11.07,11.7z M22,10c0,2.5-1,3-1.5,3 c-0.23,0-0.44-0.1-0.62-0.26c-0.48,3.32-2.36,5.31-5.33,5.99c0.11,0.44,0.48,0.77,0.95,0.77l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C15.18,22.07,15,21.71,15,21.26c0-0.3,0.04-0.57,0.09-0.8c-0.78-0.16-1.39-0.78-1.55-1.56c-0.49,0.06-1,0.1-1.54,0.1 c-0.88,0-1.7-0.09-2.45-0.25C9.53,18.83,9.5,18.91,9.5,19c0,0.55,0.45,1,1,1l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C10.18,22.57,10,22.21,10,21.76c0-0.3,0.04-0.57,0.09-0.8C9.19,20.77,8.5,19.96,8.5,19c0-0.18,0.03-0.36,0.08-0.53 c-2.46-0.86-4.03-2.78-4.46-5.74C3.94,12.9,3.74,13,3.5,13C3,13,2,12.5,2,10c0-2.27,1.7-4.5,3-4.5c0.43,0,0.49,0.49,0.5,0.85 c1.28-1.78,3.26-3.02,5.55-3.29C11.25,2.1,12.13,1.5,13,1.5v1c0,0,0.33-0.5,1-0.5c0.67,0,1,0.5,1,0.5c-0.49,0-0.85,0.35-0.96,0.77 c1.82,0.48,3.39,1.59,4.46,3.08C18.51,5.99,18.57,5.5,19,5.5C20.3,5.5,22,7.73,22,10z M5,11c0,0.81,0.1,1.53,0.25,2.21 c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6c0.96,0,1.84,0.37,2.5,0.97 C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54c0.37,0.59,0.66,1.24,0.84,1.94 C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z M17.98,15.29c0-0.1,0.02-0.19,0.02-0.29 c0-1.01-0.26-1.95-0.7-2.78c-0.69,0.78-1.68,1.28-2.8,1.28c-0.27,0-0.54-0.03-0.79-0.09c0.14-0.23,0.23-0.49,0.27-0.77 c0.01-0.07,0.01-0.13,0.02-0.19c0.17,0.03,0.33,0.05,0.5,0.05c1.52,0,2.75-1.23,2.75-2.75S16.02,7,14.5,7 c-0.67,0-1.32,0.25-1.83,0.72L12,8.32l-0.67-0.6C10.82,7.25,10.17,7,9.5,7C7.98,7,6.75,8.23,6.75,9.75c0,1.34,0.96,2.46,2.23,2.7 l-0.76,0.83c-0.6-0.22-1.12-0.59-1.53-1.05C6.26,13.06,6,14,6,15c0,0.08,0.01,0.15,0.01,0.24C7.13,17.06,9.14,18,12,18 C14.88,18,16.88,17.09,17.98,15.29z M16,9.75c0,0.97-0.67,1.75-1.5,1.75S13,10.72,13,9.75S13.67,8,14.5,8S16,8.78,16,9.75z M15.25,8.88c0-0.21-0.17-0.38-0.38-0.38S14.5,8.67,14.5,8.88s0.17,0.38,0.38,0.38S15.25,9.08,15.25,8.88z M11,9.75 c0,0.97-0.67,1.75-1.5,1.75S8,10.72,8,9.75S8.67,8,9.5,8S11,8.78,11,9.75z M10.25,8.88c0-0.21-0.17-0.38-0.38-0.38 S9.5,8.67,9.5,8.88s0.17,0.38,0.38,0.38S10.25,9.08,10.25,8.88z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.26,9.56c0.23-0.32,0.65-0.45,1.01-0.3c0.14,0.06,0.26,0.15,0.35,0.26c0.18,0.22,0.2,0.47,0.17,0.68 c-0.04,0.27-0.2,0.5-0.43,0.63c0,0-3.89,2.36-4.06,2.15C6.14,12.78,9.26,9.56,9.26,9.56z M18,8.2c0,2-0.8,2.4-1.2,2.4 c-0.19,0-0.35-0.08-0.5-0.21c-0.38,2.65-1.89,4.25-4.26,4.79c0.08,0.35,0.39,0.62,0.76,0.62l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 c-0.11-0.17-0.26-0.45-0.26-0.82c0-0.24,0.03-0.45,0.08-0.64c-0.62-0.13-1.11-0.62-1.24-1.25c-0.39,0.05-0.8,0.08-1.23,0.08 c-0.71,0-1.36-0.07-1.96-0.2C8.02,15.26,8,15.33,8,15.4c0,0.44,0.36,0.8,0.8,0.8l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 C8.54,18.25,8.4,17.97,8.4,17.6c0-0.24,0.03-0.45,0.08-0.64c-0.73-0.15-1.28-0.8-1.28-1.57c0-0.15,0.03-0.29,0.06-0.42 c-1.97-0.69-3.22-2.22-3.57-4.59c-0.15,0.13-0.31,0.21-0.5,0.21C2.8,10.6,2,10.2,2,8.2c0-1.81,1.36-3.6,2.4-3.6 c0.34,0,0.39,0.39,0.4,0.68c1.02-1.43,2.61-2.41,4.44-2.63C9.4,1.88,10.1,1.4,10.8,1.4v0.8c0,0,0.26-0.4,0.8-0.4 c0.54,0,0.8,0.4,0.8,0.4c-0.39,0-0.68,0.28-0.76,0.62c1.46,0.39,2.71,1.27,3.57,2.46c0.01-0.29,0.06-0.68,0.4-0.68 C16.64,4.6,18,6.39,18,8.2z M4.4,9c0,0.65,0.08,1.23,0.2,1.77c0.15-0.55,0.37-1.07,0.67-1.54C5.1,8.85,5,8.44,5,8 c0-1.66,1.34-3,3-3c0.77,0,1.47,0.3,2,0.78C10.53,5.3,11.23,5,12,5c1.66,0,3,1.34,3,3c0,0.44-0.1,0.85-0.27,1.23 c0.3,0.47,0.53,0.99,0.67,1.55c0.12-0.54,0.2-1.12,0.2-1.78c0-3.09-2.51-5.6-5.6-5.6C6.91,3.4,4.4,5.91,4.4,9z M14.78,12.44 c0-0.08,0.02-0.15,0.02-0.24c0-0.8-0.21-1.56-0.56-2.22C13.69,10.6,12.9,11,12,11c-0.22,0-0.43-0.02-0.63-0.07 c0.11-0.19,0.18-0.4,0.21-0.62c0.01-0.05,0.01-0.1,0.01-0.16c0.13,0.03,0.27,0.04,0.4,0.04c1.21,0,2.2-0.99,2.2-2.2 S13.21,5.8,12,5.8c-0.53,0-1.05,0.2-1.46,0.57L10,6.86L9.46,6.37C9.05,6,8.53,5.8,8,5.8C6.79,5.8,5.8,6.79,5.8,8 c0,1.07,0.77,1.97,1.79,2.16l-0.61,0.66c-0.48-0.17-0.89-0.47-1.22-0.84C5.41,10.65,5.2,11.4,5.2,12.2c0,0.07,0.01,0.12,0.01,0.19 C6.1,13.85,7.71,14.6,10,14.6C12.3,14.6,13.9,13.87,14.78,12.44z M13.2,8c0,0.77-0.54,1.4-1.2,1.4S10.8,8.77,10.8,8 s0.54-1.4,1.2-1.4S13.2,7.23,13.2,8z M12.6,7.3c0-0.17-0.13-0.3-0.3-0.3C12.13,7,12,7.13,12,7.3s0.13,0.3,0.3,0.3 C12.47,7.6,12.6,7.47,12.6,7.3z M9.2,8c0,0.77-0.54,1.4-1.2,1.4S6.8,8.77,6.8,8S7.34,6.6,8,6.6S9.2,7.23,9.2,8z M8.6,7.3 C8.6,7.13,8.47,7,8.3,7C8.13,7,8,7.13,8,7.3s0.13,0.3,0.3,0.3C8.47,7.6,8.6,7.47,8.6,7.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gif\": {\n    \"name\": \"gif\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9H13v6h-1.5V9zM10 9H5v6h5v-3H8.5v1.5h-2v-3H10V9zm9 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z\\\"></path>\"\n      }\n    }\n  },\n  \"event\": {\n    \"name\": \"event\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 13h-5v5h5v-5zM16 2v2H8V2H6v2H3.01L3 22h18V4h-3V2h-2zm3 18H5V9h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes\": {\n    \"name\": \"speaker_notes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2.01L2 22l4-4h16V2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_remote\": {\n    \"name\": \"settings_remote\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 9H8v14h8V9zm-4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z\\\"></path>\"\n      }\n    }\n  },\n  \"view_timeline\": {\n    \"name\": \"view_timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M12,17H6v-2h6V17z M15,13H9v-2h6V13z M18,9h-6V7h6V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,3H3v14h14V3z M9,14H5v-1.5h4V14z M12,10.75H8v-1.5h4V10.75z M15,7.5h-4V6h4V7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rowing\": {\n    \"name\": \"rowing\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6 17 7.01 17 8.25V17l-.92-.83-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility_new\": {\n    \"name\": \"accessibility_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_out\": {\n    \"name\": \"zoom_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7V9z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_down\": {\n    \"name\": \"text_rotation_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z\\\"></path>\"\n      }\n    }\n  },\n  \"outlet\": {\n    \"name\": \"outlet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M8,12V7h2v5H8z M14,18h-4l0-1.89 c0-1,0.68-1.92,1.66-2.08C12.92,13.82,14,14.79,14,16V18z M16,12h-2V7h2V12z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_aware\": {\n    \"name\": \"noise_aware\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,15h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61l-1.36-1.36 C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02c-0.25-2.25-2.16-4-4.47-4C9.02,6,7,8.02,7,10.5 c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82C10.56,17.17,11.71,18,13,18C14.65,18,16,16.65,16,15z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M3.6,6.58l1.58,1.26c0.35-0.57,0.77-1.1,1.24-1.57L4.85,5.02C4.38,5.49,3.97,6.02,3.6,6.58z\\\"></path><path d=\\\"M9.46,4.42L8.59,2.61c-0.63,0.23-1.24,0.52-1.8,0.87l0.87,1.81C8.22,4.93,8.82,4.64,9.46,4.42z\\\"></path><path d=\\\"M4.49,9.26L2.53,8.81c-0.21,0.63-0.36,1.28-0.44,1.95l1.96,0.45C4.11,10.53,4.27,9.88,4.49,9.26z\\\"></path><path d=\\\"M20.4,6.58c-0.36-0.56-0.78-1.09-1.25-1.56l-1.58,1.26c0.48,0.47,0.89,0.99,1.24,1.57L20.4,6.58z\\\"></path><path d=\\\"M4.04,12.79l-1.96,0.45c0.08,0.67,0.23,1.33,0.44,1.95l1.97-0.45C4.27,14.12,4.11,13.47,4.04,12.79z\\\"></path><path d=\\\"M17.21,3.48c-0.57-0.35-1.17-0.64-1.8-0.87l-0.87,1.81c0.64,0.22,1.24,0.51,1.8,0.87L17.21,3.48z\\\"></path><path d=\\\"M13,4.07V2.05C12.67,2.02,12.34,2,12,2s-0.67,0.02-1,0.05v2.02C11.33,4.03,11.66,4,12,4S12.67,4.03,13,4.07z\\\"></path><path d=\\\"M11,19.93v2.02c0.33,0.03,0.66,0.05,1,0.05s0.67-0.02,1-0.05v-2.02C12.67,19.97,12.34,20,12,20S11.33,19.97,11,19.93z\\\"></path><path d=\\\"M19.51,14.74l1.97,0.45c0.21-0.63,0.36-1.28,0.44-1.95l-1.96-0.45C19.89,13.47,19.73,14.12,19.51,14.74z\\\"></path><path d=\\\"M19.96,11.21l1.96-0.45c-0.08-0.67-0.23-1.33-0.44-1.95l-1.97,0.45C19.73,9.88,19.89,10.53,19.96,11.21z\\\"></path><path d=\\\"M17.58,17.73l1.58,1.26c0.47-0.48,0.88-1,1.25-1.56l-1.58-1.26C18.47,16.73,18.05,17.26,17.58,17.73z\\\"></path><path d=\\\"M6.79,20.52c0.57,0.35,1.17,0.64,1.8,0.87l0.87-1.81c-0.64-0.22-1.24-0.51-1.8-0.87L6.79,20.52z\\\"></path><path d=\\\"M14.54,19.58l0.87,1.81c0.63-0.23,1.24-0.52,1.8-0.87l-0.87-1.81C15.78,19.07,15.18,19.36,14.54,19.58z\\\"></path><path d=\\\"M3.6,17.42c0.36,0.56,0.78,1.09,1.25,1.56l1.58-1.26c-0.48-0.47-0.89-0.99-1.24-1.57L3.6,17.42z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M13,12.75h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58c-0.22-0.9-0.77-1.7-1.69-2.44 c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56c-0.35-1.71-1.86-3-3.67-3 C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62C8.8,14.22,9.63,15,10.75,15 C11.99,15,13,13.99,13,12.75z\\\"></path><path d=\\\"M3.88,7.83L2.41,7.5C2.25,7.97,2.14,8.46,2.08,8.96L3.54,9.3C3.59,8.79,3.71,8.3,3.88,7.83z\\\"></path><path d=\\\"M7.88,3.86L7.22,2.51C6.75,2.68,6.3,2.9,5.87,3.16l0.65,1.36C6.95,4.25,7.4,4.03,7.88,3.86z\\\"></path><path d=\\\"M5.42,5.39L4.25,4.45C3.9,4.81,3.59,5.21,3.31,5.62l1.18,0.94C4.76,6.14,5.07,5.74,5.42,5.39z\\\"></path><path d=\\\"M10.75,3.55V2.04C10.5,2.01,10.25,2,10,2S9.5,2.01,9.25,2.04v1.51C9.5,3.52,9.75,3.5,10,3.5S10.5,3.52,10.75,3.55z\\\"></path><path d=\\\"M16.46,9.29l1.46-0.33c-0.07-0.5-0.18-0.99-0.33-1.46l-1.47,0.34C16.29,8.3,16.4,8.79,16.46,9.29z\\\"></path><path d=\\\"M14.13,3.16c-0.43-0.26-0.88-0.48-1.35-0.65l-0.65,1.36c0.48,0.17,0.93,0.39,1.35,0.65L14.13,3.16z\\\"></path><path d=\\\"M16.69,5.62c-0.28-0.42-0.59-0.81-0.94-1.17l-1.17,0.94c0.36,0.35,0.67,0.75,0.93,1.18L16.69,5.62z\\\"></path><path d=\\\"M16.46,10.7c-0.05,0.51-0.17,1-0.34,1.46l1.47,0.34c0.16-0.47,0.27-0.96,0.33-1.46L16.46,10.7z\\\"></path><path d=\\\"M12.12,16.14l0.65,1.36c0.47-0.18,0.92-0.39,1.35-0.65l-0.65-1.36C13.05,15.75,12.6,15.97,12.12,16.14z\\\"></path><path d=\\\"M9.25,16.45v1.51C9.5,17.99,9.75,18,10,18s0.5-0.01,0.75-0.04v-1.51c-0.25,0.03-0.5,0.05-0.75,0.05S9.5,16.48,9.25,16.45z\\\"></path><path d=\\\"M14.58,14.61l1.18,0.94c0.35-0.36,0.66-0.75,0.94-1.17l-1.18-0.94C15.24,13.86,14.93,14.26,14.58,14.61z\\\"></path><path d=\\\"M3.54,10.71l-1.46,0.33c0.07,0.5,0.18,0.99,0.33,1.46l1.47-0.34C3.71,11.7,3.6,11.21,3.54,10.71z\\\"></path><path d=\\\"M3.31,14.38c0.28,0.42,0.59,0.81,0.94,1.17l1.17-0.94c-0.36-0.35-0.67-0.75-0.93-1.18L3.31,14.38z\\\"></path><path d=\\\"M5.87,16.84c0.43,0.26,0.88,0.48,1.35,0.65l0.65-1.36c-0.48-0.17-0.93-0.39-1.35-0.65L5.87,16.84z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"leaderboard\": {\n    \"name\": \"leaderboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M7.5,21H2V9h5.5V21z M14.75,3h-5.5v18h5.5V3z M22,11h-5.5v10H22V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"close_fullscreen\": {\n    \"name\": \"close_fullscreen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z\\\"></path>\"\n      }\n    }\n  },\n  \"tips_and_updates\": {\n    \"name\": \"tips_and_updates\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,19h8v-2H5V19z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27 C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M21.37,7.37L20,8l1.37,0.63L22,10l0.63-1.37L24,8 l-1.37-0.63L22,6L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,14h6v1.5h-6V14z M13.5,8c0,2.09-1.07,3.93-2.69,5H4.19C2.57,11.93,1.5,10.09,1.5,8c0-3.31,2.69-6,6-6S13.5,4.69,13.5,8 z M7.5,18C8.33,18,9,17.33,9,16.5H6C6,17.33,6.67,18,7.5,18z M18.5,8l0.47-1.03L20,6.5l-1.03-0.47L18.5,5l-0.47,1.03L17,6.5 l1.03,0.47L18.5,8z M15.5,5l0.78-1.72L18,2.5l-1.72-0.78L15.5,0l-0.78,1.72L13,2.5l1.72,0.78L15.5,5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_antenna\": {\n    \"name\": \"settings_input_antenna\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_person\": {\n    \"name\": \"lock_person\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.43,11.18c1.26-0.29,2.47-0.21,3.57,0.12V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19C9.51,0.74,7,3.08,7,6v2H4v14h8.26 c-1.01-1.45-1.5-3.3-1.15-5.27C11.6,14,13.74,11.79,16.43,11.18z M8.9,6c0-1.71,1.39-3.1,3.1-3.1s3.1,1.39,3.1,3.1v2H8.9V6z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M18,15c0.83,0,1.5,0.67,1.5,1.5S18.83,18,18,18 s-1.5-0.67-1.5-1.5S17.17,15,18,15z M18,21c-1.03,0-1.94-0.52-2.48-1.32C16.25,19.26,17.09,19,18,19s1.75,0.26,2.48,0.68 C19.94,20.48,19.03,21,18,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.98,10.54c1.46-1.05,2.8-1.17,4.02-0.94V7h-2l0-1.83c0-2.09-1.53-3.95-3.61-4.15C8.01,0.79,6,2.66,6,5v2H4v11h6.39 c-0.53-0.81-0.86-1.78-0.89-2.81C9.44,13.32,10.46,11.63,11.98,10.54z M7.5,5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M15,11c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S17.21,11,15,11z M15,12c0.83,0,1.5,0.67,1.5,1.5S15.83,15,15,15 c-0.83,0-1.5-0.67-1.5-1.5S14.17,12,15,12z M15,18c-1.09,0-2.03-0.58-2.56-1.45c0.73-0.5,1.61-0.8,2.56-0.8s1.83,0.3,2.56,0.8 C17.03,17.42,16.09,18,15,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"toll\": {\n    \"name\": \"toll\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmarks\": {\n    \"name\": \"bookmarks\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 18l2 1V1H7v2h12v15zM17 5H3v18l7-3 7 3V5z\\\"></path>\"\n      }\n    }\n  },\n  \"outbond\": {\n    \"name\": \"outbond\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41 l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path><g></rect><g></rect><g></rect>\"\n      }\n    }\n  },\n  \"view_quilt\": {\n    \"name\": \"view_quilt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M21,5v6.5H9.33V5H21z M14.67,19v-6.5H9.33V19H14.67z M15.67,12.5V19H21v-6.5H15.67z M8.33,19V5H3v14H8.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,15v-4.5h4V15H8z M8,5v4.5h9V5H8z M7,15V5H3v10H7z M13,10.5V15h4v-4.5H13z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_view_day\": {\n    \"name\": \"calendar_view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18v2H3v-2zm0-7h18v5H3v-5zm0-4h18v2H3V6z\\\"></path>\"\n      }\n    }\n  },\n  \"shop_two\": {\n    \"name\": \"shop_two\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9H1v13h18v-2H3V9zm15-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z\\\"></path>\"\n      }\n    }\n  },\n  \"done_all\": {\n    \"name\": \"done_all\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z\\\"></path>\"\n      }\n    }\n  },\n  \"percent\": {\n    \"name\": \"percent\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7.5,4C5.57,4,4,5.57,4,7.5S5.57,11,7.5,11S11,9.43,11,7.5S9.43,4,7.5,4z M7.5,9C6.67,9,6,8.33,6,7.5S6.67,6,7.5,6 S9,6.67,9,7.5S8.33,9,7.5,9z M16.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S18.43,13,16.5,13z M16.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,18,16.5,18z M5.41,20L4,18.59L18.59,4L20,5.41L5.41,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.5,4C5.12,4,4,5.12,4,6.5C4,7.88,5.12,9,6.5,9S9,7.88,9,6.5C9,5.12,7.88,4,6.5,4z M6.5,7.5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,7.05,7.05,7.5,6.5,7.5z M13.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5C16,12.12,14.88,11,13.5,11z M13.5,14.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C14.5,14.05,14.05,14.5,13.5,14.5z M5.06,16L4,14.94L14.94,4L16,5.06L5.06,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_phone\": {\n    \"name\": \"settings_phone\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.21 17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52zM11 9h2v2h-2zm4 0h2v2h-2zm4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"note_add\": {\n    \"name\": \"note_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H4v20h16V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy_alt\": {\n    \"name\": \"view_comfy_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,4v16h20V4H2z M11,17H7v-4h4V17z M11,11H7V7h4V11z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2,4v12h16V4H2z M9,14H6v-3h3V14z M9,9H6V6h3V9z M14,14h-3v-3h3V14z M14,9h-3V6h3V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_box\": {\n    \"name\": \"account_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M12,6c1.93,0,3.5,1.57,3.5,3.5c0,1.93-1.57,3.5-3.5,3.5s-3.5-1.57-3.5-3.5C8.5,7.57,10.07,6,12,6z M19,19 H5v-0.23c0-0.62,0.28-1.2,0.76-1.58C7.47,15.82,9.64,15,12,15s4.53,0.82,6.24,2.19c0.48,0.38,0.76,0.97,0.76,1.58V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,3H3v14h14V3z M10,5.5c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S8.34,5.5,10,5.5z M15.5,15.5h-11 c0-0.6,0.03-1.18,0.73-1.62C6.61,13.01,8.24,12.5,10,12.5s3.39,0.51,4.77,1.38C15.48,14.32,15.5,14.95,15.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alarm_on\": {\n    \"name\": \"alarm_on\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"flaky\": {\n    \"name\": \"flaky\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6,6.71L6.71,6l1.06,1.06L8.83,6l0.71,0.71L8.47,7.77l1.06,1.06L8.83,9.54L7.77,8.47L6.71,9.54L6,8.83l1.06-1.06L6,6.71z M10,16 c-1.65,0-3.15-0.67-4.24-1.76l8.48-8.48C15.33,6.85,16,8.35,16,10C16,13.31,13.31,16,10,16z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><polygon fill-rule=\\\"evenodd\\\" points=\\\"11.41,12.59 10.41,11.59 9.71,12.29 11.41,14 14.21,11.21 13.5,10.5\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"outbox\": {\n    \"name\": \"outbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"11,14 13,14 13,11 16,11 12,7 8,11 11,11\\\"></polygon><path d=\\\"M3,3v18h18V3H3z M19,14h-4.18c-0.41,1.16-1.51,2-2.82,2s-2.4-0.84-2.82-2H5V5h14V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,3H3v14h14V3z M15.5,11H12c0,1.1-0.9,2-2,2s-2-0.9-2-2H4.5V4.5h11V11z\\\"></path><polygon points=\\\"9.25,11 10.75,11 10.75,9 13,9 10,6 7,9 9.25,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"verified_user\": {\n    \"name\": \"verified_user\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_turned_in\": {\n    \"name\": \"assignment_turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"extension_off\": {\n    \"name\": \"extension_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.78,22.61l-1.63-1.63C18.1,20.98,18.05,21,18,21h-3.8c0-2.71-2.16-3-2.7-3s-2.7,0.29-2.7,3H3v-5.8c2.71,0,3-2.16,3-2.7 c0-0.54-0.3-2.7-2.99-2.7V6c0-0.05,0.02-0.09,0.02-0.14L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M20,17.17V15 c1.38,0,2.5-1.12,2.5-2.5S21.38,10,20,10V4h-6c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H6.83L20,17.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V8c1.1,0,2,0.9,2,2s-0.9,2-2,2v5h5c0-1.1,0.9-2,2-2s2,0.9,2,2h2.88l1.13,1.13 L17.07,17.07z M19,10c0,1.1-0.9,2-2,2v2.88L5.12,3H8c0-1.1,0.9-2,2-2s2,0.9,2,2h5v5C18.1,8,19,8.9,19,10z\\\"></path>\"\n      }\n    }\n  },\n  \"join_left\": {\n    \"name\": \"join_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path></g><g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_access_shortcut_add\": {\n    \"name\": \"switch_access_shortcut_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M24,14h-2v-2h-2v2h-2v2h2v2h2v-2h2V14z M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21 l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11 L4.37,12.37z M12,12c0-2.73,1.08-5.27,2.75-7.25L12,2h7v7l-2.82-2.82C14.84,7.82,14,9.88,14,12c0,3.32,2.1,6.36,5,7.82L19,22 C14.91,20.41,12,16.35,12,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.2,0.83-4.24,2.2-5.8L10,2h5.5v5.5l-2.23-2.23C12.17,6.55,11.5,8.21,11.5,10c0,2.81,1.64,5.23,4,6.37 L15.5,18z M20,11.5h-1.5V10H17v1.5h-1.5V13H17v1.5h1.5V13H20V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_by_default\": {\n    \"name\": \"disabled_by_default\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7L17,8.41L13.41,12 L17,15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread_mailbox\": {\n    \"name\": \"markunread_mailbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6H10v6H8V4h6V0H6v6H2v16h20V6z\\\"></path>\"\n      }\n    }\n  },\n  \"ads_click\": {\n    \"name\": \"ads_click\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26L22,15l-10-3l3,10l1.26-3.77l4.27,4.27l1.98-1.98L18.23,16.26z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.09,18.5l-3.47-3.47L12.5,18L10,10l8,2.5l-2.97,1.11l3.47,3.47L17.09,18.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5 s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0 c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45C16.5,6.42,13.58,3.5,10,3.5 M10,6.5 c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0 c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\\\"></path>\"\n      }\n    }\n  },\n  \"favorite\": {\n    \"name\": \"favorite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z\\\"></path>\"\n      }\n    }\n  },\n  \"width_wide\": {\n    \"name\": \"width_wide\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,4H2v16h20V4z M4,6h2v12H4V6z M20,18h-2V6h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,4H2v12h16V4z M3.5,5.5H5v9H3.5V5.5z M16.5,14.5H15v-9h1.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_off\": {\n    \"name\": \"edit_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.41,6.33l-3.75-3.75l-2.53,2.54l3.75,3.75L21.41,6.33z M1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71-5.71l7.32,7.32 l1.41-1.41L2.81,2.81L1.39,4.22z M17.81,9.94l-3.75-3.75l-2.52,2.52l3.75,3.75L17.81,9.94z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"javascript\": {\n    \"name\": \"javascript\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,15v-2h1.5v0.5h2v-1H12V9h5v2h-1.5v-0.5h-2v1H17V15H12z M9,9v4.5H7.5v-1H6V15h4.5V9H9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,10.75h1V11h1v-0.75h-2V8h3v1.25h-1V9h-1v0.75h2V12h-3V10.75z M8,8v3H7v-1H6v2h3V8H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"class\": {\n    \"name\": \"class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_power\": {\n    \"name\": \"settings_power\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"fax\": {\n    \"name\": \"fax\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,9h-4V4H8v14.5V20h14V9z M10,6h6v3h-6V6z M14,17h-4v-5h4V17z M16,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C17,16.55,16.55,17,16,17z M16,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,13.55,16.55,14,16,14z M19,17 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,16.55,19.55,17,19,17z M19,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C20,13.55,19.55,14,19,14z\\\"></path><rect height=\\\"13\\\" width=\\\"5\\\" x=\\\"2\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"10.5\\\" width=\\\"4\\\" x=\\\"2\\\" y=\\\"6.5\\\"></rect><path d=\\\"M18,7.5h-3.4V4H7v12h11V7.5z M8.5,5.5h4.6v2H8.5V5.5z M11,13.5H8V10h3V13.5z M12.5,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,13.16,12.91,13.5,12.5,13.5z M12.5,11.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,11.16,12.91,11.5,12.5,11.5z M14.75,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,13.16,15.16,13.5,14.75,13.5z M14.75,11.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,11.16,15.16,11.5,14.75,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_alt_off\": {\n    \"name\": \"filter_alt_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"21.05,4 6.83,4 14.8,11.97\\\"></polygon><polygon points=\\\"2.81,2.81 1.39,4.22 10,13 10,20 14,20 14,16.83 19.78,22.61 21.19,21.19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"2.93,2.93 1.87,3.99 9,11.12 9,16 11,16 11,13.12 16.01,18.13 17.07,17.07\\\"></polygon><polygon points=\\\"16.56,4 6.12,4 11.86,9.73\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"spatial_audio\": {\n    \"name\": \"spatial_audio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z\\\"></path><path d=\\\"M16,1h-2c0,4.97,4.03,9,9,9V8C19.14,8,16,4.86,16,1z\\\"></path><path d=\\\"M20,1h-2c0,2.76,2.24,5,5,5V4C21.35,4,20,2.65,20,1z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"3\\\"></circle><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M12.5,1H11c0,4.42,3.58,8,8,8V7.5C15.42,7.5,12.5,4.58,12.5,1z\\\"></path><path d=\\\"M15.5,1H14c0,2.76,2.24,5,5,5V4.5C17.07,4.5,15.5,2.93,15.5,1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"density_small\": {\n    \"name\": \"density_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"11.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"7\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"2.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"16\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"rounded_corner\": {\n    \"name\": \"rounded_corner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M19,19h2v2h-2V19z M19,17h2v-2h-2V17z M3,13h2v-2H3V13z M3,17h2v-2H3V17z M3,9h2V7H3V9z M3,5h2V3H3V5z M7,5h2V3H7V5z M15,21 h2v-2h-2V21z M11,21h2v-2h-2V21z M15,21h2v-2h-2V21z M7,21h2v-2H7V21z M3,21h2v-2H3V21z M21,8c0-2.76-2.24-5-5-5h-5v2h5 c1.65,0,3,1.35,3,3v5h2V8z\\\"></path>\"\n      }\n    }\n  },\n  \"favorite_border\": {\n    \"name\": \"favorite_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less_double\": {\n    \"name\": \"unfold_less_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.58,1.41 15.16,0 11.99,3.17 8.82,0 7.41,1.41 11.99,6\\\"></polygon><polygon points=\\\"16.58,6.41 15.16,5 11.99,8.17 8.82,5 7.41,6.41 11.99,11\\\"></polygon><polygon points=\\\"7.42,17.59 8.84,19 12.01,15.83 15.18,19 16.59,17.59 12.01,13\\\"></polygon><polygon points=\\\"7.42,22.59 8.84,24 12.01,20.83 15.18,24 16.59,22.59 12.01,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13.37,1.06 12.31,0 10,2.31 7.69,0 6.63,1.06 10,4.43\\\"></polygon><polygon points=\\\"13.37,5.06 12.31,4 10,6.31 7.69,4 6.63,5.06 10,8.43\\\"></polygon><polygon points=\\\"6.63,14.94 7.69,16 10,13.69 12.31,16 13.37,14.94 10,11.57\\\"></polygon><polygon points=\\\"6.63,18.94 7.69,20 10,17.69 12.31,20 13.37,18.94 10,15.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"settings_applications\": {\n    \"name\": \"settings_applications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-1.75 9c0 .24-.02.47-.05.71l.01-.02 1.47 1.16c.14.1.23.18.23.18l-1.7 2.94-2.02-.8.02-.03c-.37.29-.77.53-1.21.71h.01l-.27 1.85c-.02.17-.04.3-.04.3h-3.4l-.31-2.15H10c-.44-.18-.84-.42-1.21-.71l.02.03-2.02.8-1.7-2.94s.1-.08.23-.18l1.47-1.16.01.02c-.03-.24-.05-.47-.05-.71s.02-.47.05-.69l-.01.01-1.7-1.34 1.7-2.95 2.01.81v.01c.37-.28.77-.52 1.2-.7h-.01L10.3 5h3.41l.3 2.15H14c.43.18.83.42 1.2.7v-.01l2.01-.81 1.7 2.95-1.71 1.34-.01-.01c.04.22.06.45.06.69z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2.45\\\"></circle>\"\n      }\n    }\n  },\n  \"backup_table\": {\n    \"name\": \"backup_table\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,6 20,20 6,20 6,22 22,22 22,6\\\"></polygon><path d=\\\"M18,2H2v16h16V2z M9,16H4v-5h5V16z M16,16h-5v-5h5V16z M16,9H4V4h12V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"16,6 16,16 6,16 6,17 17,17 17,6\\\"></polygon></g><g><path d=\\\"M14,14V3H3v11H14z M4,4h9v4H4V4z M8,13H4V9h4V13z M9,9h4v4H9V9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"swipe_right_alt\": {\n    \"name\": \"swipe_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.9,11C13.44,8.72,11.42,7,9,7c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h4.27l-1.59,1.59L18,16l4-4l-4-4 l-1.41,1.41L18.17,11H13.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.93,9.25C11.58,7.4,9.95,6,8,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c1.95,0,3.58-1.4,3.93-3.25l3.2,0l-1.19,1.19L15,13 l3-3l-3-3l-1.06,1.06l1.19,1.19L11.93,9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"update\": {\n    \"name\": \"update\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"join_full\": {\n    \"name\": \"join_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c2.8,2.34,3.03,5.53,3.03,6.5c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19 c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10c0,0.89-0.23,3.08-2.15,4.81 c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turned_in\": {\n    \"name\": \"turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5v18l7-3 7 3V3z\\\"></path>\"\n      }\n    }\n  },\n  \"lock\": {\n    \"name\": \"lock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_reset\": {\n    \"name\": \"lock_reset\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c-4.97,0-9,4.03-9,9H1l4,4l4-4H6c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7c-1.9,0-3.62-0.76-4.88-1.99L6.7,18.42 C8.32,20.01,10.55,21,13,21c4.97,0,9-4.03,9-9S17.97,3,13,3z M15,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1h-1v5h6v-5H15z M14,11h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,10c0,3.87-3.13,7-7,7c-2.04,0-3.87-0.88-5.15-2.27l1.06-1.06C6.92,14.79,8.38,15.5,10,15.5c3.03,0,5.5-2.47,5.5-5.5 S13.03,4.5,10,4.5S4.5,6.97,4.5,10h2.25l-3,3l-3-3H3c0-3.87,3.13-7,7-7C13.87,3,17,6.13,17,10z M12.25,9.25V13h-4.5V9.25H8.5V8.5 C8.5,7.67,9.17,7,10,7s1.5,0.67,1.5,1.5v0.75H12.25z M10.75,8.5c0-0.41-0.34-0.75-0.75-0.75S9.25,8.09,9.25,8.5v0.75h1.5V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"online_prediction\": {\n    \"name\": \"online_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,14h1.5v1h-1.5V14z M10,7L10,7L10,7C10,7,10,7,10,7C8.62,7,7.5,8.12,7.5,9.5C7.5,11,9.25,12,9.25,13 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,8.12,11.38,7,10,7z M4,10c0-1.65,0.67-3.15,1.76-4.24L5.05,5.05 C3.78,6.32,3,8.07,3,10c0,1.93,0.78,3.68,2.05,4.95l0.71-0.71C4.67,13.15,4,11.65,4,10z M17,10c0-1.93-0.78-3.68-2.05-4.95 l-0.71,0.71C15.33,6.85,16,8.35,16,10c0,1.65-0.67,3.15-1.76,4.24l0.71,0.71C16.22,13.68,17,11.93,17,10z M6.46,13.54l0.71-0.71 C6.45,12.1,6,11.1,6,10c0-1.1,0.45-2.1,1.17-2.83L6.46,6.46C5.56,7.37,5,8.62,5,10C5,11.38,5.56,12.63,6.46,13.54z M14,10 c0,1.1-0.45,2.1-1.17,2.83l0.71,0.71C14.44,12.63,15,11.38,15,10c0-1.38-0.56-2.63-1.46-3.54l-0.71,0.71C13.55,7.9,14,8.9,14,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_view\": {\n    \"name\": \"table_view\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,7H7v14h14V7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9 V17z M17,19v-2h2v2H17z M6,17H3V3h14v3h-2V5H5v10h1V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_weight\": {\n    \"name\": \"line_weight\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z\\\"></path>\"\n      }\n    }\n  },\n  \"g_translate\": {\n    \"name\": \"g_translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment\": {\n    \"name\": \"assignment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"build\": {\n    \"name\": \"build\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.09 2.91C10.08.9 7.07.49 4.65 1.67l4.34 4.34-3 3-4.34-4.34C.48 7.1.89 10.09 2.9 12.1c1.86 1.86 4.58 2.35 6.89 1.48l9.82 9.82 3.71-3.71-9.78-9.79c.92-2.34.44-5.1-1.45-6.99z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_shopping_cart\": {\n    \"name\": \"remove_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66L3.62 17h10.84l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06h.73L21.7 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pin_invoke\": {\n    \"name\": \"pin_invoke\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12v8H2V4h12l0,2H4v12h16v-6H22z M22,7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3s1.34,3,3,3C20.66,10,22,8.66,22,7z M11.47,12.12l-2.83,2.83l1.41,1.41l2.83-2.83L15,15.66V10H9.34L11.47,12.12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10v6H2V4h10c0,0,0.01,1.48,0,1.5H3.5v9h13V10H18z M18,6.25C18,5.01,16.99,4,15.75,4C14.5,4,13.5,5.01,13.5,6.25 s1.01,2.25,2.25,2.25S18,7.49,18,6.25z M9.35,10.09l-2.12,2.12l1.06,1.06l2.12-2.12L12,12.74V8.5H7.76L9.35,10.09z\\\"></path>\"\n      }\n    }\n  },\n  \"dashboard\": {\n    \"name\": \"dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"track_changes\": {\n    \"name\": \"track_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z\\\"></path>\"\n      }\n    }\n  },\n  \"join_right\": {\n    \"name\": \"join_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M16.5,12c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7s-3.14-7-7-7c-0.9,0-1.75,0.19-2.53,0.5 C16.27,7.84,16.5,11.03,16.5,12z\\\"></path></g><g><path d=\\\"M8,19c0.9,0,1.75-0.19,2.53-0.5c-0.61-0.51-1.1-1.07-1.49-1.63C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 c0.36,0,0.71,0.05,1.04,0.13c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7S4.14,19,8,19z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,14.24c1.73-1.43,2-3.32,2-4.24c0-0.91-0.27-2.81-2-4.24C8.27,7.19,8,9.09,8,10C8,10.92,8.27,12.81,10,14.24z\\\"></path><path d=\\\"M10.85,14.81c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5c0-3.04-2.46-5.5-5.5-5.5 c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10C13,10.89,12.77,13.08,10.85,14.81z\\\"></path><path d=\\\"M6.5,15.5c0.96,0,1.86-0.25,2.65-0.69c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14c-2.21,0-4-1.79-4-4 s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10 C1,13.04,3.46,15.5,6.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compare_arrows\": {\n    \"name\": \"compare_arrows\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight_round\": {\n    \"name\": \"nightlight_round\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,22c1.05,0,2.05-0.16,3-0.46c-4.06-1.27-7-5.06-7-9.54s2.94-8.27,7-9.54C17.55,2.16,16.55,2,15.5,2 c-5.52,0-10,4.48-10,10S9.98,22,15.5,22L15.5,22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stars\": {\n    \"name\": \"stars\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z\\\"></path>\"\n      }\n    }\n  },\n  \"help_center\": {\n    \"name\": \"help_center\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,3H3v18h18V3z M12.01,18c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25c0.71,0,1.25,0.54,1.25,1.25 C13.25,17.43,12.72,18,12.01,18z M15.02,10.6c-0.76,1.11-1.48,1.46-1.87,2.17c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82 c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16c0.57-0.81,0.25-2.33-1.37-2.33c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49 C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52C15.44,8.24,15.7,9.59,15.02,10.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"dashboard_customize\": {\n    \"name\": \"dashboard_customize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M3,3h8v8H3V3z M13,3h8v8h-8V3z M3,13h8v8H3V13z M18,13h-2v3h-3v2h3v3h2v-3h3v-2h-3V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"comment_bank\": {\n    \"name\": \"comment_bank\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,2v20l4-4h16V2H2z M19,13l-2.5-1.5L14,13V5h5V13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,3v14l3-3h11V3H3z M15,11l-2-1.31L11,11V5h4V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumbs_up_down\": {\n    \"name\": \"thumbs_up_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5H5.82l.78-3.78L5.38 0 0 5.38V14h9.24L12 7.54zm2.76 5L12 16.46V19h6.18l-.78 3.78L18.62 24 24 18.62V10z\\\"></path>\"\n      }\n    }\n  },\n  \"receipt\": {\n    \"name\": \"receipt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z\\\"></path>\"\n      }\n    }\n  },\n  \"question_mark\": {\n    \"name\": \"question_mark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.07,12.85c0.77-1.39,2.25-2.21,3.11-3.44c0.91-1.29,0.4-3.7-2.18-3.7c-1.69,0-2.52,1.28-2.87,2.34L6.54,6.96 C7.25,4.83,9.18,3,11.99,3c2.35,0,3.96,1.07,4.78,2.41c0.7,1.15,1.11,3.3,0.03,4.9c-1.2,1.77-2.35,2.31-2.97,3.45 c-0.25,0.46-0.35,0.76-0.35,2.24h-2.89C10.58,15.22,10.46,13.95,11.07,12.85z M14,20c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2 S14,18.9,14,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.29,10.58c0.6-1.07,1.73-1.7,2.39-2.65c0.7-0.99,0.31-2.85-1.67-2.85c-1.3,0-1.94,0.98-2.2,1.8l-2-0.84 C6.35,4.41,7.83,3,9.99,3c1.81,0,3.05,0.82,3.68,1.85c0.54,0.88,0.86,2.54,0.02,3.77c-0.92,1.36-1.81,1.78-2.28,2.65 c-0.19,0.35-0.27,0.58-0.27,1.72H8.91C8.91,12.4,8.82,11.42,9.29,10.58z M11.5,16c0,0.83-0.67,1.5-1.5,1.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5C10.83,14.5,11.5,15.17,11.5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_page\": {\n    \"name\": \"contact_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,2H4v20h16V8L14,2z M12,10c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C10,10.9,10.9,10,12,10z M16,18H8v-0.57 c0-0.81,0.48-1.53,1.22-1.85C10.07,15.21,11.01,15,12,15c0.99,0,1.93,0.21,2.78,0.58C15.52,15.9,16,16.62,16,17.43V18z\\\"></path>\"\n      }\n    }\n  },\n  \"mediation\": {\n    \"name\": \"mediation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18,13h-5.06c-0.34,3.1-2.26,5.72-4.94,7.05C7.96,21.69,6.64,23,5,23c-1.66,0-3-1.34-3-3s1.34-3,3-3 c0.95,0,1.78,0.45,2.33,1.14c1.9-1.03,3.26-2.91,3.58-5.14h-3.1C7.4,14.16,6.3,15,5,15c-1.66,0-3-1.34-3-3s1.34-3,3-3 c1.3,0,2.4,0.84,2.82,2h3.1C10.6,8.77,9.23,6.9,7.33,5.86C6.78,6.55,5.95,7,5,7C3.34,7,2,5.66,2,4s1.34-3,3-3 c1.64,0,2.96,1.31,2.99,2.95c2.68,1.33,4.6,3.95,4.94,7.05H18V8l4,4l-4,4V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe\": {\n    \"name\": \"swipe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.13,3.87C18.69,2.17,15.6,1,12,1S5.31,2.17,3.87,3.87L2,2v5h5L4.93,4.93c1-1.29,3.7-2.43,7.07-2.43 s6.07,1.14,7.07,2.43L17,7h5V2L20.13,3.87z\\\"></path><path d=\\\"M13,12.5v-6C13,5.67,12.33,5,11.5,5S10,5.67,10,6.5v10.74l-4.04-0.85l-1.21,1.23L10.13,23h8.97l1.09-7.64l-6.11-2.86H13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.51,3.49C14.87,1.96,12.56,1,10,1S5.13,1.96,3.49,3.49L2,2v4h4L4.69,4.69C6.02,3.47,7.91,2.7,10,2.7 s3.98,0.77,5.31,1.99L14,6h4V2L16.51,3.49z\\\"></path><path d=\\\"M10.5,11V6.25C10.5,5.56,9.94,5,9.25,5S8,5.56,8,6.25V15l-3-1l-1,1l4,4h7.16l1-6l-4-2H10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"generating_tokens\": {\n    \"name\": \"generating_tokens\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C17,7.58,13.42,4,9,4z M12,10.5h-2v5H8v-5H6V9h6V10.5z M20.25,3.75 L23,5l-2.75,1.25L19,9l-1.25-2.75L15,5l2.75-1.25L19,1L20.25,3.75z M20.25,17.75L23,19l-2.75,1.25L19,23l-1.25-2.75L15,19l2.75-1.25 L19,15L20.25,17.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.06,4.94L13,4l2.06-0.94L16,1l0.94,2.06L19,4l-2.06,0.94L16,7L15.06,4.94z M16,19l0.94-2.06L19,16l-2.06-0.94L16,13 l-0.94,2.06L13,16l2.06,0.94L16,19z M7.5,3.5c3.59,0,6.5,2.91,6.5,6.5s-2.91,6.5-6.5,6.5S1,13.59,1,10S3.91,3.5,7.5,3.5L7.5,3.5z M10,7.5H5v1.25h1.75V13h1.5V8.75H10V7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"request_page\": {\n    \"name\": \"request_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,2H4.01L4,22h16V8L14,2z M15,11h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9V9h2V8h2v1h2V11z\\\"></path>\"\n      }\n    }\n  },\n  \"cached\": {\n    \"name\": \"cached\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"width_full\": {\n    \"name\": \"width_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,4H2v16h20V4z M4,6h1v12H4V6z M20,18h-1V6h1V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,4H2v12h16V4z M3.5,5.5h1v9h-1V5.5z M16.5,14.5h-1v-9h1V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm\": {\n    \"name\": \"alarm\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"on_device_training\": {\n    \"name\": \"on_device_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><path d=\\\"M12,11c-1.1,0-2,0.9-2,2c0,0.74,0.4,1.38,1,1.72v0.78h2v-0.78c0.6-0.35,1-0.98,1-1.72C14,11.9,13.1,11,12,11z\\\"></path><path d=\\\"M20,1.01L4,1v22h16V1.01z M18,18H6V6h12V18z\\\"></path><path d=\\\"M16.01,15.95C16.63,15.12,17,14.11,17,13s-0.37-2.12-0.99-2.95l-1.07,1.07c0.35,0.54,0.56,1.19,0.56,1.88 s-0.21,1.34-0.56,1.88L16.01,15.95z\\\"></path><path d=\\\"M9.06,14.88C8.71,14.34,8.5,13.69,8.5,13c0-1.93,1.57-3.5,3.5-3.5v1.25l2.25-2l-2.25-2V8c-2.76,0-5,2.24-5,5 c0,1.11,0.37,2.12,0.99,2.95L9.06,14.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,1H4v18h12V1z M14.5,15h-9V5h9V15z\\\"></path><rect height=\\\".75\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13.25\\\"></rect><path d=\\\"M10,9.5c-0.83,0-1.5,0.67-1.5,1.5c0,0.55,0.3,1.03,0.75,1.29v0.46h1.5v-0.46c0.45-0.26,0.75-0.74,0.75-1.29 C11.5,10.17,10.83,9.5,10,9.5z\\\"></path><path d=\\\"M12.97,13c0.48-0.63,0.78-1.41,0.78-2.26c0-0.85-0.3-1.63-0.78-2.26l-0.71,0.71c0.31,0.44,0.49,0.98,0.49,1.56 s-0.18,1.11-0.49,1.56L12.97,13z\\\"></path><path d=\\\"M7.74,12.31c-0.31-0.44-0.49-0.98-0.49-1.56C7.25,9.23,8.48,8,10,8v1l1.5-1.5L10,6v1c-2.07,0-3.75,1.68-3.75,3.75 c0,0.85,0.3,1.63,0.78,2.26L7.74,12.31z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"balance\": {\n    \"name\": \"balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,7.83c0.85-0.3,1.53-0.98,1.83-1.83H18l-3,7c0,1.66,1.57,3,3.5,3s3.5-1.34,3.5-3l-3-7h2V4h-6.17 C14.42,2.83,13.31,2,12,2S9.58,2.83,9.17,4L3,4v2h2l-3,7c0,1.66,1.57,3,3.5,3S9,14.66,9,13L6,6h3.17c0.3,0.85,0.98,1.53,1.83,1.83 V19H2v2h20v-2h-9V7.83z M20.37,13h-3.74l1.87-4.36L20.37,13z M7.37,13H3.63L5.5,8.64L7.37,13z M12,6c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,5.55,12.55,6,12,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,6.37C11.39,6.15,11.9,5.64,12.12,5H15l-2.5,5.75c0,1.24,1.23,2.25,2.75,2.25c1.52,0,2.75-1.01,2.75-2.25L15.5,5H17 V3.5h-4.88C11.81,2.63,10.98,2,10,2S8.19,2.63,7.88,3.5H3V5h1.5L2,10.75C2,11.99,3.23,13,4.75,13s2.75-1.01,2.75-2.25L5,5h2.88 C8.1,5.64,8.61,6.15,9.25,6.37v9.13H2V17h16v-1.5h-7.25V6.37z M16.91,10.75h-3.32l1.66-3.82L16.91,10.75z M6.41,10.75H3.09 l1.66-3.82L6.41,10.75z M10,5C9.59,5,9.25,4.66,9.25,4.25C9.25,3.84,9.59,3.5,10,3.5s0.75,0.34,0.75,0.75C10.75,4.66,10.41,5,10,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upgrade\": {\n    \"name\": \"upgrade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,14v1H7v-1H13z M9.5,8v5h1V8H13l-3-3L7,8H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_array\": {\n    \"name\": \"view_array\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,5h-3v14h3V5z M17,5H7v14h10V5z M6,5H3v14h3V5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5h2v10H3V5z M15,5v10h2V5H15z M6,5h8v10H6V5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_voice\": {\n    \"name\": \"settings_voice\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z\\\"></path>\"\n      }\n    }\n  },\n  \"sticky_note_2\": {\n    \"name\": \"sticky_note_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.99,3L3,21h12l6-6V3H2.99z M7,8h10v2H7V8z M12,14H7v-2h5V14z M14,19.5V14h5.5L14,19.5z\\\"></path>\"\n      }\n    }\n  },\n  \"analytics\": {\n    \"name\": \"analytics\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"5\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"12\\\"></rect><rect fill=\\\"none\\\" height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"14\\\"></rect><rect fill=\\\"none\\\" height=\\\"10\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"7\\\"></rect><path d=\\\"M3,3v18h18V3H3z M9,17H7v-5h2V17z M13,17h-2v-3h2V17z M13,12h-2v-2h2V12z M17,17h-2V7h2V17z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_done\": {\n    \"name\": \"remove_done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24-4.24l-1.41,1.41l5.66,5.66l2.83-2.83l6.6,6.6l1.41-1.41L4.84,1.98z M18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36z M17.34,7.4l-1.41-1.41l-2.12,2.12l1.41,1.41L17.34,7.4z M1.08,12.35 l5.66,5.66l1.41-1.41l-5.66-5.66L1.08,12.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pan_tool\": {\n    \"name\": \"pan_tool\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 4v20H10.02L1 14.83 2.9 13 8 15.91V3h3v8h1V0h3v11h1V1h3v10h1V4h3z\\\"></path>\"\n      }\n    }\n  },\n  \"pageview\": {\n    \"name\": \"pageview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM22 4H2v16h20V4zm-5.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"explore_off\": {\n    \"name\": \"explore_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 6l-2.91 6.26 5.25 5.25C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm6.81 6.81l3.35 3.35L6 18l2.91-6.26z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_camera_mic\": {\n    \"name\": \"perm_camera_mic\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5h-5.17L15 3H9L7.17 5H2v16h9v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h9V5zm-8 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"reorder\": {\n    \"name\": \"reorder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z\\\"></path>\"\n      }\n    }\n  },\n  \"build_circle\": {\n    \"name\": \"build_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2z M15.14,17.25l-3.76-3.76c-1.22,0.43-2.64,0.17-3.62-0.81c-1.11-1.11-1.3-2.79-0.59-4.1l2.35,2.35 l1.41-1.41L8.58,7.17c1.32-0.71,2.99-0.52,4.1,0.59c0.98,0.98,1.24,2.4,0.81,3.62l3.76,3.76L15.14,17.25z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M12.02,13.5 l-2.26-2.26c-0.84,0.26-1.79,0.08-2.45-0.59C6.54,9.88,6.4,8.73,6.88,7.81l1.63,1.63l1.03-1.03L7.91,6.78 c0.92-0.48,2.07-0.34,2.84,0.43c0.74,0.74,0.9,1.84,0.48,2.74l2.17,2.17L12.02,13.5z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_rotate_vertical\": {\n    \"name\": \"text_rotate_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"api\": {\n    \"name\": \"api\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"face_unlock\": {\n    \"name\": \"face_unlock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_to_back\": {\n    \"name\": \"flip_to_back\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 7H7v2h2V7zm0 4H7v2h2v-2zm4 4h-2v2h2v-2zm0-12h-2v2h2V3zM9 3H7v2h2V3zm12 0h-2v2h2V3zm0 12h-2v2h2v-2zM9 15H7v2h2v-2zm10-2h2v-2h-2v2zm0-4h2V7h-2v2zM5 7H3v14h14v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_overscan\": {\n    \"name\": \"settings_overscan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm9-13H1v18h22V3zm-2 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"segment\": {\n    \"name\": \"segment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,18h12v-2H9V18z M3,6v2h18V6H3z M9,13h12v-2H9V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumb_up\": {\n    \"name\": \"thumb_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_ethernet\": {\n    \"name\": \"settings_ethernet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z\\\"></path>\"\n      }\n    }\n  },\n  \"pending_actions\": {\n    \"name\": \"pending_actions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M20,3h-5.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H4v19h8.11c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08 c0.71,0.1,1.38,0.31,2,0.6V3z M12,5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_compact_alt\": {\n    \"name\": \"view_compact_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,4H2v16h20V4z M11.5,16.5h-4v-4h4V16.5z M11.5,11.5h-4v-4h4V11.5z M16.5,16.5h-4v-4h4V16.5z M16.5,11.5h-4v-4h4V11.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,4H2v12h16V4z M9.5,13.5h-3v-3h3V13.5z M9.5,9.5h-3v-3h3V9.5z M13.5,13.5h-3v-3h3V13.5z M13.5,9.5h-3v-3h3V9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feedback\": {\n    \"name\": \"feedback\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2.01L2 22l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vertical_circle\": {\n    \"name\": \"swap_vertical_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z\\\"></path>\"\n      }\n    }\n  },\n  \"record_voice_over\": {\n    \"name\": \"record_voice_over\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"9\\\" r=\\\"4\\\"></circle><path d=\\\"M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm6.08-7.95c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z\\\"></path>\"\n      }\n    }\n  },\n  \"euro_symbol\": {\n    \"name\": \"euro_symbol\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z\\\"></path>\"\n      }\n    }\n  },\n  \"quickreply\": {\n    \"name\": \"quickreply\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"22,2 2,2 2,22 6,18 15,18 15,10 22,10\\\"></polygon></g><g><polygon points=\\\"22.5,16 20.3,16 22,12 17,12 17,18 19,18 19,23\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"17,3 3,3 3,17 6,14 13,14 13,9 17,9\\\"></polygon></g><g><polygon points=\\\"18,13 16.4,13 17.64,10 14,10 14,14.36 15.45,14.36 15.45,18\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_circle_right\": {\n    \"name\": \"arrow_circle_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,12c0-5.52-4.48-10-10-10C6.48,2,2,6.48,2,12s4.48,10,10,10C17.52,22,22,17.52,22,12z M12,13H8v-2h4V8l4,4l-4,4V13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S18,14.42,18,10z M10,10.75H7v-1.5h3V7l3,3l-3,3V10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"open_in_new_off\": {\n    \"name\": \"open_in_new_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.79,5.8L14,3h7v7l-2.79-2.8l-4.09,4.09l-1.41-1.41L16.79,5.8z M19,12v4.17l2,2V12H19z M19.78,22.61L18.17,21H3V5.83 L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M16.17,19l-4.88-4.88L9.7,15.71L8.29,14.3l1.59-1.59L5,7.83V19H16.17z M7.83,5H12V3 H5.83L7.83,5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,14.88l-1.5-1.5V10H17V14.88z M10,4.5V3H5.12l1.5,1.5H10z M15.03,6.03L17,8V3h-5l1.97,1.97l-3.44,3.44l1.06,1.06 L15.03,6.03z M16.01,18.13L14.88,17H3V5.12L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M13.38,15.5l-3.91-3.91L8.06,13L7,11.94 l1.41-1.41L4.5,6.62v8.88H13.38z\\\"></path>\"\n      }\n    }\n  },\n  \"credit_card_off\": {\n    \"name\": \"credit_card_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H22v15.17L14.83,12H20V8h-9.17L6.83,4z M20.49,23.31L17.17,20H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M9.17,12l-4-4H4v4H9.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.12,4H18v11.88L12.12,10h4.38V7H9.12L6.12,4z M16.72,18.84L13.88,16H2V4.12L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M7.88,10l-3-3H3.5v3H7.88z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_device_information\": {\n    \"name\": \"perm_device_information\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v2h2V7zm0 4h-2v6h2v-6zM5 1v22h14V1H5zm12 18H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"get_app\": {\n    \"name\": \"get_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"subject\": {\n    \"name\": \"subject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_alt\": {\n    \"name\": \"sync_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,12 22,8 18,4 18,7 3,7 3,9 18,9\\\"></polygon><polygon points=\\\"6,12 2,16 6,20 6,17 21,17 21,15 6,15\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"15,10 18,7 15,4 15,6.25 3,6.25 3,7.75 15,7.75\\\"></polygon><polygon points=\\\"5,10 2,13 5,16 5,13.75 17,13.75 17,12.25 5,12.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"play_for_work\": {\n    \"name\": \"play_for_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_none\": {\n    \"name\": \"text_rotation_none\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture_alt\": {\n    \"name\": \"picture_in_picture_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 11h-8v6h8v-6zm4 10V3H1v18h22zm-2-1.98H3V4.97h18v14.05z\\\"></path>\"\n      }\n    }\n  },\n  \"view_column\": {\n    \"name\": \"view_column\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.67,5v14H9.33V5H14.67z M15.67,19H21V5h-5.33V19z M8.33,19V5H3v14H8.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,15h4V5h-4V15z M8,5v10h4V5H8z M7,15V5H3v10H7z\\\"></path>\"\n      }\n    }\n  },\n  \"input\": {\n    \"name\": \"input\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3zM23 3.01H1V9h2V4.99h18v14.03H3V15H1v5.99h22V3.01zM11 16l4-4-4-4v3H1v2h10v3z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_history\": {\n    \"name\": \"manage_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22.69,18.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L20,14h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L18,24h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C22.77,19.13,22.77,18.87,22.69,18.37z M19,21c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S20.1,21,19,21z M11,7v5.41l2.36,2.36l1.04-1.79L13,11.59V7H11z M21,12c0-4.97-4.03-9-9-9C9.17,3,6.65,4.32,5,6.36V4H3v6 h6V8H6.26C7.53,6.19,9.63,5,12,5c3.86,0,7,3.14,7,7H21z M10.86,18.91C7.87,18.42,5.51,16.01,5.08,13H3.06c0.5,4.5,4.31,8,8.94,8 c0.02,0,0.05,0,0.07,0L10.86,18.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.95,14.89l0.85-0.79l-0.67-1.15l-1.12,0.33c-0.31-0.28-0.67-0.48-1.07-0.62l-0.28-1.16h-1.33l-0.27,1.17 c-0.39,0.13-0.75,0.34-1.05,0.61l-1.14-0.34L12.2,14.1l0.87,0.81c-0.11,0.54-0.05,0.97,0,1.21l-0.87,0.83l0.67,1.15l1.16-0.36 c0.3,0.26,0.64,0.46,1.03,0.59l0.27,1.17h1.33l0.28-1.16c0.39-0.13,0.75-0.33,1.05-0.6l1.15,0.35l0.67-1.15l-0.86-0.81 C19.07,15.53,18.98,15.07,18.95,14.89z M16.01,17c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.84,17,16.01,17z M10.49,16.98C10.33,16.99,10.17,17,10,17c-3.87,0-7-3.13-7-7h1.5c0,2.91,2.27,5.3,5.13,5.49L10.49,16.98z M15.5,10 c0-3.03-2.47-5.5-5.5-5.5c-1.7,0-3.22,0.78-4.22,2H8V8H3V3h1.5v2.71C5.78,4.07,7.76,3,10,3c3.87,0,7,3.13,7,7H15.5z M10.75,6v3.38 l1.55,1.55l-0.78,1.34L9.25,10V6H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"circle_notifications\": {\n    \"name\": \"circle_notifications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,18.5L12,18.5c-0.83,0-1.5-0.67-1.5-1.5v0h3v0 C13.5,17.83,12.83,18.5,12,18.5z M17,16H7v-2h1v-3c0-1.86,1.28-3.41,3-3.86V5.5h2v1.64c1.72,0.45,3,2,3,3.86v3h1V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3d_rotation\": {\n    \"name\": \"3d_rotation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes_off\": {\n    \"name\": \"speaker_notes_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.27 1.73L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 1.27 1.73zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm16-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99H22V2z\\\"></path>\"\n      }\n    }\n  },\n  \"work_off\": {\n    \"name\": \"work_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 4h4v2h-3.6L22 17.6V6h-6V4c0-1.1-.9-2-2-2h-4c-.98 0-1.79.71-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H2.01L2 21h17.74l2 2 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"dangerous\": {\n    \"name\": \"dangerous\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3z M16.24,14.83l-1.41,1.41L12,13.41l-2.83,2.83l-1.41-1.41 L10.59,12L7.76,9.17l1.41-1.41L12,10.59l2.83-2.83l1.41,1.41L13.41,12L16.24,14.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><path d=\\\"M0,0h20v20H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12.89,3H7.11L3,7.11v5.77L7.11,17h5.77L17,12.89V7.11L12.89,3z M13.28,12.22l-1.06,1.06L10,11.06l-2.22,2.22l-1.06-1.06 L8.94,10L6.72,7.78l1.06-1.06L10,8.94l2.22-2.22l1.06,1.06L11.06,10L13.28,12.22z\\\"></path></g>\"\n      }\n    }\n  },\n  \"lock_outline\": {\n    \"name\": \"lock_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 8V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H4v14h16V8h-3zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"copyright\": {\n    \"name\": \"copyright\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"lightbulb_outline\": {\n    \"name\": \"lightbulb_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 22h6v-2H9v2zm1.54-19.85c-2.75.56-4.94 2.81-5.43 5.58-.51 2.89.76 5.52 2.89 7.01V18h8v-3.26c1.81-1.27 3-3.36 3-5.74 0-4.34-3.97-7.77-8.46-6.85zm4.31 10.95l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_new\": {\n    \"name\": \"open_in_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"app_shortcut\": {\n    \"name\": \"app_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17,18 7,18 7,6 17,6 17,7 19,7 19,1 5,1 5,1 5,23 19,23 19,17 17,17\\\"></polygon><polygon points=\\\"20.38,9.62 21,11 21.62,9.62 23,9 21.62,8.38 21,7 20.38,8.38 19,9\\\"></polygon><polygon points=\\\"16,8 14.75,10.75 12,12 14.75,13.25 16,16 17.25,13.25 20,12 17.25,10.75\\\"></polygon><polygon points=\\\"21,13 20.38,14.38 19,15 20.38,15.62 21,17 21.62,15.62 23,15 21.62,14.38\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14.5,15 5.5,15 5.5,5 14.5,5 14.5,6 16,6 16,1 4,1 4,19 16,19 16,14 14.5,14\\\"></polygon><polygon points=\\\"17.03,7.97 17.5,9 17.97,7.97 19,7.5 17.97,7.03 17.5,6 17.03,7.03 16,7.5\\\"></polygon><polygon points=\\\"13,7 12.06,9.06 10,10 12.06,10.94 13,13 13.94,10.94 16,10 13.94,9.06\\\"></polygon><polygon points=\\\"17.5,11 17.03,12.03 16,12.5 17.03,12.97 17.5,14 17.97,12.97 19,12.5 17.97,12.03\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"supervisor_account\": {\n    \"name\": \"supervisor_account\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7 14 8.12 14 9.5s1.12 2.5 2.5 2.5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_phone_msg\": {\n    \"name\": \"perm_phone_msg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3v10l3-3h6V3zm1.21 14.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z\\\"></path>\"\n      }\n    }\n  },\n  \"density_medium\": {\n    \"name\": \"density_medium\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"dns\": {\n    \"name\": \"dns\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 13H3v8h18v-8zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM21 3H3v8h18V3zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"home\": {\n    \"name\": \"home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_headline\": {\n    \"name\": \"view_headline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"view_in_ar\": {\n    \"name\": \"view_in_ar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><polygon points=\\\"18,1 18,3 21,3 21,6 23,6 23,1\\\"></polygon><polygon points=\\\"21,21 18,21 18,23 23,23 23,18 21,18\\\"></polygon><polygon points=\\\"3,3 6,3 6,1 1,1 1,6 3,6\\\"></polygon><polygon points=\\\"3,18 1,18 1,23 6,23 6,21 3,21\\\"></polygon><path d=\\\"M19,7.97l-7-4.03L5,7.97v8.06l7,4.03l7-4.03V7.97z M11,17.17l-4-2.3v-4.63l4,2.33V17.17z M12,10.84L8.04,8.53L12,6.25 l3.96,2.28L12,10.84z M17,14.87l-4,2.3v-4.6l4-2.33V14.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"explore\": {\n    \"name\": \"explore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z\\\"></path>\"\n      }\n    }\n  },\n  \"transcribe\": {\n    \"name\": \"transcribe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.93,16l1.63-1.63c-2.77-3.02-2.77-7.56,0-10.74L17.93,2C14.03,5.89,14.02,11.95,17.93,16z M22.92,10.95 c-0.84-1.18-0.84-2.71,0-3.89l-1.68-1.69c-2.02,2.02-2.02,5.07,0,7.27L22.92,10.95z M9,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4 S5,6.79,5,9C5,11.21,6.79,13,9,13z M15.39,15.56C13.71,14.7,11.53,14,9,14c-2.53,0-4.71,0.7-6.39,1.56C1.61,16.07,1,17.1,1,18.22 V21h16v-2.78C17,17.1,16.39,16.07,15.39,15.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z\\\"></path><path d=\\\"M15.16,12.61l0.97-1.17C15.14,10.61,14.5,9.39,14.5,8s0.64-2.61,1.63-3.44l-0.97-1.17C13.84,4.49,13,6.15,13,8 S13.84,11.51,15.16,12.61z\\\"></path><path d=\\\"M17.09,5.71C16.43,6.26,16,7.07,16,8s0.43,1.74,1.09,2.29l0.96-1.15C17.71,8.87,17.5,8.46,17.5,8s0.21-0.87,0.54-1.15 L17.09,5.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lightbulb\": {\n    \"name\": \"lightbulb\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M12,22c1.1,0,2-0.9,2-2h-4C10,21.1,10.9,22,12,22z\\\"></path></g><g><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"17\\\"></rect></g><g><path d=\\\"M12,2C7.86,2,4.5,5.36,4.5,9.5c0,3.82,2.66,5.86,3.77,6.5h7.46c1.11-0.64,3.77-2.68,3.77-6.5C19.5,5.36,16.14,2,12,2z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_outward\": {\n    \"name\": \"arrow_outward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"6,6 6,8 14.59,8 5,17.59 6.41,19 16,9.41 16,18 18,18 18,6\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"5,5 5,6.5 12.44,6.5 4,14.94 5.06,16 13.5,7.56 13.5,15 15,15 15,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"pin_end\": {\n    \"name\": \"pin_end\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,12V6H4v12h10l0,2H2V4h20v8H20z M19,14c-1.66,0-3,1.34-3,3s1.34,3,3,3c1.66,0,3-1.34,3-3S20.66,14,19,14z M14.66,8H9 v5.66l2.12-2.12l2.83,2.83l1.41-1.41l-2.83-2.83L14.66,8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,10V5.5h-13v9H12c0.01,0.02,0,1.5,0,1.5H2V4h16v6H16.5z M15.75,11.5c-1.24,0-2.25,1.01-2.25,2.25s1,2.25,2.25,2.25 c1.24,0,2.25-1.01,2.25-2.25S16.99,11.5,15.75,11.5z M12.74,7H8.5v4.24l1.59-1.59l2.12,2.12l1.06-1.06l-2.12-2.12L12.74,7z\\\"></path>\"\n      }\n    }\n  },\n  \"all_out\": {\n    \"name\": \"all_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"today\": {\n    \"name\": \"today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zM7 10h5v5H7v-5z\\\"></path>\"\n      }\n    }\n  },\n  \"batch_prediction\": {\n    \"name\": \"batch_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M19,8H5v14h14V8z M13,20.5h-2V19h2V20.5z M13,18h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5 C15.5,15,13,16.5,13,18z M18,6.5H6V5h12V6.5z M17,3.5H7V2h10V3.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5,7v10h10V7H5z M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8 c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5C12.5,12,10.75,13,10.75,14z M14,6H6V5h8V6z M13,4H7V3h6V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_up\": {\n    \"name\": \"arrow_circle_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"change_history\": {\n    \"name\": \"change_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"pinch\": {\n    \"name\": \"pinch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23.18,15.4L22.1,23h-9L8,17.62l1.22-1.23L13,17.24V6.5C13,5.67,13.67,5,14.5,5S16,5.67,16,6.5v6h1.38L23.18,15.4z M6,2.5 V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.66,11H14V6.25C14,5.56,13.44,5,12.75,5h0c-0.69,0-1.25,0.56-1.25,1.25V15l-3-1l-1,1l4,4h7.16l1-6L15.66,11z M5,1v1 h2.29L2,7.3V5H1v4h4V8H2.71L8,2.71V5h1V1H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"done_outline\": {\n    \"name\": \"done_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z\\\"></path>\"\n      }\n    }\n  },\n  \"backup\": {\n    \"name\": \"backup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_right\": {\n    \"name\": \"swipe_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.18,15.4L19.1,23h-9L5,17.62l1.22-1.23L10,17.24V6.5C10,5.67,10.67,5,11.5,5S13,5.67,13,6.5v6h1.38L20.18,15.4z M19.91,5.5H17V7h5V2h-1.5v2.02C18.18,2.13,15.22,1,12,1C6.51,1,2.73,4.12,2,7h1.57C4.33,5.02,7.26,2.5,12,2.5 C15.03,2.5,17.79,3.64,19.91,5.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,6c1.03-2.89,4.22-5,8-5c2.93,0,5.51,1.27,7,3.19L17,2h1v4h-4V5l2.36,0C15.06,3.18,12.65,2,10,2C6.89,2,4.11,3.63,3.07,6 L2,6z M12.66,11H11V6.25C11,5.56,10.44,5,9.75,5h0C9.06,5,8.5,5.56,8.5,6.25V15l-3-1l-1,1l4,4h7.16l1-6L12.66,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"plagiarism\": {\n    \"name\": \"plagiarism\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"11.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M14,2H4v20h16V8L14,2z M15.04,19.45l-1.88-1.88c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95 c1.37-1.37,3.58-1.37,4.95,0c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88L15.04,19.45z M13,9V3.5L18.5,9H13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"9.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle></g><g><path d=\\\"M12,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V7L12,3z M12.33,15.04l-1.45-1.45 c-0.97,0.64-2.29,0.54-3.15-0.32c-0.98-0.98-0.98-2.56,0-3.54s2.56-0.98,3.54,0c0.86,0.86,0.96,2.18,0.32,3.15l1.45,1.45 L12.33,15.04z M11,8V4l4,4H11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"php\": {\n    \"name\": \"php\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9z M8,9v4H4.5v2H3V9H8z M6.5,10.5h-2v1h2V10.5z M21.5,9v4H18v2h-1.5V9H21.5z M20,10.5h-2v1h2V10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,8h1v4h-1v-1.5h-1V12h-1V8h1v1.5h1V8z M7,8v2.5H5V12H4V8H7z M6,9H5v0.5h1V9z M16,8v2.5h-2V12h-1V8H16z M15,9h-1v0.5h1 V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grade\": {\n    \"name\": \"grade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_month\": {\n    \"name\": \"calendar_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,20 H5V10h14V20z M9,14H7v-2h2V14z M13,14h-2v-2h2V14z M17,14h-2v-2h2V14z M9,18H7v-2h2V18z M13,18h-2v-2h2V18z M17,18h-2v-2h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h11c0.83,0,1.5-0.68,1.5-1.5v-11 C17,4.68,16.33,4,15.5,4z M15.5,16.5h-11V9h11V16.5z M7.5,12H6v-1.5h1.5V12z M10.75,12h-1.5v-1.5h1.5V12z M14,12h-1.5v-1.5H14V12z M7.5,15H6v-1.5h1.5V15z M10.75,15h-1.5v-1.5h1.5V15z M14,15h-1.5v-1.5H14V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"outbound\": {\n    \"name\": \"outbound\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41 l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path><g></rect><g></rect><g></rect>\"\n      }\n    }\n  },\n  \"card_giftcard\": {\n    \"name\": \"card_giftcard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6h-4.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2.01v15H22V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_split\": {\n    \"name\": \"vertical_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility\": {\n    \"name\": \"accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_page\": {\n    \"name\": \"restore_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H4v20h16V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5c-1.35 0-2.52.78-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horiz\": {\n    \"name\": \"swap_horiz\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z\\\"></path>\"\n      }\n    }\n  },\n  \"width_normal\": {\n    \"name\": \"width_normal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,4H2v16h20V4z M4,6h4v12H4V6z M20,18h-4V6h4V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,4H2v12h16V4z M3.5,5.5H7v9H3.5V5.5z M16.5,14.5H13v-9h3.5V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_style\": {\n    \"name\": \"line_style\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vert\": {\n    \"name\": \"swap_vert\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z\\\"></path>\"\n      }\n    }\n  },\n  \"help_outline\": {\n    \"name\": \"help_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"hide_source\": {\n    \"name\": \"hide_source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.94,10.94C14.86,19.59,13.48,20,12,20z M7.94,5.12 L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46C19.59,14.86,20,13.48,20,12 c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tab_unselected\": {\n    \"name\": \"tab_unselected\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9h2V7H1v2zm0 4h2v-2H1v2zm8 8h2v-2H9v2zm-8-4h2v-2H1v2zm0 4h2v-2H1v2zM23 3H13v6h10V3zm-2 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zM1 5h2V3H1v2zm20 8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_present\": {\n    \"name\": \"file_present\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,2H4v20h16V8L14,2z M16,15c0,2.21-1.79,4-4,4s-4-1.79-4-4V9.5C8,8.12,9.12,7,10.5,7S13,8.12,13,9.5V15h-2V9.5 C11,9.22,10.78,9,10.5,9S10,9.22,10,9.5V15c0,1.1,0.9,2,2,2s2-0.9,2-2v-4h2V15z M14,8V4l4,4H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_brightness\": {\n    \"name\": \"settings_brightness\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_clock\": {\n    \"name\": \"lock_clock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,11c0.7,0,1.37,0.1,2,0.29V8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51,0.74,7,3.08,7,6v2H4v14h8.26 C11.47,20.87,11,19.49,11,18C11,14.13,14.13,11,18,11z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z M18,13c-2.76,0-5,2.24-5,5 s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85L19.65,20.35z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M12.52,9.7c1.25-0.34,2.44-0.23,3.48,0.18V7h-2l0-1.83c0-2.09-1.53-3.95-3.61-4.15C8.01,0.79,6,2.66,6,5v2H4v11h5.4 c-0.77-1.18-1.1-2.66-0.76-4.22C9.06,11.82,10.59,10.23,12.52,9.7z M7.5,5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M13.5,13h1v1.79l1.35,1.35l-0.71,0.71 l-1.65-1.65V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"source\": {\n    \"name\": \"source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6l-2-2H2v16h20V6H12z M14,16H6v-2h8V16z M18,12H6v-2h12V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_agenda\": {\n    \"name\": \"view_agenda\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"8\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"13\\\"></rect><rect height=\\\"8\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"6\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"6\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"11\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"swipe_left\": {\n    \"name\": \"swipe_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.18,15.4L19.1,23h-9L5,17.62l1.22-1.23L10,17.24V6.5C10,5.67,10.67,5,11.5,5S13,5.67,13,6.5v6h1.38L20.18,15.4z M12,2.5 c4.74,0,7.67,2.52,8.43,4.5H22c-0.73-2.88-4.51-6-10-6C8.78,1,5.82,2.13,3.5,4.02V2H2v5h5V5.5H4.09C6.21,3.64,8.97,2.5,12,2.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.93,6C15.89,3.63,13.11,2,10,2C7.35,2,4.94,3.18,3.64,5L6,5v1H2V2h1l0,2.19C4.49,2.27,7.07,1,10,1c3.78,0,6.97,2.11,8,5 L16.93,6z M12.66,11H11V6.25C11,5.56,10.44,5,9.75,5h0C9.06,5,8.5,5.56,8.5,6.25V15l-3-1l-1,1l4,4h7.16l1-6L12.66,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turned_in_not\": {\n    \"name\": \"turned_in_not\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5.01L5 21l7-3 7 3V3zm-2 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up_alt\": {\n    \"name\": \"swipe_up_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,5.83l1.59,1.59L16,6l-4-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-2.42-1.72-4.44-4-4.9V5.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,4.87l1.19,1.19L13,5l-3-3L7,5l1.06,1.06l1.19-1.19l0,3.2C7.4,8.42,6,10.05,6,12c0,2.21,1.79,4,4,4 c2.21,0,4-1.79,4-4c0-1.95-1.4-3.58-3.25-3.93L10.75,4.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fact_check\": {\n    \"name\": \"fact_check\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,3v18h20V3H2z M10,17H5v-2h5V17z M10,13H5v-2h5V13z M10,9H5V7h5V9z M14.82,15 L12,12.16l1.41-1.41l1.41,1.42L17.99,9l1.42,1.42L14.82,15z\\\" fill-rule=\\\"evenodd\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,4v12h14V4H3z M9,13H5v-1h4V13z M9,10.5H5v-1h4V10.5z M9,8H5V7h4V8z M11.97,11.77l-1.41-1.41l0.71-0.71l0.71,0.71l2.12-2.12l0.71,0.71L11.97,11.77z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_added\": {\n    \"name\": \"bookmark_added\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,21l-7-3l-7,3V3h9c-0.63,0.84-1,1.87-1,3c0,2.76,2.24,5,5,5c0.34,0,0.68-0.03,1-0.1V21z M17.83,9L15,6.17l1.41-1.41 l1.41,1.41l3.54-3.54l1.41,1.41L17.83,9z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_full\": {\n    \"name\": \"hourglass_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"invert_colors\": {\n    \"name\": \"invert_colors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4.81L12,19c-3.31,0-6-2.63-6-5.87c0-1.56,0.62-3.03,1.75-4.14L12,4.81 M6.35,7.56L6.35,7.56C4.9,8.99,4,10.96,4,13.13 C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87c0-2.17-0.9-4.14-2.35-5.57l0,0L12,2L6.35,7.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.53,6.59L14.53,6.59L10,2L5.5,6.56c-1.08,1.11-1.75,2.62-1.75,4.28c0,3.4,2.8,6.16,6.25,6.16s6.25-2.76,6.25-6.16 C16.25,9.19,15.6,7.7,14.53,6.59z M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_media\": {\n    \"name\": \"perm_media\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 6H0v16h20v-2H2V6zm22-2H14l-2-2H4v16h20V4zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_return\": {\n    \"name\": \"assignment_return\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"pets\": {\n    \"name\": \"pets\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_empty\": {\n    \"name\": \"hourglass_empty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"code_off\": {\n    \"name\": \"code_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10l-2.94,2.94L14,11.88L15.88,10l-3.94-3.94L13,5L18,10z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99l3.07,3.07L2,10 l5,5l1.06-1.06L4.12,10L6,8.12L16.01,18.13z\\\"></path>\"\n      }\n    }\n  },\n  \"aspect_ratio\": {\n    \"name\": \"aspect_ratio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm16-6H1v18h22V3zm-2 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"view_list\": {\n    \"name\": \"view_list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,14h4v-4H3V14z M3,19h4v-4H3V19z M3,9h4V5H3V9z M8,14h13v-4H8V14z M8,19h13v-4H8V19z M8,5v4h13V5H8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,12.33V15H3v-2.67H6z M6,8.67H3v2.67h3V8.67z M6,5H3v2.67h3V5z M7,8.67v2.67h10V8.67H7z M7,15h10v-2.67H7V15z M17,7.67V5 H7v2.67H17z\\\"></path>\"\n      }\n    }\n  },\n  \"star_rate\": {\n    \"name\": \"star_rate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"14.43,10 12,2 9.57,10 2,10 8.18,14.41 5.83,22 12,17.31 18.18,22 15.83,14.41 22,10\\\"></polygon></g>\"\n      },\n      \"18\": {\n        \"width\": 18,\n        \"path\": \"<path d=\\\"M0 0h18v18H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11.3l3.71 2.7-1.42-4.36L15 7h-4.55L9 2.5 7.55 7H3l3.71 2.64L5.29 14 9 11.3z\\\"></path>\"\n      }\n    }\n  },\n  \"announcement\": {\n    \"name\": \"announcement\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20l4-4h16V2zm-9 9h-2V5h2v6zm0 4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_module\": {\n    \"name\": \"view_module\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.67,5v6.5H9.33V5H14.67z M15.67,11.5H21V5h-5.33V11.5z M14.67,19v-6.5H9.33V19H14.67z M15.67,12.5V19H21v-6.5H15.67z M8.33,12.5H3V19h5.33V12.5z M8.33,11.5V5H3v6.5H8.33z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8,15v-4.5h4V15H8z M13,9.5h4V5h-4V9.5z M8,5v4.5h4V5H8z M7,9.5V5H3v4.5H7z M13,10.5V15h4v-4.5H13z M7,10.5H3V15h4V10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_border\": {\n    \"name\": \"bookmark_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5v18l7-3 7 3V3zm-2 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_carousel\": {\n    \"name\": \"view_carousel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,7h4v10H2V7z M7,19h10V5H7V19z M18,7h4v10h-4V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2,6.5h3v7H2V6.5z M15,6.5v7h3v-7H15z M6,5h8v10H6V5z\\\"></path>\"\n      }\n    }\n  },\n  \"trending_down\": {\n    \"name\": \"trending_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_land\": {\n    \"name\": \"flight_land\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_drive\": {\n    \"name\": \"add_to_drive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,11c0.17,0,0.33,0.01,0.49,0.02L15,3H9l5.68,9.84C15.77,11.71,17.3,11,19,11z\\\"></path><polygon points=\\\"8.15,4.52 2,15.5 5,21 11.33,10.03\\\"></polygon><path d=\\\"M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94,13,18.54,13,17C13,16.48,13.07,15.98,13.2,15.5z\\\"></path><polygon points=\\\"20,16 20,13 18,13 18,16 15,16 15,18 18,18 18,21 19,21 20,21 20,18 23,18 23,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.98,9L12.5,3h-5l4.59,7.92C13,9.77,14.39,9.01,15.98,9z\\\"></path><path d=\\\"M11.25,12.5H8.84L6.23,17h5.79C11.39,16.16,11,15.13,11,14C11,13.47,11.1,12.98,11.25,12.5z\\\"></path><polygon points=\\\"6.63,4.5 2,12.5 4.5,17 9.19,8.91\\\"></polygon><polygon points=\\\"16.75,13.25 16.75,11 15.25,11 15.25,13.25 13,13.25 13,14.75 15.25,14.75 15.25,17 15.5,17 16.75,17 16.75,14.75 19,14.75 19,13.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"autorenew\": {\n    \"name\": \"autorenew\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\\\"></path>\"\n      }\n    }\n  },\n  \"settings\": {\n    \"name\": \"settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\"\n      }\n    }\n  },\n  \"translate\": {\n    \"name\": \"translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z\\\"></path>\"\n      }\n    }\n  },\n  \"schedule_send\": {\n    \"name\": \"schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,10c0.1,0,0.19,0.01,0.28,0.01L3,4v6l8,2l-8,2v6l7-2.95c0-0.02,0-0.03,0-0.05C10,13.14,13.14,10,17,10z\\\"></path><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_repeat\": {\n    \"name\": \"event_repeat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12V4h-3V2h-2v2H8V2H6v2H3v18h9v-2H5V10h14v2H21z M15.64,20c0.43,1.45,1.77,2.5,3.36,2.5c1.93,0,3.5-1.57,3.5-3.5 s-1.57-3.5-3.5-3.5c-0.95,0-1.82,0.38-2.45,1l1.45,0V18h-4v-4h1.5l0,1.43C16.4,14.55,17.64,14,19,14c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-2.42,0-4.44-1.72-4.9-4L15.64,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,10.5V4h-3V2h-1.5v2h-5V2H6v2H3v14h7.5v-1.5h-6V9h11v1.5H17z M12,12h1l0,1.35c0.73-0.83,1.81-1.35,3-1.35 c2.21,0,4,1.79,4,4c0,2.21-1.79,4-4,4c-2.04,0-3.72-1.53-3.97-3.5l1.01,0C13.28,17.92,14.51,19,16,19c1.66,0,3-1.34,3-3 s-1.34-3-3-3c-0.89,0-1.69,0.39-2.24,1L15,14v1h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"donut_small\": {\n    \"name\": \"donut_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 9.18c.85.3 1.51.97 1.82 1.82h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13zm-2 5.64C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-7.13zM14.82 13c-.3.85-.97 1.51-1.82 1.82v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13z\\\"></path>\"\n      }\n    }\n  },\n  \"pending\": {\n    \"name\": \"pending\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M7,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6.5,11c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,10.55,7.05,11,6.5,11z M10,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11,10.55,10.55,11,10,11z M13.5,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.5,10.55,14.05,11,13.5,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"description\": {\n    \"name\": \"description\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 2H4v20h16V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z\\\"></path>\"\n      }\n    }\n  },\n  \"card_travel\": {\n    \"name\": \"card_travel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6h-5V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H2v15h20V6zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down_off_alt\": {\n    \"name\": \"thumb_down_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"4\\\" x=\\\"19\\\" y=\\\"3\\\"></rect><path d=\\\"M1,11.6V16h8.31l-1.12,5.38L9.83,23L17,15.82V3H4.69L1,11.6z M15,5v9.99l-4.34,4.35l0.61-2.93l0.5-2.41H9.31H3v-1.99 L6.01,5H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_contact_calendar\": {\n    \"name\": \"perm_contact_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-9 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z\\\"></path>\"\n      }\n    }\n  },\n  \"try\": {\n    \"name\": \"try\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M22,2H2v20l4-4h16V2z M13.57,11.57L12,15l-1.57-3.43L7,10l3.43-1.57L12,5l1.57,3.43L17,10L13.57,11.57z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_task\": {\n    \"name\": \"add_task\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z\\\"></path>\"\n      }\n    }\n  },\n  \"private_connectivity\": {\n    \"name\": \"private_connectivity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.93,11c-0.49-3.39-3.4-6-6.93-6s-6.44,2.61-6.93,6H2v2h3.07c0.49,3.39,3.4,6,6.93,6s6.44-2.61,6.93-6H22v-2H18.93z M15,10.5v5H9v-5h1v-1c0-1.21,1.08-2.18,2.34-1.97C13.32,7.69,14,8.61,14,9.61l0,0.89H15z M12.75,13c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S12.75,12.59,12.75,13z M13,9.5v1h-2v-1c0-0.55,0.45-1,1-1S13,8.95,13,9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.45,9.25C15.08,6.57,12.78,4.5,10,4.5S4.92,6.57,4.55,9.25H2v1.5h2.55C4.92,13.43,7.22,15.5,10,15.5s5.08-2.07,5.45-4.75 H18v-1.5H15.45z M12.5,8.5v4h-5v-4h1V8c0-0.82,0.67-1.5,1.5-1.5s1.5,0.68,1.5,1.5v0.5H12.5z M10.75,8v0.5h-1.5V8 c0-0.41,0.34-0.75,0.75-0.75S10.75,7.59,10.75,8z M9.4,10.5c0-0.33,0.27-0.6,0.6-0.6s0.6,0.27,0.6,0.6c0,0.33-0.27,0.6-0.6,0.6 S9.4,10.83,9.4,10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"visibility\": {\n    \"name\": \"visibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"https\": {\n    \"name\": \"https\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"code\": {\n    \"name\": \"code\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_circle\": {\n    \"name\": \"account_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 4c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm0 14c-2.03 0-4.43-.82-6.14-2.88C7.55 15.8 9.68 15 12 15s4.45.8 6.14 2.12C16.43 19.18 14.03 20 12 20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 3.5c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 11c-2.05 0-3.87-.95-5.07-2.44 1.45-.98 3.19-1.56 5.07-1.56s3.62.58 5.07 1.56c-1.2 1.49-3.02 2.44-5.07 2.44z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"delete_forever\": {\n    \"name\": \"delete_forever\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 21h12V7H6v14zm2.46-9.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_circle_down\": {\n    \"name\": \"arrow_circle_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7h-1v3H7l3,3l3-3H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"loyalty\": {\n    \"name\": \"loyalty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.83 2H2v9.83l10.99 11s1.05-1.05 1.41-1.42L22.82 13 11.83 2zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zM13 19.54l-4.27-4.27C8.28 14.81 8 14.19 8 13.5c0-1.38 1.12-2.5 2.5-2.5.69 0 1.32.28 1.77.74l.73.72.73-.73c.45-.45 1.08-.73 1.77-.73 1.38 0 2.5 1.12 2.5 2.5 0 .69-.28 1.32-.73 1.77L13 19.54z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_accounts\": {\n    \"name\": \"manage_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10.67,13.02C10.45,13.01,10.23,13,10,13c-2.42,0-4.68,0.67-6.61,1.82C2.51,15.34,2,16.32,2,17.35V20h9.26 C10.47,18.87,10,17.49,10,16C10,14.93,10.25,13.93,10.67,13.02z\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M20.75,16c0-0.22-0.03-0.42-0.06-0.63l1.14-1.01l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L18,11h-2l-0.3,1.49 c-0.4,0.15-0.76,0.36-1.08,0.63l-1.45-0.49l-1,1.73l1.14,1.01c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-1.14,1.01 l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L16,21h2l0.3-1.49c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1.01 C20.72,16.42,20.75,16.22,20.75,16z M17,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S18.1,18,17,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_protected_setup\": {\n    \"name\": \"wifi_protected_setup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z\\\"></path></g><g><path d=\\\"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15,4H9v6l1.8-1.8c1.22,0.91,2.01,2.35,2.01,3.99c0,0.75-0.18,1.45-0.47,2.09c1.49-0.98,2.47-2.67,2.47-4.59 c0-1.52-0.62-2.89-1.61-3.89L15,4z\\\"></path></g><g><path d=\\\"M7.19,7.84c0-0.75,0.18-1.45,0.47-2.09c-1.49,0.98-2.47,2.67-2.47,4.59c0,1.52,0.62,2.89,1.61,3.89L5,16h6v-5.97 l-1.8,1.8C7.99,10.91,7.19,9.47,7.19,7.84z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"not_started\": {\n    \"name\": \"not_started\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M11,16H9V8h2V16z M12,16V8l5,4L12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M9,13H8V7h1V13z M10,13V7l4,3L10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"join_inner\": {\n    \"name\": \"join_inner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><g><path d=\\\"M9.04,16.87C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5c0.36,0,0.71,0.05,1.04,0.13 c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C9.92,17.99,9.43,17.43,9.04,16.87z\\\"></path></g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M6.5,14c-2.21,0-4-1.79-4-4s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18 C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"highlight_alt\": {\n    \"name\": \"highlight_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,5h-2V3h2V5z M19,3v2h2V3H19z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2v-2h-2V21z M7,5h2V3H7V5z M3,5h2V3H3V5z M3,17h2v-2H3V17z M3,21h2v-2H3V21z M11,5h2V3h-2V5z M3,9h2V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M15,15v6l2.29-2.29L19.59,21 L21,19.59l-2.29-2.29L21,15H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rule\": {\n    \"name\": \"rule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"maximize\": {\n    \"name\": \"maximize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h18v2H3V3z\\\"></path>\"\n      }\n    }\n  },\n  \"payment\": {\n    \"name\": \"payment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2v16h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_indicator\": {\n    \"name\": \"drag_indicator\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"event_seat\": {\n    \"name\": \"event_seat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 21h3v-3h10v3h3v-6H4v6zm15-11h3v3h-3v-3zM2 10h3v3H2v-3zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"browse_gallery\": {\n    \"name\": \"browse_gallery\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9S13.97,3,9,3z M11.79,16.21L8,12.41V7h2v4.59l3.21,3.21L11.79,16.21z\\\"></path><path d=\\\"M17.99,3.52v2.16C20.36,6.8,22,9.21,22,12c0,2.79-1.64,5.2-4.01,6.32v2.16C21.48,19.24,24,15.91,24,12 C24,8.09,21.48,4.76,17.99,3.52z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,3.08V4.6c2.56,0.47,4.5,2.71,4.5,5.4s-1.94,4.93-4.5,5.4v1.52c3.39-0.49,6-3.39,6-6.92C20,6.47,17.39,3.57,14,3.08z\\\"></path><path d=\\\"M7,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C14,6.13,10.87,3,7,3z M9.08,12.83L6.25,10V6h1.5v3.38l2.39,2.39 L9.08,12.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"list\": {\n    \"name\": \"list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z\\\"></path>\"\n      }\n    }\n  },\n  \"output\": {\n    \"name\": \"output\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17,17 22,12 17,7 15.59,8.41 18.17,11 9,11 9,13 18.17,13 15.59,15.59\\\"></polygon><polygon points=\\\"19,19 5,19 5,5 19,5 19,7 21,7 21,3 3,3 3,21 21,21 21,17 19,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14,14 18,10 14,6 12.94,7.06 15.13,9.25 8,9.25 8,10.75 15.13,10.75 12.94,12.94\\\"></polygon><polygon points=\\\"15.5,15.5 4.5,15.5 4.5,4.5 15.5,4.5 15.5,6 17,6 17,3 3,3 3,17 17,17 17,14 15.5,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"touch_app\": {\n    \"name\": \"touch_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.25,9.24V5.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v3.74c1.21-0.81,2-2.18,2-3.74c0-2.49-2.01-4.5-4.5-4.5 s-4.5,2.01-4.5,4.5C6.25,7.06,7.04,8.43,8.25,9.24z M13.33,11.5h-1.08v-6c0-0.83-0.67-1.5-1.5-1.5s-1.5,0.67-1.5,1.5v10.74 l-4.04-0.85L4,16.62L9.38,22h8.67l1.07-7.62L13.33,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"donut_large\": {\n    \"name\": \"donut_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"troubleshoot\": {\n    \"name\": \"troubleshoot\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,20.59l-4.69-4.69C18.37,14.55,19,12.85,19,11c0-4.42-3.58-8-8-8c-4.08,0-7.44,3.05-7.93,7h2.02C5.57,7.17,8.03,5,11,5 c3.31,0,6,2.69,6,6s-2.69,6-6,6c-2.42,0-4.5-1.44-5.45-3.5H3.4C4.45,16.69,7.46,19,11,19c1.85,0,3.55-0.63,4.9-1.69L20.59,22 L22,20.59z\\\"></path><polygon points=\\\"8.43,9.69 9.65,15 11.29,15 12.55,11.22 13.5,13.5 15.5,13.5 15.5,12 14.5,12 13.25,9 11.71,9 10.59,12.37 9.35,7 7.7,7 6.45,11 1,11 1,12.5 7.55,12.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.01,16.94l-4.27-4.27C14.53,11.65,15,10.38,15,9c0-3.31-2.69-6-6-6C6.03,3,3.57,5.16,3.09,8h1.53 C5.08,6,6.86,4.5,9,4.5c2.48,0,4.5,2.02,4.5,4.5s-2.02,4.5-4.5,4.5c-1.76,0-3.27-1.02-4.01-2.5H3.35c0.82,2.33,3.04,4,5.65,4 c1.39,0,2.66-0.48,3.68-1.27L16.95,18L18.01,16.94z\\\"></path><polygon points=\\\"7,7.56 8.11,12 9.36,12 10.29,9.2 11.19,11 12.5,11 12.5,10 11.81,10 10.81,8 9.64,8 8.78,10.57 7.64,6 6.36,6 5.61,9 1,9 1,10 6.39,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"terminal\": {\n    \"name\": \"terminal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,4v16h20V4H2z M20,18H4V8h16V18z M18,17h-6v-2h6V17z M7.5,17l-1.41-1.41L8.67,13l-2.59-2.59L7.5,9l4,4L7.5,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,4H2v12h16V4z M3.5,14.5V7h13v7.5H3.5z M15,13.5h-5V12h5V13.5z M6.25,13.5l-1.06-1.06l1.69-1.69L5.19,9.06L6.25,8 L9,10.75L6.25,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_bluetooth\": {\n    \"name\": \"settings_bluetooth\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"group_work\": {\n    \"name\": \"group_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM9.5 8c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5S9.5 9.38 9.5 8zm6.5 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_accounts\": {\n    \"name\": \"no_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.18,10.94c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6c-0.52,0-1,0.12-1.44,0.32L15.18,10.94z\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,15c-2.32,0-4.45,0.8-6.14,2.12 C4.7,15.73,4,13.95,4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2C13.17,15.05,12.59,15,12,15z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"offline_bolt\": {\n    \"name\": \"offline_bolt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z\\\"></path>\"\n      }\n    }\n  },\n  \"integration_instructions\": {\n    \"name\": \"integration_instructions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><path d=\\\"M21,3h-6.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H3v18h18V3z M11,14.17l-1.41,1.42L6,12l3.59-3.59L11,9.83L8.83,12 L11,14.17z M12,4.25c-0.41,0-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75s0.75,0.34,0.75,0.75S12.41,4.25,12,4.25z M14.41,15.59 L13,14.17L15.17,12L13,9.83l1.41-1.42L18,12L14.41,15.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"currency_exchange\": {\n    \"name\": \"currency_exchange\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67 C15.39,8.03,14.72,6.56,13,6.24V5h-2v1.26C8.52,6.82,8.51,9.12,8.51,9.22c0,2.27,2.25,2.91,3.35,3.31 c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75c0.63,2.19,2.28,2.78,2.9,2.96V19 h2v-1.24c0.4-0.09,2.9-0.59,2.9-3.22C15.9,13.15,15.29,11.93,12.89,11.1z M3,21H1v-6h6v2l-2.48,0c1.61,2.41,4.36,4,7.48,4 c4.97,0,9-4.03,9-9h2c0,6.08-4.92,11-11,11c-3.72,0-7.01-1.85-9-4.67L3,21z M1,12C1,5.92,5.92,1,12,1c3.72,0,7.01,1.85,9,4.67L21,3 h2v6h-6V7l2.48,0C17.87,4.59,15.12,3,12,3c-4.97,0-9,4.03-9,9H1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.06,12c0,2.06-1.96,2.46-2.37,2.53v0.98H9.31v-1.02c-0.58-0.14-1.88-0.61-2.37-2.33l1.3-0.53 c0.05,0.17,0.46,1.64,1.89,1.64c0.73,0,1.56-0.37,1.56-1.26c0-0.76-0.55-1.15-1.79-1.59c-0.86-0.31-2.63-0.81-2.63-2.6 c0-0.08,0.01-1.89,2.06-2.33V4.5h1.38v0.98c1.45,0.25,1.98,1.4,2.09,1.75l-1.24,0.53c-0.09-0.28-0.47-1.05-1.49-1.05 c-0.55,0-1.42,0.29-1.42,1.09c0,0.74,0.67,1.03,2.07,1.5C12.58,9.94,13.06,10.9,13.06,12z M6,14l0-1.5l-5,0l0,5l1.5,0l0-2.52 C4.11,17.4,6.87,19,10,19c4.97,0,9-4.03,9-9h-1.5c0,4.14-3.36,7.5-7.5,7.5c-2.67,0-5.02-1.4-6.35-3.5L6,14z M17.5,5.02 C15.89,2.6,13.13,1,10,1c-4.97,0-9,4.03-9,9h1.5c0-4.14,3.36-7.5,7.5-7.5c2.67,0,5.02,1.4,6.35,3.5L14,6v1.5h5v-5h-1.5L17.5,5.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm_add\": {\n    \"name\": \"alarm_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"restore\": {\n    \"name\": \"restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\\\"></path>\"\n      }\n    }\n  },\n  \"search_off\": {\n    \"name\": \"search_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z\\\"></path><polygon points=\\\"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,11.29c0.62-0.77,1-1.73,1-2.79C13,6.01,10.99,4,8.5,4C6.19,4,4.3,5.75,4.05,8h1C5.29,6.31,6.74,5,8.5,5 C10.43,5,12,6.57,12,8.5S10.43,12,8.5,12c-0.17,0-0.34-0.03-0.5-0.05v1C8.17,12.97,8.33,13,8.5,13c1.06,0,2.02-0.38,2.79-1 l3.57,3.57l0.71-0.71L12,11.29z\\\"></path><polygon points=\\\"5.91,9.38 4.5,10.79 3.09,9.38 2.38,10.09 3.79,11.5 2.38,12.91 3.09,13.62 4.5,12.21 5.91,13.62 6.62,12.91 5.21,11.5 6.62,10.09\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"not_accessible\": {\n    \"name\": \"not_accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,2,12,2z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1 c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M21.19,21.19L2.81,2.81 L1.39,4.22L10,12.83V17h4.17l5.61,5.61L21.19,21.19z M19,11c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05c1.29,1.07,3.25,1.94,5,1.95 V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.95,14h1c-0.24,1.69-1.69,3-3.45,3C6.57,17,5,15.43,5,13.5c0-1.76,1.31-3.21,3-3.45v1c-1.14,0.23-2,1.24-2,2.45 C6,14.88,7.12,16,8.5,16C9.71,16,10.72,15.14,10.95,14z M8.5,4.5C8.5,5.33,9.17,6,10,6s1.5-0.67,1.5-1.5S10.83,3,10,3 S8.5,3.67,8.5,4.5z M11,8.96l0.47,0.43c0.17,0.16,0.35,0.3,0.53,0.43c0.77,0.57,1.68,0.89,2.66,0.89v-1 c-0.94,0-1.81-0.36-2.49-1.04L12,8.52l-1.15-1.05c0,0-0.49-0.47-0.85-0.47C9.57,7,9.21,7.28,9.07,7.66L11,9.59V8.96z M16.36,16.36 L3.64,3.64L2.93,4.34L9,10.41V13h2.59l4.07,4.07L16.36,16.36z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shopping_cart\": {\n    \"name\": \"shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 18c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm0-3l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21.7 4H5.21l-.94-2H1v2h2l3.6 7.59L3.62 17H19v-2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_control_off\": {\n    \"name\": \"noise_control_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c1.44,0,2.79,0.38,3.95,1.05l1.45-1.45C15.85,2.59,13.99,2,12,2S8.15,2.59,6.59,3.59l1.45,1.45 C9.21,4.38,10.56,4,12,4z\\\"></path><path d=\\\"M20,12c0,1.44-0.38,2.79-1.05,3.95l1.45,1.45C21.41,15.85,22,13.99,22,12s-0.59-3.85-1.59-5.41l-1.45,1.45 C19.62,9.21,20,10.56,20,12z\\\"></path><path d=\\\"M12,20c-1.44,0-2.79-0.38-3.95-1.05l-1.45,1.45C8.15,21.41,10.01,22,12,22s3.85-0.59,5.41-1.59l-1.45-1.45 C14.79,19.62,13.44,20,12,20z\\\"></path><path d=\\\"M4,12c0-1.44,0.38-2.79,1.05-3.95L3.59,6.59C2.59,8.15,2,10.01,2,12s0.59,3.85,1.59,5.41l1.45-1.45 C4.38,14.79,4,13.44,4,12z\\\"></path><path d=\\\"M11.5,6C9.02,6,7,8.02,7,10.5c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82 C10.56,17.17,11.71,18,13,18c1.65,0,3-1.35,3-3h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61 l-1.36-1.36C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02C15.72,7.75,13.81,6,11.5,6z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M3.39,5.51C2.51,6.79,2,8.34,2,10s0.51,3.21,1.39,4.49l1.09-1.09C3.86,12.41,3.5,11.25,3.5,10s0.36-2.41,0.97-3.41 L3.39,5.51z\\\"></path><path d=\\\"M16.61,5.51l-1.09,1.09C16.14,7.59,16.5,8.75,16.5,10s-0.36,2.41-0.97,3.41l1.09,1.09C17.49,13.21,18,11.66,18,10 S17.49,6.79,16.61,5.51z\\\"></path><path d=\\\"M10,16.5c-1.25,0-2.41-0.36-3.41-0.97l-1.09,1.09C6.79,17.49,8.34,18,10,18s3.21-0.51,4.49-1.39l-1.09-1.09 C12.41,16.14,11.25,16.5,10,16.5z\\\"></path><path d=\\\"M5.51,3.39l1.09,1.09C7.59,3.86,8.75,3.5,10,3.5s2.41,0.36,3.41,0.97l1.09-1.09C13.21,2.51,11.66,2,10,2 S6.79,2.51,5.51,3.39z\\\"></path><path d=\\\"M9.75,5C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62 C8.8,14.22,9.63,15,10.75,15c1.24,0,2.25-1.01,2.25-2.25h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58 c-0.22-0.9-0.77-1.7-1.69-2.44c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56 C13.08,6.29,11.56,5,9.75,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shop_2\": {\n    \"name\": \"shop_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"3,9 1,9 1,22 19,22 19,20 3,20\\\"></polygon><path d=\\\"M18,5V1h-8v4H5v13h18V5H18z M12,3h4v2h-4V3z M12,15V8l5.5,3.5L12,15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"2.5,7 1,7 1,18 16,18 16,16.5 2.5,16.5\\\"></polygon><path d=\\\"M15,4V1H8v3H4v11h15V4H15z M9.5,2.5h4V4h-4V2.5z M10,12.5v-6l4.5,3L10,12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_home\": {\n    \"name\": \"add_home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M18,11c0.7,0,1.37,0.1,2,0.29V9l-8-6L4,9v12h7.68C11.25,20.09,11,19.08,11,18C11,14.13,14.13,11,18,11z\\\"></path></g><g><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15,9.5c0.34,0,0.68,0.04,1,0.1V7.5L10,3L4,7.5V17h5.88c-0.24-0.62-0.38-1.29-0.38-2C9.5,11.96,11.96,9.5,15,9.5z\\\"></path></g><g><path d=\\\"M15,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C19,12.79,17.21,11,15,11z M17,15.5h-1.5V17h-1v-1.5H13v-1h1.5 V13h1v1.5H17V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"task_alt\": {\n    \"name\": \"task_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M19.79,10.22C19.92,10.79,20,11.39,20,12 c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8c1.58,0,3.04,0.46,4.28,1.25l1.44-1.44C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12 c0,5.52,4.48,10,10,10s10-4.48,10-10c0-1.19-0.22-2.33-0.6-3.39L19.79,10.22z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_open\": {\n    \"name\": \"lock_open\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19C9.51.74 7 3.08 7 6h2c0-1.13.6-2.24 1.64-2.7C12.85 2.31 15 3.9 15 6v2H4v14h16V8zm-2 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"density_large\": {\n    \"name\": \"density_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"date_range\": {\n    \"name\": \"date_range\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm4-7h-3V2h-2v2H8V2H6v2H3v18h18V4zm-2 16H5V9h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down\": {\n    \"name\": \"swipe_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.8,12.18c-0.2-0.86-0.3-1.76-0.3-2.68c0-2.84,0.99-5.45,2.63-7.5L7.2,3.07C5.82,4.85,5,7.08,5,9.5 c0,0.88,0.11,1.74,0.32,2.56l1.62-1.62L8,11.5L4.5,15L1,11.5l1.06-1.06L3.8,12.18z\\\"></path><path d=\\\"M21.71,11.18l2.09,7.39l-8.23,3.65l-6.84-2.85l0.61-1.62l3.8-0.75L8.79,7.17c-0.34-0.76,0-1.64,0.76-1.98 c0.76-0.34,1.64,0,1.98,0.76l2.43,5.49l1.26-0.56L21.71,11.18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.02,8.84L12.5,9.52l-1.92-4.34c-0.28-0.63-1.02-0.92-1.65-0.64l0,0C8.29,4.82,8.01,5.56,8.29,6.19l3.54,8l-3.15,0.3 l-0.51,1.32l5.28,2.04l6.55-2.9l-1.52-5.89L14.02,8.84z M4.4,10.51l1.54-1.54l0.71,0.71L3.83,12.5L1,9.67l0.71-0.71l1.69,1.69 C3.14,9.82,3,8.93,3,8c0-2.31,0.87-4.41,2.29-6L6,2.71C4.75,4.12,4,5.97,4,8C4,8.88,4.14,9.72,4.4,10.51z\\\"></path></g>\"\n      }\n    }\n  },\n  \"extension\": {\n    \"name\": \"extension\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.36 11H19V5h-6V3.64c0-1.31-.94-2.5-2.24-2.63C9.26.86 8 2.03 8 3.5V5H2.01v5.8H3.4c1.31 0 2.5.88 2.75 2.16.33 1.72-.98 3.24-2.65 3.24H2V22h5.8v-1.4c0-1.31.88-2.5 2.16-2.75 1.72-.33 3.24.98 3.24 2.65V22H19v-6h1.5c1.47 0 2.64-1.26 2.49-2.76-.13-1.3-1.33-2.24-2.63-2.24z\\\"></path>\"\n      }\n    }\n  },\n  \"android\": {\n    \"name\": \"android\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g></g><g><path d=\\\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_remove\": {\n    \"name\": \"bookmark_remove\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,7h-6V5h6V7z M19,10.9c-0.64,0.13-1.32,0.14-2.02,0c-1.91-0.38-3.47-1.92-3.87-3.83C12.79,5.54,13.18,4.1,14,3L5,3v18 l7-3l7,3V10.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.75,4.25v1.5h4.5v-1.5H12.75z M11,5c0,2.21,1.79,4,4,4v8l-5-2l-5,2V3l6.54,0C11.19,3.59,11,4.27,11,5z\\\"></path>\"\n      }\n    }\n  },\n  \"open_with\": {\n    \"name\": \"open_with\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_data_setting\": {\n    \"name\": \"perm_data_setting\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49s.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_sidebar\": {\n    \"name\": \"view_sidebar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,20H2V4h14V20z M18,8h4V4h-4V8z M18,20h4v-4h-4V20z M18,14h4v-4h-4V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,7.33h-3V4h3V7.33z M17,12.67h-3V16h3V12.67z M17,8.33h-3v3.33h3V8.33z M13,4H3v12h10V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"article\": {\n    \"name\": \"article\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,3v18h18V3H3z M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label\": {\n    \"name\": \"label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.03 5L3 5.01v13.98l14.03.01L22 12l-4.97-7z\\\"></path>\"\n      }\n    }\n  },\n  \"important_devices\": {\n    \"name\": \"important_devices\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M24 11.01L17 11v11h7V11.01zM23 20h-5v-7h5v7zM22 2H0v16h9v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V2zM11.97 9L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"fingerprint\": {\n    \"name\": \"fingerprint\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z\\\"></path>\"\n      }\n    }\n  },\n  \"label_important_outline\": {\n    \"name\": \"label_important_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.03 19H3l4.5-7L3 5h13.03L21 12l-4.97 7zM6.5 17H15l3.5-5L15 7H6.5l3.5 5-3.5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_up_off_alt\": {\n    \"name\": \"thumb_up_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.17,1L7,8.18V21h12.31L23,12.4V8h-8.31l1.12-5.38L14.17,1z M1,9h4v12H1V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"logout\": {\n    \"name\": \"logout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"5,5 12,5 12,3 3,3 3,21 12,21 12,19 5,19\\\"></polygon><polygon points=\\\"21,12 17,8 17,11 9,11 9,13 17,13 17,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"work_outline\": {\n    \"name\": \"work_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6V4h-4v2h4zM4 8v11h16V8H4zm18-2v15H2.01V6H8V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v2h6z\\\"></path>\"\n      }\n    }\n  },\n  \"unpublished\": {\n    \"name\": \"unpublished\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66 l2.27,2.27L21.19,21.19z M10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18l1.41,1.41L10.59,16.6z M13.59,10.76l-7.1-7.1 C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-5.34-5.34l2.65-2.65l-1.41-1.41L13.59,10.76z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors_off\": {\n    \"name\": \"sensors_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.14,10.96C8.05,11.29,8,11.64,8,12c0,1.1,0.45,2.1,1.17,2.83l-1.42,1.42C6.67,15.16,6,13.66,6,12 c0-0.93,0.21-1.8,0.58-2.59L5.11,7.94C4.4,9.13,4,10.52,4,12c0,2.21,0.9,4.21,2.35,5.65l-1.42,1.42C3.12,17.26,2,14.76,2,12 c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L8.14,10.96z M17.42,14.59C17.79,13.8,18,12.93,18,12 c0-1.66-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12c0,0.36-0.05,0.71-0.14,1.04L17.42,14.59z M20,12 c0,1.48-0.4,2.87-1.11,4.06l1.45,1.45C21.39,15.93,22,14.04,22,12c0-2.76-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.71,8.84C6.58,9.2,6.5,9.59,6.5,10c0,0.96,0.39,1.84,1.03,2.47l-1.06,1.06C5.56,12.63,5,11.38,5,10 c0-0.83,0.22-1.61,0.58-2.3L4.47,6.59C3.86,7.59,3.5,8.75,3.5,10c0,1.79,0.73,3.42,1.91,4.59l-1.06,1.06C2.9,14.21,2,12.21,2,10 c0-1.67,0.51-3.21,1.38-4.5L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L6.71,8.84z M14.59,5.41l1.06-1.06C17.1,5.79,18,7.79,18,10 c0,1.67-0.51,3.22-1.38,4.5l-1.09-1.09c0.61-0.99,0.97-2.16,0.97-3.41C16.5,8.21,15.77,6.58,14.59,5.41z M12.47,7.53l1.06-1.06 C14.44,7.37,15,8.62,15,10c0,0.83-0.2,1.62-0.57,2.31l-1.14-1.14c0.13-0.37,0.2-0.76,0.2-1.18C13.5,9.04,13.11,8.16,12.47,7.53z\\\"></path>\"\n      }\n    }\n  },\n  \"send_and_archive\": {\n    \"name\": \"send_and_archive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M17,10c0.1,0,0.19,0.01,0.28,0.01L3,4v6l8,2l-8,2v6l7-2.95c0-0.02,0-0.03,0-0.05C10,13.13,13.13,10,17,10z\\\"></path></g><g><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M17,20l-3-3h2.5v-3h1v3H20L17,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M14,8.5c0.1,0,0.19,0.01,0.29,0.01L3,4v4l6,2l-6,2v4l5.51-2.2C8.62,10.85,11.03,8.5,14,8.5z\\\"></path></g><g><path d=\\\"M14,10c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,11.79,16.21,10,14,10z M14,16l-2-2h1.5v-2h1v2H16L14,16z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"network_ping\": {\n    \"name\": \"network_ping\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15-5.15C18.91,10.95,19.2,11,19.5,11c1.38,0,2.5-1.12,2.5-2.5 S20.88,6,19.5,6S17,7.12,17,8.5c0,0.35,0.07,0.67,0.2,0.97L12,14.67z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4,13l0,1.5h12V13h-5l4.18-4.18C15.43,8.94,15.71,9,16,9c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.26,0.05,0.51,0.14,0.74L10,11.88L3.06,4.94L2,6l7,7H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_as_unread\": {\n    \"name\": \"mark_as_unread\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"16.23,7 20.35,7 10.5,2 2,6.21 2,17 4,17 4,7.4 10.5,4\\\"></polygon><path d=\\\"M5,8v13h17V8H5z M20,12l-6.5,3.33L7,12v-2l6.5,3.33L20,10V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><polygon points=\\\"12.5,5.5 16.08,5.5 8.5,2 2,5 2,14 3.5,14 3.5,5.96 8.5,3.65\\\"></polygon><path d=\\\"M18,7H5v10h13V7z M16.5,10.22l-5,2.78l-5-2.78V8.5l5,2.78l5-2.78V10.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bug_report\": {\n    \"name\": \"bug_report\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle_outline\": {\n    \"name\": \"check_circle_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"savings\": {\n    \"name\": \"savings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.83,7.5l-2.27-2.27c0.07-0.42,0.18-0.81,0.32-1.15c0.23-0.56,0.56-1.06,0.97-1.5C18.15,2.21,17.35,2,16.5,2 c-1.64,0-3.09,0.79-4,2l-5,0C4.46,4,2,6.46,2,9.5S4.5,21,4.5,21l5.5,0v-2h2v2l5.5,0l1.68-5.59L22,14.47V7.5H19.83z M13,9H8V7h5V9z M16,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,10.55,16.55,11,16,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,6.5l-2-2c0.06-0.36,0.21-0.71,0.38-1.02c0.23-0.43,0.55-0.8,0.95-1.1C15.27,2.14,14.55,2,14,2 c-2.17,0-3.35,1.5-3.35,1.5H6.5C4.05,3.5,2,5.47,2,8c0,2.33,2,9,2,9h4.5v-1.5H10V17h4.5l1.25-4.5L18,12V6.5H16.5z M11,7.5H7V6h4V7.5 z M13.25,9c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25C14,8.66,13.66,9,13.25,9z M15.82,2.38 C15.27,2.14,14.65,2,14,2c-2.17,0-3.35,1.5-3.35,1.5\\\"></path>\"\n      }\n    }\n  },\n  \"commit\": {\n    \"name\": \"commit\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.9,11L16.9,11c-0.46-2.28-2.48-4-4.9-4s-4.44,1.72-4.9,4h0H2v2h5.1h0c0.46,2.28,2.48,4,4.9,4s4.44-1.72,4.9-4h0H22v-2 H16.9z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,15,12,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.93,9.25C13.58,7.4,11.95,6,10,6S6.42,7.4,6.07,9.25H2v1.5h4.07C6.42,12.6,8.05,14,10,14s3.58-1.4,3.93-3.25H18v-1.5 H13.93z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history\": {\n    \"name\": \"history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.29-3.52-2.09V8H12z\\\"></path>\"\n      }\n    }\n  },\n  \"assured_workload\": {\n    \"name\": \"assured_workload\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"10\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><polygon points=\\\"22,6 12,1 2,6 2,8 22,8\\\"></polygon><path d=\\\"M2,19v2h12.4c-0.21-0.64-0.32-1.31-0.36-2H2z\\\"></path><polygon points=\\\"19,12.26 19,10 17,10 17,13.26\\\"></polygon><path d=\\\"M20,14l-4,2v2.55c0,2.52,1.71,4.88,4,5.45c2.29-0.57,4-2.93,4-5.45V16L20,14z M19.28,21l-2.03-2.03l1.06-1.06l0.97,0.97 l2.41-2.38l1.06,1.06L19.28,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><polygon points=\\\"18,5 10,1 2,5 2,7 18,7\\\"></polygon><path d=\\\"M12.5,15.5H2V17h10.66C12.61,16.78,12.5,16.29,12.5,15.5z\\\"></path><polygon points=\\\"16,10.82 16,8 14.5,8 14.5,11.57\\\"></polygon><path d=\\\"M17,12l-3,1.5v2.14c0,2.02,1.28,3.91,3,4.36c1.72-0.46,3-2.35,3-4.36V13.5L17,12z M16.43,17.5l-1.55-1.54l0.71-0.71 l0.82,0.81L18.39,14l0.73,0.68L16.43,17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_identity\": {\n    \"name\": \"perm_identity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"install_desktop\": {\n    \"name\": \"install_desktop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,17 4,17 4,5 12,5 12,3 2,3 2,19 8,19 8,21 16,21 16,19 22,19 22,14 20,14\\\"></polygon><polygon points=\\\"17,14 22,9 20.59,7.59 18,10.17 18,3 16,3 16,10.17 13.41,7.59 12,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"16.5,13.5 3.5,13.5 3.5,4.5 11,4.5 11,3 2,3 2,15 7,15 7,17 13,17 13,15 18,15 18,11 16.5,11\\\"></polygon><polygon points=\\\"14.48,11 18,7.48 16.94,6.42 15.25,8.11 15.25,3 13.75,3 13.75,8.14 12.06,6.45 11,7.52\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"production_quantity_limits\": {\n    \"name\": \"production_quantity_limits\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10h-2V8h2V10z M13,6h-2V1h2V6z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18 c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7 H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_basket\": {\n    \"name\": \"shopping_basket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.21 9l-4.39-6.57c-.4-.59-1.27-.59-1.66 0L6.77 9H.69L4 21h16.02l3.29-12h-6.1zm-5.22-4.21L14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"space_dashboard\": {\n    \"name\": \"space_dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,21H3V3h8V21z M13,21h8v-9h-8V21z M21,10V3h-8v7H21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,10H17v7h-6.25V10z M9.25,3H3v14h6.25V3z M17,8.5V3h-6.25v5.5H17z\\\"></path>\"\n      }\n    }\n  },\n  \"app_blocking\": {\n    \"name\": \"app_blocking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z\\\"></path><path d=\\\"M19,23v-6h-2v1H7V6h10v1h2V0.94L5,1v22H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cancel_schedule_send\": {\n    \"name\": \"cancel_schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11L1.01,3L1,10l9,2l-9,2l0.01,7l8.07-3.46C9.59,21.19,12.71,24,16.5,24 c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5s5.5,2.47,5.5,5.5S19.53,22,16.5,22 z\\\"></path><polygon points=\\\"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M2,12.31l6.91-1.48c-0.38,0.6-0.65,1.27-0.79,1.99l-0.51,0.2L2,15.47V12.31z M2,7.69V4.53l9.35,4.09 c-0.44,0.22-0.86,0.49-1.23,0.81L2,7.69z\\\"></path><path d=\\\"M3,6.06l3.7,1.62L3,6.88V6.06 M6.7,12.32L3,13.94v-0.83L6.7,12.32 M1,3v5.5L8,10l-7,1.5V17l7-3.06c0,0.02,0,0.04,0,0.06 c0,3.31,2.69,6,6,6s6-2.69,6-6s-2.69-6-6-6c-0.43,0-0.85,0.05-1.26,0.14L1,3L1,3z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 S16.76,19,14,19L14,19z\\\"></path></g><polygon points=\\\"15.41,11.88 14,13.29 12.59,11.88 11.88,12.59 13.29,14 11.88,15.41 12.59,16.12 14,14.71 15.41,16.12 16.12,15.41 14.71,14 16.12,12.59\\\"></polygon>\"\n      }\n    }\n  },\n  \"assignment_returned\": {\n    \"name\": \"assignment_returned\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_right_alt\": {\n    \"name\": \"arrow_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket_launch\": {\n    \"name\": \"rocket_launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.19,6.35c-2.04,2.29-3.44,5.58-3.57,5.89L2,10.69l4.81-4.81L9.19,6.35L9.19,6.35z M11.17,17c0,0,3.74-1.55,5.89-3.7 c5.4-5.4,4.5-9.62,4.21-10.57c-0.95-0.3-5.17-1.19-10.57,4.21C8.55,9.09,7,12.83,7,12.83L11.17,17z M17.65,14.81 c-2.29,2.04-5.58,3.44-5.89,3.57L13.31,22l4.81-4.81L17.65,14.81L17.65,14.81z M9,18c0,0.83-0.34,1.58-0.88,2.12 C6.94,21.3,2,22,2,22s0.7-4.94,1.88-6.12C4.42,15.34,5.17,15,6,15C7.66,15,9,16.34,9,18z M13,9c0-1.1,0.9-2,2-2s2,0.9,2,2 s-0.9,2-2,2S13,10.1,13,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.47,10.67c0.1-0.24,1.26-3,3.02-4.76c3.86-3.86,7.08-3.56,7.95-3.36c0.2,0.88,0.5,4.09-3.36,7.95 c-1.76,1.76-4.52,2.92-4.76,3.02L6.47,10.67z M12.5,9C13.32,9,14,8.33,14,7.5S13.33,6,12.5,6C11.68,6,11,6.67,11,7.5 S11.67,9,12.5,9z M8.52,5.48L6.31,5.2L2.25,9.27l3.28,1.09C6.01,9.18,7.05,7.07,8.52,5.48z M14.52,11.48l0.28,2.21l-4.07,4.07 l-1.09-3.28C10.82,13.99,12.93,12.95,14.52,11.48z M5.25,12.5c-0.62,0-1.18,0.25-1.59,0.66C2.44,14.38,2,18,2,18 s3.62-0.44,4.84-1.66c0.41-0.41,0.66-0.97,0.66-1.59C7.5,13.51,6.49,12.5,5.25,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"query_builder\": {\n    \"name\": \"query_builder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"new_label\": {\n    \"name\": \"new_label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,12l-4.97,7H12l0-2l0-4H9v-3H3V5h13.03L21,12z M10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,10l-4,5h-2.5v-4.5h-2v-2H4V5h9L17,10z M9,12H7v-2H5.5v2h-2v1.5h2v2H7v-2h2V12z\\\"></path>\"\n      }\n    }\n  },\n  \"exit_to_app\": {\n    \"name\": \"exit_to_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM21 3H3v6h2V5h14v14H5v-4H3v6h18V3z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_late\": {\n    \"name\": \"assignment_late\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-8 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down_alt\": {\n    \"name\": \"swipe_down_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,13.9c2.28-0.46,4-2.48,4-4.9c0-2.76-2.24-5-5-5S7,6.24,7,9c0,2.42,1.72,4.44,4,4.9v4.27l-1.59-1.59L8,18l4,4l4-4 l-1.41-1.41L13,18.17V13.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,11.93C12.6,11.58,14,9.95,14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,1.95,1.4,3.58,3.25,3.93l0,3.2l-1.19-1.19 L7,15l3,3l3-3l-1.06-1.06l-1.19,1.19L10.75,11.93z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_window\": {\n    \"name\": \"sensor_window\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,4v16H6V4H18 M4,2v20h16V2H4z M7,19h10v-6H7V19z M10,10h4v1h3V5H7v6h3V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,4v12H5V4H15 M4,3v14h12V3H4z M6,10v5h8v-5H6z M8.5,9V8h3v1H14V5H6v4H8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"energy_savings_leaf\": {\n    \"name\": \"energy_savings_leaf\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3c-4.8,0-9,3.86-9,9c0,2.12,0.74,4.07,1.97,5.61L3,19.59L4.41,21l1.97-1.97C7.93,20.26,9.88,21,12,21 c2.3,0,4.61-0.88,6.36-2.64C20.12,16.61,21,14.3,21,12V3H12z M10.5,17L10,16.5l2.5-3.5l-5-0.5l6-5.5L14,7.5L11.5,11l5,0.5L10.5,17 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.73,0-7,3-7,7c0,1.66,0.58,3.19,1.55,4.39L3,15.94L4.06,17l1.55-1.55C6.81,16.42,8.34,17,10,17 c1.79,0,3.58-0.68,4.95-2.05C16.32,13.58,17,11.79,17,10V3H10z M8.75,14l-0.5-0.5l2.15-2.75L6.5,10.5L11.25,6l0.5,0.5L9.6,9.25 l3.9,0.25L8.75,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane\": {\n    \"name\": \"propane\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.75,6L16,6V3H8v3L7.25,6C3.97,6,1.1,8.53,1,11.82C0.9,15.21,3.62,18,7,18v3h2v-3h6v3h2v-3c3.38,0,6.1-2.79,6-6.18 C22.9,8.53,20.03,6,16.75,6z M10,5h4v1h-4V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.79,5L13,5V2.5H7V5L6.21,5C3.6,5,1.27,6.91,1.02,9.51C0.74,12.49,3.08,15,6,15v2h1.5v-2h5v2H14v-2 c2.92,0,5.26-2.51,4.98-5.49C18.73,6.91,16.4,5,13.79,5z M8.5,4h3v1h-3V4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vertical_shades\": {\n    \"name\": \"vertical_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M10,19V5h4v14H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M8.5,4.5h3v11h-3V4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"curtains\": {\n    \"name\": \"curtains\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M8.19,12c2.04-1.35,3.5-3.94,3.76-7h0.09c0.26,3.06,1.72,5.65,3.76,7 c-2.04,1.35-3.5,3.94-3.76,7h-0.09C11.69,15.94,10.23,13.35,8.19,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M7.35,10C8.6,9.16,9.57,7.68,10,5.88c0.43,1.8,1.4,3.28,2.65,4.12 c-1.25,0.84-2.22,2.32-2.65,4.12C9.57,12.32,8.6,10.84,7.35,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"solar_power\": {\n    \"name\": \"solar_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"3.33,16 11,16 11,13 4,13\\\"></polygon><polygon points=\\\"13,16 20.67,16 20,13 13,13\\\"></polygon><polygon points=\\\"21.11,18 13,18 13,22 22,22\\\"></polygon><polygon points=\\\"2,22 11,22 11,18 2.89,18\\\"></polygon><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.2089 14.6085)\\\" width=\\\"2\\\" x=\\\"16.53\\\" y=\\\"6.06\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.448 6.7885)\\\" width=\\\"3\\\" x=\\\"4.97\\\" y=\\\"6.56\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"18\\\" y=\\\"2\\\"></rect><path d=\\\"M12,7c2.76,0,5-2.24,5-5H7C7,4.76,9.24,7,12,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"10.75,10 10.75,13.25 17.11,13.25 16.5,10\\\"></polygon><polygon points=\\\"2.89,13.25 9.25,13.25 9.25,10 3.5,10\\\"></polygon><polygon points=\\\"2,18 9.25,18 9.25,14.75 2.61,14.75\\\"></polygon><polygon points=\\\"17.39,14.75 10.75,14.75 10.75,18 18,18\\\"></polygon><rect height=\\\"2\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.3314 12.1139)\\\" width=\\\"1.5\\\" x=\\\"13.71\\\" y=\\\"5.46\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9423 5.8107)\\\" width=\\\"2\\\" x=\\\"4.54\\\" y=\\\"5.71\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"2.05\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"2.05\\\"></rect><path d=\\\"M10,6c2.21,0,4-1.79,4-4H6C6,4.21,7.79,6,10,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"broadcast_on_home\": {\n    \"name\": \"broadcast_on_home\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,9.76V4H4v2h16v2.59C20.73,8.88,21.4,9.28,22,9.76z\\\"></path><path d=\\\"M9,9H2v11h7V9z M7,18H4v-7h3V18z\\\"></path><path d=\\\"M17.75,16.97c0.3-0.23,0.5-0.57,0.5-0.97c0-0.69-0.56-1.25-1.25-1.25s-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22 h1.5V16.97z\\\"></path><path d=\\\"M17,13.5c1.38,0,2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16c0-2.21-1.79-4-4-4 c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77C14.5,14.62,15.62,13.5,17,13.5z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,8.54V4H4v1.5h12.5v2.05C17.05,7.8,17.55,8.14,18,8.54z\\\"></path><path d=\\\"M7.5,7.5H2V16h5.5V7.5z M6,14.5H3.5V9H6V14.5z\\\"></path><path d=\\\"M14.5,13.85C14.79,13.67,15,13.37,15,13c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1V13.85z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,11c1.1,0,2,0.9,2,2c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22c0-1.66-1.34-3-3-3s-3,1.34-3,3 c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13C12,11.9,12.9,11,14,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane_tank\": {\n    \"name\": \"propane_tank\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,15v3c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4v-3H4z\\\"></path><path d=\\\"M20,13v-3c0-1.86-1.28-3.41-3-3.86V2H7v4.14c-1.72,0.45-3,2-3,3.86v3H20z M9,4h6v2h-2V5h-2v1H9V4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,12.25V15c0,1.66,1.34,3,3,3h6c1.66,0,3-1.34,3-3v-2.75H4z\\\"></path><path d=\\\"M16,10.75V8c0-1.3-0.84-2.4-2-2.82V2H6v3.18C4.84,5.6,4,6.7,4,8v2.75H16z M7.5,3.5h5V5h-1.75V4.25h-1.5V5H7.5V3.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"vertical_shades_closed\": {\n    \"name\": \"vertical_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M13,5h1.5v14H13V5z M11,19H9.5V5H11V19z M6,5h1.5v14H6V5z M16.5,19V5H18v14H16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M10.75,4.5h1.12v11h-1.12V4.5z M9.25,15.5H8.12v-11h1.12V15.5z M5.5,4.5h1.12v11H5.5 V4.5z M13.38,15.5v-11h1.12v11H13.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nest_cam_wired_stand\": {\n    \"name\": \"nest_cam_wired_stand\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,0.85L11.98,1.4C8.95,1.7,6.37,4,6.04,7.03c-0.39,3.57,2.2,6.69,5.68,7.04l1.9,0.19l-0.56,0.85 c-0.88-0.19-1.83-0.18-2.85,0.25C8.21,16.21,7,18.25,7,20.41L7,23h10v-3c0-1.67-0.83-3.15-2.09-4.06l0.97-1.45L18,14.72V0.85z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.72,1.47C7.02,1.79,5,4.06,5,6.75c0,2.69,2.02,4.96,4.72,5.28l1.37,0.17l-0.57,0.85C10.35,13.03,10.18,13,10,13 c-2.21,0-4,1.79-4,4v2h8v-2c0-1.48-0.81-2.76-2.01-3.45l0.76-1.13L15,12.7V0.8L9.72,1.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"blinds\": {\n    \"name\": \"blinds\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M16,9h2v2h-2V9z M14,11H6V9h8V11z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-6h8v1.82 c-0.45,0.32-0.75,0.84-0.75,1.43c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75c0-0.59-0.3-1.12-0.75-1.43V13h2v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M12.5,7.75h2v1.5h-2V7.75z M11,9.25H5.5v-1.5H11V9.25z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-4.75H11v1.53c-0.3,0.23-0.5,0.57-0.5,0.97c0,0.69,0.56,1.25,1.25,1.25S13,13.94,13,13.25 c0-0.4-0.2-0.75-0.5-0.97v-1.53h2v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_occupied\": {\n    \"name\": \"sensor_occupied\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,11c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,6.34,9,8S10.34,11,12,11z\\\"></path><path d=\\\"M12,12c-1.84,0-3.56,0.5-5.03,1.37C6.36,13.72,6,14.39,6,15.09V17h12v-1.91c0-0.7-0.36-1.36-0.97-1.72 C15.56,12.5,13.84,12,12,12z\\\"></path><path d=\\\"M21.23,8.15l1.85-0.77c-1.22-2.91-3.55-5.25-6.46-6.46l-0.77,1.85C18.27,3.79,20.21,5.73,21.23,8.15z\\\"></path><path d=\\\"M8.15,2.77L7.38,0.92C4.47,2.14,2.14,4.47,0.92,7.38l1.85,0.77C3.79,5.73,5.73,3.79,8.15,2.77z\\\"></path><path d=\\\"M2.77,15.85l-1.85,0.77c1.22,2.91,3.55,5.25,6.46,6.46l0.77-1.85C5.73,20.21,3.79,18.27,2.77,15.85z\\\"></path><path d=\\\"M15.85,21.23l0.77,1.85c2.91-1.22,5.25-3.55,6.46-6.46l-1.85-0.77C20.21,18.27,18.27,20.21,15.85,21.23z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.84,6.73l1.39-0.58c-1.01-2.43-2.96-4.37-5.38-5.38l-0.58,1.39C15.33,3.02,16.98,4.67,17.84,6.73z\\\"></path><path d=\\\"M13.27,17.84l0.58,1.39c2.43-1.01,4.37-2.96,5.38-5.38l-1.39-0.58C16.98,15.33,15.33,16.98,13.27,17.84z\\\"></path><path d=\\\"M2.16,13.27l-1.39,0.58c1.01,2.43,2.96,4.37,5.38,5.38l0.58-1.39C4.67,16.98,3.02,15.33,2.16,13.27z\\\"></path><path d=\\\"M6.73,2.16L6.15,0.77C3.72,1.78,1.78,3.72,0.77,6.15l1.39,0.58C3.02,4.67,4.67,3.02,6.73,2.16z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z\\\"></path><path d=\\\"M10,10c-1.53,0-2.96,0.42-4.2,1.14C5.3,11.44,5,11.99,5,12.57V14h10v-1.43c0-0.58-0.3-1.14-0.8-1.43 C12.96,10.42,11.53,10,10,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bolt\": {\n    \"name\": \"electric_bolt\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,2 2.5,13 13,14 8,21 9,22 21.5,11 11,10 16,3\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"12.25,1.75 2.25,11 10.8,11.5 6.75,17.25 7.75,18.25 17.75,9 9.2,8.5 13.25,2.75\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"blinds_closed\": {\n    \"name\": \"blinds_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h11.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M18,11h-2V9h2V11z M14,11H6V9h8V11z M14,13v2H6v-2H14z M16,13h2v2h-2V13z M18,7h-2V5h2V7z M14,5v2H6V5H14z M6,19v-2h8v2H6z M16,19v-2h2v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h8.5c0,0.69,0.56,1.25,1.25,1.25S13,17.69,13,17h5v-1.5H16z M14.5,9.25h-2v-1.5h2V9.25z M11,9.25 H5.5v-1.5H11V9.25z M11,10.75v1.5H5.5v-1.5H11z M12.5,10.75h2v1.5h-2V10.75z M14.5,6.25h-2V4.5h2V6.25z M11,4.5v1.75H5.5V4.5H11z M5.5,15.5v-1.75H11v1.75H5.5z M12.5,15.5v-1.75h2v1.75H12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"oil_barrel\": {\n    \"name\": \"oil_barrel\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,13v-2h-2V5h2V3H3v2h2v6H3v2h2v6H3v2h18v-2h-2v-6H21z M12,16c-1.66,0-3-1.32-3-2.95c0-1.3,0.52-1.67,3-4.55 c2.47,2.86,3,3.24,3,4.55C15,14.68,13.66,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,10.75v-1.5h-1.5V4.5H17V3H3v1.5h1.5v4.75H3v1.5h1.5v4.75H3V17h14v-1.5h-1.5v-4.75H17z M10,13 c-1.24,0-2.25-0.99-2.25-2.21c0-0.98,0.39-1.25,2.25-3.41c1.85,2.15,2.25,2.43,2.25,3.41C12.25,12.01,11.24,13,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"heat_pump\": {\n    \"name\": \"heat_pump\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M12.75,7.08c0.82,0.12,1.57,0.44,2.2,0.91l-2.2,2.2V7.08z M11.25,7.08v3.11l-2.2-2.2 C9.68,7.52,10.43,7.2,11.25,7.08z M7.99,9.05l2.2,2.2H7.08C7.2,10.43,7.52,9.68,7.99,9.05z M7.08,12.75h3.11l-2.2,2.2 C7.52,14.32,7.2,13.57,7.08,12.75z M11.25,16.92c-0.82-0.12-1.57-0.44-2.2-0.91l2.2-2.2V16.92z M12,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,12.55,12.55,13,12,13z M12.75,16.92v-3.11l2.2,2.2C14.32,16.48,13.57,16.8,12.75,16.92z M16.01,14.95l-2.2-2.2h3.11C16.8,13.57,16.48,14.32,16.01,14.95z M13.81,11.25l2.2-2.2c0.47,0.64,0.79,1.39,0.91,2.2H13.81z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,3H3v14h14V3z M10.5,6.3c0.66,0.09,1.26,0.34,1.76,0.73L10.5,8.79V6.3z M9.5,6.3v2.49L7.74,7.03 C8.24,6.64,8.84,6.39,9.5,6.3z M7.03,7.74L8.79,9.5H6.3C6.39,8.84,6.64,8.24,7.03,7.74z M6.3,10.5h2.49l-1.76,1.76 C6.64,11.76,6.39,11.16,6.3,10.5z M9.5,13.7c-0.66-0.09-1.26-0.34-1.76-0.73l1.76-1.76V13.7z M9.25,10c0-0.41,0.34-0.75,0.75-0.75 s0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,10.41,9.25,10z M10.5,13.7v-2.49l1.76,1.76 C11.76,13.36,11.16,13.61,10.5,13.7z M12.97,12.26l-1.76-1.76h2.49C13.61,11.16,13.36,11.76,12.97,12.26z M11.21,9.5l1.76-1.76 c0.38,0.5,0.64,1.1,0.73,1.76H11.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"broadcast_on_personal\": {\n    \"name\": \"broadcast_on_personal\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,8c0.7,0,1.38,0.1,2.02,0.27L12,3L4,9v12h6.76C9.66,19.63,9,17.89,9,16C9,11.58,12.58,8,17,8z\\\"></path><path d=\\\"M17,14.75c-0.69,0-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22h1.5v-5.03c0.3-0.23,0.5-0.57,0.5-0.97 C18.25,15.31,17.69,14.75,17,14.75z\\\"></path><path d=\\\"M17,12c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16C21,13.79,19.21,12,17,12z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.38,7.03L8,3L2,7.5V17h7.54C8.58,15.94,8,14.54,8,13C8,9.9,10.36,7.34,13.38,7.03z\\\"></path><path d=\\\"M14,12c-0.55,0-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1v-4.15C14.79,13.67,15,13.37,15,13C15,12.45,14.55,12,14,12z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,10c-1.66,0-3,1.34-3,3c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22C17,11.34,15.66,10,14,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_meter\": {\n    \"name\": \"electric_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2c-4.96,0-9,4.04-9,9c0,3.91,2.51,7.24,6,8.47V22h2v-2.06c0.33,0.04,0.66,0.06,1,0.06s0.67-0.02,1-0.06V22h2v-2.53 c3.49-1.24,6-4.57,6-8.47C21,6.04,16.96,2,12,2z M14.25,14l-3,3l-1.5-1.5L11,14.25L9.75,13l3-3l1.5,1.5L13,12.75L14.25,14z M16,9H8 V7h8V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2C6.13,2,3,5.13,3,9c0,2.98,1.87,5.52,4.5,6.53V18H9v-2.08C9.33,15.97,9.66,16,10,16s0.67-0.03,1-0.08V18h1.5v-2.47 C15.13,14.52,17,11.98,17,9C17,5.13,13.87,2,10,2z M11.75,11.3L9.3,13.75L8.25,12.7l1-1l-1-1l2.45-2.45l1.05,1.05l-1,1L11.75,11.3z M13,7.5H7V6h6V7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"roller_shades\": {\n    \"name\": \"roller_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M6,19v-6h5v1.8c-0.4,0.3-0.8,0.8-0.8,1.4c0,1,0.8,1.8,1.8,1.8s1.8-0.8,1.8-1.8 c0-0.6-0.3-1.1-0.8-1.4V13h5v6H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M5.5,15.5v-4.75h3.75v1.53c-0.3,0.23-0.5,0.57-0.5,0.97c0,0.69,0.56,1.25,1.25,1.25 s1.25-0.56,1.25-1.25c0-0.4-0.2-0.75-0.5-0.97v-1.53h3.75v4.75H5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wind_power\": {\n    \"name\": \"wind_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"4\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"1\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"19\\\"></rect></g><g><path d=\\\"M15.32,12.09l5.42-9.04L17.32,1L12,5.97v4.74c0.31-0.13,0.64-0.21,1-0.21C14.06,10.5,14.96,11.16,15.32,12.09z\\\"></path></g><g><path d=\\\"M10.5,13c0-0.82,0.4-1.54,1.01-2H1v4l7,2l3.44-2.06C10.87,14.48,10.5,13.79,10.5,13z\\\"></path></g><g><path d=\\\"M20.17,23L23,20.17l-3.54-6.36l-3.98-1c0,0.06,0.02,0.12,0.02,0.19c0,1.38-1.12,2.5-2.5,2.5c-0.36,0-0.69-0.08-1-0.21V21 c-1.1,0-2,0.9-2,2h6c0-1.1-0.9-2-2-2v-4.17L20.17,23z\\\"></path></g><g><circle cx=\\\"13\\\" cy=\\\"13\\\" r=\\\"1.5\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"6.5\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g><g><circle cx=\\\"10.5\\\" cy=\\\"11\\\" r=\\\"1.5\\\"></circle></g><g><path d=\\\"M8.54,12.54C8.21,12.11,8,11.58,8,11c0-0.82,0.4-1.54,1.01-2H1v3.16l5.53,1.58L8.54,12.54z\\\"></path></g><g><path d=\\\"M16.2,18.75l2.24-2.24l-2.8-5.03l-2.66-0.66c0.13,1.71-1.31,2.69-2.48,2.69c-0.26,0-0.51-0.05-0.75-0.13v4.05H9.58 C8.71,17.42,8,18.13,8,19h5c0-0.87-0.71-1.58-1.58-1.58h-0.17V13.8L16.2,18.75z\\\"></path></g><g><path d=\\\"M12.65,9.74l4.27-7.11L14.2,1L10,4.93v3.62c0.16-0.03,0.33-0.05,0.5-0.05C11.42,8.5,12.21,9,12.65,9.74z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"roller_shades_closed\": {\n    \"name\": \"roller_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,19V3H4v16H2v2h8.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M6,19v-2h5v2H6z M13,19v-2h5v2H13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h6.75c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25H18v-1.5H16z M9.25,15.5H5.5V14h3.75V15.5z M14.5,15.5h-3.75V14h3.75V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_fan_off\": {\n    \"name\": \"mode_fan_off\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.34,8.36l-2.29,0.82c-0.18-0.13-0.38-0.25-0.58-0.34c0.17-0.83,0.63-1.58,1.36-2.06C16.85,5.44,16.18,2,13.39,2 c-3.08,0-4.9,1.47-5.3,3.26L18.73,15.9c1.5,0.39,3.27-0.51,3.27-2.51C22,9,18.99,7.16,16.34,8.36z\\\"></path></g><g><path d=\\\"M2.81,2.81L1.39,4.22L5.27,8.1C3.77,7.7,2,8.61,2,10.61c0,4.4,3.01,6.24,5.66,5.03l2.29-0.82 c0.18,0.13,0.38,0.25,0.58,0.34c-0.17,0.83-0.63,1.58-1.36,2.06C7.15,18.56,7.82,22,10.61,22c3.08,0,4.9-1.47,5.3-3.26l3.87,3.87 l1.41-1.41L2.81,2.81z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.46,13.34c0.17,0.04,0.35,0.06,0.54,0.06c0.98,0,2-0.76,2-2.08C18,8.52,16.49,7,14.8,7c-0.83,0-1.29,0.22-3.01,0.91 c-0.14-0.12-0.28-0.22-0.44-0.31c0.22-0.99,0.64-1.47,1.1-1.78C13.09,5.39,13.4,4.75,13.4,4c0-0.98-0.76-2-2.08-2 C8.69,2,7.2,3.34,7.03,4.91L15.46,13.34z\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99l2.67,2.67C4.37,6.62,4.19,6.6,4,6.6c-0.98,0-2,0.76-2,2.08C2,11.48,3.51,13,5.2,13 c0.83,0,1.29-0.22,3.01-0.91c0.14,0.12,0.28,0.22,0.44,0.31c-0.22,0.99-0.64,1.47-1.1,1.78C6.91,14.61,6.6,15.25,6.6,16 c0,0.98,0.76,2,2.08,2c2.63,0,4.12-1.34,4.29-2.91l3.04,3.04l1.06-1.06L2.93,2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"curtains_closed\": {\n    \"name\": \"curtains_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M11,5h2v14h-2V5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M9,4.5h2v11H9V4.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shield_moon\": {\n    \"name\": \"shield_moon\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M15.97,14.41c-1.84,2.17-5.21,2.1-6.96-0.07 c-2.19-2.72-0.65-6.72,2.69-7.33c0.34-0.06,0.63,0.27,0.51,0.6c-0.46,1.23-0.39,2.64,0.32,3.86c0.71,1.22,1.89,1.99,3.18,2.2 C16.05,13.72,16.2,14.14,15.97,14.41z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M13.06,11.76 c-1.43,1.69-4.05,1.63-5.41-0.06c-1.71-2.12-0.51-5.23,2.09-5.7c0.27-0.05,0.49,0.21,0.39,0.47c-0.36,0.95-0.3,2.05,0.25,3 s1.47,1.55,2.48,1.71C13.12,11.23,13.24,11.55,13.06,11.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gas_meter\": {\n    \"name\": \"gas_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4h-5V2h-2v2h-2V2H9v2H4v18h16V4z M12,18c-1.38,0-2.5-1.1-2.5-2.46c0-1.09,0.43-1.39,2.5-3.79 c2.05,2.38,2.5,2.7,2.5,3.79C14.5,16.9,13.38,18,12,18z M16,10H8V8h8V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16,3.5h-3.5V2H11v1.5H9V2H7.5v1.5H4V18h12V3.5z M10,14.5c-1.1,0-2-0.88-2-1.97c0-0.87,0.35-1.11,2-3.03 c1.64,1.91,2,2.16,2,3.03C12,13.62,11.1,14.5,10,14.5z M13,8H7V6.5h6V8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_mode\": {\n    \"name\": \"auto_mode\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.03,3.56c-1.67-1.39-3.74-2.3-6.03-2.51v2.01c1.73,0.19,3.31,0.88,4.61,1.92L19.03,3.56z\\\"></path><path d=\\\"M11,3.06V1.05C8.71,1.25,6.64,2.17,4.97,3.56l1.42,1.42C7.69,3.94,9.27,3.25,11,3.06z\\\"></path><path d=\\\"M4.98,6.39L3.56,4.97C2.17,6.64,1.26,8.71,1.05,11h2.01C3.25,9.27,3.94,7.69,4.98,6.39z\\\"></path><path d=\\\"M20.94,11h2.01c-0.21-2.29-1.12-4.36-2.51-6.03l-1.42,1.42C20.06,7.69,20.75,9.27,20.94,11z\\\"></path><polygon points=\\\"7,12 10.44,13.56 12,17 13.56,13.56 17,12 13.56,10.44 12,7 10.44,10.44\\\"></polygon><path d=\\\"M12,21c-3.11,0-5.85-1.59-7.46-4H7v-2H1v6h2v-2.7c1.99,2.84,5.27,4.7,9,4.7c4.87,0,9-3.17,10.44-7.56l-1.96-0.45 C19.25,18.48,15.92,21,12,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.81,3.13c-1.39-1.18-3.14-1.93-5.06-2.09v1.5c1.51,0.15,2.88,0.75,3.99,1.66L15.81,3.13z\\\"></path><path d=\\\"M10,17.5c-2.66,0-4.98-1.41-6.31-3.5h2.06v-1.5H1v4.75h1.5v-2.29C4.11,17.39,6.86,19,10,19c4.01,0,7.41-2.63,8.57-6.25 l-1.47-0.34C16.09,15.36,13.29,17.5,10,17.5z\\\"></path><path d=\\\"M9.25,2.54v-1.5C7.33,1.19,5.58,1.96,4.2,3.14L5.26,4.2C6.37,3.29,7.74,2.69,9.25,2.54z\\\"></path><path d=\\\"M4.2,5.26L3.14,4.2C1.96,5.59,1.2,7.33,1.04,9.25h1.5C2.69,7.74,3.29,6.37,4.2,5.26z\\\"></path><polygon points=\\\"6,10 8.75,11.25 10,14 11.25,11.25 14,10 11.25,8.75 10,6 8.75,8.75\\\"></polygon><path d=\\\"M17.46,9.25h1.51c-0.16-1.92-0.92-3.67-2.1-5.06L15.8,5.26C16.71,6.37,17.31,7.74,17.46,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sensor_door\": {\n    \"name\": \"sensor_door\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,2H4v20h16V2z M15.5,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5S17,11.17,17,12S16.33,13.5,15.5,13.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,3H4v14h12V3z M13,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14,10.55,13.55,11,13,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fire_extinguisher\": {\n    \"name\": \"fire_extinguisher\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,19h10v3H7V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02c1.55,0.62,2.72,1.98,3.07,3.64H7.1 c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91C9.87,3.65,10.86,3,12,3 c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"countertops\": {\n    \"name\": \"countertops\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,10V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2v-2H18z M13,18h-2v-6h2V18z\\\"></path>\"\n      }\n    }\n  },\n  \"room_service\": {\n    \"name\": \"room_service\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 17h20v2H2v-2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z\\\"></path>\"\n      }\n    }\n  },\n  \"roofing\": {\n    \"name\": \"roofing\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator_warning\": {\n    \"name\": \"escalator_warning\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M14.21,12.86l-0.92,1.32L9.72,8C9.37,7.38,8.71,7,7.99,7H3v8h1.5v7h5V11.61L12.03,16h2.2 L15,14.9V22h4v-5h1v-5h-4.15C15.19,12,14.58,12.32,14.21,12.86z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airport_shuttle\": {\n    \"name\": \"airport_shuttle\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5H1v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zM3 11V7h4v4H3zm3 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM13 11H9V7h4v4zm5 6.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM15 11V7h1l4 4h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"grass\": {\n    \"name\": \"grass\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z\\\"></path>\"\n      }\n    }\n  },\n  \"no_drinks\": {\n    \"name\": \"no_drinks\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97L9.83,7h6.74l1.78-2H7.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wheelchair_pickup\": {\n    \"name\": \"wheelchair_pickup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V7H3v8h2v7h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89 C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3c0-1.11,0.61-2.06,1.5-2.58v-2.16 C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46l2.47,3.71l1.66-1.11L19.54,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"kitchen\": {\n    \"name\": \"kitchen\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2.01 4 2v20h16V2.01zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8V5zm0 7h2v5H8v-5z\\\"></path>\"\n      }\n    }\n  },\n  \"fitness_center\": {\n    \"name\": \"fitness_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_touch\": {\n    \"name\": \"do_not_touch\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10.17l-2.5-2.5V1H13V10.17z M20,4h-2.5v7h-1V2H14v9.17l6,6V4z M9.5,3H7.01v1.18L9.5,6.67V3z M21.19,21.19L2.81,2.81 L1.39,4.22L7,9.83v4.3l-3.32-1.9L2,13.88L9.68,22h9.54l0.56,0.61L21.19,21.19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"child_care\": {\n    \"name\": \"child_care\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"holiday_village\": {\n    \"name\": \"holiday_village\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,20V8.35L13.65,4h-2.83L16,9.18V20H18z M22,20V6.69L19.31,4h-2.83L20,7.52V20H22z M8,4l-6,6v10h5v-5h2v5h5V10L8,4z M9,13 H7v-2h2V13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.5,16V7.26L11.24,4H9.12L13,7.88V16H14.5z M17.5,16V6.02L15.48,4h-2.12L16,6.64V16H17.5z M7,4L2.5,8.5V16h3.75v-3.75h1.5 V16h3.75V8.5L7,4z M7.75,10.75h-1.5v-1.5h1.5V10.75z\\\"></path>\"\n      }\n    }\n  },\n  \"no_photography\": {\n    \"name\": \"no_photography\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.94,8.12L7.48,4.66L9,3h6l1.83,2H22v14.17l-5.12-5.12C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5 C11.64,8,11.29,8.04,10.94,8.12z M20.49,23.31L18.17,21H2V5h0.17L0.69,3.51L2.1,2.1L21,21l0.9,0.9L20.49,23.31z M14.49,17.32 l-1.5-1.5C12.67,15.92,12.35,16,12,16c-1.66,0-3-1.34-3-3c0-0.35,0.08-0.67,0.19-0.98l-1.5-1.5C7.25,11.24,7,12.09,7,13 c0,2.76,2.24,5,5,5C12.91,18,13.76,17.75,14.49,17.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meeting_room\": {\n    \"name\": \"no_meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6h3v7.88l2 2V4h-5V3H6.12L14 10.88zm-2 5.71V13h-2v-2h1.29L2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"no_food\": {\n    \"name\": \"no_food\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.35,8.52L11,5h5V1h2v4h5l-1.38,13.79L18,15.17L11.35,8.52z M21.9,21.9L2.1,2.1L0.69,3.51l5.7,5.7 C3.46,9.83,1,11.76,1,15h11.17l2,2H1v2h15v-0.17l4.49,4.49L21.9,21.9z M1,23h15v-2H1V23z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water_damage\": {\n    \"name\": \"water_damage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L2,12h3v8h14v-8h3L12,3z M12,16c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4C14,15.1,13.1,16,12,16z\\\"></path>\"\n      }\n    }\n  },\n  \"crib\": {\n    \"name\": \"crib\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,9h-8V4H8C5.79,4,4,5.79,4,8v8h4v2.93c-0.61-0.35-1.16-0.78-1.65-1.27l-1.42,1.42C6.74,20.88,9.24,22,12,22 c2.76,0,5.26-1.12,7.07-2.93l-1.42-1.42c-0.49,0.49-1.05,0.92-1.65,1.27V16h4V9z M14,19.75C13.36,19.91,12.69,20,12,20 c-0.69,0-1.36-0.09-2-0.25V16h4V19.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,13.5V8h-6V4H7C5.34,4,4,5.34,4,7v6.5h3v2.27c-0.59-0.31-1.13-0.7-1.59-1.17l-1.06,1.06C5.79,17.1,7.79,18,10,18 c2.21,0,4.21-0.9,5.66-2.34l-1.06-1.06c-0.47,0.47-1,0.86-1.59,1.17l0-2.27H16z M11.5,16.33c-0.48,0.11-0.98,0.17-1.5,0.17 s-1.02-0.06-1.5-0.17V13.5h3V16.33z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator\": {\n    \"name\": \"escalator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M21,3H3v18h18L21,3z M18.5,9h-3.2l-5,9H5.5v-3h3.2l5-9h4.8V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"pool\": {\n    \"name\": \"pool\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5 5 3v2.5L9 7l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z\\\"></path><circle cx=\\\"16.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"beach_access\": {\n    \"name\": \"beach_access\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm11.47 2.85l2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.97 5.96l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3zm7.156 8.6l1.428-1.428 6.442 6.442-1.43 1.428z\\\"></path>\"\n      }\n    }\n  },\n  \"stairs\": {\n    \"name\": \"stairs\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><g><g><path d=\\\"M3,3v18h18V3H3z M18,8h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18V8z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"family_restroom\": {\n    \"name\": \"family_restroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-3-9l-3,0l-1.17,3.5H17V22H20z M12.5,11.5 c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2 s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V7H2v8h1.5v7H7.5z M14,22v-4h1v-5.5h-5V18h1v4H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rice_bowl\": {\n    \"name\": \"rice_bowl\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12L22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75C19.53,18.86,22,15.69,22,12z M20,12h-4 V5.08C18.39,6.47,20,9.05,20,12z M14,4.26V12h-4V4.26C10.64,4.1,11.31,4,12,4S13.36,4.1,14,4.26z M4,12c0-2.95,1.61-5.53,4-6.92V12 H4z\\\"></path>\"\n      }\n    }\n  },\n  \"chalet\": {\n    \"name\": \"chalet\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,7.5l7.5,7.5l-1.41,1.41L15,15.33V20h-4v-5H9v5H5v-4.67l-1.09,1.09L2.5,15L10,7.5z M22,6.5h-1.19l0.75-0.75l-0.71-0.71 L19.39,6.5H18.5V5.61l1.45-1.45l-0.71-0.71L18.5,4.19V3h-1v1.19l-0.75-0.75l-0.71,0.71l1.45,1.45V6.5h-0.89l-1.45-1.45l-0.71,0.71 l0.75,0.75H14v1h1.19l-0.75,0.75l0.71,0.71l1.45-1.45h0.89v0.89l-1.45,1.45l0.71,0.71l0.75-0.75V11h1V9.81l0.75,0.75l0.71-0.71 L18.5,8.39V7.5h0.89l1.45,1.45l0.71-0.71L20.81,7.5H22V6.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.27,6.5L2.5,12.27l1.06,1.06l0.88-0.88L4.5,16h3v-4H9v4h3v-3.62l0.94,0.94L14,12.27L8.27,6.5z M18,6.5h-1.39l0.9,0.9 l-0.35,0.35L15.9,6.5H15v0.9l1.25,1.25L15.9,9L15,8.11V9.5h-0.5V8.11L13.6,9l-0.35-0.35L14.5,7.4V6.5h-0.9l-1.25,1.25L12,7.4 l0.9-0.9H11.5V6h1.39L12,5.1l0.35-0.35L13.6,6h0.9V5.1l-1.25-1.25L13.6,3.5l0.9,0.9V3H15v1.39l0.9-0.9l0.35,0.35L15,5.1V6h0.9 l1.25-1.25L17.5,5.1L16.61,6H18V6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fence\": {\n    \"name\": \"fence\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"night_shelter\": {\n    \"name\": \"night_shelter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L4,9v12h16V9L12,3z M9.75,12.5c0.69,0,1.25,0.56,1.25,1.25S10.44,15,9.75,15S8.5,14.44,8.5,13.75S9.06,12.5,9.75,12.5z M17,18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H17V18z\\\"></path>\"\n      }\n    }\n  },\n  \"no_flash\": {\n    \"name\": \"no_flash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M2.45,2.45L1.04,3.87l5.3,5.3L6.14,9.4H2V22h16v-1.17l2.13,2.13l1.41-1.41L2.45,2.45z M10,20c-2.21,0-4-1.79-4-4 c0-1.95,1.4-3.57,3.25-3.92l1.57,1.57c-0.26-0.09-0.53-0.15-0.82-0.15c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5 c1.38,0,2.5-1.12,2.5-2.5c0-0.29-0.06-0.56-0.15-0.82l1.57,1.57C13.57,18.6,11.95,20,10,20z M18,15.17L10.83,8h1.75l1.28,1.4H18 V15.17z M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"balcony\": {\n    \"name\": \"balcony\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,10v2H8v-2H10z M16,12v-2h-2v2H16z M21,14v8H3v-8h1v-4c0-4.42,3.58-8,8-8s8,3.58,8,8v4H21z M7,16H5v4h2V16z M11,16H9v4h2 V16z M11,4.08C8.16,4.56,6,7.03,6,10v4h5V4.08z M13,14h5v-4c0-2.97-2.16-5.44-5-5.92V14z M15,16h-2v4h2V16z M19,16h-2v4h2V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.5,8.5V10H7V8.5H8.5z M13,10V8.5h-1.5V10H13z M17,12v6H3v-6h1V8c0-3.31,2.69-6,6-6s6,2.69,6,6v4H17z M6.12,13.5H4.5v3 h1.62V13.5z M9.25,13.5H7.62v3h1.62V13.5z M9.25,12l0-8.44C7.12,3.92,5.5,5.77,5.5,8v4H9.25z M10.75,12h3.75V8 c0-2.23-1.62-4.08-3.75-4.44V12z M12.38,13.5h-1.62v3h1.62V13.5z M15.5,13.5h-1.62v3h1.62V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smoking_rooms\": {\n    \"name\": \"smoking_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z\\\"></path>\"\n      }\n    }\n  },\n  \"tapas\": {\n    \"name\": \"tapas\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M10,9H8V8h2 c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5C1.5,6.88,2.62,8,4,8h2v1H4 c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5C12.5,10.12,11.38,9,10,9z\\\"></path>\"\n      }\n    }\n  },\n  \"baby_changing_station\": {\n    \"name\": \"baby_changing_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.86,6.53,5.63,6.01,6.46,6C6.74,6,7.02,6.05,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5 c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5C18,15.33,18.67,16,19.5,16z M13,13v-2H9v2h2v3h6v-5h-2v2H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"free_breakfast\": {\n    \"name\": \"free_breakfast\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3H4v14h14v-7h2c1.11 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"no_stroller\": {\n    \"name\": \"no_stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.91,8.08L6.53,3.7C7.6,3.25,8.77,3,10,3c1.56,0,3.03,0.4,4.3,1.1L10.91,8.08z M21.19,21.19l-4.78-4.78l-5.75-5.75 L2.81,2.81L1.39,4.22l7.97,7.97L5.27,17h8.9l1.13,1.13c-0.88,0.33-1.47,1.25-1.26,2.28c0.15,0.76,0.78,1.39,1.54,1.54 c1.03,0.21,1.95-0.38,2.28-1.26l1.91,1.91L21.19,21.19z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M17,6.27 C17.58,5.59,17.97,5,18.65,5C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11 L17,14.17V6.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gite\": {\n    \"name\": \"gite\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6z M4,12h10v5H4V12z M20,17h-4v-6.17l2-2v0l2,2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,8.5l-3-3c0,0,0,0,0,0H7.5V4H6v1.5H5l-3,3V15c0,0,0,0,0,0h9.5H13h5c0,0,0,0,0,0L18,8.5C18,8.5,18,8.5,18,8.5z M3.5,13.5 V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"stroller\": {\n    \"name\": \"stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18,18.9,18,20z M6,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18z M22,7V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03L5.27,17H17V6.27C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7H22z M14.3,4.1C13.03,3.4,11.56,3,10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89L14.3,4.1z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elevator\": {\n    \"name\": \"elevator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,3H3v18h18V3z M8.5,6c0.69,0,1.25,0.56,1.25,1.25c0,0.69-0.56,1.25-1.25,1.25S7.25,7.94,7.25,7.25 C7.25,6.56,7.81,6,8.5,6z M11,14h-1v4H7v-4H6V9.5h5V14z M15.5,17L13,13h5L15.5,17z M13,11l2.5-4l2.5,4H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"iron\": {\n    \"name\": \"iron\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,6v8h-1V7H7v3h2V9h6v2H6c-2.21,0-4,1.79-4,4v3h15v-2h3V8h2V6H18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,5.5v6h-1V6H6v2h1.5V7.5h5l0,1.5H5c-1.66,0-3,1.34-3,3v2.5h12V13h2.5V7H18V5.5H15z\\\"></path>\"\n      }\n    }\n  },\n  \"bungalow\": {\n    \"name\": \"bungalow\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L4.2,15.5l1.7,1.06L7,14.8V21h4v-5h2v5h4v-6.21l1.1,1.77l1.7-1.06L12,3z M13,14h-2v-2h2V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3l-6,9.6l1.27,0.8L6,12.23V17h3.25v-4h1.5v4H14v-4.77l0.73,1.16L16,12.6L10,3z M10.75,11.5h-1.5V10h1.5V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"backpack\": {\n    \"name\": \"backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M20,8v14H4V8c0-1.86,1.28-3.41,3-3.86V2h3v2h4V2h3v2.14C18.72,4.59,20,6.14,20,8z M6,12v2h10v2h2v-4H6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"house\": {\n    \"name\": \"house\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,8.29V5h-2v1.57L10,4l-7,6h2v6h4v-4h2v4h4v-6h2L15,8.29z M9,9c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1H9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cabin\": {\n    \"name\": \"cabin\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z M12,3L6,7.58V6H4v3.11L1,11.4 l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M13.94,7h-3.89L12,5.52L13.94,7z M7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9z M18,13v2H6v-2H18z M6,19v-2h12v2H6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5h1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5z M18.25,9.8l-0.91,1.19L16,9.97V17H4V9.97l-1.34,1.02L1.75,9.8L4,8.08V5.5h1.5v1.44L10,3.5L18.25,9.8z M10,5.39L8.54,6.5h2.91 L10,5.39z M5.5,8.82V9.5h9V8.82L13.42,8H6.58L5.5,8.82z M5.5,11v1.5h9V11H5.5z M14.5,15.5V14h-9v1.5H14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tty\": {\n    \"name\": \"tty\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M20,15v6c-3.28,0-6.35-0.89-9-2.43C8.27,16.99,6.01,14.73,4.43,12C2.89,9.35,2,6.28,2,3h6l1,5l-2.9,2.9 c1.43,2.5,3.5,4.57,6,6L15,14L20,15z M14,6h2V4h-2V6z M13,9h2V7h-2V9z M11,6h2V4h-2V6z M18,7h-2v2h2V7z M19,4h-2v2h2V4z M21,7h-2v2 h2V7z M22,4h-2v2h2V4z M14,12h2v-2h-2V12z M11,12h2v-2h-2V12z M19,10h-2v2h2V10z M22,10h-2v2h2V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"room_preferences\": {\n    \"name\": \"room_preferences\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26C11.47,19.87,11,18.49,11,17C11,14.62,12.19,12.53,14,11.26z M10,11h2v2h-2V11z M21.69,16.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L19,12h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L17,22h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C21.77,17.13,21.77,16.87,21.69,16.37z M18,19c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S19.1,19,18,19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"checkroom\": {\n    \"name\": \"checkroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5L11,9l0,2.75L2.4,18.2C1.63,18.78,2.04,20,3,20h9h9 C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"spa\": {\n    \"name\": \"spa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64zm-3.49-.76c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z\\\"></path>\"\n      }\n    }\n  },\n  \"golf_course\": {\n    \"name\": \"golf_course\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z\\\"></path>\"\n      }\n    }\n  },\n  \"cottage\": {\n    \"name\": \"cottage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h7v-6h2v6h7v-9.38l1.79,1.36L23,11.4L12,3z M10,1c0,1.66-1.34,3-3,3 C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5L5.5,6.94V5.5H4v2.58L1.75,9.8l0.91,1.19L4,9.97V17h5.25v-4.5h1.5V17H16V9.97l1.34,1.02l0.91-1.19L10,3.5z M8.5,1.5 c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5H8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"vaping_rooms\": {\n    \"name\": \"vaping_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M22,16v3H8v-3H22z M11,17.5 c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23 c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38 C20.72,8.62,22,10.54,22,12.76z M19.5,13.36V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-1.85,0-3.35-1.5-3.35-3.35 s1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53C17.9,10.2,19.5,11.55,19.5,13.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18,15H7v-2h11V15z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5S11.12,9,12.5,9h1 c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M9,13.65c-0.19,0-0.35,0.16-0.35,0.35S8.81,14.35,9,14.35 S9.35,14.19,9.35,14S9.19,13.65,9,13.65z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5 c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1 c1.93,0,3.5,1.57,3.5,3.5V12H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"casino\": {\n    \"name\": \"casino\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_bar\": {\n    \"name\": \"sports_bar\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,9h-3.56C17.79,8.41,18,7.73,18,7c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02 c-1.89,0-3.51,1.11-4.27,2.71C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h4V9z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5z M19,17h-2v-6h2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,7.5h-2.77C14.47,7.05,14.6,6.54,14.6,6c0-1.79-1.46-3.25-3.25-3.25c-0.24,0-0.47,0.03-0.69,0.07 C10.05,2.31,9.26,2,8.4,2C6.95,2,5.7,2.89,5.17,4.15C3.91,4.55,3,5.73,3,7.12c0,1.51,1.07,2.77,2.5,3.06V17H14v-1.5l3-0.07V7.5z M10.79,6c-0.8,0-1.55,0.31-2.12,0.88L7.28,8.27C6.96,8.59,6.51,8.78,6.02,8.75C5.2,8.7,4.54,8.02,4.5,7.2 C4.46,6.27,5.2,5.5,6.12,5.5c0,0,0,0,0,0c0.14,0,0.27-0.1,0.29-0.24C6.53,4.26,7.39,3.5,8.4,3.5c0.71,0,1.34,0.37,1.69,0.93 c0.07,0.12,0.23,0.15,0.34,0.08c0.27-0.16,0.58-0.26,0.92-0.26c0.96,0,1.75,0.79,1.75,1.75H10.79z M15.5,14H14V9h1.5V14z\\\"></path>\"\n      }\n    }\n  },\n  \"carpenter\": {\n    \"name\": \"carpenter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,1.5L3.11,5.39l8.13,11.67l-1.41,1.41l4.24,4.24l7.07-7.07L7,1.5z M12.66,18.47l4.24-4.24l1.41,1.41l-4.24,4.24 L12.66,18.47z\\\"></path>\"\n      }\n    }\n  },\n  \"wash\": {\n    \"name\": \"wash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.12,5L1,12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12,5L9.12,5z M13.5,9 C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1c0,0-2.5,2.83-2.5,4.5 C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z\\\"></path></g>\"\n      }\n    }\n  },\n  \"house_siding\": {\n    \"name\": \"house_siding\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"child_friendly\": {\n    \"name\": \"child_friendly\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89C20.37 14.54 21 12.84 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z\\\"></path>\"\n      }\n    }\n  },\n  \"microwave\": {\n    \"name\": \"microwave\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.8,10.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9 c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10 C7.38,10,6.95,10.41,6.8,10.61z M7.75,15c0.19,0,0.38,0.12,0.71,0.34c0.42,0.28,1,0.66,1.79,0.66c1.16,0,2.01-0.79,2.37-1.19 l-1.42-1.42c-0.15,0.2-0.59,0.61-0.95,0.61c-0.18,0-0.38-0.12-0.69-0.33C9.14,13.39,8.55,13,7.75,13c-1.16,0-2.02,0.79-2.38,1.19 l1.42,1.42C6.95,15.41,7.38,15,7.75,15z M22,4v16H2V4H22z M14,6H4v12h10V6z M19,16c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1C18.55,17,19,16.55,19,16z M19,12c0-0.55-0.45-1-1-1c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1 C18.55,13,19,12.55,19,12z M19,7h-2v2h2V7z\\\"></path>\"\n      }\n    }\n  },\n  \"hot_tub\": {\n    \"name\": \"hot_tub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v10h20V12H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z\\\"></path>\"\n      }\n    }\n  },\n  \"umbrella\": {\n    \"name\": \"umbrella\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"other_houses\": {\n    \"name\": \"other_houses\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M8,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C9,14.55,8.55,15,8,15z M12,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,14.55,12.55,15,12,15z M16,15 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,14.55,16.55,15,16,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M7,12.5c-0.41,0-0.75-0.34-0.75-0.75 C6.25,11.34,6.59,11,7,11s0.75,0.34,0.75,0.75C7.75,12.16,7.41,12.5,7,12.5z M10,12.5c-0.41,0-0.75-0.34-0.75-0.75 C9.25,11.34,9.59,11,10,11s0.75,0.34,0.75,0.75C10.75,12.16,10.41,12.5,10,12.5z M13,12.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.75,12.16,13.41,12.5,13,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"ac_unit\": {\n    \"name\": \"ac_unit\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"all_inclusive\": {\n    \"name\": \"all_inclusive\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53L13.51 12l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z\\\"></path>\"\n      }\n    }\n  },\n  \"dry\": {\n    \"name\": \"dry\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1,12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12,5L1,12.68z M15.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89 l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2L18.98,9h1.91l0.06-0.43 C21.16,7.21,20.68,5.86,19.65,4.86z\\\"></path></g>\"\n      }\n    }\n  },\n  \"soap\": {\n    \"name\": \"soap\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M18,2.5 C18,3.33,17.33,4,16.5,4C15.67,4,15,3.33,15,2.5S15.67,1,16.5,1C17.33,1,18,1.67,18,2.5z M1,12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10 v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12,5L1,12.68z\\\"></path></g>\"\n      }\n    }\n  },\n  \"desk\": {\n    \"name\": \"desk\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,6v12h2V8h10v10h2v-2h4v2h2V6H2z M20,8v2h-4V8H20z M16,14v-2h4v2H16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,5v10h1.5V6.5H12V15h1.5v-1.5h3V15H18V5H2z M13.5,6.5h3v2h-3V6.5z M13.5,12v-2h3v2H13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"do_not_step\": {\n    \"name\": \"do_not_step\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.39,4.22l8.24,8.24l-0.69,0.72L6.87,11.1c-0.11,0.4-0.26,0.78-0.45,1.12l1.75,1.75l-0.69,0.72l-1.63-1.63 c-0.24,0.29-0.5,0.56-0.77,0.8l1.63,1.63l-0.7,0.72l-1.74-1.74C2.83,15.43,1.34,15.82,1,15.92L1,20h9.5l3.33-3.33l5.94,5.94 l1.41-1.41L2.81,2.81L1.39,4.22z M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M20.88,9.08l-4.48,4.48L9.3,6.47L13.8,2 L20.88,9.08z\\\"></path></g>\"\n      }\n    }\n  },\n  \"meeting_room\": {\n    \"name\": \"meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"foundation\": {\n    \"name\": \"foundation\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z\\\"></path>\"\n      }\n    }\n  },\n  \"no_cell\": {\n    \"name\": \"no_cell\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L5,7.83V23h14v-1.17l0.78,0.78L21.19,21.19z M7,18V9.83L15.17,18H7z M8.83,6L5,2.17V1h14 v15.17l-2-2V6H8.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"business_center\": {\n    \"name\": \"business_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16v-1H3.01v6H21v-6h-7v1h-4zm12-9h-6V5l-2-2h-4L8 5v2H2v7h8v-2h4v2h8V7zm-8 0h-4V5h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"corporate_fare\": {\n    \"name\": \"corporate_fare\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z\\\"></path>\"\n      }\n    }\n  },\n  \"food_bank\": {\n    \"name\": \"food_bank\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L4,9v12h16V9L12,3z M12.5,12.5c0,0.83-0.67,1.5-1.5,1.5v4h-1v-4c-0.83,0-1.5-0.67-1.5-1.5v-3h1v3H10v-3h1v3h0.5v-3h1 V12.5z M15,18h-1v-3.5h-1v-3c0-1.1,0.9-2,2-2V18z\\\"></path>\"\n      }\n    }\n  },\n  \"smoke_free\": {\n    \"name\": \"smoke_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 13H22v3h-1.5zm-6-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zm1.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM18 13h1.5v3H18zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"houseboat\": {\n    \"name\": \"houseboat\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,16c-1.95,0-2.1,1-3.34,1c-1.19,0-1.42-1-3.33-1C3.38,16,3.24,17,2,17v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.08-1,3.32-1s1.37,1,3.32,1c1.91,0,2.14-1,3.33-1c1.18,0,1.45,1,3.35,1v-2c-1.24,0-1.38-1-3.33-1c-1.91,0-2.14,1-3.33,1 C14.1,17,13.95,16,12,16z M20.34,11.34L18.67,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61L7,9.65V13H5.33l-1.66-1.66 l-1.41,1.41L4.5,15h15l2.25-2.25L20.34,11.34z M13,13h-2v-2h2V13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,14.5V16c-1.58,0-1.72-1-2.66-1c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1 c-1.59,0-1.72-1-2.67-1C3.72,15,3.58,16,2,16v-1.5c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1C16.92,13.5,17.05,14.5,18,14.5z M16.74,9.64L15.38,11L14,11V8.09l1.11,0.82L16,7.7 l-6-4.4L4,7.7l0.89,1.21L6,8.09V11l-1.38,0L3.26,9.64L2.2,10.7L4,12.5h12l1.8-1.8L16.74,9.64z M10.75,11h-1.5V9h1.5V11z\\\"></path>\"\n      }\n    }\n  },\n  \"no_backpack\": {\n    \"name\": \"no_backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><g><g><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l2.76,2.76C4.06,7.31,4,7.64,4,8v14h15.17l0.61,0.61L21.19,21.19z M6,14v-2h3.17l2,2H6z M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V12h-3.17L6.98,4.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bento\": {\n    \"name\": \"bento\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M16,11V5h6v6H16z M16,19h6v-6h-6V19z M14,5v14H2V5H14z M9.5,12c0-0.83-0.67-1.5-1.5-1.5S6.5,11.17,6.5,12s0.67,1.5,1.5,1.5 S9.5,12.83,9.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vape_free\": {\n    \"name\": \"vape_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M16.17,19H8v-3h5.17L1.39,4.22l1.41-1.41 l18.38,18.38l-1.41,1.41L16.17,19z M18.83,16H22v3h-0.17L18.83,16z M11,17.5c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5 c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85 S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38C20.72,8.62,22,10.54,22,12.76z M11.15,8.32 c0-0.01,0-0.01,0-0.02c0-1.85,1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53c1.87,0,3.47,1.35,3.47,3.16 V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-0.01,0-0.01,0-0.02,0L11.15,8.32z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.12,13H18v2h-0.88L15.12,13z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5 S11.12,9,12.5,9h1c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1 c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1 C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1c1.93,0,3.5,1.57,3.5,3.5V12H18z M2.93,2.93L1.87,3.99L10.88,13H7v2h5.88l3.13,3.13 l1.06-1.06L2.93,2.93z M9,14.35c-0.19,0-0.35-0.16-0.35-0.35S8.81,13.65,9,13.65S9.35,13.81,9.35,14S9.19,14.35,9,14.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"charging_station\": {\n    \"name\": \"charging_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M5,1h14v22H5V1z M7,6v12h10V6H7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"villa\": {\n    \"name\": \"villa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,21H3V8l13-5v7H7V21z M19,10c-1.1,0-2,0.9-2,2H9v9h5v-5h2v5h5v-9C21,10.9,20.1,10,19,10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M6,17H3V6.89L13,3v5.5H6V17z M15.5,8.5C14.67,8.5,14,9.17,14,10H7.5v7h4v-4H13v4h4v-7C17,9.17,16.33,8.5,15.5,8.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"storefront\": {\n    \"name\": \"storefront\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21.9,8.89L20.49,3h-3.75h-2.01H13h-2H9.28H7.26H3.51L2.1,8.89c-0.24,1.02-0.02,2.06,0.62,2.88 C2.8,11.88,2.91,11.96,3,12.06V21h18v-8.94c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M7.02,5L6.44,9.86 C6.36,10.51,5.84,11,5.23,11c-0.49,0-0.8-0.29-0.93-0.47c-0.26-0.33-0.35-0.76-0.25-1.17L5.09,5H7.02z M18.91,5l1.05,4.36 c0.1,0.42,0.01,0.84-0.25,1.17C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5H18.91z M15.51,9.52 c0.05,0.39-0.07,0.78-0.33,1.07C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5h1.96L15.51,9.52z M11,9.69 C11,10.41,10.45,11,9.71,11c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52L9.04,5H11V9.69z M5,19v-6.03 C5.08,12.98,5.15,13,5.23,13c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93 c0.59,0.57,1.39,0.93,2.29,0.93c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apartment\": {\n    \"name\": \"apartment\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,9V4H7v3H3v9h7v-3h1v3h6V9H14z M6,14H5v-1h1V14z M6,12H5v-1h1V12z M6,10H5V9h1V10z M10,11H9v-1h1V11z M10,9H9V8h1V9z M10,7H9V6h1V7z M12,11h-1v-1h1V11z M12,9h-1V8h1V9z M12,7h-1V6h1V7z M15,14h-1v-1h1V14z M15,12h-1v-1h1V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rv_hookup\": {\n    \"name\": \"rv_hookup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 17V9H7V7l-3 3 3 3v-2h4v3H4v5h4c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"bathtub\": {\n    \"name\": \"bathtub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><circle cx=\\\"7\\\" cy=\\\"7\\\" r=\\\"2\\\"></circle></g><g><path d=\\\"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v8h2v1h16v-1h2v-8H20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,11V5.12C16,3.95,15.05,3,13.88,3c-0.56,0-1.1,0.22-1.5,0.62l-0.83,0.83c-0.17-0.08-0.37-0.12-0.57-0.12 c-0.28,0-0.54,0.08-0.76,0.23l1.93,1.93c0.14-0.22,0.23-0.48,0.23-0.76c0-0.2-0.05-0.39-0.12-0.57l0.83-0.83 C13.3,4.12,13.58,4,13.88,4C14.5,4,15,4.5,15,5.12V11H9.1c-0.2-0.14-0.38-0.3-0.55-0.48L7.62,9.49C7.49,9.35,7.33,9.23,7.16,9.15 C6.95,9.05,6.72,9,6.49,9C5.67,9,5,9.67,5,10.5V11H3v5h1v1h12v-1h1v-5H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"star_half\": {\n    \"name\": \"star_half\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"toggle_on\": {\n    \"name\": \"toggle_on\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"check_box\": {\n    \"name\": \"check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM10 17l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"radio_button_unchecked\": {\n    \"name\": \"radio_button_unchecked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"star\": {\n    \"name\": \"star\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"toggle_off\": {\n    \"name\": \"toggle_off\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"star_outline\": {\n    \"name\": \"star_outline\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border_purple500\": {\n    \"name\": \"star_border_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"radio_button_checked\": {\n    \"name\": \"radio_button_checked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"5\\\"></circle>\"\n      }\n    }\n  },\n  \"check_box_outline_blank\": {\n    \"name\": \"check_box_outline_blank\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m2-2H3v18h18V3z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border\": {\n    \"name\": \"star_border\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_purple500\": {\n    \"name\": \"star_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z\\\"></path>\"\n      }\n    }\n  },\n  \"indeterminate_check_box\": {\n    \"name\": \"indeterminate_check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-4 10H7v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_center\": {\n    \"name\": \"vertical_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_top\": {\n    \"name\": \"border_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"monetization_on\": {\n    \"name\": \"monetization_on\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z\\\"></path>\"\n      }\n    }\n  },\n  \"format_line_spacing\": {\n    \"name\": \"format_line_spacing\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_link\": {\n    \"name\": \"insert_link\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"area_chart\": {\n    \"name\": \"area_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,13v7h18v-1.5l-9-7L8,17L3,13z M3,7l4,3l5-7l5,4h4v8.97l-9.4-7.31l-3.98,5.48L3,10.44V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,13.08L9.71,7.24l-3.03,4.15L3,8.62V6l3,2l4-5l4,3h3V13.08z M17,15l-7-5.61L7,13.5l-4-3V16h14V15z\\\"></path>\"\n      }\n    }\n  },\n  \"add_comment\": {\n    \"name\": \"add_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M22 2H2v16h16l4 4V2zm-5 9h-4v4h-2v-4H7V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_textdirection_l_to_r\": {\n    \"name\": \"format_textdirection_l_to_r\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"show_chart\": {\n    \"name\": \"show_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"table_chart\": {\n    \"name\": \"table_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 10.02h5V21h-5V10.02zM17 21h5V10h-5v11zm5-18H3v5h19V3zM3 21h5V10H3v11z\\\"></path>\"\n      }\n    }\n  },\n  \"text_decrease\": {\n    \"name\": \"text_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M23,11v2h-8 v-2H23z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,9.25v1.5h-6v-1.5H18z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73L4.49,12.44z M6.07,8.02l0.39-1.16h0.08 l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart\": {\n    \"name\": \"insert_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit\": {\n    \"name\": \"mode_edit\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,17.25V21h3.75L17.81,9.94l-3.75-3.75L3,17.25z M21.41,6.34l-3.75-3.75l-2.53,2.54l3.75,3.75L21.41,6.34z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_color_text\": {\n    \"name\": \"format_color_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M7.99,10.44h4.04L12.92,13h1.73L10.89,3H9.11L5.35,13h1.73L7.99,10.44z M9.57,6.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98 H8.51L9.57,6.02z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"query_stats\": {\n    \"name\": \"query_stats\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.88,18.47c0.44-0.7,0.7-1.51,0.7-2.39c0-2.49-2.01-4.5-4.5-4.5s-4.5,2.01-4.5,4.5s2.01,4.5,4.49,4.5 c0.88,0,1.7-0.26,2.39-0.7L21.58,23L23,21.58L19.88,18.47z M16.08,18.58c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C18.58,17.46,17.46,18.58,16.08,18.58z M15.72,10.08c-0.74,0.02-1.45,0.18-2.1,0.45l-0.55-0.83l-3.8,6.18 l-3.01-3.52l-3.63,5.81L1,17l5-8l3,3.5L13,6C13,6,15.72,10.08,15.72,10.08z M18.31,10.58c-0.64-0.28-1.33-0.45-2.05-0.49 c0,0,5.12-8.09,5.12-8.09L23,3.18L18.31,10.58z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.44,15.38C16.79,14.84,17,14.19,17,13.5c0-1.93-1.57-3.5-3.5-3.5S10,11.57,10,13.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.44,15.38z M13.5,15.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S14.6,15.5,13.5,15.5z M17.78,2L19,2.87l-3.88,5.9h0C14.61,8.59,14.07,8.5,13.5,8.5L17.78,2z M13.5,8.5c-0.58,0-1.13,0.1-1.65,0.28l0,0l-0.78-1.1 l-3.41,5.36l-2.48-2.97l-2.96,4.81L1,14l4-6.5l2.5,3L11,5L13.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shape_line\": {\n    \"name\": \"shape_line\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,11c2.76,0,5-2.24,5-5S8.76,1,6,1S1,3.24,1,6S3.24,11,6,11z\\\"></path><path d=\\\"M23,14h-9v9h9V14z\\\"></path><path d=\\\"M17.71,7.7C18.11,7.89,18.54,8,19,8c1.65,0,3-1.35,3-3s-1.35-3-3-3s-3,1.35-3,3c0,0.46,0.11,0.89,0.3,1.29L6.29,16.3 C5.89,16.11,5.46,16,5,16c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3c0-0.46-0.11-0.89-0.3-1.29L17.71,7.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,9c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C2.79,1,1,2.79,1,5C1,7.21,2.79,9,5,9z\\\"></path><path d=\\\"M19,12h-7v7h7V12z\\\"></path><path d=\\\"M14.35,6.71C14.7,6.89,15.08,7,15.5,7C16.88,7,18,5.88,18,4.5S16.88,2,15.5,2S13,3.12,13,4.5c0,0.42,0.11,0.8,0.29,1.15 l-7.64,7.64C5.3,13.11,4.92,13,4.5,13C3.12,13,2,14.12,2,15.5S3.12,18,4.5,18S7,16.88,7,15.5c0-0.42-0.11-0.8-0.29-1.15 L14.35,6.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"border_bottom\": {\n    \"name\": \"border_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_indent_increase\": {\n    \"name\": \"format_indent_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\\\"></path>\"\n      }\n    }\n  },\n  \"padding\": {\n    \"name\": \"padding\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,3v18h18V3H3z M9,9H7V7h2V9z M13,9h-2V7h2V9z M17,9h-2V7h2V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"checklist_rtl\": {\n    \"name\": \"checklist_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9,7.5H2V6h7V7.5z M9,12.5H2V14h7V12.5z M11.64,5.11l-1.06,1.06L13.4,9L18,4.4l-1.06-1.06L13.4,6.88L11.64,5.11z M11.64,11.61l-1.06,1.06l2.83,2.83l4.6-4.6l-1.06-1.06l-3.54,3.54L11.64,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"numbers\": {\n    \"name\": \"numbers\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,10L21,8h-4l1-4h-2l-1,4h-4l1-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1-4h4l-1,4h2l1-4h4l0.5-2h-4l1-4H20.5z M13.5,14h-4l1-4h4L13.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.62,8.5L17,7h-3.25l0.75-3H13l-0.75,3h-3L10,4H8.5L7.75,7H4.38L4,8.5h3.37L6.5,12H3.38L3,13.5h3.12L5.5,16H7l0.62-2.5h3 L10,16h1.5l0.62-2.5h3.5L16,12h-3.5l0.88-3.5H16.62z M11,12H8l0.88-3.5h3L11,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_align_center\": {\n    \"name\": \"format_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"format_underlined\": {\n    \"name\": \"format_underlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_bold\": {\n    \"name\": \"format_bold\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_bottom\": {\n    \"name\": \"align_vertical_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,22H2v-2h20V22z M10,2H7v16h3V2z M17,8h-3v10h3V8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_justify\": {\n    \"name\": \"format_align_justify\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart\": {\n    \"name\": \"pie_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z\\\"></path>\"\n      }\n    }\n  },\n  \"data_array\": {\n    \"name\": \"data_array\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,4 15,6 18,6 18,18 15,18 15,20 20,20 20,4\\\"></polygon><polygon points=\\\"4,20 9,20 9,18 6,18 6,6 9,6 9,4 4,4\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"4,4 4,16 8,16 8,14.5 5.5,14.5 5.5,5.5 8,5.5 8,4\\\"></polygon><polygon points=\\\"12,4 12,5.5 14.5,5.5 14.5,14.5 12,14.5 12,16 16,16 16,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"notes\": {\n    \"name\": \"notes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z\\\"></path>\"\n      }\n    }\n  },\n  \"scatter_plot\": {\n    \"name\": \"scatter_plot\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<circle cx=\\\"7\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6\\\" r=\\\"3\\\"></circle><circle cx=\\\"16.6\\\" cy=\\\"17.6\\\" r=\\\"3\\\"></circle>\"\n      }\n    }\n  },\n  \"align_horizontal_right\": {\n    \"name\": \"align_horizontal_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,2h2v20h-2V2z M2,10h16V7H2V10z M8,17h10v-3H8V17z\\\"></path>\"\n      }\n    }\n  },\n  \"square\": {\n    \"name\": \"square\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"18\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"14\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect></g>\"\n      }\n    }\n  },\n  \"auto_graph\": {\n    \"name\": \"auto_graph\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.06,9.94L12,9l2.06-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94z M4,14l0.94-2.06L7,11l-2.06-0.94L4,8 l-0.94,2.06L1,11l2.06,0.94L4,14z M8.5,9l1.09-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9z M4.5,20.5l6-6.01l4,4 L23,8.93l-1.41-1.41l-7.09,7.97l-4-4L3,19L4.5,20.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.72,8.28L10,7.5l1.72-0.78L12.5,5l0.78,1.72L15,7.5l-1.72,0.78L12.5,10L11.72,8.28z M3.5,12l0.78-1.72L6,9.5L4.28,8.72 L3.5,7L2.72,8.72L1,9.5l1.72,0.78L3.5,12z M7,8l0.94-2.06L10,5L7.94,4.06L7,2L6.06,4.06L4,5l2.06,0.94L7,8z M17.88,6.5l-5.61,6.31 L9,9.54l-6,6.01l1.06,1.06L9,11.67L12.33,15L19,7.5L17.88,6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"candlestick_chart\": {\n    \"name\": \"candlestick_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"9,4 7,4 7,6 5,6 5,18 7,18 7,20 9,20 9,18 11,18 11,6 9,6\\\"></polygon></g><g><polygon points=\\\"19,8 17,8 17,4 15,4 15,8 13,8 13,15 15,15 15,20 17,20 17,15 19,15\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><polygon points=\\\"7.25,3 5.75,3 5.75,5 4,5 4,15 5.75,15 5.75,17 7.25,17 7.25,15 9,15 9,5 7.25,5\\\"></polygon></g><g><polygon points=\\\"16,7 14.25,7 14.25,3 12.75,3 12.75,7 11,7 11,13 12.75,13 12.75,17 14.25,17 14.25,13 16,13\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"bar_chart\": {\n    \"name\": \"bar_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"7\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"13\\\"></rect><rect height=\\\"16\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"12\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"vertical_align_bottom\": {\n    \"name\": \"vertical_align_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off\": {\n    \"name\": \"money_off\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\\\"></path>\"\n      }\n    }\n  },\n  \"format_shapes\": {\n    \"name\": \"format_shapes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z\\\"></path>\"\n      }\n    }\n  },\n  \"rectangle\": {\n    \"name\": \"rectangle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"16\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"12\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"4\\\"></rect></g>\"\n      }\n    }\n  },\n  \"border_style\": {\n    \"name\": \"border_style\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"score\": {\n    \"name\": \"score\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 3H3v18h18V3zm-9 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z\\\"></path>\"\n      }\n    }\n  },\n  \"polyline\": {\n    \"name\": \"polyline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"15,16 15,17.26 9,14.26 9,11.09 11.7,8 16,8 16,2 10,2 10,6.9 7.3,10 3,10 3,16 8,16 15,19.5 15,22 21,22 21,16\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"12.5,13.5 12.5,14.49 7.5,11.78 7.5,9.24 9.83,6.5 13,6.5 13,2 8.5,2 8.5,5.75 6.16,8.5 3,8.5 3,13 6.6,13 12.5,16.2 12.5,18 17,18 17,13.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"space_bar\": {\n    \"name\": \"space_bar\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18 9v4H6V9H4v6h16V9h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"functions\": {\n    \"name\": \"functions\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z\\\"></path>\"\n      }\n    }\n  },\n  \"format_italic\": {\n    \"name\": \"format_italic\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_left\": {\n    \"name\": \"format_align_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"line_axis\": {\n    \"name\": \"line_axis\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"22,7.43 20.59,6.02 16.56,10.55 9.5,4 2,11.51 3.5,13.01 9.64,6.86 15.23,12.04 13.5,13.99 9.5,9.99 2,17.5 3.5,19 9.5,12.99 13.5,16.99 16.69,13.4 20.59,17.01 22,15.6 18.02,11.9\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"14.68,10.61 18,6.88 16.88,5.89 13.62,9.56 8,4 2,10.01 3.06,11.07 8,6.12 12.62,10.68 11.27,12.2 8,8.93 2,14.94 3.06,16 8,11.05 11.33,14.38 13.69,11.73 17,15.01 18.06,13.95\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"vertical_distribute\": {\n    \"name\": \"vertical_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,10.5v3h10v-3H7z M2,20v2h20v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"border_all\": {\n    \"name\": \"border_all\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z\\\"></path>\"\n      }\n    }\n  },\n  \"multiline_chart\": {\n    \"name\": \"multiline_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_distribute\": {\n    \"name\": \"horizontal_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,2h-2v20h2V2z M13.5,7h-3v10h3V7z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_note\": {\n    \"name\": \"edit_note\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,10h11v2H3V10z M3,8h11V6H3V8z M3,16h7v-2H3V16z M18.01,12.87l1.41-1.41l2.12,2.12l-1.41,1.41L18.01,12.87z M17.3,13.58 l-5.3,5.3V21h2.12l5.3-5.3L17.3,13.58z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M16.78,11.99l1.18-1.18l-1.77-1.77l-1.18,1.18L16.78,11.99z M16.19,12.58L11.77,17H10v-1.77l4.42-4.42L16.19,12.58z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_center\": {\n    \"name\": \"align_vertical_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"22,11 17,11 17,6 14,6 14,11 10,11 10,3 7,3 7,11 1.84,11 1.84,13 7,13 7,21 10,21 10,13 14,13 14,18 17,18 17,13 22,13\\\"></polygon>\"\n      }\n    }\n  },\n  \"highlight\": {\n    \"name\": \"highlight\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M6 14l3 3v5h6v-5l3-3V9H6v5zm5-12h2v3h-2V2zM3.5 5.88l1.41-1.41 2.12 2.12L5.62 8 3.5 5.88zm13.46.71l2.12-2.12 1.41 1.41L18.38 8l-1.42-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered\": {\n    \"name\": \"format_list_numbered\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z\\\"></path>\"\n      }\n    }\n  },\n  \"mode\": {\n    \"name\": \"mode\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z\\\"></path>\"\n      }\n    }\n  },\n  \"border_clear\": {\n    \"name\": \"border_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_horizontal_left\": {\n    \"name\": \"align_horizontal_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,7H6v3h16V7z M16,14H6v3h10V14z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_money\": {\n    \"name\": \"attach_money\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z\\\"></path>\"\n      }\n    }\n  },\n  \"publish\": {\n    \"name\": \"publish\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"text_fields\": {\n    \"name\": \"text_fields\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered_rtl\": {\n    \"name\": \"format_list_numbered_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"post_add\": {\n    \"name\": \"post_add\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><polygon points=\\\"17,19.22 5,19.22 5,7 12,7 12,5 3,5 3,21 19,21 19,12 17,12\\\"></polygon><path d=\\\"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"9\\\"></rect><polygon points=\\\"7,12 7,14 15,14 15,12 12,12\\\"></polygon><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><polygon points=\\\"14,15 5,15 5,6 11,6 11,5 4,5 4,16 15,16 15,9 14,9\\\"></polygon><polygon points=\\\"7,8 7,9 11,9 12,9 12,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"10\\\"></rect><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"12\\\"></rect><polygon points=\\\"15,3 14,3 14,5 12,5 12,6 14,6 14,8 15,8 15,6 17,6 17,5 15,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"align_horizontal_center\": {\n    \"name\": \"align_horizontal_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"11,2 13,2 13,7 21,7 21,10 13,10 13,14 18,14 18,17 13,17 13,22 11,22 11,17 6,17 6,14 11,14 11,10 3,10 3,7 11,7\\\"></polygon>\"\n      }\n    }\n  },\n  \"format_list_bulleted\": {\n    \"name\": \"format_list_bulleted\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"hexagon\": {\n    \"name\": \"hexagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"17.2,3 6.8,3 1.6,12 6.8,21 17.2,21 22.4,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"6,3 2,10 6,17 14,17 18,10 14,3\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"superscript\": {\n    \"name\": \"superscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M20,7v1h3v1h-4V6h3V5h-3V4h4v3H20z M5.88,20h2.66l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12 L8.85,6H6.19l4.32,6.73L5.88,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,6v1h2v1l-3,0V5l2,0l0-1h-2V3l3,0v3L16,6z M5.63,16h1.9l2.43-3.87h0.08L12.47,16h1.9l-3.32-5.2l3.1-4.8h-1.91 l-2.19,3.56H9.96L7.75,6h-1.9l3.09,4.8L5.63,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bubble_chart\": {\n    \"name\": \"bubble_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<circle cx=\\\"7.2\\\" cy=\\\"14.4\\\" r=\\\"3.2\\\"></circle><circle cx=\\\"14.8\\\" cy=\\\"18\\\" r=\\\"2\\\"></circle><circle cx=\\\"15.2\\\" cy=\\\"8.8\\\" r=\\\"4.8\\\"></circle>\"\n      }\n    }\n  },\n  \"border_right\": {\n    \"name\": \"border_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_emoticon\": {\n    \"name\": \"insert_emoticon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"move_down\": {\n    \"name\": \"move_down\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,11c0,2.45,1.76,4.47,4.08,4.91l-1.49-1.49L7,13l4,4.01L7,21l-1.41-1.41l1.58-1.58l0-0.06C3.7,17.54,1,14.58,1,11 c0-3.87,3.13-7,7-7h3v2H8C5.24,6,3,8.24,3,11z\\\"></path><path d=\\\"M22,11V4h-9v7H22z M20,9h-5V6h5V9z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><path d=\\\"M11,9h7V4h-7V9z M12.5,5.5h4v2h-4V5.5z\\\"></path><path d=\\\"M5.57,11.94l1.06-1.06l2.87,2.87l-2.88,2.88l-1.06-1.06l1.06-1.06V14.5H6.25C3.35,14.5,1,12.15,1,9.25 C1,6.35,3.35,4,6.25,4H9.5v1.5H6.25C4.18,5.5,2.5,7.18,2.5,9.25C2.5,11.32,4.18,13,6.25,13h0.37v-0.01L5.57,11.94z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_increase\": {\n    \"name\": \"text_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M20,11h3v2h-3 v3h-2v-3h-3v-2h3V8h2V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,9.25H18v1.5h-2.25V13h-1.5v-2.25H12v-1.5h2.25V7h1.5V9.25z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73 L4.49,12.44z M6.07,8.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"merge_type\": {\n    \"name\": \"merge_type\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_right\": {\n    \"name\": \"format_align_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_page_break\": {\n    \"name\": \"insert_page_break\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"17\\\"></rect><path d=\\\"M20,8l-6-6H4.01l-0.01,9H20V8z M13,9V3.5L18.5,9H13z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"1\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4.5\\\" width=\\\"12\\\" x=\\\"4\\\" y=\\\"13.5\\\"></rect><path d=\\\"M16,6l-4-4H4v8h12V6z M11,7V3l4,4H11z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"14\\\" y=\\\"11\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mode_comment\": {\n    \"name\": \"mode_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M22 2H2v16h16l4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_photo\": {\n    \"name\": \"insert_photo\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_comment\": {\n    \"name\": \"insert_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M22 2H2v16h16l4 4V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart_outlined\": {\n    \"name\": \"insert_chart_outlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm2-16H3v18h18V3z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_invitation\": {\n    \"name\": \"insert_invitation\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H3.01v18H21V3h-3V1h-2zm3 18H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_reset\": {\n    \"name\": \"format_color_reset\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18 14c0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l8.44 8.44c.03-.27.06-.55.06-.83zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14z\\\"></path>\"\n      }\n    }\n  },\n  \"format_clear\": {\n    \"name\": \"format_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"border_left\": {\n    \"name\": \"border_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"title\": {\n    \"name\": \"title\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M5 4v3h5.5v12h3V7H19V4H5z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_handle\": {\n    \"name\": \"drag_handle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M20 9H4v2h16V9zM4 15h16v-2H4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"border_vertical\": {\n    \"name\": \"border_vertical\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_top\": {\n    \"name\": \"vertical_align_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_outer\": {\n    \"name\": \"border_outer\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"linear_scale\": {\n    \"name\": \"linear_scale\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_file\": {\n    \"name\": \"attach_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"table_rows\": {\n    \"name\": \"table_rows\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,8H3V4h18V8z M21,10H3v4h18V10z M21,16H3v4h18V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M17,7H3V4h14V7z M17,8.5H3v3h14V8.5z M17,13H3v3h14V13z\\\"></path>\"\n      }\n    }\n  },\n  \"format_paint\": {\n    \"name\": \"format_paint\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M18 4V2H4v6h14V6h1v4H9v12h4V12h8V4h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_rule\": {\n    \"name\": \"horizontal_rule\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><rect fill-rule=\\\"evenodd\\\" height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9\\\"></rect></g>\"\n      }\n    }\n  },\n  \"subscript\": {\n    \"name\": \"subscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,18v1h3v1h-4v-3h3v-1h-3v-1h4v3H20z M5.88,18h2.66l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99 h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,15v1h2v1h-3v-3l2,0l0-1h-2v-1l3,0v3L16,15z M5.63,14h1.9l2.43-3.87h0.08L12.47,14h1.9l-3.32-5.2l3.1-4.8h-1.91 l-2.19,3.56H9.96L7.75,4h-1.9l3.09,4.8L5.63,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_inner\": {\n    \"name\": \"border_inner\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"wrap_text\": {\n    \"name\": \"wrap_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"schema\": {\n    \"name\": \"schema\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,7.75v1.5h-2v-1.5h-2V6.5h2V2H4v4.5h2v1.25H4v4.5h2V14H4v4.5h5.5V14h-2v-1.75h2v-1.5h2v1.5H17v-4.5H11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_fill\": {\n    \"name\": \"format_color_fill\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,17.62L17.62,10l-10-10L6.21,1.41l2.38,2.38L2.38,10L10,17.62z M10,5.21L14.79,10H5.21 L10,5.21z\\\" enable-background=\\\"new\\\"></path><path d=\\\"M19,17c1.1,0,2-0.9,2-2c0-1.33-2-3.5-2-3.5s-2,2.17-2,3.5C17,16.1,17.9,17,19,17z\\\" enable-background=\\\"new\\\"></path><rect enable-background=\\\"new\\\" height=\\\"4\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"20\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15.25,14c0.96,0,1.75-0.79,1.75-1.75c0-1.16-1.75-3.06-1.75-3.06s-1.75,1.9-1.75,3.06C13.5,13.21,14.29,14,15.25,14z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect></g><g><path d=\\\"M8,13.57L13.57,8l-8-8L4.51,1.06l2.43,2.43L2.43,8L8,13.57z M8,4.56L11.44,8H4.56L8,4.56z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"format_textdirection_r_to_l\": {\n    \"name\": \"format_textdirection_r_to_l\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"pentagon\": {\n    \"name\": \"pentagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"2,9 6,21 18,21 22,9 12,2\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"2,7.5 5.3,17 14.7,17 18,7.5 10,2\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"strikethrough_s\": {\n    \"name\": \"strikethrough_s\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29.48-.35 1.05-.63 1.7-.83.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit_outline\": {\n    \"name\": \"mode_edit_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,17.25V21h3.75L17.81,9.94l-3.75-3.75L3,17.25z M21.41,6.34l-3.75-3.75l-2.53,2.54l3.75,3.75L21.41,6.34z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"11.62,5.38 3,14 3,17 6,17 14.62,8.38\\\"></polygon><rect height=\\\"4.24\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 0.9061 12.0913)\\\" width=\\\"2.45\\\" x=\\\"13.82\\\" y=\\\"2.83\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"stacked_line_chart\": {\n    \"name\": \"stacked_line_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off_csred\": {\n    \"name\": \"money_off_csred\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart_outline\": {\n    \"name\": \"pie_chart_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93z\\\"></path>\"\n      }\n    }\n  },\n  \"type_specimen\": {\n    \"name\": \"type_specimen\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"4,6 2,6 2,22 18,22 18,20 4,20\\\"></polygon><path d=\\\"M22,2H6v16h16V2z M16.63,14.5l-0.8-2.3h-3.63l-0.82,2.3H9.81l3.38-9h1.61l3.38,9H16.63z\\\"></path><polygon points=\\\"13.96,7.17 12.65,10.89 15.34,10.89 14.04,7.17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,2H5v13h13V2z M13.54,12l-0.63-1.79h-2.83L9.46,12H8.24l2.63-7h1.25l2.63,7H13.54z\\\"></path><polygon points=\\\"3.5,5 2,5 2,18 15,18 15,16.5 3.5,16.5\\\"></polygon><polygon points=\\\"11.47,6.3 10.45,9.19 12.55,9.19 11.53,6.3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"margin\": {\n    \"name\": \"margin\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,3v18h18V3H3z M9,13H7v-2h2V13z M9,9H7V7h2V9z M13,13h-2v-2h2V13z M13,9h-2V7h2V9z M17,13h-2v-2h2V13z M17,9h-2V7h2V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_indent_decrease\": {\n    \"name\": \"format_indent_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_top\": {\n    \"name\": \"align_vertical_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,22h3V6H7V22z M14,16h3V6h-3V16z\\\"></path>\"\n      }\n    }\n  },\n  \"checklist\": {\n    \"name\": \"checklist\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,7h-9v2h9V7z M22,15h-9v2h9V15z M5.54,11L2,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,11z M5.54,19L2,15.46 l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,7.5h-7V6h7V7.5z M18,12.5h-7V14h7V12.5z M3.06,5.11L2,6.17L4.83,9l4.6-4.6L8.36,3.34L4.83,6.88L3.06,5.11z M3.06,11.61 L2,12.67l2.83,2.83l4.6-4.6L8.36,9.84l-3.54,3.54L3.06,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_drive_file\": {\n    \"name\": \"insert_drive_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4.01 2L4 22h16V8l-6-6H4.01zM13 9V3.5L18.5 9H13z\\\"></path>\"\n      }\n    }\n  },\n  \"data_object\": {\n    \"name\": \"data_object\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"4,10 2,10 2,14 4,14 4,20 10,20 10,18 6,18 6,12.5 4,12.5 4,11.5 6,11.5 6,6 10,6 10,4 4,4\\\"></polygon><polygon points=\\\"20,10 20,4 14,4 14,6 18,6 18,11.5 20,11.5 20,12.5 18,12.5 18,18 14,18 14,20 20,20 20,14 22,14 22,10\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"4,8.5 2,8.5 2,11.5 4,11.5 4,16 8,16 8,14.5 5.5,14.5 5.5,10.25 3.5,10.25 3.5,9.75 5.5,9.75 5.5,5.5 8,5.5 8,4 4,4\\\"></polygon><polygon points=\\\"16,8.5 16,4 12,4 12,5.5 14.5,5.5 14.5,9.75 16.5,9.75 16.5,10.25 14.5,10.25 14.5,14.5 12,14.5 12,16 16,16 16,11.5 18,11.5 18,8.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"height\": {\n    \"name\": \"height\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><polygon points=\\\"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><polygon points=\\\"11,7 14,7 10,3.01 6,7 9,7 9,13 6,13 10,16.99 14,13 11,13\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"format_size\": {\n    \"name\": \"format_size\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"border_color\": {\n    \"name\": \"border_color\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,24H2v-4h20V24z M13.06,5.19l3.75,3.75L7.75,18H4v-3.75L13.06,5.19z M17.88,7.87 l-3.75-3.75l2.53-2.54l3.75,3.75L17.88,7.87z\\\" enable-background=\\\"new\\\"></path></g>\"\n      }\n    }\n  },\n  \"draw\": {\n    \"name\": \"draw\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.85,10.39l2.48-2.48l-4.24-4.24l-2.48,2.48L18.85,10.39z M13.19,7.56L4,16.76V21h4.24l9.19-9.19L13.19,7.56z M19,17.5 c0,2.19-2.54,3.5-5,3.5c-0.48,0-1-0.07-1-0.07c0-0.34,0-2.03,0-2.03S13.46,19,14,19c1.54,0,3-0.73,3-1.5c0-0.47-0.48-0.87-1.23-1.2 l1.48-1.48C18.32,15.45,19,16.29,19,17.5z M4.58,13.35C3.61,12.79,3,12.06,3,11c0-1.8,1.89-2.63,3.56-3.36C7.59,7.18,9,6.56,9,6 c0-0.41-0.78-1-2-1C5.76,5,5,5.61,5,6H3c0-1.65,1.7-3,4-3c2.24,0,4,1.32,4,3c0,1.87-1.93,2.72-3.64,3.47C6.42,9.88,5,10.5,5,11 c0,0.31,0.43,0.6,1.07,0.86L4.58,13.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.35,8.83l1.77-1.77l-3.18-3.18l-1.77,1.77L15.35,8.83z M11.11,6.71L4,13.82V17h3.18l7.11-7.11L11.11,6.71z M4.51,11.18 C3.59,10.76,3,10.16,3,9.25c0-1.31,1.39-1.99,2.61-2.59C6.45,6.24,7.5,5.73,7.5,5.25C7.5,4.91,6.83,4.5,6,4.5 c-0.94,0-1.5,0.45-1.5,0.75H3C3,3.97,4.34,3,6,3c1.47,0,3,0.84,3,2.25C9,6.66,7.55,7.37,6.27,8C5.56,8.35,4.5,8.87,4.5,9.25 c0,0.3,0.48,0.56,1.17,0.78L4.51,11.18z M14.14,12.16c0.83,0.48,1.36,1.14,1.36,2.09c0,1.94-2.44,2.75-3.75,2.75 C11.33,17,11,16.98,11,16.98v-1.5c0.25,0.03,0.37,0.03,0.75,0.03c0.77,0,2.25-0.49,2.25-1.25c0-0.39-0.38-0.71-0.97-0.97 L14.14,12.16z\\\"></path>\"\n      }\n    }\n  },\n  \"border_horizontal\": {\n    \"name\": \"border_horizontal\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"short_text\": {\n    \"name\": \"short_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4 9h16v2H4V9zm0 4h10v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"add_chart\": {\n    \"name\": \"add_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"19,19 5,19 5,5 14,5 14,3 3,3 3,21 21,21 21,10 19,10\\\"></polygon><rect height=\\\"10\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"10\\\"></rect><polygon points=\\\"19,5 19,3 17,3 17,5 15,5 15,7 17,7 17,9 19,9 19,7 21,7 21,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"format_quote\": {\n    \"name\": \"format_quote\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M5 17h3l2-4V7H4v6h3l-2 4zm10 0h3l2-4V7h-6v6h3l-2 4z\\\"></path>\"\n      }\n    }\n  },\n  \"move_up\": {\n    \"name\": \"move_up\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,13c0-2.45,1.76-4.47,4.08-4.91L5.59,9.59L7,11l4-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46,1,9.42,1,13 c0,3.87,3.13,7,7,7h3v-2H8C5.24,18,3,15.76,3,13z\\\"></path><path d=\\\"M13,13v7h9v-7H13z M20,18h-5v-3h5V18z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><path d=\\\"M11,16h7v-5h-7V16z M12.5,12.5h4v2h-4V12.5z\\\"></path><path d=\\\"M5.57,8.06l1.06,1.06L9.5,6.25L6.62,3.37L5.56,4.43l1.06,1.06V5.5H6.25C3.35,5.5,1,7.85,1,10.75C1,13.65,3.35,16,6.25,16 H9.5v-1.5H6.25c-2.07,0-3.75-1.68-3.75-3.75C2.5,8.68,4.18,7,6.25,7h0.37v0.01L5.57,8.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_strikethrough\": {\n    \"name\": \"format_strikethrough\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"south_west\": {\n    \"name\": \"south_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel\": {\n    \"name\": \"cancel\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"pivot_table_chart\": {\n    \"name\": \"pivot_table_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"5\\\" width=\\\"11\\\" x=\\\"10\\\" y=\\\"3\\\"></rect><rect height=\\\"11\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"5\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><polygon points=\\\"18,9 14,13 17,13 17,17 13,17 13,14 9,18 13,22 13,19 19,19 19,13 22,13\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"arrow_drop_down_circle\": {\n    \"name\": \"arrow_drop_down_circle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13l-4-4h8l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"north_east\": {\n    \"name\": \"north_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z\\\"></path>\"\n      }\n    }\n  },\n  \"check\": {\n    \"name\": \"check\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\\\"></path>\"\n      }\n    }\n  },\n  \"apps_outage\": {\n    \"name\": \"apps_outage\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,8h4V4H4V8z M10,20h4v-4h-4V20z M4,20h4v-4H4V20z M4,14h4v-4H4V14z M10,14h4v-4h-4V14z M16,20h4v-4h-4V20z M19,0 c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S21.76,0,19,0z M19.5,8h-1V7h1V8z M19.5,6h-1V2h1V6z M16,14h4v-2.07 C19.67,11.98,19.34,12,19,12c-1.07,0-2.09-0.24-3-0.68V14z M10,4v4h2.68C12.24,7.09,12,6.07,12,5c0-0.34,0.02-0.67,0.07-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,7H4V4h3V7z M7,8.5H4v3h3V8.5z M11.5,8.5h-3v3h3V8.5z M7,13H4v3h3V13z M11.5,13h-3v3h3V13z M16,13h-3v3h3V13z M20,4 c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S20,1.79,20,4z M16.5,5h-1v1h1V5z M16.5,2h-1v2h1V2z M16,9.5v2h-3V8.61 C13.86,9.17,14.89,9.5,16,9.5z M11.39,7H8.5V4h2C10.5,5.11,10.83,6.14,11.39,7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_down\": {\n    \"name\": \"arrow_drop_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 10l5 5 5-5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward\": {\n    \"name\": \"arrow_forward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"more_vert\": {\n    \"name\": \"more_vert\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"last_page\": {\n    \"name\": \"last_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z\\\"></path>\"\n      }\n    }\n  },\n  \"west\": {\n    \"name\": \"west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z\\\"></path>\"\n      }\n    }\n  },\n  \"east\": {\n    \"name\": \"east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_direction\": {\n    \"name\": \"assistant_direction\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.5,10H8v5h2v-3h3.5v2.5L17,11l-3.5-3.5V10z M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M20.31,12 l-8.34,8.37L3.62,12l8.34-8.37L20.31,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apps\": {\n    \"name\": \"apps\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"more_horiz\": {\n    \"name\": \"more_horiz\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"menu_open\": {\n    \"name\": \"menu_open\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward_ios\": {\n    \"name\": \"arrow_forward_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><polygon points=\\\"6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><polygon points=\\\"4.59,16.59 6,18 14,10 6,2 4.59,3.41 11.17,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"arrow_back\": {\n    \"name\": \"arrow_back\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_upward\": {\n    \"name\": \"arrow_upward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_left\": {\n    \"name\": \"subdirectory_arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"waterfall_chart\": {\n    \"name\": \"waterfall_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,4h3v16h-3V4z M3,13h3v7H3V13z M14,4h3v3h-3V4z M10,5h3v4h-3V5z M7,10h3v4H7V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_downward\": {\n    \"name\": \"arrow_downward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_right\": {\n    \"name\": \"switch_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" transform=\\\"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios\": {\n    \"name\": \"arrow_back_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_right\": {\n    \"name\": \"chevron_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_left\": {\n    \"name\": \"chevron_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios_new\": {\n    \"name\": \"arrow_back_ios_new\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><polygon points=\\\"17.77,3.77 16,2 6,12 16,22 17.77,20.23 9.54,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon points=\\\"14.41,3.41 13,2 5,10 13,18 14.41,16.59 7.83,10\\\"></polygon>\"\n      }\n    }\n  },\n  \"unfold_more\": {\n    \"name\": \"unfold_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen\": {\n    \"name\": \"fullscreen\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"close\": {\n    \"name\": \"close\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\\\"></path>\"\n      }\n    }\n  },\n  \"payments\": {\n    \"name\": \"payments\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M23 7v13H4v-2h17V7h2zm-4 9H1V4h18v12zm-6-6c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"expand_more\": {\n    \"name\": \"expand_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen_exit\": {\n    \"name\": \"fullscreen_exit\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_home_work\": {\n    \"name\": \"add_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,11.68V11L8,6l-7,5v10h5v-6h4v6h1.68C11.25,20.09,11,19.08,11,18C11,15.21,12.64,12.81,15,11.68z\\\"></path><path d=\\\"M23,13.11V3H10v1.97l7,5v1.11c0.33-0.05,0.66-0.08,1-0.08C19.96,11,21.73,11.81,23,13.11z M17,7h2v2h-2V7z\\\"></path><g><path d=\\\"M23,18c0-2.76-2.24-5-5-5s-5,2.24-5,5s2.24,5,5,5S23,20.76,23,18z M17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M19,11.23V3H9v1.96l2.5,1.82V6H13v1.5h-0.51l1.01,0.74v1.48C13.98,9.58,14.48,9.5,15,9.5C16.58,9.5,18,10.17,19,11.23z M14.5,6H16v1.5h-1.5V6z\\\"></path></g><g><path d=\\\"M12,10.39V9L6.5,5L1,9v8h4v-4.5h3V17h1.88c-0.24-0.62-0.38-1.29-0.38-2C9.5,13.07,10.5,11.38,12,10.39z\\\"></path></g><g><path d=\\\"M19,15c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4S19,17.21,19,15z M14.5,17v-1.5H13v-1h1.5V13h1v1.5H17v1h-1.5V17 H14.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"offline_share\": {\n    \"name\": \"offline_share\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><polygon points=\\\"6,5 4,5 4,23 16,23 16,21 6,21\\\"></polygon></g><g><path d=\\\"M20,1H8v18h12V1z M18,15h-8V5h8V15z\\\"></path></g><g><polygon points=\\\"12.5,10.25 14.5,10.25 14.5,12 17,9.5 14.5,7 14.5,8.75 11,8.75 11,12 12.5,12\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_right\": {\n    \"name\": \"arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 17l5-5-5-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"app_settings_alt\": {\n    \"name\": \"app_settings_alt\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05c0.03-0.02,0.06-0.04,0.09-0.06 l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C19.5,12.83,18.83,13.5,18,13.5z M5,23V1h14v6h-2V6H7v12h10v-1 h2v6H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"south\": {\n    \"name\": \"south\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z\\\"></path>\"\n      }\n    }\n  },\n  \"maps_home_work\": {\n    \"name\": \"maps_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"1,11 1,21 6,21 6,15 10,15 10,21 15,21 15,11 8,6\\\"></polygon><path d=\\\"M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10z M19,9h-2V7h2V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"menu\": {\n    \"name\": \"menu\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z\\\"></path>\"\n      }\n    }\n  },\n  \"double_arrow\": {\n    \"name\": \"double_arrow\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12\\\"></polygon><polygon points=\\\"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"9.21,15 12.43,15 16,10 12.43,5 9.21,5 12.79,10\\\"></polygon><polygon points=\\\"4.21,15 7.43,15 11,10 7.43,5 4.21,5 7.79,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"home_work\": {\n    \"name\": \"home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"1,11 1,21 6,21 6,15 10,15 10,21 15,21 15,11 8,6\\\"></polygon><path d=\\\"M10,3v1.97l7,5V11h2v2h-2v2h2v2h-2v4h6V3H10z M19,9h-2V7h2V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9,3v1.96l2.5,1.82V6H13v1.5h-0.51l1.01,0.74V17H19V3H9z M16,14h-1.5v-1.5H16V14z M16,10.75h-1.5v-1.5H16V10.75z M16,7.5 h-1.5V6H16V7.5z\\\"></path></g><g><polygon points=\\\"1,9 1,17 5,17 5,13 8,13 8,17 12,17 12,9 6.5,5\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"north\": {\n    \"name\": \"north\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z\\\"></path>\"\n      }\n    }\n  },\n  \"north_west\": {\n    \"name\": \"north_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z\\\"></path>\"\n      }\n    }\n  },\n  \"campaign\": {\n    \"name\": \"campaign\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z\\\"></path><path d=\\\"M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z\\\"></path><path d=\\\"M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z\\\"></path><path d=\\\"M8,9H2v6h3v4h2v-4h1l5,3V6L8,9z\\\"></path><path d=\\\"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_less\": {\n    \"name\": \"expand_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_right\": {\n    \"name\": \"subdirectory_arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_up\": {\n    \"name\": \"arrow_drop_up\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14l5-5 5 5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less\": {\n    \"name\": \"unfold_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_circle_down\": {\n    \"name\": \"expand_circle_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,15.5L7.5,11l1.42-1.41L12,12.67 l3.08-3.08L16.5,11L12,15.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,12.6L6.63,9.23l1.06-1.06L10,10.48l2.31-2.31l1.06,1.06 L10,12.6z\\\"></path>\"\n      }\n    }\n  },\n  \"legend_toggle\": {\n    \"name\": \"legend_toggle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,15H4v-1h12V15z M16,11H4v1h12V11z M4,9l4-2.78L12,9l4-2.78V5l-4,2.78L8,5L4,7.78L4,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"first_page\": {\n    \"name\": \"first_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_left\": {\n    \"name\": \"switch_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z\\\"></path>\"\n      }\n    }\n  },\n  \"refresh\": {\n    \"name\": \"refresh\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_east\": {\n    \"name\": \"south_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_left\": {\n    \"name\": \"arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M14 7l-5 5 5 5V7z\\\"></path>\"\n      }\n    }\n  },\n  \"play_arrow\": {\n    \"name\": \"play_arrow\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5v14l11-7L8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle_on\": {\n    \"name\": \"shuffle_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,1v22h22V1H1z M5.41,4l5.18,5.17l-1.42,1.41L4,5.41L5.41,4z M20,20h-5.5l2.05-2.05l-3.13-3.13l1.41-1.41l3.13,3.13 L20,14.5V20z M20,9.5l-2.04-2.04L5.41,20L4,18.59L16.54,6.04L14.5,4H20V9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"library_add\": {\n    \"name\": \"library_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_video\": {\n    \"name\": \"featured_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-11 9H3V5h9v7z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_play_next\": {\n    \"name\": \"queue_play_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v16h7v2h8v-2h2v-2H3V5h18v8h2V3zm-10 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle\": {\n    \"name\": \"pause_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M9,13H7.5V7H9V13z M12.5,13H11V7h1.5V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mic_off\": {\n    \"name\": \"mic_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm4 .4h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"radio\": {\n    \"name\": \"radio\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 6.67V22h20V6H8.3l8.26-3.34L15.88 1 2 6.67zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z\\\"></path>\"\n      }\n    }\n  },\n  \"art_track\": {\n    \"name\": \"art_track\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zM12 7v10H2V7h10zm-1.5 8l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_forward\": {\n    \"name\": \"fast_forward\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,18l8.5-6L4,6V18z M13,6v12l8.5-6L13,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"playlist_add\": {\n    \"name\": \"playlist_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18z M3,16h7v-2H3V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect><polygon points=\\\"14.75,11.25 14.75,8 13.25,8 13.25,11.25 10,11.25 10,12.75 13.25,12.75 13.25,16 14.75,16 14.75,12.75 18,12.75 18,11.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"5k\": {\n    \"name\": \"5k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M11,10.5H8v1h3V15H6.5v-1.5h3v-1h-3V9H11V10.5z M18,15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25,9H18 l-2.25,3L18,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_30\": {\n    \"name\": \"forward_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z\\\"></path>\"\n      }\n    }\n  },\n  \"note\": {\n    \"name\": \"note\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 10l-6-6H2v16h20V10zm-7-4.5l5.5 5.5H15V5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"9k\": {\n    \"name\": \"9k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,10h1.5v1.5H8V10z M21,3H3v18h18V3z M11,9v6H6.5v-1.5h3v-1h-3V9H11z M18,15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25,9 H18l-2.25,3L18,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"1k_plus\": {\n    \"name\": \"1k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M9,15H7.5v-4.5H6V9h3V15z M13.75,15L12,12.75V15h-1.5V9H12v2.25L13.75,9h1.75l-2.25,3l2.25,3H13.75z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"2k\": {\n    \"name\": \"2k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M8,12.5v1h3V15H6.5v-3.5h3v-1h-3V9H11v3.5H8z M18,15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25,9H18 l-2.25,3L18,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"skip_previous\": {\n    \"name\": \"skip_previous\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 6h2v12H6V6zm3.5 6l8.5 6V6l-8.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"library_add_check\": {\n    \"name\": \"library_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,2H6v16h16V2z M12.47,14L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,6H2v16h16v-2H4V6z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M4,16h10v1H3V6h1V16z M17,3v11H6V3H17z M15.04,6.38l-0.71-0.71l-4.24,4.24L8.67,8.5L7.96,9.21l2.12,2.12L15.04,6.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"queue\": {\n    \"name\": \"queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"movie\": {\n    \"name\": \"movie\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"airplay\": {\n    \"name\": \"airplay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,22h12l-6-6L6,22z M23,3H1v16h6v-2H3V5h18v12h-4v2h6V3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"control_camera\": {\n    \"name\": \"control_camera\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm12.92 0l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zM8.46 5.54l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle>\"\n      }\n    }\n  },\n  \"replay_10\": {\n    \"name\": \"replay_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam_off\": {\n    \"name\": \"videocam_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 16.61V6.5l-4 4V6h-6.61zM3.41 1.86L2 3.27 4.73 6H3v12h13.73l3 3 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check_circle\": {\n    \"name\": \"playlist_add_check_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M7,7h7v2H7V7z M7,10h7v2H7V10z M10,15H7v-2h3V15z M14.05,18.36l-2.83-2.83l1.41-1.41l1.41,1.41L17.59,12L19,13.41L14.05,18.36z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M6,6h5.5v1.5H6V6z M6,8.5h5.5V10H6V8.5z M8.5,12.5H6V11h2.5 V12.5z M11.76,15l-2.12-2.12l1.06-1.06l1.06,1.06l2.47-2.47l1.06,1.06L11.76,15z\\\"></path>\"\n      }\n    }\n  },\n  \"6k_plus\": {\n    \"name\": \"6k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.5,12.5h1V14h-1V12.5z M21,3H3v18h18V3z M10,10.5H7.5v1H10V15H6V9h4V10.5z M16,15h-1.75l-1.75-2.25V15H11V9h1.5v2.25 L14.25,9H16l-2.25,3L16,15z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8k_plus\": {\n    \"name\": \"8k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.5,12.5h1V14h-1V12.5z M7.5,10h1v1.5h-1V10z M21,3H3v18h18V3z M10,14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4 c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1V14z M16,15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3L16,15z M19,12.5h-1.5V14 h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mic\": {\n    \"name\": \"mic\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z\\\"></path><path d=\\\"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"replay_5\": {\n    \"name\": \"replay_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle_filled\": {\n    \"name\": \"play_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"repeat\": {\n    \"name\": \"repeat\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_play_list\": {\n    \"name\": \"featured_play_list\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-11 8H3V9h9v2zm0-4H3V5h9v2z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset\": {\n    \"name\": \"web_asset\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 4v16h18V4H3zm16 14H5V8h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"not_interested\": {\n    \"name\": \"not_interested\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset_off\": {\n    \"name\": \"web_asset_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H22v15.17l-2-2V8h-9.17L6.83,4z M20.49,23.31L17.17,20H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M15.17,18 l-10-10H4v10H15.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M6.12,4H18v11.88l-1.5-1.5V7H9.12L6.12,4z M16.72,18.84L13.88,16H2V4.12L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M12.38,14.5L4.88,7H3.5v7.5H12.38z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_settings\": {\n    \"name\": \"video_settings\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"3,6 21,6 21,11 23,11 23,4 1,4 1,20 12,20 12,18 3,18\\\"></polygon><polygon points=\\\"15,12 9,8 9,16\\\"></polygon><path d=\\\"M22.72,17.57l1.23-0.98l-1.25-2.17L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42L20.25,13h-2.5l-0.24,1.58 c-0.26,0.11-0.51,0.26-0.74,0.42l-1.48-0.58l-1.25,2.17l1.24,0.99c-0.03,0.29-0.04,0.58-0.01,0.86l-1.23,0.98l1.25,2.17L16.77,21 c0.23,0.17,0.48,0.31,0.75,0.42L17.75,23h2.5l0.24-1.58c0.26-0.11,0.51-0.26,0.74-0.42l1.48,0.58l1.25-2.17l-1.24-0.99 C22.75,18.14,22.75,17.85,22.72,17.57z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S19.83,19.5,19,19.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"3,5 17,5 17,9 18,9 18,4 2,4 2,16 11,16 11,15 3,15\\\"></polygon><path d=\\\"M19.1,14.2l0.87-0.69l-0.88-1.52l-1.03,0.4c-0.16-0.12-0.34-0.22-0.53-0.3L17.38,11h-1.75l-0.16,1.1 c-0.18,0.08-0.36,0.18-0.52,0.3l-1.04-0.41l-0.88,1.52l0.87,0.7c-0.02,0.2-0.03,0.4,0,0.6l-0.87,0.69l0.88,1.52l1.03-0.4 c0.16,0.12,0.34,0.22,0.53,0.3L15.63,18h1.75l0.16-1.1c0.18-0.08,0.36-0.18,0.52-0.3l1.04,0.41l0.88-1.52l-0.87-0.7 C19.12,14.59,19.12,14.4,19.1,14.2z M16.5,15.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C17.5,15.05,17.05,15.5,16.5,15.5z\\\"></path><polygon points=\\\"8,13 12.5,10 8,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"recent_actors\": {\n    \"name\": \"recent_actors\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM15 5H1v14h14V5zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption\": {\n    \"name\": \"closed_caption\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_up\": {\n    \"name\": \"volume_up\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z\\\"></path>\"\n      }\n    }\n  },\n  \"explicit\": {\n    \"name\": \"explicit\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-6 6h-4v2h4v2h-4v2h4v2H9V7h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_play\": {\n    \"name\": \"playlist_play\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"16,13 16,21 22,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,10.5 13,17 18,13.75\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"volume_down\": {\n    \"name\": \"volume_down\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 12c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z\\\"></path>\"\n      }\n    }\n  },\n  \"missed_video_call\": {\n    \"name\": \"missed_video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"lyrics\": {\n    \"name\": \"lyrics\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,9c0-2.04,1.24-3.79,3-4.57V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9c1.1,0,2-0.9,2-2v-2.42 C15.24,12.8,14,11.05,14,9z M10,14H6v-2h4V14z M13,11H6V9h7V11z M13,8H6V6h7V8z\\\"></path><path d=\\\"M20,6.18C19.69,6.07,19.35,6,19,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V3h2V1h-4V6.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,7.5c0-1.48,0.81-2.76,2-3.45V3.5C14,2.67,13.33,2,12.5,2h-9C2.67,2,2,2.67,2,3.5V18l3-3h7.5c0.83,0,1.5-0.67,1.5-1.5 v-2.56C12.81,10.25,12,8.97,12,7.5z M8,12H5v-1.5h3V12z M11,9.25H5v-1.5h6V9.25z M11,6.5H5V5h6V6.5z\\\"></path><path d=\\\"M17,5.21C16.69,5.08,16.36,5,16,5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-5H20V1h-3V5.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interpreter_mode\": {\n    \"name\": \"interpreter_mode\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20.5,16.5c-0.83,0-1.5-0.67-1.5-1.5v-2.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5V15C22,15.83,21.33,16.5,20.5,16.5z M20,20h1c0,0,0-1.54,0-1.54c1.69-0.24,3-1.7,3-3.46h-1c0,1.38-1.12,2.5-2.5,2.5S18,16.38,18,15h-1c0,1.76,1.31,3.22,3,3.46 C20,18.46,20,20,20,20z M9,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c0.47,0,0.92,0.08,1.34,0.23C9.5,5.26,9,6.57,9,8 c0,1.43,0.5,2.74,1.34,3.77C9.92,11.92,9.47,12,9,12z M7.11,13.13C5.79,14.05,5,15.57,5,17.22V20H1v-2.78 c0-1.12,0.61-2.15,1.61-2.66C3.85,13.92,5.37,13.37,7.11,13.13z M11,8c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4 S11,10.21,11,8z M18.32,20c-1.67-0.81-2.82-2.52-2.82-4.5c0-0.89,0.23-1.73,0.64-2.45C15.77,13.02,15.39,13,15,13 c-2.53,0-4.71,0.7-6.39,1.56C7.61,15.07,7,16.1,7,17.22V20L18.32,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,10c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,5.34,9,7S10.34,10,12,10z M16.87,13.38c-0.62,0-1.12-0.5-1.12-1.12v-1.88 c0-0.62,0.5-1.12,1.13-1.12c0.62,0,1.12,0.5,1.12,1.12v1.88C18,12.87,17.5,13.38,16.87,13.38z M16.5,16h0.75c0,0,0-1.15,0-1.15 c1.27-0.18,2.25-1.28,2.25-2.6h-0.75c0,1.03-0.84,1.88-1.88,1.88S15,13.28,15,12.25h-0.75c0,1.32,0.98,2.42,2.25,2.6 C16.5,14.85,16.5,16,16.5,16z M8.38,9.67C7.83,8.92,7.5,8,7.5,7c0-1,0.33-1.92,0.88-2.67C7.96,4.12,7.5,4,7,4C5.34,4,4,5.34,4,7 s1.34,3,3,3C7.5,10,7.96,9.88,8.38,9.67z M4.5,16H1v-1.91c0-0.7,0.36-1.36,0.97-1.72c1.29-0.76,2.76-1.23,4.33-1.35 C5.89,11.22,4.5,12.2,4.5,14.09V16z M6,16v-1.91c0-0.7,0.36-1.36,0.97-1.72C8.44,11.5,10.16,11,12,11c0.49,0,0.97,0.04,1.45,0.1 c-0.82,1.84-0.03,4.01,1.79,4.9H6z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_off\": {\n    \"name\": \"closed_caption_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g enable-background=\\\"new\\\"><path d=\\\"M21,4H3v16h18V4z M11,11H9.5v-0.5h-2v3h2V13H11v2H6V9h5V11z M18,11h-1.5v-0.5h-2v3h2V13H18v2h-5V9h5V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"7k_plus\": {\n    \"name\": \"7k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M8.5,15H6.75l1.38-4.5H5.5V9h4.86L8.5,15z M16,15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3 L16,15z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stop_circle\": {\n    \"name\": \"stop_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M16,16H8V8h8V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M13,13H7V7h6V13z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle_outline\": {\n    \"name\": \"pause_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"hd\": {\n    \"name\": \"hd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_from_queue\": {\n    \"name\": \"remove_from_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2H8v-2h8z\\\"></path>\"\n      }\n    }\n  },\n  \"skip_next\": {\n    \"name\": \"skip_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pause\": {\n    \"name\": \"pause\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h4V5H6v14zm8-14v14h4V5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_disabled\": {\n    \"name\": \"closed_caption_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H21v14.17L17.83,15H18v-2h-1.5v0.5h-0.17l-1.83-1.83V10.5h2V11H18V9h-5v1.17L6.83,4z M19.78,22.61L17.17,20H3V5.83 L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M11,13.83L10.17,13H9.5v0.5h-2v-3h0.17L6.17,9H6v6h5V13.83z\\\"></path>\"\n      }\n    }\n  },\n  \"audio_file\": {\n    \"name\": \"audio_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H4v20h16V8L14,2z M16,13h-3v3.75c0,1.24-1.01,2.25-2.25,2.25S8.5,17.99,8.5,16.75c0-1.24,1.01-2.25,2.25-2.25 c0.46,0,0.89,0.14,1.25,0.38V11h4V13z M13,9V3.5L18.5,9H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2H4v16h12V6L12,2z M13.5,11H11v3c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2c0.37,0,0.7,0.11,1,0.28V9h3.5V11z M11,7 V3l4,4H11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8k\": {\n    \"name\": \"8k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,12.5h1.5V14H8V12.5z M8,10h1.5v1.5H8V10z M21,3H3v18h18V3z M11,10v4c0,0.55-0.45,1-1,1H7.5c-0.55,0-1-0.45-1-1v-4 c0-0.55,0.45-1,1-1H10C10.55,9,11,9.45,11,10z M18,15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3L18,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"4k\": {\n    \"name\": \"4k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-9 10.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing_disabled\": {\n    \"name\": \"hearing_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11,8c0,0.45-0.15,0.85-0.4,1.19L7.81,6.4C8.15,6.15,8.55,6,9,6C10.1,6,11,6.9,11,8z M17.07,17.07L2.93,2.93L2.22,3.64 l2.27,2.27C4.19,6.54,4,7.25,4,8h1c0-0.47,0.09-0.92,0.24-1.34l1.82,1.82C7.24,9.2,7.8,9.76,8.52,9.94l2.1,2.1c0,0,0,0,0,0 c-0.6,0.46-1.23,0.93-1.56,1.92c-0.39,1.16-0.81,1.58-1.42,1.9C7.42,15.95,7.17,16,6.92,16c-0.65,0-1.26-0.42-1.62-1H4.2 c0.42,1.12,1.5,2,2.72,2c0.4,0,0.8-0.08,1.16-0.24c0.96-0.5,1.51-1.21,1.93-2.49c0.23-0.69,0.64-1,1.21-1.43 c0.04-0.03,0.07-0.06,0.11-0.09l5.03,5.03L17.07,17.07z M9.04,4C11.26,4,13,5.71,13,7.9c0,0.72-0.22,1.51-0.63,2.24 c-0.1,0.19-0.21,0.34-0.32,0.49l0.72,0.72c0.16-0.22,0.32-0.45,0.47-0.72C13.73,9.75,14,8.78,14,7.9C14,5.15,11.83,3,9.04,3 C7.75,3,6.59,3.5,5.7,4.29l0.71,0.71C7.12,4.38,8.03,4,9.04,4z M16,8c0-2.19-1-4.14-2.58-5.42l-0.72,0.72C14.1,4.39,15,6.09,15,8 c0,1.55-0.6,2.95-1.57,4.02l0.71,0.71C15.29,11.48,16,9.83,16,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fiber_dvr\": {\n    \"name\": \"fiber_dvr\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 10.5h2v1h-2v-1zm-13 0h2v3h-2v-3zM23 3H1v18h22V3zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 12.9h-.9L21 15h-1.5l-.85-2H17.5v2H16V9h5v3.9z\\\"></path>\"\n      }\n    }\n  },\n  \"video_library\": {\n    \"name\": \"video_library\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zM12 14.5v-9l6 4.5-6 4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing\": {\n    \"name\": \"hearing\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"games\": {\n    \"name\": \"games\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"4k_plus\": {\n    \"name\": \"4k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M11,13.5h-1V15H8.5v-1.5h-3V9H7v3h1.5V9H10v3h1V13.5z M14.75,15L13,12.75V15h-1.5V9H13v2.25L14.75,9h1.75 l-2.25,3l2.25,3H14.75z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"call_to_action\": {\n    \"name\": \"call_to_action\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-2 16H3v-3h18v3z\\\"></path>\"\n      }\n    }\n  },\n  \"play_disabled\": {\n    \"name\": \"play_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.45,13.62 19,12 8,5 8,5.17\\\"></polygon><polygon points=\\\"2.81,2.81 1.39,4.22 8,10.83 8,19 12.99,15.82 19.78,22.61 21.19,21.19\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"slow_motion_video\": {\n    \"name\": \"slow_motion_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zm1.61 6.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_manual_record\": {\n    \"name\": \"fiber_manual_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"8\\\"></circle>\"\n      }\n    }\n  },\n  \"sort_by_alpha\": {\n    \"name\": \"sort_by_alpha\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_queue\": {\n    \"name\": \"add_to_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_30\": {\n    \"name\": \"replay_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"video_label\": {\n    \"name\": \"video_label\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-2 13H3V5h18v11z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check\": {\n    \"name\": \"playlist_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"20.59,11.93 16.34,16.17 14.22,14.05 12.81,15.46 16.34,19 22,13.34\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"16.94,9.34 13.4,12.88 11.64,11.11 10.58,12.17 13.4,15 18,10.4\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"subtitles\": {\n    \"name\": \"subtitles\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2v16h20V4zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"library_books\": {\n    \"name\": \"library_books\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_rewind\": {\n    \"name\": \"fast_rewind\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"subscriptions\": {\n    \"name\": \"subscriptions\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 8v12H2V10h20zm-6 6l-6-3.27v6.53L16 16z\\\"></path>\"\n      }\n    }\n  },\n  \"9k_plus\": {\n    \"name\": \"9k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7.5,10h1v1.5h-1V10z M21,3H3v18h18V3z M10,9v6H6v-1.5h2.5v-1H6V9H10z M16,15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25,9 H16l-2.25,3L16,15z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"av_timer\": {\n    \"name\": \"av_timer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9 4.97 0 9-4.03 9-9s-4.03-9-9-9h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"web\": {\n    \"name\": \"web\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,4H2v16h20V4z M4,9h10.5v3.5H4V9z M4,14.5h10.5V18L4,18V14.5z M20,18l-3.5,0V9H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"volume_mute\": {\n    \"name\": \"volume_mute\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 9v6h4l5 5V4l-5 5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_off\": {\n    \"name\": \"volume_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z\\\"></path>\"\n      }\n    }\n  },\n  \"replay\": {\n    \"name\": \"replay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,5V1L7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8S16.42,5,12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"surround_sound\": {\n    \"name\": \"surround_sound\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,4H2v16h20V4z M7.76,16.24l-1.41,1.41C4.78,16.1,4,14.05,4,12s0.78-4.1,2.34-5.66l1.41,1.41C6.59,8.93,6,10.46,6,12 S6.59,15.07,7.76,16.24z M12,16c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4S14.21,16,12,16z M17.66,17.66l-1.41-1.41 C17.41,15.07,18,13.54,18,12s-0.59-3.07-1.76-4.24l1.41-1.41C19.22,7.9,20,9.95,20,12S19.22,16.1,17.66,17.66z M12,10 c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_10\": {\n    \"name\": \"forward_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z\\\"></path><polygon points=\\\"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16\\\"></polygon><path d=\\\"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"snooze\": {\n    \"name\": \"snooze\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle\": {\n    \"name\": \"play_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M9.5,16.5v-9l7,4.5L9.5,16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M8,13.5v-7l5.5,3.5L8,13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pause_circle_filled\": {\n    \"name\": \"pause_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M11,16H9V8h2V16z M15,16h-2V8h2V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"play_circle_outline\": {\n    \"name\": \"play_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"video_file\": {\n    \"name\": \"video_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,2H4v20h16V8L14,2z M13,9V3.5L18.5,9H13z M14,14l2-1.06v4.12L14,16v2H8v-6h6V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2H4v16h12V6L12,2z M13,14c0,0-0.78-0.55-1.5-1.05v1.55H7V10h4.5v1.55L13,10.5V14z M11,7V3l4,4H11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one\": {\n    \"name\": \"repeat_one\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_circle\": {\n    \"name\": \"playlist_add_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M7,7h7v2H7V7z M10,15H7v-2h3V15z M7,12v-2h7v2H7z M19,15h-2v2h-2v-2h-2v-2h2v-2h2v2h2V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M6,6h5.5v1.5H6V6z M8.5,12.5H6V11h2.5V12.5z M6,10V8.5h5.5 V10H6z M15.5,12.5H14V14h-1.5v-1.5H11V11h1.5V9.5H14V11h1.5V12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_remove\": {\n    \"name\": \"playlist_remove\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M3,16h7v-2H3V16z M14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14 L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M12.07,17.02l1.94-1.95l1.94,1.95l1.07-1.07l-1.95-1.94 l1.95-1.94L15.95,11l-1.94,1.95L12.07,11L11,12.07l1.95,1.94L11,15.95L12.07,17.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_5\": {\n    \"name\": \"forward_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z\\\"></path>\"\n      }\n    }\n  },\n  \"5k_plus\": {\n    \"name\": \"5k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M10,10.5H7.5v1H10V15H6v-1.5h2.5v-1H6V9h4V10.5z M16,15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25,9H16 l-2.25,3L16,15z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"6k\": {\n    \"name\": \"6k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,12.5h1.5V14H8V12.5z M21,3H3v18h18V3z M11,10.5H8v1h3V15H6.5V9H11V10.5z M18,15h-1.75l-1.75-2.25V15H13V9h1.5v2.25 L16.25,9H18l-2.25,3L18,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"10k\": {\n    \"name\": \"10k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,10.5h1.5v3H10V10.5z M21,3H3v18h18V3z M7.5,15H6v-4.5H4.5V9h3V15z M13,9v6H8.5V9H13z M19,15h-1.75l-1.75-2.25V15H14V9 h1.5v2.25L17.25,9H19l-2.25,3L19,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3k\": {\n    \"name\": \"3k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M11,9v6H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H11z M18,15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3 L18,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"library_music\": {\n    \"name\": \"library_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H6v16h16V2zm-4 5h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v16h16v-2H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_smart_record\": {\n    \"name\": \"fiber_smart_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"12\\\" r=\\\"8\\\"></circle><path d=\\\"M17 4.26v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z\\\"></path>\"\n      }\n    }\n  },\n  \"sd\": {\n    \"name\": \"sd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,4v16h20V4H2z M13,9h4c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-4V9z M9.5,13.5v-1H6V9h5v2H9.5v-0.5h-2v1H11V15H6v-2h1.5 v0.5H9.5z M14.5,13.5h2v-3h-2V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"high_quality\": {\n    \"name\": \"high_quality\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 4H3v16h18V4zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7 0h-1.75v1.5h-1.5V15H13V9h5v6zm-3.5-1.5h2v-3h-2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"loop\": {\n    \"name\": \"loop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_pin\": {\n    \"name\": \"fiber_pin\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 10.5h2v1h-2v-1zM22 4H2v16h20V4zM9 13H5.5v2H4V9h5v4zm3.5 2H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"album\": {\n    \"name\": \"album\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_new\": {\n    \"name\": \"fiber_new\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2v16h20V4zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 4.74h-6V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v6z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_music\": {\n    \"name\": \"queue_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,6H3v2h12V6z M15,10H3v2h12V10z M3,16h8v-2H3V16z M17,6v8.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 s3-1.34,3-3V8h3V6H17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8\\\"></rect><path d=\\\"M18,5h-4v6.21C13.69,11.08,13.36,11,13,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-7H18V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"repeat_on\": {\n    \"name\": \"repeat_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H7v3l-4-4l4-4v3h10v-4h2V19z M17,10V7H7v4H5V5h12V2l4,4L17,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one_on\": {\n    \"name\": \"repeat_one_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H7v3l-4-4l4-4v3h10v-4h2V19z M10,10.5V9h3v6h-1.5v-4.5H10z M17,10V7H7v4H5V5h12V2l4,4L17,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_call\": {\n    \"name\": \"video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"new_releases\": {\n    \"name\": \"new_releases\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"7k\": {\n    \"name\": \"7k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M9.5,15H7.75l1.38-4.5H6.5V9h4.86L9.5,15z M18,15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25,9H18l-2.25,3 L18,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"5g\": {\n    \"name\": \"5g\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17,13 19,13 19,15 14,15 14,9 21,9 21,7 12,7 12,17 21,17 21,11 17,11\\\"></polygon><polygon points=\\\"3,13 8,13 8,15 3,15 3,17 10,17 10,11 5,11 5,9 10,9 10,7 3,7\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"12,10.5 14,10.5 14,12 11,12 11,8 15,8 15,7 10,7 10,13 15,13 15,9.5 12,9.5\\\"></polygon></g><g><polygon points=\\\"9,8 6,8 6,9.5 9,9.5 9,13 5,13 5,12 8,12 8,10.5 5,10.5 5,7 9,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"3k_plus\": {\n    \"name\": \"3k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M10,9v6H5.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10z M16,15h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25,9H16l-2.25,3 L16,15z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"1k\": {\n    \"name\": \"1k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M10,15H8.5v-4.5H7V9h3V15z M17,15h-1.75l-1.75-2.25V15H12V9h1.5v2.25L15.25,9H17l-2.25,3L17,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"replay_circle_filled\": {\n    \"name\": \"replay_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M18,12.5c0,3.31-2.69,6-6,6s-6-2.69-6-6h2 c0,2.21,1.79,4,4,4s4-1.79,4-4s-1.79-4-4-4v3l-4-4l4-4v3C15.31,6.5,18,9.19,18,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"speed\": {\n    \"name\": \"speed\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.39 8.56l-1.24 1.86a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.86-1.24A10 10 0 0 0 4 20h16a10 10 0 0 0 .38-11.44z\\\"></path><path d=\\\"M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_none\": {\n    \"name\": \"mic_none\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"stop\": {\n    \"name\": \"stop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 6h12v12H6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"music_video\": {\n    \"name\": \"music_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-2 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"equalizer\": {\n    \"name\": \"equalizer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam\": {\n    \"name\": \"videocam\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle\": {\n    \"name\": \"shuffle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z\\\"></path>\"\n      }\n    }\n  },\n  \"branding_watermark\": {\n    \"name\": \"branding_watermark\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-2 16h-9v-6h9v6z\\\"></path>\"\n      }\n    }\n  },\n  \"2k_plus\": {\n    \"name\": \"2k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M10,12.5H7.5v1H10V15H6v-3.5h2.5v-1H6V9h4V12.5z M14.25,15l-1.75-2.25V15H11V9h1.5v2.25L14.25,9H16 l-2.25,3L16,15H14.25z M19,12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"crop_landscape\": {\n    \"name\": \"crop_landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5H3v14h18V5zm-2 12H5V7h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_pound\": {\n    \"name\": \"currency_pound\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,21c1.93,0,3.62-1.17,4-3l-1.75-0.88C16,18.21,15.33,19,14,19l-4.9,0c0.83-1,1.5-2.34,1.5-4c0-0.35-0.03-0.69-0.08-1 L14,14v-2l-4.18,0C9,10.42,8,9.6,8,8c0-1.93,1.57-3.5,3.5-3.5c1.5,0,2.79,0.95,3.28,2.28L16.63,6c-0.8-2.05-2.79-3.5-5.13-3.5 C8.46,2.5,6,4.96,6,8c0,1.78,0.79,2.9,1.49,4L6,12v2l2.47,0c0.08,0.31,0.13,0.64,0.13,1c0,2.7-2.6,4-2.6,4v2H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.75,4c1.23,0,2.27,0.81,2.62,1.93l1.39-0.59C13.18,3.69,11.6,2.5,9.75,2.5C7.4,2.5,5.5,4.4,5.5,6.75 c0,1.44,0.67,2.33,1.23,3.25L5.5,10v1.5l1.91,0c0.06,0.25,0.09,0.51,0.09,0.8c0,2.2-2,3.2-2,3.2V17H12c1.44,0,2.6-1.01,2.92-2.3 l-1.42-0.6c-0.05,0.78-0.7,1.4-1.5,1.4l-4.18,0C8.47,14.72,9,13.65,9,12.3c0-0.28-0.02-0.55-0.06-0.8l3.06,0V10l-3.55,0 C7.79,8.65,7,8.02,7,6.75C7,5.23,8.23,4,9.75,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3mp\": {\n    \"name\": \"3mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M10,10h3V9h-2V8h2V7h-3V5.5h4.5v6H10V10z M18,17h-3 v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"control_point\": {\n    \"name\": \"control_point\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_small\": {\n    \"name\": \"photo_size_select_small\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 15h-2v2h2v-2zm0 4h-2v2h2v-2zm0-8h-2v2h2v-2zm-8-8h-2v2h2V3zm8 4h-2v2h2V7zM1 21h10v-6H1v6zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm4 0h-2v2h2V3zm-4 16h-2v2h2v-2zM3 11H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3zM3 3H1v2h2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_weak\": {\n    \"name\": \"hdr_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_strong\": {\n    \"name\": \"center_focus_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_2\": {\n    \"name\": \"exposure_neg_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_16_9\": {\n    \"name\": \"crop_16_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,7H3v10h18V7z M19,15H5V9h14V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,7H3v6h14V7z M15.5,11.5h-11v-3h11V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_awesome_motion\": {\n    \"name\": \"auto_awesome_motion\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M14,2H2v12h2V4h10V2z M18,6H6v12h2V8h10V6z M22,10H10v12h12V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_free\": {\n    \"name\": \"crop_free\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3v6h2V5h4V3H3zm2 12H3v6h6v-2H5v-4zm14 4h-4v2h6v-6h-2v4zm2-16h-6v2h4v4h2V3z\\\"></path>\"\n      }\n    }\n  },\n  \"24mp\": {\n    \"name\": \"24mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M18,17h-3 v1.5h-1.5v-6H18V17z M18.5,10h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"4mp\": {\n    \"name\": \"4mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M9.5,10V5.5H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10 H9.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"panorama_horizontal_select\": {\n    \"name\": \"panorama_horizontal_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,5.5c-5.25,0-9.01-1.54-10-1.92L2,20.4c2.16-0.76,5.21-1.9,10-1.9c4.78,0,7.91,1.17,10,1.9L22,3.6 C19.91,4.33,16.77,5.5,12,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"portrait\": {\n    \"name\": \"portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM21 3H3v18h18V3zm-2 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_one\": {\n    \"name\": \"looks_one\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-7 14h-2V9h-2V7h4v10z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_bitcoin\": {\n    \"name\": \"currency_bitcoin\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.06,11.57C17.65,10.88,18,9.98,18,9c0-1.86-1.27-3.43-3-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2 c2.21,0,4-1.79,4-4C19,13.55,18.22,12.27,17.06,11.57z M10,7h4c1.1,0,2,0.9,2,2s-0.9,2-2,2h-4V7z M15,17h-5v-4h5c1.1,0,2,0.9,2,2 S16.1,17,15,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.38,10.75c0.9,0,1.62,0.73,1.62,1.62S13.27,14,12.38,14H8.5v-3.25H12.38z M11.38,6C12.27,6,13,6.73,13,7.62 s-0.73,1.62-1.62,1.62H8.5V6H11.38z M8,15.5V17h1.5v-1.5H11V17h1.5l0-1.5c1.67-0.07,3-1.44,3-3.12c0-1.21-0.69-2.26-1.7-2.78 c0.44-0.54,0.7-1.22,0.7-1.97c0-1.33-0.83-2.46-2-2.92l0-1.71H11v1.5H9.5V3H8v1.5H5.5V6H7v8H5.5v1.5H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_wide_angle\": {\n    \"name\": \"panorama_wide_angle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_shade\": {\n    \"name\": \"wb_shade\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,12v2.5l5.5,5.5H22L14,12z M14,20h3l-3-3V20z M8,4l-6,6h2v10h8V10h2L8,4z M9,14H7v-4h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_3_2\": {\n    \"name\": \"crop_3_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,6H3v12h18V6z M19,16H5V8h14V16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,6H3v8h14V6z M15.5,12.5h-11v-5h11V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hide_image\": {\n    \"name\": \"hide_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"21,3 5.83,3 21,18.17\\\"></polygon><path d=\\\"M2.81,2.81L1.39,4.22L3,5.83V21h15.17l1.61,1.61l1.41-1.41L2.81,2.81z M6,17l3-4l2.25,3l0.82-1.1l2.1,2.1H6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"exposure\": {\n    \"name\": \"exposure\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16h2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_3\": {\n    \"name\": \"filter_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V5h-6v2h4v2h-2v2h2v2h-4v2h6z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_linear\": {\n    \"name\": \"blur_linear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"60fps_select\": {\n    \"name\": \"60fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,6v6h-3V6H18z M20,4h-7v10h7V4z M11,6V4H4v10h7V8H6V6H11z M9,10v2H6v-2H9z M5,22H3v-5h2V22z M9,22H7v-5h2V22z M13,22 h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip_camera_android\": {\n    \"name\": \"flip_camera_android\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z\\\"></path><path d=\\\"M8,10V8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6 H8z\\\"></path><path d=\\\"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,10c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S8,8.9,8,10z\\\"></path><path d=\\\"M7,7H4.83C5.86,5.21,7.79,4,10,4c2.61,0,4.82,1.67,5.65,4h1.06C15.85,5.11,13.17,3,10,3C7.44,3,5.22,4.39,4,6.44V4H3v4h4 V7z\\\"></path><path d=\\\"M13,12v1h2.17c-1.04,1.79-2.96,3-5.17,3c-2.61,0-4.82-1.67-5.65-4H3.29c0.86,2.89,3.54,5,6.71,5c2.56,0,4.78-1.39,6-3.44 V16h1v-4H13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"15mp\": {\n    \"name\": \"15mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12,10h3V9h-3V5.5h4.5V7h-3v1h3v3.5H12V10z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5 H6v-6h6.5V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flare\": {\n    \"name\": \"flare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"monochrome_photos\": {\n    \"name\": \"monochrome_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5h-5.2L15 3H9L7.2 5H2v16h20V5zm-2 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_cloudy\": {\n    \"name\": \"wb_cloudy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04C2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_off\": {\n    \"name\": \"motion_photos_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,6c-0.92,0-1.8,0.22-2.58,0.59l7.99,7.99C17.78,13.8,18,12.92,18,12C18,8.69,15.31,6,12,6z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.42L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l1.47,1.47C6.22,10.2,6,11.08,6,12c0,3.31,2.69,6,6,6 c0.92,0,1.8-0.22,2.58-0.59l1.47,1.47C14.86,19.59,13.48,20,12,20z\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.05l1.45,1.45C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10 C9.96,2,8.07,2.61,6.49,3.66l1.45,1.45C9.14,4.41,10.52,4,12,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wb_twilight\": {\n    \"name\": \"wb_twilight\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7069 -0.7074 0.7074 0.7069 -0.3887 15.676)\\\" width=\\\"3\\\" x=\\\"17.22\\\" y=\\\"7.31\\\"></rect><rect height=\\\"2\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"18\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2992 6.1783)\\\" width=\\\"2\\\" x=\\\"4.31\\\" y=\\\"6.78\\\"></rect><path d=\\\"M5,16h14c0-3.87-3.13-7-7-7S5,12.13,5,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"14.5\\\"></rect><rect height=\\\"2.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1972 12.8523)\\\" width=\\\"2.5\\\" x=\\\"14.16\\\" y=\\\"5.91\\\"></rect><rect height=\\\"2.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.3852 5.1557)\\\" width=\\\"1.5\\\" x=\\\"3.78\\\" y=\\\"5.41\\\"></rect><path d=\\\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grain\": {\n    \"name\": \"grain\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera\": {\n    \"name\": \"photo_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle><path d=\\\"M9 2L7.17 4H2v16h20V4h-5.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_din\": {\n    \"name\": \"crop_din\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-2 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"logo_dev\": {\n    \"name\": \"logo_dev\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.68,14.98H6V9h1.71 c1.28,0,1.71,1.03,1.71,1.71l0,2.56C9.42,13.95,9,14.98,7.68,14.98z M12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25 c-0.4,0.01-0.74-0.31-0.75-0.71V9.75c-0.01-0.4,0.31-0.74,0.71-0.75h2.28l0,1.07h-1.92v1.39H12.38z M16.88,14.23 c-0.48,1.11-1.33,0.89-1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z\\\"></path><path d=\\\"M7.77,10.12H7.14v3.77h0.63c0.14,0,0.28-0.05,0.42-0.16c0.14-0.1,0.21-0.26,0.21-0.47v-2.52c0-0.21-0.07-0.37-0.21-0.47 C8.05,10.17,7.91,10.12,7.77,10.12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.46,8.43H5.93v3.15h0.53c0.12,0,0.23-0.04,0.35-0.13c0.12-0.09,0.18-0.22,0.18-0.39v-2.1c0-0.18-0.06-0.31-0.18-0.39 C6.69,8.47,6.58,8.43,6.46,8.43z\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M6.38,12.49h-1.4V7.49h1.43c1.07,0,1.43,0.86,1.43,1.43l0,2.14C7.84,11.63,7.49,12.49,6.38,12.49z M10.31,9.55v0.89H9.33v1.16 h1.61v0.89H9.06c-0.34,0.01-0.62-0.26-0.63-0.59V8.12C8.43,7.78,8.7,7.5,9.03,7.5h1.91l0,0.89H9.33v1.16H10.31z M14.07,11.87 c-0.4,0.93-1.11,0.74-1.43,0L11.47,7.5h0.98l0.9,3.43l0.89-3.43h0.98L14.07,11.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"image_search\": {\n    \"name\": \"image_search\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H2v18h18v-7l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9z\\\"></path>\"\n      }\n    }\n  },\n  \"timelapse\": {\n    \"name\": \"timelapse\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.24 7.76C15.07 6.59 13.54 6 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"11mp\": {\n    \"name\": \"11mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M8,5.5h3v6H9.5V7H8V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M13,5.5h3v6h-1.5V7H13V5.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"crop_original\": {\n    \"name\": \"crop_original\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-2 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z\\\"></path>\"\n      }\n    }\n  },\n  \"13mp\": {\n    \"name\": \"13mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12,10h3V9h-2V8h2V7h-3V5.5h4.5v6H12V10z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6 v-6h6.5V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_5_4\": {\n    \"name\": \"crop_5_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,4H3v16h18V4z M19,18H5V6h14V18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,4H3v12h14V4z M15.5,14.5h-11v-9h11V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"timer_10\": {\n    \"name\": \"timer_10\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41s.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_red_eye\": {\n    \"name\": \"remove_red_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9_plus\": {\n    \"name\": \"filter_9_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm11 9V6H9v5h3v1H9v2h5zm-3-5V8h1v1h-1zm12-8H5v18h18V1zm-2 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_video\": {\n    \"name\": \"switch_video\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.5V5H2v14h16v-4.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"photo\": {\n    \"name\": \"photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"video_stable\": {\n    \"name\": \"video_stable\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,4v16h20V4H2z M4,18V6h2.95l-2.33,8.73L16.82,18H4z M20,18h-2.95l2.34-8.73L7.18,6H20V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"healing\": {\n    \"name\": \"healing\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.74 12.01l4.68-4.68-5.75-5.75-4.68 4.68L7.3 1.58 1.55 7.34l4.68 4.69-4.68 4.68 5.75 5.75 4.68-4.68 4.69 4.69 5.76-5.76-4.69-4.7zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_next\": {\n    \"name\": \"navigate_next\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_5\": {\n    \"name\": \"looks_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-6 6h-4v2h4v6H9v-2h4v-2H9V7h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9\": {\n    \"name\": \"filter_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zM17 5h-6v6h4v2h-4v2h6V5zm-2 4h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dirty_lens\": {\n    \"name\": \"dirty_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,5h-5.17L15,3H9L7.17,5H2v16h20V5z M16.66,16.58c-1.14,1.86-3-1.03-3.81,0.09c-0.39,0.57-0.09,1.49,0.13,2.33 c0,0.47-0.38,0.85-0.85,0.85c-0.47,0-0.86-0.38-0.86-0.85c0.14-0.98,0.42-2.05-0.16-2.43c-0.89-0.59-1.27,2.06-2.8,1.35 c-1.39-1.12,1.05-1.29,0.5-3.27c-0.22-0.79-2.28,0.36-2.4-1.24c-0.08-1,1.49-0.74,1.51-1.49c0.03-0.75-1.03-1.05-0.25-1.91 c0.22-0.24,0.71-0.26,0.91-0.19c0.79,0.27,1.55,1.82,2.51,1.19c1.03-0.66-1.88-2.35,0-2.86c1.64-0.44,1.31,2.08,2.65,2.44 c1.94,0.52,2.65-4.55,4.41-2.33c1.85,2.33-3.43,2.27-2.85,4.01c0.34,1.01,2.15-1.2,2.76,0.53c0.64,1.83-3.09,0.82-3.04,1.66 C15.08,15.29,17.43,15.01,16.66,16.58z M18.14,18.01c-0.47,0-0.86-0.38-0.86-0.86s0.38-0.86,0.86-0.86c0.47,0,0.86,0.38,0.86,0.86 S18.62,18.01,18.14,18.01z\\\"></path></g>\"\n      }\n    }\n  },\n  \"raw_on\": {\n    \"name\": \"raw_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-1C8,9.7,7.3,9,6.5,9z M6.5,11.5h-2v-1h2V11.5z\\\"></path><path d=\\\"M10.25,9l-1.5,6h1.5l0.38-1.5h1.75l0.37,1.5h1.5l-1.5-6H10.25z M11,12l0.25-1h0.5L12,12H11z\\\"></path><polygon points=\\\"19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 15.5,15 16.98,15 17.74,11.96 18.5,15 19.98,15 21.48,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"raw_off\": {\n    \"name\": \"raw_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.15,14.32 17.74,11.96 18.5,15 19.98,15 21.48,9 19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 14.72,11.9\\\"></polygon><path d=\\\"M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38-1.5h0.04 l9.11,9.11l1.41-1.41L2.81,2.81L1.39,4.22z M6.5,11.5h-2v-1h2V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_5\": {\n    \"name\": \"filter_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V9h-4V7h4V5h-6v6h4v2h-4v2h6z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama\": {\n    \"name\": \"panorama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 20V4H1v16h22zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_none\": {\n    \"name\": \"filter_none\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_camera_ios\": {\n    \"name\": \"flip_camera_ios\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.83,5L15,3H9L7.17,5H2v16h20V5H16.83z M12,18c-2.76,0-5-2.24-5-5H5l2.5-2.5L10,13H8c0,2.21,1.79,4,4,4 c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M16.5,15.5L14,13h2c0-2.21-1.79-4-4-4 c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5h2L16.5,15.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,5l-2-2H8L6,5H3v11h14V5H14z M10,14c-2.21,0-4-1.79-4-4H4.5l2-2l2,2H7c0,1.65,1.35,3,3,3c0.44,0,0.85-0.1,1.23-0.27 l0.73,0.73C11.38,13.8,10.72,14,10,14z M13.5,12l-2-2H13c0-1.65-1.35-3-3-3C9.56,7,9.15,7.1,8.77,7.27L8.04,6.54 C8.62,6.2,9.28,6,10,6c2.21,0,4,1.79,4,4h1.5L13.5,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_7\": {\n    \"name\": \"brightness_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"12mp\": {\n    \"name\": \"12mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M12,8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H12V8z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6 v-6h6.5V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"add_to_photos\": {\n    \"name\": \"add_to_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_actual\": {\n    \"name\": \"photo_size_select_actual\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z\\\"></path>\"\n      }\n    }\n  },\n  \"burst_mode\": {\n    \"name\": \"burst_mode\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 5h2v14H1V5zm4 0h2v14H5V5zm18 0H9v14h14V5zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_wide_angle_select\": {\n    \"name\": \"panorama_wide_angle_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,4C8.03,4,5.15,4.63,3,5c-0.55,1.97-1,3.92-1,7c0,3.03,0.45,5.05,1,7c2.15,0.37,4.98,1,9,1c3.97,0,6.85-0.63,9-1 c0.57-2.02,1-3.99,1-7c0-3.03-0.45-5.05-1-7C18.85,4.63,16.02,4,12,4z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"currency_lira\": {\n    \"name\": \"currency_lira\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0,5-2.24,5-5h2c0,3.87-3.13,7-7,7H9v-5.16 l-3,1.88l0-2.36l3-1.88v-2.36L6,13l0-2.36L9,8.76z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8,7.32L5.5,8.89v1.77L8,9.09v1.77l-2.5,1.57v1.77L8,12.63V17h1.5c3.04,0,5.5-2.46,5.5-5.5h-1.5c0,2.21-1.79,4-4,4v-3.81 l3-1.88V8.04l-3,1.88V8.15l3-1.88V4.5l-3,1.88V3H8V7.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"slideshow\": {\n    \"name\": \"slideshow\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8v8l5-4-5-4zm11-5H3v18h18V3zm-2 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_auto\": {\n    \"name\": \"wb_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_auto\": {\n    \"name\": \"motion_photos_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M12,18 c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M11.29,7.5h1.43l3.01,8h-1.39l-0.72-2.04h-3.23L9.66,15.5H8.28 L11.29,7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_enhanced_select\": {\n    \"name\": \"hdr_enhanced_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M15,9h-2v2h-2V9H9V7h2V5h2v2h2V9z\\\"></path><path d=\\\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path><path d=\\\"M18,16h-5v6h1.5v-2h1.1l0.9,2H18l-0.86-2H18V16z M16.5,18.5h-2v-1h2V18.5z\\\"></path><polygon points=\\\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\\\"></polygon><polygon points=\\\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"filter_6\": {\n    \"name\": \"filter_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-10-2h6V9h-4V7h4V5h-6v10zm2-4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_on\": {\n    \"name\": \"mic_external_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.22,7H4.78C4.3,6.47,4,5.77,4,5c0-1.66,1.34-3,3-3s3,1.34,3,3C10,5.77,9.7,6.47,9.22,7z M20,2v20h-2V4h-4v18H6 c0,0,0-1.79,0-4H5L4,8h6L9,18H8v2h4V2H20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_8\": {\n    \"name\": \"filter_8\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_drama\": {\n    \"name\": \"filter_drama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_album\": {\n    \"name\": \"photo_album\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,2H4v20h16V2z M11,4h5v7l-2.5-1.5L11,11V4z M7,18l2.38-3.17L11,17l2.62-3.5L17,18H7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16,2H4v16h12V2z M9,4h4v6l-2-1l-2,1V4z M6,15l2.12-2.83L9.5,14l1.88-2.5L14,15H6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"image_not_supported\": {\n    \"name\": \"image_not_supported\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.9,21.9l-8.49-8.49l0,0L3,3l0,0L2.1,2.1L0.69,3.51L3,5.83V21h15.17l2.31,2.31L21.9,21.9z M5,18l3.5-4.5l2.5,3.01 L12.17,15l3,3H5z M21,18.17L5.83,3H21V18.17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><g><path d=\\\"M17.07,17.07L2.93,2.93L2.22,3.64L4,5.41V16h10.59l1.78,1.78L17.07,17.07z M6,14l2-2.67l1.35,1.81l1.05-1.32L12.59,14H6z M16,14.59L5.41,4H16V14.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"looks_6\": {\n    \"name\": \"looks_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 15h2v-2h-2v2zM21 3H3v18h18V3zm-6 6h-4v2h4v6H9V7h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_frames\": {\n    \"name\": \"filter_frames\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4h-6l-4-4-4 4H2v18h20V4zm-2 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_5\": {\n    \"name\": \"brightness_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"16mp\": {\n    \"name\": \"16mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12,5.5h4.5V7h-3v1h3v3.5H12V5.5z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5 V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"vrpano\": {\n    \"name\": \"vrpano\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,5.5c-5.25,0-9.01-1.54-10-1.92V20.4c2.16-0.76,5.21-1.9,10-1.9c4.78,0,7.91,1.17,10,1.9V3.6 C19.91,4.33,16.77,5.5,12,5.5z M12,15c-2.34,0-4.52,0.15-6.52,0.41l3.69-4.42l2,2.4L14,10l4.51,5.4C16.52,15.15,14.3,15,12,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"8mp\": {\n    \"name\": \"8mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"6.5\\\"></rect><path d=\\\"M3,3v18h18V3H3z M10,5.5h4.5v6H10V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"flash_off\": {\n    \"name\": \"flash_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"animation\": {\n    \"name\": \"animation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,2c-2.71,0-5.05,1.54-6.22,3.78c-1.28,0.67-2.34,1.72-3,3C3.54,9.95,2,12.29,2,15c0,3.87,3.13,7,7,7 c2.71,0,5.05-1.54,6.22-3.78c1.28-0.67,2.34-1.72,3-3C20.46,14.05,22,11.71,22,9C22,5.13,18.87,2,15,2z M9,20c-2.76,0-5-2.24-5-5 c0-1.12,0.37-2.16,1-3c0,3.87,3.13,7,7,7C11.16,19.63,10.12,20,9,20z M12,17c-2.76,0-5-2.24-5-5c0-1.12,0.37-2.16,1-3 c0,3.86,3.13,6.99,7,7C14.16,16.63,13.12,17,12,17z M16.7,13.7C16.17,13.89,15.6,14,15,14c-2.76,0-5-2.24-5-5 c0-0.6,0.11-1.17,0.3-1.7C10.83,7.11,11.4,7,12,7c2.76,0,5,2.24,5,5C17,12.6,16.89,13.17,16.7,13.7z M19,12c0-3.86-3.13-6.99-7-7 c0.84-0.63,1.87-1,3-1c2.76,0,5,2.24,5,5C20,10.12,19.63,11.16,19,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip\": {\n    \"name\": \"flip\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 3v18h6v-2H5V5h4V3H3zm16 0v2h2V3h-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_7_5\": {\n    \"name\": \"crop_7_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21,5H3v14h18V5z M19,17H5V7h14V17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,5H3v10h14V5z M15.5,13.5h-11v-7h11V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tonality\": {\n    \"name\": \"tonality\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_1\": {\n    \"name\": \"brightness_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"10\\\"></circle>\"\n      }\n    }\n  },\n  \"collections\": {\n    \"name\": \"collections\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18V2H6v16h16zm-11-6l2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"image_aspect_ratio\": {\n    \"name\": \"image_aspect_ratio\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm10-6H2v16h20V4zm-2 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"flash_auto\": {\n    \"name\": \"flash_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z\\\"></path>\"\n      }\n    }\n  },\n  \"vignette\": {\n    \"name\": \"vignette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zM12 18c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_vintage\": {\n    \"name\": \"filter_vintage\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-1.79-1.03-4.07-1.11-6 0-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-1.92-1.11-4.2-1.03-6 0 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19 1.79 1.03 4.07 1.11 6 0 .28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54 1.92 1.11 4.2 1.03 6 0-.01-2.07-1.08-4.08-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nature\": {\n    \"name\": \"nature\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 16.12c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88z\\\"></path>\"\n      }\n    }\n  },\n  \"thermostat_auto\": {\n    \"name\": \"thermostat_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,12V6c0-1.66-1.34-3-3-3S5,4.34,5,6v6c-1.21,0.91-2,2.37-2,4c0,1.12,0.38,2.14,1,2.97V19h0.02c0.91,1.21,2.35,2,3.98,2 s3.06-0.79,3.98-2H12v-0.03c0.62-0.83,1-1.85,1-2.97C13,14.37,12.21,12.91,11,12z M5,16c0-0.94,0.45-1.84,1.2-2.4L7,13V6 c0-0.55,0.45-1,1-1s1,0.45,1,1v7l0.8,0.6c0.75,0.57,1.2,1.46,1.2,2.4H5z M18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22 L18.62,4z M16.47,9.39l1.31-3.72h0.08l1.31,3.72H16.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"looks\": {\n    \"name\": \"looks\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_on\": {\n    \"name\": \"grid_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20h20V2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant\": {\n    \"name\": \"assistant\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 2H3v18h6l3 3 3-3h6V2zm-7.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"texture\": {\n    \"name\": \"texture\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.66 3L3.07 19.59V21h1.41L21.07 4.42V3zm-7.71 0l-8.88 8.88v2.83L14.78 3zM3.07 3v4l4-4zm18 18v-4l-4 4zm-8.88 0l8.88-8.88V9.29L9.36 21z\\\"></path>\"\n      }\n    }\n  },\n  \"contrast\": {\n    \"name\": \"contrast\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,22c5.52,0,10-4.48,10-10S17.52,2,12,2S2,6.48,2,12S6.48,22,12,22z M13,4.07c3.94,0.49,7,3.85,7,7.93s-3.05,7.44-7,7.93 V4.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10.75,3.55C13.98,3.92,16.5,6.67,16.5,10 s-2.52,6.08-5.75,6.45V3.55z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flash_on\": {\n    \"name\": \"flash_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 2v11h3v9l7-12h-4l3-8z\\\"></path>\"\n      }\n    }\n  },\n  \"filter\": {\n    \"name\": \"filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"incomplete_circle\": {\n    \"name\": \"incomplete_circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera_front\": {\n    \"name\": \"photo_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.83,5L15,3H9L7.17,5H2v16h20V5H16.83z M12,9c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C10,9.9,10.9,9,12,9z M16,17H8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,14.21,11.01,14,12,14s1.93,0.21,2.78,0.58C15.52,14.9,16,15.62,16,16.43V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_center_focus\": {\n    \"name\": \"filter_center_focus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_front\": {\n    \"name\": \"camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm7-8H5v18h14V0zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_filter\": {\n    \"name\": \"photo_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 10v9H4.98V5h9V3H3v18h18V10h-2zm-2 0l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94L17 10zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_2\": {\n    \"name\": \"exposure_plus_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_photosphere\": {\n    \"name\": \"panorama_photosphere\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M23,8.84c-0.54-0.43-1.23-0.81-1.99-1.15C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68C2.23,8.03,1.54,8.4,1,8.84 v6.33c0.54,0.43,1.23,0.81,1.99,1.15C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.76-0.34,1.45-0.72,1.99-1.15V8.84z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68C7.51,5.04,9.63,4,12,4z M12,20 c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68C16.49,18.96,14.37,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edit\": {\n    \"name\": \"edit\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_1\": {\n    \"name\": \"exposure_plus_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"circle\": {\n    \"name\": \"circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.47,2,2,6.47,2,12s4.47,10,10,10s10-4.47,10-10S17.53,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"9mp\": {\n    \"name\": \"9mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M10,10h3V9h-3V5.5h4.5v6H10V10z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M18,17h-3v1.5h-1.5 v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"6.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"movie_creation\": {\n    \"name\": \"movie_creation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"leak_remove\": {\n    \"name\": \"leak_remove\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"10mp\": {\n    \"name\": \"10mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.5,7H15v3h-1.5V7z M21,3H3v18h18V3z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M15,18.5h-1.5v-6H18V17h-3 V18.5z M10,5.5v6H8.5V7H7V5.5H10z M16.5,5.5v6H12v-6H16.5z M15,14h1.5v1.5H15V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hdr_on\": {\n    \"name\": \"hdr_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 12.9V9h-5v6h1.5v-2h1.1l.9 2H21l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"gradient\": {\n    \"name\": \"gradient\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm14-6H3v18h18V3zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_high\": {\n    \"name\": \"auto_fix_high\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><polygon points=\\\"8.5,7 9.44,4.94 11.5,4 9.44,3.06 8.5,1 7.56,3.06 5.5,4 7.56,4.94\\\"></polygon><polygon points=\\\"20,12.5 19.06,14.56 17,15.5 19.06,16.44 20,18.5 20.94,16.44 23,15.5 20.94,14.56\\\"></polygon><path d=\\\"M18.41,9.83l-4.24-4.24L1.59,18.17l4.24,4.24L18.41,9.83z M14.21,11.21l-1.41-1.41l1.38-1.38l1.41,1.41L14.21,11.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cases\": {\n    \"name\": \"cases\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,5V1h-8v4H5v13h18V5H18z M16,5h-4V3h4V5z M3,9H1v13h18v-2H3V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_stories\": {\n    \"name\": \"auto_stories\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><path d=\\\"M21,4.6v2.12v7.24v2.66C19.86,16.21,18.69,16,17.5,16c-1.9,0-3.78,0.54-5.5,1.58v-3.62V7.79V5.48C10.38,4.55,8.51,4,6.5,4 S2.62,4.55,1,5.48V20c1.52-1.18,3.43-2,5.5-2s3.98,0.82,5.5,2c1.52-1.18,3.43-2,5.5-2s3.98,0.82,5.5,2V5.48 C22.37,5.12,21.7,4.84,21,4.6z\\\"></path><polygon points=\\\"19,0.5 14,5.5 14,15 19,10.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"add_a_photo\": {\n    \"name\": \"add_a_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H23v16H3V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_on\": {\n    \"name\": \"blur_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"compare\": {\n    \"name\": \"compare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 3H3v18h7v2h2V1h-2v2zm0 15H5l5-6v6zM21 3h-7v2h5v13l-5-6v9h7V3z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_1\": {\n    \"name\": \"exposure_neg_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_off\": {\n    \"name\": \"mic_external_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,5c0-1.66-1.34-3-3-3C6.38,2,5.81,2.19,5.33,2.5l4.15,4.15C9.8,6.18,10,5.61,10,5z\\\"></path><polygon points=\\\"14,4 18,4 18,15.17 20,17.17 20,2 12,2 12,9.17 14,11.17\\\"></polygon><path d=\\\"M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21,0,4,0,4h8v-5.17l6.49,6.49l1.41-1.41L2.1,2.1z M12,20H8v-2h1l0.56-5.61 L12,14.83V20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transform\": {\n    \"name\": \"transform\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v10h10v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V6h-8v2z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_back\": {\n    \"name\": \"video_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V4H2v16h16v-6.48l4,3.98v-11L18,10.48z M5,16l2.38-3.17L9,15l2.62-3.5L15,16H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"adjust\": {\n    \"name\": \"adjust\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"tune\": {\n    \"name\": \"tune\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_before\": {\n    \"name\": \"navigate_before\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_cw\": {\n    \"name\": \"rotate_90_degrees_cw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4.64,19.37c3.03,3.03,7.67,3.44,11.15,1.25l-1.46-1.46c-2.66,1.43-6.04,1.03-8.28-1.21c-2.73-2.73-2.73-7.17,0-9.9 C7.42,6.69,9.21,6.03,11,6.03V9l4-4l-4-4v3.01c-2.3,0-4.61,0.87-6.36,2.63C1.12,10.15,1.12,15.85,4.64,19.37z\\\"></path><g><path d=\\\"M17,7l-6,6l6,6l6-6L17,7z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9,11l5,5l5-5l-5-5L9,11z\\\"></path><path d=\\\"M2,11c0,3.87,3.13,7,7,7c1.43,0,2.76-0.43,3.86-1.17l-1.09-1.09C10.96,16.22,10.01,16.5,9,16.5c-3.03,0-5.5-2.47-5.5-5.5 S5.97,5.5,9,5.5v2.25l3-3l-3-3V4C5.13,4,2,7.13,2,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"autofps_select\": {\n    \"name\": \"autofps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12.03,6.3 11.97,6.3 10.95,9.19 13.05,9.19\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"17\\\"></rect><path d=\\\"M12,15c3.31,0,6-2.69,6-6s-2.69-6-6-6S6,5.69,6,9S8.69,15,12,15z M11.37,5h1.25l2.63,7h-1.21l-0.63-1.79h-2.83L9.96,12 H8.74L11.37,5z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"17\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wb_iridescent\": {\n    \"name\": \"wb_iridescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15h14V9.05H5V15zm6-14v3h2V1h-2zm8.04 2.6l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 23v-2.95h-2V23h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 5.01L5.34 6.8l1.41-1.41L4.96 3.6 3.55 5.01zM4.96 20.5l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_front\": {\n    \"name\": \"video_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,10.48V4H2v16h16v-6.48l4,3.98v-11L18,10.48z M10,8c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S8.9,8,10,8z M14,16H6v-0.57 c0-0.81,0.48-1.53,1.22-1.85C8.07,13.21,9.01,13,10,13c0.99,0,1.93,0.21,2.78,0.58C13.52,13.9,14,14.62,14,15.43V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_fish_eye\": {\n    \"name\": \"panorama_fish_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off\": {\n    \"name\": \"hdr_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 15v-2h1.1l.9 2H21l-.9-2.1h.9V9h-5v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_awesome_mosaic\": {\n    \"name\": \"auto_awesome_mosaic\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,21h8V3L3,3V21z M21,3h-8v8h8V3z M13,21h8v-8h-8V21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rotate_right\": {\n    \"name\": \"rotate_right\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_tilt_shift\": {\n    \"name\": \"filter_tilt_shift\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"music_off\": {\n    \"name\": \"music_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 9.61V7h4V3h-6v4.61zM4.41 2.86L3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44 4.41 2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_off\": {\n    \"name\": \"auto_fix_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><polygon points=\\\"14.17,8.42 15.58,9.83 14.12,11.29 15.54,12.71 18.41,9.83 14.17,5.59 11.29,8.46 12.71,9.88\\\"></polygon><polygon points=\\\"1.39,4.22 8.46,11.29 1.59,18.17 5.83,22.41 12.71,15.54 19.78,22.61 21.19,21.19 2.81,2.81\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"currency_rupee\": {\n    \"name\": \"currency_rupee\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.66,7C13.1,5.82,11.9,5,10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58,0.84,1.26,1.05,2L18,7v2l-2.02,0c-0.25,2.8-2.61,5-5.48,5 H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0,3.22-1.3,3.46-3L6,9V7L13.66,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.4,17h2.11l-5.4-5.5h0.65c2.26,0,4.11-1.77,4.24-4l1.51,0l0-1.5l-1.69,0c-0.17-0.56-0.46-1.07-0.82-1.5l2.51,0l0-1.5 l-9,0v1.5l3.25,0c1.07,0,1.99,0.61,2.45,1.5L5.5,6v1.5l5.99,0c-0.13,1.4-1.3,2.5-2.74,2.5L6,10v1.5L11.4,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"crop\": {\n    \"name\": \"crop\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 15h2V5H9v2h8v8zM7 17V1H5v4H1v2h4v12h12v4h2v-4h4v-2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"14mp\": {\n    \"name\": \"14mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12,5.5h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5 v-3h-1v4.5H6v-6h6.5V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"22mp\": {\n    \"name\": \"22mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M13,8h3V7 h-3V5.5h4.5V9h-3v1h3v1.5H13V8z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"straighten\": {\n    \"name\": \"straighten\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 6H1v12h22V6zm-2 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_incandescent\": {\n    \"name\": \"wb_incandescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 23h2v-2.95h-2V23zM4 11.05H1v2h3v-2zm11-4.19V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_roll\": {\n    \"name\": \"camera_roll\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5V3h-3V1H5v2H2v19h12v-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_photo\": {\n    \"name\": \"assistant_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_pause\": {\n    \"name\": \"motion_photos_pause\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,6,12,6z M11,15H9V9h2V15z M15,15h-2V9h2V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M10,5c-2.76,0-5,2.24-5,5c0,2.76,2.24,5,5,5 s5-2.24,5-5C15,7.24,12.76,5,10,5z M9.25,12.5h-1.5v-5h1.5V12.5z M12.25,12.5h-1.5v-5h1.5V12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_circular\": {\n    \"name\": \"blur_circular\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"face_retouching_natural\": {\n    \"name\": \"face_retouching_natural\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M19.85,10.59C20.79,15.4,17.01,20,12,20c-4.41,0-8-3.59-8-8c0-0.39,3.87-1.12,5.74-5.69c3.42,4.19,8.07,3.73,9.09,3.59 l-1.48-3.25L12.63,4.5l3.5-1.59C9.51-0.14,2,4.77,2,12c0,5.52,4.48,10,10,10c7.21,0,12.12-7.45,9.1-14.13L19.85,10.59z\\\"></path><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M20.6,5.6L19.5,8l-1.1-2.4L16,4.5l2.4-1.1L19.5,1l1.1,2.4L23,4.5L20.6,5.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_rear\": {\n    \"name\": \"camera_rear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm5-20H5v18h14V0zm-7 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z\\\"></path>\"\n      }\n    }\n  },\n  \"deblur\": {\n    \"name\": \"deblur\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,3v18c4.97,0,9-4.03,9-9C21,7.03,16.97,3,12,3z\\\"></path><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"10\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"14\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"21\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5.5\\\" cy=\\\"11.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"11.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"17\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"8.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><path d=\\\"M10,3v14c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"face_retouching_off\": {\n    \"name\": \"face_retouching_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49 C21.53,15.44,22,13.78,22,12c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z\\\"></path><path d=\\\"M1.89,3.72l2.19,2.19C2.78,7.6,2,9.71,2,12c0,5.52,4.48,10,10,10c2.29,0,4.4-0.78,6.09-2.08l2.19,2.19l1.41-1.41 L3.31,2.31L1.89,3.72z M16.66,18.49C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_yen\": {\n    \"name\": \"currency_yen\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.92,11 18,11 18,13 13,13 13,15 18,15 18,17 13,17 13,21 11,21 11,17 6,17 6,15 11,15 11,13 6,13 6,11 10.08,11 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"11.29,9.5 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 8.71,9.5 5.5,9.5 5.5,11 9.25,11 9.25,12.5 5.5,12.5 5.5,14 9.25,14 9.25,17 10.75,17 10.75,14 14.5,14 14.5,12.5 10.75,12.5 10.75,11 14.5,11 14.5,9.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_7\": {\n    \"name\": \"filter_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_2\": {\n    \"name\": \"brightness_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_square\": {\n    \"name\": \"crop_square\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4v16h16V4zm-2 14H6V6h12v12z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_left\": {\n    \"name\": \"rotate_left\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_paused\": {\n    \"name\": \"motion_photos_paused\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"photo_camera_back\": {\n    \"name\": \"photo_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.83,5L15,3H9L7.17,5H2v16h20V5H16.83z M6,17l3-4l2.25,3l3-4L18,17H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hevc\": {\n    \"name\": \"hevc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"5.5,11 4.5,11 4.5,9 3,9 3,15 4.5,15 4.5,12.5 5.5,12.5 5.5,15 7,15 7,9 5.5,9\\\"></polygon><polygon points=\\\"21,11 21,9 17,9 17,15 21,15 21,13 19.5,13 19.5,13.5 18.5,13.5 18.5,10.5 19.5,10.5 19.5,11\\\"></polygon><polygon points=\\\"14.25,13.5 13.5,9 12,9 13,15 15.5,15 16.5,9 15,9\\\"></polygon><polygon points=\\\"8,9 8,15 11.5,15 11.5,13.5 9.5,13.5 9.5,12.5 11.5,12.5 11.5,11 9.5,11 9.5,10.5 11.5,10.5 11.5,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lens\": {\n    \"name\": \"lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_off\": {\n    \"name\": \"blur_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"18\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><path d=\\\"M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z\\\"></path>\"\n      }\n    }\n  },\n  \"broken_image\": {\n    \"name\": \"broken_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3v8.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V3h18zm-3 8.42l3 3.01V21H3v-8.58l3 2.99 4-4 4 4 4-3.99z\\\"></path>\"\n      }\n    }\n  },\n  \"color_lens\": {\n    \"name\": \"color_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"movie_filter\": {\n    \"name\": \"movie_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_plus\": {\n    \"name\": \"hdr_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"8.5\\\" y=\\\"14.5\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"7.5\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,17l-0.86-0.01L12,19h-1.5l-0.9-2H8.5v2H7v-6h5 c0,0,0,0.7,0,1.5V17z M12,12h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12V12z M17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16z M17.5,10.5c0,0.8-0.7,1.5-1.5,1.5h-3V6h3c0.8,0,1.5,0.7,1.5,1.5V10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_photo_alternate\": {\n    \"name\": \"add_photo_alternate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H3v16h16V11h-3zM5 19l3-4 2 3 3-4 4 5H5z\\\"></path>\"\n      }\n    }\n  },\n  \"shutter_speed\": {\n    \"name\": \"shutter_speed\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm5.97-4c-.57-1.6-1.78-2.89-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_off\": {\n    \"name\": \"timer_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"1\\\"></rect><path d=\\\"M13,8v2.17l6.98,6.98C20.63,15.91,21,14.5,21,13c0-2.12-0.74-4.07-1.97-5.61l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41 l-1.42,1.42C16.07,4.74,14.12,4,12,4c-1.5,0-2.91,0.37-4.15,1.02L10.83,8H13z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12,3,10.98,3,13c0,4.97,4.02,9,9,9c2.02,0,3.88-0.67,5.38-1.79l2.4,2.4l1.41-1.41 L2.81,2.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><path d=\\\"M10.75,7v1.63l5.5,5.5c0.47-0.94,0.75-2,0.75-3.13c0-1.66-0.58-3.19-1.55-4.39l1.08-1.08l-1.06-1.06l-1.08,1.08 C13.19,4.58,11.66,4,10,4C8.87,4,7.81,4.27,6.87,4.75L9.12,7H10.75z\\\"></path><path d=\\\"M1.87,3.99l2.66,2.66C3.57,7.84,3,9.35,3,11c0,3.87,3.13,7,7,7c1.65,0,3.16-0.57,4.35-1.52l1.66,1.66l1.06-1.06L2.93,2.93 L1.87,3.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"iso\": {\n    \"name\": \"iso\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_zero\": {\n    \"name\": \"exposure_zero\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_4\": {\n    \"name\": \"brightness_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_ccw\": {\n    \"name\": \"rotate_90_degrees_ccw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z\\\"></path>\"\n      }\n    }\n  },\n  \"collections_bookmark\": {\n    \"name\": \"collections_bookmark\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-2 10l-2.5-1.5L15 12V4h5v8z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_4\": {\n    \"name\": \"looks_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.04 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.04 3h-18v18h18V3zm-6 14h-2v-4h-4V7h2v4h2V7h2v10z\\\"></path>\"\n      }\n    }\n  },\n  \"control_point_duplicate\": {\n    \"name\": \"control_point_duplicate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_3\": {\n    \"name\": \"looks_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3.01v18H21V3zm-5.99 14H9v-2h4v-2h-2v-2h2V9H9V7h6.01v10z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_horizontal\": {\n    \"name\": \"panorama_horizontal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6.55c2.6.77 5.28 1.16 8 1.16 2.72 0 5.41-.39 8-1.16v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.41.39-8 1.16V6.55M2 3.77v16.47s.77-.26.88-.3C5.82 18.85 8.91 18.3 12 18.3c3.09 0 6.18.55 9.12 1.64.11.04.88.3.88.3V3.77s-.77.26-.88.3C18.18 5.15 15.09 5.71 12 5.71s-6.18-.56-9.12-1.64c-.11-.05-.88-.3-.88-.3z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_normal\": {\n    \"name\": \"auto_fix_normal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><path d=\\\"M18.41,9.83l-4.24-4.24L1.59,18.17l4.24,4.24L18.41,9.83z M14.21,11.21l-1.41-1.41l1.38-1.38l1.41,1.41L14.21,11.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"palette\": {\n    \"name\": \"palette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10c1.38,0,2.5-1.12,2.5-2.5c0-0.61-0.23-1.2-0.64-1.67c-0.08-0.1-0.13-0.21-0.13-0.33 c0-0.28,0.22-0.5,0.5-0.5H16c3.31,0,6-2.69,6-6C22,6.04,17.51,2,12,2z M17.5,13c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5C19,12.33,18.33,13,17.5,13z M14.5,9C13.67,9,13,8.33,13,7.5C13,6.67,13.67,6,14.5,6S16,6.67,16,7.5 C16,8.33,15.33,9,14.5,9z M5,11.5C5,10.67,5.67,10,6.5,10S8,10.67,8,11.5C8,12.33,7.33,13,6.5,13S5,12.33,5,11.5z M11,7.5 C11,8.33,10.33,9,9.5,9S8,8.33,8,7.5C8,6.67,8.67,6,9.5,6S11,6.67,11,7.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,2c-4.41,0-8,3.59-8,8s3.59,8,8,8c1.1,0,2-0.9,2-2c0-0.49-0.18-0.96-0.51-1.34c-0.06-0.08-0.1-0.17-0.1-0.26 c0-0.22,0.18-0.4,0.4-0.4h1.42c2.65,0,4.8-2.15,4.8-4.8C18,5.23,14.41,2,10,2z M5.5,10.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S6.75,8.81,6.75,9.5C6.75,10.19,6.19,10.75,5.5,10.75z M8,7.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S9.25,5.81,9.25,6.5C9.25,7.19,8.69,7.75,8,7.75z M12,7.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C13.25,7.19,12.69,7.75,12,7.75z M14.5,10.75c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C15.75,10.19,15.19,10.75,14.5,10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"filter_hdr\": {\n    \"name\": \"filter_hdr\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\\\"></path>\"\n      }\n    }\n  },\n  \"timer\": {\n    \"name\": \"timer\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15,1H9v2h6V1z M11,14h2V8h-2V14z M19.03,7.39l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42 C16.07,4.74,14.12,4,12,4c-4.97,0-9,4.03-9,9s4.02,9,9,9s9-4.03,9-9C21,10.88,20.26,8.93,19.03,7.39z M12,20c-3.87,0-7-3.13-7-7 s3.13-7,7-7s7,3.13,7,7S15.87,20,12,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.45,6.61l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4c-3.87,0-7,3.13-7,7s3.13,7,7,7c3.87,0,7-3.13,7-7 C17,9.34,16.42,7.81,15.45,6.61z M10,16.5c-3.03,0-5.5-2.47-5.5-5.5S6.97,5.5,10,5.5s5.5,2.47,5.5,5.5S13.03,16.5,10,16.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><rect height=\\\"5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"switch_camera\": {\n    \"name\": \"switch_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zm-7 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy\": {\n    \"name\": \"view_comfy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,4v7h20V4H2z M10,20h12v-7H10V20z M2,20h6v-7H2V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5.25\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"4\\\"></rect><rect height=\\\"5.25\\\" width=\\\"9.5\\\" x=\\\"8.5\\\" y=\\\"10.75\\\"></rect><rect height=\\\"5.25\\\" width=\\\"5\\\" x=\\\"2\\\" y=\\\"10.75\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"audiotrack\": {\n    \"name\": \"audiotrack\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"linked_camera\": {\n    \"name\": \"linked_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"3\\\"></circle><path d=\\\"M18 8h1.33c0-1.84-1.49-3.33-3.33-3.33V6c1.11 0 2 .89 2 2zm2.67 0H22c0-3.31-2.69-6-6-6v1.33c2.58 0 4.67 2.09 4.67 4.67zM15 7V4H9L7.17 6H2v16h20V9h-5c0-1.1-.9-2-2-2zm-3 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"tag_faces\": {\n    \"name\": \"tag_faces\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 2C6.49 2 2.02 6.48 2.02 12s4.47 10 9.99 10c5.53 0 10.01-4.48 10.01-10S17.54 2 12.01 2zm.01 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.35 8 15.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.35 8 8.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.91c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_yuan\": {\n    \"name\": \"currency_yuan\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.28,12 18,12 18,14 13,14 13,21 11,21 11,14 6,14 6,12 10.72,12 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"10.97,10 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 9.03,10 5.5,10 5.5,11.5 9.25,11.5 9.25,17 10.75,17 10.75,11.5 14.5,11.5 14.5,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"receipt_long\": {\n    \"name\": \"receipt_long\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><g><path d=\\\"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M15,20H6c-0.55,0-1-0.45-1-1v-1h10V20z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"10\\\"></rect></g>\"\n      }\n    }\n  },\n  \"20mp\": {\n    \"name\": \"20mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"7\\\"></rect><path d=\\\"M3,3v18h18V3H3z M6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M13,5.5 h4.5v6H13V5.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"21mp\": {\n    \"name\": \"21mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M7.5,8h3V7h-3V5.5H12V9H9v1h3v1.5H7.5V8z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M13,5.5h3 v6h-1.5V7H13V5.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"euro\": {\n    \"name\": \"euro\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><path d=\\\"M12,15c-1.63,0-3.06-0.79-3.98-2H12l1-2H7.1C7.04,10.68,7,10.34,7,10s0.04-0.68,0.1-1H12l1-2H8.02C8.94,5.79,10.37,5,12,5 c1.38,0,2.63,0.56,3.54,1.46l1.41-1.41C15.68,3.78,13.93,3,12,3C9.21,3,6.81,4.64,5.68,7H3L2,9h3.08C5.03,9.33,5,9.66,5,10 s0.03,0.67,0.08,1H3l-1,2h3.68c1.12,2.36,3.53,4,6.32,4c1.93,0,3.68-0.78,4.95-2.05l-1.41-1.41C14.63,14.44,13.38,15,12,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"17mp\": {\n    \"name\": \"17mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M12,7V5.5h4.87l-1.87,6 h-1.75L14.62,7H12z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"panorama_vertical\": {\n    \"name\": \"panorama_vertical\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.46 4c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.41 1.16 8H6.55c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.41-1.16-8h10.91m2.78-2H3.77s.26.77.3.88C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.04.11-.3.88-.3.88h16.47s-.26-.77-.3-.88c-1.09-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.3-.88.3-.88z\\\"></path>\"\n      }\n    }\n  },\n  \"landscape\": {\n    \"name\": \"landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_portrait\": {\n    \"name\": \"crop_portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5v18h14V3zm-2 16H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_franc\": {\n    \"name\": \"currency_franc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"18,5 18,3 7,3 7,16 5,16 5,18 7,18 7,21 9,21 9,18 13,18 13,16 9,16 9,13 17,13 17,11 9,11 9,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"14.5,4.5 14.5,3 6,3 6,13 4.5,13 4.5,14.5 6,14.5 6,17 7.5,17 7.5,14.5 11,14.5 11,13 7.5,13 7.5,10.5 14,10.5 14,9 7.5,9 7.5,4.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_1\": {\n    \"name\": \"filter_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm11 10h2V5h-4v2h2v8zm9-14H5v18h18V1zm-2 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_4\": {\n    \"name\": \"filter_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm8-14H5v18h18V1zm-2 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"brush\": {\n    \"name\": \"brush\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm14.41-8.66l-2.75-2.75L9 12.25 11.75 15l9.66-9.66z\\\"></path>\"\n      }\n    }\n  },\n  \"30fps_select\": {\n    \"name\": \"30fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,4v2h5v2H5v2h4v2H4v2h7V4H4z M13,4h7v10h-7V4z M18,6h-3v6h3V6z M5,22H3v-5h2V22z M9,22H7v-5h2V22z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"details\": {\n    \"name\": \"details\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\\\"></path>\"\n      }\n    }\n  },\n  \"6mp\": {\n    \"name\": \"6mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M10,5.5h4.5V7h-3v1h3v3.5H10V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M18,17h-3v1.5 h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"camera_alt\": {\n    \"name\": \"camera_alt\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle><path d=\\\"M16.83 4L15 2H9L7.17 4H2v16h20V4h-5.17zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"2mp\": {\n    \"name\": \"2mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M10,8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H10V8z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M18,17h-3 v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"nature_people\": {\n    \"name\": \"nature_people\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19.09 3.38 2.58 6.16 5.83 6.7V20H6v-3h1v-5H2v5h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3\": {\n    \"name\": \"timer_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.61 12.97c-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09s-.39-.63-.69-.88c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z\\\"></path>\"\n      }\n    }\n  },\n  \"style\": {\n    \"name\": \"style\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.87 20.21v-9.03l-3.19 7.7 3.19 1.33zm18.92-2.43L16.31 2.14 5.26 6.71l6.48 15.64 11.05-4.57zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 13h3.45l-3.45-8.34v8.34z\\\"></path>\"\n      }\n    }\n  },\n  \"7mp\": {\n    \"name\": \"7mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M11.25,11.5L12.62,7H10V5.5h4.87l-1.87,6H11.25z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"motion_photos_on\": {\n    \"name\": \"motion_photos_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M6,12 c0-3.31,2.69-6,6-6s6,2.69,6,6s-2.69,6-6,6S6,15.31,6,12z M7,5.5C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M5,10c0-2.76,2.24-5,5-5s5,2.24,5,5 c0,2.76-2.24,5-5,5S5,12.76,5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_strong\": {\n    \"name\": \"hdr_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 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>\"\n      }\n    }\n  },\n  \"auto_awesome\": {\n    \"name\": \"auto_awesome\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,9l1.25-2.75L23,5l-2.75-1.25L19,1l-1.25,2.75L15,5l2.75,1.25L19,9z M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5-5.5 L17,12L11.5,9.5z M19,15l-1.25,2.75L15,19l2.75,1.25L19,23l1.25-2.75L23,19l-2.75-1.25L19,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_rotate\": {\n    \"name\": \"crop_rotate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V6h-8v2h6v6zm-8 2V4H6v2H4v2h2v10h10v2h2v-2h2v-2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_sunny\": {\n    \"name\": \"wb_sunny\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_large\": {\n    \"name\": \"photo_size_select_large\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 15h2v2h-2v-2zm0 4h2v2h-2v-2zm0-8h2v2h-2v-2zm-8-8h2v2h-2V3zm8 4h2v2h-2V7zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3H1v2h2V3zm20 0h-2v2h2V3zM9 3h2v2H9V3zM5 3h2v2H5V3zm-4 8v10h14V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_b_and_w\": {\n    \"name\": \"filter_b_and_w\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-2 16l-7-8v8H5l7-8V5h7v14z\\\"></path>\"\n      }\n    }\n  },\n  \"loupe\": {\n    \"name\": \"loupe\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-.27-4.97c-6.08-.44-11.14 4.62-10.7 10.7.38 5.28 5 9.27 10.29 9.27H22v-9.68c0-5.3-3.98-9.91-9.27-10.29zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"image\": {\n    \"name\": \"image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_2\": {\n    \"name\": \"filter_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-4-4h-4v-2h4V5h-6v2h4v2h-4v6h6v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"19mp\": {\n    \"name\": \"19mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12,10h3V9h-3V5.5h4.5v6H12V10z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5 V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"leak_add\": {\n    \"name\": \"leak_add\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2c0 4.97-4.03 9-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"23mp\": {\n    \"name\": \"23mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,3v18h18V3H3z M6.5,8h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M13,10h3V9 h-2V8h2V7h-3V5.5h4.5v6H13V10z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"looks_two\": {\n    \"name\": \"looks_two\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-6 10h-4v2h4v2H9v-6h4V9H9V7h6v6z\\\"></path>\"\n      }\n    }\n  },\n  \"dehaze\": {\n    \"name\": \"dehaze\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"camera\": {\n    \"name\": \"camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.4 10.5l4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.85-6.32 2.25l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25C21 16.97 22 14.61 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75C3.01 7.03 2 9.39 2 12c0 .69.07 1.35.2 2h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76c.7.15 1.42.24 2.17.24 2.4 0 4.6-.85 6.32-2.25l-3.66-6.35-.93 1.6z\\\"></path>\"\n      }\n    }\n  },\n  \"18mp\": {\n    \"name\": \"18mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"6.5\\\"></rect><path d=\\\"M3,3v18h18V3H3z M12,5.5h4.5v6H12V5.5z M7,5.5h3v6H8.5V7H7V5.5z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M18,17h-3v1.5h-1.5v-6H18V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"5mp\": {\n    \"name\": \"5mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M3,3v18h18V3H3z M10,10h3V9h-3V5.5h4.5V7h-3v1h3v3.5H10V10z M12.5,18.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5V18.5z M18,17 h-3v1.5h-1.5v-6H18V17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"picture_as_pdf\": {\n    \"name\": \"picture_as_pdf\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H6v16h16V2zm-10.5 9H9v2H7.5V7h4v4zm5 .5c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v16h16v-2H4V6zm10 5.5h1v-3h-1v3z\\\"></path>\"\n      }\n    }\n  },\n  \"view_compact\": {\n    \"name\": \"view_compact\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,18h2.5v-2.5H4V18z M4,13.25h2.5v-2.5H4V13.25z M4,8.5h2.5V6H4V8.5z M17.5,6v2.5H20V6H17.5z M13,8.5h2.5V6H13V8.5z M17.5,18H20v-2.5h-2.5V18z M17.5,13.25H20v-2.5h-2.5V13.25z M8.5,18H11v-2.5H8.5V18z M13,18h2.5v-2.5H13V18z M8.5,8.5H11V6H8.5 V8.5z M13,13.25h2.5v-2.5H13V13.25z M8.5,13.25H11v-2.5H8.5V13.25z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"5.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"12.5\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"12.5\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"bedtime\": {\n    \"name\": \"bedtime\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.28 2C5.67 1.85 2 5.53 2 10c0 4.42 3.58 8 8 8 2.97 0 5.55-1.62 6.93-4.02-6.01-.2-9.67-6.74-6.65-11.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"music_note\": {\n    \"name\": \"music_note\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_off\": {\n    \"name\": \"grid_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V22h17.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_weak\": {\n    \"name\": \"center_focus_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 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>\"\n      }\n    }\n  },\n  \"colorize\": {\n    \"name\": \"colorize\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.42 6.34l-3.75-3.75-3.82 3.82-1.94-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.84-3.83zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_6\": {\n    \"name\": \"brightness_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_3\": {\n    \"name\": \"brightness_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_vertical_select\": {\n    \"name\": \"panorama_vertical_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.49,11.99c0-5.25,1.54-9.01,1.92-10l-16.82,0c0.76,2.16,1.9,5.21,1.9,10c0,4.78-1.17,7.91-1.9,10l16.81,0 C19.66,19.91,18.49,16.76,18.49,11.99z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_photosphere_select\": {\n    \"name\": \"panorama_photosphere_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M23,8.84c-0.54-0.43-1.23-0.81-1.99-1.15C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68C2.23,8.03,1.54,8.4,1,8.84 v6.33c0.54,0.43,1.23,0.81,1.99,1.15C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.76-0.34,1.45-0.72,1.99-1.15V8.84z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68C7.51,5.04,9.63,4,12,4z M12,20 c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68C16.49,18.96,14.37,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_ruble\": {\n    \"name\": \"currency_ruble\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0,5.5-2.46,5.5-5.5C19,5.46,16.54,3,13.5,3z M13.5,12H9V5h4.5 C15.43,5,17,6.57,17,8.5S15.43,12,13.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.25,3H6v7H4.5v1.5H6V13H4.5v1.5H6V17h1.5v-2.5H11V13H7.5v-1.5h3.75c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mp\": {\n    \"name\": \"mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,3H3v18h18V3z M6,9h6.5v6H11v-4.5h-1v3H8.5v-3h-1V15H6V9z M15,15h-1.5V9H18v4.5h-3V15z M15,12h1.5v-1.5H15V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bedtime_off\": {\n    \"name\": \"bedtime_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M21.19 21.19 2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.08 2 9.97 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.62 5.51-1.66l2.27 2.27 1.41-1.42z\\\"></path></g><g><path d=\\\"M12.34 2.02c-2.18-.07-4.19.55-5.85 1.64l4.59 4.59c-.27-2.05.1-4.22 1.26-6.23z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.28 2c-1.79-.05-3.43.47-4.78 1.38l3.79 3.79c-.25-1.69.02-3.49.99-5.17zm-7.35.93L1.87 3.99 3.38 5.5C2.51 6.79 2 8.34 2 10c0 4.42 3.58 8 8 8 1.67 0 3.2-.52 4.48-1.39l1.53 1.53 1.06-1.06L2.93 2.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"photo_library\": {\n    \"name\": \"photo_library\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 18V2H6v16h16zm-11-6l2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"reply_all\": {\n    \"name\": \"reply_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread\": {\n    \"name\": \"markunread\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2v16h20V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"mail\": {\n    \"name\": \"mail\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2v16h20V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"biotech\": {\n    \"name\": \"biotech\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,19v-2h5v-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.46-2.56C8.17,9.03,8,8.54,8,8c0-0.21,0.04-0.42,0.09-0.62 C6.28,8.13,5,9.92,5,12c0,2.76,2.24,5,5,5v2H5v2h14v-2H13z\\\"></path><path d=\\\"M10.56,5.51C11.91,5.54,13,6.64,13,8c0,0.75-0.33,1.41-0.85,1.87l0.59,1.62l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94 l0.94-0.34L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97L10.56,5.51z\\\"></path><circle cx=\\\"10.5\\\" cy=\\\"8\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,15v-2h4v-1H8.47v0C7.11,11.98,6,10.87,6,9.5c0-0.93,0.51-1.73,1.26-2.16C7.1,7.1,7,6.81,7,6.5 c0-0.05,0.01-0.11,0.02-0.16C5.83,6.9,5,8.1,5,9.5c0,1.76,1.31,3.2,3,3.45V15H5v1h10v-1H10z\\\"></path><path d=\\\"M8.15,5.04C8.26,5.02,8.38,5,8.5,5C9.33,5,10,5.67,10,6.5c0,0.59-0.34,1.09-0.83,1.34l0.59,1.62l0.94-0.34l0.32,0.88 l0.94-0.34l-0.32-0.88l0.94-0.34l-1.84-5.06L9.8,3.71L9.47,2.83L8.53,3.17l0.32,0.88L7.92,4.39L8.15,5.04z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"weekend\": {\n    \"name\": \"weekend\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 9.03V14h12V9.03h2V5H4v4.03zM19 15H5v-4.97H1V19h22v-8.97h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"attribution\": {\n    \"name\": \"attribution\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-2.75-5.5h1.5V19h2.5v-4.5h1.5v-6h-5.5z\\\"></path><circle cx=\\\"12\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"stacked_bar_chart\": {\n    \"name\": \"stacked_bar_chart\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"10\\\"></rect><rect height=\\\"5\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"15\\\"></rect><rect height=\\\"8\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"12\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"12\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"8\\\"></rect><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"insights\": {\n    \"name\": \"insights\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z\\\"></path><polygon points=\\\"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93\\\"></polygon><polygon points=\\\"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"12.5,8 13.29,6.28 15,5.5 13.29,4.72 12.5,3 11.74,4.72 10,5.5 11.74,6.28\\\"></polygon><polygon points=\\\"4,10 4.4,8.4 6,8 4.4,7.6 4,6 3.6,7.6 2,8 3.6,8.4\\\"></polygon><path d=\\\"M16.5,6c-1.07,0-1.84,1.12-1.35,2.14l-3.01,3.01c-0.52-0.25-0.99-0.14-1.29,0l-1.01-1.01C9.94,9.95,10,9.73,10,9.5 C10,8.67,9.33,8,8.5,8S7,8.67,7,9.5c0,0.23,0.06,0.45,0.15,0.64l-3.01,3.01C3.95,13.06,3.73,13,3.5,13C2.67,13,2,13.67,2,14.5 S2.67,16,3.5,16S5,15.33,5,14.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01c0.52,0.25,0.99,0.14,1.29,0l1.01,1.01 C10.06,12.05,10,12.27,10,12.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01 C16.89,9.35,18,8.56,18,7.5C18,6.67,17.33,6,16.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upcoming\": {\n    \"name\": \"upcoming\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.16,7.26l-1.41-1.41L16.19,9.4l1.41,1.41C17.6,10.81,21.05,7.29,21.16,7.26z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"3\\\"></rect><path d=\\\"M6.4,10.81L7.81,9.4L4.26,5.84L2.84,7.26C2.95,7.29,6.4,10.81,6.4,10.81z\\\"></path><path d=\\\"M22,12h-7c0,1.66-1.34,3-3,3s-3-1.34-3-3H2v9h20V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"link_off\": {\n    \"name\": \"link_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z\\\"></path>\"\n      }\n    }\n  },\n  \"font_download\": {\n    \"name\": \"font_download\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.93 13.5h4.14L12 7.98 9.93 13.5zM22 2H2v20h20V2zm-6.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_search\": {\n    \"name\": \"content_paste_search\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v5h2V3h-6.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H3v18h7v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\\\"></path><path d=\\\"M20.3,18.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S12,14,12,16.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l2.7,2.7 l1.4-1.4L20.3,18.9z M16.5,19c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C19,17.9,17.9,19,16.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V7h8V4.5h1.5V9H17V3h-5.07c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3H3v14h6v-1.5H4.5V4.5z M10,3 c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><path d=\\\"M16.94,15.88c0.35-0.54,0.56-1.19,0.56-1.88c0-1.93-1.57-3.5-3.5-3.5s-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.94,15.88z M14,16c-1.1,0-2-0.9-2-2c0-0.31,0.07-0.61,0.2-0.87 C12.52,12.46,13.21,12,14,12c1.1,0,2,0.9,2,2S15.1,16,14,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"remove_circle_outline\": {\n    \"name\": \"remove_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"ballot\": {\n    \"name\": \"ballot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 9.5h5v-2h-5v2zm0 7h5v-2h-5v2zm8 4.5H3V3h18v18zM6 11h5V6H6v5zm1-4h3v3H7V7zM6 18h5v-5H6v5zm1-4h3v3H7v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"outlined_flag\": {\n    \"name\": \"outlined_flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_format\": {\n    \"name\": \"text_format\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z\\\"></path>\"\n      }\n    }\n  },\n  \"tag\": {\n    \"name\": \"tag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_circle_outline\": {\n    \"name\": \"add_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"link\": {\n    \"name\": \"link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8zm9-4h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"square_foot\": {\n    \"name\": \"square_foot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v16h16L17.66,17.66z M7,17v-5.76L12.76,17H7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.24,14.24l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71 l-0.35-0.35l0.71-0.71L8.14,8.14L7.44,8.85L7.08,8.5l0.71-0.71L6.11,6.11L5.4,6.82L5.05,6.46l0.71-0.71L4,4v12h12L14.24,14.24z M6,14V8.83L11.17,14H6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"next_week\": {\n    \"name\": \"next_week\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 7h-6V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H2v15h20V7zM10 5h4v2h-4V5zm1 13.5l-1-1 3-3-3-3 1-1 4 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"deselect\": {\n    \"name\": \"deselect\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,13h2v-2H3V13z M7,21h2v-2H7V21z M13,3h-2v2h2V3z M19,3v2h2V3H19z M5,21v-2H3v2H5z M3,17h2v-2H3V17z M11,21h2v-2h-2V21z M19,13h2v-2h-2V13z M19,9h2V7h-2V9z M15,5h2V3h-2V5z M7.83,5L7,4.17V3h2v2H7.83z M19.83,17L19,16.17V15h2v2H19.83z M21.19,21.19 L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19z M9,15v-3.17L12.17,15H9z M15,12.17V9 h-3.17l-2-2H17v7.17L15,12.17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11.88V6H8.12l1.5,1.5h2.88v2.88L14,11.88z M4.5,17v-1.5H3V17H4.5z M3,13.88h1.5v-1.5H3V13.88z M3,10.75h1.5v-1.5H3 V10.75z M15.5,10.75H17v-1.5h-1.5V10.75z M15.5,7.62H17v-1.5h-1.5V7.62z M15.5,3v1.5H17V3H15.5z M12.38,4.5h1.5V3h-1.5V4.5z M9.25,4.5h1.5V3h-1.5V4.5z M6.12,17h1.5v-1.5h-1.5V17z M9.25,17h1.5v-1.5h-1.5V17z M17.07,17.07L2.93,2.93L1.87,3.99L4,6.12H3v1.5 h1.5v-1L6,8.12V14h5.88l1.5,1.5h-1V17h1.5v-1l2.13,2.13L17.07,17.07z M7.62,4.5V3h-1.5v1l0.5,0.5H7.62z M17,13.88v-1.5h-1.5v1 l0.5,0.5H17z M10.38,12.5H7.5V9.62L10.38,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add\": {\n    \"name\": \"add\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list\": {\n    \"name\": \"filter_list\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_vote\": {\n    \"name\": \"how_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v6h18v-6zm1.81-5.04L13.45 1.6 5.68 9.36l6.36 6.36 7.77-7.76zm-6.35-3.55L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z\\\"></path>\"\n      }\n    }\n  },\n  \"save_as\": {\n    \"name\": \"save_as\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,12.4V7l-4-4H3v18h9.4L21,12.4z M15,15c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,13.34,15,15z M6,6h9v4H6V6z M19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25z M23.61,16.16l-1.2,1.2l-1.77-1.77l1.2-1.2L23.61,16.16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,11.46V6l-3-3H3v14h8.47L17,11.46z M12.5,8.5h-7v-3h7V8.5z M12.25,12.5c0,1.24-1.01,2.25-2.25,2.25 s-2.25-1.01-2.25-2.25s1.01-2.25,2.25-2.25S12.25,11.26,12.25,12.5z M16.82,13.77l1.41,1.41L14.41,19H13l0-1.41L16.82,13.77z M17.31,13.27l0.98-0.98l1.41,1.41l-0.98,0.98L17.31,13.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"content_cut\": {\n    \"name\": \"content_cut\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"forward\": {\n    \"name\": \"forward\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8V4l8 8-8 8v-4H4V8h8z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_reg\": {\n    \"name\": \"how_to_reg\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 17l3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4\\\"></path><path d=\\\"M15.47 20.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41-6.53 6.59z\\\"></path>\"\n      }\n    }\n  },\n  \"inbox\": {\n    \"name\": \"inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3.01v18H21V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H5V5h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"sort\": {\n    \"name\": \"sort\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"copy_all\": {\n    \"name\": \"copy_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,2H7v16h13V2z M18,16H9V4h9V16z M3,15v-2h2v2H3z M3,9.5h2v2H3V9.5z M10,20h2v2h-2V20z M3,18.5v-2h2v2H3z M5,22H3v-2h2V22 z M8.5,22h-2v-2h2V22z M15.5,22h-2v-2h2V22z M3,6h2v2H3V6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,2H6v13h11V2z M15.5,13.5h-8v-10h8V13.5z M3,12v-1.5h1.5V12H3z M3,15v-1.5h1.5V15H3z M9,16.5h1.5V18H9V16.5z M3,7.5h1.5 V9H3V7.5z M7.5,18H6v-1.5h1.5V18z M4.5,18H3v-1.5h1.5V18z M4.5,6H3V4.5h1.5V6z M13.49,16.5V18h-1.5v-1.5H13.49z\\\"></path>\"\n      }\n    }\n  },\n  \"remove\": {\n    \"name\": \"remove\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13H5v-2h14v2z\\\"></path>\"\n      }\n    }\n  },\n  \"content_copy\": {\n    \"name\": \"content_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H2v16h2V3h12V1zm5 4H6v18h15V5zm-2 16H8V7h11v14z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste\": {\n    \"name\": \"content_paste\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 2h-6.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H3v20h18V2zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z\\\"></path>\"\n      }\n    }\n  },\n  \"gesture\": {\n    \"name\": \"gesture\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z\\\"></path>\"\n      }\n    }\n  },\n  \"web_stories\": {\n    \"name\": \"web_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,4c1.1,0,2,0,2,0v16c0,0-0.9,0-2,0V4z M2,2v20h13V2H2z M21,18c0.83,0,1.5,0,1.5,0V6c0,0-0.67,0-1.5,0V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.5,2H2v16h10.5V2z\\\"></path><rect height=\\\"12\\\" width=\\\"1.5\\\" x=\\\"14\\\" y=\\\"4\\\"></rect><rect height=\\\"10\\\" width=\\\"1\\\" x=\\\"17\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"block\": {\n    \"name\": \"block\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"send\": {\n    \"name\": \"send\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.01 21L23 12 2.01 3 2 10l15 2-15 2 .01 7z\\\"></path>\"\n      }\n    }\n  },\n  \"stream\": {\n    \"name\": \"stream\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"20\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"4\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"2\\\"></circle><rect height=\\\"2\\\" transform=\\\"matrix(0.7081 -0.7061 0.7061 0.7081 -0.1146 13.9802)\\\" width=\\\"6.22\\\" x=\\\"13.74\\\" y=\\\"6.13\\\"></rect><polygon points=\\\"8.32,9.68 8.63,10 10.05,8.59 6.03,4.55 6.02,4.55 5.71,4.23 4.29,5.64 8.31,9.69\\\"></polygon><polygon points=\\\"15.41,13.94 14,15.35 17.99,19.36 18.34,19.71 19.76,18.3 15.77,14.29\\\"></polygon><polygon points=\\\"8.59,13.95 4.56,17.96 4.24,18.29 5.65,19.7 9.68,15.68 10.01,15.36\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"move_to_inbox\": {\n    \"name\": \"move_to_inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"unarchive\": {\n    \"name\": \"unarchive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM14 15v2h-4v-2H6.5L12 9.5l5.5 5.5H14zM5.12 5l.81-1h12l.94 1H5.12z\\\"></path>\"\n      }\n    }\n  },\n  \"reply\": {\n    \"name\": \"reply\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_circle\": {\n    \"name\": \"remove_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"push_pin\": {\n    \"name\": \"push_pin\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,9V4l2,0V2H6v2l2,0v5c0,1.66-1.34,3-3,3h0v2h5.97v7l1,1l1-1v-7H19v-2h0 C17.34,12,16,10.66,16,9z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10c-1.1,0-2-0.9-2-2V4h1V3H6v1h1v4c0,1.1-0.9,2-2,2v1h4.5v5.5L10,17l0.5-0.5V11H15V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"inventory\": {\n    \"name\": \"inventory\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v5h2V3h-6.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H3v18h8v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\\\"></path><polygon points=\\\"21,11.5 15.51,17 12.5,14 11,15.5 15.51,20 22.5,13\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"drafts\": {\n    \"name\": \"drafts\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 6.86L12 1 2 6.86V20h20l-.01-13.14zM12 13L3.74 7.84 12 3l8.26 4.84L12 13z\\\"></path>\"\n      }\n    }\n  },\n  \"report_off\": {\n    \"name\": \"report_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 7h2v2.33l7.2 7.2.8-.8V8.27L15.73 3H8.27l-.8.8L11 7.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM11 12.99l.01.01H11v-.01zm1 4.31c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z\\\"></path>\"\n      }\n    }\n  },\n  \"save_alt\": {\n    \"name\": \"save_alt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12v7H5v-7H3v9h18v-9h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_off\": {\n    \"name\": \"content_paste_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V21h15.17l1.61,1.61L21.19,21.19z M5,19V7.83L16.17,19H5z M17,8V5h2v11.17l2,2V3 h-6.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5.83l5,5H17z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V17h11.88l1.13,1.13L17.07,17.07z M4.5,15.5V6.62l8.88,8.88H4.5z M14,7V4.5h1.5 v8.88l1.5,1.5V3h-5.07c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3H5.12l4,4H14z M10,3c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.34,9.59,3,10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"create\": {\n    \"name\": \"create\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_go\": {\n    \"name\": \"content_paste_go\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,5h2v3h10V5h2v6h2V3h-6.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H3v18h7v-2H5V5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\\\"></path><polygon points=\\\"18.01,13 16.59,14.41 18.17,15.99 12,15.99 12,17.99 18.17,17.99 16.59,19.58 18.01,20.99 22,16.99\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,4.5H6V7h8V4.5h1.5V9H17V3h-5.07c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3H3v14h6v-1.5H4.5V4.5z M10,3 c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><polygon points=\\\"15,11 13.94,12.06 15.13,13.25 11,13.25 11,14.75 15.13,14.75 13.94,15.94 15,17 18,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"shield\": {\n    \"name\": \"shield\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"file_copy\": {\n    \"name\": \"file_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 1H2v16h2V3h12V1zm-1 4l6 6v12H6V5h9zm-1 7h5.5L14 6.5V12z\\\"></path>\"\n      }\n    }\n  },\n  \"delete_sweep\": {\n    \"name\": \"delete_sweep\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 16h4v2h-4v-2zm0-8h7v2h-7V8zm0 4h6v2h-6v-2zM3 20h10V8H3v12zM14 5h-3l-1-1H6L5 5H2v2h12V5z\\\"></path>\"\n      }\n    }\n  },\n  \"flag\": {\n    \"name\": \"flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z\\\"></path>\"\n      }\n    }\n  },\n  \"save\": {\n    \"name\": \"save\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H3v18h18V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z\\\"></path>\"\n      }\n    }\n  },\n  \"report\": {\n    \"name\": \"report\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3s.58-1.3 1.3-1.3 1.3.58 1.3 1.3-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"undo\": {\n    \"name\": \"undo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"low_priority\": {\n    \"name\": \"low_priority\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flag_circle\": {\n    \"name\": \"flag_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M18,15h-5l-1-2H9.5v5H8V7h6l1,2h3V15 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M15,12h-4l-1-1.5H8V15H7V6h4.5l1,1.5H15V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"report_gmailerrorred\": {\n    \"name\": \"report_gmailerrorred\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M11 7h2v7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"inventory_2\": {\n    \"name\": \"inventory_2\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,2v6.7h1V22h18V8.7h1V2H2z M15,14H9v-2h6V14z M20,7H4V4h16V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,2H2v6h1v10h14V8h1V2z M16.5,6.5h-13v-3h13V6.5z M12,11.5H8V10h4V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"archive\": {\n    \"name\": \"archive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM12 17.5L6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z\\\"></path>\"\n      }\n    }\n  },\n  \"waves\": {\n    \"name\": \"waves\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z\\\"></path>\"\n      }\n    }\n  },\n  \"policy\": {\n    \"name\": \"policy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21,5l-9-4L3,5v6c0,5.55,3.84,10.74,9,12c2.3-0.56,4.33-1.9,5.88-3.71l-3.12-3.12c-1.94,1.29-4.58,1.07-6.29-0.64 c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29l2.9,2.9C20.29,15.69,21,13.38,21,11V5z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M10,13c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3c0,0.65-0.21,1.24-0.56,1.73l2.1,2.1C15.46,12.52,16,10.94,16,9.31V5 l-6-2L4,5v4.31c0,3.55,2.56,6.88,6,7.69c1.53-0.36,2.89-1.22,3.92-2.37l-2.19-2.19C11.24,12.79,10.65,13,10,13z\\\"></path><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"dynamic_feed\": {\n    \"name\": \"dynamic_feed\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><polygon points=\\\"8,8 6,8 6,17 17,17 17,15 8,15\\\"></polygon><path d=\\\"M22,3H10v10h12V3z M20,11h-8V7h8V11z\\\"></path><polygon points=\\\"4,12 2,12 2,21 13,21 13,19 4,19\\\"></polygon></g></g><g display=\\\"none\\\"><g display=\\\"inline\\\"></polygon><g display=\\\"inline\\\"><polygon points=\\\"8,8 6,8 6,17 17,17 17,15 8,15\\\"></polygon><path d=\\\"M22,3H10v10h12V3z M20,11h-8V7h8V11z\\\"></path><polygon points=\\\"4,12 2,12 2,21 13,21 13,19 4,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g></rect><g><g><polygon points=\\\"4,8 3,8 3,16 13,16 13,15 4,15\\\"></polygon></g><g><polygon points=\\\"6,6 5,6 5,14 15,14 15,13 6,13\\\"></polygon></g><g><path d=\\\"M7,4v8h10V4H7z M16,11H8V7h8V11z\\\"></path></g></g></g><g display=\\\"none\\\"><g display=\\\"inline\\\"></polygon><polygon display=\\\"inline\\\" points=\\\"4,15 4,8 3,8 3,16 13,16 13,15\\\"></polygon><polygon display=\\\"inline\\\" points=\\\"6,13 6,6 5,6 5,14 15,14 15,13\\\"></polygon><g display=\\\"inline\\\"><path d=\\\"M16,5v6H8V5H16 M17,4H7v8h10V4L17,4z\\\"></path></g><g display=\\\"inline\\\"><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"clear\": {\n    \"name\": \"clear\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\\\"></path>\"\n      }\n    }\n  },\n  \"add_box\": {\n    \"name\": \"add_box\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zm-4 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"amp_stories\": {\n    \"name\": \"amp_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"15\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"4\\\"></rect><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"6\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><rect height=\\\"11\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"4\\\"></rect><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"16\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"redo\": {\n    \"name\": \"redo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z\\\"></path>\"\n      }\n    }\n  },\n  \"where_to_vote\": {\n    \"name\": \"where_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.53 12l-3.48-3.48L8.4 9.1l2.07 2.07 5.13-5.14 1.41 1.42L10.47 14z\\\"></path>\"\n      }\n    }\n  },\n  \"font_download_off\": {\n    \"name\": \"font_download_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.58,9.75l-0.87-0.87l0.23-0.66h0.1L12.58,9.75z M20.49,23.31L19.17,22H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M12.1,14.93l-3.3-3.3L6.41,18h2.08l1.09-3.07H12.1z M10.35,7.52L10.92,6h2.14l2.55,6.79L22,19.17V2H4.83L10.35,7.52z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.61,8.49l-0.57-1.63H9.95L9.7,7.58L10.61,8.49z M8.56,6.44L9.1,5h1.79l2.27,6.04L18,15.88V2H4.12L8.56,6.44z M2.22,2.22 L1.16,3.28L2,4.12V18h13.88l0.84,0.84l1.06-1.06L2.22,2.22z M7.99,12.44L7.08,15H5.35L7.4,9.52l2.92,2.92H7.99z\\\"></path>\"\n      }\n    }\n  },\n  \"add_circle\": {\n    \"name\": \"add_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\\\"></path>\"\n      }\n    }\n  },\n  \"select_all\": {\n    \"name\": \"select_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm6 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0-4h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zm4 0h2V3h-2v2zm0 16h2v-2h-2v2zM3 21h2v-2H3v2zm4-4h10V7H7v10zm2-8h6v6H9V9z\\\"></path>\"\n      }\n    }\n  },\n  \"change_circle\": {\n    \"name\": \"change_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12.06,19v-2.01c-0.02,0-0.04,0-0.06,0 c-1.28,0-2.56-0.49-3.54-1.46c-1.71-1.71-1.92-4.35-0.64-6.29l1.1,1.1c-0.71,1.33-0.53,3.01,0.59,4.13c0.7,0.7,1.62,1.03,2.54,1.01 v-2.14l2.83,2.83L12.06,19z M16.17,14.76l-1.1-1.1c0.71-1.33,0.53-3.01-0.59-4.13C13.79,8.84,12.9,8.5,12,8.5c-0.02,0-0.04,0-0.06,0 v2.15L9.11,7.83L11.94,5v2.02c1.3-0.02,2.61,0.45,3.6,1.45C17.24,10.17,17.45,12.82,16.17,14.76z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M9.88,15.62V14c-1.02-0.03-1.98-0.44-2.71-1.17 C6.42,12.07,6,11.07,6,10c0-0.7,0.18-1.38,0.52-1.98l0.74,0.74C7.09,9.15,7,9.57,7,10c0,0.8,0.31,1.55,0.88,2.12 c0.54,0.53,1.27,0.82,2,0.85v-1.59L12,13.5L9.88,15.62z M13.48,11.98l-0.74-0.74C12.91,10.85,13,10.43,13,10 c0-0.8-0.31-1.55-0.88-2.12c-0.54-0.54-1.24-0.85-2-0.88v1.62L8,6.5l2.12-2.12v1.66c1,0.03,1.98,0.41,2.71,1.13 C13.58,7.93,14,8.93,14,10C14,10.7,13.82,11.38,13.48,11.98z\\\"></path>\"\n      }\n    }\n  },\n  \"add_link\": {\n    \"name\": \"add_link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,11h8v2H8V11z M20.1,12H22c0-2.76-2.24-5-5-5h-4v1.9h4C18.71,8.9,20.1,10.29,20.1,12z M3.9,12c0-1.71,1.39-3.1,3.1-3.1h4 V7H7c-2.76,0-5,2.24-5,5s2.24,5,5,5h4v-1.9H7C5.29,15.1,3.9,13.71,3.9,12z M19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calculate\": {\n    \"name\": \"calculate\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,3H3v18h18V3z M13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06L15.5,9.54l-1.41,1.41 l-1.06-1.06l1.41-1.41L13.03,7.06z M6.25,7.72h5v1.5h-5V7.72z M11.5,16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16z M18,17.25h-5v-1.5h5 V17.25z M18,14.75h-5v-1.5h5V14.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,4H4v12h12V4z M6,7.27h3v1H6V7.27z M10,12.5H8.5V14h-1v-1.5H6v-1h1.5V10h1v1.5H10V12.5z M14,13.25h-3v-1h3V13.25z M14,11.75h-3v-1h3V11.75z M14.27,8.83l-0.71,0.71L12.5,8.47l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.06-1.06L11.44,6l1.06,1.06 L13.56,6l0.71,0.71l-1.06,1.06L14.27,8.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"backspace\": {\n    \"name\": \"backspace\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M24 3H6l-6 9 6 9h18V3zm-5 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list_off\": {\n    \"name\": \"filter_list_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.83,8H21V6H8.83L10.83,8z M15.83,13H18v-2h-4.17L15.83,13z M14,16.83V18h-4v-2h3.17l-3-3H6v-2h2.17l-3-3H3V6h0.17 L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L14,16.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.62,5.5H17V7H9.12L7.62,5.5z M12.87,10.75H15v-1.5h-3.63L12.87,10.75z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99 L3.38,5.5H3V7h1.88l2.25,2.25H5v1.5h3.63L10.88,13L8,13v1.5h4v-0.38L16.01,18.13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bolt\": {\n    \"name\": \"bolt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,21h-1l1-7H6.74c0,0,3.68-6.46,6.26-11h1l-1,7h4.28L11,21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_email_read\": {\n    \"name\": \"mark_email_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M12,19c0-3.87,3.13-7,7-7c1.08,0,2.09,0.25,3,0.68V4H2v16h10.08C12.03,19.67,12,19.34,12,19z M4,6l8,5l8-5v2l-8,5L4,8V6z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,16.34L17.34,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,4v12h7.1c-0.07-0.32-0.1-0.66-0.1-1c0-2.76,2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V4H3z M16,6.18L10,10L4,6.18V5l6,3.82 L16,5V6.18z M13.76,17l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,12.76L13.76,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"app_registration\": {\n    \"name\": \"app_registration\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"16\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"4\\\"></rect><polygon points=\\\"11,17.86 11,20 13.1,20 19.08,14.03 16.96,11.91\\\"></polygon><polygon points=\\\"14,12.03 14,10 10,10 10,14 12.03,14\\\"></polygon><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.481 17.1312)\\\" width=\\\"2\\\" x=\\\"18.44\\\" y=\\\"10.06\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"13\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8.5\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g><g><polygon points=\\\"9,14.49 9,16 10.51,16 15.4,11.1 13.9,9.6\\\"></polygon></g><g><polygon points=\\\"11.5,9.88 11.5,8.5 8.5,8.5 8.5,11.5 9.87,11.5\\\"></polygon></g><g><rect height=\\\"2.12\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -1.7726 13.9099)\\\" width=\\\"1.56\\\" x=\\\"15.13\\\" y=\\\"8.03\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"import_contacts\": {\n    \"name\": \"import_contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel_presentation\": {\n    \"name\": \"cancel_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 3v18h22V3H1zm20 16H3V5h18v14zM9.41 16L12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied_alt\": {\n    \"name\": \"sentiment_satisfied_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2z\\\"></path>\"\n      }\n    }\n  },\n  \"live_help\": {\n    \"name\": \"live_help\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 2H3v18h6l3 3 3-3h6V2zm-8 16h-2v-2h2v2zm2.07-7.75-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"location_on\": {\n    \"name\": \"location_on\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_unread_chat_alt\": {\n    \"name\": \"mark_unread_chat_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"19\\\" cy=\\\"3\\\" r=\\\"3\\\"></circle><path d=\\\"M6,8V6h9.03c-1.21-1.6-1.08-3.21-0.92-4H2.01L2,22l4-4h16V6.97C21.16,7.61,20.13,8,19,8H6z M14,14H6v-2h8V14z M18,11H6V9 h12V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"15.5\\\" cy=\\\"2.75\\\" r=\\\"2.5\\\"></circle><path d=\\\"M14.15,6.5H5V5h7.2c-0.33-0.49-0.9-1.55-0.62-3H2v16l3-3h13V5.85c-0.69,0.56-1.55,0.9-2.5,0.9 C15.03,6.75,14.58,6.65,14.15,6.5z M12,12H5v-1.5h7V12z M15,9.25H5v-1.5h10V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"qr_code_2\": {\n    \"name\": \"qr_code_2\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M15,21h-2v-2h2V21z M13,14h-2v5h2V14z M21,12h-2v4h2V12z M19,10h-2v2h2V10z M7,12H5v2h2V12z M5,10H3v2h2V10z M12,5h2V3h-2V5 z M4.5,4.5v3h3v-3H4.5z M9,9H3V3h6V9z M4.5,16.5v3h3v-3H4.5z M9,21H3v-6h6V21z M16.5,4.5v3h3v-3H16.5z M21,9h-6V3h6V9z M19,19v-3 l-4,0v2h2v3h4v-2H19z M17,12l-4,0v2h4V12z M13,10H7v2h2v2h2v-2h2V10z M14,9V7h-2V5h-2v4L14,9z M6.75,5.25h-1.5v1.5h1.5V5.25z M6.75,17.25h-1.5v1.5h1.5V17.25z M18.75,5.25h-1.5v1.5h1.5V5.25z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_access_disabled\": {\n    \"name\": \"desktop_access_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.69L0 3.1l1 .99V18h9v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h2.44V2z\\\"></path>\"\n      }\n    }\n  },\n  \"call_end\": {\n    \"name\": \"call_end\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.68 16.07l3.92-3.11V9.59c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 12.39c-6.41-7.19-17.59-7.19-24 0l3.68 3.68z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling\": {\n    \"name\": \"wifi_calling\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.21,17.37c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54,3H3.03C2.45,13.18,10.82,21.55,21,20.97v-5.51l-5.27-0.61 L13.21,17.37z\\\"></path><path d=\\\"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.81,13.58c-1.89-0.96-3.43-2.5-4.39-4.39L7.1,7.5L6.69,4H3.02C2.63,10.79,8.21,16.37,15,15.98v-3.68l-3.51-0.41 L9.81,13.58z\\\"></path><path d=\\\"M16.67,5.3C16.53,5.19,15.11,4,13,4c-2.12,0-3.53,1.19-3.67,1.3L13,10L16.67,5.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alternate_email\": {\n    \"name\": \"alternate_email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_ic_call\": {\n    \"name\": \"add_ic_call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 6h-3V3h-2v3h-3v2h3v3h2V8h3zm0 9.46l-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"business\": {\n    \"name\": \"business\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"no_sim\": {\n    \"name\": \"no_sim\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.79 3.74L2.38 5.15l2.74 2.74-.12.12V21h13.27l1.58 1.62 1.41-1.41zM19 16.11V3h-8.99L7.95 5.06z\\\"></path>\"\n      }\n    }\n  },\n  \"key\": {\n    \"name\": \"key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,10h-8.35C11.83,7.67,9.61,6,7,6c-3.31,0-6,2.69-6,6s2.69,6,6,6c2.61,0,4.83-1.67,5.65-4H13l2,2l2-2l2,2l4-4.04L21,10z M7,15c-1.65,0-3-1.35-3-3c0-1.65,1.35-3,3-3s3,1.35,3,3C10,13.65,8.65,15,7,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.5,8.5h-6.75C10.11,6.48,8.24,5,6,5c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.24,0,4.11-1.48,4.75-3.5h0.75L13,13l1.5-1.5L16,13 l3-3L17.5,8.5z M6,12.5c-1.38,0-2.5-1.12-2.5-2.5S4.62,7.5,6,7.5S8.5,8.62,8.5,10S7.38,12.5,6,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_erase\": {\n    \"name\": \"phonelink_erase\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM21 1H7v5h2V4h10v16H9v-2H7v5h14V1z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_enabled\": {\n    \"name\": \"phone_enabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M3,15.46l5.27-0.61l2.52,2.52c2.83-1.44,5.15-3.75,6.59-6.59l-2.53-2.53L15.46,3h5.51 C21.55,13.18,13.18,21.55,3,20.97V15.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stay_current_landscape\": {\n    \"name\": \"stay_current_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 19h22V5H1v14zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code\": {\n    \"name\": \"qr_code\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,11h8V3H3V11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\\\"></path><path d=\\\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,9h5V4H4V9z M4.94,4.94h3.12v3.12H4.94V4.94z\\\"></path><path d=\\\"M4,16h5v-5H4V16z M4.94,11.94h3.12v3.12H4.94V11.94z\\\"></path><path d=\\\"M11,4v5h5V4H11z M15.06,8.06h-3.12V4.94h3.12V8.06z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"duo\": {\n    \"name\": \"duo\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clear_all\": {\n    \"name\": \"clear_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z\\\"></path>\"\n      }\n    }\n  },\n  \"rss_feed\": {\n    \"name\": \"rss_feed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"6.18\\\" cy=\\\"17.82\\\" r=\\\"2.18\\\"></circle><path d=\\\"M4 10.1v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9zm0-5.66v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56z\\\"></path>\"\n      }\n    }\n  },\n  \"rtt\": {\n    \"name\": \"rtt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.03,3l-1.11,7.07h2.62l0.7-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4-2.57h-2.35l2-12.86h2.58l-0.71,4.5h2.65L22,3H9.03 z M8,5H4L3.69,7h4L8,5z M7.39,9h-4l-0.31,2h4L7.39,9z M8.31,17h-6L2,19h6L8.31,17z M8.93,13h-6l-0.31,2h6.01L8.93,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hourglass_bottom\": {\n    \"name\": \"hourglass_bottom\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,22l-0.01-6L14,12l3.99-4.01L18,2H6v6l4,4l-4,3.99V22H18z M8,7.5V4h8v3.5l-4,4L8,7.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,17h8v-4l-3-3l3-3V3H6v4l3,3l-3,3V17z M7,6.59V4h6v2.59l-3,3L7,6.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"portable_wifi_off\": {\n    \"name\": \"portable_wifi_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_phone\": {\n    \"name\": \"speaker_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zm3.99 9.01L8 10v11.99h7.99V10.01zM15 20H9v-8h6v8z\\\"></path>\"\n      }\n    }\n  },\n  \"person_search\": {\n    \"name\": \"person_search\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"4\\\"></circle><path d=\\\"M10.35,14.01C7.62,13.91,2,15.27,2,18v2h9.54C9.07,17.24,10.31,14.11,10.35,14.01z\\\"></path><path d=\\\"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 L20.59,22L22,20.59L19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C18,17.1,17.1,18,16,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.14,10.93C7.85,10.59,4,11.52,4,13.21V15h5.35C8.73,13.7,8.93,12.05,10.14,10.93z\\\"></path><circle cx=\\\"9\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M16.06,16.35l-1.48-1.48c0.26-0.4,0.42-0.87,0.42-1.38c0-1.38-1.12-2.5-2.5-2.5S10,12.12,10,13.5c0,1.38,1.12,2.5,2.5,2.5 c0.51,0,0.98-0.15,1.38-0.42l1.48,1.48L16.06,16.35z M12.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S13.33,15,12.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"domain_disabled\": {\n    \"name\": \"domain_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_chat_read\": {\n    \"name\": \"mark_chat_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M12.03,17.5C12.01,17.67,12,17.83,12,18v0H6l-4,4V2h20v8.68C21.09,10.25,20.08,10,19,10c-3.87,0-7,3.13-7,7 C12,17.17,12.01,17.33,12.03,17.5z M23,14.34l-1.41-1.41l-4.24,4.24l-2.12-2.12l-1.41,1.41L17.34,20L23,14.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.76,15l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,10.76L13.76,15z M10,13c0-2.76,2.24-5,5-5c0.71,0,1.39,0.15,2,0.42 V3H3v14l3-3h4.1C10.04,13.68,10,13.34,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"comments_disabled\": {\n    \"name\": \"comments_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.83,14H18v-2h-3.17l-1-1H18V9h-6.17l-1-1H18V6H8.83l-4-4H22v17.17L16.83,14z M2.1,2.1L0.69,3.51L2,4.83V18h13.17 l5.31,5.31l1.41-1.41L2.1,2.1z M6,9h0.17l2,2H6V9z M6,14v-2h3.17l2,2H6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.12,12H15v-1.5h-2.38l-1.25-1.25H15v-1.5H9.87L8.62,6.5H15V5H7.12l-3-3H18v13.88L14.12,12z M2.22,2.22L1.16,3.28L2,4.12 V15h10.88l3.84,3.84l1.06-1.06L2.22,2.22z M5,9.25v-1.5h0.63l1.5,1.5H5z M8,12v-1.5h0.38l1.5,1.5H8z\\\"></path>\"\n      }\n    }\n  },\n  \"mail_lock\": {\n    \"name\": \"mail_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M22,9.97V4H2.01L2,20h14v-5.03c0-2.76,2.24-5,5-5H22z M20,8l-8,5L4,8V6l8,5l8-5V8z\\\"></path></g><g><path d=\\\"M23,15v-0.89c0-1-0.68-1.92-1.66-2.08C20.08,11.82,19,12.79,19,14v1h-1v5h6v-5H23z M22,15h-2v-1c0-0.55,0.45-1,1-1 s1,0.45,1,1V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18,8.5V4H2v12h11.5v-4c0-1.93,1.57-3.5,3.5-3.5H18z M10,11L3.5,7.27V5.5L10,9.23l6.5-3.73l0,1.77L10,11z\\\"></path><path d=\\\"M20,12h-1v-1c0-0.83-0.67-1.5-1.5-1.5S16,10.17,16,11v1h-1v4h5V12z M16.75,12v-1c0-0.41,0.34-0.75,0.75-0.75 c0.41,0,0.75,0.34,0.75,0.75v1H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"phonelink_ring\": {\n    \"name\": \"phonelink_ring\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM16 1H2v22h14V1zm-2 19H4V4h10v16z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_top\": {\n    \"name\": \"hourglass_top\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,2l0.01,6L10,12l-3.99,4.01L6,22h12v-6l-4-4l4-3.99V2H6z M16,16.5V20H8v-3.5l4-4L16,16.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,3H6v4l3,3l-3,3v4h8v-4l-3-3l3-3V3z M13,13.41V16H7v-2.59l3-3L13,13.41z\\\"></path></g>\"\n      }\n    }\n  },\n  \"invert_colors_off\": {\n    \"name\": \"invert_colors_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31-1.6,2.94-1.6,4.7C4,17.48,7.58,21,12,21c1.75,0,3.36-0.56,4.67-1.5 l3.1,3.1L21.19,21.19z M12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83V19z M8.38,5.56L12,2l5.65,5.56l0,0 C19.1,8.99,20,10.96,20,13.13c0,1.18-0.27,2.29-0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.08,4.96L10,2l4.53,4.6l0,0c1.07,1.1,1.72,2.6,1.72,4.24c0,0.96-0.23,1.86-0.62,2.67L10,7.88V4.14L8.14,6.02L7.08,4.96z M16.01,18.13l-2.33-2.33C12.65,16.55,11.38,17,10,17c-3.45,0-6.25-2.76-6.25-6.16c0-1.39,0.47-2.67,1.26-3.7L1.87,3.99l1.06-1.06 l14.14,14.14L16.01,18.13z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63c0,2.57,2.13,4.66,4.75,4.66V12.12z\\\"></path>\"\n      }\n    }\n  },\n  \"hub\": {\n    \"name\": \"hub\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.4,18.2C8.78,18.7,9,19.32,9,20c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3c0.44,0,0.85,0.09,1.23,0.26l1.41-1.77 c-0.92-1.03-1.29-2.39-1.09-3.69l-2.03-0.68C4.98,11.95,4.06,12.5,3,12.5c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 c0,0.07,0,0.14-0.01,0.21l2.03,0.68c0.64-1.21,1.82-2.09,3.22-2.32l0-2.16C9.96,5.57,9,4.4,9,3c0-1.66,1.34-3,3-3s3,1.34,3,3 c0,1.4-0.96,2.57-2.25,2.91v2.16c1.4,0.23,2.58,1.11,3.22,2.32l2.03-0.68C18,9.64,18,9.57,18,9.5c0-1.66,1.34-3,3-3s3,1.34,3,3 s-1.34,3-3,3c-1.06,0-1.98-0.55-2.52-1.37l-2.03,0.68c0.2,1.29-0.16,2.65-1.09,3.69l1.41,1.77C17.15,17.09,17.56,17,18,17 c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3c0-0.68,0.22-1.3,0.6-1.8l-1.41-1.77c-1.35,0.75-3.01,0.76-4.37,0L8.4,18.2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.71,12.84c0.84-0.88,1.17-2.06,0.99-3.18l1.59-0.48c0.42,0.78,1.25,1.32,2.2,1.32c1.38,0,2.5-1.12,2.5-2.5 s-1.12-2.5-2.5-2.5C16.12,5.5,15,6.62,15,8c0,0.08,0,0.15,0.01,0.22L13.42,8.7c-0.52-1.15-1.61-2-2.92-2.17l0-1.58 c1.14-0.23,2-1.24,2-2.45C12.5,1.12,11.38,0,10,0S7.5,1.12,7.5,2.5c0,1.21,0.86,2.22,2,2.45l0,1.58C8.2,6.71,7.11,7.55,6.58,8.7 L4.99,8.22C5,8.15,5,8.08,5,8c0-1.38-1.12-2.5-2.5-2.5S0,6.62,0,8s1.12,2.5,2.5,2.5c0.95,0,1.78-0.53,2.2-1.32L6.3,9.66 c-0.18,1.12,0.15,2.3,0.99,3.18l-1.15,1.43C5.8,14.1,5.41,14,5,14c-1.38,0-2.5,1.12-2.5,2.5S3.62,19,5,19s2.5-1.12,2.5-2.5 c0-0.61-0.22-1.17-0.58-1.6l1.15-1.43c1.18,0.71,2.68,0.71,3.86,0l1.15,1.43c-0.36,0.43-0.58,0.99-0.58,1.6c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5S16.38,14,15,14c-0.41,0-0.8,0.1-1.14,0.27L12.71,12.84z\\\"></path>\"\n      }\n    }\n  },\n  \"phone\": {\n    \"name\": \"phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 15.46l-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"location_off\": {\n    \"name\": \"location_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55 1.38 0 2.5 1.12 2.5 2.5 0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code_scanner\": {\n    \"name\": \"qr_code_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_primary_portrait\": {\n    \"name\": \"stay_primary_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.01 1v22H19V1H5.01zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_mail\": {\n    \"name\": \"contact_mail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 8V7l-3 2-3-2v1l3 2 3-2zm3-5H0v18h23.99L24 3zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_tower\": {\n    \"name\": \"cell_tower\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.3,14.7l1.2-1.2c-1-1-1.5-2.3-1.5-3.5c0-1.3,0.5-2.6,1.5-3.5L7.3,5.3c-1.3,1.3-2,3-2,4.7S6,13.4,7.3,14.7z\\\"></path><path d=\\\"M19.1,2.9l-1.2,1.2c1.6,1.6,2.4,3.8,2.4,5.9c0,2.1-0.8,4.3-2.4,5.9l1.2,1.2c2-2,2.9-4.5,2.9-7.1C22,7.4,21,4.9,19.1,2.9z\\\"></path><path d=\\\"M6.1,4.1L4.9,2.9C3,4.9,2,7.4,2,10c0,2.6,1,5.1,2.9,7.1l1.2-1.2c-1.6-1.6-2.4-3.8-2.4-5.9C3.7,7.9,4.5,5.7,6.1,4.1z\\\"></path><path d=\\\"M16.7,14.7c1.3-1.3,2-3,2-4.7c-0.1-1.7-0.7-3.4-2-4.7l-1.2,1.2c1,1,1.5,2.3,1.5,3.5c0,1.3-0.5,2.6-1.5,3.5L16.7,14.7z\\\"></path><path d=\\\"M14.5,10c0-1.38-1.12-2.5-2.5-2.5S9.5,8.62,9.5,10c0,0.76,0.34,1.42,0.87,1.88L7,22h2l0.67-2h4.67L15,22h2l-3.37-10.12 C14.16,11.42,14.5,10.76,14.5,10z M10.33,18L12,13l1.67,5H10.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.5,11.5l1.06-1.06C6.94,9.81,6.55,8.95,6.55,8s0.39-1.81,1.01-2.44L6.5,4.5C5.6,5.4,5.05,6.63,5.05,8S5.6,10.6,6.5,11.5 z\\\"></path><path d=\\\"M5.41,3.41L4.34,2.34C2.9,3.79,2,5.79,2,8s0.9,4.21,2.34,5.66l1.06-1.06C4.23,11.42,3.5,9.79,3.5,8S4.23,4.58,5.41,3.41z\\\"></path><path d=\\\"M13.5,4.5l-1.06,1.06c0.62,0.62,1.01,1.49,1.01,2.44s-0.39,1.81-1.01,2.44l1.06,1.06c0.9-0.9,1.45-2.13,1.45-3.5 S14.4,5.4,13.5,4.5z\\\"></path><path d=\\\"M15.66,2.34l-1.06,1.06C15.77,4.58,16.5,6.21,16.5,8s-0.73,3.42-1.91,4.59l1.06,1.06C17.1,12.21,18,10.21,18,8 S17.1,3.79,15.66,2.34z\\\"></path><path d=\\\"M12,8c0-1.1-0.9-2-2-2S8,6.9,8,8c0,0.63,0.29,1.18,0.75,1.55L6,18h1.5l0.49-1.5h3.6L12,18h1.5l-2.31-8.4 C11.68,9.23,12,8.66,12,8z M8.47,15l1.46-4.5l1.24,4.5H8.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mark_chat_unread\": {\n    \"name\": \"mark_chat_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M22,6.98V18H6l-4,4V2h12.1C14.04,2.32,14,2.66,14,3c0,2.76,2.24,5,5,5C20.13,8,21.16,7.61,22,6.98z M16,3 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17,6.22V14H6l-3,3V3h9.18C12.07,3.31,12,3.65,12,4c0,1.66,1.34,3,3,3C15.77,7,16.47,6.7,17,6.22z M13,4c0,1.1,0.9,2,2,2 s2-0.9,2-2s-0.9-2-2-2S13,2.9,13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forum\": {\n    \"name\": \"forum\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_presentation\": {\n    \"name\": \"pause_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 3v18h22V3H1zm20 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"read_more\": {\n    \"name\": \"read_more\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"16\\\" y=\\\"11\\\"></rect><polygon points=\\\"13,12 8,7 8,11 2,11 2,13 8,13 8,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"11,10 8,7 8,9.5 3,9.5 3,10.5 8,10.5 8,13\\\"></polygon><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"co_present\": {\n    \"name\": \"co_present\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><polygon points=\\\"23,3 1,3 1,13 3,13 3,5 21,5 21,21 23,21\\\"></polygon></g><g><circle cx=\\\"9\\\" cy=\\\"10\\\" r=\\\"4\\\"></circle></g><g><path d=\\\"M15.39,16.56C13.71,15.7,11.53,15,9,15c-2.53,0-4.71,0.7-6.39,1.56C1.61,17.07,1,18.1,1,19.22V22h16v-2.78 C17,18.1,16.39,17.07,15.39,16.56z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"19,3 1,3 1,12 2.5,12 2.5,4.5 17.5,4.5 17.5,17 19,17\\\"></polygon><circle cx=\\\"7\\\" cy=\\\"9\\\" r=\\\"3\\\"></circle><path d=\\\"M12.03,14.37C10.56,13.5,8.84,13,7,13s-3.56,0.5-5.03,1.37C1.36,14.72,1,15.39,1,16.09V18h12v-1.91 C13,15.39,12.64,14.72,12.03,14.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"call\": {\n    \"name\": \"call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 15.46l-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble_outline\": {\n    \"name\": \"chat_bubble_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20l4-4h16V2zm-2 14H6l-2 2V4h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_current_portrait\": {\n    \"name\": \"stay_current_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1.01L5.01 1v22H19V1.01zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"present_to_all\": {\n    \"name\": \"present_to_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 3H1v18h22V3zm-2 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_missed\": {\n    \"name\": \"call_missed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z\\\"></path>\"\n      }\n    }\n  },\n  \"import_export\": {\n    \"name\": \"import_export\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble\": {\n    \"name\": \"chat_bubble\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2v20l4-4h16V2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key_off\": {\n    \"name\": \"vpn_key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.83,18H21v-4h2v-4H12.83L20.83,18z M19.78,22.61l1.41-1.41L2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85,1,9.79,1,12 c0,3.31,2.69,6,6,6c2.21,0,4.15-1.2,5.18-2.99L19.78,22.61z M8.99,11.82C9,11.88,9,11.94,9,12c0,1.1-0.9,2-2,2s-2-0.9-2-2 s0.9-2,2-2c0.06,0,0.12,0,0.18,0.01L8.99,11.82z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17,14.88V11.5h2v-3h-8.38L17,14.88z M2.93,2.93L1.87,3.99l1.66,1.66C2.02,6.51,1,8.14,1,10c0,2.76,2.24,5,5,5 c1.87,0,3.48-1.03,4.33-2.55l5.68,5.68l1.06-1.06L2.93,2.93z M6,12c-1.1,0-2-0.9-2-2c0-1.06,0.83-1.94,1.88-2L8,10.12 C7.93,11.17,7.06,12,6,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"voicemail\": {\n    \"name\": \"voicemail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_setup\": {\n    \"name\": \"phonelink_setup\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 1v5h2V4h10v16H9v-2H7v5h14V1zm2.5 14.5c.29-.12.55-.29.8-.48l-.02.03 1.41.55 1.27-2.2-1.18-.95-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03 1.18-.95-1.26-2.2-1.41.55.02.03c-.26-.19-.52-.36-.81-.48L9.27 7H6.73L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03L4.3 8.4l-1.27 2.2 1.18.95.02-.03c-.01.16-.04.32-.04.48s.03.32.05.48l-.02-.03-1.18.95 1.27 2.2 1.41-.55-.02-.03c.25.19.51.36.8.48l.23 1.5h2.54l.23-1.5zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_emergency\": {\n    \"name\": \"contact_emergency\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M23.99,3H0v18h23.99V3z M9,8c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S7.35,8,9,8z M2.08,19c1.38-2.39,3.96-4,6.92-4 s5.54,1.61,6.92,4H2.08z M20.97,9.85l-0.75,1.3l-1.47-0.85V12h-1.5v-1.7l-1.47,0.85l-0.75-1.3L16.5,9l-1.47-0.85l0.75-1.3 l1.47,0.85V6h1.5v1.7l1.47-0.85l0.75,1.3L19.5,9L20.97,9.85z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M20,3H0v14h20V3z M7,7c1.38,0,2.5,1.12,2.5,2.5S8.38,12,7,12s-2.5-1.12-2.5-2.5S5.62,7,7,7z M1.64,15.5 C2.93,13.97,4.85,13,7,13s4.07,0.97,5.36,2.5H1.64z M17.42,9.32l-0.5,0.87L15.5,9.37V11h-1V9.37l-1.42,0.82l-0.5-0.87L14,8.5 l-1.42-0.82l0.5-0.87l1.42,0.82V6h1v1.63l1.42-0.82l0.5,0.87L16,8.5L17.42,9.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stop_screen_share\": {\n    \"name\": \"stop_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.79 18l2 2H24v-2zM13 9.13V7l4 3.74-1.28 1.19 5.18 5.18L22 16V4.02H7.8l5.13 5.13c.03-.01.05-.02.07-.02zM1.11 2.98l.89.9v12.14l2 1.99L0 18v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zm7.97 7.97l1.59 1.59C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05z\\\"></path>\"\n      }\n    }\n  },\n  \"spoke\": {\n    \"name\": \"spoke\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,7c0,2.21-1.79,4-4,4S8,9.21,8,7s1.79-4,4-4S16,4.79,16,7z M7,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.21,13,7,13 z M17,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S19.21,13,17,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3C8.34,3,7,4.34,7,6c0,1.66,1.34,3,3,3s3-1.34,3-3C13,4.34,11.66,3,10,3z M14,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3 s3-1.34,3-3C17,12.34,15.66,11,14,11z M6,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C9,12.34,7.66,11,6,11z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_wifi\": {\n    \"name\": \"cell_wifi\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,22h16V5.97L6,22z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z\\\"></path></g>\"\n      }\n    }\n  },\n  \"call_missed_outgoing\": {\n    \"name\": \"call_missed_outgoing\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z\\\"></path>\"\n      }\n    }\n  },\n  \"call_made\": {\n    \"name\": \"call_made\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z\\\"></path>\"\n      }\n    }\n  },\n  \"send_time_extension\": {\n    \"name\": \"send_time_extension\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,4h-6c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H3.01v5.8C5.7,9.8,6,11.96,6,12.5c0,0.54-0.29,2.7-3,2.7V21h5.8 c0-2.16,1.37-2.78,2.2-2.94v-9.3l9,4.5V4z\\\"></path><polygon points=\\\"13,12 13,16 17,17 13,18 13,22 23,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M19,10c0-1.1-0.9-2-2-2V3h-5c0-1.1-0.9-2-2-2S8,1.9,8,3H3v5c1.1,0,2,0.9,2,2s-0.9,2-2,2v5h5c0-0.93,0.64-1.71,1.5-1.93 v-7.5l8.4,4.2C18.55,11.44,19,10.78,19,10z\\\"></path><polygon points=\\\"11,13 14,14 11,15 11,18 19,14 11,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"mail_outline\": {\n    \"name\": \"mail_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2.01L2 20h20V4zm-2 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"email\": {\n    \"name\": \"email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 4H2v16h20V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"print_disabled\": {\n    \"name\": \"print_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.65 7H18V3.01H6v.35zm1.01 1.01l9 8.99H22v-5.99c0-1.66-1.34-3-3-3h-8.34zM19 10c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM1.41 1.6L0 3.01l5 5c-1.66 0-3 1.33-3 2.99v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM8 19.01V15h4l4 4-8 .01z\\\"></path>\"\n      }\n    }\n  },\n  \"comment\": {\n    \"name\": \"comment\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.99 2H2v16h16l4 4-.01-20zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"dialer_sip\": {\n    \"name\": \"dialer_sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm1 10.46l-5.27-.61-2.52 2.52c-2.83-1.44-5.15-3.75-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_screen_share\": {\n    \"name\": \"mobile_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.01 1v22H19V1H5.01zM17 19H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z\\\"></path>\"\n      }\n    }\n  },\n  \"key_off\": {\n    \"name\": \"key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.91,14.09L17,14l2,2l4-4.04L21,10h-8.17L16.91,14.09z M3.98,6.81C2.2,7.85,1,9.79,1,12c0,3.31,2.69,6,6,6 c2.21,0,4.15-1.2,5.18-2.99l7.59,7.59l1.41-1.41L2.81,2.81L1.39,4.22L3.98,6.81z M9.91,12.74C9.58,14.03,8.4,15,7,15 c-1.65,0-3-1.35-3-3c0-1.4,0.97-2.58,2.26-2.91L9.91,12.74z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.06,11.94l0.44-0.44L16,13l3-3l-1.5-1.5h-6.88L14.06,11.94z M10.33,12.46C9.48,13.97,7.87,15,6,15c-2.76,0-5-2.24-5-5 c0-1.86,1.02-3.49,2.53-4.35L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L10.33,12.46z M5.44,7.56C4.33,7.82,3.5,8.81,3.5,10 c0,1.38,1.12,2.5,2.5,2.5c1.19,0,2.18-0.83,2.44-1.94L5.44,7.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stay_primary_landscape\": {\n    \"name\": \"stay_primary_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 19h22V5H1v14zM19 7v10H5V7h14z\\\"></path>\"\n      }\n    }\n  },\n  \"dialpad\": {\n    \"name\": \"dialpad\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"more_time\": {\n    \"name\": \"more_time\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8\\\"></polygon><path d=\\\"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z\\\"></path><polygon points=\\\"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8.5,8.05 8.5,12.05 11.67,13.95 12.17,13.13 9.5,11.55 9.5,8.05\\\"></polygon><path d=\\\"M13.9,10c0.07,0.32,0.1,0.66,0.1,1c0,2.76-2.24,5-5,5s-5-2.24-5-5s2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5.35 C10.37,5.13,9.7,5,9,5c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6c0-0.34-0.04-0.67-0.09-1H13.9z\\\"></path><polygon points=\\\"15,6 15,4 14,4 14,6 14,6 12,6 12,7 14,7 14,9 15,9 15,7 15,7 17,7 17,6\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"chat\": {\n    \"name\": \"chat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2.01L2 22l4-4h16V2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"ring_volume\": {\n    \"name\": \"ring_volume\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55zM0 17.39l3.68 3.68 3.92-3.11v-3.37c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 17.39c-6.41-7.19-17.59-7.19-24 0z\\\"></path>\"\n      }\n    }\n  },\n  \"call_merge\": {\n    \"name\": \"call_merge\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_email_unread\": {\n    \"name\": \"mark_email_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M22,8.98V20H2V4h12.1C14.04,4.32,14,4.66,14,5c0,1.48,0.65,2.79,1.67,3.71L12,11L4,6v2l8,5l5.3-3.32 C17.84,9.88,18.4,10,19,10C20.13,10,21.16,9.61,22,8.98z M16,5c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,7.22V16H3V4h9.18C12.07,4.31,12,4.65,12,5c0,0.79,0.31,1.5,0.81,2.03L10,8.82L4,5v1.18L10,10l3.66-2.33 C14.06,7.87,14.52,8,15,8C15.77,8,16.47,7.7,17,7.22z M13,5c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,3.9,13,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"list_alt\": {\n    \"name\": \"list_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM3 3v18h18V3H3zm16 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"unsubscribe\": {\n    \"name\": \"unsubscribe\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 13c-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.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.75.26 2.49.69V3H3v14h10.55zM12 10.5L5 7V5l7 3.5L19 5v2l-7 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"message\": {\n    \"name\": \"message\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2.01L2 22l4-4h16V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\"></path>\"\n      }\n    }\n  },\n  \"domain_verification\": {\n    \"name\": \"domain_verification\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54\\\"></polygon><path d=\\\"M3,4v16h18V4H3z M19,18H5V8h14V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,4v12h12V4H4z M15,15H5V7h10V15z\\\"></path><polygon points=\\\"13.18,9.23 12.47,8.53 8.94,12.06 7.53,10.65 6.82,11.35 8.94,13.47\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"nat\": {\n    \"name\": \"nat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z\\\"></path><path d=\\\"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.93,10.5H10v-1H5.93C5.71,8.64,4.93,8,4,8c-1.1,0-2,0.9-2,2s0.9,2,2,2C4.93,12,5.71,11.36,5.93,10.5z M4,11 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S4.55,11,4,11z\\\"></path><path d=\\\"M18,10l-3-2v1.5h-3.03C11.72,5.87,8.7,3,5,3v1c3.31,0,6,2.69,6,6s-2.69,6-6,6v1c3.7,0,6.72-2.87,6.97-6.5H15V12L18,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"document_scanner\": {\n    \"name\": \"document_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,3H4v3H2V1h5V3z M22,6V1h-5v2h3v3H22z M7,21H4v-3H2v5h5V21z M20,18v3h-3v2h5v-5H20z M19,4v16H5V4H19z M15,8H9v2h6V8z M15,11H9v2h6V11z M15,14H9v2h6V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,2.5H3.5V5H2V1h4V2.5z M16.5,5l0-2.5l-2.5,0L14,1l4,0l0,4L16.5,5z M14,17.5h2.5V15H18v4h-4V17.5z M3.5,15l0,2.5l2.5,0 L6,19l-4,0l0-4L3.5,15z M5,4v12h10V4H5z M12,13H8v-1.5h4V13z M12,10.75H8v-1.5h4V10.75z M12,8.5H8V7h4V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"contacts\": {\n    \"name\": \"contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 0H4v2h16V0zM4 24h16v-2H4v2zM22 4H2v16h20V4zM12 6.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_calls\": {\n    \"name\": \"swap_calls\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_received\": {\n    \"name\": \"call_received\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z\\\"></path>\"\n      }\n    }\n  },\n  \"call_split\": {\n    \"name\": \"call_split\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_disabled\": {\n    \"name\": \"person_add_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zM6.88 10H6v-.88l.88.88z\\\"></path>\"\n      }\n    }\n  },\n  \"3p\": {\n    \"name\": \"3p\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,2v20l4-4h16V2H2z M12,6c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,6,12,6z M16,14H8v-0.57c0-0.81,0.48-1.53,1.22-1.85 C10.07,11.21,11.01,11,12,11c0.99,0,1.93,0.21,2.78,0.58C15.52,11.9,16,12.62,16,13.43V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sip\": {\n    \"name\": \"sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"15.5\\\" y=\\\"10.5\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M10,10.5H6.5v0.75H10V15H5v-1.5 h3.5v-0.75H5V9h5V10.5z M13,15h-2V9h2V15z M19,9v4h-3.5v2H14V9H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"forward_to_inbox\": {\n    \"name\": \"forward_to_inbox\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,4H2v16h11v-2H4V8l8,5l8-5v5h2V4z M12,11L4,6h16L12,11z M19,15l4,4l-4,4v-3h-4v-2h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,12.5l3,3l-3,3V16h-3v-1h3V12.5z M11,16H3V4h14v8h-1V6.18L10,10L4,6.18V15h7L11,16z M4,5l6,3.82L16,5H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_lock\": {\n    \"name\": \"phonelink_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM10.8 11V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11H4v6h8v-6h-1.2zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_phone\": {\n    \"name\": \"contact_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.99 3H0v18h24l-.01-18zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_disabled\": {\n    \"name\": \"phone_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M14.52,17.35C11.39,19.83,7.36,21.22,3,20.97v-5.51l5.27-0.61l2.52,2.52c0.81-0.41,1.58-0.9,2.3-1.45 L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M15.91,13.11c0.56-0.73,1.05-1.51,1.47-2.33l-2.53-2.53L15.46,3h5.51 c0.25,4.37-1.15,8.4-3.63,11.54L15.91,13.11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"textsms\": {\n    \"name\": \"textsms\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 2H2.01L2 22l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key\": {\n    \"name\": \"vpn_key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_share\": {\n    \"name\": \"screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18l2-2V4H2v12l2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z\\\"></path>\"\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "sphinx_design/compiled/material_twotone.json",
    "content": "{\n  \"auto_delete\": {\n    \"name\": \"auto_delete\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7H4v10h5.08C9.03,16.67,9,16.34,9,16c0-2.38,1.19-4.47,3-5.74V7z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"15,2 11.5,2 10.5,1 5.5,1 4.5,2 1,2 1,4 15,4\\\"></polygon><path d=\\\"M16,9c-0.7,0-1.37,0.1-2,0.29V5H2v12c0,1.1,0.9,2,2,2h5.68c1.12,2.36,3.53,4,6.32,4c3.87,0,7-3.13,7-7 C23,12.13,19.87,9,16,9z M9,16c0,0.34,0.03,0.67,0.08,1H4V7h8v3.26C10.19,11.53,9,13.62,9,16z M16,21c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S18.76,21,16,21z\\\"></path><polygon points=\\\"16.5,12 15,12 15,17 18.6,19.1 19.4,17.9 16.5,16.2\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,8.28V7H5v7h3.28C8.11,13.53,8,13.03,8,12.5C8,10.54,9.26,8.9,11,8.28z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"13,4 11,4 10,3 6,3 5,4 3,4 3,5 13,5\\\"></polygon><path d=\\\"M12.5,8c-0.17,0-0.33,0.03-0.5,0.05V6H4v8c0,0.55,0.45,1,1,1h3.76c0.81,1.21,2.18,2,3.74,2c2.49,0,4.5-2.01,4.5-4.5 S14.99,8,12.5,8z M8.28,14H5V7h6v1.28C9.26,8.9,8,10.54,8,12.5C8,13.03,8.11,13.53,8.28,14z M12.5,16C10.57,16,9,14.43,9,12.5 S10.57,9,12.5,9s3.5,1.57,3.5,3.5S14.43,16,12.5,16z\\\"></path><polygon points=\\\"13,12.42 13,10 12,10 12,13 14.6,14.5 15.1,13.63\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_alert\": {\n    \"name\": \"add_alert\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm4 7h-3v3h-2v-3H8v-2h3V8h2v3h3v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zm-4-7V8h-2v3H8v2h3v3h2v-3h3v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"warning\": {\n    \"name\": \"warning\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M4.47 19h15.06L12 5.99 4.47 19zM13 18h-2v-2h2v2zm0-4h-2v-4h2v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_important\": {\n    \"name\": \"notification_important\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 6c-2.76 0-5 2.24-5 5v7h10v-7c0-2.76-2.24-5-5-5zm1 10h-2v-2h2v2zm0-4h-2V8h2v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V3c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.17C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-2 1H7v-7c0-2.76 2.24-5 5-5s5 2.24 5 5v7zM11 8h2v4h-2zm0 6h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"error_outline\": {\n    \"name\": \"error_outline\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"error\": {\n    \"name\": \"error\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-4h-2V7h2v6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-5h2v2h-2zm0-8h2v6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"warning_amber\": {\n    \"name\": \"warning_amber\",\n    \"keywords\": [\n      \"alert\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M1 21h22L12 2 1 21zm3.47-2L12 5.99 19.53 19H4.47zM11 16h2v2h-2zm0-6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"recommend\": {\n    \"name\": \"recommend\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M17.9,12.3 l-2.1,4.9c-0.22,0.51-0.74,0.83-1.3,0.8H9c-1.1,0-2-0.9-2-2v-5c-0.02-0.38,0.13-0.74,0.4-1L12,5l0.69,0.69 c0.18,0.19,0.29,0.44,0.3,0.7v0.2L12.41,10H17c0.55,0,1,0.45,1,1v0.8C18.02,11.97,17.98,12.15,17.9,12.3z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path><path d=\\\"M17,10h-4.59l0.58-3.41v-0.2c-0.01-0.26-0.12-0.51-0.3-0.7L12,5l-4.6,5c-0.27,0.26-0.42,0.62-0.4,1v5c0,1.1,0.9,2,2,2h5.5 c0.56,0.03,1.08-0.29,1.3-0.8l2.1-4.9c0.08-0.15,0.12-0.33,0.1-0.5V11C18,10.45,17.55,10,17,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plus_one\": {\n    \"name\": \"plus_one\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z\\\"></path>\"\n      }\n    }\n  },\n  \"mood_bad\": {\n    \"name\": \"mood_bad\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm-1.61 9c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"sports_mma\": {\n    \"name\": \"sports_mma\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15,5H7v5.6C7,10.74,7.64,14,7.64,14h8.72c0,0,0.64-3.26,0.64-3.4V10h-2V5z M14,10H8V7h6V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,20c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-3H7V20z\\\"></path><path d=\\\"M18,7c-0.55,0-1,0.45-1,1V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v5.8c0,0.13,0.01,0.26,0.04,0.39l0.8,4 c0.09,0.47,0.5,0.8,0.98,0.8H17c0.55,0,1.09-0.44,1.2-0.98l0.77-3.83C18.99,11.06,19,10.93,19,10.8V9V8C19,7.45,18.55,7,18,7z M17,10.6c0,0.13-0.64,3.4-0.64,3.4H7.64c0,0-0.64-3.26-0.64-3.4V5h8v5h2V10.6z\\\"></path><rect height=\\\"3\\\" width=\\\"6\\\" x=\\\"8\\\" y=\\\"7\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,8l-0.01-3H6v4.4c0.01,0.11,0.02,0.22,0.03,0.33L6.49,12H6.9h6.21h0.41l0.45-2.27C13.99,9.62,14,9,14,9 h-2V8z M11,9H7V7h4V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,7c-0.55,0-1,0.45-1,1l-0.01-3c0-0.55-0.45-1-1-1H6C5.45,4,5,4.45,5,5v4.57c0.01,0.07,0.01,0.13,0.02,0.2l0.57,2.83 C5.63,12.83,5.84,13,6.08,13h7.85c0.24,0,0.44-0.17,0.49-0.4l0.57-2.83c0.01-0.07,0.01-0.13,0.02-0.2V8C15,7.45,14.55,7,14,7z M13.97,9.73L13.51,12H13.1H6.9H6.49L6.03,9.73C6.02,9.62,6.01,9.51,6,9.4V5h5.99L12,8v1h2C14,9,13.99,9.62,13.97,9.73z\\\"></path><path d=\\\"M6,15.5C6,15.78,6.22,16,6.5,16h7c0.28,0,0.5-0.22,0.5-0.5V14H6V15.5z\\\"></path><g><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"compost\": {\n    \"name\": \"compost\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.87,11.81c-0.23-0.38-0.37-0.83-0.37-1.31C12.5,9.12,13.62,8,15,8l1,0c1.51,0,2-1,2-1s0.55,6-3,6 c-0.49,0-0.94-0.14-1.32-0.38c-0.24,0.64-0.59,1.76-0.76,2.96c1.26,0.22,2.28,0.89,2.77,1.77c1.69-1.17,2.81-3.13,2.81-5.35h3 c0,5.24-4.26,9.5-9.5,9.5S2.5,17.24,2.5,12S6.76,2.5,12,2.5V0l4,4l-4,4V5.5c-3.58,0-6.5,2.92-6.5,6.5c0,2.21,1.11,4.17,2.81,5.35 c0.51-0.92,1.63-1.62,2.98-1.8c-0.09-0.69-0.26-1.42-0.49-2.03C10.45,13.82,10,14,9.5,14c-1.1,0-2-0.9-2-2v-0.99 c0-0.56-0.19-1.09-0.5-1.51c0,0,4.45-0.23,4.5,2.5c0,0.29-0.06,0.56-0.17,0.8C10.91,12.48,10.47,12.2,10,12 c0.58,0.43,1.37,1.37,2,2.6c0.67-1.62,1.68-3.27,3-4.6C14.24,10.52,13.53,11.12,12.87,11.81z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.4,10.69c0.07-0.18,0.1-0.37,0.1-0.57C9.5,8,6,8,6,8s0.25,0.27,0.24,1.25l0.01,0.88c0,0.9,0.73,1.62,1.62,1.62 c0.42,0,0.8-0.16,1.09-0.42c0.16,0.4,0.4,1.1,0.42,1.72c-1.06,0.16-1.96,0.73-2.46,1.51C5.46,13.57,4.5,11.9,4.5,10 c0-3.03,2.47-5.5,5.5-5.5h0v2l3.5-3.25L10,0v2h0c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8h-2.5c0,1.9-0.97,3.57-2.43,4.56 c-0.49-0.77-1.36-1.33-2.39-1.5c0.11-0.95,0.33-1.57,0.63-2.38C11.63,10.88,12,11,12.4,11C15,11,15,6.91,15,6c0,0-0.5,1-2,1h-0.6 c-1.1,0-2,0.9-2,2c0,0.38,0.11,0.74,0.29,1.04c0.14-0.15,1.05-1.09,1.81-1.54c-0.48,0.4-1.78,1.93-2.5,3.71 C9.42,11.08,8.51,10.17,8.25,10C8.69,10.17,9.24,10.58,9.4,10.69z\\\"></path></g>\"\n      }\n    }\n  },\n  \"front_hand\": {\n    \"name\": \"front_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,15.5c0,3.59-2.91,6.5-6.5,6.5S6,19.09,6,15.5V7c0-0.28,0.22-0.5,0.5-0.5S7,6.72,7,7v5h2V4 c0-0.28,0.22-0.5,0.5-0.5S10,3.72,10,4v7h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V11h2V4.5C15,4.22,15.22,4,15.5,4 S16,4.22,16,4.5v8.92c-1.77,0.77-3,2.53-3,4.58h2c0-1.66,1.34-3,3-3v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.5,8c-0.17,0-0.34,0.02-0.5,0.05V4.5C18,3.12,16.88,2,15.5,2c-0.19,0-0.37,0.02-0.54,0.06C14.75,0.89,13.73,0,12.5,0 c-1.06,0-1.96,0.66-2.33,1.59C9.96,1.53,9.73,1.5,9.5,1.5C8.12,1.5,7,2.62,7,4v0.55C6.84,4.52,6.67,4.5,6.5,4.5C5.12,4.5,4,5.62,4,7 v8.5c0,4.69,3.81,8.5,8.5,8.5s8.5-3.81,8.5-8.5v-5C21,9.12,19.88,8,18.5,8z M19,15.5c0,3.59-2.91,6.5-6.5,6.5S6,19.09,6,15.5V7 c0-0.28,0.22-0.5,0.5-0.5S7,6.72,7,7v5h2V4c0-0.28,0.22-0.5,0.5-0.5S10,3.72,10,4v7h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V11 h2V4.5C15,4.22,15.22,4,15.5,4S16,4.22,16,4.5v8.92c-1.77,0.77-3,2.53-3,4.58h2c0-1.66,1.34-3,3-3v-4.5c0-0.28,0.22-0.5,0.5-0.5 s0.5,0.22,0.5,0.5V15.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,13c0,3.04-2.46,5.5-5.5,5.5S5,16.04,5,13V6c0-0.28,0.22-0.5,0.5-0.5S6,5.72,6,6v4h1.5V3.25 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V9H10V2c0-0.28,0.22-0.5,0.5-0.5S11,1.72,11,2v7h1.5V3.5C12.5,3.22,12.72,3,13,3 s0.5,0.22,0.5,0.5l0,7.79C12.03,11.88,11,13.32,11,15h1.5c0-1.38,1.12-2.5,2.5-2.5v-4C15,8.22,15.22,8,15.5,8S16,8.22,16,8.5V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,6.5c-0.17,0-0.34,0.02-0.5,0.06V3.5c0-1.1-0.9-2-2-2c-0.19,0-0.37,0.03-0.55,0.08C12.26,0.67,11.46,0,10.5,0 C9.62,0,8.88,0.56,8.61,1.34C8.42,1.28,8.21,1.25,8,1.25c-1.1,0-2,0.9-2,2v0.81C5.84,4.02,5.67,4,5.5,4c-1.1,0-2,0.9-2,2v7 c0,3.87,3.13,7,7,7s7-3.13,7-7V8.5C17.5,7.4,16.6,6.5,15.5,6.5z M16,13c0,3.04-2.46,5.5-5.5,5.5S5,16.04,5,13V6 c0-0.28,0.22-0.5,0.5-0.5S6,5.72,6,6v4h1.5V3.25c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V9H10V2c0-0.28,0.22-0.5,0.5-0.5 S11,1.72,11,2v7h1.5V3.5C12.5,3.22,12.72,3,13,3s0.5,0.22,0.5,0.5l0,7.79C12.03,11.88,11,13.32,11,15h1.5c0-1.38,1.12-2.5,2.5-2.5 v-4C15,8.22,15.22,8,15.5,8S16,8.22,16,8.5V13z\\\"></path>\"\n      }\n    }\n  },\n  \"safety_divider\": {\n    \"name\": \"safety_divider\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,5h2v14h-2V5z M5,12c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C3,11.1,3.9,12,5,12z M7.78,13.58 C6.93,13.21,5.99,13,5,13s-1.93,0.21-2.78,0.58C1.48,13.9,1,14.62,1,15.43L1,16h8l0-0.57C9,14.62,8.52,13.9,7.78,13.58z M19,12 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C17,11.1,17.9,12,19,12z M21.78,13.58C20.93,13.21,19.99,13,19,13s-1.93,0.21-2.78,0.58 C15.48,13.9,15,14.62,15,15.43L15,16h8l0-0.57C23,14.62,22.52,13.9,21.78,13.58z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_2\": {\n    \"name\": \"groups_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.43,15.48c-1.1-0.49-2.26-0.73-3.43-0.73c-1.18,0-2.33,0.25-3.43,0.73c-0.23,0.1-0.4,0.29-0.49,0.52 h7.85C15.83,15.77,15.66,15.58,15.43,15.48z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.94,8.79C12.86,8.33,12.47,8,12,8s-0.86,0.33-0.94,0.79L10.86,10h2.28L12.94,8.79z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.27,12h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C14.67,7.04,13.44,6,12,6S9.33,7.04,9.09,8.47l-0.3,1.79 C8.64,11.17,9.34,12,10.27,12z M11.06,8.79C11.14,8.33,11.53,8,12,8s0.86,0.33,0.94,0.79l0.2,1.21h-2.28L11.06,8.79z\\\"></path><path d=\\\"M1.66,11.11c-0.13,0.26-0.18,0.57-0.1,0.88c0.16,0.69,0.76,1.03,1.53,1c0,0,1.49,0,1.95,0c0.83,0,1.51-0.58,1.51-1.29 c0-0.14-0.03-0.27-0.07-0.4c-0.01-0.03-0.01-0.05,0.01-0.08c0.09-0.16,0.14-0.34,0.14-0.53c0-0.31-0.14-0.6-0.36-0.82 c-0.03-0.03-0.03-0.06-0.02-0.1c0.07-0.2,0.07-0.43,0.01-0.65C6.1,8.69,5.71,8.4,5.27,8.38c-0.03,0-0.05-0.01-0.07-0.03 C5.03,8.14,4.72,8,4.37,8C4.07,8,3.8,8.1,3.62,8.26C3.59,8.29,3.56,8.29,3.53,8.28c-0.14-0.06-0.3-0.09-0.46-0.09 c-0.65,0-1.18,0.49-1.24,1.12c0,0.02-0.01,0.04-0.03,0.06c-0.29,0.26-0.46,0.65-0.41,1.05c0.03,0.22,0.12,0.43,0.25,0.6 C1.67,11.04,1.67,11.08,1.66,11.11z\\\"></path><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z M8.07,16c0.09-0.23,0.27-0.42,0.49-0.52c1.1-0.49,2.26-0.73,3.43-0.73 c1.18,0,2.33,0.25,3.43,0.73c0.23,0.1,0.4,0.29,0.49,0.52H8.07z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M22,11v-0.5c0-1.1-0.9-2-2-2h-2c-0.42,0-0.65,0.48-0.39,0.81l0.7,0.63C18.12,10.25,18,10.61,18,11c0,1.1,0.9,2,2,2 S22,12.1,22,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,12.5c-1.4,0-2.53,0.42-3.23,0.77c-0.1,0.05-0.18,0.13-0.22,0.23h6.91c-0.04-0.1-0.12-0.18-0.22-0.23 C12.53,12.92,11.39,12.5,10,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.92,7.26C10.83,6.82,10.45,6.5,10,6.5S9.17,6.82,9.08,7.26L8.83,8.5h2.34L10.92,7.26z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.22,10h3.56c0.63,0,1.1-0.58,0.98-1.2l-0.37-1.84C12.16,5.82,11.16,5,10,5S7.84,5.82,7.61,6.96L7.24,8.8 C7.12,9.42,7.59,10,8.22,10z M9.08,7.26C9.17,6.82,9.55,6.5,10,6.5s0.83,0.32,0.92,0.76l0.25,1.24H8.83L9.08,7.26z\\\"></path><path d=\\\"M1.63,9.49C1.52,9.7,1.49,9.95,1.54,10.2c0.13,0.55,0.61,0.83,1.22,0.8c0,0,1.19,0,1.56,0C5,11,5.54,10.54,5.54,9.97 c0-0.11-0.02-0.22-0.06-0.32c-0.01-0.02-0.01-0.04,0-0.06c0.07-0.13,0.11-0.27,0.11-0.42c0-0.25-0.11-0.48-0.29-0.66 C5.28,8.49,5.28,8.46,5.29,8.43c0.05-0.16,0.06-0.34,0.01-0.52C5.18,7.56,4.86,7.32,4.51,7.3c-0.02,0-0.04-0.01-0.05-0.03 C4.32,7.11,4.08,7,3.8,7c-0.24,0-0.46,0.08-0.6,0.21C3.18,7.23,3.15,7.23,3.12,7.22C3.01,7.18,2.89,7.15,2.76,7.15 c-0.52,0-0.94,0.39-0.99,0.9c0,0.02-0.01,0.03-0.02,0.05C1.51,8.31,1.38,8.62,1.42,8.94c0.02,0.18,0.09,0.34,0.2,0.48 C1.64,9.44,1.64,9.47,1.63,9.49z\\\"></path><path d=\\\"M16.5,11c0.83,0,1.5-0.67,1.5-1.5c0-0.04-0.01-0.07-0.01-0.11H18V9.01c0-0.83-0.68-1.51-1.51-1.51h-1.61 c-0.32,0-0.49,0.37-0.29,0.61l0.65,0.58C15.09,8.93,15,9.2,15,9.5C15,10.33,15.67,11,16.5,11z\\\"></path><path d=\\\"M13.9,11.93C12.87,11.41,11.54,11,10,11c-1.54,0-2.87,0.41-3.9,0.93C5.42,12.26,5,12.96,5,13.72L5,15h10l0-1.28 C15,12.96,14.58,12.26,13.9,11.93z M6.55,13.5c0.04-0.1,0.12-0.18,0.22-0.23C7.47,12.92,8.6,12.5,10,12.5 c1.39,0,2.53,0.42,3.23,0.77c0.1,0.05,0.18,0.13,0.22,0.23H6.55z\\\"></path><path d=\\\"M18.74,12.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,15h4l0-1.13 C20,13.05,19.5,12.31,18.74,12.01z\\\"></path><path d=\\\"M3.5,11.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,12.31,0,13.05,0,13.87L0,15h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,11.65,3.94,11.6,3.5,11.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"groups\": {\n    \"name\": \"groups\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M8.07,16c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69 H8.07z M12,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8\\\"></path></g><g><path d=\\\"M4,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C2,12.1,2.9,13,4,13z M5.13,14.1C4.76,14.04,4.39,14,4,14 c-0.99,0-1.93,0.21-2.78,0.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61C4.5,15.56,4.73,14.78,5.13,14.1z M20,13c1.1,0,2-0.9,2-2 c0-1.1-0.9-2-2-2s-2,0.9-2,2C18,12.1,18.9,13,20,13z M24,16.43c0-0.81-0.48-1.53-1.22-1.85C21.93,14.21,20.99,14,20,14 c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0V16.43z M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9 c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61C18,15.21,17.32,14.13,16.24,13.65z M8.07,16 c0.09-0.23,0.13-0.39,0.91-0.69c0.97-0.38,1.99-0.56,3.02-0.56s2.05,0.18,3.02,0.56c0.77,0.3,0.81,0.46,0.91,0.69H8.07z M12,8 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,8,12,8 M12,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C15,7.34,13.66,6,12,6L12,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"girl\": {\n    \"name\": \"girl\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,16v4h-4v-4H8l2.38-6.38 C10.63,8.95,11.28,8.5,12,8.5s1.37,0.45,1.62,1.12L16,16H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z M11.5,13v3h-3v-3H7l1.9-4.76 C9.08,7.79,9.52,7.5,10,7.5s0.92,0.29,1.1,0.74L13,13H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"piano\": {\n    \"name\": \"piano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,14.5h0.25V19h-4.5v-4.5H10c0.55,0,1-0.45,1-1V5h2v8.5C13,14.05,13.45,14.5,14,14.5z M5,5h2v8.5 c0,0.55,0.45,1,1,1h0.25V19H5V5z M19,19h-3.25v-4.5H16c0.55,0,1-0.45,1-1V5h2V19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M14,14.5h0.25V19h-4.5v-4.5H10 c0.55,0,1-0.45,1-1V5h2v8.5C13,14.05,13.45,14.5,14,14.5z M5,5h2v8.5c0,0.55,0.45,1,1,1h0.25V19H5V5z M19,19h-3.25v-4.5H16 c0.55,0,1-0.45,1-1V5h2V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M7,15.5H4.5v-11H6v7C6,11.78,6.22,12,6.5,12H7V15.5z M12,15.5H8V12h0.5C8.78,12,9,11.78,9,11.5v-7h2v7 c0,0.28,0.22,0.5,0.5,0.5H12V15.5z M15.5,15.5H13V12h0.5c0.28,0,0.5-0.22,0.5-0.5v-7h1.5V15.5z\\\"></path></g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M7,15.5H4.5v-11H6v7C6,11.78,6.22,12,6.5,12H7V15.5z M12,15.5H8V12h0.5C8.78,12,9,11.78,9,11.5v-7h2v7c0,0.28,0.22,0.5,0.5,0.5H12 V15.5z M15.5,15.5H13V12h0.5c0.28,0,0.5-0.22,0.5-0.5v-7h1.5V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people_outline\": {\n    \"name\": \"people_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"8.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"group\": {\n    \"name\": \"group\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"8.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_off\": {\n    \"name\": \"notifications_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 17h8v-.24L8.34 9.1C8.12 9.68 8 10.32 8 11v6zm4-10.5c-.19 0-.37.03-.55.06L16 11.1V11c0-2.48-1.51-4.5-4-4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm0-15.5c2.49 0 4 2.02 4 4.5v.1l2 2V11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.24.06-.47.15-.69.23l1.64 1.64c.18-.02.36-.05.55-.05zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.74 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35zM16 17H8v-6c0-.68.12-1.32.34-1.9L16 16.76V17z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_objects\": {\n    \"name\": \"emoji_objects\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"18\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"16\\\"></rect><path d=\\\"M12,3c-0.46,0-0.93,0.04-1.4,0.14C7.84,3.67,5.64,5.9,5.12,8.66c-0.48,2.61,0.48,5.01,2.22,6.56 C7.77,15.6,8,16.13,8,16.69V19c0,1.1,0.9,2,2,2h0.28c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1H14c1.1,0,2-0.9,2-2v-2.31 c0-0.55,0.22-1.09,0.64-1.46C18.09,13.95,19,12.08,19,10C19,6.13,15.87,3,12,3z M14,19h-4v-1h4V19z M14,17h-4v-1h4V17z M15.31,13.74c-0.09,0.08-0.16,0.18-0.24,0.26H8.92c-0.08-0.09-0.15-0.19-0.24-0.27c-1.32-1.18-1.91-2.94-1.59-4.7 c0.36-1.94,1.96-3.55,3.89-3.93C11.32,5.03,11.66,5,12,5c2.76,0,5,2.24,5,5C17,11.43,16.39,12.79,15.31,13.74z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"1\\\" x=\\\"11.5\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.0312 10.8536)\\\" width=\\\"1\\\" x=\\\"10.59\\\" y=\\\"8.79\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(-0.7071 -0.7071 0.7071 -0.7071 14.7678 26.7028)\\\" width=\\\"1\\\" x=\\\"12.41\\\" y=\\\"8.79\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><polygon opacity=\\\".3\\\" points=\\\"8,13 8,13 12,13 12,12 8,12\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8,15 10,15 10,15 10,15 12,15 12,14 8,14\\\"></polygon><path d=\\\"M14.91,7.07c-0.01-0.04-0.01-0.08-0.02-0.12c-0.06-0.28-0.15-0.56-0.26-0.82c-0.02-0.05-0.04-0.09-0.06-0.14 c-0.11-0.26-0.25-0.5-0.4-0.74c-0.03-0.04-0.05-0.08-0.08-0.11c-0.16-0.23-0.34-0.46-0.55-0.66c-0.02-0.02-0.03-0.03-0.05-0.05 c-0.2-0.2-0.42-0.38-0.66-0.54c-0.02-0.02-0.04-0.03-0.06-0.05c-0.24-0.16-0.49-0.29-0.75-0.41c-0.04-0.02-0.09-0.04-0.13-0.06 c-0.26-0.11-0.53-0.19-0.81-0.25c-0.05-0.01-0.1-0.02-0.15-0.03C10.64,3.04,10.34,3.01,10.04,3C10.03,3,10.01,3,10,3 C9.9,3,9.79,3.01,9.69,3.02c-0.06,0-0.12,0-0.18,0.01C9.31,3.04,9.12,3.07,8.93,3.11c-1.94,0.4-3.49,2-3.84,3.95 c-0.31,1.72,0.26,3.3,1.33,4.4C6.78,11.84,7,12.34,7,12.87c0,0.77,0,1.6,0,2.14c0,0.55,0.45,1,1,1h0.28l0,0 c0.35,0.6,0.98,1,1.72,1s1.38-0.4,1.72-1l0,0H12c0.55,0,1-0.45,1-1v-2.13c0-0.52,0.21-1.02,0.58-1.4C14.45,10.57,15,9.35,15,8 C15,7.68,14.96,7.37,14.91,7.07z M12,15l-2,0l0,0l0,0l-2,0l0-1h4V15z M12,13H8h0l0-1h4V13z M12.86,10.77 c-0.07,0.07-0.12,0.15-0.19,0.23H7.32c-0.06-0.08-0.12-0.16-0.19-0.24c-0.91-0.94-1.3-2.22-1.06-3.52 c0.29-1.57,1.52-2.83,3.06-3.16C9.42,4.03,9.71,4,10,4c2.21,0,4,1.79,4,4C14,9.04,13.6,10.02,12.86,10.77z\\\"></path></g><g><g><g><rect height=\\\"2.5\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"8.5\\\"></rect></g></g><g><g><rect height=\\\"2.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9225 8.8839)\\\" width=\\\"1\\\" x=\\\"8.76\\\" y=\\\"6.72\\\"></rect></g></g><g><g><rect height=\\\"2.5\\\" transform=\\\"matrix(-0.7071 -0.7071 0.7071 -0.7071 12.6945 21.1976)\\\" width=\\\"1\\\" x=\\\"10.24\\\" y=\\\"6.72\\\"></rect></g></g></g></g>\"\n      }\n    }\n  },\n  \"edit_notifications\": {\n    \"name\": \"edit_notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M16,14.2L15.2,15h-4.6v-4.6l3.68-3.68C13.64,6.26,12.85,6,12,6c-2.21,0-4,1.79-4,4v7h8V14.2z\\\"></path></g><g><path d=\\\"M17.58,6.25l1.77,1.77L14.37,13H12.6v-1.77L17.58,6.25z M20.85,5.81l-1.06-1.06c-0.2-0.2-0.51-0.2-0.71,0l-0.85,0.85 l1.77,1.77l0.85-0.85C21.05,6.32,21.05,6,20.85,5.81z M18,12.2V17h2v2H4v-2h2v-7c0-2.79,1.91-5.14,4.5-5.8V3.5 C10.5,2.67,11.17,2,12,2s1.5,0.67,1.5,1.5v0.7c0.82,0.21,1.57,0.59,2.21,1.09l-1.43,1.43C13.64,6.26,12.85,6,12,6 c-2.21,0-4,1.79-4,4v7h8v-2.8L18,12.2z M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,11.03V14h-7V9c0-1.93,1.57-3.5,3.5-3.5c0.58,0,1.13,0.14,1.61,0.39L9,8.5V12h3.53L13.5,11.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.5,11.03V14h-7V9c0-1.93,1.57-3.5,3.5-3.5c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3 c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4v1.5h12V14h-1V9.53L13.5,11.03z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3 C8.5,17.33,9.17,18,10,18z M14.32,5.27l1.41,1.41l-3.82,3.82H10.5l0-1.41L14.32,5.27z M14.81,4.77l0.63-0.63 c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L14.81,4.77z\\\"></path>\"\n      }\n    }\n  },\n  \"whatshot\": {\n    \"name\": \"whatshot\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.11 6.77c-.53 2.6-2.62 4.43-5.28 4.43-1.56 0-2.96-.62-3.97-1.63C6.3 10.96 6 12.47 6 14c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.56-.66-5.03-1.89-7.23zm-4.22 11.22c-1.37 0-2.49-1.08-2.49-2.42 0-1.25.81-2.13 2.17-2.41 1.37-.28 2.78-.93 3.57-1.99.3 1 .46 2.05.46 3.12 0 2.04-1.66 3.7-3.71 3.7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.57 13.16c-1.36.28-2.17 1.16-2.17 2.41 0 1.34 1.11 2.42 2.49 2.42 2.05 0 3.71-1.66 3.71-3.71 0-1.07-.15-2.12-.46-3.12-.79 1.07-2.2 1.72-3.57 2zM13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM12 20c-3.31 0-6-2.69-6-6 0-1.53.3-3.04.86-4.43 1.01 1.01 2.41 1.63 3.97 1.63 2.66 0 4.75-1.83 5.28-4.43C17.34 8.97 18 11.44 18 14c0 3.31-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"roller_skating\": {\n    \"name\": \"roller_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><g><path d=\\\"M18,14H6V3h5v1H9.5C9.22,4,9,4.22,9,4.5C9,4.78,9.22,5,9.5,5H11l0.1,1H9.5C9.22,6,9,6.22,9,6.5C9,6.78,9.22,7,9.5,7h1.81 c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C17.4,10.33,18,11.1,18,12V14z M5,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C6,20.55,5.55,21,5,21z M19,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,20.55,19.55,21,19,21z M12,21 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,20.55,12.55,21,12,21z\\\"></path></g></g><g><g><path d=\\\"M20,12c0-1.79-1.19-3.34-2.91-3.82l-2.62-0.74C13.62,7.19,13,6.39,13,5.5V1H4v15h16V12z M18,14H6V3h5v1H9.5 C9.22,4,9,4.22,9,4.5C9,4.78,9.22,5,9.5,5H11l0.1,1H9.5C9.22,6,9,6.22,9,6.5C9,6.78,9.22,7,9.5,7h1.81 c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C17.4,10.33,18,11.1,18,12V14z M5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 S6.66,17,5,17z M5,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C6,20.55,5.55,21,5,21z M19,17c-1.66,0-3,1.34-3,3 s1.34,3,3,3s3-1.34,3-3S20.66,17,19,17z M19,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C20,20.55,19.55,21,19,21z M12,17c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S13.66,17,12,17z M12,21c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C13,20.55,12.55,21,12,21z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,12H5V2.5h4.5v1H8C7.72,3.5,7.5,3.72,7.5,4c0,0.27,0.22,0.5,0.5,0.5h1.5c0,0.57-0.01,0.76,0.03,1H8 C7.72,5.5,7.5,5.72,7.5,6c0,0.27,0.22,0.5,0.5,0.5h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6C14.55,8.78,15,9.33,15,10V12z M4.25,17.5c-0.41,0-0.75-0.34-0.75-0.75C3.5,16.34,3.84,16,4.25,16S5,16.34,5,16.75C5,17.16,4.66,17.5,4.25,17.5z M15.75,17.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.5,17.16,16.16,17.5,15.75,17.5z M10,17.5 c-0.41,0-0.75-0.34-0.75-0.75C9.25,16.34,9.59,16,10,16s0.75,0.34,0.75,0.75C10.75,17.16,10.41,17.5,10,17.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,10c0-1.35-0.89-2.49-2.2-2.85l-2.2-0.6C11.45,6.37,11,5.78,11,5.1V1H3.5v12.5h13V10z M15,12H5V2.5h4.5v1H8 C7.72,3.5,7.5,3.72,7.5,4c0,0.27,0.22,0.5,0.5,0.5h1.5c0,0.57-0.01,0.76,0.03,1H8C7.72,5.5,7.5,5.72,7.5,6c0,0.27,0.22,0.5,0.5,0.5 h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6C14.55,8.78,15,9.33,15,10V12z M4.25,14.5C3.01,14.5,2,15.51,2,16.75 C2,17.99,3.01,19,4.25,19s2.25-1.01,2.25-2.25C6.5,15.51,5.49,14.5,4.25,14.5z M4.25,17.5c-0.41,0-0.75-0.34-0.75-0.75 C3.5,16.34,3.84,16,4.25,16S5,16.34,5,16.75C5,17.16,4.66,17.5,4.25,17.5z M15.75,14.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25C18,15.51,16.99,14.5,15.75,14.5z M15.75,17.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75C16.5,17.16,16.16,17.5,15.75,17.5z M10,14.5c-1.24,0-2.25,1.01-2.25,2.25 C7.75,17.99,8.76,19,10,19s2.25-1.01,2.25-2.25C12.25,15.51,11.24,14.5,10,14.5z M10,17.5c-0.41,0-0.75-0.34-0.75-0.75 C9.25,16.34,9.59,16,10,16s0.75,0.34,0.75,0.75C10.75,17.16,10.41,17.5,10,17.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"downhill_skiing\": {\n    \"name\": \"downhill_skiing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S18.5,3.4,18.5,4.5z M15.78,20.9l0.76,0.27c0.62,0.21,1.27,0.33,1.96,0.33 c0.84,0,1.65-0.18,2.38-0.5L22,22.13C20.95,22.68,19.76,23,18.5,23c-0.86,0-1.68-0.14-2.45-0.41L2,17.47l0.5-1.41l6.9,2.51 l1.72-4.44L7.55,10.4C6.66,9.46,6.88,7.93,8,7.28l3.48-2.01c1.1-0.64,2.52-0.1,2.91,1.11l0.33,1.08c0.44,1.42,1.48,2.57,2.83,3.14 L18.07,9l1.43,0.46l-1.12,3.45c-2.45-0.4-4.48-2.07-5.38-4.32l-2.53,1.45l3.03,3.46l-2.22,5.76l3.09,1.12l2.1-6.44h0l0,0 c0.46,0.18,0.94,0.31,1.44,0.41L15.78,20.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,3.75C12,2.78,12.78,2,13.75,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C12.79,5.5,12,4.72,12,3.75z M6.83,6.38 c-0.89,0.5-1.13,1.7-0.37,2.43l3.1,2.94L8,15.8l-5.66-2.04L2,14.7l10.85,3.9C13.52,18.86,14.24,19,15,19c1.09,0,2.12-0.29,3-0.8 l-0.74-0.74C16.58,17.81,15.81,18,15,18c-0.6,0-1.14-0.1-1.67-0.29l-0.35-0.12l1.9-5.83c-0.34-0.04-0.67-0.11-0.98-0.2l0,0l0,0 l-1.85,5.7l-2.62-0.94l1.91-4.98L8.74,8.74L10.9,7.5c0.65,1.8,2.31,3.12,4.3,3.28L16,8.31L15.05,8l-0.38,1.17 c-1.22-0.34-2.17-1.31-2.47-2.55l-0.24-0.97C11.72,4.67,10.61,4.2,9.75,4.7L6.83,6.38z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_symbols\": {\n    \"name\": \"emoji_symbols\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><polygon points=\\\"6,11 8,11 8,7 11,7 11,5 3,5 3,7 6,7\\\"></polygon><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0416 16.9999)\\\" width=\\\"11\\\" x=\\\"11.5\\\" y=\\\"16\\\"></rect><circle cx=\\\"14.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.5,11c1.38,0,2.5-1.12,2.5-2.5V4h3V2h-4v4.51C16.58,6.19,16.07,6,15.5,6C14.12,6,13,7.12,13,8.5 C13,9.88,14.12,11,15.5,11z\\\"></path><path d=\\\"M9.74,15.96l-1.41,1.41l-0.71-0.71l0.35-0.35c0.98-0.98,0.98-2.56,0-3.54c-0.49-0.49-1.13-0.73-1.77-0.73 c-0.64,0-1.28,0.24-1.77,0.73c-0.98,0.98-0.98,2.56,0,3.54l0.35,0.35l-1.06,1.06c-0.98,0.98-0.98,2.56,0,3.54 C4.22,21.76,4.86,22,5.5,22s1.28-0.24,1.77-0.73l1.06-1.06l1.41,1.41l1.41-1.41l-1.41-1.41l1.41-1.41L9.74,15.96z M5.85,14.2 c0.12-0.12,0.26-0.15,0.35-0.15s0.23,0.03,0.35,0.15c0.19,0.2,0.19,0.51,0,0.71l-0.35,0.35L5.85,14.9 C5.66,14.71,5.66,14.39,5.85,14.2z M5.85,19.85C5.73,19.97,5.59,20,5.5,20s-0.23-0.03-0.35-0.15c-0.19-0.19-0.19-0.51,0-0.71 l1.06-1.06l0.71,0.71L5.85,19.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M5.21,14.09l-1.06,1.06C4.02,15.27,4,15.42,4,15.5s0.02,0.23,0.15,0.35C4.27,15.98,4.42,16,4.5,16 s0.23-0.02,0.35-0.15l0.35-0.35l0.71-0.71L5.21,14.09z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.71,11.96c0-0.08-0.02-0.23-0.15-0.35s-0.28-0.15-0.35-0.15c-0.08,0-0.23,0.02-0.35,0.15 c-0.13,0.13-0.15,0.28-0.15,0.35c0,0.08,0.02,0.23,0.15,0.35l0.35,0.35l0.35-0.35C5.69,12.19,5.71,12.04,5.71,11.96z\\\" fill=\\\"none\\\"></path><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"4\\\" y=\\\"3\\\"></rect><polygon points=\\\"4,5 4,6 6,6 6,9 6.99,9 6.99,6 9,6 9,5\\\"></polygon><rect height=\\\".99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.8428 13.8943)\\\" width=\\\"7.07\\\" x=\\\"10.31\\\" y=\\\"13.5\\\"></rect><path d=\\\"M12.71,12.71c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41 C11.68,13.1,12.32,13.1,12.71,12.71z\\\"></path><path d=\\\"M16.71,15.29c-0.39-0.39-1.02-0.39-1.41,0c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0 C17.1,16.32,17.1,15.68,16.71,15.29z\\\"></path><path d=\\\"M12.5,9C13.33,9,14,8.33,14,7.5C14,7.47,14,4,14,4h2V3h-3v3.09C12.84,6.04,12.68,6,12.5,6C11.67,6,11,6.67,11,7.5 S11.67,9,12.5,9z\\\"></path><path d=\\\"M8.04,12.67l-1.41,1.41l-0.71-0.71l0.35-0.35c0.59-0.59,0.59-1.54,0-2.12c-0.29-0.29-0.68-0.44-1.06-0.44 c-0.38,0-0.77,0.15-1.06,0.44c-0.59,0.59-0.59,1.54,0,2.12l0.35,0.35l-1.06,1.06c-0.59,0.59-0.59,1.54,0,2.12 C3.73,16.85,4.12,17,4.5,17s0.77-0.15,1.06-0.44l1.06-1.06l1.41,1.41l0.71-0.71l-1.41-1.41v0l1.41-1.41L8.04,12.67z M4.85,12.32 c-0.13-0.13-0.15-0.28-0.15-0.35c0-0.08,0.02-0.23,0.15-0.35c0.13-0.13,0.28-0.15,0.35-0.15c0.08,0,0.23,0.02,0.35,0.15 s0.15,0.28,0.15,0.35c0,0.08-0.02,0.23-0.15,0.35l-0.35,0.35L4.85,12.32z M4.85,15.85C4.73,15.98,4.58,16,4.5,16 s-0.23-0.02-0.35-0.15C4.02,15.73,4,15.58,4,15.5s0.02-0.23,0.15-0.35l1.06-1.06l0.71,0.71L5.21,15.5L4.85,15.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interests\": {\n    \"name\": \"interests\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.02,19c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S8.12,19,7.02,19z M19,19h-4v-4h4V19z M7,6.12L8.6,9H5.4 L7,6.12z M17,8.35c-1.45-1.22-3-2.4-3-3.1c0-0.43,0.35-0.75,0.75-0.75c0.31,0,0.52,0.17,0.73,0.37L17,6.3l1.52-1.43 c0.21-0.2,0.42-0.37,0.73-0.37c0.4,0,0.75,0.32,0.75,0.75C20,5.95,18.45,7.13,17,8.35z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.02,13c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S9.23,13,7.02,13z M7.02,19c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S8.12,19,7.02,19z M13,13v8h8v-8H13z M19,19h-4v-4h4V19z M7,2l-5,9h10L7,2z M7,6.12L8.6,9H5.4L7,6.12z M19.25,2.5 c-1.06,0-1.81,0.56-2.25,1.17c-0.44-0.61-1.19-1.17-2.25-1.17C13.19,2.5,12,3.78,12,5.25c0,2,2.42,3.42,5,5.75 c2.58-2.33,5-3.75,5-5.75C22,3.78,20.81,2.5,19.25,2.5z M17,8.35c-1.45-1.22-3-2.4-3-3.1c0-0.43,0.35-0.75,0.75-0.75 c0.31,0,0.52,0.17,0.73,0.37L17,6.3l1.52-1.43c0.21-0.2,0.42-0.37,0.73-0.37c0.4,0,0.75,0.32,0.75,0.75C20,5.95,18.45,7.13,17,8.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,15.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S6.83,15.5,6,15.5z M12.5,12.5h3v3h-3 V12.5z M7.4,7.5H4.6L6,5.03L7.4,7.5z M14,7c-1.12-0.95-2.32-1.87-2.32-2.42c0-0.33,0.27-0.58,0.58-0.58c0.24,0,0.4,0.13,0.57,0.29 L14,5.4l1.18-1.11C15.34,4.14,15.5,4,15.74,4c0.31,0,0.58,0.25,0.58,0.58C16.33,5.13,15.12,6.05,14,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,11c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3S7.65,11,6,11z M6,15.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S6.83,15.5,6,15.5z M11,17h6v-6h-6V17z M12.5,12.5h3v3h-3V12.5z M7.4,7.5H4.6L6,5.03L7.4,7.5z M2.01,9H10L6,2 L2.01,9z M15.72,2.5c-0.81,0-1.39,0.43-1.72,0.89c-0.33-0.47-0.91-0.89-1.72-0.89c-1.19,0-2.1,0.98-2.1,2.1 c0,1.53,1.85,2.61,3.82,4.4c1.98-1.78,3.82-2.87,3.82-4.4C17.82,3.48,16.92,2.5,15.72,2.5z M14,7c-1.12-0.95-2.32-1.87-2.32-2.42 c0-0.33,0.27-0.58,0.58-0.58c0.24,0,0.4,0.13,0.57,0.29L14,5.4l1.18-1.11C15.34,4.14,15.5,4,15.74,4c0.31,0,0.58,0.25,0.58,0.58 C16.33,5.13,15.12,6.05,14,7z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_active\": {\n    \"name\": \"notifications_active\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-11c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-2 6H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2c.15-2.65 1.51-4.97 3.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43c2.02 1.45 3.39 3.77 3.54 6.42z\\\"></path>\"\n      }\n    }\n  },\n  \"follow_the_signs\": {\n    \"name\": \"follow_the_signs\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.64,7.75V6h-3.51V4.5h3.51V2.75l2.49,2.5L17.64,7.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.12,5.25c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.02,5.25,9.12,5.25z M5.38,8.65l-2.75,14.1h2.1l1.75-8l2.15,2v6h2V15.2 l-2.05-2.05l0.6-3c1.3,1.6,3.25,2.6,5.45,2.6v-2c-1.85,0-3.45-1-4.35-2.45L9.32,6.7c-0.35-0.6-1-0.95-1.7-0.95 c-0.25,0-0.5,0.05-0.75,0.15L1.62,8.05v4.7h2V9.4L5.38,8.65 M12.62,1.75v7h3.75v14h1.5v-14h3.75v-7H12.62z M17.64,7.75V6h-3.51V4.5 h3.51V2.75l2.49,2.5L17.64,7.75z\\\"></path>\"\n      }\n    }\n  },\n  \"groups_3\": {\n    \"name\": \"groups_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.43,15.48c-1.1-0.49-2.26-0.73-3.43-0.73c-1.18,0-2.33,0.25-3.43,0.73c-0.23,0.1-0.4,0.29-0.49,0.52 h7.85C15.83,15.77,15.66,15.58,15.43,15.48z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"9\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M16.24,13.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,14.13,6,15.21,6,16.39V18h12v-1.61 C18,15.21,17.32,14.13,16.24,13.65z M8.07,16c0.09-0.23,0.27-0.42,0.49-0.52c1.1-0.49,2.26-0.73,3.43-0.73 c1.18,0,2.33,0.25,3.43,0.73c0.23,0.1,0.4,0.29,0.49,0.52H8.07z\\\"></path><path d=\\\"M1.22,14.58C0.48,14.9,0,15.62,0,16.43V18l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,14.04,4.39,14,4,14 C3.01,14,2.07,14.21,1.22,14.58z\\\"></path><path d=\\\"M22.78,14.58C21.93,14.21,20.99,14,20,14c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V18l4.5,0v-1.57 C24,15.62,23.52,14.9,22.78,14.58z\\\"></path><path d=\\\"M12,12c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,7.34,9,9C9,10.66,10.34,12,12,12z M12,8c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,8,12,8z\\\"></path><rect height=\\\"3.54\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.6066 6.0503)\\\" width=\\\"3.54\\\" x=\\\"2.23\\\" y=\\\"9.23\\\"></rect><polygon points=\\\"20,9 17.5,13 22.5,13\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,11.5c-1.4,0-2.53,0.42-3.23,0.77c-0.1,0.05-0.18,0.13-0.22,0.23h6.91c-0.04-0.1-0.12-0.18-0.22-0.23 C12.53,11.92,11.39,11.5,10,11.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"6.5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.6317 4.818)\\\" width=\\\"2.83\\\" x=\\\"2.09\\\" y=\\\"6.59\\\"></rect><polygon points=\\\"16.5,6.5 14.5,10 18.5,10\\\"></polygon><path d=\\\"M13.9,10.93C12.87,10.41,11.54,10,10,10c-1.54,0-2.87,0.41-3.9,0.93C5.42,11.26,5,11.96,5,12.72L5,14h10l0-1.28 C15,11.96,14.58,11.26,13.9,10.93z M6.55,12.5c0.04-0.1,0.12-0.18,0.22-0.23C7.47,11.92,8.6,11.5,10,11.5 c1.39,0,2.53,0.42,3.23,0.77c0.1,0.05,0.18,0.13,0.22,0.23H6.55z\\\"></path><path d=\\\"M18.74,11.01c-0.64-0.25-1.4-0.41-2.24-0.41c-0.44,0-0.86,0.05-1.25,0.12c0.48,0.54,0.75,1.24,0.75,1.99L16,14h4l0-1.13 C20,12.05,19.5,11.31,18.74,11.01z\\\"></path><path d=\\\"M3.5,10.6c-0.85,0-1.6,0.16-2.24,0.41C0.5,11.31,0,12.05,0,12.87L0,14h4l0-1.28c0-0.76,0.28-1.45,0.75-1.99 C4.36,10.65,3.94,10.6,3.5,10.6z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z M10,5.5c0.55,0,1,0.45,1,1 s-0.45,1-1,1s-1-0.45-1-1S9.45,5.5,10,5.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications\": {\n    \"name\": \"notifications\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_food_beverage\": {\n    \"name\": \"emoji_food_beverage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M10,6.4l1.81,1.45C11.93,7.94,12,8.09,12,8.24v4.26c0,0.28-0.22,0.5-0.5,0.5h-4C7.22,13,7,12.78,7,12.5 V8.24c0-0.15,0.07-0.3,0.19-0.39L9,6.4V5H6v8c0,1.1,0.9,2,2,2h6c1.1,0,2-0.9,2-2V5h-6V6.4z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"2\\\" y=\\\"19\\\"></rect><path d=\\\"M20,3H4v10c0,2.21,1.79,4,4,4h6c2.21,0,4-1.79,4-4v-3h2c1.11,0,2-0.89,2-2V5C22,3.89,21.11,3,20,3z M9.5,7.28l1.5,1.2V12 H8V8.48L9.5,7.28z M16,13c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V5h3v1.4L7.19,7.85C7.07,7.94,7,8.09,7,8.24v4.26 C7,12.78,7.22,13,7.5,13h4c0.28,0,0.5-0.22,0.5-0.5V8.24c0-0.15-0.07-0.3-0.19-0.39L10,6.4V5h6V13z M20,8h-2V5h2V8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><g opacity=\\\".3\\\"><path d=\\\"M9.89,7.93C9.96,7.97,10,8.05,10,8.13v2.62C10,10.89,9.89,11,9.75,11h-2.5C7.11,11,7,10.89,7,10.75V8.13 c0-0.08,0.04-0.16,0.11-0.21l1.14-0.76V6H6v6c0,0.55,0.45,1,1,1h5c0.55,0,1-0.45,1-1V9V6H8.75v1.17L9.89,7.93z\\\"></path></g><rect height=\\\"1\\\" width=\\\"11\\\" x=\\\"4\\\" y=\\\"15\\\"></rect><g><path d=\\\"M15,5H5v7c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2V9h1c0.55,0,1-0.45,1-1V6C16,5.45,15.55,5,15,5z M8.5,8.2L9,8.54V10H8V8.54 L8.5,8.2z M13,9v3c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V6h2.25v1.17L7.11,7.93C7.04,7.97,7,8.05,7,8.13v2.62 C7,10.89,7.11,11,7.25,11h2.5C9.89,11,10,10.89,10,10.75V8.13c0-0.08-0.04-0.16-0.11-0.21L8.75,7.17V6H13V9z M15,8h-1V6h1V8z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"domain\": {\n    \"name\": \"domain\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-4-8h2v2h-2zm0 4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"person_off\": {\n    \"name\": \"person_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.17,18l-3-3c-0.06,0-0.11,0-0.17,0c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18H15.17z M10.13,7.3C10.41,6.54,11.14,6,12,6c1.1,0,2,0.9,2,2c0,0.86-0.54,1.59-1.3,1.87\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,17.17l-3.37-3.38c0.64,0.22,1.23,0.48,1.77,0.76C19.37,15.06,19.98,16.07,20,17.17z M21.19,21.19l-1.41,1.41L17.17,20H4 v-2.78c0-1.12,0.61-2.15,1.61-2.66c1.29-0.66,2.87-1.22,4.67-1.45L1.39,4.22l1.41-1.41L21.19,21.19z M15.17,18l-3-3 c-0.06,0-0.11,0-0.17,0c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18H15.17z M12,6c1.1,0,2,0.9,2,2 c0,0.86-0.54,1.59-1.3,1.87l1.48,1.48C15.28,10.64,16,9.4,16,8c0-2.21-1.79-4-4-4c-1.4,0-2.64,0.72-3.35,1.82l1.48,1.48 C10.41,6.54,11.14,6,12,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.6,6.47C8.81,5.91,9.36,5.5,10,5.5c0.83,0,1.5,0.67,1.5,1.5c0,0.64-0.41,1.19-0.97,1.4L8.6,6.47z M5.5,14.5 v-0.41c0-0.18,0.09-0.34,0.22-0.42C7.02,12.9,8.5,12.5,10,12.5c0.13,0,0.26,0,0.39,0.01l1.99,1.99H5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.64,9.51C12.46,8.98,13,8.05,13,7c0-1.66-1.34-3-3-3C8.95,4,8.02,4.54,7.49,5.36L8.6,6.47C8.81,5.91,9.36,5.5,10,5.5 c0.83,0,1.5,0.67,1.5,1.5c0,0.64-0.41,1.19-0.97,1.4L11.64,9.51z M15.99,13.87c-0.07-0.62-0.41-1.18-0.95-1.5 c-0.35-0.21-0.72-0.39-1.1-0.56L15.99,13.87z M2.93,2.93L1.87,3.99l7.07,7.07c-1.44,0.15-2.78,0.62-3.97,1.31 C4.36,12.72,4,13.39,4,14.09V16h9.88l2.13,2.13l1.06-1.06L2.93,2.93z M5.5,14.5v-0.41c0-0.18,0.09-0.34,0.22-0.42 C7.02,12.9,8.5,12.5,10,12.5c0.13,0,0.26,0,0.39,0.01l1.99,1.99H5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"assist_walker\": {\n    \"name\": \"assist_walker\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12.5\\\" cy=\\\"4.5\\\" r=\\\"2\\\"></circle><path d=\\\"M19.77,17.72l-0.64-6.37C19.06,10.58,18.41,10,17.64,10H16c-1.5-0.02-2.86-0.54-3.76-1.44l-2-1.98 C10.08,6.42,9.62,6,8.83,6C8.32,6,7.81,6.2,7.42,6.59L4.08,9.91c-0.53,0.68-0.51,1.57-0.21,2.13l1.43,2.8l-3.15,4.05l1.57,1.24 l3.68-4.73l-0.17-1.36L8,14.75V20h2v-6.12l-2.12-2.12l2.36-2.36c0.94,0.94,1.72,1.82,3.59,2.32L13,20h1.5l0.41-3.5h3.18l0.14,1.22 c-0.44,0.26-0.73,0.74-0.73,1.28c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5C20.5,18.46,20.21,17.98,19.77,17.72z M15.09,15 l0.41-3.5h2l0.41,3.5H15.09z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.25,15.05l-0.64-4.92c-0.06-0.5-0.49-0.88-0.99-0.88H12c-0.48-0.16-0.93-0.41-1.3-0.78L8.66,6.44c0,0-0.01,0-0.01-0.01 L8.64,6.42l0,0c-0.59-0.57-1.52-0.57-2.1,0.01l-2.31,2.3c-0.25,0.35-0.34,0.8-0.25,1.22l0.76,3.28l-2.32,3.09l1.22,0.88l2.68-3.59 l-0.19-1.19l1.11,1.08V17h1.5v-4.2l-2.2-2.2l2.08-2.08c1.09,1.09,1.34,1.42,2.23,1.87L10,17h1.01l0.39-3h2.71l0.16,1.26 c-0.31,0.23-0.52,0.57-0.52,0.99c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25C16.25,15.65,15.81,15.17,15.25,15.05z M11.53,13 l0.36-2.75h1.73l0,0L13.97,13H11.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thunderstorm\": {\n    \"name\": \"thunderstorm\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.73,9.01L16.2,8.87l-0.25-1.52C15.63,5.44,13.94,4,12,4c-1.44,0-2.77,0.78-3.48,2.04L8.03,6.91 L7.04,7.04C5.31,7.27,4,8.76,4,10.5C4,12.43,5.57,14,7.5,14h10c1.38,0,2.5-1.12,2.5-2.5C20,10.22,19.01,9.13,17.73,9.01z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.92,7.02C17.45,4.18,14.97,2,12,2C9.82,2,7.83,3.18,6.78,5.06C4.09,5.41,2,7.74,2,10.5C2,13.53,4.47,16,7.5,16h10 c2.48,0,4.5-2.02,4.5-4.5C22,9.16,20.21,7.23,17.92,7.02z M17.5,14h-10C5.57,14,4,12.43,4,10.5c0-1.74,1.31-3.23,3.04-3.46 l0.99-0.13l0.49-0.87C9.23,4.78,10.56,4,12,4c1.94,0,3.63,1.44,3.95,3.35l0.25,1.52l1.54,0.14C19.01,9.13,20,10.22,20,11.5 C20,12.88,18.88,14,17.5,14z\\\"></path><polygon points=\\\"14.8,17 11.9,20.32 13.9,21.32 11.55,24 14.2,24 17.1,20.68 15.1,19.68 17.45,17\\\"></polygon><polygon points=\\\"8.8,17 5.9,20.32 7.9,21.32 5.55,24 8.2,24 11.1,20.68 9.1,19.68 11.45,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,7.5h-1.1l-0.19-1.26C12.96,4.69,11.62,3.5,10,3.5c-1.32,0-2.45,0.78-2.96,1.91L6.75,6h-0.5 C4.73,6,3.5,7.23,3.5,8.75c0,1.52,1.23,2.75,2.75,2.75h8.25c1.1,0,2-0.9,2-2C16.5,8.4,15.6,7.5,14.5,7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.69,6.01c-0.35-2.23-2.25-3.95-4.58-4C10.07,2,10.04,2,10,2C8.19,2,6.6,3.02,5.8,4.52C3.71,4.74,2.05,6.49,2,8.65 C1.95,11,3.81,12.94,6.15,13l8.35,0c1.93,0,3.5-1.57,3.5-3.5C18,7.63,16.54,6.1,14.69,6.01z M14.5,11.5H6.25 c-1.52,0-2.75-1.23-2.75-2.75C3.5,7.23,4.73,6,6.25,6h0.5l0.29-0.59C7.55,4.28,8.68,3.5,10,3.5c1.62,0,2.96,1.19,3.21,2.74 L13.4,7.5h1.1c1.1,0,2,0.9,2,2C16.5,10.6,15.6,11.5,14.5,11.5z\\\"></path><polygon points=\\\"12.55,14 10.06,16.68 11.84,17.7 9.87,20 11.84,20 14.16,17.3 12.44,16.32 14.6,14\\\"></polygon><polygon points=\\\"7.55,14 5.06,16.68 6.84,17.7 4.87,20 6.84,20 9.16,17.3 7.44,16.32 9.6,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_football\": {\n    \"name\": \"sports_football\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.26,5c-0.35,0-0.8,0.01-1.33,0.06l4.03,4.03c0.14-1.63,0.01-3.07-0.17-3.86C18.28,5.12,17.4,5,16.26,5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.21,18.77C5.72,18.88,6.6,19,7.74,19c0.34,0,0.79-0.01,1.3-0.05l-4.01-4.01 C4.91,16.56,5.03,17.98,5.21,18.77z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.87,7.87c-1.28,1.28-2.03,2.97-2.45,4.65l6.04,6.04c1.6-0.39,3.33-1.11,4.66-2.44 c1.28-1.28,2.03-2.95,2.44-4.63l-6.05-6.05C10.92,5.83,9.2,6.55,7.87,7.87z M15.5,9.9l-5.6,5.6l-1.4-1.4l5.6-5.6L15.5,9.9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.31,3.69C19.99,3.36,18.37,3,16.26,3c-3.03,0-7.09,0.75-9.8,3.46C1.87,11.05,2.9,19.52,3.69,20.31 C4.01,20.64,5.63,21,7.74,21c3.03,0,7.09-0.75,9.8-3.46C22.13,12.95,21.1,4.48,20.31,3.69z M7.74,19c-1.14,0-2.02-0.12-2.53-0.23 c-0.18-0.79-0.3-2.21-0.17-3.83l4.01,4.01C8.53,18.99,8.08,19,7.74,19z M16.13,16.13c-1.33,1.33-3.06,2.05-4.66,2.44l-6.04-6.04 c0.42-1.68,1.16-3.37,2.45-4.65c1.32-1.32,3.05-2.04,4.64-2.43l6.05,6.05C18.15,13.17,17.4,14.85,16.13,16.13z M18.96,9.09 l-4.03-4.03C15.45,5.01,15.91,5,16.26,5c1.14,0,2.02,0.12,2.53,0.23C18.97,6.02,19.09,7.45,18.96,9.09z\\\"></path><rect height=\\\"1.98\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.9706 12.0001)\\\" width=\\\"7.92\\\" x=\\\"8.04\\\" y=\\\"11.01\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.2,14.79C5.52,14.88,6.2,15,7.16,15c0.2,0,0.46-0.01,0.74-0.03L5.03,12.1 C4.95,13.31,5.07,14.33,5.2,14.79z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.84,5c-0.2,0-0.46,0.01-0.74,0.03l2.87,2.87c0.08-1.21-0.04-2.24-0.18-2.69C14.48,5.12,13.8,5,12.84,5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.01,7.01c-1.05,1.05-1.59,2.47-1.83,3.82l3.98,3.98c1.25-0.23,2.73-0.73,3.83-1.83 c1.05-1.05,1.59-2.47,1.83-3.82l-3.98-3.98C9.59,5.41,8.11,5.91,7.01,7.01z M12.47,8.23l-4.24,4.24l-0.71-0.71l4.24-4.24 L12.47,8.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.54,4.46C15.32,4.24,14.25,4,12.84,4c-2.02,0-4.73,0.5-6.53,2.31c-3.06,3.06-2.37,8.71-1.85,9.23 C4.68,15.76,5.75,16,7.16,16c2.02,0,4.73-0.5,6.53-2.31C16.75,10.63,16.07,4.99,15.54,4.46z M7.16,15c-0.96,0-1.64-0.12-1.96-0.21 c-0.14-0.46-0.26-1.48-0.18-2.69l2.87,2.87C7.62,14.99,7.36,15,7.16,15z M12.99,12.99c-1.1,1.1-2.58,1.6-3.83,1.83l-3.98-3.98 c0.25-1.36,0.79-2.78,1.83-3.82c1.1-1.1,2.58-1.6,3.83-1.83l3.98,3.98C14.57,10.52,14.03,11.94,12.99,12.99z M14.97,7.9L12.1,5.03 C12.38,5.01,12.64,5,12.84,5c0.96,0,1.64,0.12,1.96,0.21C14.93,5.67,15.05,6.69,14.97,7.9z\\\"></path><rect height=\\\"1\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.1421 10)\\\" width=\\\"6\\\" x=\\\"7\\\" y=\\\"9.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"luggage\": {\n    \"name\": \"luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M7,8v11h10V8H7z M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z\\\"></path></g><g><path d=\\\"M9.5,18H8V9h1.5V18z M12.75,18h-1.5V9h1.5V18z M16,18h-1.5V9H16V18z M17,6h-2V3c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3 H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1s1-0.45,1-1h6c0,0.55,0.45,1,1,1s1-0.45,1-1c1.1,0,2-0.9,2-2V8 C19,6.9,18.1,6,17,6z M10.5,3.5h3V6h-3V3.5z M17,19H7V8h10V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vaccines\": {\n    \"name\": \"vaccines\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,17h-4v-1.5h4V17z M9,7.5H5V15h4l0-1.5H7.25c-0.41,0-0.75-0.34-0.75-0.75C6.5,12.34,6.84,12,7.25,12H9 v-1.5H7.25c-0.41,0-0.75-0.34-0.75-0.75C6.5,9.34,6.84,9,7.25,9H9V7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,5.5H8V4h0.5c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1H6v1.5H3c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1V15c0,1.1,0.9,2,2,2h1v4l2,1.5V17h1c1.1,0,2-0.9,2-2V7.5c0.55,0,1-0.45,1-1C12,5.95,11.55,5.5,11,5.5z M9,9H7.25 C6.84,9,6.5,9.34,6.5,9.75c0,0.41,0.34,0.75,0.75,0.75H9V12H7.25c-0.41,0-0.75,0.34-0.75,0.75c0,0.41,0.34,0.75,0.75,0.75H9L9,15H5 V7.5h4V9z M19.5,10.5V10c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1h-5c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1v0.5c0,0.5-1.5,1.16-1.5,3V20 c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-6.5C21,11.66,19.5,11,19.5,10.5z M16.5,10.5V10h1v0.5c0,1.6,1.5,2,1.5,3V14h-4 c0-0.21,0-0.39,0-0.5C15,12.5,16.5,12.1,16.5,10.5z M19,15.5V17h-4c0-0.51,0-1.02,0-1.5H19z M15,20c0,0,0-0.63,0-1.5h4V20H15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,14H12v-1h3.5V14z M6,10.5C6,10.78,6.22,11,6.5,11H8v1.5H4.5v-6H8V8H6.5C6.22,8,6,8.22,6,8.5 C6,8.78,6.22,9,6.5,9H8v1H6.5C6.22,10,6,10.22,6,10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.75,9V8.5c0.41,0,0.75-0.34,0.75-0.75C16.5,7.34,16.16,7,15.75,7h-4C11.34,7,11,7.34,11,7.75c0,0.41,0.34,0.75,0.75,0.75 V9c0,0-1.25,1-1.25,2.5v5c0,0.83,0.67,1.5,1.5,1.5h3.5c0.83,0,1.5-0.67,1.5-1.5v-5.25C17,10,15.75,9,15.75,9z M15.5,16.5H12V15h3.5 V16.5z M15.5,14H12v-1h3.5V14z M15.5,12H12v-0.5c0-1.13,1.25-1.25,1.25-2.5V8.5h1V9c0,1.25,1.25,1.37,1.25,2.5V12z M6,10.5 C6,10.78,6.22,11,6.5,11H8v1.5H4.5v-6H8V8H6.5C6.22,8,6,8.22,6,8.5C6,8.78,6.22,9,6.5,9H8v1H6.5C6.22,10,6,10.22,6,10.5z M2.25,5.75 C2.25,6.16,2.59,6.5,3,6.5l0,6C3,13.33,3.67,14,4.5,14h1v3L7,18.5V14h1c0.83,0,1.5-0.67,1.5-1.5l0-6c0.41,0,0.75-0.34,0.75-0.75 C10.25,5.34,9.91,5,9.5,5H7V3.5h0.5c0.41,0,0.75-0.34,0.75-0.75C8.25,2.34,7.91,2,7.5,2H5C4.59,2,4.25,2.34,4.25,2.75 C4.25,3.16,4.59,3.5,5,3.5h0.5V5H3C2.59,5,2.25,5.34,2.25,5.75z\\\"></path>\"\n      }\n    }\n  },\n  \"boy\": {\n    \"name\": \"boy\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,7.5c0.97,0,1.75-0.78,1.75-1.75S12.97,4,12,4s-1.75,0.78-1.75,1.75S11.03,7.5,12,7.5z M14,20v-5h1v-4.5 c0-1.1-0.9-2-2-2h-2c-1.1,0-2,0.9-2,2V15h1v5H14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12.5,12.5h-1V16h-3v-3.5h-1V9c0-0.83,0.67-1.5,1.5-1.5h2c0.83,0,1.5,0.67,1.5,1.5V12.5z M10,6.5 c0.69,0,1.25-0.56,1.25-1.25S10.69,4,10,4S8.75,4.56,8.75,5.25S9.31,6.5,10,6.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"landslide\": {\n    \"name\": \"landslide\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"8.57,12.09 7,10 4,10 4,12.28 6,12.95\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"12.53,14.77 9.95,13.74 6,15.05 4,14.39 4,16.28 6,16.95\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"15,4.65 15,2.64 12.42,2.12 11,3.07 11,4.93 12.23,5.75\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"6,19.05 4,18.39 4,20 18,20 15.03,16.04\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"18,9.96 18,11.04 18.8,11.68 21,10.7 21,9.6 19,9.16\\\"></polygon><path d=\\\"M11,12L8,8H2v14h20l-6-8L11,12z M4,10h3l1.57,2.09L6,12.95l-2-0.67V10z M4,14.39l2,0.67l3.95-1.32l2.58,1.03L6,16.95 l-2-0.67V14.39z M4,20v-1.61l2,0.67l9.03-3.01L18,20H4z\\\"></path><path d=\\\"M17,6V1l-5-1L9,2v4l3,2L17,6z M11,3.07l1.42-0.95L15,2.64v2.01l-2.77,1.11L11,4.93V3.07z\\\"></path><path d=\\\"M18.5,7L16,9v3l2.5,2l4.5-2V8L18.5,7z M21,10.7l-2.2,0.98L18,11.04V9.96l1-0.8l2,0.44V10.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"10.44,12.4 8.21,11.28 4.94,12.31 3.5,11.59 3.5,13.41 5.06,14.19\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"7.21,10.02 6.2,8.5 3.5,8.5 3.5,9.91 5.06,10.69\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"12.5,4.07 12.5,2.17 10.28,1.62 8.5,2.8 8.5,4.2 10.11,5.27\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"4.94,15.81 3.5,15.09 3.5,16.5 14.8,16.5 12.21,13.39\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"14.5,8.25 14.5,9.38 15.3,10.17 17.5,9.07 17.5,8.17 15.33,7.63\\\"></polygon><path d=\\\"M9,10L7,7H2v11h16l-5-6L9,10z M3.5,8.5h2.7l1.02,1.52l-2.15,0.67L3.5,9.91V8.5z M3.5,11.59l1.44,0.72l3.28-1.02l2.23,1.11 l-5.38,1.79L3.5,13.41V11.59z M3.5,16.5v-1.41l1.44,0.72l7.26-2.42l2.59,3.11H3.5z\\\"></path><path d=\\\"M14,5V1l-4-1L7,2v3l3,2L14,5z M8.5,2.8l1.78-1.19l2.22,0.55v1.9l-2.39,1.2L8.5,4.2V2.8z\\\"></path><path d=\\\"M15,6l-2,1.5V10l2,2l4-2V7L15,6z M17.5,9.07l-2.2,1.1l-0.8-0.8V8.25l0.83-0.62l2.17,0.54V9.07z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"back_hand\": {\n    \"name\": \"back_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,16c0,3.31-2.69,6-6,6h0c-2.61,0-4.95-1.59-5.91-4.01l-2.6-6.54l0.53,0.14c0.46,0.12,0.83,0.46,1,0.9L7,15 h2V4.5C9,4.22,9.22,4,9.5,4S10,4.22,10,4.5V12h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V12h2V4c0-0.28,0.22-0.5,0.5-0.5 S16,3.72,16,4v8h2V7c0-0.28,0.22-0.5,0.5-0.5S19,6.72,19,7L19,16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,7c0-1.38-1.12-2.5-2.5-2.5c-0.17,0-0.34,0.02-0.5,0.05V4c0-1.38-1.12-2.5-2.5-2.5c-0.23,0-0.46,0.03-0.67,0.09 C14.46,0.66,13.56,0,12.5,0c-1.23,0-2.25,0.89-2.46,2.06C9.87,2.02,9.69,2,9.5,2C8.12,2,7,3.12,7,4.5v5.89 c-0.34-0.31-0.76-0.54-1.22-0.66L5.01,9.52c-0.83-0.23-1.7,0.09-2.19,0.83c-0.38,0.57-0.4,1.31-0.15,1.95l2.56,6.43 C6.49,21.91,9.57,24,13,24h0c4.42,0,8-3.58,8-8V7z M19,16c0,3.31-2.69,6-6,6h0c-2.61,0-4.95-1.59-5.91-4.01l-2.6-6.54l0.53,0.14 c0.46,0.12,0.83,0.46,1,0.9L7,15h2V4.5C9,4.22,9.22,4,9.5,4S10,4.22,10,4.5V12h2V2.5C12,2.22,12.22,2,12.5,2S13,2.22,13,2.5V12h2V4 c0-0.28,0.22-0.5,0.5-0.5S16,3.72,16,4v8h2V7c0-0.28,0.22-0.5,0.5-0.5S19,6.72,19,7L19,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,13.5c0,2.76-2.24,5-5,5c-2.24,0-4.25-1.37-5.07-3.46L3.76,9.51l0.8,0.28c0.27,0.1,0.49,0.31,0.6,0.58 L6,12.5h1.5v-9C7.5,3.22,7.72,3,8,3s0.5,0.22,0.5,0.5V10H10V2c0-0.28,0.22-0.5,0.5-0.5S11,1.72,11,2v8h1.5V3.25 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V10H15V6c0-0.28,0.22-0.5,0.5-0.5S16,5.72,16,6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,4c-0.17,0-0.34,0.02-0.5,0.06V3.25c0-1.1-0.9-2-2-2c-0.21,0-0.42,0.03-0.61,0.09C12.12,0.56,11.38,0,10.5,0 C9.54,0,8.74,0.67,8.55,1.58C8.37,1.53,8.19,1.5,8,1.5c-1.1,0-2,0.9-2,2v5.4C5.79,8.7,5.55,8.55,5.27,8.45L4.24,8.09 C4.07,8.03,3.9,8,3.73,8c-1,0-1.79,1.03-1.39,2.05l2.18,5.54C5.57,18.25,8.14,20,11,20c3.59,0,6.5-2.91,6.5-6.5V6 C17.5,4.9,16.6,4,15.5,4z M16,13.5c0,2.76-2.24,5-5,5c-2.24,0-4.25-1.37-5.07-3.46L3.76,9.51l0.8,0.28c0.27,0.1,0.49,0.31,0.6,0.58 L6,12.5h1.5v-9C7.5,3.22,7.72,3,8,3s0.5,0.22,0.5,0.5V10H10V2c0-0.28,0.22-0.5,0.5-0.5S11,1.72,11,2v8h1.5V3.25 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V10H15V6c0-0.28,0.22-0.5,0.5-0.5S16,5.72,16,6V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"woman_2\": {\n    \"name\": \"woman_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M13.94,8.31C13.62,7.52,12.85,7,12,7s-1.62,0.52-1.94,1.31L7,16h3.5v6h3v-6H17L13.94,8.31z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6,14h3v4h2v-4h3L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"6_ft_apart\": {\n    \"name\": \"6_ft_apart\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M10,9.43c0-0.81-0.48-1.53-1.22-1.85C7.93,7.21,6.99,7,6,7 C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h8V9.43z M18,6c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S16.9,6,18,6z M22,9.43 c0-0.81-0.48-1.53-1.22-1.85C19.93,7.21,18.99,7,18,7c-0.99,0-1.93,0.21-2.78,0.58C14.48,7.9,14,8.62,14,9.43V10h8V9.43z M19,17 v-2.01L5,15v2l-3-3l3-3v2.01L19,13v-2l3,3L19,17z M10,19v-1H7.5C7.22,18,7,18.22,7,18.5v3C7,21.78,7.22,22,7.5,22h2 c0.28,0,0.5-0.22,0.5-0.5V20c0-0.28-0.22-0.5-0.5-0.5H8V19H10z M9,20.5V21H8v-0.5H9z M17.5,19h-1v3h-1v-3h-1v-1h3V19z M12.5,19v0.5 h1v1h-1V22h-1v-4H14v1H12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fitbit\": {\n    \"name\": \"fitbit\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.89,13.89c1.04,0,1.89-0.85,1.89-1.89s-0.85-1.89-1.89-1.89C18.85,10.11,18,10.96,18,12S18.85,13.89,19.89,13.89z M15.65,13.68c0.93,0,1.68-0.75,1.68-1.68s-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68S14.72,13.68,15.65,13.68z M15.65,9.42 c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68C13.97,8.67,14.72,9.42,15.65,9.42z M15.65,17.93c0.93,0,1.68-0.75,1.68-1.68c0-0.93-0.75-1.68-1.68-1.68c-0.93,0-1.68,0.75-1.68,1.68 C13.97,17.17,14.72,17.93,15.65,17.93z M11.41,13.47c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,13.47,11.41,13.47z M11.41,9.21c0.81,0,1.47-0.66,1.47-1.47s-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 S10.59,9.21,11.41,9.21z M11.41,17.73c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47c-0.81,0-1.47,0.66-1.47,1.47 C9.93,17.07,10.59,17.73,11.41,17.73z M11.41,22c0.81,0,1.47-0.66,1.47-1.47c0-0.81-0.66-1.47-1.47-1.47 c-0.81,0-1.47,0.66-1.47,1.47C9.93,21.34,10.59,22,11.41,22z M11.41,4.94c0.81,0,1.47-0.66,1.47-1.47S12.22,2,11.41,2 c-0.81,0-1.47,0.66-1.47,1.47S10.59,4.94,11.41,4.94z M7.16,13.26c0.7,0,1.26-0.57,1.26-1.26s-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26S6.46,13.26,7.16,13.26z M7.16,17.51c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,16.94,6.46,17.51,7.16,17.51z M7.16,9.02c0.7,0,1.26-0.57,1.26-1.26c0-0.7-0.57-1.26-1.26-1.26 c-0.7,0-1.26,0.57-1.26,1.26C5.9,8.45,6.46,9.02,7.16,9.02z M3.29,13.05c0.58,0,1.05-0.47,1.05-1.05s-0.47-1.05-1.05-1.05 c-0.58,0-1.05,0.47-1.05,1.05S2.71,13.05,3.29,13.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.31,11.51c0.83,0,1.51-0.68,1.51-1.51s-0.68-1.51-1.51-1.51c-0.83,0-1.51,0.68-1.51,1.51S15.48,11.51,16.31,11.51z M12.92,11.34c0.74,0,1.34-0.6,1.34-1.34s-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34S12.18,11.34,12.92,11.34z M12.92,7.94 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,7.33,12.18,7.94,12.92,7.94z M12.92,14.74 c0.74,0,1.34-0.6,1.34-1.34c0-0.74-0.6-1.34-1.34-1.34s-1.34,0.6-1.34,1.34C11.58,14.14,12.18,14.74,12.92,14.74z M9.52,11.18 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,11.18,9.52,11.18z M9.52,7.77 c0.65,0,1.18-0.53,1.18-1.18s-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18S8.87,7.77,9.52,7.77z M9.52,14.59 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,14.06,8.87,14.59,9.52,14.59z M9.52,18 c0.65,0,1.18-0.53,1.18-1.18c0-0.65-0.53-1.18-1.18-1.18c-0.65,0-1.18,0.53-1.18,1.18C8.35,17.47,8.87,18,9.52,18z M9.52,4.36 c0.65,0,1.18-0.53,1.18-1.18S10.17,2,9.52,2C8.87,2,8.35,2.53,8.35,3.18S8.87,4.36,9.52,4.36z M6.13,11.01 c0.56,0,1.01-0.45,1.01-1.01S6.69,8.99,6.13,8.99c-0.56,0-1.01,0.45-1.01,1.01S5.57,11.01,6.13,11.01z M6.13,14.41 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,13.95,5.57,14.41,6.13,14.41z M6.13,7.61 c0.56,0,1.01-0.45,1.01-1.01c0-0.56-0.45-1.01-1.01-1.01c-0.56,0-1.01,0.45-1.01,1.01C5.12,7.16,5.57,7.61,6.13,7.61z M3.04,10.84 c0.46,0,0.84-0.38,0.84-0.84S3.5,9.16,3.04,9.16C2.57,9.16,2.2,9.54,2.2,10S2.57,10.84,3.04,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"precision_manufacturing\": {\n    \"name\": \"precision_manufacturing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"6.71,10 9.17,18 11.11,18 6.81,10\\\"></polygon><circle cx=\\\"6\\\" cy=\\\"7\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M19.93,8.35l-3.6,1.68L14,7.7V6.3l2.33-2.33l3.6,1.68c0.38,0.18,0.82,0.01,1-0.36c0.18-0.38,0.01-0.82-0.36-1l-3.92-1.83 c-0.38-0.18-0.83-0.1-1.13,0.2L13.78,4.4C13.6,4.16,13.32,4,13,4c-0.55,0-1,0.45-1,1v1H8.82C8.4,4.84,7.3,4,6,4C4.34,4,3,5.34,3,7 c0,1.1,0.6,2.05,1.48,2.58L7.08,18H6c-1.1,0-2,0.9-2,2v1h13v-1c0-1.1-0.9-2-2-2h-1.62L8.41,8.77C8.58,8.53,8.72,8.28,8.82,8H12v1 c0,0.55,0.45,1,1,1c0.32,0,0.6-0.16,0.78-0.4l1.74,1.74c0.3,0.3,0.75,0.38,1.13,0.2l3.92-1.83c0.38-0.18,0.54-0.62,0.36-1 C20.75,8.34,20.31,8.17,19.93,8.35z M6,8C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M11.11,18H9.17 l-2.46-8h0.1L11.11,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"6\\\" cy=\\\"7\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><polygon opacity=\\\".3\\\" points=\\\"6.65,9.28 7.82,14 9.38,14 6.69,9.28\\\"></polygon><path d=\\\"M15.29,7.78l-2.4,1.12L11,7.01V6.99l1.89-1.89l2.4,1.12c0.25,0.12,0.55,0.01,0.66-0.24c0.12-0.25,0.01-0.55-0.24-0.66 l-2.72-1.27C12.8,3.96,12.58,4,12.43,4.15L11,5.57V5.5C11,5.22,10.78,5,10.5,5S10,5.22,10,5.5v1H7.93c-0.26-1-1.27-1.71-2.4-1.45 C4.8,5.22,4.21,5.82,4.05,6.54C3.83,7.56,4.37,8.47,5.21,8.84L6.5,14H6c-0.55,0-1,0.45-1,1v1h8v-1c0-0.55-0.45-1-1-1h-1.14 L7.56,8.23C7.73,8.02,7.86,7.77,7.93,7.5H10v1C10,8.78,10.22,9,10.5,9S11,8.78,11,8.5V8.43l1.43,1.43 c0.15,0.15,0.37,0.19,0.56,0.1l2.72-1.27c0.25-0.12,0.36-0.41,0.24-0.66C15.84,7.77,15.54,7.66,15.29,7.78z M6,8 C5.45,8,5,7.55,5,7c0-0.55,0.45-1,1-1s1,0.45,1,1C7,7.55,6.55,8,6,8z M9.38,14H7.82L6.65,9.28h0.04L9.38,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"king_bed\": {\n    \"name\": \"king_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"12\\\"></rect><path d=\\\"M20,10V7c0-1.1-0.9-2-2-2H6C4.9,5,4,5.9,4,7v3c-1.1,0-2,0.9-2,2v5h1.33L4,19h1l0.67-2h12.67L19,19h1l0.67-2H22v-5 C22,10.9,21.1,10,20,10z M13,7h5v3h-5V7z M6,7h5v3H6V7z M20,15H4v-3h16V15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><path d=\\\"M16,8V6c0-0.55-0.45-1-1-1H5C4.45,5,4,5.45,4,6v2C3.45,8,3,8.45,3,9v4h1l0.75,2h0.5L6,13h8l0.75,2h0.5L16,13h1V9 C17,8.45,16.55,8,16,8z M10.5,6H15v2h-4.5V6z M5,6h4.5v2H5V6z M16,12H4V9h12V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"reduce_capacity\": {\n    \"name\": \"reduce_capacity\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S16,5.1,16,4z M20.78,7.58C19.93,7.21,18.99,7,18,7c-0.67,0-1.31,0.1-1.92,0.28 C16.66,7.83,17,8.6,17,9.43V10h5V9.43C22,8.62,21.52,7.9,20.78,7.58z M6,6c1.1,0,2-0.9,2-2S7.1,2,6,2S4,2.9,4,4S4.9,6,6,6z M7.92,7.28C7.31,7.1,6.67,7,6,7C5.01,7,4.07,7.21,3.22,7.58C2.48,7.9,2,8.62,2,9.43V10h5V9.43C7,8.6,7.34,7.83,7.92,7.28z M10,4 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M16,10H8V9.43C8,8.62,8.48,7.9,9.22,7.58C10.07,7.21,11.01,7,12,7 c0.99,0,1.93,0.21,2.78,0.58C15.52,7.9,16,8.62,16,9.43V10z M15,16c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S15,17.1,15,16z M21,22h-8 v-0.57c0-0.81,0.48-1.53,1.22-1.85C15.07,19.21,16.01,19,17,19c0.99,0,1.93,0.21,2.78,0.58C20.52,19.9,21,20.62,21,21.43V22z M5,16 c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S5,17.1,5,16z M11,22H3v-0.57c0-0.81,0.48-1.53,1.22-1.85C5.07,19.21,6.01,19,7,19 c0.99,0,1.93,0.21,2.78,0.58C10.52,19.9,11,20.62,11,21.43V22z M12.75,13v-2h-1.5v2H9l3,3l3-3H12.75z\\\"></path>\"\n      }\n    }\n  },\n  \"face_3\": {\n    \"name\": \"face_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.5,8c0.73,0,1.41-0.25,1.99-0.65C17.22,5.58,15.26,4.35,13,4.07V4.5C13,6.43,14.57,8,16.5,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,4.5V4.07C8.74,4.35,6.78,5.58,5.51,7.35C6.09,7.75,6.77,8,7.5,8C9.43,8,11,6.43,11,4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.75,15.8L2.19,22H12C7.82,22,4.25,19.44,2.75,15.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,22h9.81l-0.56-6.2C19.75,19.44,16.18,22,12,22z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><path d=\\\"M22.91,11.96C22.39,6.32,17.66,2,12,2S1.61,6.32,1.09,11.96l-0.9,9.86C0.09,22.99,1.01,24,2.19,24h19.62 c1.18,0,2.1-1.01,1.99-2.18L22.91,11.96z M13,4.07c2.26,0.28,4.22,1.51,5.49,3.28C17.91,7.75,17.23,8,16.5,8 C14.57,8,13,6.43,13,4.5V4.07z M11,4.07V4.5C11,6.43,9.43,8,7.5,8C6.77,8,6.09,7.75,5.51,7.35C6.78,5.58,8.74,4.35,11,4.07z M4.54,9.13C5.41,9.68,6.43,10,7.5,10C9.36,10,11,9.07,12,7.65C13,9.07,14.64,10,16.5,10c1.07,0,2.09-0.32,2.96-0.87 C19.8,10.02,20,10.99,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8C4,10.99,4.2,10.02,4.54,9.13z M12,22H2.19l0.56-6.2 C4.25,19.44,7.82,22,12,22s7.75-2.56,9.25-6.2l0.56,6.2H12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.25,4.07V3.55C7.31,3.77,5.62,4.85,4.59,6.41C5.08,6.78,5.68,7,6.32,7C7.94,7,9.25,5.68,9.25,4.07z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.68,7c0.64,0,1.23-0.22,1.73-0.59c-1.03-1.55-2.72-2.64-4.66-2.86v0.52C10.75,5.68,12.06,7,13.68,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,18c-3.59,0-6.63-2.37-7.64-5.63L1.68,18.5h16.65l-0.68-6.13C16.63,15.63,13.59,18,10,18z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M19.81,18.33l-0.93-8.38C18.38,5.42,14.55,2,10,2C5.45,2,1.62,5.42,1.12,9.95l-0.93,8.38C0.09,19.22,0.78,20,1.68,20 h16.65C19.22,20,19.91,19.22,19.81,18.33z M10.75,3.55c1.94,0.22,3.63,1.31,4.66,2.86C14.92,6.78,14.32,7,13.68,7 c-1.62,0-2.93-1.32-2.93-2.93V3.55z M9.25,3.55v0.52C9.25,5.68,7.94,7,6.32,7C5.68,7,5.08,6.78,4.59,6.41 C5.62,4.85,7.31,3.77,9.25,3.55z M3.9,7.78C4.61,8.24,5.44,8.5,6.32,8.5C7.85,8.5,9.2,7.72,10,6.53c0.8,1.19,2.15,1.97,3.68,1.97 c0.87,0,1.71-0.26,2.42-0.72c0.25,0.7,0.4,1.44,0.4,2.22c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10C3.5,9.22,3.65,8.47,3.9,7.78z M1.68,18.5l0.68-6.13C3.37,15.63,6.41,18,10,18s6.63-2.37,7.64-5.63l0.68,6.13H1.68z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public\": {\n    \"name\": \"public\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.99 4.59V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1h-2v2h6c.55 0 1 .45 1 1v3h1c.89 0 1.64.59 1.9 1.4C19.19 15.98 20 14.08 20 12c0-3.35-2.08-6.23-5.01-7.41zM8.99 16v-1l-4.78-4.78C4.08 10.79 4 11.39 4 12c0 4.07 3.06 7.43 6.99 7.93V18c-1.1 0-2-.9-2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1.01 17.93C7.06 19.43 4 16.07 4 12c0-.61.08-1.21.21-1.78L8.99 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.53c-.26-.81-1-1.4-1.9-1.4h-1v-3c0-.55-.45-1-1-1h-6v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41C17.92 5.77 20 8.65 20 12c0 2.08-.81 3.98-2.11 5.4z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_volleyball\": {\n    \"name\": \"sports_volleyball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,6.73C4.76,8.14,4,9.98,4,12c0,1.1,0.23,2.14,0.63,3.1L6,14.31V6.73z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,4.08c-0.25,0.06-1.98,0.42-3,1.01v8.07l3-1.73V4.08z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,4.07v1.58l6.54,3.79C18.57,6.59,16.07,4.45,13,4.07z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,13.15l-6.36,3.67c0.64,0.85,1.46,1.55,2.38,2.09L15,14.89L12,13.15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,7.96v3.46l6.37,3.68c0.4-0.95,0.63-1.99,0.63-3.09L13,7.96z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.42,19.84C10.93,19.94,11.46,20,12,20c2.6,0,4.9-1.25,6.36-3.17L17,16.04L10.42,19.84z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,4.07 c3.07,0.38,5.57,2.52,6.54,5.36L13,5.65V4.07z M8,5.08c1.02-0.59,2.75-0.95,3-1.01v7.35l-3,1.73V5.08z M4.63,15.1 C4.23,14.14,4,13.1,4,12c0-2.02,0.76-3.86,2-5.27v7.58L4.63,15.1z M5.64,16.83L12,13.15l3,1.73l-6.98,4.03 C7.09,18.38,6.28,17.68,5.64,16.83z M12,20c-0.54,0-1.07-0.06-1.58-0.16l6.58-3.8l1.36,0.78C16.9,18.75,14.6,20,12,20z M13,11.42 V7.96l7,4.05c0,1.1-0.23,2.14-0.63,3.09L13,11.42z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.5,4.03C8.6,4.11,7.75,4.38,7,4.81v6.34l2.5-1.44V4.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.5,4.04v1.62l5.37,3.11C15.34,6.21,13.16,4.27,10.5,4.04z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,10.58l-4.92,2.84c0.51,0.73,1.17,1.32,1.94,1.77l5.48-3.17L10,10.58z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,5.55C4.78,6.65,4,8.23,4,10c0,0.91,0.21,1.78,0.58,2.55L6,11.73V5.55z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.13,15.7C8.72,15.89,9.35,16,10,16c2.04,0,3.84-1.02,4.92-2.58L13.5,12.6L8.13,15.7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.5,6.82v2.89l4.92,2.84c0.37-0.77,0.58-1.64,0.58-2.55L10.5,6.82z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,4.04 c2.66,0.22,4.84,2.17,5.37,4.73L10.5,5.67V4.04z M7,4.81c0.75-0.43,1.6-0.7,2.5-0.78v5.68L7,11.15V4.81z M4.58,12.55 C4.21,11.78,4,10.91,4,10c0-1.77,0.78-3.35,2-4.45v6.18L4.58,12.55z M5.08,13.42L10,10.58l2.5,1.44l-5.48,3.17 C6.25,14.74,5.58,14.15,5.08,13.42z M10,16c-0.65,0-1.28-0.11-1.87-0.3l5.37-3.1l1.42,0.82C13.84,14.98,12.04,16,10,16z M10.5,9.71V6.82l5.5,3.18c0,0.91-0.21,1.77-0.58,2.55L10.5,9.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kayaking\": {\n    \"name\": \"kayaking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M12,5.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,5.5,12,5.5z M24,17.5c0,0-1.52,0.71-3.93,1.37c-0.82-0.23-1.53-0.75-2.07-1.37c-0.73,0.84-1.8,1.5-3,1.5 s-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5s-2.27-0.66-3-1.5c-0.54,0.61-1.25,1.13-2.07,1.37C1.52,18.21,0,17.5,0,17.5 s2.93-1.36,7.13-2.08l1.35-4.17c0.31-0.95,1.32-1.47,2.27-1.16c0.09,0.03,0.19,0.07,0.27,0.11l0,0l2.47,1.3l2.84-1.5l1.65-3.71 l-0.51-1.32L18.8,2L22,3.43L20.67,6.4l-1.31,0.5l-3.72,8.34C20.49,15.87,24,17.5,24,17.5z M15.02,12.96l-1.52,0.8l-1.75-0.92 l-0.71,2.17C11.36,15.01,11.68,15,12,15c0.71,0,1.4,0.03,2.07,0.08L15.02,12.96z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,6.25C11.5,7.22,10.72,8,9.75,8S8,7.22,8,6.25S8.78,4.5,9.75,4.5S11.5,5.28,11.5,6.25z M18,17.5h-0.5 c-0.87,0-1.74-0.33-2.5-1h0c-1.52,1.33-3.47,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18L18,17.5z M20,14.5 c0,0-1.43,0.64-3.67,1.19c-0.52-0.27-0.97-0.7-1.33-1.19c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 S5.61,15.34,5,14.5c-0.36,0.49-0.81,0.92-1.33,1.19C1.43,15.14,0,14.5,0,14.5s2.47-1.1,6-1.67l1.07-3.29 c0.26-0.79,1.1-1.22,1.89-0.96C9.05,8.6,9.13,8.64,9.2,8.68l2,1.12l2.44-1.3l1.33-3L14.6,4.51L15.72,2L18,3.02l-1.12,2.51L15.89,5.9 l-3.01,6.77C17,13.16,20,14.5,20,14.5z M12.65,10.72l-1.46,0.8l-1.36-0.77l-0.57,1.77C9.5,12.51,9.75,12.5,10,12.5 c0.63,0,1.24,0.02,1.83,0.07L12.65,10.72z\\\"></path>\"\n      }\n    }\n  },\n  \"man_2\": {\n    \"name\": \"man_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2.5v7h3v-7H16V9C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h2v5h2v-5h2V8.5C13,7.67,12.33,7,11.5,7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"severe_cold\": {\n    \"name\": \"severe_cold\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12,10.41 16,6.41 14.59,5 12,7.59 12,4 10,4 10,7.59 7.41,5 6,6.41 10,10.41 10,12 8.41,12 4.41,8 3,9.41 5.59,12 2,12 2,14 5.59,14 3,16.59 4.41,18 8.41,14 10,14 10,15.59 6,19.59 7.41,21 10,18.41 10,22 12,22 12,18.41 14.59,21 16,19.59 12,15.59 12,14 13.59,14 17.59,18 19,16.59 16.41,14 20,14 20,12 12,12\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"9.75,8.81 13,5.56 11.94,4.5 9.75,6.69 9.75,4 8.25,4 8.25,6.69 6.06,4.5 5,5.56 8.25,8.81 8.25,10.25 6.81,10.25 3.56,7 2.5,8.06 4.69,10.25 2,10.25 2,11.75 4.69,11.75 2.5,13.94 3.56,15 6.81,11.75 8.25,11.75 8.25,13.19 5,16.44 6.06,17.5 8.25,15.31 8.25,18 9.75,18 9.75,15.31 11.94,17.5 13,16.44 9.75,13.19 9.75,11.75 11.19,11.75 14.44,15 15.5,13.94 13.31,11.75 16,11.75 16,10.25 9.75,10.25\\\"></polygon><rect height=\\\"4\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"2\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15.5\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"location_city\": {\n    \"name\": \"location_city\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_soccer\": {\n    \"name\": \"sports_soccer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M7.01,9.49L11,6.7V5.3L9.65,4.35C7.83,4.92,6.28,6.12,5.27,7.69l0.39,1.34L7.01,9.49z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M5.01,10.92l-1,0.73C4.01,11.77,4,11.88,4,12c0,1.99,0.73,3.81,1.94,5.21l1.14-0.1l0.79-1.37L6.4,11.4L5.01,10.92z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M18.34,9.03l0.39-1.34c-1.01-1.57-2.55-2.77-4.38-3.34L13,5.3v1.4l3.99,2.79L18.34,9.03z\\\"></path></g><g opacity=\\\".3\\\"><polygon points=\\\"8.37,10.98 9.73,15 14.27,15 15.63,10.98 12,8.44\\\"></polygon></g><g opacity=\\\".3\\\"><path d=\\\"M9.45,17l-0.64,1.11l0.69,1.49C10.29,19.85,11.13,20,12,20s1.71-0.15,2.5-0.41l0.69-1.49L14.55,17H9.45z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M19.98,11.65l-1-0.73L17.6,11.4l-1.46,4.34l0.79,1.37l1.14,0.1C19.27,15.81,20,13.99,20,12 C20,11.88,19.99,11.77,19.98,11.65z\\\"></path></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M13,5.3l1.35-0.95 c1.82,0.56,3.37,1.76,4.38,3.34l-0.39,1.34l-1.35,0.46L13,6.7V5.3z M9.65,4.35L11,5.3v1.4L7.01,9.49L5.66,9.03L5.27,7.69 C6.28,6.12,7.83,4.92,9.65,4.35z M7.08,17.11l-1.14,0.1C4.73,15.81,4,13.99,4,12c0-0.12,0.01-0.23,0.02-0.35l1-0.73L6.4,11.4 l1.46,4.34L7.08,17.11z M14.5,19.59C13.71,19.85,12.87,20,12,20s-1.71-0.15-2.5-0.41l-0.69-1.49L9.45,17h5.11l0.64,1.11 L14.5,19.59z M14.27,15H9.73l-1.35-4.02L12,8.44l3.63,2.54L14.27,15z M18.06,17.21l-1.14-0.1l-0.79-1.37l1.46-4.34l1.39-0.47 l1,0.73C19.99,11.77,20,11.88,20,12C20,13.99,19.27,15.81,18.06,17.21z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M6.31,8.39L9.5,6.15v-0.7L7.95,4.37C6.82,4.78,5.84,5.53,5.15,6.49l0.48,1.67L6.31,8.39z\\\"></path></g><g opacity=\\\".3\\\"><polygon points=\\\"8.12,12.5 11.88,12.5 13.01,9.13 10,7.02 6.99,9.13\\\"></polygon></g><g opacity=\\\".3\\\"><path d=\\\"M14.37,8.15l0.48-1.67c-0.7-0.96-1.67-1.71-2.81-2.12L10.5,5.45v0.7l3.19,2.24L14.37,8.15z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M5.31,9.1L4,10.06c0.01,1.37,0.49,2.63,1.27,3.63l1.52-0.13l0.4-0.68L6,9.34L5.31,9.1z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M14.69,9.1L14,9.34l-1.19,3.53l0.4,0.68l1.52,0.13c0.79-1,1.26-2.26,1.27-3.63L14.69,9.1z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M7.98,13.5l-0.32,0.55l0.81,1.74c0.49,0.13,1,0.2,1.53,0.2s1.04-0.08,1.53-0.2l0.81-1.74l-0.32-0.55H7.98z\\\"></path></g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10.5,5.45l1.55-1.08 c1.14,0.41,2.11,1.16,2.81,2.12l-0.48,1.67l-0.68,0.23L10.5,6.15V5.45z M13.01,9.13l-1.14,3.37H8.12L6.99,9.13L10,7.02 L13.01,9.13z M7.95,4.37L9.5,5.45v0.7L6.31,8.39L5.63,8.15L5.15,6.49C5.84,5.53,6.82,4.78,7.95,4.37z M6.8,13.55l-1.52,0.13 c-0.79-1-1.26-2.26-1.27-3.63l1.3-0.95L6,9.34l1.19,3.53L6.8,13.55z M11.53,15.8c-0.49,0.13-1,0.2-1.53,0.2s-1.04-0.08-1.53-0.2 l-0.81-1.74l0.32-0.55h4.04l0.32,0.55L11.53,15.8z M14.72,13.69l-1.52-0.13l-0.4-0.68L14,9.34l0.69-0.24l1.3,0.95 C15.98,11.42,15.51,12.68,14.72,13.69z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"ios_share\": {\n    \"name\": \"ios_share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,8h-3v2h3v11H6V10h3V8H6c-1.11,0-2,0.89-2,2v11c0,1.1,0.89,2,2,2h12c1.1,0,2-0.9,2-2V10C20,8.89,19.1,8,18,8z\\\"></path><polygon points=\\\"11,16 13,16 13,5 16,5 12,1 8,5 11,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"self_improvement\": {\n    \"name\": \"self_improvement\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M21,16v-2c-2.24,0-4.16-0.96-5.6-2.68l-1.34-1.6C13.68,9.26,13.12,9,12.53,9h-1.05c-0.59,0-1.15,0.26-1.53,0.72l-1.34,1.6 C7.16,13.04,5.24,14,3,14v2c2.77,0,5.19-1.17,7-3.25V15l-3.88,1.55C5.45,16.82,5,17.48,5,18.21C5,19.2,5.8,20,6.79,20H9v-0.5 c0-1.38,1.12-2.5,2.5-2.5h3c0.28,0,0.5,0.22,0.5,0.5S14.78,18,14.5,18h-3c-0.83,0-1.5,0.67-1.5,1.5V20h7.21 C18.2,20,19,19.2,19,18.21c0-0.73-0.45-1.39-1.12-1.66L14,15v-2.25C15.81,14.83,18.23,16,21,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,12v-1c-1.67,0-3.28-0.85-4.11-2.16C11.55,8.29,10.91,8,10.27,8H9.73C9.09,8,8.45,8.29,8.11,8.84 C7.28,10.15,5.67,11,4,11v1c2,0,3.51-0.75,4.5-1.96v2.45l-2.77,1.19C5.29,13.88,5,14.31,5,14.79C5,15.46,5.54,16,6.21,16H8 c0,0,0-0.11,0-0.25C8,14.79,8.79,14,9.75,14h2c0.14,0,0.25,0.11,0.25,0.25s-0.11,0.25-0.25,0.25h-2c-0.69,0-1.25,0.56-1.25,1.25 c0,0.05,0,0.25,0,0.25h5.29c0.67,0,1.21-0.54,1.21-1.21c0-0.48-0.29-0.92-0.73-1.11L11.5,12.5v-2.45C12.49,11.25,14,12,16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hive\": {\n    \"name\": \"hive\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"5.92,7 4.79,9 5.92,11 8.06,11 9.19,9 8.06,7\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10.94,16 9.8,18.02 10.92,20 13.08,20 14.2,18.02 13.06,16\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13.06,14 14.19,12 13.06,10 10.94,10 9.81,12 10.94,14\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"5.92,13 4.79,15 5.92,17 8.06,17 9.19,15 8.06,13\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"15.94,7 14.81,9 15.94,11 18.08,11 19.21,9 18.08,7\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10.92,4 9.8,5.98 10.94,8 13.06,8 14.2,5.98 13.08,4\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"15.94,13 14.81,15 15.94,17 18.08,17 19.21,15 18.08,13\\\"></polygon><path d=\\\"M21.5,9l-2.25-4h-3.31l-1.69-3h-4.5L8.06,5H4.75L2.5,9l1.69,3L2.5,15l2.25,4h3.31l1.69,3h4.5l1.69-3h3.31l2.25-4l-1.69-3 L21.5,9z M8.06,17H5.92l-1.12-2l1.12-2h2.14l1.12,2L8.06,17z M8.06,11H5.92L4.79,9l1.12-2h2.14l1.12,2L8.06,11z M13.08,20h-2.16 L9.8,18.02L10.94,16h2.12l1.13,2.02L13.08,20z M9.81,12l1.12-2h2.12l1.12,2l-1.12,2h-2.12L9.81,12z M13.06,8h-2.12L9.8,5.98 L10.92,4h2.16l1.12,1.98L13.06,8z M18.08,17h-2.14l-1.12-2l1.12-2h2.14l1.12,2L18.08,17z M18.08,11h-2.14l-1.12-2l1.12-2h2.14 l1.12,2L18.08,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"4.65,5.92 3.67,7.58 4.65,9.25 6.69,9.25 7.68,7.58 6.69,5.92\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8.98,8.33 7.99,10 8.98,11.67 11.02,11.67 12.01,10 11.02,8.33\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"4.65,10.75 3.67,12.42 4.65,14.08 6.69,14.08 7.68,12.42 6.69,10.75\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8.98,13.17 7.99,14.83 8.98,16.5 11.02,16.5 12.01,14.83 11.02,13.17\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13.31,5.92 12.32,7.58 13.31,9.25 15.35,9.25 16.33,7.58 15.35,5.92\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8.98,3.5 7.99,5.17 8.98,6.83 11.02,6.83 12.01,5.17 11.02,3.5\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13.31,10.75 12.32,12.42 13.31,14.08 15.35,14.08 16.33,12.42 15.35,10.75\\\"></polygon><path d=\\\"M18.08,7.58L16.2,4.42h-2.89L11.88,2H8.12L6.69,4.42H3.8L1.92,7.58L3.36,10l-1.43,2.42l1.88,3.17h2.89L8.12,18h3.75 l1.43-2.42h2.89l1.88-3.17L16.64,10L18.08,7.58z M6.69,14.08H4.65l-0.99-1.67l0.99-1.67h2.04l0.99,1.67L6.69,14.08z M6.69,9.25 H4.65L3.67,7.58l0.99-1.67h2.04l0.99,1.67L6.69,9.25z M11.02,16.5H8.98l-0.99-1.67l0.99-1.67h2.04l0.99,1.67L11.02,16.5z M11.02,11.67H8.98L7.99,10l0.99-1.67h2.04L12.01,10L11.02,11.67z M11.02,6.83H8.98L7.99,5.17L8.98,3.5h2.04l0.99,1.67L11.02,6.83 z M15.35,14.08h-2.04l-0.99-1.67l0.99-1.67h2.04l0.99,1.67L15.35,14.08z M15.35,9.25h-2.04l-0.99-1.67l0.99-1.67h2.04l0.99,1.67 L15.35,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"poll\": {\n    \"name\": \"poll\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm10-6h2v4h-2v-4zm-4-6h2v10h-2V7zm-4 3h2v7H7v-7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_injury\": {\n    \"name\": \"personal_injury\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2C10,4.9,10.9,4,12,4z M10.94,20H9.75 C9.34,20,9,19.66,9,19.25c0-0.41,0.34-0.75,0.75-0.75h1.89L10.94,20z M18,20h-4.85l2.94-6.27c0.54,0.2,1.01,0.41,1.4,0.61 C17.8,14.5,18,14.84,18,15.22V20z M9.75,22C8.23,22,7,20.77,7,19.25c0-1.52,1.23-2.75,2.75-2.75h2.83l1.55-3.3 C13.47,13.07,12.76,13,12,13c-2.37,0-4.29,0.73-5.48,1.34C6.2,14.5,6,14.84,6,15.22V22H9.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,10c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S8,3.79,8,6C8,8.21,9.79,10,12,10z M12,4c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C10,4.9,10.9,4,12,4z M18.39,12.56C16.71,11.7,14.53,11,12,11c-2.53,0-4.71,0.7-6.39,1.56C4.61,13.07,4,14.1,4,15.22V22 h2v-6.78c0-0.38,0.2-0.72,0.52-0.88C7.71,13.73,9.63,13,12,13c0.76,0,1.47,0.07,2.13,0.2l-1.55,3.3H9.75C8.23,16.5,7,17.73,7,19.25 C7,20.77,8.23,22,9.75,22h2.18H18c1.1,0,2-0.9,2-2v-4.78C20,14.1,19.39,13.07,18.39,12.56z M10.94,20H9.75C9.34,20,9,19.66,9,19.25 c0-0.41,0.34-0.75,0.75-0.75h1.89L10.94,20z M18,20h-4.85l2.94-6.27c0.54,0.2,1.01,0.41,1.4,0.61C17.8,14.5,18,14.84,18,15.22V20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5c0.83,0,1.5,0.67,1.5,1.5S10.83,6.5,10,6.5S8.5,5.83,8.5,5S9.17,3.5,10,3.5z M5.5,18v-5.91 c0-0.18,0.09-0.34,0.22-0.42C7.02,10.9,8.5,10.5,10,10.5c0.63,0,1.25,0.07,1.85,0.21l-1.29,2.79H8.73c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25H5.5z M9.18,16.5H8.73c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.15L9.18,16.5z M14.5,16.5h-3.66l2.46-5.33c0.34,0.14,0.67,0.31,0.98,0.49c0.14,0.08,0.22,0.25,0.22,0.42V16.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,8c1.66,0,3-1.34,3-3s-1.34-3-3-3S7,3.34,7,5S8.34,8,10,8z M10,3.5c0.83,0,1.5,0.67,1.5,1.5S10.83,6.5,10,6.5 S8.5,5.83,8.5,5S9.17,3.5,10,3.5z M15.03,10.37C13.56,9.5,11.84,9,10,9s-3.56,0.5-5.03,1.37C4.36,10.73,4,11.39,4,12.09V18h1.5 v-5.91c0-0.18,0.09-0.34,0.22-0.42C7.02,10.9,8.5,10.5,10,10.5c0.63,0,1.25,0.07,1.85,0.21l-1.29,2.79H8.73 c-1.24,0-2.25,1.01-2.25,2.25c0,1.24,1.01,2.25,2.25,2.25h5.77c0.83,0,1.5-0.67,1.5-1.5v-4.41C16,11.39,15.64,10.73,15.03,10.37z M9.18,16.5H8.73c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.15L9.18,16.5z M14.5,16.5h-3.66l2.46-5.33 c0.34,0.14,0.67,0.31,0.98,0.49c0.14,0.08,0.22,0.25,0.22,0.42V16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied\": {\n    \"name\": \"sentiment_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.75-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.7 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_kabaddi\": {\n    \"name\": \"sports_kabaddi\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"16.5\\\" cy=\\\"2.38\\\" r=\\\"2\\\"></circle><path d=\\\"M24,11.88v-4.7l-5.05-2.14c-0.97-0.41-2.09-0.06-2.65,0.84l0,0l-1,1.6c-0.67,1.18-1.91,2.06-3.41,2.32l0.06,0.06 c0.69,0.69,1.52,1.07,2.46,1.17c0.8-0.42,1.52-0.98,2.09-1.64l0.6,3l-1.16,1.1L15,14.38v0.76v6.74h2v-6l2.1-2l1.8,8H23l-2.18-11 l-0.62-3.1l1.8,0.7v3.4H24z\\\"></path><path d=\\\"M10.29,8.09c0.22,0.15,0.47,0.24,0.72,0.29c0.13,0.02,0.25,0.04,0.38,0.04s0.26-0.01,0.38-0.04 c0.13-0.02,0.25-0.06,0.37-0.11c0.24-0.1,0.47-0.24,0.66-0.44c0.49-0.49,0.67-1.17,0.55-1.8C13.28,5.66,13.1,5.29,12.8,5 c-0.19-0.19-0.42-0.34-0.66-0.44c-0.12-0.05-0.24-0.09-0.37-0.11s-0.25-0.04-0.38-0.04c-0.12,0-0.23,0.01-0.35,0.03 c-0.14,0.02-0.28,0.06-0.41,0.11C10.4,4.66,10.17,4.81,9.98,5C9.68,5.29,9.5,5.66,9.43,6.03c-0.12,0.63,0.06,1.31,0.55,1.8 C10.07,7.93,10.18,8.01,10.29,8.09z\\\"></path><path d=\\\"M11.24,10.56l-2-2c-0.1-0.1-0.2-0.18-0.31-0.26C8.71,8.16,8.46,8.06,8.21,8.02C8.08,7.99,7.96,7.98,7.83,7.98 c-0.51,0-1.02,0.2-1.41,0.59l-3.34,3.34c-0.41,0.41-0.62,0.98-0.58,1.54C2.5,13.63,2.54,13.82,2.61,14l1.07,2.95l-3.63,3.63 L1.46,22l4.24-4.24v-2.22L7,16.75v5.13h2v-6l-2.12-2.12l2.36-2.36l0.71,0.71l0,0c1.29,1.26,2.97,2.04,5.03,2.04l-0.14-2.07 C13.34,12.06,12.14,11.46,11.24,10.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"13.5\\\" cy=\\\"2.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12,10.34c-0.81-0.06-1.53-0.32-2.17-0.78l0,0C9.6,9.4,9.38,9.22,9.17,9.01L7.29,7.12c-0.39-0.39-1.02-0.39-1.41,0 L3.07,9.91c-0.22,0.22-0.32,0.52-0.29,0.82l0.42,3.75l-2.75,2.75l0.71,0.71l3.25-3.25l0.04-2L6,14.03L6,18h1v-4.69l-1.96-2.05 l2.51-2.51l0.9,0.9c1.02,1.02,2.13,1.62,3.56,1.69V10.34z\\\"></path><path d=\\\"M9.5,6.99c0.82,0,1.5-0.68,1.5-1.5c0-0.77-0.59-1.38-1.34-1.47C9.61,4.01,9.56,3.99,9.5,3.99C8.68,3.99,8,4.66,8,5.49 C8,5.67,8.05,5.84,8.11,6C8.32,6.57,8.86,6.99,9.5,6.99z\\\"></path><path d=\\\"M19,9.53V6.18l-3.85-1.53c-0.18-0.08-0.37-0.11-0.56-0.11c-0.5,0-0.96,0.25-1.23,0.68l-0.82,1.32 C12,7.46,11.11,8.15,10.08,8.47c0.24,0.21,0.48,0.39,0.74,0.53c0.06,0.03,0.15,0.08,0.26,0.15c0.73-0.34,1.38-0.82,1.91-1.42 l0.44-0.51l0.67,3.33L12,12.24V18h1v-4.8l2.59-2.16L17.16,18h1.08L15.87,6.09L18,6.81v2.72H19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hiking\": {\n    \"name\": \"hiking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M17.5,10.78c-1.23-0.37-2.22-1.17-2.8-2.18l-1-1.6 c-0.41-0.65-1.11-1-1.84-1c-0.78,0-1.59,0.5-1.78,1.44S7,23,7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3c1,1.15,2.41,2.01,4,2.34V23 H19V9h-1.5L17.5,10.78z M7.43,13.13l-2.12-0.41c-0.54-0.11-0.9-0.63-0.79-1.17l0.76-3.93c0.21-1.08,1.26-1.79,2.34-1.58l1.16,0.23 L7.43,13.13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M4.9,10.75l1.64,0.32l0.96-4.91L6.84,6.03C6.03,5.87,5.24,6.4,5.08,7.21l-0.57,2.94C4.46,10.43,4.63,10.69,4.9,10.75z M14,18h1V8 h-1l0,1.41c-2.11-0.42-2.13-2.19-3.11-2.97c-0.21-0.17-0.45-0.29-0.7-0.36c-0.81-0.23-1.7,0.27-1.88,1.16C8.15,8.06,6.2,18,6.2,18 h1.53l1.19-6.01l1.58,1.58V18H12v-5.05l-1.46-1.46l0.49-2.48c0.72,0.95,1.76,1.64,2.97,1.89L14,18z\\\"></path>\"\n      }\n    }\n  },\n  \"notifications_none\": {\n    \"name\": \"notifications_none\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"clean_hands\": {\n    \"name\": \"clean_hands\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.24,9.5H7.42C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L9.24,9.5z M5,20v-7H3v7H5z M19.9,18.57 c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79C13.01,15.95,15,16,15,16 c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.99,5l0.63,1.37L18.99,7l-1.37,0.63L16.99,9l-0.63-1.37L14.99,7l1.37-0.63L16.99,5 M20,14c1.1,0,2-0.9,2-2c0-1.1-2-4-2-4 s-2,2.9-2,4C18,13.1,18.9,14,20,14z M11,6.1V4h2c0.57,0,1.1,0.17,1.55,0.45l1.43-1.43C15.15,2.39,14.13,2,13,2c-1.47,0-5.44,0-5.5,0 v2H9v2.11C7.22,6.48,5.8,7.79,5.25,9.5h2.16C7.94,8.61,8.89,8,10,8c1.62,0,2.94,1.29,2.99,2.9L15,11.65V11 C15,8.58,13.28,6.56,11,6.1z M22,19v1l-8,2.5l-7-1.94V22H1V11h7.97l6.16,2.3C16.25,13.72,17,14.8,17,16h2C20.66,16,22,17.34,22,19z M5,20v-7H3v7H5z M19.9,18.57c-0.16-0.33-0.51-0.56-0.9-0.56h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79 C13.01,15.95,15,16,15,16c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.93L19.9,18.57z\\\"></path>\"\n      }\n    }\n  },\n  \"person_remove\": {\n    \"name\": \"person_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\\\"></path><path d=\\\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"10\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"7\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M8,12c2.2,0,5,1.04,5,1.86V15H3v-1.14C3,13.04,5.8,12,8,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\\\"></path><path d=\\\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"female\": {\n    \"name\": \"female\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.5,9.5C17.5,6.46,15.04,4,12,4S6.5,6.46,6.5,9.5c0,2.7,1.94,4.93,4.5,5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1 C15.56,14.43,17.5,12.2,17.5,9.5z M8.5,9.5C8.5,7.57,10.07,6,12,6s3.5,1.57,3.5,3.5S13.93,13,12,13S8.5,11.43,8.5,9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.25,8.25C14.25,5.9,12.35,4,10,4S5.75,5.9,5.75,8.25c0,2.09,1.51,3.82,3.5,4.17V14h-1.5v1.5h1.5V17h1.5v-1.5h1.5V14h-1.5 v-1.58C12.74,12.07,14.25,10.34,14.25,8.25z M7.25,8.25C7.25,6.73,8.48,5.5,10,5.5s2.75,1.23,2.75,2.75S11.52,11,10,11 S7.25,9.77,7.25,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_2\": {\n    \"name\": \"diversity_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2.5,17.97c-0.48,0.28-0.64,0.89-0.37,1.37s0.89,0.64,1.37,0.37c0.48-0.28,0.64-0.89,0.37-1.37 S2.98,17.69,2.5,17.97z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.5,17.97c-0.48-0.28-1.09-0.11-1.37,0.37s-0.11,1.09,0.37,1.37c0.48,0.28,1.09,0.11,1.37-0.37 S21.98,18.24,21.5,17.97z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M10.1,15.9l1.42-1.42C8.79,12.05,7,10.41,7,8.85C7,7.8,7.8,7,8.85,7c1.11,0,1.54,0.65,2.68,2h0.93 c1.12-1.31,1.53-2,2.68-2c0.87,0,1.55,0.54,1.77,1.32c0.35-0.04,0.68-0.06,1-0.06c0.36,0,0.7,0.03,1.03,0.08 C18.7,6.43,17.13,5,15.15,5c-0.12,0-0.23,0.03-0.35,0.04C14.92,4.71,15,4.37,15,4c0-1.66-1.34-3-3-3S9,2.34,9,4 c0,0.37,0.08,0.71,0.2,1.04C9.08,5.03,8.97,5,8.85,5C6.69,5,5,6.69,5,8.85C5,11.27,7.04,13.16,10.1,15.9z M12,3c0.55,0,1,0.45,1,1 s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><path d=\\\"M22.5,16.24c-0.32-0.18-0.66-0.29-1-0.35c0.07-0.1,0.15-0.18,0.21-0.28c1.08-1.87,0.46-4.18-1.41-5.26 c-2.09-1.21-4.76-0.39-8.65,0.9l0.52,1.94c3.47-1.14,5.79-1.88,7.14-1.1c0.91,0.53,1.2,1.61,0.68,2.53 c-0.56,0.96-1.33,1-3.07,1.32l-0.47,0.81c0.58,1.62,0.97,2.33,0.39,3.32c-0.53,0.91-1.61,1.2-2.53,0.68 c-0.06-0.03-0.11-0.09-0.17-0.13c-0.3,0.67-0.64,1.24-1.03,1.73c0.07,0.04,0.13,0.09,0.2,0.14c1.87,1.08,4.18,0.46,5.26-1.41 c0.06-0.1,0.09-0.21,0.14-0.32c0.22,0.27,0.48,0.51,0.8,0.69c1.43,0.83,3.27,0.34,4.1-1.1S23.93,17.06,22.5,16.24z M21.87,19.33 c-0.28,0.48-0.89,0.64-1.37,0.37c-0.48-0.28-0.64-0.89-0.37-1.37s0.89-0.64,1.37-0.37C21.98,18.24,22.14,18.86,21.87,19.33z\\\"></path><path d=\\\"M12.32,14.01c-0.74,3.58-1.27,5.95-2.62,6.73c-0.91,0.53-2,0.24-2.53-0.68c-0.56-0.96-0.2-1.66,0.39-3.32L7.1,15.93 c-1.7-0.31-2.5-0.33-3.07-1.32c-0.53-0.91-0.24-2,0.68-2.53c0.09-0.05,0.19-0.08,0.29-0.11c-0.35-0.56-0.64-1.17-0.82-1.85 c-0.16,0.07-0.32,0.14-0.48,0.23c-1.87,1.08-2.49,3.39-1.41,5.26c0.06,0.1,0.14,0.18,0.21,0.28c-0.34,0.06-0.68,0.17-1,0.35 c-1.43,0.83-1.93,2.66-1.1,4.1s2.66,1.93,4.1,1.1c0.32-0.18,0.58-0.42,0.8-0.69c0.05,0.11,0.08,0.22,0.14,0.32 c1.08,1.87,3.39,2.49,5.26,1.41c2.09-1.21,2.71-3.93,3.55-7.94L12.32,14.01z M3.5,19.7c-0.48,0.28-1.09,0.11-1.37-0.37 s-0.11-1.09,0.37-1.37c0.48-0.28,1.09-0.11,1.37,0.37S3.98,19.42,3.5,19.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2,14.38c-0.48,0.28-0.64,0.89-0.37,1.37S2.52,16.39,3,16.12s0.64-0.89,0.37-1.37S2.48,14.11,2,14.38z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,14.38c-0.48-0.28-1.09-0.11-1.37,0.37c-0.28,0.48-0.11,1.09,0.37,1.37c0.48,0.28,1.09,0.11,1.37-0.37 C18.64,15.27,18.48,14.66,18,14.38z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"3.5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M8.53,13.47l1.06-1.06C7.13,10.22,5.5,8.76,5.5,7.3c0-1.03,0.77-1.8,1.8-1.8c1.05,0,1.5,0.66,2.22,1.5h0.97 c1.26-1.48,1.57-1.5,2.22-1.5c0.81,0,1.46,0.49,1.69,1.19c0.27-0.03,0.52-0.05,0.77-0.05c0.27,0,0.53,0.02,0.78,0.05 C15.67,5.15,14.34,4,12.7,4c-0.09,0-0.17,0.02-0.26,0.03c0.04-0.17,0.06-0.35,0.06-0.53C12.5,2.12,11.38,1,10,1 C8.62,1,7.5,2.12,7.5,3.5c0,0.18,0.02,0.36,0.06,0.53C7.47,4.02,7.39,4,7.3,4C5.45,4,4,5.45,4,7.3C4,9.41,5.82,11.06,8.53,13.47z M10,2.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.45,2.5,10,2.5z\\\"></path><path d=\\\"M18.75,13.09c-0.16-0.09-0.32-0.16-0.49-0.21c0.05-0.07,0.11-0.13,0.15-0.21c0.92-1.6,0.39-3.58-1.21-4.51 C15.38,7.1,13.04,7.85,9.6,8.99l0.39,1.45c3.13-1.03,5.21-1.71,6.47-0.98c0.89,0.51,1.17,1.57,0.66,2.46 c-0.53,0.91-1.33,0.97-2.41,1.17l-0.48,0.84c0.65,1.83,0.51,2.11,0.19,2.67c-0.51,0.89-1.57,1.17-2.46,0.66 c-0.18-0.11-0.35-0.25-0.5-0.42c-0.23,0.51-0.48,0.97-0.77,1.35c0.16,0.14,0.33,0.27,0.52,0.38c1.6,0.92,3.58,0.39,4.51-1.21 c0.04-0.08,0.07-0.16,0.1-0.24c0.13,0.12,0.27,0.22,0.43,0.32c1.2,0.69,2.72,0.28,3.42-0.92C20.35,15.3,19.95,13.78,18.75,13.09z M18.37,15.75c-0.28,0.48-0.89,0.64-1.37,0.37c-0.48-0.28-0.64-0.89-0.37-1.37c0.28-0.48,0.89-0.64,1.37-0.37 C18.48,14.66,18.64,15.27,18.37,15.75z\\\"></path><path d=\\\"M10.43,11.15c-0.67,3.23-1.12,5.37-2.38,6.1c-0.89,0.51-1.95,0.23-2.46-0.66c-0.53-0.91-0.18-1.63,0.19-2.67l-0.48-0.84 c-1.91-0.35-2.08-0.61-2.41-1.17c-0.51-0.89-0.23-1.95,0.66-2.46C3.31,8.98,3.16,8.5,3.08,8.02c-0.1,0.04-0.2,0.08-0.29,0.13 c-1.6,0.92-2.13,2.91-1.21,4.51c0.04,0.08,0.11,0.14,0.15,0.21c-0.17,0.05-0.33,0.12-0.49,0.21c-1.2,0.69-1.61,2.22-0.92,3.42 c0.69,1.2,2.22,1.61,3.42,0.92c0.16-0.09,0.3-0.2,0.43-0.32c0.04,0.08,0.06,0.16,0.1,0.24c0.92,1.6,2.91,2.13,4.51,1.21 c1.83-1.06,2.35-3.45,3.09-7.01L10.43,11.15z M3,16.12c-0.48,0.28-1.09,0.11-1.37-0.37S1.52,14.66,2,14.38s1.09-0.11,1.37,0.37 S3.48,15.84,3,16.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"notifications_paused\": {\n    \"name\": \"notifications_paused\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c-2.49 0-4 2.02-4 4.5v6h8v-6c0-2.48-1.51-4.5-4-4.5zm2.5 3.3l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.5 9.8h2.8l-2.8 3.4V15h5v-1.8h-2.8l2.8-3.4V8h-5zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zm-4 5c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"school\": {\n    \"name\": \"school\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 12.27v3.72l5 2.73 5-2.73v-3.72L12 15zM5.18 9 12 12.72 18.82 9 12 5.28z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 3 1 9l4 2.18v6L12 21l7-3.82v-6l2-1.09V17h2V9L12 3zm5 12.99-5 2.73-5-2.73v-3.72L12 15l5-2.73v3.72zm-5-3.27L5.18 9 12 5.28 18.82 9 12 12.72z\\\"></path>\"\n      }\n    }\n  },\n  \"blind\": {\n    \"name\": \"blind\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"11.5\\\" cy=\\\"3.5\\\" r=\\\"2\\\"></circle><path d=\\\"M12.13,7.12c-0.17-0.35-0.44-0.65-0.8-0.85C10.72,5.91,9.99,5.93,9.4,6.24l0-0.01L4,9.3V14h2v-3.54l1.5-0.85 C7.18,10.71,7,11.85,7,13v5.33L4.4,21.8L6,23l3-4l0.22-3.54L11,18v5h2v-6.5l-1.97-2.81c-0.04-0.52-0.14-1.76,0.45-3.4 c0.75,1.14,1.88,1.98,3.2,2.41L20.63,23l0.87-0.5L16.02,13H17v-2c-0.49,0-2.88,0.17-4.08-2.21\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M12.68,10.78L16.85,18l0.65-0.38l-3.86-6.68c0.12,0.01,0.23,0.03,0.36,0.03v-1.5c-3.08,0-3.01-2.16-4.11-3.05 C9.63,6.22,9.32,6.09,9,6.04C8.63,5.97,8.23,6,7.86,6.15L4,7.79v3.21h1.5V8.78L6.86,8.2C6.65,8.96,6.5,9.7,6.5,10.49v4l-2,2.5l1,1 L8,15l0.19-2.62l1.31,1.61V18H11v-5.01l-1.46-1.93c-0.02-0.22-0.12-1.1,0.28-2.34C10.04,9.06,11.01,10.3,12.68,10.78z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_emotions\": {\n    \"name\": \"emoji_emotions\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20,12c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S20,16.42,20,12z M8.5,8C9.33,8,10,8.67,10,9.5 S9.33,11,8.5,11S7,10.33,7,9.5S7.67,8,8.5,8z M12,18c-2.28,0-4.22-1.66-5-4h10C16.22,16.34,14.28,18,12,18z M15.5,11 c-0.83,0-1.5-0.67-1.5-1.5S14.67,8,15.5,8S17,8.67,17,9.5S16.33,11,15.5,11z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\\\"></path><path d=\\\"M12,18c2.28,0,4.22-1.66,5-4H7C7.78,16.34,9.72,18,12,18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><g opacity=\\\".3\\\"><path d=\\\"M16,10c0-3.31-2.69-6-6.01-6C9.82,4,9.64,4.01,9.47,4.03C6.41,4.29,4,6.87,4,10s2.41,5.71,5.47,5.97 C9.64,15.99,9.82,16,9.99,16C13.31,16,16,13.31,16,10z M13,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C12,7.45,12.45,7,13,7z M7,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1S6,8.55,6,8C6,7.45,6.45,7,7,7z M13.86,11 c-0.45,1.72-2,3-3.86,3s-3.41-1.28-3.86-3H13.86z\\\"></path></g><path d=\\\"M10,14c1.86,0,3.41-1.28,3.86-3H6.14C6.59,12.72,8.14,14,10,14z\\\"></path><path d=\\\"M9.99,3C6.13,3,3,6.14,3,10s3.13,7,6.99,7c3.87,0,7.01-3.14,7.01-7S13.86,3,9.99,3z M9.47,15.97C6.41,15.71,4,13.13,4,10 s2.41-5.71,5.47-5.97C9.64,4.01,9.82,4,9.99,4c0,0,0,0,0,0C13.31,4,16,6.69,16,10s-2.69,6-6.01,6c0,0,0,0,0,0 C9.82,16,9.64,15.99,9.47,15.97z\\\"></path><circle cx=\\\"13\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"7\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"waving_hand\": {\n    \"name\": \"waving_hand\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.44,6.37c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-3.18,3.18c1.17,1.17,1.17,3.07,0,4.24 l1.41,1.41c1.45-1.45,1.82-3.57,1.12-5.36l6.3-6.3c0.2-0.2,0.51-0.2,0.71,0s0.2,0.51,0,0.71l-4.6,4.6l1.41,1.41l6.01-6.01 c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-6.01,6.01l1.41,1.41l4.95-4.95c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 l-5.66,5.66l1.41,1.41l3.54-3.54c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L14.1,19.1c-2.54,2.54-6.65,2.54-9.19,0 s-2.54-6.65,0-9.19L8.44,6.37z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.03,4.95L3.49,8.49c-3.32,3.32-3.32,8.7,0,12.02s8.7,3.32,12.02,0l6.01-6.01c0.97-0.97,0.97-2.56,0-3.54 c-0.12-0.12-0.25-0.23-0.39-0.32l0.39-0.39c0.97-0.97,0.97-2.56,0-3.54c-0.16-0.16-0.35-0.3-0.54-0.41c0.4-0.92,0.23-2.02-0.52-2.77 c-0.87-0.87-2.22-0.96-3.2-0.28c-0.1-0.15-0.21-0.29-0.34-0.42c-0.97-0.97-2.56-0.97-3.54,0l-2.51,2.51 c-0.09-0.14-0.2-0.27-0.32-0.39C9.58,3.98,8,3.98,7.03,4.95z M8.44,6.37c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 l-3.18,3.18c1.17,1.17,1.17,3.07,0,4.24l1.41,1.41c1.45-1.45,1.82-3.57,1.12-5.36l6.3-6.3c0.2-0.2,0.51-0.2,0.71,0s0.2,0.51,0,0.71 l-4.6,4.6l1.41,1.41l6.01-6.01c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-6.01,6.01l1.41,1.41l4.95-4.95 c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-5.66,5.66l1.41,1.41l3.54-3.54c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L14.1,19.1c-2.54,2.54-6.65,2.54-9.19,0s-2.54-6.65,0-9.19L8.44,6.37z M23,17c0,3.31-2.69,6-6,6v-1.5c2.48,0,4.5-2.02,4.5-4.5H23z M1,7c0-3.31,2.69-6,6-6v1.5C4.52,2.5,2.5,4.52,2.5,7H1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.29,4.93c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L5.17,8.46c0.98,0.98,0.98,2.56,0,3.54l1.06,1.06 c1.19-1.19,1.47-2.93,0.86-4.39l5.51-5.51c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L9.41,7.76l1.06,1.06l4.95-4.95 c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95l1.06,1.06l4.07-4.07c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L12.24,12l1.06,1.06l2.83-2.83c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95c-2.15,2.15-5.63,2.15-7.78,0 s-2.15-5.63,0-7.78L7.29,4.93z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.23,3.87L3.05,7.05c-2.73,2.73-2.73,7.17,0,9.9s7.17,2.73,9.9,0L17.9,12c0.78-0.78,0.78-2.05,0-2.83 c-0.12-0.12-0.26-0.23-0.4-0.31l0.57-0.57c0.78-0.78,0.78-2.05,0-2.83c-0.15-0.15-0.32-0.27-0.5-0.36c0.36-0.75,0.23-1.67-0.39-2.29 c-0.68-0.68-1.72-0.77-2.5-0.27c-0.09-0.16-0.2-0.31-0.33-0.44c-0.78-0.78-2.05-0.78-2.83,0L9.37,4.27 c-0.08-0.14-0.19-0.28-0.31-0.4C8.28,3.09,7.01,3.09,6.23,3.87z M7.29,4.93c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71 L5.17,8.46c0.98,0.98,0.98,2.56,0,3.54l1.06,1.06c1.19-1.19,1.47-2.93,0.86-4.39l5.51-5.51c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71L9.41,7.76l1.06,1.06l4.95-4.95c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95l1.06,1.06 l4.07-4.07c0.2-0.2,0.51-0.2,0.71,0c0.2,0.2,0.2,0.51,0,0.71L12.24,12l1.06,1.06l2.83-2.83c0.2-0.2,0.51-0.2,0.71,0 c0.2,0.2,0.2,0.51,0,0.71l-4.95,4.95c-2.15,2.15-5.63,2.15-7.78,0s-2.15-5.63,0-7.78L7.29,4.93z M1,6c0-2.76,2.24-5,5-5v1 C3.79,2,2,3.79,2,6H1z M19,14c0,2.76-2.24,5-5,5v-1c2.21,0,4-1.79,4-4H19z\\\"></path>\"\n      }\n    }\n  },\n  \"cake\": {\n    \"name\": \"cake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.53 14.92l-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07c-.64.64-1.5 1-2.4 1.01v3h14v-3c-.9-.01-1.76-.37-2.4-1.01l-1.07-1.07zM18 11H6c-.55 0-1 .45-1 1v3.5c.51-.01.99-.21 1.34-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.36.36.84.56 1.35.57V12c0-.55-.45-1-1-1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 6c1.11 0 2-.9 2-2 0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm6 3h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v9c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-9c0-1.66-1.34-3-3-3zm1 11H5v-3c.9-.01 1.76-.37 2.4-1.01l1.09-1.07 1.07 1.07c1.31 1.31 3.59 1.3 4.89 0l1.08-1.07 1.07 1.07c.64.64 1.5 1 2.4 1.01v3zm0-4.5c-.51-.01-.99-.2-1.35-.57l-2.13-2.13-2.14 2.13c-.74.74-2.03.74-2.77 0L8.48 12.8l-2.14 2.13c-.35.36-.83.56-1.34.57V12c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_basketball\": {\n    \"name\": \"sports_basketball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.93,11H11V4.07C9.27,4.29,7.71,5.06,6.5,6.2C7.81,7.44,8.69,9.12,8.93,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.93,11c-0.15-1.18-0.56-2.28-1.16-3.25C17.9,8.62,17.3,9.74,17.09,11H19.93z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.23,7.75C4.63,8.72,4.22,9.82,4.07,11h2.84C6.7,9.74,6.1,8.62,5.23,7.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.07,13c0.15,1.18,0.56,2.28,1.16,3.25C6.1,15.38,6.7,14.26,6.91,13H4.07z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.51,17.79c1.2,1.14,2.76,1.92,4.49,2.14V13H8.93C8.7,14.88,7.81,16.55,6.51,17.79z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5,6.2c-1.21-1.14-2.77-1.92-4.5-2.13V11h2.07C15.31,9.12,16.19,7.44,17.5,6.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.77,16.25c0.61-0.96,1.02-2.07,1.16-3.25h-2.84C17.3,14.26,17.9,15.38,18.77,16.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,13v6.93c1.73-0.22,3.29-1,4.49-2.14c-1.3-1.24-2.19-2.91-2.42-4.79H13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.23,7.75 C6.1,8.62,6.7,9.74,6.91,11H4.07C4.22,9.82,4.63,8.72,5.23,7.75z M4.07,13h2.84c-0.21,1.26-0.81,2.38-1.68,3.25 C4.63,15.28,4.22,14.18,4.07,13z M11,19.93c-1.73-0.22-3.29-1-4.49-2.14c1.3-1.24,2.19-2.91,2.42-4.79H11V19.93z M11,11H8.93 C8.69,9.12,7.81,7.44,6.5,6.2C7.71,5.06,9.27,4.29,11,4.07V11z M19.93,11h-2.84c0.21-1.26,0.81-2.38,1.68-3.25 C19.37,8.72,19.78,9.82,19.93,11z M13,4.07c1.73,0.22,3.29,0.99,4.5,2.13c-1.31,1.24-2.19,2.92-2.43,4.8H13V4.07z M13,19.93V13 h2.07c0.24,1.88,1.12,3.55,2.42,4.79C16.29,18.93,14.73,19.71,13,19.93z M18.77,16.25c-0.87-0.86-1.46-1.99-1.68-3.25h2.84 C19.78,14.18,19.37,15.28,18.77,16.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.03,10.5c0.1,1.21,0.56,2.32,1.28,3.22c0.91-0.81,1.54-1.94,1.67-3.22H4.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,14.46c0.95,0.85,2.16,1.4,3.5,1.51V10.5H7.97C7.84,12.07,7.11,13.47,6,14.46z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.3,6.28C4.59,7.18,4.13,8.29,4.03,9.5h2.95C6.84,8.22,6.22,7.09,5.3,6.28z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.97,9.5H9.5V4.03C8.16,4.14,6.95,4.69,6,5.54C7.11,6.53,7.84,7.93,7.97,9.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.5,10.5v5.47c1.34-0.11,2.55-0.66,3.5-1.51c-1.11-0.99-1.84-2.39-1.97-3.96H10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.7,13.72c0.72-0.9,1.18-2.01,1.28-3.22h-2.95C13.16,11.78,13.78,12.91,14.7,13.72z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.97,9.5c-0.1-1.21-0.56-2.32-1.28-3.22c-0.91,0.81-1.54,1.94-1.67,3.22H15.97z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,5.54c-0.95-0.85-2.16-1.4-3.5-1.51V9.5h1.53C12.16,7.93,12.89,6.53,14,5.54z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M5.3,6.28C6.22,7.09,6.84,8.22,6.97,9.5 H4.03C4.13,8.29,4.59,7.18,5.3,6.28z M4.03,10.5h2.95c-0.13,1.28-0.75,2.41-1.67,3.22C4.59,12.82,4.13,11.71,4.03,10.5z M9.5,15.97c-1.34-0.11-2.55-0.66-3.5-1.51c1.11-0.99,1.84-2.39,1.97-3.96H9.5V15.97z M9.5,9.5H7.97C7.84,7.93,7.11,6.53,6,5.54 c0.95-0.85,2.16-1.4,3.5-1.51V9.5z M15.97,9.5h-2.95c0.13-1.28,0.75-2.41,1.67-3.22C15.41,7.18,15.87,8.29,15.97,9.5z M10.5,4.03 c1.34,0.11,2.55,0.66,3.5,1.51c-1.11,0.99-1.84,2.39-1.97,3.96H10.5V4.03z M10.5,15.97V10.5h1.53c0.13,1.57,0.86,2.97,1.97,3.96 C13.05,15.31,11.84,15.86,10.5,15.97z M14.7,13.72c-0.91-0.81-1.54-1.94-1.67-3.22h2.95C15.87,11.71,15.41,12.82,14.7,13.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"surfing\": {\n    \"name\": \"surfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,23c-1.03,0-2.06-0.25-3-0.75h0c-1.89,1-4.11,1-6,0c-1.89,1-4.11,1-6,0C5.05,22.75,4.03,23,3,23H2l0-2h1 c1.04,0,2.08-0.35,3-1c1.83,1.3,4.17,1.3,6,0c1.83,1.3,4.17,1.3,6,0c0.91,0.65,1.96,1,3,1h1v2H21z M17,1.5c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S18.1,1.5,17,1.5z M14.43,8.48L12.18,10L16,13v3.84c0.53,0.38,1.03,0.78,1.49,1.17C16.81,18.59,15.94,19,15,19 c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.33,0-0.65-0.05-0.96-0.14C5.19,16.9,3,14.72,3,13.28C3,12.25,4.01,12,4.85,12 c0.98,0,2.28,0.31,3.7,0.83l-0.53-3.1C7.91,9.06,8.2,8.35,8.8,7.94l2.15-1.45l-2-0.37L6.13,8.05L5,6.4L8.5,4l5.55,1.03 c0.45,0.09,0.93,0.37,1.22,0.89l0.88,1.55C17.01,8.98,18.64,10,20.5,10v2C17.91,12,15.64,10.58,14.43,8.48z M10.3,11.1l0.44,2.65 c0.92,0.42,2.48,1.27,3.26,1.75V14L10.3,11.1z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,3.25C15.5,4.22,14.72,5,13.75,5S12,4.22,12,3.25s0.78-1.75,1.75-1.75S15.5,2.28,15.5,3.25z M15,16.5 c-1.52,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5c0.86,0,1.71-0.2,2.5-0.6 c1.57,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5C16.63,17.5,15.76,17.17,15,16.5z M11.9,7.2 L10,8.48L13,11v3.09c0.5,0.35,0.98,0.71,1.41,1.07c-0.54,0.5-1.2,0.84-1.91,0.84c-1,0-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16 c-0.19,0-0.37-0.02-0.55-0.07C4.71,14.38,3,12.66,3,11.52c0-0.45,0.28-1.02,1.47-1.02c0.68,0,1.56,0.19,2.53,0.51L6.53,8.28 c-0.1-0.57,0.13-1.16,0.63-1.5l1.72-1.16L7.54,5.38l-2.3,1.56L4.4,5.7l2.8-1.9l4.22,0.69c0.36,0.06,0.69,0.23,0.91,0.51l1.38,2.1 c0.64,0.85,1.66,1.4,2.8,1.4V10c-1.64,0-3.09-0.79-4-2L11.9,7.2z M8.4,9.15l0.35,2.55c0.86,0.37,2.18,1.05,2.74,1.42V11.7L8.4,9.15z\\\"></path>\"\n      }\n    }\n  },\n  \"real_estate_agent\": {\n    \"name\": \"real_estate_agent\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.5,9.44l5.32,1.99c1.24,0.46,2.21,1.41,2.74,2.57L19,14V7.5L14,4L9,7.5V9h0.33L10.5,9.44z M14.5,7h1v1h-1 V7z M14.5,9h1v1h-1V9z M12.5,7h1v1h-1V7z M12.5,9h1v1h-1V9z M3,13h2v7H3V13z M19.9,18.57l-5.93,1.84L7,18.48V13h1.61l5.82,2.17 C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79c0.51,0.17,1.04,0.26,1.58,0.26H19 C19.39,18.01,19.74,18.24,19.9,18.57z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,7h-1v1h1V7z M13.5,7h-1v1h1V7z M15.5,9h-1v1h1V9z M13.5,9h-1v1h1V9z M21,6.5V14h-2V7.5L14,4L9,7.5V9H7V6.5l7-5L21,6.5 z M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M3,20v-7h2v7H3z M13.97,20.41 L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16c0,0-1.99-0.05-2.3-0.15l-2.38-0.79l-0.63,1.9l2.38,0.79 c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,10.5h-2v6h2v-0.14V10.5z M16.39,15.43c-0.23-0.54-0.76-0.93-1.39-0.93H9.74l-2-0.8l0.53-1.4l1.87,0.7 h2.36c0-0.26-0.17-0.5-0.42-0.59L6.74,10.5H6v4.75l5.5,1.68L16.39,15.43z M11.5,3.35l-4,2.91V7.5l5.99,2.1 c0.9,0.31,1.58,1.03,1.86,1.9l0.15,0V6.26L11.5,3.35z M11.12,8.25h-0.75V7.5h0.75V8.25z M11.12,6.75h-0.75V6h0.75V6.75z M12.62,8.25 h-0.75V7.5h0.75V8.25z M12.62,6.75h-0.75V6h0.75V6.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,5.5v6h-1.5V6.26l-4-2.91l-4,2.91V7.5H6v-2l5.5-4L17,5.5z M18,16v0.5l-6.5,2L6,16.82V18H1V9h6l5.59,2 c0.85,0.3,1.41,1.1,1.41,2h1C16.66,13,18,14.34,18,16z M4.5,10.5h-2v6h2v-0.14V10.5z M16.39,15.43c-0.23-0.54-0.76-0.93-1.39-0.93 H9.74l-2-0.8l0.53-1.4l1.87,0.7h2.36c0-0.26-0.17-0.5-0.42-0.59L6.74,10.5H6v4.75l5.5,1.68L16.39,15.43z M12.62,6h-0.75v0.75h0.75V6 z M11.12,6h-0.75v0.75h0.75V6z M12.62,7.5h-0.75v0.75h0.75V7.5z M11.12,7.5h-0.75v0.75h0.75V7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"person_4\": {\n    \"name\": \"person_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,10c1.1,0,2-0.9,2-2V5.5h-4V8C10,9.1,10.9,10,12,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.48,16.34C16.29,15.73,14.37,15,12,15c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18h12 v-0.78C18,16.84,17.8,16.5,17.48,16.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z M18,18H6v-0.78c0-0.38,0.2-0.72,0.52-0.88C7.71,15.73,9.63,15,12,15 c2.37,0,4.29,0.73,5.48,1.34C17.8,16.5,18,16.84,18,17.22V18z\\\"></path><path d=\\\"M12,12c2.21,0,4-1.79,4-4c0-1.37,0-3.5,0-3.5C16,3.67,15.33,3,14.5,3c-0.52,0-0.98,0.27-1.25,0.67 C12.98,3.27,12.52,3,12,3s-0.98,0.27-1.25,0.67C10.48,3.27,10.02,3,9.5,3C8.67,3,8,3.67,8,4.5c0,0,0,2.12,0,3.5 C8,10.21,9.79,12,12,12z M10,5.5h4V8c0,1.1-0.9,2-2,2s-2-0.9-2-2V5.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,8.5c0.83,0,1.5-0.67,1.5-1.5V5h-3v2C8.5,7.83,9.17,8.5,10,8.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,12.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C12.98,12.9,11.5,12.5,10,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,10c1.66,0,3-1.34,3-3c0-1.03,0-2.83,0-2.83v0c0-0.62-0.5-1.12-1.12-1.12c-0.4,0-0.74,0.22-0.94,0.54 C10.74,3.26,10.4,3.04,10,3.04c-0.39,0-0.72,0.21-0.92,0.52C8.88,3.23,8.54,3,8.12,3C7.5,3,7,3.5,7,4.12c0,0,0,1.84,0,2.88 C7,8.66,8.34,10,10,10z M8.5,5h3v2c0,0.83-0.67,1.5-1.5,1.5S8.5,7.83,8.5,7V5z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z M14.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C7.02,12.9,8.5,12.5,10,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sanitizer\": {\n    \"name\": \"sanitizer\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,8c-2.21,0-4,1.79-4,4v8h8v-8C14,9.79,12.21,8,10,8z M13,16h-2v2H9v-2H7v-2h2v-2h2v2h2V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,6.5C15.5,5.66,17,4,17,4s1.5,1.66,1.5,2.5C18.5,7.33,17.83,8,17,8S15.5,7.33,15.5,6.5z M19.5,15 c1.38,0,2.5-1.12,2.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17,10.83,17,12.5C17,13.88,18.12,15,19.5,15z M13,14h-2v-2H9v2H7v2h2v2h2v-2h2V14z M16,12v8c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-8c0-2.97,2.16-5.43,5-5.91V4H7V2h6c1.13,0,2.15,0.39,2.99,1.01l-1.43,1.43 C14.1,4.17,13.57,4,13,4h-2v2.09C13.84,6.57,16,9.03,16,12z M14,12c0-2.21-1.79-4-4-4s-4,1.79-4,4v8h8V12z\\\"></path>\"\n      }\n    }\n  },\n  \"fireplace\": {\n    \"name\": \"fireplace\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,20h2v-2h2.23c-0.75-0.93-1.2-2.04-1.23-3c-0.02-0.53-0.73-4.43,6-8c0,0-0.8,2.61,2.15,4.63 C15.91,12.15,17,13.11,17,15c0,1.13-0.39,2.16-1.02,3H18v2h2V4H4V20z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.01,12.46c-0.15,0.42-0.15,0.82-0.08,1.28c0.1,0.55,0.33,1.04,0.2,1.6c-0.13,0.59-0.77,1.38-1.53,1.63 c1.28,1.05,3.2,0.37,3.39-1.32C14.16,14.11,12.55,13.67,12.01,12.46z\\\"></path><path d=\\\"M2,2v20h20V2H2z M12,18c-1.58,0-2.97-1.88-3-3.06c0-0.05-0.01-0.13-0.01-0.22c-0.13-1.73,1-3.2,2.47-4.37 c0.47,1.01,1.27,2.03,2.57,2.92C14.61,13.69,15,14.13,15,15C15,16.65,13.65,18,12,18z M20,20h-2v-2h-2.02 c0.63-0.84,1.02-1.87,1.02-3c0-1.89-1.09-2.85-1.85-3.37C12.2,9.61,13,7,13,7c-6.73,3.57-6.02,7.47-6,8 c0.03,0.96,0.49,2.07,1.23,3H6v2H4V4h16V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,16h2v-1h1.53c-0.91-0.79-1.5-1.9-1.53-2.85C5.99,11.74,5.42,8.74,10.8,6c0,0-0.64,2.01,1.72,3.57 C13.13,9.96,14,10.7,14,12.15c0,1.13-0.52,2.14-1.33,2.85H14v1h2V4H4V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.51,10.25c-0.11,0.32-0.11,0.61-0.06,0.96c0.07,0.42,0.24,0.78,0.15,1.2c-0.1,0.44-0.58,1.04-1.15,1.22 c0.96,0.79,2.4,0.28,2.54-0.99C12.12,11.49,10.91,11.16,10.51,10.25z\\\"></path><path d=\\\"M3,3v14h14V3H3z M10,15c-1.66,0-2.97-1.74-3-2.88c0-0.04,0-0.08-0.01-0.14c-0.14-1.8,1.27-3.24,2.87-4.29 c0.23,0.85,0.81,1.85,2.11,2.71c0.72,0.47,1.03,1,1.03,1.75C13,13.72,11.65,15,10,15z M16,16h-2v-1h-1.33 c0.81-0.7,1.33-1.71,1.33-2.85c0-1.45-0.87-2.19-1.48-2.59C10.16,8.01,10.8,6,10.8,6C5.42,8.74,5.99,11.74,6,12.15 C6.03,13.1,6.63,14.21,7.53,15H6v1H4V4h12V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"architecture\": {\n    \"name\": \"architecture\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.36,18.78L6.61,21l1.62-1.54l2.77-7.6c-0.68-0.17-1.28-0.51-1.77-0.98L6.36,18.78z\\\"></path><path d=\\\"M14.77,10.88c-0.49,0.47-1.1,0.81-1.77,0.98l2.77,7.6L17.39,21l0.26-2.22L14.77,10.88z\\\"></path><path d=\\\"M15,8c0-1.3-0.84-2.4-2-2.82V3h-2v2.18C9.84,5.6,9,6.7,9,8c0,1.66,1.34,3,3,3S15,9.66,15,8z M12,9c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,8.55,12.55,9,12,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.67,14.89L6.79,16l0.81-0.77l1.92-5.28C9.19,9.9,8.87,9.79,8.58,9.63L6.67,14.89z\\\"></path><path d=\\\"M11.42,9.63c-0.29,0.16-0.61,0.27-0.95,0.32l1.92,5.28L13.21,16l0.13-1.11L11.42,9.63z\\\"></path><path d=\\\"M12,7c0-0.93-0.64-1.71-1.5-1.93V4h-1v1.07C8.64,5.29,8,6.07,8,7c0,1.1,0.9,2,2,2S12,8.1,12,7z M10,8C9.45,8,9,7.55,9,7 c0-0.55,0.45-1,1-1s1,0.45,1,1C11,7.55,10.55,8,10,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"heart_broken\": {\n    \"name\": \"heart_broken\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.23,5.42C8.69,5.15,8.09,5,7.5,5C5.54,5,4,6.54,4,8.5c0,2.5,2.45,4.84,6.24,8.23L10.77,12H7.35L9.23,5.42 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,5c-0.37,0-0.75,0.06-1.12,0.18L14.77,7h2.91l-2.56,8.53C17.98,12.93,20,10.71,20,8.5 C20,6.54,18.46,5,16.5,5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,3c-0.96,0-1.9,0.25-2.73,0.69L12,9h3l-3,10l1-9h-3l1.54-5.39C10.47,3.61,9.01,3,7.5,3C4.42,3,2,5.42,2,8.5 c0,4.13,4.16,7.18,10,12.5c5.47-4.94,10-8.26,10-12.5C22,5.42,19.58,3,16.5,3z M10.24,16.73C6.45,13.34,4,11,4,8.5 C4,6.54,5.54,5,7.5,5c0.59,0,1.19,0.15,1.73,0.42L7.35,12h3.42L10.24,16.73z M15.13,15.53L17.69,7h-2.91l0.61-1.82 C15.75,5.06,16.13,5,16.5,5C18.46,5,20,6.54,20,8.5C20,10.71,17.98,12.93,15.13,15.53z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.94,4.91C7.47,4.64,6.93,4.5,6.4,4.5c-1.63,0-2.9,1.29-2.9,2.93c0,2.1,2.06,4.04,5.21,6.88l0.55-3.81H6.6 L7.94,4.91z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.6,4.5c-0.32,0-0.64,0.05-0.96,0.16L12.05,6.5h2.5l-2.17,6.85c2.4-2.19,4.12-4.05,4.12-5.92 C16.5,5.79,15.23,4.5,13.6,4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.6,3c-0.77,0-1.52,0.2-2.18,0.56L10,8h2.5L10,15.89L11,9H8.5l1.13-4.7C8.77,3.49,7.61,3,6.4,3C3.94,3,2,4.95,2,7.43 c0,3.33,3.33,5.79,8,10.07c4.38-3.98,8-6.65,8-10.07C18,4.95,16.06,3,13.6,3z M8.71,14.31C5.56,11.47,3.5,9.53,3.5,7.43 c0-1.64,1.27-2.93,2.9-2.93c0.53,0,1.07,0.14,1.54,0.41L6.6,10.5h2.67L8.71,14.31z M12.38,13.35l2.17-6.85h-2.5l0.59-1.84 c0.32-0.11,0.64-0.16,0.96-0.16c1.63,0,2.9,1.29,2.9,2.93C16.5,9.3,14.78,11.16,12.38,13.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_nature\": {\n    \"name\": \"emoji_nature\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"18\\\" cy=\\\"6\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><g><path d=\\\"M21.94,4.88C21.75,4.33,21.19,3.96,20.58,4H19.6l-0.31-0.97C19.15,2.43,18.61,2,18,2h0c-0.61,0-1.15,0.43-1.29,1.04 L16.4,4h-0.98c-0.61-0.04-1.16,0.32-1.35,0.88c-0.19,0.56,0.04,1.17,0.56,1.48l0.87,0.52L15.1,8.12 c-0.23,0.58-0.04,1.25,0.45,1.62c0.5,0.37,1.17,0.35,1.64-0.06L18,8.98l0.81,0.7c0.47,0.4,1.15,0.43,1.64,0.06 c0.5-0.37,0.68-1.04,0.45-1.62l-0.39-1.24l0.87-0.52C21.89,6.05,22.12,5.44,21.94,4.88z M18,7c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,6.55,18.55,7,18,7z\\\"></path></g></g><g><path d=\\\"M6.1,17.9c0.53,0.53,1.27,0.69,1.94,0.5c-0.03-1.19,0.35-2.37,0.92-3.36c-1,0.57-2.17,0.95-3.36,0.92 C5.41,16.63,5.58,17.37,6.1,17.9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.65,11.55l1.61,0.66c0.25,0.1,0.44,0.3,0.54,0.54l0.66,1.61c0.75-0.78,0.74-2.01-0.03-2.78 C11.66,10.8,10.43,10.8,9.65,11.55z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.86,12c-0.17-0.67-0.5-1.31-1.03-1.84C13.31,9.64,12.67,9.31,12,9.14V7h-1v2c-1.01,0.01-2.02,0.39-2.79,1.16 c-0.13,0.13-0.33,0.33-0.56,0.56l-1.53-0.63c-1.52-0.63-3.27,0.1-3.89,1.62c-0.6,1.46,0.05,3.11,1.44,3.8 c-0.33,1.31,0,2.76,1.03,3.79c1.03,1.03,2.48,1.36,3.79,1.03c0.69,1.39,2.34,2.04,3.8,1.44c1.52-0.63,2.25-2.37,1.62-3.89 l-0.63-1.53c0.23-0.23,0.43-0.43,0.56-0.56c0.77-0.77,1.16-1.78,1.16-2.79h2v-1H14.86z M4.58,13.8c-0.51-0.21-0.75-0.79-0.54-1.3 c0.21-0.51,0.79-0.75,1.3-0.54l2.92,1.2C7.22,13.84,5.83,14.31,4.58,13.8z M8.04,18.4c-0.67,0.19-1.41,0.02-1.94-0.5 c-0.53-0.53-0.69-1.27-0.5-1.94c1.19,0.03,2.37-0.35,3.36-0.92C8.39,16.03,8.01,17.21,8.04,18.4z M11.5,19.96 c-0.51,0.21-1.09-0.03-1.3-0.54c-0.51-1.25-0.04-2.64,0.64-3.67l1.2,2.92C12.25,19.17,12.01,19.76,11.5,19.96z M12.45,14.35 l-0.66-1.61c-0.1-0.25-0.3-0.44-0.54-0.54l-1.61-0.66c0.78-0.75,2.01-0.74,2.78,0.03C13.2,12.34,13.2,13.57,12.45,14.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16.96,4.8c-0.12-0.35-0.47-0.57-0.84-0.55H15.5l-0.19-0.6C15.22,3.27,14.88,3,14.5,3h0c-0.38,0-0.72,0.27-0.81,0.65 l-0.19,0.6h-0.61c-0.38-0.03-0.73,0.2-0.84,0.55c-0.12,0.35,0.03,0.73,0.35,0.92l0.54,0.33l-0.24,0.77 c-0.14,0.36-0.03,0.78,0.28,1.01c0.31,0.23,0.73,0.22,1.03-0.04l0.51-0.43l0.51,0.43c0.29,0.25,0.72,0.27,1.03,0.04 c0.31-0.23,0.43-0.65,0.28-1.01l-0.24-0.77l0.54-0.33C16.93,5.53,17.08,5.15,16.96,4.8z M14.5,6C14.22,6,14,5.78,14,5.5 C14,5.22,14.22,5,14.5,5S15,5.22,15,5.5C15,5.78,14.78,6,14.5,6z\\\"></path></g><path d=\\\"M8.78,9.09L8.46,9.41L10,10l0.59,1.53l0.32-0.32c0.58-0.58,0.58-1.54,0-2.12S9.37,8.51,8.78,9.09z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.78,14.22c0.41,0.41,0.98,0.51,1.5,0.35c-0.05-0.86,0.19-1.71,0.59-2.44c-0.73,0.4-1.58,0.65-2.44,0.59 C5.27,13.23,5.38,13.81,5.78,14.22z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.61,8.39c-0.32-0.32-0.71-0.52-1.11-0.63V6.5H10v1.17C9.31,7.63,8.6,7.86,8.08,8.39C7.92,8.54,7.7,8.77,7.44,9.02 l-1.5-0.57C4.83,8.02,3.57,8.58,3.14,9.7c-0.43,1.12,0.13,2.37,1.25,2.8c0.02,0.01,0.03,0.01,0.05,0.01 c-0.22,0.83-0.02,1.76,0.64,2.41s1.58,0.86,2.41,0.64c0.01,0.02,0.01,0.03,0.01,0.05c0.43,1.12,1.68,1.68,2.8,1.25 c1.12-0.43,1.68-1.68,1.25-2.8l-0.57-1.5c0.26-0.26,0.48-0.48,0.63-0.63c0.53-0.53,0.76-1.23,0.72-1.92h1.17V9.5h-1.25 C12.14,9.09,11.93,8.71,11.61,8.39z M7.28,14.57c-0.51,0.16-1.09,0.05-1.5-0.35s-0.51-0.98-0.35-1.5 c0.86,0.05,1.71-0.19,2.44-0.59C7.48,12.86,7.23,13.71,7.28,14.57z M4.73,11.63c-0.64-0.24-0.96-0.96-0.71-1.6 c0.24-0.64,0.96-0.96,1.6-0.71l2.96,1.14C7.74,11.31,6.17,12.19,4.73,11.63z M9.97,15.99c-0.64,0.24-1.36-0.08-1.6-0.71 c-0.55-1.44,0.32-3.01,1.18-3.85l1.14,2.96C10.93,15.02,10.61,15.74,9.97,15.99z M10.91,11.22l-0.32,0.32L10,10L8.46,9.41 l0.32-0.32c0.58-0.58,1.54-0.58,2.12,0S11.49,10.63,10.91,11.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transgender\": {\n    \"name\": \"transgender\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,8c1.93,0,3.5,1.57,3.5,3.5S13.93,15,12,15s-3.5-1.57-3.5-3.5S10.07,8,12,8z M16.53,8.38l3.97-3.96V7h2V1h-6v2h2.58 l-3.97,3.97C14.23,6.36,13.16,6,12,6c-1.16,0-2.23,0.36-3.11,0.97L8.24,6.32l1.41-1.41L8.24,3.49L6.82,4.9L4.92,3H7.5V1h-6v6h2V4.42 l1.91,1.9L3.99,7.74l1.41,1.41l1.41-1.41l0.65,0.65C6.86,9.27,6.5,10.34,6.5,11.5c0,2.7,1.94,4.94,4.5,5.41L11,19H9v2h2v2h2v-2h2v-2 h-2l0-2.09c2.56-0.47,4.5-2.71,4.5-5.41C17.5,10.34,17.14,9.27,16.53,8.38z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,1.5V3h1.94l-3.16,3.16C11.62,5.74,10.84,5.5,10,5.5S8.38,5.74,7.72,6.16l-0.6-0.6L8.18,4.5L7.12,3.44L6.06,4.5L4.56,3 H6.5V1.5H2V6h1.5V4.06L5,5.56L3.94,6.62L5,7.68l1.06-1.06l0.56,0.56C6.07,7.89,5.75,8.78,5.75,9.75c0,2.09,1.51,3.83,3.5,4.18v1.57 h-1.5V17h1.5v1.5h1.5V17h1.5v-1.5h-1.5v-1.57c1.99-0.35,3.5-2.09,3.5-4.18c0-0.97-0.32-1.86-0.87-2.57l3.12-3.12V6H18V1.5H13.5z M10,12.5c-1.52,0-2.75-1.23-2.75-2.75C7.25,8.23,8.48,7,10,7s2.75,1.23,2.75,2.75C12.75,11.27,11.52,12.5,10,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_hockey\": {\n    \"name\": \"sports_hockey\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,17v3l2,0v-4H3C2.45,16,2,16.45,2,17z\\\"></path><path d=\\\"M9,16H5v4l4.69-0.01c0.38,0,0.72-0.21,0.89-0.55l0.87-1.9l-1.59-3.48L9,16z\\\"></path><g><path d=\\\"M21.71,16.29C21.53,16.11,21.28,16,21,16h-1v4l2,0v-3C22,16.72,21.89,16.47,21.71,16.29z\\\"></path></g><path d=\\\"M13.6,12.84L17.65,4H14.3l-1.76,3.97l-0.49,1.1L12,9.21L9.7,4H6.35l4.05,8.84l1.52,3.32L12,16.34l1.42,3.1 c0.17,0.34,0.51,0.55,0.89,0.55L19,20v-4h-4L13.6,12.84z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M3,14v2h1v-3C3.45,13,3,13.45,3,14z\\\"></path></g><g><polygon points=\\\"12.32,13 11.1,10.34 14,4 11.8,4 10,7.94 8.2,4 6,4 8.9,10.34 10,12.74 11.5,16 15,16 15,13\\\"></polygon></g><g><path d=\\\"M16,13v3h1v-2C17,13.45,16.55,13,16,13z\\\"></path></g><g><polygon points=\\\"7.68,13 5,13 5,16 8.5,16 9.45,13.94 8.35,11.54\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"person_outline\": {\n    \"name\": \"person_outline\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2.1\\\"></circle><path d=\\\"M12 14.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 13c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6.1 5.1H5.9V17c0-.64 3.13-2.1 6.1-2.1s6.1 1.46 6.1 2.1v1.1zM12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6.1c1.16 0 2.1.94 2.1 2.1 0 1.16-.94 2.1-2.1 2.1S9.9 9.16 9.9 8c0-1.16.94-2.1 2.1-2.1z\\\"></path>\"\n      }\n    }\n  },\n  \"group_add\": {\n    \"name\": \"group_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8,15c-2.7,0-5.8,1.29-6,2.01V18h12v-1C13.8,16.29,10.7,15,8,15z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8\\\" cy=\\\"8\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><polygon points=\\\"22,9 22,7 20,7 20,9 18,9 18,11 20,11 20,13 22,13 22,11 24,11 24,9\\\"></polygon><path d=\\\"M8,12c2.21,0,4-1.79,4-4s-1.79-4-4-4S4,5.79,4,8S5.79,12,8,12z M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6z\\\"></path><path d=\\\"M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z M14,18H2v-0.99C2.2,16.29,5.3,15,8,15s5.8,1.29,6,2V18z\\\"></path><path d=\\\"M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z\\\"></path><path d=\\\"M16.53,13.83C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M10.28,13.66C8.98,12.9,7.5,12.5,6,12.5c-1.5,0-2.98,0.4-4.28,1.16 c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41C10.5,13.91,10.41,13.74,10.28,13.66z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><circle cx=\\\"6\\\" cy=\\\"7\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle></g><g><g><path d=\\\"M10,10c1.66,0,3-1.34,3-3s-1.34-3-3-3C9.79,4,9.58,4.02,9.38,4.06C10.07,4.85,10.5,5.87,10.5,7 c0,1.13-0.43,2.14-1.12,2.93C9.58,9.98,9.79,10,10,10z\\\"></path></g><g><path d=\\\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M6,5.5c0.83,0,1.5,0.67,1.5,1.5S6.83,8.5,6,8.5 S4.5,7.83,4.5,7S5.17,5.5,6,5.5z\\\"></path></g><g><path d=\\\"M15.03,12.37c-0.92-0.54-1.94-0.92-3.02-1.14c0.92,0.64,1.48,1.71,1.48,2.86V16H16v-1.91 C16,13.39,15.64,12.72,15.03,12.37z\\\"></path></g><g><path d=\\\"M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z M10.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C3.02,12.9,4.5,12.5,6,12.5 c1.5,0,2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g><g><polygon points=\\\"19.5,7.75 17.75,7.75 17.75,6 16.25,6 16.25,7.75 14.5,7.75 14.5,9.25 16.25,9.25 16.25,11 17.75,11 17.75,9.25 19.5,9.25\\\"></polygon></g></g></g></g>\"\n      }\n    }\n  },\n  \"thumb_up_alt\": {\n    \"name\": \"thumb_up_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M13.34 4.66L9 9v10h9l3-7v-2h-8.77z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_handball\": {\n    \"name\": \"sports_handball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.27,6C13.72,6.95,14.05,8.18,15,8.73c0.95,0.55,2.18,0.22,2.73-0.73c0.55-0.95,0.22-2.18-0.73-2.73 C16.05,4.72,14.82,5.05,14.27,6z\\\"></path><path d=\\\"M15.84,10.41c0,0-1.63-0.94-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1,3.83,8.6,7.21,10.66,9.4l-5.15,8.92 l1.73,1l1.5-2.6l1.73,1l-3,5.2l1.73,1l6.29-10.89c1.14,1.55,1.33,3.69,0.31,5.46l1.73,1C19.13,16.74,18.81,12.91,15.84,10.41z\\\"></path><path d=\\\"M12.75,3.8c0.72,0.41,1.63,0.17,2.05-0.55c0.41-0.72,0.17-1.63-0.55-2.05c-0.72-0.41-1.63-0.17-2.05,0.55 C11.79,2.47,12.03,3.39,12.75,3.8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.23,8.6l-3.46-2c-1.43-0.83-1.93-2.67-1.1-4.1l0.5-0.87L8.3,1.14L7.8,2C6.7,3.92,7.35,6.36,9.27,7.47l-4.5,7.79 l0.87,0.5l1.5-2.6l1.73,1l-3,5.2l0.87,0.5l6-10.39c1.43,0.83,1.93,2.67,1.1,4.1l-0.5,0.87l0.87,0.5l0.5-0.87 C15.8,12.15,15.14,9.71,13.23,8.6z\\\"></path><circle cx=\\\"11\\\" cy=\\\"2\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"5.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"domain_add\": {\n    \"name\": \"domain_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,9v2h2v2h-2v2h2v2h-2v2h4v-4h4V9H12z M18,13h-2v-2h2V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12z M6,19H4v-2h2V19z M6,15H4v-2h2V15z M6,11H4V9h2V11z M6,7H4V5h2 V7z M10,19H8v-2h2V19z M10,15H8v-2h2V15z M10,11H8V9h2V11z M10,7H8V5h2V7z M24,19v2h-2v2h-2v-2h-2v-2h2v-2h2v2H24z M18,11h-2v2h2 V11z M18,15h-2v2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,7.5v1.67h1.5v1.5H10v1.67h1.5v1.5H10v1.67h3.5v-3.17l1.5,0v0.17h1.5v-5H10z M15,10.67h-1.5v-1.5H15 V10.67z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5,15.5H3.5V14H5V15.5z M5,12.33H3.5v-1.5H5V12.33z M5,9.17H3.5v-1.5H5V9.17z M5,6H3.5V4.5H5V6z M8.5,15.5H7V14h1.5V15.5z M8.5,12.33H7v-1.5h1.5V12.33z M8.5,9.17H7v-1.5h1.5V9.17z M7,6V4.5h1.5V6H7z M18,12.5V6h-8V3H2v14h11.5v-1.5H10v-1.67h1.5v-1.5H10 v-1.67h1.5v-1.5H10V7.5h6.5v5H18z M15,9.17h-1.5v1.5H15V9.17z M15,12.33h-1.5v1.5H15V12.33z M18,15.5V14h-1.5v1.5H15V17h1.5v1.5H18 V17h1.5v-1.5H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sports_gymnastics\": {\n    \"name\": \"sports_gymnastics\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M1,9h6l7-5l1.31,1.52L11.14,8.5H14L21.8,4L23,5.4L14.5,12L14,22h-2 l-0.5-10L8,11H1V9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M19,5.16L12,10l-0.5,8H10l-0.5-7.7L7,9.5H1V8h5l5.5-4l0.98,1.14L9.2,7.5h2.3L18,4L19,5.16z M4,5.5C4,6.33,4.67,7,5.5,7 S7,6.33,7,5.5S6.33,4,5.5,4S4,4.67,4,5.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_luggage\": {\n    \"name\": \"no_luggage\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><g><path d=\\\"M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M17,8v6.17l-1-1V9h-1.5v2.67l-1.75-1.75V9h-0.92 l-1-1H17z\\\"></path></g></g><g><g><path d=\\\"M16,13.17l-1.5-1.5V9H16V13.17z M19.78,22.61l-1.85-1.85C17.65,20.91,17.34,21,17,21c0,0.55-0.45,1-1,1s-1-0.45-1-1H9 c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c-1.1,0-2-0.9-2-2V8c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41l18.38,18.38 L19.78,22.61z M16.17,19l-3.42-3.42V18h-1.5v-3.92L9.5,12.33V18H8v-7.17l-1-1V19H16.17z M12.75,9h-0.92l0.92,0.92V9z M19,8v8.17 l-2-2V8h-6.17L9.84,7.01L9,6.17V6V3c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1v3h2C18.1,6,19,6.9,19,8z M10.5,6h3V3.5h-3V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"piano_off\": {\n    \"name\": \"piano_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.25,19H5V7.83l2,2v3.67c0,0.55,0.45,1,1,1h0.25V19z M9.75,19v-4.5H10c0.46,0,0.82-0.31,0.94-0.73l3.31,3.31 V19H9.75z M13,10.17V5h-2v3.17L13,10.17z M19,16.17V5h-2v8.5c0,0.19-0.07,0.36-0.16,0.51L19,16.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M8.25,19H5V7.83l2,2v3.67 c0,0.55,0.45,1,1,1h0.25V19z M9.75,19v-4.5H10c0.46,0,0.82-0.31,0.94-0.73l3.31,3.31V19H9.75z M11,8.17L5.83,3H19c1.1,0,2,0.9,2,2 v13.17l-2-2V5h-2v8.5c0,0.19-0.07,0.36-0.16,0.51L13,10.17V5h-2V8.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M7,15.5H4.5V6.62L6,8.12v3.38C6,11.78,6.22,12,6.5,12H7V15.5z M8,15.5V12h0.5C8.78,12,9,11.78,9,11.5v-0.38l3,3v1.38H8z M11,8.88V4.5H9v2.38L11,8.88z M15.5,13.38V4.5H14v7c0,0.11-0.04,0.2-0.1,0.28L15.5,13.38z\\\"></path></g><g><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M7,15.5H4.5V6.62 L6,8.12v3.38C6,11.78,6.22,12,6.5,12H7V15.5z M8,15.5V12h0.5C8.78,12,9,11.78,9,11.5v-0.38l3,3v1.38H8z M5.12,3H15.5 C16.33,3,17,3.67,17,4.5v10.38l-1.5-1.5V4.5H14v7c0,0.11-0.04,0.2-0.1,0.28L11,8.88V4.5H9v2.38L5.12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tsunami\": {\n    \"name\": \"tsunami\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4.04,14c0.47-0.24,0.68-0.41,1.3-0.87c2,1.48,3.07,1.39,3.79,1.32C8.4,13.27,8,11.92,8,10.5 c0-1.67,0.54-3.21,1.47-4.46C6.41,7.52,4.3,10.46,4.04,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,17.63c-0.66,0.49-2.92,2.76-6.67,0C3.43,19.03,2.65,19,2,19v2c1.16,0,2.3-0.32,3.33-0.93c2.06,1.22,4.61,1.22,6.67,0 c2.06,1.22,4.61,1.22,6.67,0C19.7,20.68,20.84,21,22,21v-2c-0.66,0-1.5-0.02-3.33-1.37C14.87,20.43,12.54,18.03,12,17.63z\\\"></path><path d=\\\"M19.33,12H22v-2h-2.67C17.5,10,16,8.5,16,6.67c0-1.02,0.38-1.74,1.09-3.34C15.72,3.12,15.09,3,14,3 C7.36,3,2.15,8.03,2.01,14.5c0,0-0.01,2-0.01,2c1.16,0,2.3-0.32,3.33-0.93c2.06,1.22,4.61,1.22,6.67,0c2.06,1.22,4.61,1.22,6.67,0 c1.03,0.61,2.17,0.93,3.33,0.93v-2c-0.66,0-1.5-0.02-3.33-1.37c-3.8,2.8-6.12,0.4-6.67,0c-0.9,0.67-0.54,0.41-0.91,0.63 C10.39,12.82,10,11.7,10,10.5c0-2.58,1.77-4.74,4.21-5.33C14.08,5.68,14,6.19,14,6.67C14,9.61,16.39,12,19.33,12z M9.13,14.45 c-0.72,0.07-1.79,0.16-3.79-1.32c-0.62,0.46-0.82,0.63-1.3,0.87c0.27-3.53,2.38-6.48,5.43-7.96C8.54,7.29,8,8.83,8,10.5 C8,11.92,8.4,13.27,9.13,14.45z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.52,12.1c0.47-0.25,0.64-0.41,1.15-0.82c1.8,1.47,2.78,1.24,3.3,1.14c-0.59-0.96-0.91-2.07-0.91-3.23 c0-1.61,0.63-3.04,1.68-4.11C5.73,6.19,3.68,8.83,3.52,12.1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,14.28c-1.95,1.59-3.31,1.65-5.33,0C3.17,15.5,2.54,15.5,2,15.5V17c0.93,0,1.85-0.28,2.67-0.82 c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0C16.15,16.72,17.07,17,18,17v-1.5c-0.51,0-1.17,0-2.67-1.22 C13.38,15.87,12.03,15.94,10,14.28z\\\"></path><path d=\\\"M16.5,10.5H18V9h-1.5c-1.6,0-2.9-1.3-2.9-2.9c0-0.57,0.18-1.31,0.46-1.91l0.46-0.92C13.44,3.1,12.92,3,12.01,3 C6.3,3,2,7.08,2,12.5V14c0.93,0,1.85-0.28,2.67-0.82c1.64,1.08,3.69,1.08,5.33,0c1.64,1.08,3.69,1.08,5.33,0 C16.15,13.72,17.07,14,18,14v-1.5c-0.51,0-1.17,0-2.67-1.22c-1.95,1.59-3.31,1.65-5.33,0c-0.16,0.13-0.59,0.47-0.65,0.51 c-0.51-0.77-0.79-1.66-0.79-2.61c0-2.2,1.51-3.92,3.73-4.35c-0.1,0.44-0.17,0.88-0.17,1.27C12.11,8.53,14.08,10.5,16.5,10.5z M7.05,9.18c0,1.16,0.32,2.27,0.91,3.23c-0.52,0.1-1.5,0.33-3.3-1.14c-0.5,0.41-0.67,0.57-1.15,0.82 c0.16-3.27,2.21-5.91,5.21-7.03C7.69,6.14,7.05,7.58,7.05,9.18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports\": {\n    \"name\": \"sports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M11.23,6C9.57,6,8.01,6.66,6.87,7.73C6.54,6.73,5.61,6,4.5,6C3.12,6,2,7.12,2,8.5C2,9.88,3.12,11,4.5,11 c0.21,0,0.41-0.03,0.61-0.08c-0.05,0.25-0.09,0.51-0.1,0.78c-0.18,3.68,2.95,6.68,6.68,6.27c2.55-0.28,4.68-2.26,5.19-4.77 c0.15-0.71,0.15-1.4,0.06-2.06c-0.09-0.6,0.38-1.13,0.99-1.13H22V6H11.23z M4.5,9C4.22,9,4,8.78,4,8.5C4,8.22,4.22,8,4.5,8 S5,8.22,5,8.5C5,8.78,4.78,9,4.5,9z M11,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S12.66,15,11,15z\\\"></path></g><g><circle cx=\\\"11\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M9.5,6C8.06,6,6.8,6.68,5.98,7.73C5.99,7.66,6,7.58,6,7.5C6,6.67,5.33,6,4.5,6S3,6.67,3,7.5S3.67,9,4.5,9 c0.33,0,0.62-0.11,0.87-0.28C5.13,9.26,5,9.87,5,10.5C5,12.99,7.01,15,9.5,15s4.5-2.01,4.5-4.5c0-0.08-0.02-0.16-0.02-0.24 c0-0.04,0.01-0.09,0.01-0.12C13.93,9.53,14.37,9,14.97,9H18V6H9.5z M4.5,8C4.22,8,4,7.78,4,7.5C4,7.22,4.22,7,4.5,7S5,7.22,5,7.5 C5,7.78,4.78,8,4.5,8z M11.47,12.02C11.02,12.61,10.31,13,9.5,13C8.12,13,7,11.88,7,10.5c0-1.27,0.95-2.3,2.17-2.47 C9.28,8.02,9.39,8,9.5,8c1.38,0,2.5,1.12,2.5,2.5C12,11.07,11.8,11.6,11.47,12.02z\\\"></path></g><g><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"man\": {\n    \"name\": \"man\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2v7h4v-7h2V9C16,7.9,15.1,7,14,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h1.5v5h3v-5H13V8.5C13,7.67,12.33,7,11.5,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"tornado\": {\n    \"name\": \"tornado\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"9.1,13 14.9,13 16.64,10 7.36,10\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"12,18.01 13.74,15 10.26,15\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"4.47,5 6.21,8 17.79,8 19.53,5\\\"></polygon><path d=\\\"M1,3l11,19L23,3H1z M12,18.01L10.26,15h3.48L12,18.01z M14.9,13H9.1l-1.74-3h9.27L14.9,13z M6.21,8L4.47,5h15.06l-1.74,3 H6.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"10,15.08 11.55,12.5 8.45,12.5\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"7.55,11 12.45,11 13.95,8.5 6.05,8.5\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"3.65,4.5 5.15,7 14.85,7 16.35,4.5\\\"></polygon><path d=\\\"M1,3l9,15l9-15H1z M10,15.08L8.45,12.5h3.1L10,15.08z M12.45,11h-4.9l-1.5-2.5h7.9L12.45,11z M5.15,7l-1.5-2.5h12.7 L14.85,7H5.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"emoji_events\": {\n    \"name\": \"emoji_events\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,14c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,5h-2V3H7v2H5C3.9,5,3,5.9,3,7v1c0,2.55,1.92,4.63,4.39,4.94c0.63,1.5,1.98,2.63,3.61,2.96V19H7v2h10v-2h-4v-3.1 c1.63-0.33,2.98-1.46,3.61-2.96C19.08,12.63,21,10.55,21,8V7C21,5.9,20.1,5,19,5z M5,8V7h2v3.82C5.84,10.4,5,9.3,5,8z M12,14 c-1.65,0-3-1.35-3-3V5h6v6C15,12.65,13.65,14,12,14z M19,8c0,1.3-0.84,2.4-2,2.82V7h2V8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M15,6h-2V5H7v1H5C4.45,6,4,6.45,4,7v1c0,1.66,1.34,3,3,3h0.18c0.36,1.01,1.24,1.77,2.32,1.95V15H7v1h2.5h1H13v-1h-2.5 v-2.05c1.08-0.18,1.96-0.94,2.32-1.95H13c1.66,0,3-1.34,3-3V7C16,6.45,15.55,6,15,6z M5,8V7h2v3C5.9,10,5,9.1,5,8z M10,12 c-1.1,0-2-0.9-2-2V6h4v4C12,11.1,11.1,12,10,12z M15,8c0,1.1-0.9,2-2,2V7h2V8z\\\"></path><path d=\\\"M12,6H8v4c0,1.1,0.9,2,2,2s2-0.9,2-2V6z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"face_2\": {\n    \"name\": \"face_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.02,5C6.01,5,6.01,5,6,5C3.79,5,2,6.79,2,9c0,0.55,0.12,1.07,0.32,1.54C2.89,8.29,4.22,6.35,6.02,5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.1,3.5C14.36,2.59,13.25,2,12,2S9.64,2.59,8.9,3.5C9.88,3.18,10.92,3,12,3S14.12,3.18,15.1,3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,5.31c0,2.24,1.82,4.06,4.06,4.06c0.93,0,1.82-0.32,2.53-0.89C17.16,6.39,14.75,5.01,12.03,5 C12.02,5.11,12,5.21,12,5.31z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.5,16.12C2.19,16.68,2,17.31,2,18c0,2.21,1.79,4,4,4c0.44,0,0.85-0.07,1.25-0.2 C5.02,20.59,3.31,18.56,2.5,16.12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.68,10.54C21.88,10.07,22,9.55,22,9c0-2.21-1.79-4-4-4c-0.01,0-0.01,0-0.02,0 C19.78,6.35,21.11,8.29,21.68,10.54z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.75,21.8C17.15,21.93,17.56,22,18,22c2.21,0,4-1.79,4-4c0-0.69-0.19-1.32-0.5-1.88 C20.69,18.56,18.98,20.59,16.75,21.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.97,13.52c0-0.01,0-0.02,0-0.04C23.21,12.38,24,10.78,24,9c0-3.31-2.69-6-6-6c-0.26,0-0.52,0.02-0.78,0.06 C16.19,1.23,14.24,0,12,0S7.81,1.23,6.78,3.06C6.52,3.02,6.26,3,6,3C2.69,3,0,5.69,0,9c0,1.78,0.79,3.38,2.02,4.48 c0,0.01,0,0.02,0,0.04C0.79,14.62,0,16.22,0,18c0,3.31,2.69,6,6,6c1.39,0,2.67-0.48,3.69-1.28C10.43,22.9,11.2,23,12,23 s1.57-0.1,2.31-0.28C15.33,23.52,16.61,24,18,24c3.31,0,6-2.69,6-6C24,16.22,23.21,14.62,21.97,13.52z M18,5c2.21,0,4,1.79,4,4 c0,0.55-0.12,1.07-0.32,1.54c-0.57-2.25-1.9-4.19-3.7-5.54C17.99,5,17.99,5,18,5z M18.6,8.48c-0.71,0.57-1.6,0.89-2.53,0.89 C13.82,9.38,12,7.55,12,5.31c0-0.1,0.02-0.21,0.03-0.31C14.75,5.01,17.16,6.39,18.6,8.48z M12,2c1.25,0,2.36,0.59,3.1,1.5 C14.12,3.18,13.08,3,12,3S9.88,3.18,8.9,3.5C9.64,2.59,10.75,2,12,2z M2,9c0-2.21,1.79-4,4-4c0.01,0,0.01,0,0.02,0 c-1.8,1.35-3.13,3.29-3.7,5.54C2.12,10.07,2,9.55,2,9z M6,22c-2.21,0-4-1.79-4-4c0-0.69,0.19-1.32,0.5-1.88 c0.8,2.44,2.52,4.47,4.74,5.68C6.85,21.93,6.44,22,6,22z M12,21c-4.41,0-8-3.59-8-8c0-3.72,2.56-6.85,6-7.74c0,0.02,0,0.03,0,0.05 c0,3.34,2.72,6.06,6.06,6.06c1.26,0,2.45-0.39,3.45-1.09C19.82,11.14,20,12.05,20,13C20,17.41,16.41,21,12,21z M18,22 c-0.44,0-0.85-0.07-1.25-0.2c2.23-1.21,3.94-3.24,4.74-5.68c0.31,0.56,0.5,1.2,0.5,1.88C22,20.21,20.21,22,18,22z\\\"></path><circle cx=\\\"9\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c1.06,0,2.08,0.21,3,0.59c0.01,0,0.01-0.01,0.02-0.01C12.55,2.36,11.38,1.5,10,1.5 c-1.38,0-2.55,0.87-3.02,2.08c0.01,0,0.01,0.01,0.01,0.01C7.92,3.21,8.94,3,10,3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.27,4.56C5.27,4.56,5.27,4.55,5.27,4.56C5.1,4.52,4.93,4.5,4.75,4.5C2.96,4.5,1.5,5.96,1.5,7.75 c0,0.71,0.24,1.35,0.63,1.88C2.48,7.55,3.64,5.76,5.27,4.56z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.3,13.14c-0.49,0.57-0.8,1.3-0.8,2.11c0,1.79,1.46,3.25,3.25,3.25c0.56,0,1.08-0.16,1.54-0.41 C4.36,17.07,2.89,15.29,2.3,13.14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.89,7.5c0.48,0,0.94-0.11,1.37-0.3c-1.08-1.49-2.78-2.51-4.72-2.67C10.75,6.2,12.17,7.5,13.89,7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.87,9.62c0.38-0.53,0.62-1.17,0.62-1.87c0-1.79-1.46-3.25-3.25-3.25c-0.18,0-0.34,0.02-0.51,0.05 c0,0,0,0,0,0.01C16.36,5.76,17.51,7.55,17.87,9.62z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.7,18.09c0.46,0.25,0.98,0.41,1.54,0.41c1.79,0,3.25-1.46,3.25-3.25c0-0.81-0.3-1.54-0.79-2.1 C17.1,15.29,15.64,17.08,13.7,18.09z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.12,11.5c1.13-0.87,1.87-2.22,1.87-3.75c0-2.62-2.13-4.75-4.75-4.75c-0.28,0-0.55,0.04-0.81,0.08 C13.75,1.29,12.03,0,10,0C7.97,0,6.25,1.29,5.57,3.08C5.3,3.04,5.03,3,4.75,3C2.13,3,0,5.13,0,7.75c0,1.53,0.74,2.88,1.87,3.75 C0.74,12.37,0,13.72,0,15.25C0,17.87,2.13,20,4.75,20c1.24,0,2.36-0.49,3.2-1.28C8.6,18.9,9.29,19,10,19 c0.71,0,1.39-0.1,2.05-0.27C12.89,19.51,14,20,15.24,20c2.62,0,4.75-2.13,4.75-4.75C19.99,13.72,19.25,12.37,18.12,11.5z M15.24,4.5c1.79,0,3.25,1.46,3.25,3.25c0,0.7-0.24,1.34-0.62,1.87c-0.36-2.07-1.52-3.86-3.14-5.06c0,0,0,0,0-0.01 C14.9,4.52,15.07,4.5,15.24,4.5z M15.26,7.2c-0.43,0.19-0.89,0.3-1.37,0.3c-1.73,0-3.14-1.3-3.35-2.97 C12.48,4.69,14.18,5.71,15.26,7.2z M10,1.5c1.38,0,2.55,0.86,3.02,2.08c-0.01,0-0.01,0.01-0.02,0.01C12.08,3.21,11.06,3,10,3 C8.94,3,7.92,3.21,6.99,3.59c-0.01,0-0.01-0.01-0.01-0.01C7.45,2.37,8.62,1.5,10,1.5z M1.5,7.75c0-1.79,1.46-3.25,3.25-3.25 c0.18,0,0.35,0.02,0.52,0.05c0,0,0,0,0,0.01c-1.63,1.2-2.78,3-3.14,5.07C1.74,9.1,1.5,8.46,1.5,7.75z M4.75,18.5 c-1.79,0-3.25-1.46-3.25-3.25c0-0.81,0.3-1.55,0.8-2.11c0.6,2.15,2.06,3.93,4,4.95C5.83,18.34,5.31,18.5,4.75,18.5z M10,17.5 c-3.58,0-6.5-2.92-6.5-6.5c0-3.26,2.41-5.96,5.55-6.42C9.29,7.05,11.36,9,13.89,9c0.74,0,1.46-0.17,2.11-0.49 c0.32,0.77,0.5,1.61,0.5,2.49C16.5,14.58,13.58,17.5,10,17.5z M15.24,18.5c-0.56,0-1.08-0.16-1.54-0.41c1.94-1.01,3.4-2.8,4-4.94 c0.49,0.57,0.79,1.3,0.79,2.1C18.49,17.04,17.03,18.5,15.24,18.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"man_4\": {\n    \"name\": \"man_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.75,7h-3.5C9.04,7,8.11,8.07,8.27,9.26L10,22h4l1.73-12.74C15.89,8.07,14.96,7,13.75,7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.75,7h-3.5C7.31,7,6.61,7.85,6.77,8.77L8.5,18h3l1.73-9.23C13.39,7.85,12.69,7,11.75,7z\\\"></path><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sentiment_very_dissatisfied\": {\n    \"name\": \"sentiment_very_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM6.76 8.82l1.06-1.06 1.06 1.06 1.06-1.06L11 8.82 9.94 9.88 11 10.94 9.94 12l-1.06-1.06L7.82 12l-1.06-1.06 1.06-1.06-1.06-1.06zM6.89 17c.8-2.04 2.78-3.5 5.11-3.5s4.31 1.46 5.11 3.5H6.89zm10.35-6.06L16.18 12l-1.06-1.06L14.06 12 13 10.94l1.06-1.06L13 8.82l1.06-1.06 1.06 1.06 1.06-1.06 1.06 1.06-1.06 1.06 1.06 1.06z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"snowshoeing\": {\n    \"name\": \"snowshoeing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12.5,3.5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S12.5,4.6,12.5,3.5z M6.32,19.03l-1.14-1.47L4,18.5l2.38,3.04 c0.51,0.65,1.16,1.15,1.88,1.41c0.28,0.1,0.53,0.04,0.72-0.11c0.3-0.23,0.42-0.7,0.12-1.07c-0.08-0.1-0.2-0.17-0.31-0.22 c-0.43-0.18-0.82-0.45-1.14-0.83l-0.08-0.1L11,18.2l0.89-3.22l2.11,2v4.52h-2V23h3.87c0.82,0,1.61-0.21,2.26-0.61 c0.26-0.16,0.37-0.39,0.37-0.64c0-0.38-0.3-0.75-0.77-0.75c-0.13,0-0.26,0.04-0.37,0.1c-0.4,0.23-0.87,0.37-1.36,0.4l0-6.02l-2.11-2 l0.6-3C15.79,11.98,17.8,13,20,13v-2c-1.9,0-3.51-1.02-4.31-2.42l-1-1.58c-0.4-0.6-1-1-1.7-1C12.24,6,11.58,6.34,7,8.28V13h2V9.58 l1.79-0.7L9.2,17L6.32,19.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.25,3.75C10.25,2.78,11.03,2,12,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C11.04,5.5,10.25,4.72,10.25,3.75z M8.16,17.02c-0.4-0.11-0.78-0.35-1.06-0.7l2.29-1.65l0.53-2.69l1.58,1.58V17L10,17v1h3c0.67,0,1.3-0.22,1.8-0.6 c0.14-0.11,0.2-0.25,0.2-0.4c0-0.25-0.19-0.5-0.5-0.5c-0.11,0-0.21,0.04-0.3,0.1C13.87,16.85,13.45,17,13,17v-4.05l-1.46-1.46 l0.49-2.48C12.94,10.21,14.37,11,16,11V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L6,7.79V11h1.5V8.79 l1.65-0.7L8.03,13.8l-1.85,1.34L5.29,14L4.5,14.61l1.82,2.32C6.92,17.71,7.81,18,8.03,18c0.39,0,0.66-0.47,0.39-0.81 C8.35,17.11,8.26,17.05,8.16,17.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scoreboard\": {\n    \"name\": \"scoreboard\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.5,13.5H16v-3h1.5V13.5z M12.75,6v1.5h-1.5V6H4v12h7.25v-1.5h1.5V18H20V6H12.75z M9.5,11.5 c0,0.55-0.45,1-1,1h-2v1h3V15H5v-2.5c0-0.55,0.45-1,1-1h2v-1H5V9h3.5c0.55,0,1,0.45,1,1V11.5z M12.75,14.5h-1.5V13h1.5V14.5z M12.75,11h-1.5V9.5h1.5V11z M19,14c0,0.55-0.45,1-1,1h-2.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H18c0.55,0,1,0.45,1,1V14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,9h-2.5c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1H18c0.55,0,1-0.45,1-1v-4C19,9.45,18.55,9,18,9z M17.5,13.5H16v-3h1.5 V13.5z M9.5,15H5v-2.5c0-0.55,0.45-1,1-1h2v-1H5V9h3.5c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1h-2v1h3V15z M12.75,11h-1.5V9.5h1.5 V11z M12.75,14.5h-1.5V13h1.5V14.5z M22,6v12c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h3V2h2v2h6V2h2v2h3 C21.1,4,22,4.9,22,6z M20,18V6h-7.25v1.5h-1.5V6H4v12h7.25v-1.5h1.5V18H20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11h-1V9h1V11z M10.5,5.5v1h-1v-1h-6v9h6v-1h1v1h6v-9H10.5z M8,10c0,0.28-0.22,0.5-0.5,0.5H6V11h2v1H5v-2 c0-0.28,0.22-0.5,0.5-0.5H7V9H5V8h2.5C7.78,8,8,8.22,8,8.5V10z M10.5,11.83h-1v-1h1V11.83z M10.5,9.17h-1v-1h1V9.17z M15,11.5 c0,0.28-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5v-3C12,8.22,12.22,8,12.5,8h2C14.78,8,15,8.22,15,8.5V11.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,8h-2C12.22,8,12,8.22,12,8.5v3c0,0.28,0.22,0.5,0.5,0.5h2c0.28,0,0.5-0.22,0.5-0.5v-3C15,8.22,14.78,8,14.5,8z M14,11h-1V9h1V11z M8,12H5v-2c0-0.28,0.22-0.5,0.5-0.5H7V9H5V8h2.5C7.78,8,8,8.22,8,8.5V10c0,0.28-0.22,0.5-0.5,0.5H6V11h2V12z M10.5,9.17h-1v-1h1V9.17z M10.5,11.83h-1v-1h1V11.83z M16.5,4H14V2.5h-1.5V4h-5V2.5H6V4H3.5C2.67,4,2,4.67,2,5.5v9 C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-6v-1h-1v1h-6v-9h6v1h1v-1h6V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"male\": {\n    \"name\": \"male\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,11c1.93,0,3.5,1.57,3.5,3.5S11.43,18,9.5,18S6,16.43,6,14.5S7.57,11,9.5,11z M9.5,9C6.46,9,4,11.46,4,14.5 S6.46,20,9.5,20s5.5-2.46,5.5-5.5c0-1.16-0.36-2.23-0.97-3.12L18,7.42V10h2V4h-6v2h2.58l-3.97,3.97C11.73,9.36,10.66,9,9.5,9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,4h-4.5v1.5h1.94l-2.76,2.76C9.99,7.78,9.15,7.5,8.25,7.5C5.9,7.5,4,9.4,4,11.75C4,14.1,5.9,16,8.25,16 s4.25-1.9,4.25-4.25c0-0.9-0.28-1.74-0.76-2.43l2.76-2.76V8.5H16V4z M8.25,14.5c-1.52,0-2.75-1.23-2.75-2.75S6.73,9,8.25,9 S11,10.23,11,11.75S9.77,14.5,8.25,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flood\": {\n    \"name\": \"flood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.66,15.5c1.01,0,1.3-0.65,2.42-0.9l-0.91-3.39l3.86-1.04l1.42,5.31c1.03-0.07,1.3-0.85,2.85-0.96 L16.16,6.5l-5.74-2.09L6.5,9.09l1.7,6.36C8.33,15.48,8.48,15.5,8.66,15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.67,19c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1 v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1c1.95,0,2.1-1,3.34-1c1.22,0,1.4,1,3.33,1c1.93,0,2.1-1,3.33-1c1.22,0,1.4,1,3.33,1 v-2C20.76,20,20.62,19,18.67,19z\\\"></path><path d=\\\"M8.68,17.5c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1v-2 c-0.63,0-1-0.28-1.48-0.55l-2.02-7.53l2.09,0.85l0.74-1.86L9.78,2L2,11.61l1.57,1.23l1.39-1.78l0.93,3.48 c-0.18-0.02-0.35-0.05-0.56-0.05c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1C6.54,16.5,6.77,17.5,8.68,17.5z M10.42,4.41 l5.74,2.09l2.15,8.02c-1.54,0.11-1.82,0.89-2.85,0.96l-1.42-5.31l-3.86,1.04l0.91,3.39c-1.12,0.25-1.41,0.9-2.42,0.9 c-0.18,0-0.33-0.02-0.45-0.05L6.5,9.09L10.42,4.41z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.66,3.81L5.19,8.24l1.35,5.05C6.76,13.4,7,13.5,7.34,13.5c0.72,0,0.99-0.42,1.67-0.65L8.18,9.76 l3.86-1.04l1.24,4.65c0.55-0.24,0.99-0.79,2.41-0.65l-1.83-6.82L8.66,3.81z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.67,16.5c-0.96,0-1.13-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8c-1,0-1.1-0.8-2.66-0.8c-1.56,0-1.68,0.8-2.67,0.8V18 c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8c1.55,0,1.68-0.8,2.66-0.8 c0.96,0,1.13,0.8,2.66,0.8v-1.5c-1,0-1.1-0.8-2.66-0.8C13.77,15.7,13.67,16.5,12.67,16.5z\\\"></path><path d=\\\"M17.44,13.39L15.62,6.6l1.28,0.51l0.56-1.39L8.17,2L2,9.87l1.18,0.93l0.85-1.08l0.8,3c-0.06,0-0.1-0.01-0.16-0.01 c-1.56,0-1.68,0.8-2.67,0.8V15c1.56,0,1.68-0.8,2.67-0.8c1,0,1.1,0.8,2.66,0.8c1.56,0,1.68-0.8,2.67-0.8c0.96,0,1.13,0.8,2.66,0.8 c1.55,0,1.68-0.8,2.66-0.8c0.96,0,1.13,0.8,2.66,0.8v-1.5C17.78,13.5,17.6,13.46,17.44,13.39z M13.29,13.37l-1.24-4.65L8.18,9.76 l0.83,3.09c-0.69,0.23-0.96,0.65-1.67,0.65c-0.34,0-0.57-0.1-0.8-0.22L5.19,8.24l3.47-4.42l5.22,2.1l1.83,6.82 C14.29,12.59,13.84,13.14,13.29,13.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"kitesurfing\": {\n    \"name\": \"kitesurfing\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M6,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S6,4.1,6,3z M20.06,1h-2.12L15.5,3.44l1.06,1.06L20.06,1z M22,23v-2h-1 c-1.04,0-2.08-0.35-3-1c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75 c1.89,1,4.11,1,6,0c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z M21,13.28c0,1.44-2.19,3.62-5.04,5.58 C15.65,18.95,15.33,19,15,19c-1.2,0-2.27-0.66-3-1.5c-0.73,0.84-1.8,1.5-3,1.5c-0.94,0-1.81-0.41-2.49-0.99 c0.46-0.39,0.96-0.78,1.49-1.17l-1.55-2.97C6.15,13.3,6,12.64,6,12V8c0-1.1,0.9-2,2-2h3c1.38,0,2.63-0.56,3.54-1.46l1.41,1.41 C14.68,7.21,12.93,8,11,8H9.6l0,3.5h2.8l1.69,1.88c1.95-0.84,3.77-1.38,5.06-1.38C19.99,12,21,12.25,21,13.28z M12.2,14.27 l-0.7-0.77L9,13.6l0.83,2.01C10.42,15.23,11.64,14.55,12.2,14.27z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M8.26,3c0,0.97-0.78,1.75-1.75,1.75S4.76,3.97,4.76,3s0.78-1.75,1.75-1.75S8.26,2.03,8.26,3z M16.33,1h-1.41l-2.52,2.51 l0.71,0.71L16.33,1z M15,16.5c-1.53,1.33-3.48,1.33-5,0c-1.52,1.33-3.47,1.33-5,0c-0.76,0.67-1.63,1-2.5,1H2V19h0.5 c0.86,0,1.71-0.2,2.5-0.6c1.58,0.8,3.42,0.8,5,0c1.57,0.8,3.42,0.8,5,0c0.79,0.4,1.64,0.6,2.5,0.6H18l0-1.5h-0.5 C16.63,17.5,15.76,17.17,15,16.5z M15.52,10c-1.1,0-2.7,0.49-4.39,1.25L10,10H8V7h1c1.51,0,2.86-0.67,3.78-1.72l-1.07-1.07 C11.07,5,10.09,5.5,9,5.5H6.5C5.67,5.5,5,6.17,5,7v1.46v2.06c0,0.32,0.07,0.63,0.22,0.91l1.28,2.52c-0.42,0.31-0.82,0.63-1.19,0.94 C5.9,15.53,6.66,16,7.5,16c1,0,1.89-0.66,2.5-1.5c0.55,0.76,1.33,1.37,2.22,1.48C14.85,14.3,17,12.3,17,11.02 C17,10.2,16.19,10,15.52,10z M7.88,13L7.3,11.5h2.03l0.39,0.44C9.24,12.19,8.36,12.69,7.88,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sentiment_neutral\": {\n    \"name\": \"sentiment_neutral\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 14h6v1.5H9z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"water_drop\": {\n    \"name\": \"water_drop\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4.67c-4.05,3.7-6,6.79-6,9.14c0,3.63,2.65,6.2,6,6.2s6-2.57,6-6.2C18,11.46,16.05,8.36,12,4.67z M12.28,18.99c-2.13,0.13-4.62-1.09-5.19-4.12C7.01,14.42,7.37,14,7.83,14c0.37,0,0.67,0.26,0.74,0.62 c0.41,2.23,2.28,2.98,3.64,2.87c0.43-0.02,0.79,0.32,0.79,0.75C13,18.64,12.68,18.97,12.28,18.99z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20c-3.35,0-6-2.57-6-6.2 c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z M7.83,14c0.37,0,0.67,0.26,0.74,0.62 c0.41,2.22,2.28,2.98,3.64,2.87c0.43-0.02,0.79,0.32,0.79,0.75c0,0.4-0.32,0.73-0.72,0.75c-2.13,0.13-4.62-1.09-5.19-4.12 C7.01,14.42,7.37,14,7.83,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.97C8.1,5.7,5,9.03,5,11.5c0,2.76,2.24,5,5,5s5-2.24,5-5C15,9.03,11.9,5.7,10,3.97z M10.58,15.46 c-2.23,0.31-4.22-1.23-4.54-3.39C6,11.77,6.23,11.5,6.54,11.5c0.25,0,0.46,0.18,0.5,0.43c0.24,1.66,1.79,2.77,3.4,2.54 c0.3-0.04,0.57,0.19,0.57,0.49C11,15.24,10.8,15.43,10.58,15.46z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c0,0-6.5,5.16-6.5,9.5c0,3.59,2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5C16.5,7.16,10,2,10,2z M10,16.5c-2.76,0-5-2.24-5-5 c0-2.47,3.1-5.8,5-7.53c1.9,1.73,5,5.05,5,7.53C15,14.26,12.76,16.5,10,16.5z M7.03,11.93c0.24,1.66,1.79,2.77,3.4,2.54 c0.3-0.04,0.57,0.19,0.57,0.49c0,0.28-0.2,0.47-0.42,0.5c-2.23,0.31-4.22-1.23-4.54-3.39C6,11.77,6.23,11.5,6.54,11.5 C6.79,11.5,7,11.68,7.03,11.93z\\\"></path>\"\n      }\n    }\n  },\n  \"co2\": {\n    \"name\": \"co2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,9h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-4C15,9.45,14.55,9,14,9z M13.5,13.5h-2v-3h2V13.5z M8,13v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H6.5v-0.5h-2v3h2V13H8z M20.5,15.5h-2 v1h3V18H17v-2.5c0-0.55,0.45-1,1-1h2v-1h-3V12h3.5c0.55,0,1,0.45,1,1v1.5C21.5,15.05,21.05,15.5,20.5,15.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.5,8h-2C9.22,8,9,8.22,9,8.5v3C9,11.78,9.22,12,9.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C12,8.22,11.78,8,11.5,8z M11,11h-1 V9h1V11z M17,14h-3v-2c0-0.28,0.22-0.5,0.5-0.5H16V11h-2v-1h2.5c0.28,0,0.5,0.22,0.5,0.5V12c0,0.28-0.22,0.5-0.5,0.5H15V13h2V14z M4,11.34V8.67C4,8.3,4.3,8,4.67,8h1.66C6.7,8,7,8.3,7,8.67v0.66H6V9H5v2h1v-0.34h1v0.67C7,11.7,6.7,12,6.34,12H4.67 C4.3,12,4,11.7,4,11.34z\\\"></path>\"\n      }\n    }\n  },\n  \"sign_language\": {\n    \"name\": \"sign_language\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,13.2V15h-2v7h4c0.55,0,1-0.45,1-1v-4.53c0-0.27-0.11-0.54-0.31-0.73L14,13.2z M15.38,9l1.93-1.87 l1.38,1.45L20,7.34v3.7c0,0.28-0.11,0.54-0.31,0.73l-0.7,0.66L15.38,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.49,13l-0.93-1.86c-0.37-0.74-0.07-1.64,0.67-2.01L12.49,9l5.73,5.46c0.5,0.47,0.78,1.13,0.78,1.81v5.23 c0,1.38-1.12,2.5-2.5,2.5h-11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H10v-1H4c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h6v-1H3 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h7v-1H4.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1H12.49z M14,13.2V15h-2v7h4 c0.55,0,1-0.45,1-1v-4.53c0-0.27-0.11-0.54-0.31-0.73L14,13.2z M11.78,7.12c-0.84,0.4-1.17,0.62-1.63,1.19l-2.7-2.85 c-0.38-0.4-0.36-1.03,0.04-1.41c0.4-0.38,1.03-0.36,1.41,0.04L11.78,7.12z M9.64,9.21C9.41,9.76,9.35,10.45,9.44,11H8.58L6.31,8.61 C5.93,8.21,5.94,7.58,6.35,7.2c0.4-0.38,1.03-0.36,1.41,0.04L9.64,9.21z M20.33,13.91l0.88-0.83c0.5-0.47,0.79-1.13,0.79-1.82V3.35 l-0.27-0.1c-0.78-0.28-1.64,0.12-1.92,0.9L19.1,6.11l-5.5-5.8c-0.38-0.4-1.01-0.42-1.41-0.04c-0.4,0.38-0.42,1.01-0.04,1.41 l3.79,3.99l-0.73,0.69l-4.82-5.08c-0.38-0.4-1.01-0.42-1.41-0.04c-0.4,0.38-0.42,1.01-0.04,1.41l3.78,3.98L15.38,9l1.93-1.87 l1.38,1.45L20,7.34v3.7c0,0.28-0.11,0.54-0.31,0.73l-0.7,0.66l0.61,0.58C19.89,13.28,20.13,13.58,20.33,13.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.5,10.9v1.35H10v5.25h3.5c0.28,0,0.5-0.22,0.5-0.5v-3.49c0-0.14-0.06-0.27-0.15-0.36L11.5,10.9z M12.43,7.85l1.55-1.51l1.03,1.09L16,6.51v3.23c0,0.14-0.06,0.27-0.16,0.36l-0.6,0.57L12.43,7.85z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.37,10.75l-0.7-1.39c-0.28-0.56-0.05-1.23,0.5-1.51l0.19-0.1l4.51,4.3c0.4,0.38,0.62,0.9,0.62,1.45V17c0,1.1-0.9,2-2,2 H5.12c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75H8.5v-0.75H4c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75h4.5V14.5H3.25c-0.41,0-0.75-0.34-0.75-0.75C2.5,13.34,2.84,13,3.25,13H8.5v-0.75H4.38 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75H10.37z M11.5,10.9v1.35H10v5.25h3.5c0.28,0,0.5-0.22,0.5-0.5v-3.49 c0-0.14-0.06-0.27-0.15-0.36L11.5,10.9z M9.84,6.34C9.21,6.64,8.96,6.8,8.61,7.23L6.59,5.09C6.3,4.79,6.32,4.32,6.62,4.03 c0.3-0.29,0.78-0.27,1.06,0.03L9.84,6.34z M8.23,7.91C8.06,8.32,8.01,8.84,8.08,9.25H7.43l-1.7-1.79C5.45,7.16,5.46,6.68,5.76,6.4 c0.3-0.29,0.78-0.27,1.06,0.03L8.23,7.91z M15.02,7.43L16,6.51v3.23c0,0.14-0.06,0.27-0.16,0.36l-0.6,0.57l0.46,0.44 c0.21,0.2,0.39,0.43,0.55,0.68l0.62-0.58c0.4-0.38,0.63-0.91,0.63-1.46V3.52l-0.2-0.07c-0.58-0.21-1.23,0.09-1.44,0.67l-0.53,1.46 L11.2,1.23c-0.29-0.3-0.76-0.31-1.06-0.03c-0.3,0.29-0.31,0.76-0.03,1.06l2.84,2.99l-0.54,0.52L8.79,1.97 c-0.29-0.3-0.76-0.31-1.06-0.03C7.43,2.22,7.42,2.7,7.7,3l2.83,2.99l1.89,1.87l1.55-1.51L15.02,7.43z\\\"></path></g>\"\n      }\n    }\n  },\n  \"people\": {\n    \"name\": \"people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"8.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M4.34 17h9.32c-.84-.58-2.87-1.25-4.66-1.25s-3.82.67-4.66 1.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z\\\"></path>\"\n      }\n    }\n  },\n  \"outdoor_grill\": {\n    \"name\": \"outdoor_grill\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.58,10H7.42c0.77,1.76,2.54,3,4.58,3S15.81,11.76,16.58,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,22c1.66,0,3-1.34,3-3s-1.34-3-3-3c-1.3,0-2.4,0.84-2.82,2H9.14l1.99-3.06C11.42,14.98,11.71,15,12,15 s0.58-0.02,0.87-0.06l1.02,1.57c0.42-0.53,0.96-0.95,1.6-1.21l-0.6-0.93C17.31,13.27,19,10.84,19,8H5c0,2.84,1.69,5.27,4.12,6.37 l-3.95,6.08c-0.3,0.46-0.17,1.08,0.29,1.38h0c0.46,0.3,1.08,0.17,1.38-0.29l1-1.55h6.34C14.6,21.16,15.7,22,17,22z M17,18 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C16,18.45,16.45,18,17,18z M7.42,10h9.16c-0.77,1.76-2.54,3-4.58,3 S8.19,11.76,7.42,10z\\\"></path><circle cx=\\\"17\\\" cy=\\\"19\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M9.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C9.1,3.54,8.84,3.27,9.06,2H8.07C7.86,3.11,8.1,4.05,8.96,4.96 C9.18,5.2,9.75,5.63,9.41,7z\\\"></path><path d=\\\"M11.89,7h1c0.15-1.15,0.23-1.64-0.89-2.96c-0.42-0.5-0.68-0.78-0.46-2.04h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C11.67,5.2,12.24,5.63,11.89,7z\\\"></path><path d=\\\"M14.41,7h1c0.15-1.15,0.23-1.64-0.89-2.96C14.1,3.54,13.84,3.27,14.06,2h-0.99c-0.21,1.11,0.03,2.05,0.89,2.96 C14.18,5.2,14.75,5.63,14.41,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.87,8H6.13c0.45,1.72,2.01,3,3.87,3C11.86,11,13.43,9.72,13.87,8z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"14\\\" cy=\\\"15\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><g><path d=\\\"M15.66,13.88c-0.14-0.21-0.33-0.4-0.54-0.54C14.8,13.13,14.41,13,14,13s-0.8,0.13-1.12,0.34 c-0.21,0.14-0.4,0.33-0.54,0.54c-0.03,0.04-0.04,0.08-0.06,0.12H7.72l1.36-2.09C9.38,11.96,9.69,12,10,12s0.62-0.04,0.92-0.09 l0.78,1.2c0.22-0.26,0.47-0.49,0.76-0.66l-0.54-0.83C13.73,10.86,15,9.08,15,7H5c0,2.08,1.27,3.86,3.08,4.62l-3,4.61 C4.93,16.46,5,16.77,5.23,16.92c0.23,0.15,0.54,0.08,0.69-0.15L7.07,15H12c0,1.1,0.9,2,2,2s2-0.9,2-2 C16,14.59,15.87,14.2,15.66,13.88z M6.13,8h7.75c-0.45,1.72-2.01,3-3.87,3C8.14,11,6.57,9.72,6.13,8z M14,16c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C15,15.55,14.55,16,14,16z\\\"></path><path d=\\\"M8.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C8.37,3.92,8.21,3.76,8.34,3h-0.5C7.71,3.67,7.86,4.23,8.37,4.78 C8.51,4.92,8.85,5.18,8.64,6z\\\"></path><path d=\\\"M10.14,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77C9.87,3.92,9.71,3.76,9.84,3h-0.5C9.21,3.67,9.36,4.23,9.87,4.78 C10.01,4.92,10.35,5.18,10.14,6z\\\"></path><path d=\\\"M11.64,6h0.51c0.09-0.69,0.14-0.98-0.53-1.77c-0.25-0.3-0.41-0.47-0.28-1.23h-0.5c-0.13,0.67,0.02,1.23,0.53,1.78 C11.51,4.92,11.85,5.18,11.64,6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"emoji_flags\": {\n    \"name\": \"emoji_flags\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><polygon opacity=\\\".3\\\" points=\\\"12,9 7,9 7,15 13,15 14,17 18,17 18,11 13,11\\\"></polygon><path d=\\\"M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17 h-4l-1-2H7V9h5l1,2h5V17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><polygon opacity=\\\".3\\\" points=\\\"10.59,8 7,8 7,12 10.41,12 11.41,13 14,13 14,9 11.59,9\\\"></polygon><path d=\\\"M12,8l-1-1H7V5.85C7.29,5.67,7.5,5.37,7.5,5c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V16h1v-3h3l1,1h4V8 H12z M14,13h-2.59l-1-1H7V8h3.59l1,1H14V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"snowboarding\": {\n    \"name\": \"snowboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,3c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S14,4.1,14,3z M21.4,20.09c-0.23-0.05-0.46,0.02-0.64,0.17 c-0.69,0.6-1.64,0.88-2.6,0.67L17,20.69l-1-6.19l-3.32-2.67l1.8-2.89C15.63,10.78,17.68,12,20,12v-2c-1.85,0-3.44-1.12-4.13-2.72 l-0.52-1.21C15.16,5.64,14.61,5,13.7,5H8L5.5,9l1.7,1.06L9.1,7h2.35l-2.51,3.99c-0.28,0.45-0.37,1-0.25,1.52L9.5,16L6,18.35 l-0.47-0.1c-0.96-0.2-1.71-0.85-2.1-1.67c-0.1-0.21-0.28-0.37-0.51-0.42c-0.43-0.09-0.82,0.2-0.9,0.58C1.98,16.88,2,17.05,2.07,17.2 c0.58,1.24,1.71,2.2,3.15,2.51l12.63,2.69c1.44,0.31,2.86-0.11,3.9-1.01c0.13-0.11,0.21-0.26,0.24-0.41 C22.06,20.6,21.83,20.18,21.4,20.09z M8.73,18.93l3.02-2.03l-0.44-3.32l2.84,2.02l0.75,4.64L8.73,18.93z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M12.75,4.5c0.96,0,1.75-0.78,1.75-1.75C14.5,1.78,13.72,1,12.75,1S11,1.78,11,2.75C11,3.72,11.79,4.5,12.75,4.5z M17.6,16.93c-0.14-0.03-0.29,0-0.41,0.09c-0.55,0.4-1.27,0.58-1.99,0.43L14,17.19l-1-4.89l-2.6-2l1.46-2.35 c0.98,1.53,2.69,2.55,4.64,2.55V9c-1.47,0-2.75-0.79-3.45-1.97L12.3,5.76C12.11,5.43,11.68,5,11,5H6.5l-2,3l1.27,0.9L7.3,6.5h1.93 L7.48,9.32c-0.3,0.48-0.38,1.07-0.22,1.61L8,13.5l-2.75,1.83l-0.66-0.14c-0.72-0.15-1.3-0.61-1.65-1.2 c-0.07-0.12-0.19-0.21-0.34-0.24c-0.29-0.06-0.54,0.13-0.59,0.38c-0.03,0.11,0,0.25,0.06,0.36c0.36,0.63,1.09,1.42,2.31,1.68 l8.89,1.89L15,18.42c1.29,0.27,2.3-0.23,2.79-0.59c0.11-0.08,0.17-0.19,0.2-0.31C18.04,17.27,17.9,16.99,17.6,16.93z M7.3,15.76 l2.45-1.62L9.3,11.5l2.34,1.65l0.76,3.7L7.3,15.76z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wallet\": {\n    \"name\": \"wallet\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,10H6c-0.84,0-1.55,0.52-1.85,1.25l11.11,2.72c0.31,0.08,0.64,0,0.88-0.2l3.49-2.92 C19.26,10.34,18.67,10,18,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,6H6C4.9,6,4,6.9,4,8v0.55C4.59,8.21,5.27,8,6,8h12c0.73,0,1.41,0.21,2,0.55V8C20,6.9,19.1,6,18,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,4H6C3.79,4,2,5.79,2,8v8c0,2.21,1.79,4,4,4h12c2.21,0,4-1.79,4-4V8C22,5.79,20.21,4,18,4z M16.14,13.77 c-0.24,0.2-0.57,0.28-0.88,0.2L4.15,11.25C4.45,10.52,5.16,10,6,10h12c0.67,0,1.26,0.34,1.63,0.84L16.14,13.77z M20,8.55 C19.41,8.21,18.73,8,18,8H6C5.27,8,4.59,8.21,4,8.55V8c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2V8.55z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,8.5c-0.57,0-1.06,0.32-1.31,0.79l8.95,2.19c0.23,0.06,0.48,0,0.66-0.15l2.8-2.34 C15.82,8.69,15.43,8.5,15,8.5H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,5.5H5C4.17,5.5,3.5,6.17,3.5,7v0.42C3.94,7.16,4.45,7,5,7h10c0.55,0,1.06,0.16,1.5,0.42V7 C16.5,6.17,15.83,5.5,15,5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,4H5C3.34,4,2,5.34,2,7v6c0,1.66,1.34,3,3,3h10c1.66,0,3-1.34,3-3V7C18,5.34,16.66,4,15,4z M13.3,11.33 c-0.18,0.15-0.43,0.21-0.66,0.15L3.69,9.29C3.94,8.82,4.43,8.5,5,8.5h10c0.43,0,0.82,0.19,1.1,0.49L13.3,11.33z M16.5,7.42 C16.06,7.16,15.55,7,15,7H5C4.45,7,3.94,7.16,3.5,7.42V7c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5V7.42z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_3\": {\n    \"name\": \"person_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,10h4c0.8,0,1.34-0.94,0.76-1.63c-0.87-1.04-0.26-2-0.26-2.37c0-0.41-0.24-0.77-0.62-0.92 c-0.29-0.12-0.55-0.31-0.75-0.54C12.96,4.33,12.58,4,12,4s-0.96,0.33-1.13,0.53c-0.2,0.24-0.46,0.42-0.75,0.54 C9.74,5.23,9.5,5.59,9.5,6c0,0.37,0.61,1.33-0.26,2.37C8.66,9.06,9.2,10,10,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.48,16.34C16.29,15.73,14.37,15,12,15c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18h12 v-0.78C18,16.84,17.8,16.5,17.48,16.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z M18,18H6v-0.78c0-0.38,0.2-0.72,0.52-0.88C7.71,15.73,9.63,15,12,15 c2.37,0,4.29,0.73,5.48,1.34C17.8,16.5,18,16.84,18,17.22V18z\\\"></path><path d=\\\"M10,12c0.17,0,3.83,0,4,0c1.66,0,3-1.34,3-3c0-0.73-0.27-1.4-0.71-1.92C16.42,6.75,16.5,6.38,16.5,6 c0-1.25-0.77-2.32-1.86-2.77C14,2.48,13.06,2,12,2s-2,0.48-2.64,1.23C8.27,3.68,7.5,4.75,7.5,6c0,0.38,0.08,0.75,0.21,1.08 C7.27,7.6,7,8.27,7,9C7,10.66,8.34,12,10,12z M9.24,8.37C10.11,7.33,9.5,6.37,9.5,6c0-0.41,0.24-0.77,0.62-0.92 c0.29-0.12,0.55-0.31,0.75-0.54C11.04,4.33,11.42,4,12,4s0.96,0.33,1.13,0.53c0.2,0.24,0.46,0.42,0.75,0.54 C14.26,5.23,14.5,5.59,14.5,6c0,0.37-0.61,1.33,0.26,2.37C15.34,9.06,14.8,10,14,10h-4C9.2,10,8.66,9.06,9.24,8.37z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,12.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C12.98,12.9,11.5,12.5,10,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.4,8.5h3.2c0.73,0,1.2-0.85,0.68-1.47c-0.35-0.42-0.45-1-0.25-1.51c0.19-0.49-0.07-0.98-0.49-1.15 c-0.22-0.09-0.41-0.23-0.56-0.41C10.83,3.79,10.5,3.5,10,3.5S9.17,3.79,9.02,3.96C8.87,4.14,8.68,4.28,8.46,4.37 C8.03,4.55,7.78,5.03,7.97,5.52c0.2,0.51,0.1,1.09-0.25,1.51C7.2,7.65,7.68,8.5,8.4,8.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.4,10c0.14,0,3.06,0,3.2,0c1.33,0,2.4-1.07,2.4-2.4c0-0.59-0.22-1.12-0.57-1.53c0.1-0.27,0.17-0.56,0.17-0.87 c0-1-0.61-1.86-1.49-2.22C11.6,2.39,10.85,2,10,2S8.4,2.39,7.89,2.98C7.01,3.34,6.4,4.2,6.4,5.2c0,0.31,0.06,0.6,0.17,0.87 C6.22,6.48,6,7.01,6,7.6C6,8.93,7.07,10,8.4,10z M7.72,7.03c0.35-0.42,0.45-1,0.25-1.51C7.78,5.03,8.03,4.55,8.46,4.37 c0.22-0.09,0.41-0.23,0.56-0.41C9.17,3.79,9.5,3.5,10,3.5s0.83,0.29,0.98,0.46c0.15,0.18,0.35,0.32,0.56,0.41 c0.43,0.18,0.68,0.66,0.49,1.15c-0.2,0.51-0.1,1.09,0.25,1.51C12.8,7.65,12.33,8.5,11.6,8.5H8.4C7.68,8.5,7.2,7.65,7.72,7.03z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z M14.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C7.02,12.9,8.5,12.5,10,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"construction\": {\n    \"name\": \"construction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8.48\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.8717 17.6255)\\\" width=\\\"3\\\" x=\\\"16.34\\\" y=\\\"12.87\\\"></rect><path d=\\\"M17.5,10c1.93,0,3.5-1.57,3.5-3.5c0-0.58-0.16-1.12-0.41-1.6l-2.7,2.7L16.4,6.11l2.7-2.7C18.62,3.16,18.08,3,17.5,3 C15.57,3,14,4.57,14,6.5c0,0.41,0.08,0.8,0.21,1.16l-1.85,1.85l-1.78-1.78l0.71-0.71L9.88,5.61L12,3.49 c-1.17-1.17-3.07-1.17-4.24,0L4.22,7.03l1.41,1.41H2.81L2.1,9.15l3.54,3.54l0.71-0.71V9.15l1.41,1.41l0.71-0.71l1.78,1.78 l-7.41,7.41l2.12,2.12L16.34,9.79C16.7,9.92,17.09,10,17.5,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.3383 13.8538)\\\" width=\\\"2\\\" x=\\\"13.05\\\" y=\\\"10.62\\\"></rect><path d=\\\"M14.23,8.98c1.38,0,2.5-1.12,2.5-2.5c0-0.51-0.15-0.98-0.42-1.38l-2.08,2.08l-0.71-0.71l2.08-2.08 c-0.4-0.26-0.87-0.42-1.38-0.42c-1.38,0-2.5,1.12-2.5,2.5c0,0.32,0.07,0.63,0.18,0.91L10.69,8.6L9.64,7.54l0.71-0.71L8.93,5.42 L10.34,4C9.56,3.22,8.29,3.22,7.51,4L4.69,6.83l1.06,1.06l-2.13,0L3.27,8.24l2.83,2.83l0.35-0.35L6.46,8.6l1.06,1.06l0.71-0.71 l1.06,1.06l-4.6,4.6l1.41,1.41l7.22-7.22C13.6,8.91,13.91,8.98,14.23,8.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"elderly\": {\n    \"name\": \"elderly\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M20,12.5V23h-1V12.5c0-0.28-0.22-0.5-0.5-0.5 S18,12.22,18,12.5v1h-1v-0.69c-1.46-0.38-2.7-1.29-3.51-2.52C13.18,11.16,13,12.07,13,13c0,0.23,0.02,0.46,0.03,0.69L15,16.5V23h-2 v-5l-1.78-2.54L11,19l-3,4l-1.6-1.2L9,18.33V13c0-1.15,0.18-2.29,0.5-3.39L8,10.46V14H6V9.3l5.4-3.07l0,0.01 c0.59-0.31,1.32-0.33,1.94,0.03c0.36,0.21,0.63,0.51,0.8,0.85l0,0l0.79,1.67C15.58,10.1,16.94,11,18.5,11C19.33,11,20,11.67,20,12.5 z\\\"></path>\"\n      }\n    }\n  },\n  \"face_5\": {\n    \"name\": \"face_5\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-1.12,0.23-2.18,0.65-3.15C4.74,8.94,4.86,9,5,9c0.28,0,0.5-0.22,0.5-0.5c0-0.25-0.19-0.45-0.43-0.49 c0.15-0.26,0.32-0.51,0.49-0.75C5.53,7.34,5.5,7.41,5.5,7.5C5.5,7.78,5.72,8,6,8s0.5-0.22,0.5-0.5C6.5,7.22,6.28,7,6,7 C5.87,7,5.75,7.05,5.66,7.13c0.52-0.68,1.15-1.28,1.86-1.76C7.51,5.41,7.5,5.45,7.5,5.5C7.5,5.78,7.72,6,8,6s0.5-0.22,0.5-0.5 c0-0.24-0.17-0.43-0.4-0.48c0.16-0.09,0.32-0.17,0.49-0.25C8.68,4.91,8.83,5,9,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.03-0.01-0.06-0.02-0.09c0.39-0.13,0.79-0.23,1.21-0.3C10.58,4.21,10.5,4.34,10.5,4.5C10.5,4.78,10.72,5,11,5 s0.5-0.22,0.5-0.5c0-0.21-0.13-0.38-0.3-0.46C11.46,4.01,11.73,4,12,4s0.54,0.01,0.8,0.04c-0.18,0.08-0.3,0.25-0.3,0.46 C12.5,4.78,12.72,5,13,5s0.5-0.22,0.5-0.5c0-0.16-0.08-0.29-0.19-0.38c0.41,0.07,0.82,0.17,1.21,0.3 C14.51,4.44,14.5,4.47,14.5,4.5C14.5,4.78,14.72,5,15,5c0.17,0,0.32-0.09,0.41-0.23c0.17,0.08,0.33,0.16,0.49,0.25 c-0.23,0.05-0.4,0.24-0.4,0.48C15.5,5.78,15.72,6,16,6s0.5-0.22,0.5-0.5c0-0.05-0.01-0.09-0.03-0.13 c0.71,0.48,1.34,1.08,1.86,1.76C18.25,7.05,18.13,7,18,7c-0.28,0-0.5,0.22-0.5,0.5C17.5,7.78,17.72,8,18,8s0.5-0.22,0.5-0.5 c0-0.09-0.03-0.16-0.07-0.23c0.18,0.24,0.34,0.49,0.49,0.75C18.69,8.05,18.5,8.25,18.5,8.5C18.5,8.78,18.72,9,19,9 c0.14,0,0.26-0.06,0.35-0.15C19.77,9.82,20,10.88,20,12C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"16\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"4.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"13\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"7\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"7.5\\\" r=\\\".5\\\"></circle><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5 c0-0.71,0.12-1.39,0.33-2.03C3.88,7.99,3.94,8,4,8c0.28,0,0.5-0.22,0.5-0.5c0-0.2-0.12-0.37-0.29-0.45 C4.3,6.88,4.4,6.71,4.51,6.54C4.53,6.8,4.74,7,5,7c0.28,0,0.5-0.22,0.5-0.5C5.5,6.22,5.28,6,5,6C4.95,6,4.91,6.01,4.87,6.03 c0.22-0.28,0.45-0.54,0.71-0.77C5.53,5.33,5.5,5.41,5.5,5.5C5.5,5.78,5.72,6,6,6s0.5-0.22,0.5-0.5C6.5,5.22,6.28,5,6,5 C5.93,5,5.87,5.01,5.81,5.04c0.22-0.19,0.45-0.35,0.7-0.51C6.52,4.79,6.73,5,7,5c0.28,0,0.5-0.22,0.5-0.5 c0-0.17-0.09-0.31-0.21-0.4c0.15-0.07,0.3-0.13,0.45-0.19C7.81,3.96,7.9,4,8,4c0.21,0,0.39-0.13,0.46-0.31 C8.8,3.61,9.15,3.55,9.51,3.53C9.52,3.79,9.73,4,10,4s0.48-0.21,0.49-0.47c0.36,0.03,0.71,0.08,1.04,0.17C11.61,3.87,11.79,4,12,4 c0.1,0,0.19-0.04,0.26-0.09c0.15,0.06,0.3,0.12,0.45,0.19c-0.13,0.09-0.21,0.23-0.21,0.4C12.5,4.78,12.72,5,13,5 c0.27,0,0.48-0.21,0.49-0.47c0.24,0.16,0.48,0.32,0.7,0.51C14.13,5.01,14.07,5,14,5c-0.28,0-0.5,0.22-0.5,0.5 C13.5,5.78,13.72,6,14,6s0.5-0.22,0.5-0.5c0-0.09-0.03-0.17-0.08-0.25c0.26,0.24,0.49,0.5,0.71,0.77C15.09,6.01,15.05,6,15,6 c-0.28,0-0.5,0.22-0.5,0.5C14.5,6.78,14.72,7,15,7c0.26,0,0.47-0.2,0.49-0.46c0.11,0.17,0.2,0.34,0.29,0.51 C15.62,7.13,15.5,7.3,15.5,7.5C15.5,7.78,15.72,8,16,8c0.06,0,0.12-0.01,0.17-0.03C16.38,8.61,16.5,9.29,16.5,10 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sports_esports\": {\n    \"name\": \"sports_esports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.53,7H7.47C6.48,7,5.63,7.74,5.49,8.72L4.4,16.37c-0.03,0.21,0.05,0.35,0.13,0.44 C4.6,16.9,4.73,17,4.94,17c0.15,0,0.29-0.06,0.39-0.16L8.17,14h7.66l2.84,2.84c0.1,0.1,0.24,0.16,0.39,0.16 c0.21,0,0.34-0.1,0.42-0.19c0.08-0.09,0.16-0.23,0.13-0.44l-1.09-7.66C18.37,7.74,17.52,7,16.53,7z M11,11H9v2H8v-2H6v-1h2V8h1v2 h2V11z M15,10c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C16,9.55,15.55,10,15,10z M17,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C18,12.55,17.55,13,17,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.58,16.09l-1.09-7.66C20.21,6.46,18.52,5,16.53,5H7.47C5.48,5,3.79,6.46,3.51,8.43l-1.09,7.66 C2.2,17.63,3.39,19,4.94,19h0c0.68,0,1.32-0.27,1.8-0.75L9,16h6l2.25,2.25c0.48,0.48,1.13,0.75,1.8,0.75h0 C20.61,19,21.8,17.63,21.58,16.09z M19.48,16.81C19.4,16.9,19.27,17,19.06,17c-0.15,0-0.29-0.06-0.39-0.16L15.83,14H8.17 l-2.84,2.84C5.23,16.94,5.09,17,4.94,17c-0.21,0-0.34-0.1-0.42-0.19c-0.08-0.09-0.16-0.23-0.13-0.44l1.09-7.66 C5.63,7.74,6.48,7,7.47,7h9.06c0.99,0,1.84,0.74,1.98,1.72l1.09,7.66C19.63,16.58,19.55,16.72,19.48,16.81z\\\"></path><polygon points=\\\"9,8 8,8 8,10 6,10 6,11 8,11 8,13 9,13 9,11 11,11 11,10 9,10\\\"></polygon><circle cx=\\\"17\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.21,7H6.79C6.28,7,5.86,7.38,5.8,7.89l-0.62,5.76c-0.02,0.13,0.04,0.21,0.07,0.25 c0.03,0.04,0.1,0.1,0.22,0.1c0.08,0,0.15-0.03,0.21-0.09L7.59,12h4.83l1.91,1.91c0.06,0.06,0.13,0.09,0.21,0.09 c0.11,0,0.19-0.06,0.22-0.1s0.09-0.12,0.07-0.23L14.2,7.89C14.14,7.38,13.72,7,13.21,7z M9.25,9.75H8V11H7.5V9.75H6.25v-0.5H7.5V8 H8v1.25h1.25V9.75z M11.5,9C11.22,9,11,8.78,11,8.5C11,8.22,11.22,8,11.5,8S12,8.22,12,8.5C12,8.78,11.78,9,11.5,9z M12.5,11 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5C13,10.78,12.78,11,12.5,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.82,13.55l-0.62-5.76C15.08,6.77,14.23,6,13.21,6H6.79C5.77,6,4.92,6.77,4.81,7.78l-0.62,5.76 C4.09,14.32,4.69,15,5.46,15c0.34,0,0.67-0.14,0.91-0.38L8,13h4l1.62,1.62c0.24,0.24,0.57,0.38,0.91,0.38 C15.31,15,15.91,14.32,15.82,13.55z M14.76,13.9c-0.03,0.04-0.1,0.1-0.22,0.1c-0.08,0-0.15-0.03-0.21-0.09L12.41,12H7.59 l-1.91,1.91C5.62,13.97,5.54,14,5.46,14c-0.11,0-0.19-0.06-0.22-0.1c-0.03-0.04-0.09-0.12-0.07-0.25L5.8,7.89 C5.86,7.38,6.28,7,6.79,7h6.41c0.51,0,0.94,0.38,0.99,0.89l0.63,5.78C14.84,13.78,14.79,13.86,14.76,13.9z\\\"></path><polygon points=\\\"8,8 7.5,8 7.5,9.25 6.25,9.25 6.25,9.75 7.5,9.75 7.5,11 8,11 8,9.75 9.25,9.75 9.25,9.25 8,9.25\\\"></polygon><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"mood\": {\n    \"name\": \"mood\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_baseball\": {\n    \"name\": \"sports_baseball\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5.61,7.22C4.6,8.55,4,10.2,4,12s0.6,3.45,1.61,4.78C7.06,15.69,8,13.95,8,12S7.06,8.31,5.61,7.22z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,12c0-2.52,1.17-4.77,3-6.24C15.63,4.66,13.89,4,12,4S8.37,4.66,7,5.76c1.83,1.47,3,3.71,3,6.24 s-1.17,4.77-3,6.24c1.37,1.1,3.11,1.76,5,1.76s3.63-0.66,5-1.76C15.17,16.77,14,14.52,14,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.39,7.22C16.94,8.31,16,10.05,16,12s0.94,3.69,2.39,4.78C19.4,15.45,20,13.8,20,12S19.4,8.55,18.39,7.22 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M5.61,16.78C4.6,15.45,4,13.8,4,12 s0.6-3.45,1.61-4.78C7.06,8.31,8,10.05,8,12S7.06,15.69,5.61,16.78z M12,20c-1.89,0-3.63-0.66-5-1.76c1.83-1.47,3-3.71,3-6.24 S8.83,7.23,7,5.76C8.37,4.66,10.11,4,12,4s3.63,0.66,5,1.76c-1.83,1.47-3,3.71-3,6.24s1.17,4.77,3,6.24 C15.63,19.34,13.89,20,12,20z M18.39,16.78C16.94,15.69,16,13.95,16,12s0.94-3.69,2.39-4.78C19.4,8.55,20,10.2,20,12 S19.4,15.45,18.39,16.78z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,10c0-2,0.99-3.77,2.5-4.86C12.51,4.42,11.31,4,10,4S7.49,4.42,6.5,5.14C8.01,6.23,9,8,9,10 s-0.99,3.77-2.5,4.86C7.49,15.58,8.69,16,10,16s2.51-0.42,3.5-1.14C11.99,13.77,11,12,11,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,10c0-1.76-0.91-3.3-2.29-4.19C4.65,6.89,4,8.37,4,10s0.65,3.11,1.71,4.19C7.09,13.3,8,11.76,8,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.29,5.81C12.91,6.7,12,8.24,12,10s0.91,3.3,2.29,4.19C15.35,13.11,16,11.63,16,10S15.35,6.89,14.29,5.81 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M4,10c0-1.63,0.65-3.11,1.71-4.19 C7.09,6.7,8,8.24,8,10s-0.91,3.3-2.29,4.19C4.65,13.11,4,11.63,4,10z M10,16c-1.31,0-2.51-0.42-3.5-1.14C8.01,13.77,9,12,9,10 S8.01,6.23,6.5,5.14C7.49,4.42,8.69,4,10,4s2.51,0.42,3.5,1.14C11.99,6.23,11,8,11,10s0.99,3.77,2.5,4.86 C12.51,15.58,11.31,16,10,16z M14.29,14.19C12.91,13.3,12,11.76,12,10s0.91-3.3,2.29-4.19C15.35,6.89,16,8.37,16,10 S15.35,13.11,14.29,14.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sick\": {\n    \"name\": \"sick\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.32,10.56L8.38,9.5L7.32,8.44l1.06-1.06L10.5,9.5l-2.12,2.12L7.32,10.56z M4.5,9c0.03,0,0.05,0.01,0.08,0.01 C5.77,6.07,8.64,4,12,4c2.19,0,4.16,0.88,5.61,2.3c0.15-0.6,0.45-1.29,0.81-1.96C16.68,2.88,14.44,2,11.99,2 c-4.88,0-8.94,3.51-9.81,8.14C2.74,9.44,3.59,9,4.5,9z M21,10.5c-0.42,0-0.82-0.09-1.19-0.22C19.93,10.83,20,11.41,20,12 c0,4.42-3.58,8-8,8c-3.36,0-6.23-2.07-7.42-5.01C4.55,14.99,4.53,15,4.5,15c-0.52,0-1.04-0.14-1.5-0.4 c-0.32-0.18-0.59-0.42-0.82-0.7c0.89,4.61,4.93,8.1,9.8,8.1C17.52,22,22,17.52,22,12c0-0.55-0.06-1.09-0.14-1.62 C21.58,10.45,21.3,10.5,21,10.5z M21,3c0,0-2,2.9-2,4c0,1.1,0.9,2,2,2s2-0.9,2-2C23,5.9,21,3,21,3z M15.62,7.38L13.5,9.5l2.12,2.12 l1.06-1.06L15.62,9.5l1.06-1.06L15.62,7.38z M8.56,17c0.69-1.19,1.97-2,3.44-2s2.75,0.81,3.44,2h1.68c-0.8-2.05-2.79-3.5-5.12-3.5 c-0.87,0-1.7,0.2-2.43,0.57l0,0L5.99,12c0-0.52-0.26-1.02-0.74-1.29c-0.72-0.41-1.63-0.17-2.05,0.55c-0.41,0.72-0.17,1.63,0.55,2.05 c0.48,0.28,1.05,0.25,1.49,0l2.97,1.72l0,0C7.64,15.56,7.18,16.24,6.88,17H8.56z\\\"></path>\"\n      }\n    }\n  },\n  \"nights_stay\": {\n    \"name\": \"nights_stay\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.1 14.15c1.67.48 2.9 2.02 2.9 3.85 0 .68-.19 1.31-.48 1.87.48.09.97.14 1.48.14 1.48 0 2.9-.41 4.13-1.15-2.62-.92-5.23-2.82-6.8-5.86-1.59-3.06-1.55-5.91-1.04-8.1-2.57 1.33-4.3 4.01-4.3 7.1h.02c1.65 0 3.17.83 4.09 2.15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.78 17.51c-2.47 0-6.57-1.33-8.68-5.43-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.61-.26 1.28-.42 1.98-.42 0-3.09 1.73-5.77 4.3-7.1-.5 2.19-.54 5.04 1.04 8.1 1.57 3.04 4.18 4.95 6.8 5.86-1.23.74-2.65 1.15-4.13 1.15-.5 0-1-.05-1.48-.14-.37.7-.94 1.27-1.64 1.64.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-.17.01-.37.02-.57.02z\\\"></path><path d=\\\"M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.5 14.5c0 .44-.12.85-.33 1.21.58.19 1.2.29 1.84.29 1.4 0 2.74-.49 3.79-1.35-1.99-.48-4.11-1.81-5.31-4.14-1.25-2.43-.98-4.65-.46-6.18C5.67 5.14 4 7.37 4 9.99c0 .35.04.69.09 1.02.83.03 1.61.39 2.15 1 1.27.12 2.26 1.19 2.26 2.49z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.46 13.85c-1.73 0-4.6-.93-6.08-3.8-1.63-3.16-.35-5.94.38-7.05C6 3.13 3 6.21 3 9.99c0 .4.04.78.1 1.16.29-.09.59-.15.9-.15.03 0 .06.01.09.01-.05-.33-.09-.67-.09-1.02 0-2.63 1.67-4.85 4.03-5.67-.52 1.53-.79 3.76.46 6.18 1.2 2.33 3.32 3.66 5.31 4.14-1.06.87-2.39 1.36-3.79 1.36-.64 0-1.25-.1-1.83-.29-.18.32-.42.59-.72.81.79.3 1.65.48 2.55.48 2.45 0 4.6-1.26 5.86-3.17-.13.02-.27.02-.41.02z\\\"></path><path d=\\\"M7.5 14.5c0-.83-.67-1.5-1.5-1.5h-.27c-.35-.6-.99-1-1.73-1-1.1 0-2 .9-2 2s.9 2 2 2h2c.83 0 1.5-.67 1.5-1.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_account\": {\n    \"name\": \"switch_account\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8,15.73C9.47,14.06,11.6,13,14,13s4.53,1.06,6,2.73V4H8V15.73z M14,5 c1.66,0,3,1.34,3,3c0,1.66-1.34,3-3,3s-3-1.34-3-3C11,6.34,12.34,5,14,5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M14,11c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C11,9.66,12.34,11,14,11z M14,7c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S13.45,7,14,7z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2 V4C22,2.9,21.1,2,20,2z M10.69,16c0.95-0.63,2.09-1,3.31-1s2.36,0.37,3.31,1H10.69z M20,15.73C18.53,14.06,16.4,13,14,13 s-4.53,1.06-6,2.73V4h12V15.73z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"volcano\": {\n    \"name\": \"volcano\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"16.49,10 12.35,10 10.86,13.74 10.35,15 9,15 7.3,15 5.08,20 19.35,20\\\"></polygon><g><path d=\\\"M18,8h-7l-2,5H6l-4,9h20L18,8z M7.3,15H9h1.35l0.5-1.26l1.5-3.74h4.14l2.86,10H5.08L7.3,15z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.9792 14.2929)\\\" width=\\\"4\\\" x=\\\"16.24\\\" y=\\\"3.76\\\"></rect></g><g><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.5061 8.2929)\\\" width=\\\"2\\\" x=\\\"8.76\\\" y=\\\"2.76\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13.85,8.5 10.17,8.5 9.46,11.36 9.17,12.5 8,12.5 5.99,12.5 4.27,16.5 16.04,16.5\\\"></polygon><g><path d=\\\"M15,7H9l-1,4H5l-3,7h16L15,7z M5.99,12.5H8h1.17l0.28-1.14l0.72-2.86h3.68l2.18,8H4.27L5.99,12.5z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"11.25\\\" y=\\\"1\\\"></rect></g><g><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 1.7627 11.8536)\\\" width=\\\"3\\\" x=\\\"13.69\\\" y=\\\"3.05\\\"></rect></g><g><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1067 7.3403)\\\" width=\\\"1.5\\\" x=\\\"8.06\\\" y=\\\"2.3\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"single_bed\": {\n    \"name\": \"single_bed\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"12\\\"></rect><path d=\\\"M18,10V7c0-1.1-0.9-2-2-2H8C6.9,5,6,5.9,6,7v3c-1.1,0-2,0.9-2,2v5h1.33L6,19h1l0.67-2h8.67L17,19h1l0.67-2H20v-5 C20,10.9,19.1,10,18,10z M13,7h3v3h-3V7z M8,7h3v3H8V7z M18,15H6v-3h12V15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"9\\\"></rect><path d=\\\"M15,8V6c0-0.55-0.45-1-1-1H6C5.45,5,5,5.45,5,6v2C4.45,8,4,8.45,4,9v4h1l0.75,2h0.5L7,13h6l0.75,2h0.5L15,13h1V9 C16,8.45,15.55,8,15,8z M10.5,6H14v2h-3.5V6z M6,6h3.5v2H6V6z M15,12H5V9h10V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"public_off\": {\n    \"name\": \"public_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,8.17l7.88,7.88C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,8.17L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.87,20,13.48,20,12c0-3.35-2.07-6.22-5-7.41V5c0,1.1-0.9,2-2,2h-2V8.17z M21.19,21.19l-1.41,1.41l-2.27-2.27 C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41L21.19,21.19z M11,18 c-1.1,0-2-0.9-2-2v-1l-4.79-4.79C4.08,10.79,4,11.38,4,12c0,4.08,3.05,7.44,7,7.93V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"party_mode\": {\n    \"name\": \"party_mode\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.95 6l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6h-4.05zM7 12c0-2.76 2.24-5 5-5 1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1c-.06-.32-.1-.66-.1-1zm10 0c0 2.76-2.24 5-5 5-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08c.07.32.1.66.1 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12zM9 12c0-1.66 1.34-3 3-3h3.98c-.92-1.21-2.35-2-3.98-2-2.76 0-5 2.24-5 5 0 .34.04.68.1 1h2.08c-.11-.31-.18-.65-.18-1zm6 0c0 1.66-1.34 3-3 3H8.02c.92 1.21 2.35 2 3.98 2 2.76 0 5-2.24 5-5 0-.34-.03-.68-.1-1h-2.08c.11.31.18.65.18 1z\\\"></path>\"\n      }\n    }\n  },\n  \"person\": {\n    \"name\": \"person\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M12 14c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H6zm6-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"ice_skating\": {\n    \"name\": \"ice_skating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M5,16V5h5v1H8.5C8.22,6,8,6.22,8,6.5C8,6.78,8.22,7,8.5,7H10l0.1,1H8.5C8.22,8,8,8.22,8,8.5C8,8.78,8.22,9,8.5,9h1.81 c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C16.4,12.33,17,13.1,17,14v2H5z\\\"></path></g><g><path d=\\\"M21,17c0,1.66-1.34,3-3,3h-2v-2h3v-4c0-1.79-1.19-3.34-2.91-3.82l-2.62-0.74C12.62,9.19,12,8.39,12,7.5V3H3v15h3v2H2v2h16 c2.76,0,5-2.24,5-5H21z M5,16V5h5v1H8.5C8.22,6,8,6.22,8,6.5C8,6.78,8.22,7,8.5,7H10l0.1,1H8.5C8.22,8,8,8.22,8,8.5 C8,8.78,8.22,9,8.5,9h1.81c0.45,1.12,1.4,2.01,2.6,2.36l2.62,0.73C16.4,12.33,17,13.1,17,14v2H5z M14,20H8v-2h6V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,13.5V4H9v1H7.5C7.22,5,7,5.22,7,5.5C7,5.77,7.22,6,7.5,6H9c0,0.57-0.01,0.76,0.03,1H7.5 C7.22,7,7,7.22,7,7.5C7,7.77,7.22,8,7.5,8h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6c0.65,0.18,1.1,0.73,1.1,1.4v2H4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5,14c0,1.38-1.12,2.5-2.5,2.5h-1.5V15H16v-3.5c0-1.35-0.89-2.49-2.2-2.85l-2.2-0.6c-0.65-0.18-1.1-0.77-1.1-1.45V2.5H3 V15h2.5v1.5H2V18h13c2.21,0,4-1.79,4-4H17.5z M4.5,13.5V4H9v1H7.5C7.22,5,7,5.22,7,5.5C7,5.77,7.22,6,7.5,6H9 c0,0.57-0.01,0.76,0.03,1H7.5C7.22,7,7,7.22,7,7.5C7,7.77,7.22,8,7.5,8h1.85c0.38,0.72,1.04,1.28,1.86,1.5l2.19,0.6 c0.65,0.18,1.1,0.73,1.1,1.4v2H4.5z M12,16.5H7V15h5V16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_golf\": {\n    \"name\": \"sports_golf\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,14c2.76,0,5-2.24,5-5s-2.24-5-5-5S7,6.24,7,9S9.24,14,12,14z M14,7c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C13,7.45,13.45,7,14,7z M12,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,5.45,11.45,5,12,5z M10,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1S9,8.55,9,8C9,7.45,9.45,7,10,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,16c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7C8.13,2,5,5.13,5,9C5,12.87,8.13,16,12,16z M12,4c2.76,0,5,2.24,5,5 s-2.24,5-5,5s-5-2.24-5-5S9.24,4,12,4z\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"14\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M7,19h2c1.1,0,2,0.9,2,2v1h2v-1c0-1.1,0.9-2,2-2h2v-2H7V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4s4-1.79,4-4C14,5.79,12.21,4,10,4z M8.5,7C8.22,7,8,6.78,8,6.5 C8,6.22,8.22,6,8.5,6S9,6.22,9,6.5C9,6.78,8.78,7,8.5,7z M10,6C9.72,6,9.5,5.78,9.5,5.5C9.5,5.22,9.72,5,10,5s0.5,0.22,0.5,0.5 C10.5,5.78,10.28,6,10,6z M11.5,7C11.22,7,11,6.78,11,6.5C11,6.22,11.22,6,11.5,6S12,6.22,12,6.5C12,6.78,11.78,7,11.5,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3C7.24,3,5,5.24,5,8s2.24,5,5,5s5-2.24,5-5S12.76,3,10,3z M10,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4 C14,10.21,12.21,12,10,12z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"11.5\\\" cy=\\\"6.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\".5\\\"></circle><path d=\\\"M7,15h1.5c0.55,0,1,0.45,1,1v1h1v-1c0-0.55,0.45-1,1-1H13v-1H7V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"handshake\": {\n    \"name\": \"handshake\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.22,19.85c-0.18,0.18-0.5,0.21-0.71,0c-0.18-0.18-0.21-0.5,0-0.71l3.39-3.39l-1.41-1.41l-3.39,3.39 c-0.19,0.2-0.51,0.19-0.71,0c-0.21-0.21-0.18-0.53,0-0.71l3.39-3.39l-1.41-1.41l-3.39,3.39c-0.18,0.18-0.5,0.21-0.71,0 c-0.19-0.19-0.19-0.51,0-0.71l3.39-3.39L9.24,10.1l-3.39,3.39c-0.18,0.18-0.5,0.21-0.71,0c-0.19-0.2-0.19-0.51,0-0.71L9.52,8.4 l1.87,1.86c0.95,0.95,2.59,0.94,3.54,0c0.98-0.98,0.98-2.56,0-3.54l-1.86-1.86l0.28-0.28c0.78-0.78,2.05-0.78,2.83,0l4.24,4.24 c0.78,0.78,0.78,2.05,0,2.83L12.22,19.85z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.22,19.85c-0.18,0.18-0.5,0.21-0.71,0c-0.18-0.18-0.21-0.5,0-0.71l3.39-3.39l-1.41-1.41l-3.39,3.39 c-0.19,0.2-0.51,0.19-0.71,0c-0.21-0.21-0.18-0.53,0-0.71l3.39-3.39l-1.41-1.41l-3.39,3.39c-0.18,0.18-0.5,0.21-0.71,0 c-0.19-0.19-0.19-0.51,0-0.71l3.39-3.39L9.24,10.1l-3.39,3.39c-0.18,0.18-0.5,0.21-0.71,0c-0.19-0.2-0.19-0.51,0-0.71L9.52,8.4 l1.87,1.86c0.95,0.95,2.59,0.94,3.54,0c0.98-0.98,0.98-2.56,0-3.54l-1.86-1.86l0.28-0.28c0.78-0.78,2.05-0.78,2.83,0l4.24,4.24 c0.78,0.78,0.78,2.05,0,2.83L12.22,19.85z M21.83,13.07c1.56-1.56,1.56-4.09,0-5.66l-4.24-4.24c-1.56-1.56-4.09-1.56-5.66,0 l-0.28,0.28l-0.28-0.28c-1.56-1.56-4.09-1.56-5.66,0L2.17,6.71c-1.42,1.42-1.55,3.63-0.4,5.19l1.45-1.45 C2.83,9.7,2.96,8.75,3.59,8.12l3.54-3.54c0.78-0.78,2.05-0.78,2.83,0l3.56,3.56c0.18,0.18,0.21,0.5,0,0.71 c-0.21,0.21-0.53,0.18-0.71,0L9.52,5.57l-5.8,5.79c-0.98,0.97-0.98,2.56,0,3.54c0.39,0.39,0.89,0.63,1.42,0.7 c0.07,0.52,0.3,1.02,0.7,1.42c0.4,0.4,0.9,0.63,1.42,0.7c0.07,0.52,0.3,1.02,0.7,1.42c0.4,0.4,0.9,0.63,1.42,0.7 c0.07,0.54,0.31,1.03,0.7,1.42c0.47,0.47,1.1,0.73,1.77,0.73c0.67,0,1.3-0.26,1.77-0.73L21.83,13.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.06,7.83c0.58,0.58,0.58,1.54,0,2.12l-6.39,6.4c-0.19,0.19-0.51,0.19-0.71,0s-0.19-0.51,0-0.71l2.47-2.47 l-1.06-1.06l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0s-0.19-0.51,0-0.71l2.47-2.47l-1.06-1.06l-2.47,2.47 c-0.19,0.19-0.51,0.19-0.71,0c-0.19-0.19-0.19-0.51,0-0.71l2.47-2.47L7.85,8.58l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0 c-0.19-0.19-0.19-0.51,0-0.71l3.23-3.23l1.7,1.7c0.78,0.78,2.05,0.78,2.83,0s0.78-2.05,0-2.83l-1.7-1.7l0.34-0.34 c0.58-0.58,1.54-0.58,2.12,0L17.06,7.83\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.12,3.94c0.58-0.58,1.54-0.58,2.12,0l3.11,3.11c0.19,0.19,0.19,0.51,0,0.71c-0.19,0.19-0.51,0.19-0.71,0L7.89,5L3.6,9.28 c-0.78,0.78-0.78,2.05,0,2.83c0.33,0.33,0.76,0.53,1.19,0.57c0.05,0.44,0.24,0.86,0.57,1.19c0.33,0.33,0.76,0.53,1.19,0.57 c0.05,0.44,0.24,0.86,0.57,1.19c0.33,0.33,0.76,0.53,1.19,0.57c0.05,0.44,0.24,0.86,0.57,1.19c0.78,0.78,2.05,0.78,2.83,0l6.39-6.4 c1.17-1.17,1.17-3.07,0-4.24l-3.89-3.89c-1.17-1.17-3.07-1.17-4.24,0L9.65,3.22L9.31,2.88c-1.17-1.17-3.07-1.17-4.24,0L1.88,6.06 C0.83,7.11,0.72,8.75,1.55,9.92l1.09-1.09c-0.26-0.56-0.16-1.24,0.3-1.7L6.12,3.94 M17.06,7.83c0.58,0.58,0.58,1.54,0,2.12 l-6.39,6.4c-0.19,0.19-0.51,0.19-0.71,0s-0.19-0.51,0-0.71l2.47-2.47l-1.06-1.06l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0 s-0.19-0.51,0-0.71l2.47-2.47l-1.06-1.06l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0c-0.19-0.19-0.19-0.51,0-0.71l2.47-2.47L7.85,8.58 l-2.47,2.47c-0.19,0.19-0.51,0.19-0.71,0c-0.19-0.19-0.19-0.51,0-0.71l3.23-3.23l1.7,1.7c0.78,0.78,2.05,0.78,2.83,0 s0.78-2.05,0-2.83l-1.7-1.7l0.34-0.34c0.58-0.58,1.54-0.58,2.12,0L17.06,7.83\\\"></path></g>\"\n      }\n    }\n  },\n  \"group_off\": {\n    \"name\": \"group_off\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.99,8.16C11,8.11,11,8.06,11,8c0-1.1-0.9-2-2-2C8.94,6,8.89,6,8.84,6.01L10.99,8.16z M9,15 c-2.7,0-5.8,1.29-6,2.01V18h12v-0.17l-2.11-2.11C11.76,15.31,10.33,15,9,15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,8c0-1.42-0.5-2.73-1.33-3.76C14.09,4.1,14.53,4,15,4c2.21,0,4,1.79,4,4s-1.79,4-4,4c-0.06,0-0.12,0-0.18,0l-0.77-0.77 C14.65,10.29,15,9.18,15,8z M22.83,20H23v-3c0-2.18-3.58-3.47-6.34-3.87c1.1,0.75,1.95,1.71,2.23,2.94L22.83,20z M9,6 C8.94,6,8.89,6,8.84,6.01l-1.6-1.6C7.77,4.15,8.37,4,9,4c2.21,0,4,1.79,4,4c0,0.63-0.15,1.23-0.41,1.76l-1.6-1.6 C11,8.11,11,8.06,11,8C11,6.9,10.1,6,9,6z M9.17,12C9.11,12,9.06,12,9,12c-2.21,0-4-1.79-4-4c0-0.06,0-0.11,0-0.17L0.69,3.51 L2.1,2.1l19.8,19.8l-1.41,1.41L17,19.83V20H1v-3c0-2.66,5.33-4,8-4c0.37,0,0.8,0.03,1.25,0.08L9.17,12z M9,15 c-2.7,0-5.8,1.29-6,2.01V18h12v-0.17l-2.11-2.11C11.76,15.31,10.33,15,9,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.66,5.54C7.77,5.51,7.88,5.5,8,5.5c0.83,0,1.5,0.67,1.5,1.5c0,0.12-0.01,0.23-0.04,0.34L7.66,5.54z M10.89,13.01 C9.97,12.67,8.99,12.5,8,12.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h8.88 C12.38,14.5,10.89,13.01,10.89,13.01L10.89,13.01z\\\"></path><path d=\\\"M7.66,5.54C7.77,5.51,7.88,5.5,8,5.5c0.83,0,1.5,0.67,1.5,1.5c0,0.12-0.01,0.23-0.04,0.34l1.15,1.15 C10.86,8.05,11,7.54,11,7c0-1.66-1.34-3-3-3C7.46,4,6.95,4.14,6.51,4.39L7.66,5.54z M11.68,9.56C12.19,8.83,12.5,7.95,12.5,7 c0-1.13-0.43-2.15-1.12-2.94C11.58,4.02,11.79,4,12,4c1.66,0,3,1.34,3,3c0,1.62-1.28,2.94-2.88,3L11.68,9.56z M15.41,13.29 c-0.2-0.83-0.69-1.57-1.39-2.06c1.08,0.22,2.1,0.6,3.02,1.14c0.6,0.36,0.97,1.02,0.97,1.72v1.79L15.41,13.29z M5,7.12L1.16,3.28 l1.06-1.06l15.56,15.56l-1.06,1.06L13.88,16H2v-1.91c0-0.7,0.36-1.36,0.97-1.72C4.44,11.5,6.16,11,8,11c0.31,0,0.62,0.01,0.92,0.04 l0,0L7.88,10C6.32,9.93,5.07,8.68,5,7.12z M10.89,13.01C9.97,12.67,8.99,12.5,8,12.5c-1.5,0-2.98,0.4-4.28,1.16 c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h8.88C12.38,14.5,10.89,13.01,10.89,13.01L10.89,13.01z\\\"></path>\"\n      }\n    }\n  },\n  \"face_6\": {\n    \"name\": \"face_6\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.55,7.66C7.06,6.64,8.09,6,9.24,6h5.53c1.14,0,2.17,0.64,2.68,1.66c0.94,1.87,1.66,2.08,2.26,2.24 C18.78,6.51,15.68,4,12,4S5.22,6.51,4.29,9.9C4.97,9.72,5.62,9.52,6.55,7.66z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,4c3.68,0,6.78,2.51,7.71,5.9 c-0.6-0.16-1.33-0.37-2.26-2.24C16.94,6.64,15.91,6,14.76,6H9.24C8.09,6,7.06,6.64,6.55,7.66C5.62,9.52,4.97,9.72,4.29,9.9 C5.22,6.51,8.32,4,12,4z M12,20c-4.41,0-8-3.59-8-8c0-0.01,0-0.02,0-0.03c2.31-0.22,3.43-1.59,4.34-3.41C8.51,8.21,8.85,8,9.24,8 h5.53c0.38,0,0.72,0.21,0.89,0.55c0.9,1.8,1.99,3.19,4.34,3.41c0,0.01,0,0.02,0,0.03C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.93,6C6.35,5.37,7.05,5,7.8,5h4.39c0.75,0,1.45,0.37,1.87,1c0.71,1.07,1.02,1.73,2.09,1.94 C15.3,5.37,12.87,3.5,10,3.5S4.7,5.37,3.84,7.94C4.75,7.76,4.92,7.52,5.93,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,3.5c2.87,0,5.3,1.87,6.16,4.44 C15.09,7.73,14.78,7.07,14.07,6c-0.42-0.63-1.12-1-1.87-1H7.8C7.05,5,6.35,5.37,5.93,6C4.92,7.52,4.75,7.76,3.84,7.94 C4.7,5.37,7.13,3.5,10,3.5z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5c0-0.17,0.01-0.34,0.03-0.51c2.39-0.08,3.32-2.16,3.65-2.66 C7.32,6.62,7.55,6.5,7.8,6.5h4.39c0.25,0,0.48,0.12,0.62,0.33c0.34,0.51,1.28,2.58,3.65,2.66C16.49,9.66,16.5,9.83,16.5,10 C16.5,13.58,13.58,16.5,10,16.5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"add_moderator\": {\n    \"name\": \"add_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,4.14L6,6.39v4.7c0,3.33,1.76,6.44,4.33,8.04c-1.56-4.89,2.5-9.8,7.67-9.05V6.39L12,4.14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.33,19.13C7.76,17.53,6,14.42,6,11.09v-4.7l6-2.25l6,2.25v3.69c0.71,0.1,1.38,0.31,2,0.6V5l-8-3L4,5v6.09 c0,5.05,3.41,9.76,8,10.91c0.03-0.01,0.05-0.02,0.08-0.02C11.29,21.19,10.68,20.22,10.33,19.13z\\\"></path></g><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M20,17.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20V17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"catching_pokemon\": {\n    \"name\": \"catching_pokemon\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.08,0,7.45,3.05,7.94,7h-4.06C15.43,9.27,13.86,8,12,8s-3.43,1.27-3.87,3H4.06C4.55,7.05,7.92,4,12,4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,4c4.08,0,7.45,3.05,7.94,7h-4.06 C15.43,9.27,13.86,8,12,8s-3.43,1.27-3.87,3H4.06C4.55,7.05,7.92,4,12,4z M14,12c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2 S14,10.9,14,12z M12,20c-4.08,0-7.45-3.05-7.94-7h4.06c0.44,1.73,2.01,3,3.87,3s3.43-1.27,3.87-3h4.06C19.45,16.95,16.08,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.16,9.25c-0.34-1.43-1.63-2.5-3.16-2.5l0,0c-1.54,0-2.82,1.07-3.16,2.5c0,0-3.29,0-3.29,0 C3.92,6.02,6.67,3.5,10,3.5s6.08,2.52,6.46,5.75C16.46,9.25,13.16,9.25,13.16,9.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,3.5c3.33,0,6.08,2.52,6.46,5.75h-3.29 c-0.34-1.43-1.63-2.5-3.16-2.5s-2.82,1.07-3.16,2.5H3.54C3.92,6.02,6.67,3.5,10,3.5z M11.75,10c0,0.96-0.79,1.75-1.75,1.75 S8.25,10.96,8.25,10S9.04,8.25,10,8.25S11.75,9.04,11.75,10z M10,16.5c-3.33,0-6.08-2.52-6.46-5.75h3.29 c0.34,1.43,1.63,2.5,3.16,2.5s2.82-1.07,3.16-2.5h3.29C16.08,13.98,13.33,16.5,10,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_moderator\": {\n    \"name\": \"remove_moderator\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,11.09c0,4,2.55,7.7,6,8.83c1.17-0.38,2.24-1.07,3.14-1.95L6,8.83V11.09z M12,4.14L8.34,5.51l9.02,9.02c0.41-1.08,0.64-2.25,0.64-3.44v-4.7L12,4.14z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4.14l6,2.25v4.7c0,1.19-0.23,2.36-0.64,3.44l1.51,1.51c0.72-1.53,1.13-3.22,1.13-4.95V5l-8-3L6.78,3.96l1.55,1.55 L12,4.14z M2.81,2.81L1.39,4.22L4,6.83v4.26c0,5.05,3.41,9.76,8,10.91c1.72-0.43,3.28-1.36,4.55-2.62l3.23,3.23l1.41-1.41 L2.81,2.81z M12,19.92c-3.45-1.13-6-4.82-6-8.83V8.83l9.14,9.14C14.24,18.85,13.17,19.54,12,19.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"health_and_safety\": {\n    \"name\": \"health_and_safety\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4.14L6,6.39v4.7c0,4,2.55,7.7,6,8.83c3.45-1.13,6-4.82,6-8.83v-4.7L12,4.14z M16,13h-2.5v2.5h-3V13H8v-3 h2.5V7.5h3V10H16V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.5,13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13z M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2 z M18,11.09c0,4-2.55,7.7-6,8.83c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\\\"></path>\"\n      }\n    }\n  },\n  \"emoji_people\": {\n    \"name\": \"emoji_people\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M15.89,8.11C15.5,7.72,14.83,7,13.53,7c-0.21,0-1.42,0-2.54,0C8.24,6.99,6,4.75,6,2H4c0,3.16,2.11,5.84,5,6.71V22h2v-6h2 v6h2V10.05L18.95,14l1.41-1.41L15.89,8.11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><circle cx=\\\"10\\\" cy=\\\"5\\\" r=\\\"1\\\"></circle><path d=\\\"M12.29,7.29C12.11,7.11,11.85,7,11.59,7H8.5C7.12,7,6,5.88,6,4.5V4H5v0.5C5,6.26,6.31,7.75,8,8v4v4h1v-4h2v4h1v-4V8.41 l2.83,2.83l0.71-0.71L12.29,7.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"whatsapp\": {\n    \"name\": \"whatsapp\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M19.05,4.91C17.18,3.03,14.69,2,12.04,2c-5.46,0-9.91,4.45-9.91,9.91c0,1.75,0.46,3.45,1.32,4.95L2.05,22l5.25-1.38 c1.45,0.79,3.08,1.21,4.74,1.21h0c0,0,0,0,0,0c5.46,0,9.91-4.45,9.91-9.91C21.95,9.27,20.92,6.78,19.05,4.91z M12.04,20.15 L12.04,20.15c-1.48,0-2.93-0.4-4.2-1.15l-0.3-0.18l-3.12,0.82l0.83-3.04l-0.2-0.31c-0.82-1.31-1.26-2.83-1.26-4.38 c0-4.54,3.7-8.24,8.24-8.24c2.2,0,4.27,0.86,5.82,2.42c1.56,1.56,2.41,3.63,2.41,5.83C20.28,16.46,16.58,20.15,12.04,20.15z M16.56,13.99c-0.25-0.12-1.47-0.72-1.69-0.81c-0.23-0.08-0.39-0.12-0.56,0.12c-0.17,0.25-0.64,0.81-0.78,0.97 c-0.14,0.17-0.29,0.19-0.54,0.06c-0.25-0.12-1.05-0.39-1.99-1.23c-0.74-0.66-1.23-1.47-1.38-1.72c-0.14-0.25-0.02-0.38,0.11-0.51 c0.11-0.11,0.25-0.29,0.37-0.43c0.12-0.14,0.17-0.25,0.25-0.41c0.08-0.17,0.04-0.31-0.02-0.43c-0.06-0.12-0.56-1.34-0.76-1.84 c-0.2-0.48-0.41-0.42-0.56-0.43C8.86,7.33,8.7,7.33,8.53,7.33c-0.17,0-0.43,0.06-0.66,0.31C7.65,7.89,7.01,8.49,7.01,9.71 c0,1.22,0.89,2.4,1.01,2.56c0.12,0.17,1.75,2.67,4.23,3.74c0.59,0.26,1.05,0.41,1.41,0.52c0.59,0.19,1.13,0.16,1.56,0.1 c0.48-0.07,1.47-0.6,1.67-1.18c0.21-0.58,0.21-1.07,0.14-1.18S16.81,14.11,16.56,13.99z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><g><path d=\\\"M15.69,4.23c-1.51-1.51-3.51-2.34-5.65-2.34c-4.4,0-7.98,3.58-7.98,7.98c0,1.41,0.37,2.78,1.07,3.99L2,18l4.23-1.11 c1.17,0.64,2.48,0.97,3.81,0.97h0c4.4,0,7.98-3.58,7.98-7.98C18.03,7.75,17.2,5.74,15.69,4.23z M10.05,16.51L10.05,16.51 c-1.19,0-2.36-0.32-3.38-0.92l-0.24-0.14L3.92,16.1l0.67-2.45L4.43,13.4c-0.66-1.06-1.01-2.28-1.01-3.53 c0-3.66,2.98-6.63,6.64-6.63c1.77,0,3.44,0.69,4.69,1.95c1.25,1.25,1.94,2.92,1.94,4.69C16.68,13.54,13.71,16.51,10.05,16.51z M13.69,11.55c-0.2-0.1-1.18-0.58-1.36-0.65c-0.18-0.07-0.32-0.1-0.45,0.1c-0.13,0.2-0.52,0.65-0.63,0.78 c-0.12,0.13-0.23,0.15-0.43,0.05c-0.2-0.1-0.84-0.31-1.6-0.99C8.62,10.31,8.22,9.66,8.1,9.46S8.09,9.15,8.19,9.05 c0.09-0.09,0.2-0.23,0.3-0.35s0.13-0.2,0.2-0.33c0.07-0.13,0.03-0.25-0.02-0.35c-0.05-0.1-0.45-1.08-0.61-1.48 C7.89,6.15,7.73,6.2,7.61,6.19C7.49,6.19,7.36,6.19,7.22,6.19c-0.13,0-0.35,0.05-0.53,0.25c-0.18,0.2-0.7,0.68-0.7,1.66 c0,0.98,0.71,1.93,0.81,2.06c0.1,0.13,1.41,2.15,3.41,3.01c0.48,0.21,0.85,0.33,1.14,0.42c0.48,0.15,0.91,0.13,1.26,0.08 c0.38-0.06,1.18-0.48,1.35-0.95c0.17-0.47,0.17-0.87,0.12-0.95C14.02,11.69,13.89,11.64,13.69,11.55z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"person_add_alt\": {\n    \"name\": \"person_add_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M14.48,16.34C13.29,15.73,11.37,15,9,15c-2.37,0-4.29,0.73-5.48,1.34C3.2,16.5,3,16.84,3,17.22V18h12v-0.78 C15,16.84,14.8,16.5,14.48,16.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z\\\"></path><polygon points=\\\"20,9 20,6 18,6 18,9 15,9 15,11 18,11 18,14 20,14 20,11 23,11 23,9\\\"></polygon><path d=\\\"M15.39,14.56C13.71,13.7,11.53,13,9,13c-2.53,0-4.71,0.7-6.39,1.56C1.61,15.07,1,16.1,1,17.22V20h16v-2.78 C17,16.1,16.39,15.07,15.39,14.56z M15,18H3v-0.78c0-0.38,0.2-0.72,0.52-0.88C4.71,15.73,6.63,15,9,15c2.37,0,4.29,0.73,5.48,1.34 C14.8,16.5,15,16.84,15,17.22V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8,8.5c0.83,0,1.5-0.67,1.5-1.5S8.83,5.5,8,5.5S6.5,6.17,6.5,7S7.17,8.5,8,8.5z M12.28,13.66 C10.98,12.9,9.5,12.5,8,12.5s-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 C12.5,13.91,12.41,13.74,12.28,13.66z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,10c1.66,0,3-1.34,3-3S9.66,4,8,4S5,5.34,5,7S6.34,10,8,10z M8,5.5c0.83,0,1.5,0.67,1.5,1.5S8.83,8.5,8,8.5 S6.5,7.83,6.5,7S7.17,5.5,8,5.5z M13.03,12.37C11.56,11.5,9.84,11,8,11s-3.56,0.5-5.03,1.37C2.36,12.72,2,13.39,2,14.09V16h12 v-1.91C14,13.39,13.64,12.72,13.03,12.37z M12.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,12.9,6.5,12.5,8,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g><polygon points=\\\"18,7.75 16.25,7.75 16.25,6 14.75,6 14.75,7.75 13,7.75 13,9.25 14.75,9.25 14.75,11 16.25,11 16.25,9.25 18,9.25\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"pix\": {\n    \"name\": \"pix\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.45,16.52l-3.01-3.01c-0.11-0.11-0.24-0.13-0.31-0.13s-0.2,0.02-0.31,0.13L8.8,16.53c-0.34,0.34-0.87,0.89-2.64,0.89 l3.71,3.7c1.17,1.17,3.07,1.17,4.24,0l3.72-3.71C16.92,17.41,16.16,17.23,15.45,16.52z\\\"></path><path d=\\\"M8.8,7.47l3.02,3.02c0.08,0.08,0.2,0.13,0.31,0.13s0.23-0.05,0.31-0.13l2.99-2.99c0.71-0.74,1.52-0.91,2.43-0.91 l-3.72-3.71c-1.17-1.17-3.07-1.17-4.24,0l-3.71,3.7C7.95,6.58,8.49,7.16,8.8,7.47z\\\"></path><path d=\\\"M21.11,9.85l-2.25-2.26H17.6c-0.54,0-1.08,0.22-1.45,0.61l-3,3c-0.28,0.28-0.65,0.42-1.02,0.42 c-0.36,0-0.74-0.15-1.02-0.42L8.09,8.17c-0.38-0.38-0.9-0.6-1.45-0.6H5.17l-2.29,2.3c-1.17,1.17-1.17,3.07,0,4.24l2.29,2.3h1.48 c0.54,0,1.06-0.22,1.45-0.6l3.02-3.02c0.28-0.28,0.65-0.42,1.02-0.42c0.37,0,0.74,0.14,1.02,0.42l3.01,3.01 c0.38,0.38,0.9,0.6,1.45,0.6h1.26l2.25-2.26C22.3,12.96,22.3,11.04,21.11,9.85z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.79,13.58l-2.41-2.41c-0.1-0.1-0.22-0.12-0.28-0.12c-0.06,0-0.18,0.02-0.28,0.12L7.4,13.59 c-0.71,0.71-1.45,0.7-2.13,0.7l3.02,3.01c0.94,0.94,2.46,0.94,3.39,0l3.03-3.02C14,14.28,13.38,14.17,12.79,13.58z\\\"></path><path d=\\\"M7.4,6.41l2.42,2.42C9.9,8.9,10,8.94,10.1,8.94s0.21-0.04,0.28-0.12l2.39-2.39c0.58-0.59,1.21-0.71,1.96-0.71L11.71,2.7 c-0.94-0.94-2.46-0.94-3.39,0L5.29,5.71C6.02,5.71,6.7,5.71,7.4,6.41z\\\"></path><path d=\\\"M17.29,8.28l-1.8-1.81h-1.01c-0.44,0-0.86,0.17-1.16,0.48l-2.4,2.4c-0.22,0.22-0.52,0.34-0.81,0.34 c-0.29,0-0.59-0.12-0.81-0.34L6.87,6.94C6.57,6.63,6.15,6.46,5.72,6.46H4.53L2.7,8.3c-0.94,0.94-0.94,2.46,0,3.39l1.83,1.84h1.18 c0.43,0,0.85-0.17,1.16-0.48l2.42-2.42c0.22-0.22,0.52-0.34,0.81-0.34s0.59,0.11,0.81,0.34l2.41,2.41 c0.08,0.08,0.16,0.15,0.25,0.2c0.27,0.18,0.58,0.28,0.91,0.28h1.01l1.8-1.81c0.36-0.36,0.58-0.8,0.67-1.25 C17.99,10.31,18,10.16,18,10C18,9.38,17.76,8.76,17.29,8.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"scale\": {\n    \"name\": \"scale\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.87,4C17.5,5.19,15,6.12,12,6.12C9,6.12,6.5,5.19,5.13,4H18.87z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,11V8c4.56-0.58,8-3.1,8-6H2c0,2.9,3.44,5.42,8,6l0,3c-3.68,0.73-8,3.61-8,11h6v-2H4.13c0.93-6.83,6.65-7.2,7.87-7.2 s6.94,0.37,7.87,7.2H16v2h6C22,14.61,17.68,11.73,14,11z M18.87,4C17.5,5.19,15,6.12,12,6.12C9,6.12,6.5,5.19,5.13,4H18.87z M12,22 c-1.1,0-2-0.9-2-2c0-0.55,0.22-1.05,0.59-1.41C11.39,17.79,16,16,16,16s-1.79,4.61-2.59,5.41C13.05,21.78,12.55,22,12,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,5.6c2.67,0,4.83-0.95,5.84-2.1H4.16C5.17,4.65,7.33,5.6,10,5.6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,18c-0.83,0-1.5-0.67-1.5-1.5c0-0.41,0.17-0.79,0.44-1.06l0,0C9.54,14.84,13,13.5,13,13.5s-1.34,3.46-1.94,4.06 C10.79,17.83,10.41,18,10,18z M18,18h-5v-1.5l3.4,0c-0.77-5.48-5.79-5.65-6.4-5.65c-0.61,0-5.63,0.17-6.4,5.65l3.4,0V18H2 c0-5.88,3.72-7.97,6.5-8.5V7C4.8,6.55,2,4.49,2,2h16c0,2.49-2.8,4.55-6.5,5v2.5C14.28,10.03,18,12.12,18,18z M10,5.6 c2.67,0,4.83-0.95,5.84-2.1H4.16C5.17,4.65,7.33,5.6,10,5.6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_reaction\": {\n    \"name\": \"add_reaction\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.41,9H18V7h-2V5.08C14.82,4.4,13.46,4,12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8 C20,10.94,19.79,9.93,19.41,9z M15.5,8C16.33,8,17,8.67,17,9.5c0,0.83-0.67,1.5-1.5,1.5S14,10.33,14,9.5C14,8.67,14.67,8,15.5,8z M8.5,8C9.33,8,10,8.67,10,9.5c0,0.83-0.67,1.5-1.5,1.5S7,10.33,7,9.5C7,8.67,7.67,8,8.5,8z M12,17.5c-2.33,0-4.31-1.46-5.11-3.5 h10.22C16.31,16.04,14.33,17.5,12,17.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,9.5C7,8.67,7.67,8,8.5,8S10,8.67,10,9.5c0,0.83-0.67,1.5-1.5,1.5S7,10.33,7,9.5z M12,17.5c2.33,0,4.31-1.46,5.11-3.5 H6.89C7.69,16.04,9.67,17.5,12,17.5z M15.5,11c0.83,0,1.5-0.67,1.5-1.5C17,8.67,16.33,8,15.5,8S14,8.67,14,9.5 C14,10.33,14.67,11,15.5,11z M22,1h-2v2h-2v2h2v2h2V5h2V3h-2V1z M20,12c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8 c1.46,0,2.82,0.4,4,1.08V2.84C14.77,2.3,13.42,2,11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12 c0-1.05-0.17-2.05-0.47-3h-2.13C19.78,9.93,20,10.94,20,12z\\\"></path>\"\n      }\n    }\n  },\n  \"18_up_rating\": {\n    \"name\": \"18_up_rating\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"12.5\\\"></rect><path d=\\\"M5,19h14V5H5V19z M11.5,10c0-0.55,0.45-1,1-1H15c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-2.5 c-0.55,0-1-0.45-1-1V10z M7,9h3v6H8.5v-4.5H7V9z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"8.5,15 10,15 10,9 7,9 7,10.5 8.5,10.5\\\"></polygon><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M12.5,15H15c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1h-2.5c-0.55,0-1,0.45-1,1v4C11.5,14.55,11.95,15,12.5,15z M13,10h1.5 v1.5H13V10z M13,12.5h1.5V14H13V12.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\".75\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"10.25\\\"></rect><rect height=\\\".75\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"9\\\"></rect><path d=\\\"M4.5,15.5h11v-11h-11V15.5z M10,8.5C10,8.22,10.22,8,10.5,8h2C12.78,8,13,8.22,13,8.5v3 c0,0.28-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5V8.5z M7,8h2v4H8V9H7V8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path><polygon points=\\\"8,12 9,12 9,8 7,8 7,9 8,9\\\"></polygon><path d=\\\"M10.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-3C13,8.22,12.78,8,12.5,8h-2C10.22,8,10,8.22,10,8.5v3C10,11.78,10.22,12,10.5,12z M11,9h1v0.75h-1V9z M11,10.25h1V11h-1V10.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sports_cricket\": {\n    \"name\": \"sports_cricket\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"10.02\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.0045 9.2536)\\\" width=\\\"2.01\\\" x=\\\"7.66\\\" y=\\\"5.66\\\"></rect><circle cx=\\\"18.5\\\" cy=\\\"5.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.04,12.79l-8.5-8.5C6.35,4.1,6.09,4,5.83,4S5.32,4.1,5.13,4.29L2.29,7.13c-0.39,0.39-0.39,1.03,0,1.42l8.5,8.5 c0.2,0.2,0.45,0.29,0.71,0.29c0.26,0,0.51-0.1,0.71-0.29l2.83-2.83C15.43,13.82,15.43,13.18,15.04,12.79z M11.5,14.92L4.41,7.83 l1.42-1.42l7.09,7.09L11.5,14.92z\\\"></path><rect height=\\\"6\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.5264 17.7562)\\\" width=\\\"2\\\" x=\\\"16.17\\\" y=\\\"16.17\\\"></rect><path d=\\\"M18.5,2C16.57,2,15,3.57,15,5.5C15,7.43,16.57,9,18.5,9S22,7.43,22,5.5C22,3.57,20.43,2,18.5,2z M18.5,7 C17.67,7,17,6.33,17,5.5S17.67,4,18.5,4S20,4.67,20,5.5S19.33,7,18.5,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"14.5\\\" cy=\\\"5.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><rect height=\\\"8\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.6206 8.3267)\\\" width=\\\"2\\\" x=\\\"6.74\\\" y=\\\"5.74\\\"></rect><path d=\\\"M14.5,3C13.12,3,12,4.12,12,5.5C12,6.88,13.12,8,14.5,8C15.88,8,17,6.88,17,5.5C17,4.12,15.88,3,14.5,3z M14.5,7 C13.67,7,13,6.33,13,5.5S13.67,4,14.5,4S16,4.67,16,5.5S15.33,7,14.5,7z\\\"></path><path d=\\\"M12.34,11.51L5.97,5.15C5.87,5.05,5.75,5,5.62,5C5.49,5,5.36,5.05,5.26,5.15L3.15,7.26c-0.2,0.2-0.2,0.51,0,0.71 l6.36,6.36c0.1,0.1,0.23,0.15,0.35,0.15c0.13,0,0.26-0.05,0.35-0.15l2.12-2.12C12.53,12.02,12.53,11.71,12.34,11.51z M9.86,13.27 L4.21,7.62l1.41-1.41l5.66,5.66L9.86,13.27z\\\"></path><rect height=\\\"4\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -6.9645 13.9853)\\\" width=\\\"1\\\" x=\\\"12.9\\\" y=\\\"13.4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"facebook\": {\n    \"name\": \"facebook\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_martial_arts\": {\n    \"name\": \"sports_martial_arts\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"19.8,2 11.6,8.7 10.39,7.66 13.99,5.58 9.41,1 8,2.41 10.74,5.15 5,8.46 3.81,12.75 6.27,17 8,16 5.97,12.48 6.32,11.18 9.5,13 10,22 12,22 12.5,12 21,3.4\\\"></polygon><circle cx=\\\"5\\\" cy=\\\"5\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"4.5\\\" cy=\\\"4.5\\\" r=\\\"1.5\\\"></circle><polygon points=\\\"16.79,2 9.96,7.54 8.27,6.22 11.01,4.64 7.37,1 6.67,1.71 9.38,4.42 4.25,7.38 3.31,10.78 5.13,14 6,13.51 4.39,10.65 4.88,8.87 8.5,11 9,18 10,18 10.5,10 17.5,2.71\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"sports_motorsports\": {\n    \"name\": \"sports_motorsports\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.56,6c-0.15,0-0.29,0-0.44,0.01c-1.45,0.1-2.72,0.43-3.82,0.99l2.5,1.06c1.33,0.57,2.2,1.87,2.2,3.32 c0,1.99-1.62,3.61-3.61,3.61H4.24C4.01,16.28,4,17.19,4,17.2V18h10c1.68,0,3.3-0.71,4.44-1.96c1.15-1.27,1.7-2.91,1.54-4.63 C19.69,8.37,16.87,6,13.56,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.96,11.22C21.57,7.01,17.76,4,13.56,4c-0.19,0-0.38,0.01-0.57,0.02C2,4.74,2,17.2,2,17.2V18c0,1.1,0.9,2,2,2h10 C18.67,20,22.41,15.99,21.96,11.22z M5.26,11.56c0.57-1.29,1.28-2.35,2.14-3.19l3.62,1.53c0.6,0.25,0.98,0.83,0.98,1.48 c0,0.89-0.72,1.61-1.61,1.61H4.72C4.87,12.53,5.04,12.05,5.26,11.56z M18.44,16.04C17.3,17.29,15.68,18,14,18H4v-0.8 c0-0.02,0.01-0.92,0.24-2.2h6.15c1.99,0,3.61-1.62,3.61-3.61c0-1.45-0.87-2.76-2.2-3.32L9.3,7.01c1.1-0.57,2.37-0.9,3.82-0.99 C13.27,6,13.42,6,13.56,6c3.31,0,6.13,2.37,6.41,5.41C20.13,13.13,19.59,14.77,18.44,16.04z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.16,6c-0.13,0-0.26,0-0.39,0.02c-1.2,0.09-2.18,0.42-2.99,0.89l2.61,1.07c1.72,0.71,2.17,2.94,0.85,4.25 C10.75,12.73,10.08,13,9.39,13H4.12C4.02,13.61,4,14.03,4,14.1L4,15h7.5c1.24,0,2.4-0.5,3.26-1.4c0.86-0.9,1.3-2.09,1.23-3.34 C15.87,7.91,13.7,6,11.16,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.16,5C11,5,10.85,5.01,10.69,5.02C3.25,5.6,3,14.07,3,14.07V15c0,0.55,0.45,1,1,1h7.5c3.13,0,5.65-2.62,5.49-5.79 C16.84,7.2,14.14,5,11.16,5z M6.82,7.6L10,8.91c0.51,0.21,0.86,0.64,0.96,1.17c0.11,0.54-0.05,1.07-0.44,1.45 C10.22,11.83,9.82,12,9.39,12H4.32C4.66,10.62,5.37,8.86,6.82,7.6z M14.76,13.6C13.9,14.5,12.74,15,11.5,15H4l0-0.9 c0-0.07,0.02-0.49,0.12-1.1h5.27c0.69,0,1.35-0.27,1.84-0.76c1.32-1.32,0.87-3.55-0.85-4.25L7.77,6.91 c0.81-0.47,1.8-0.8,2.99-0.89C10.9,6.01,11.03,6,11.16,6c2.55,0,4.72,1.91,4.84,4.26C16.06,11.51,15.62,12.7,14.76,13.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"diversity_1\": {\n    \"name\": \"diversity_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"4\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M1.22,17.58C0.48,17.9,0,18.62,0,19.43V21l4.5,0v-1.61c0-0.83,0.23-1.61,0.63-2.29C4.76,17.04,4.39,17,4,17 C3.01,17,2.07,17.21,1.22,17.58z\\\"></path><circle cx=\\\"20\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><path d=\\\"M22.78,17.58C21.93,17.21,20.99,17,20,17c-0.39,0-0.76,0.04-1.13,0.1c0.4,0.68,0.63,1.46,0.63,2.29V21l4.5,0v-1.57 C24,18.62,23.52,17.9,22.78,17.58z\\\"></path><path d=\\\"M16.24,16.65c-1.17-0.52-2.61-0.9-4.24-0.9c-1.63,0-3.07,0.39-4.24,0.9C6.68,17.13,6,18.21,6,19.39V21h12v-1.61 C18,18.21,17.32,17.13,16.24,16.65z M8.07,19c0.09-0.23,0.27-0.42,0.49-0.52c1.1-0.49,2.26-0.73,3.43-0.73 c1.18,0,2.33,0.25,3.43,0.73c0.23,0.1,0.4,0.29,0.49,0.52H8.07z\\\"></path><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3c0-1.66-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z\\\"></path><path d=\\\"M2.48,10.86C2.17,10.1,2,9.36,2,8.6C2,6.02,4.02,4,6.6,4c2.68,0,3.82,1.74,5.4,3.59C13.57,5.76,14.7,4,17.4,4 C19.98,4,22,6.02,22,8.6c0,0.76-0.17,1.5-0.48,2.26c0.65,0.31,1.18,0.82,1.53,1.44C23.65,11.1,24,9.88,24,8.6 C24,4.9,21.1,2,17.4,2c-2.09,0-4.09,0.97-5.4,2.51C10.69,2.97,8.69,2,6.6,2C2.9,2,0,4.9,0,8.6c0,1.28,0.35,2.5,0.96,3.7 C1.31,11.68,1.84,11.17,2.48,10.86z\\\"></path><path d=\\\"M17.4,4c-2.68,0-3.82,1.74-5.4,3.59C10.44,5.75,9.3,4,6.6,4C4.02,4,2,6.02,2,8.6c0,0.76,0.17,1.5,0.48,2.26 C2.94,10.64,3.45,10.5,4,10.5c1.93,0,3.5,1.57,3.5,3.5c0,0.45-0.09,0.87-0.24,1.26c0.97-0.42,1.96-0.69,2.98-0.84 C9.49,13.87,9,13,9,12c0-1.66,1.34-3,3-3c1.66,0,3,1.34,3,3c0,1-0.49,1.87-1.24,2.42c1.02,0.15,2.02,0.43,2.98,0.85 c-0.15-0.39-0.24-0.82-0.24-1.26c0-1.93,1.57-3.5,3.5-3.5c0.55,0,1.06,0.14,1.52,0.36C21.83,10.1,22,9.36,22,8.6 C22,6.02,19.98,4,17.4,4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.07,19.02h7.85c-0.09-0.23-0.27-0.42-0.49-0.52c-1.1-0.49-2.26-0.73-3.43-0.73 c-1.18,0-2.33,0.25-3.43,0.73C8.34,18.6,8.17,18.79,8.07,19.02z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,3.5c-2.53,0-3.77,2.04-4.5,2.9C9.38,5.67,8.09,3.5,5.5,3.5c-2.24,0-4,1.76-4,4 c0,0.94,0.3,1.86,0.83,2.8C2.68,10.12,3.08,10,3.5,10C4.88,10,6,11.12,6,12.5c0,0.35-0.07,0.68-0.2,0.98 c0.03-0.01,1.08-0.62,2.86-0.87c-0.7-0.44-1.16-1.22-1.16-2.1C7.5,9.12,8.62,8,10,8s2.5,1.12,2.5,2.5c0,0.89-0.46,1.66-1.16,2.1 c1.78,0.25,2.83,0.86,2.86,0.87c-0.13-0.3-0.2-0.63-0.2-0.98c0-1.38,1.12-2.5,2.5-2.5c0.42,0,0.82,0.12,1.17,0.3 c0.54-0.95,0.83-1.86,0.83-2.8C18.5,5.26,16.74,3.5,14.5,3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.93,15.63C11.99,15.21,11,15,10,15c-1,0-1.99,0.21-2.93,0.63c-0.34,0.15-0.56,0.49-0.57,0.87h7 C13.49,16.12,13.27,15.77,12.93,15.63z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"10.5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><circle cx=\\\"3.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M13.54,14.25c-0.98-0.43-2.18-0.75-3.54-0.75c-1.36,0-2.56,0.32-3.54,0.75C5.57,14.65,5,15.55,5,16.53V18h10v-1.47 C15,15.55,14.43,14.65,13.54,14.25z M6.5,16.5c0.01-0.38,0.23-0.73,0.57-0.87C8.01,15.21,9,15,10,15c1,0,1.99,0.21,2.93,0.63 c0.34,0.15,0.56,0.49,0.57,0.87H6.5z\\\"></path><path d=\\\"M19.15,15.61C18.44,15.27,17.54,15,16.5,15c-0.29,0-0.56,0.02-0.82,0.06c0.21,0.45,0.32,0.95,0.32,1.47V18h4v-1.04 C20,16.39,19.67,15.86,19.15,15.61z\\\"></path><path d=\\\"M0.85,15.61C0.33,15.86,0,16.39,0,16.96V18h4v-1.47c0-0.52,0.11-1.02,0.32-1.47C4.06,15.02,3.79,15,3.5,15 C2.46,15,1.56,15.27,0.85,15.61z\\\"></path><path d=\\\"M7.5,10.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C12.5,9.12,11.38,8,10,8S7.5,9.12,7.5,10.5z M11,10.5 c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S11,9.95,11,10.5z\\\"></path><path d=\\\"M2.33,10.3C1.79,9.36,1.5,8.44,1.5,7.5c0-2.24,1.76-4,4-4c2.53,0,3.77,2.04,4.5,2.9c0.62-0.73,1.91-2.9,4.5-2.9 c2.24,0,4,1.76,4,4c0,0.94-0.29,1.86-0.83,2.8c0.46,0.25,0.84,0.63,1.07,1.1C19.54,10.12,20,8.86,20,7.5C20,4.42,17.58,2,14.5,2 c-1.74,0-3.41,0.81-4.5,2.09C8.91,2.81,7.24,2,5.5,2C2.42,2,0,4.42,0,7.5c0,1.36,0.46,2.62,1.26,3.9 C1.5,10.93,1.87,10.55,2.33,10.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cyclone\": {\n    \"name\": \"cyclone\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,6,12,6z M12,16c-2.21,0-4-1.79-4-4 c0-2.21,1.79-4,4-4c2.21,0,4,1.79,4,4C16,14.21,14.21,16,12,16z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M12,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4C16,9.79,14.21,8,12,8z M12,14c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C14,13.1,13.1,14,12,14z\\\"></path><path d=\\\"M22,5.35C20.05,4.77,16.56,4,12,4C9.85,4,7.89,4.86,6.46,6.24C6.59,5.39,6.86,3.84,7.47,2H5.35C4.77,3.95,4,7.44,4,12 c0,2.15,0.86,4.11,2.24,5.54c-0.85-0.14-2.4-0.4-4.24-1.01v2.12C3.95,19.23,7.44,20,12,20c2.15,0,4.11-0.86,5.54-2.24 c-0.14,0.85-0.4,2.4-1.01,4.24h2.12C19.23,20.05,20,16.56,20,12c0-2.15-0.86-4.11-2.24-5.54c0.85,0.14,2.4,0.4,4.24,1.01V5.35z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6S18,8.69,18,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M10,4.5c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S13.03,4.5,10,4.5z M10,13.5 c-1.93,0-3.5-1.57-3.5-3.5S8.07,6.5,10,6.5s3.5,1.57,3.5,3.5S11.93,13.5,10,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,6.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.5S11.93,6.5,10,6.5z M10,12c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C12,11.1,11.1,12,10,12z\\\"></path><path d=\\\"M18,4.09C14.49,3.06,11.23,3,10,3C8,3,6.2,3.84,4.93,5.18C4.93,5.15,5.15,3.71,5.68,2H4.09C3.06,5.51,3,8.77,3,10 c0,2,0.84,3.8,2.18,5.07C5.15,15.07,3.71,14.85,2,14.32v1.59C5.51,16.94,8.77,17,10,17c2,0,3.8-0.84,5.07-2.18 c-0.01,0.03-0.23,1.48-0.76,3.18h1.59c1.03-3.51,1.09-6.77,1.09-8c0-2-0.84-3.8-2.18-5.07C14.85,4.93,16.3,5.15,18,5.68V4.09z M15.5,10c0,3.03-2.47,5.5-5.5,5.5S4.5,13.03,4.5,10S6.97,4.5,10,4.5S15.5,6.97,15.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"deck\": {\n    \"name\": \"deck\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12,4.44 8.34,7 15.66,7\\\"></polygon><path d=\\\"M22,9L12,2L2,9h9v13h2V9H22z M12,4.44L15.66,7H8.34L12,4.44z\\\"></path><polygon points=\\\"4.14,12 2.18,12.37 3,16.74 3,22 5,22 5.02,18 7,18 7,22 9,22 9,16 4.9,16\\\"></polygon><polygon points=\\\"19.1,16 15,16 15,22 17,22 17,18 18.98,18 19,22 21,22 21,16.74 21.82,12.37 19.86,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"4.92,13 4.37,10 3.38,10.18 4,13.5 4,17 5,17 5,14 7,14 7,17 8,17 8,13\\\"></polygon><polygon points=\\\"15.08,13 12,13 12,17 13,17 13,14 15,14 15,17 16,17 16,13.5 16.62,10.18 15.63,10\\\"></polygon><g><polygon opacity=\\\".3\\\" points=\\\"10,4.23 6.12,7 13.88,7\\\"></polygon><path d=\\\"M10,3L3,8h6.5v9h1V8H17L10,3z M6.12,7L10,4.23L13.88,7H6.12z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"history_edu\": {\n    \"name\": \"history_edu\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M11.34,9.76L9.93,8.34C8.98,7.4,7.73,6.88,6.39,6.88C5.76,6.88,5.14,7,4.57,7.22l1.04,1.04h2.28v2.14 c0.4,0.23,0.86,0.35,1.33,0.35c0.73,0,1.41-0.28,1.92-0.8L11.34,9.76z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M11,6.62l6,5.97V14h-1.41l-2.83-2.83l-0.2,0.2c-0.46,0.46-0.99,0.8-1.56,1.03V15h6v2c0,0.55,0.45,1,1,1s1-0.45,1-1V6h-8 V6.62z\\\"></path></g><g><path d=\\\"M9,4v1.38c-0.83-0.33-1.72-0.5-2.61-0.5c-1.79,0-3.58,0.68-4.95,2.05l3.33,3.33h1.11v1.11c0.86,0.86,1.98,1.31,3.11,1.36 V15H6v3c0,1.1,0.9,2,2,2h10c1.66,0,3-1.34,3-3V4H9z M7.89,10.41V8.26H5.61L4.57,7.22C5.14,7,5.76,6.88,6.39,6.88 c1.34,0,2.59,0.52,3.54,1.46l1.41,1.41l-0.2,0.2c-0.51,0.51-1.19,0.8-1.92,0.8C8.75,10.75,8.29,10.63,7.89,10.41z M19,17 c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2h-6v-2.59c0.57-0.23,1.1-0.57,1.56-1.03l0.2-0.2L15.59,14H17v-1.41l-6-5.97V6h8V17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M9.11,7.82L7.7,6.4C6.94,5.65,5.94,5.23,4.87,5.23c-0.73,0-1.42,0.19-2.03,0.55l1.03,1.03h2.09L5.8,8.69 c0.35,0.23,0.76,0.36,1.19,0.36c0.57,0,1.11-0.22,1.52-0.63L9.11,7.82z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M8,5.37c0.14,0.11,0.28,0.2,0.4,0.33l4.6,4.6V11h-0.71L9.82,8.53l-0.6,0.6C8.86,9.48,8.44,9.72,8,9.87V12h5v2 c0,0.55,0.45,1,1,1s1-0.45,1-1V5H8V5.37z\\\"></path></g><g><path d=\\\"M7,4v0.73c-0.68-0.32-1.4-0.5-2.13-0.5c-1.28,0-2.56,0.49-3.54,1.46l2.12,2.12h1.41L4.76,9.13 c0.62,0.62,1.42,0.92,2.23,0.92c0,0,0.01,0,0.01,0V12H5v2.5C5,15.33,5.67,16,6.5,16H14c1.1,0,2-0.9,2-2V4H7z M6.99,9.05 c-0.43,0-0.84-0.12-1.19-0.36l0.15-1.87H3.87L2.84,5.79c0.61-0.36,1.31-0.55,2.03-0.55c1.07,0,2.07,0.42,2.83,1.17l1.41,1.41 l-0.6,0.6C8.1,8.82,7.56,9.05,6.99,9.05z M15,14c0,0.55-0.45,1-1,1s-1-0.45-1-1v-2H8V9.87c0.44-0.15,0.86-0.39,1.22-0.74l0.6-0.6 L12.29,11H13v-0.71L8.4,5.7C8.28,5.57,8.14,5.48,8,5.37V5h7V14z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"emoji_transportation\": {\n    \"name\": \"emoji_transportation\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M20.57,10.66C20.43,10.26,20.05,10,19.6,10h-7.19c-0.46,0-0.83,0.26-0.98,0.66L10,14.77l0.01,5.51 c0,0.38,0.31,0.72,0.69,0.72h0.62C11.7,21,12,20.62,12,20.24V19h8v1.24c0,0.38,0.31,0.76,0.69,0.76h0.61 c0.38,0,0.69-0.34,0.69-0.72L22,18.91v-4.14L20.57,10.66z M12.41,11h7.19l1.03,3h-9.25L12.41,11z M12,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S12.55,17,12,17z M20,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,17,20,17z\\\"></path><polygon points=\\\"14,9 15,9 15,3 7,3 7,8 2,8 2,21 3,21 3,9 8,9 8,4 14,4\\\"></polygon><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><polygon points=\\\"8,5 11,5 11,8 12,8 12,4 7,4 7,7 4,7 4,16 5,16 5,8 8,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"6\\\" y=\\\"13\\\"></rect><path d=\\\"M15.11,9.34C15.05,9.14,14.85,9,14.64,9H9.36C9.15,9,8.95,9.14,8.89,9.34L8,12v2v0.5V15v0.5C8,15.78,8.22,16,8.5,16 S9,15.78,9,15.5V15h6v0.5c0,0.28,0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5V15v-0.5V14v-2L15.11,9.34z M9.72,10h4.56l0.67,2H9.05L9.72,10 z M9.5,14C9.22,14,9,13.78,9,13.5S9.22,13,9.5,13s0.5,0.22,0.5,0.5S9.78,14,9.5,14z M14.5,14c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5S14.78,14,14.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"masks\": {\n    \"name\": \"masks\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.34,8.78C13.52,8.33,12.93,8,12,8c-0.93,0-1.52,0.33-2.34,0.77C8.95,9.16,8.12,9.62,7,9.85v1.65 c0,2.76,2.24,5,5,5s5-2.24,5-5V9.85C15.88,9.62,15.05,9.16,14.34,8.78z M15,11.25c-0.75-0.21-1.26-0.51-1.71-0.78 C12.83,10.2,12.49,10,12,10c-0.49,0-0.84,0.2-1.31,0.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58 C10.72,9.3,11.23,9,12,9s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59V11.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.5,6c-1.31,0-2.37,1.01-2.48,2.3C15.14,7.8,14.18,6.5,12,6.5c-2.19,0-3.14,1.3-5.02,1.8C6.87,7.02,5.81,6,4.5,6 C3.12,6,2,7.12,2,8.5V9c0,6,3.6,7.81,6.52,7.98C9.53,17.62,10.72,18,12,18s2.47-0.38,3.48-1.02C18.4,16.81,22,15,22,9V8.5 C22,7.12,20.88,6,19.5,6z M3.5,9V8.5c0-0.55,0.45-1,1-1s1,0.45,1,1v3c0,1.28,0.38,2.47,1.01,3.48C4.99,14.27,3.5,12.65,3.5,9z M7,11.5V9.85c1.12-0.23,1.95-0.69,2.66-1.08C10.48,8.33,11.07,8,12,8c0.93,0,1.52,0.33,2.34,0.78c0.71,0.39,1.54,0.84,2.66,1.08 v1.65c0,2.76-2.24,5-5,5S7,14.26,7,11.5z M20.5,9c0,3.65-1.49,5.27-3.01,5.98c0.64-1.01,1.01-2.2,1.01-3.48v-3c0-0.55,0.45-1,1-1 s1,0.45,1,1V9z M10.69,10.48c-0.44,0.26-0.96,0.56-1.69,0.76V10.2c0.48-0.17,0.84-0.38,1.18-0.58C10.72,9.3,11.23,9,12,9 s1.27,0.3,1.8,0.62c0.34,0.2,0.71,0.42,1.2,0.59v1.04c-0.75-0.21-1.26-0.51-1.71-0.78C12.83,10.2,12.49,10,12,10 C11.51,10,11.16,10.2,10.69,10.48z\\\"></path>\"\n      }\n    }\n  },\n  \"diversity_3\": {\n    \"name\": \"diversity_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.32,13.01c0.96,0.02,1.85,0.5,2.45,1.34C9.5,15.38,10.71,16,12,16c1.29,0,2.5-0.62,3.23-1.66 c0.6-0.84,1.49-1.32,2.45-1.34C16.96,11.78,14.08,11,12,11C9.93,11,7.04,11.78,6.32,13.01z\\\"></path><path d=\\\"M4,13L4,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C1,11.66,2.34,13,4,13z\\\"></path><path d=\\\"M20,13L20,13c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3s-3,1.34-3,3C17,11.66,18.34,13,20,13z\\\"></path><path d=\\\"M12,10c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3S9,5.34,9,7C9,8.66,10.34,10,12,10z\\\"></path><path d=\\\"M21,14h-3.27c-0.77,0-1.35,0.45-1.68,0.92C16.01,14.98,14.69,17,12,17c-1.43,0-3.03-0.64-4.05-2.08 C7.56,14.37,6.95,14,6.27,14H3c-1.1,0-2,0.9-2,2v4h7v-2.26c1.15,0.8,2.54,1.26,4,1.26s2.85-0.46,4-1.26V20h7v-4 C23,14.9,22.1,14,21,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M7.13,11.23c0.65,0.95,1.73,1.52,2.87,1.52s2.22-0.57,2.87-1.52c0.36-0.53,0.93-0.86,1.56-0.94C13.91,9.78,12.01,9,10,9 c-2.02,0-3.91,0.79-4.43,1.29C6.19,10.37,6.76,10.7,7.13,11.23z\\\"></path></g><circle cx=\\\"10\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"3.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"7.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.5,11h-2.78c-0.49,0-0.95,0.25-1.23,0.65c-0.81,1.17-2.13,1.85-3.49,1.85c-0.31,0-2.25-0.03-3.49-1.85 C6.27,11.3,5.84,11,5.28,11H2.5C1.67,11,1,11.67,1,12.5V16h6v-1.87C7.89,14.68,8.92,15,10,15s2.11-0.32,3-0.87V16h6v-3.5 C19,11.67,18.33,11,17.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology\": {\n    \"name\": \"psychology\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,5c-2.65,0-4.79,2.06-4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89-0.43C16.71,13.88,18,12.09,18,10 C18,7.24,15.76,5,13,5z M16.82,8.95l-0.85,0.66C15.99,9.73,16,9.86,16,10c0,0.13-0.01,0.26-0.02,0.39l0.83,0.66 c0.08,0.06,0.1,0.16,0.05,0.25l-0.8,1.39c-0.05,0.09-0.16,0.12-0.24,0.09l-0.99-0.4c-0.21,0.16-0.43,0.29-0.67,0.39L14,13.83 c-0.01,0.1-0.1,0.17-0.2,0.17h-1.6c-0.1,0-0.18-0.07-0.2-0.17l-0.15-1.06c-0.25-0.1-0.47-0.23-0.68-0.39l-0.99,0.4 c-0.09,0.03-0.2,0-0.25-0.09l-0.8-1.39c-0.05-0.08-0.03-0.19,0.05-0.25l0.84-0.66C10.01,10.26,10,10.13,10,10 c0-0.13,0.02-0.27,0.04-0.39L9.19,8.95c-0.08-0.06-0.1-0.16-0.05-0.26l0.8-1.38c0.05-0.09,0.15-0.12,0.24-0.09l1,0.4 c0.2-0.15,0.43-0.29,0.67-0.39l0.15-1.06C12.02,6.07,12.1,6,12.2,6h1.6c0.1,0,0.18,0.07,0.2,0.17l0.15,1.06 c0.24,0.1,0.46,0.23,0.67,0.39l1-0.4c0.09-0.03,0.2,0,0.24,0.09l0.8,1.38C16.91,8.78,16.89,8.89,16.82,8.95z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.82,7.22l-1,0.4c-0.21-0.16-0.43-0.29-0.67-0.39L14,6.17C13.98,6.07,13.9,6,13.8,6h-1.6c-0.1,0-0.18,0.07-0.19,0.17 l-0.15,1.06c-0.24,0.1-0.47,0.23-0.67,0.39l-1-0.4c-0.09-0.03-0.2,0-0.24,0.09l-0.8,1.38c-0.05,0.09-0.03,0.2,0.05,0.26l0.85,0.66 C10.02,9.73,10,9.87,10,10c0,0.13,0.01,0.26,0.03,0.39l-0.84,0.66c-0.08,0.06-0.1,0.17-0.05,0.25l0.8,1.39 c0.05,0.09,0.15,0.12,0.25,0.09l0.99-0.4c0.21,0.16,0.43,0.29,0.68,0.39L12,13.83c0.02,0.1,0.1,0.17,0.2,0.17h1.6 c0.1,0,0.18-0.07,0.2-0.17l0.15-1.06c0.24-0.1,0.47-0.23,0.67-0.39l0.99,0.4c0.09,0.04,0.2,0,0.24-0.09l0.8-1.39 c0.05-0.09,0.03-0.19-0.05-0.25l-0.83-0.66C15.99,10.26,16,10.13,16,10c0-0.14-0.01-0.27-0.03-0.39l0.85-0.66 c0.08-0.06,0.1-0.17,0.05-0.26l-0.8-1.38C16.02,7.22,15.91,7.19,15.82,7.22z M13,11.43c-0.79,0-1.43-0.64-1.43-1.43 S12.21,8.57,13,8.57s1.43,0.64,1.43,1.43S13.79,11.43,13,11.43z\\\"></path><path d=\\\"M19.94,9.06c-0.43-3.27-3.23-5.86-6.53-6.05C13.27,3,13.14,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48 C3.74,13.14,4.22,14,5,14h1v2c0,1.1,0.9,2,2,2h1v3h7v-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8 v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.5,5C8.61,5,7.09,6.5,7.01,8.36L5.89,10H7v3h2v2h3v-3.35c1.18-0.56,2-1.76,2-3.15 C14,6.57,12.43,5,10.5,5z M12.38,8.5c0,0.08-0.01,0.17-0.02,0.24l0.52,0.41c0.05,0.04,0.06,0.1,0.03,0.16l-0.5,0.87 c-0.03,0.06-0.1,0.08-0.15,0.06l-0.62-0.25c-0.13,0.1-0.27,0.18-0.42,0.24l-0.09,0.66C11.12,10.96,11.06,11,11,11h-1 c-0.06,0-0.11-0.04-0.12-0.11l-0.09-0.66c-0.15-0.06-0.29-0.14-0.42-0.24l-0.62,0.25c-0.06,0.02-0.12,0-0.15-0.06l-0.5-0.87 C8.06,9.26,8.07,9.19,8.12,9.16l0.53-0.41C8.63,8.67,8.62,8.58,8.62,8.5c0-0.08,0.01-0.17,0.02-0.24L8.12,7.84 c-0.05-0.04-0.06-0.1-0.03-0.16l0.5-0.87c0.03-0.06,0.1-0.08,0.15-0.06l0.62,0.25c0.13-0.1,0.27-0.18,0.42-0.24l0.09-0.66 C9.89,6.04,9.94,6,10,6h1c0.06,0,0.12,0.04,0.12,0.11l0.09,0.66c0.15,0.06,0.29,0.14,0.42,0.24l0.62-0.25 c0.06-0.02,0.12,0,0.15,0.06l0.5,0.87c0.03,0.05,0.02,0.12-0.03,0.16l-0.53,0.41C12.37,8.33,12.38,8.42,12.38,8.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.92,7.68l-0.5-0.87c-0.03-0.06-0.1-0.08-0.15-0.06l-0.62,0.25c-0.13-0.1-0.27-0.18-0.42-0.24l-0.09-0.66 C11.12,6.04,11.06,6,11,6h-1C9.94,6,9.89,6.04,9.88,6.11L9.78,6.77C9.63,6.83,9.49,6.92,9.36,7.01L8.74,6.76 c-0.06-0.02-0.12,0-0.15,0.06l-0.5,0.87C8.06,7.74,8.07,7.81,8.12,7.84l0.53,0.41C8.63,8.33,8.62,8.42,8.62,8.5 c0,0.08,0.01,0.17,0.02,0.24L8.12,9.16C8.07,9.19,8.06,9.26,8.08,9.32l0.5,0.87c0.03,0.06,0.1,0.08,0.15,0.06l0.62-0.25 c0.13,0.1,0.27,0.18,0.42,0.24l0.09,0.66C9.89,10.96,9.94,11,10,11h1c0.06,0,0.12-0.04,0.12-0.11l0.09-0.66 c0.15-0.06,0.29-0.15,0.42-0.24l0.62,0.25c0.06,0.02,0.12,0,0.15-0.06l0.5-0.87c0.03-0.06,0.02-0.12-0.03-0.16l-0.52-0.41 c0.01-0.08,0.02-0.16,0.02-0.24c0-0.08-0.01-0.17-0.02-0.24l0.53-0.41C12.93,7.81,12.94,7.74,12.92,7.68z M10.5,9.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S11.05,9.5,10.5,9.5z\\\"></path><path d=\\\"M10.5,4C8.19,4,6.3,5.75,6.05,8l-1.53,2.22C4.3,10.55,4.53,11,4.93,11H6v2c0,0.55,0.45,1,1,1h1v2h5v-3.76 c1.21-0.81,2-2.18,2-3.74C15,6.01,12.99,4,10.5,4z M12,11.65V15H9v-2H7v-3H5.89l1.13-1.64C7.09,6.5,8.61,5,10.5,5 C12.43,5,14,6.57,14,8.5C14,9.89,13.18,11.09,12,11.65z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"psychology_alt\": {\n    \"name\": \"psychology_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,5c-2.65,0-4.79,2.06-4.97,4.67L6.7,12H8v4h3v3h3v-3.95l0.89-0.42C16.71,13.88,18,12.09,18,10 C18,7.24,15.76,5,13,5z M12.5,14c-0.41,0-0.74-0.33-0.74-0.74c0-0.41,0.33-0.73,0.74-0.73c0.41,0,0.73,0.32,0.73,0.73 C13.23,13.67,12.92,14,12.5,14z M14.26,9.68c-0.44,0.65-0.86,0.85-1.09,1.27c-0.09,0.17-0.13,0.28-0.13,0.82h-1.06 c0-0.29-0.04-0.75,0.18-1.16c0.28-0.51,0.83-0.81,1.14-1.26c0.33-0.47,0.15-1.36-0.8-1.36c-0.62,0-0.92,0.47-1.05,0.86l-0.96-0.4 C10.76,7.67,11.46,7,12.5,7c0.86,0,1.45,0.39,1.75,0.88C14.51,8.31,14.66,9.1,14.26,9.68z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.94,9.06C19.5,5.73,16.57,3,13,3C9.47,3,6.57,5.61,6.08,9l-1.93,3.48C3.74,13.14,4.22,14,5,14h1l0,2c0,1.1,0.9,2,2,2h1 v3h7l0-4.68C18.62,15.07,20.35,12.24,19.94,9.06z M14.89,14.63L14,15.05V19h-3v-3H8v-4H6.7l1.33-2.33C8.21,7.06,10.35,5,13,5 c2.76,0,5,2.24,5,5C18,12.09,16.71,13.88,14.89,14.63z\\\"></path><path d=\\\"M12.5,12.54c-0.41,0-0.74,0.31-0.74,0.73c0,0.41,0.33,0.74,0.74,0.74c0.42,0,0.73-0.33,0.73-0.74 C13.23,12.85,12.92,12.54,12.5,12.54z\\\"></path><path d=\\\"M12.5,7c-1.03,0-1.74,0.67-2,1.45l0.96,0.4c0.13-0.39,0.43-0.86,1.05-0.86c0.95,0,1.13,0.89,0.8,1.36 c-0.32,0.45-0.86,0.75-1.14,1.26c-0.23,0.4-0.18,0.87-0.18,1.16h1.06c0-0.55,0.04-0.65,0.13-0.82c0.23-0.42,0.65-0.62,1.09-1.27 c0.4-0.59,0.25-1.38-0.01-1.8C13.95,7.39,13.36,7,12.5,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.5,4.5C8.65,4.5,7,5.81,6.59,7.62L6.53,7.9L4.8,10.5h1.7v3H9.5v2H12v-3.21l0.68-0.44 c1.14-0.74,1.82-2,1.82-3.35C14.5,6.29,12.71,4.5,10.5,4.5z M10.25,12c-0.35,0-0.63-0.28-0.63-0.63c0-0.35,0.28-0.62,0.63-0.62 c0.35,0,0.62,0.27,0.62,0.62C10.88,11.72,10.61,12,10.25,12z M11.76,8.3c-0.38,0.56-0.74,0.73-0.93,1.09 c-0.08,0.14-0.11,0.24-0.11,0.71H9.8c0-0.25-0.04-0.65,0.16-0.99c0.24-0.44,0.71-0.7,0.98-1.08c0.29-0.41,0.13-1.16-0.68-1.16 c-0.53,0-0.79,0.4-0.9,0.74L8.53,7.25C8.76,6.58,9.36,6,10.25,6c0.74,0,1.25,0.34,1.5,0.76C11.97,7.12,12.1,7.8,11.76,8.3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.5,3C7.88,3,5.68,4.84,5.13,7.3L3.2,10.2C2.68,10.97,3.24,12,4.16,12h0.83v1.5c0,0.83,0.67,1.5,1.5,1.5H8v2h5.5v-3.89 C15,12.12,16,10.43,16,8.5C16,5.46,13.54,3,10.5,3z M12.68,11.85L12,12.29v3.21H9.5v-2H6.49v-3H4.8l1.74-2.6l0.06-0.27 C7,5.81,8.65,4.5,10.5,4.5c2.21,0,4,1.79,4,4C14.5,9.85,13.82,11.11,12.68,11.85z\\\"></path><path d=\\\"M10.25,10.75c-0.35,0-0.63,0.27-0.63,0.62c0,0.35,0.28,0.63,0.63,0.63c0.36,0,0.62-0.28,0.62-0.63 C10.88,11.02,10.61,10.75,10.25,10.75z\\\"></path><path d=\\\"M10.25,6C9.36,6,8.76,6.58,8.53,7.25l0.82,0.34c0.11-0.34,0.37-0.74,0.9-0.74c0.81,0,0.97,0.76,0.68,1.16 C10.67,8.4,10.2,8.66,9.96,9.1C9.77,9.44,9.8,9.84,9.8,10.09h0.91c0-0.47,0.03-0.56,0.11-0.71c0.19-0.36,0.56-0.53,0.93-1.09 c0.34-0.5,0.21-1.18-0.01-1.54C11.49,6.34,10.98,6,10.25,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"elderly_woman\": {\n    \"name\": \"elderly_woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.5,11c-1.56,0-2.92-0.9-3.58-2.21l-0.79-1.67l0,0C14.12,7.1,13.63,6,12.34,6l0,0C8.72,6,6,16.69,6,19h2.5l-2.1,2.8 L8,23l3-4h2v4h2v-4.03L13,13l0.49-2.71c0.81,1.23,2.05,2.14,3.51,2.52v0.69h1v-1c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V23h1 V12.5C20,11.67,19.33,11,18.5,11z\\\"></path><path d=\\\"M11.6,2.91c-0.06,0.19-0.1,0.38-0.1,0.59c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2c-0.21,0-0.4,0.04-0.59,0.1 C12.76,1.25,12.41,1,12,1c-0.55,0-1,0.45-1,1C11,2.41,11.25,2.76,11.6,2.91z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.62,8.99c-0.32,0-0.61,0.14-0.81,0.35c-1.91-0.49-1.98-2.15-2.92-2.91c-0.26-0.21-0.57-0.34-0.89-0.4 C6.85,5.45,5.5,14.26,5.5,15h1.6l-1.6,2l1,1L9,15h1.5v3H12v-3l-1.46-3.93l0.28-2.33l0,0c0,0,0,0,0,0 c0.02,0.03,0.91,1.44,2.68,2.02v0.25h0.75v-0.88c0-0.21,0.17-0.38,0.38-0.38S15,9.91,15,10.12V18h0.75v-7.88 C15.75,9.5,15.25,8.99,14.62,8.99z\\\"></path><path d=\\\"M9.34,3.22C9.29,3.39,9.25,3.56,9.25,3.75c0,0.97,0.79,1.75,1.75,1.75c0.96,0,1.75-0.78,1.75-1.75 C12.75,2.78,11.97,2,11,2c-0.29,0-0.57,0.08-0.81,0.21C10.08,1.94,9.81,1.75,9.5,1.75c-0.41,0-0.75,0.34-0.75,0.75 C8.75,2.86,9.01,3.14,9.34,3.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sentiment_dissatisfied\": {\n    \"name\": \"sentiment_dissatisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm6.95 9.5c-.7-1.19-1.97-2-3.45-2s-2.76.81-3.45 2H6.88C7.68 15.45 9.67 14 12 14s4.32 1.45 5.12 3.5h-1.67z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"paragliding\": {\n    \"name\": \"paragliding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,4.31C20.65,3.63,17.57,2,12,2S3.35,3.63,3,4.31v1.77C5.34,5.07,8.56,4.5,12,4.5s6.66,0.57,9,1.58V4.31z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,16.1,13.1,17,12,17z M15.48,17.94C14.68,18.54,14,19,12,19 s-2.68-0.46-3.48-1.06C8.04,17.55,7,16.76,7,14H5c0,2.7,0.93,4.41,2.3,5.5c0.5,0.4,1.1,0.7,1.7,0.9V24h6v-3.6 c0.6-0.2,1.2-0.5,1.7-0.9c1.37-1.09,2.3-2.8,2.3-5.5h-2C17,16.76,15.96,17.55,15.48,17.94z M23,4.25v3.49c0,0.8-0.88,1.26-1.56,0.83 C21.3,8.48,21.16,8.39,21,8.31L19,13h-2l-1.5-6.28C14.4,6.58,13.22,6.5,12,6.5S9.6,6.58,8.5,6.72L7,13H5L3,8.31 C2.84,8.39,2.7,8.48,2.56,8.57C1.88,9,1,8.55,1,7.74V4.25C1,1.9,5.92,0,12,0S23,1.9,23,4.25z M6.9,6.98 C5.97,7.17,5.12,7.41,4.37,7.69l1.51,3.55L6.9,6.98z M19.63,7.69c-0.75-0.28-1.6-0.52-2.53-0.71l1.02,4.25L19.63,7.69z M21,4.31 C20.65,3.63,17.57,2,12,2S3.35,3.63,3,4.31v1.77C5.34,5.07,8.56,4.5,12,4.5s6.66,0.57,9,1.58V4.31z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M17.5,3.48C17.34,2.95,14.78,1.5,10,1.5s-7.34,1.45-7.5,2l0,1.87C4.4,4.5,7.1,4,10,4c2.9,0,5.6,0.5,7.5,1.37 V3.48z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,14.25c-0.97,0-1.75-0.78-1.75-1.75s0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75S10.97,14.25,10,14.25z M10.5,15.5h-1 c-2.21,0-4-1.79-4-4H4c0,2.33,1.45,4.32,3.5,5.12V20h5v-3.38c2.05-0.8,3.5-2.79,3.5-5.12h-1.5C14.5,13.71,12.71,15.5,10.5,15.5z M19,3.48v3.17c0,0.61-0.68,0.95-1.19,0.61c-0.1-0.07-0.2-0.13-0.31-0.19L16,10.5h-1.5L13,5.7c-0.94-0.13-1.95-0.2-3-0.2 S7.94,5.57,7,5.7l-1.5,4.8H4L2.5,7.05C2.39,7.12,2.29,7.18,2.19,7.25C1.68,7.59,1,7.26,1,6.64V3.48C1,1.56,5.03,0,10,0 S19,1.56,19,3.48z M5.84,5.89C4.92,6.08,4.1,6.32,3.4,6.61l1.32,3.03L5.84,5.89z M16.6,6.61c-0.7-0.29-1.52-0.54-2.44-0.72 l1.13,3.75L16.6,6.61z M17.5,3.48C17.34,2.95,14.78,1.5,10,1.5s-7.34,1.45-7.5,2l0,1.87C4.4,4.5,7.1,4,10,4c2.9,0,5.6,0.5,7.5,1.37 V3.48z\\\"></path>\"\n      }\n    }\n  },\n  \"military_tech\": {\n    \"name\": \"military_tech\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13,11.07 15,9.87 15,4 13,4\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"9,4 9,9.87 11,11.07 11,4\\\"></polygon><path d=\\\"M17,10.43V2H7v8.43c0,0.35,0.18,0.68,0.49,0.86l4.18,2.51l-0.99,2.34l-3.41,0.29l2.59,2.24L9.07,22L12,20.23L14.93,22 l-0.78-3.33l2.59-2.24l-3.41-0.29l-0.99-2.34l4.18-2.51C16.82,11.11,17,10.79,17,10.43z M11,11.07l-2-1.2V4h2V11.07z M15,9.87 l-2,1.2V4h2V9.87z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12,4 10.5,4 10.5,10.46 12,9.46\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8,9.46 9.5,10.46 9.5,4 8,4\\\"></polygon><path d=\\\"M13.16,13.29l-2.27-0.19l-0.56-1.31l2.45-1.63C12.92,10.06,13,9.9,13,9.73V3H7v6.73c0,0.17,0.08,0.32,0.22,0.42l2.45,1.63 l-0.56,1.31l-2.27,0.19l1.72,1.49L8.05,17L10,15.82L11.95,17l-0.52-2.22L13.16,13.29z M10.5,4H12v5.46l-1.5,1V4z M9.5,10.46 l-1.5-1V4h1.5V10.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thumb_down_alt\": {\n    \"name\": \"thumb_down_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M3 12v2h8.77l-1.11 5.34L15 15V5H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.58-6.59c.37-.36.59-.86.59-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L11.77 14H3v-2l3-7h9v10zm4-12h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"group_remove\": {\n    \"name\": \"group_remove\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8,10c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S9.1,10,8,10z M14,18H2v-0.99C2.2,16.29,5.3,15,8,15s5.8,1.29,6,2 V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M24,9v2h-6V9H24z M8,4C5.79,4,4,5.79,4,8s1.79,4,4,4s4-1.79,4-4S10.21,4,8,4z M8,10c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S9.1,10,8,10z M8,13c-2.67,0-8,1.34-8,4v3h16v-3C16,14.34,10.67,13,8,13z M14,18H2v-0.99C2.2,16.29,5.3,15,8,15s5.8,1.29,6,2V18z M12.51,4.05C13.43,5.11,14,6.49,14,8s-0.57,2.89-1.49,3.95C14.47,11.7,16,10.04,16,8S14.47,4.3,12.51,4.05z M16.53,13.83 C17.42,14.66,18,15.7,18,17v3h2v-3C20,15.55,18.41,14.49,16.53,13.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6,5.5c0.83,0,1.5,0.67,1.5,1.5S6.83,8.5,6,8.5S4.5,7.83,4.5,7S5.17,5.5,6,5.5z M10.5,14.5h-9v-0.41 c0-0.18,0.09-0.34,0.22-0.42C3.02,12.9,4.5,12.5,6,12.5s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42 C10.5,14.08,10.5,14.5,10.5,14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,10c1.66,0,3-1.34,3-3S7.66,4,6,4S3,5.34,3,7S4.34,10,6,10z M6,5.5c0.83,0,1.5,0.67,1.5,1.5S6.83,8.5,6,8.5 S4.5,7.83,4.5,7S5.17,5.5,6,5.5z M11.03,12.37C9.56,11.5,7.84,11,6,11s-3.56,0.5-5.03,1.37C0.36,12.72,0,13.39,0,14.09V16h12v-1.91 C12,13.39,11.64,12.72,11.03,12.37z M10.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C3.02,12.9,4.5,12.5,6,12.5s2.98,0.4,4.28,1.16 c0.14,0.08,0.22,0.25,0.22,0.42C10.5,14.08,10.5,14.5,10.5,14.5z M16,14.09V16h-2.5v-1.91c0-1.15-0.56-2.22-1.48-2.86 c1.08,0.22,2.1,0.6,3.02,1.14C15.64,12.72,16,13.39,16,14.09z M9.38,9.93C10.07,9.14,10.5,8.13,10.5,7s-0.43-2.15-1.12-2.94 C9.58,4.02,9.79,4,10,4c1.66,0,3,1.34,3,3s-1.34,3-3,3C9.79,10,9.58,9.98,9.38,9.93z M19.5,9.25h-5v-1.5h5V9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"recycling\": {\n    \"name\": \"recycling\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.77 7.15 7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62-3.43-2.06zm15.95 5.82-1.6-2.66-3.46 2L18.87 16H20c.76 0 1.45-.43 1.79-1.11.14-.28.21-.58.21-.89 0-.36-.1-.71-.28-1.03zM16 21h1.5c.76 0 1.45-.43 1.79-1.11L20.74 17H16v-2l-4 4 4 4v-2zm-6-4H5.7l-.84 1.41c-.3.5-.32 1.12-.06 1.65.28.57.87.94 1.52.94H10v-4zm-3.88-2.65 1.73 1.04L6.48 9.9 1 11.27l1.7 1.02-.41.69c-.35.59-.38 1.31-.07 1.92l1.63 3.26 2.27-3.81zm10.9-9.21-1.3-2.17C15.35 2.37 14.7 2 14 2h-3.53l3.12 5.2-1.72 1.03 5.49 1.37 1.37-5.49-1.71 1.03z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13 14h3.83l-1.09 2.17c-.25.51-.77.83-1.34.83H13M7.62 7.72l1.8-3-.9-1.49c-.39-.65-1.33-.65-1.72 0L5.05 6.17l2.57 1.55zm8.72.77L13.72 10l1.83 3h.85c.57 0 1.09-.32 1.34-.83.23-.46.21-1-.06-1.44l-1.34-2.24zM4.37 15.08c-.22.37-.24.83-.05 1.22.22.43.66.7 1.14.7H8.5v-3H5.02l-.65 1.08zM13 14v-1.54l-3 3 3 3V17m1.01-12.4-1.13-1.88c-.26-.44-.75-.72-1.28-.72H8.95l2.49 4.15-1.29.77 4.12 1.03 1.03-4.12-1.29.77zM5.3 11.58l1.28.77-1.02-4.12-4.12 1.03 1.29.77-.42.69c-.26.44-.28.98-.06 1.44l1.22 2.44 1.83-3.02z\\\"></path>\"\n      }\n    }\n  },\n  \"scuba_diving\": {\n    \"name\": \"scuba_diving\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M1,13c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S1,14.1,1,13z M8.89,10.11l4.53-1.21L12.64,6L8.11,7.21 c-0.8,0.21-1.28,1.04-1.06,1.84l0,0C7.27,9.85,8.09,10.33,8.89,10.11z M20.5,5.9L23,3l-1-1l-3,3l-2,4l-9.48,2.87 c-0.82,0.2-1.39,0.89-1.5,1.68L5.24,18L2.4,21.8L4,23l3-4l1.14-3.14L14,14l5-3.5L20.5,5.9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M1,11c0,0.83,0.67,1.5,1.5,1.5S4,11.83,4,11S3.33,9.5,2.5,9.5S1,10.17,1,11z M11,11.53l-4.08,1.3l-0.85,2.83L3.45,19 l-1.31-0.98l2.22-2.89l0.67-4.04c0.11-0.55,0.53-1.02,1.11-1.17L14,7.5l1.5-3L18,2l1,1l-2,2l-1.5,4L11,11.53z M6.05,7.59L6.05,7.59 c-0.19-0.63,0.16-1.3,0.8-1.5L10.44,5l0.7,2.3l-3.59,1.1C6.92,8.59,6.25,8.23,6.05,7.59z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_remove_alt_1\": {\n    \"name\": \"person_remove_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,16c2.69,0,5.77,1.28,6,2H4C4.2,17.29,7.3,16,10,16z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,2.21,1.79,4,4,4C12.21,12,14,10.21,14,8z M12,8c0,1.1-0.9,2-2,2 c-1.1,0-2-0.9-2-2s0.9-2,2-2C11.1,6,12,6.9,12,8z\\\"></path><path d=\\\"M2,18v2h16v-2c0-2.66-5.33-4-8-4C7.33,14,2,15.34,2,18z M4,18c0.2-0.71,3.3-2,6-2c2.69,0,5.77,1.28,6,2H4z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"10\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"7\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M8,12c2.2,0,5,1.04,5,1.86V15H3v-1.14C3,13.04,5.8,12,8,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2,13.86V16h12v-2.14c0-1.9-4-2.86-6-2.86C6,11,2,11.96,2,13.86z M3,13.86C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15H3 V13.86z\\\"></path><path d=\\\"M11,7c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7c0,1.66,1.34,3,3,3C9.66,10,11,8.66,11,7z M10,7c0,1.1-0.9,2-2,2S6,8.1,6,7 s0.9-2,2-2S10,5.9,10,7z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"sledding\": {\n    \"name\": \"sledding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,4.5c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,3.4,14,4.5z M22.8,20.24c-0.68,2.1-2.94,3.25-5.04,2.57h0L1,17.36 l0.46-1.43l3.93,1.28l0.46-1.43L1.93,14.5l0.46-1.43L4,13.6V9.5l5.47-2.35c0.39-0.17,0.84-0.21,1.28-0.07 c0.95,0.31,1.46,1.32,1.16,2.27l-1.05,3.24L13,12.25c0.89-0.15,1.76,0.32,2.14,1.14l2.08,4.51l1.93,0.63l-0.46,1.43l-3.32-1.08 L14.9,20.3l3.32,1.08l0,0c1.31,0.43,2.72-0.29,3.15-1.61c0.43-1.31-0.29-2.72-1.61-3.15l0.46-1.43 C22.33,15.88,23.49,18.14,22.8,20.24z M6,14.25l1.01,0.33c-0.22-0.42-0.28-0.92-0.12-1.4L7.92,10L6,10.82V14.25z M13.94,18.41 l-6.66-2.16l-0.46,1.43l6.66,2.16L13.94,18.41z M14.63,17.05l-1.18-2.56l-3.97,0.89L14.63,17.05z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.25,3.75C8.25,2.78,9.03,2,10,2s1.75,0.78,1.75,1.75S10.97,5.5,10,5.5S8.25,4.72,8.25,3.75z M18.85,16.93 c-0.51,1.58-2.21,2.44-3.78,1.93L1,14.28l0.31-0.95l3.13,1.02l0.46-1.43L1.77,11.9l0.31-0.95l1.42,0.46V8l4.4-1.87 c0.32-0.14,0.68-0.17,1.04-0.06c0.79,0.24,1.24,1.08,1,1.87L9.15,10.5l2.09-0.37c0.45-0.08,0.89,0.16,1.08,0.57l1.92,4.2l1.92,0.62 l-0.31,0.95l-2.85-0.93l-0.46,1.43l2.85,0.93c1.05,0.34,2.18-0.24,2.52-1.28c0.34-1.05-0.24-2.18-1.28-2.52l0.31-0.95 C18.5,13.66,19.36,15.35,18.85,16.93z M5,11.9l1.17,0.38c-0.31-0.38-0.43-0.89-0.28-1.39l0.8-2.62L5,9V11.9z M12.04,15.24 l-6.18-2.01l-0.46,1.43l6.18,2.01L12.04,15.24z M12.3,14.27l-1.12-2.46L7.7,12.78L12.3,14.27z\\\"></path>\"\n      }\n    }\n  },\n  \"man_3\": {\n    \"name\": \"man_3\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,7h-4C8.9,7,8,7.9,8,9v6h2v7h4v-7h2V9C16,7.9,15.1,7,14,7z\\\"></path><rect height=\\\"3.18\\\" transform=\\\"matrix(0.7071 0.7071 -0.7071 0.7071 6.3431 -7.3137)\\\" width=\\\"3.18\\\" x=\\\"10.41\\\" y=\\\"2.41\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.5,7h-3C7.67,7,7,7.67,7,8.5V13h1.5v5h3v-5H13V8.5C13,7.67,12.33,7,11.5,7z\\\"></path><rect height=\\\"2.83\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 0.1005 8.2426)\\\" width=\\\"2.83\\\" x=\\\"8.59\\\" y=\\\"2.59\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"person_2\": {\n    \"name\": \"person_2\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.9,7.59C13.74,6.67,12.94,6,12,6s-1.74,0.67-1.9,1.59L9.78,10h4.44L13.9,7.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.48,16.34C16.29,15.73,14.37,15,12,15c-2.37,0-4.29,0.73-5.48,1.34C6.2,16.5,6,16.84,6,17.22V18h12 v-0.78C18,16.84,17.8,16.5,17.48,16.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.39,14.56C16.71,13.7,14.53,13,12,13c-2.53,0-4.71,0.7-6.39,1.56C4.61,15.07,4,16.1,4,17.22V20h16v-2.78 C20,16.1,19.39,15.07,18.39,14.56z M18,18H6v-0.78c0-0.38,0.2-0.72,0.52-0.88C7.71,15.73,9.63,15,12,15 c2.37,0,4.29,0.73,5.48,1.34C17.8,16.5,18,16.84,18,17.22V18z\\\"></path><path d=\\\"M9.78,12h4.44c1.21,0,2.14-1.06,1.98-2.26l-0.32-2.45C15.57,5.39,13.92,4,12,4S8.43,5.39,8.12,7.29L7.8,9.74 C7.64,10.94,8.57,12,9.78,12z M10.1,7.59C10.26,6.67,11.06,6,12,6s1.74,0.67,1.9,1.59L14.22,10H9.78L10.1,7.59z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.43,6.71C11.31,6.01,10.71,5.5,10,5.5c-0.71,0-1.31,0.51-1.43,1.21L8.27,8.5h3.46L11.43,6.71z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,12.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C12.98,12.9,11.5,12.5,10,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.27,10h3.46c0.93,0,1.63-0.83,1.48-1.75l-0.3-1.79C12.67,5.04,11.44,4,10,4S7.33,5.04,7.09,6.47l-0.3,1.79 C6.64,9.17,7.34,10,8.27,10z M8.57,6.71C8.69,6.01,9.29,5.5,10,5.5c0.71,0,1.31,0.51,1.43,1.21l0.3,1.79H8.27L8.57,6.71z\\\"></path><path d=\\\"M15.03,12.37C13.56,11.5,11.84,11,10,11s-3.56,0.5-5.03,1.37C4.36,12.72,4,13.39,4,14.09V16h12v-1.91 C16,13.39,15.64,12.72,15.03,12.37z M14.5,14.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C7.02,12.9,8.5,12.5,10,12.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"people_alt\": {\n    \"name\": \"people_alt\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><circle cx=\\\"9\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M9,15c-2.7,0-5.8,1.29-6,2.01L3,18h12v-1C14.8,16.29,11.7,15,9,15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.67,13.13C18.04,14.06,19,15.32,19,17v3h4v-3C23,14.82,19.43,13.53,16.67,13.13z\\\"></path><path d=\\\"M15,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-0.47,0-0.91,0.1-1.33,0.24C14.5,5.27,15,6.58,15,8s-0.5,2.73-1.33,3.76 C14.09,11.9,14.53,12,15,12z\\\"></path><path d=\\\"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z\\\"></path><path d=\\\"M9,13c-2.67,0-8,1.34-8,4v3h16v-3C17,14.34,11.67,13,9,13z M15,18H3l0-0.99C3.2,16.29,6.3,15,9,15s5.8,1.29,6,2V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M8.5,12c-2.15,0-4.38,0.77-4.5,1.23L4,14h9v-0.77C12.88,12.77,10.65,12,8.5,12z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"7.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8.5,10C9.88,10,11,8.88,11,7.5C11,6.12,9.88,5,8.5,5S6,6.12,6,7.5C6,8.88,7.12,10,8.5,10z M8.5,6C9.33,6,10,6.67,10,7.5 S9.33,9,8.5,9S7,8.33,7,7.5S7.67,6,8.5,6z\\\"></path><g><path d=\\\"M10.99,9.95C11.16,9.98,11.33,10,11.5,10c1.38,0,2.5-1.12,2.5-2.5 C14,6.12,12.88,5,11.5,5c-0.17,0-0.34,0.02-0.51,0.05C11.61,5.68,12,6.55,12,7.5S11.61,9.32,10.99,9.95z\\\" fill-rule=\\\"evenodd\\\"></path></g><path d=\\\"M8.5,11C6.66,11,3,11.66,3,13.23V15h11v-1.77C14,11.66,10.34,11,8.5,11z M13,14H4l0-0.77C4.12,12.77,6.35,12,8.5,12 s4.38,0.77,4.5,1.23V14z\\\"></path><g><path d=\\\"M13.73,11.23c0.75,0.48,1.27,1.12,1.27,2V15h2v-1.77 C17,12.18,15.36,11.54,13.73,11.23z\\\" fill-rule=\\\"evenodd\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"cookie\": {\n    \"name\": \"cookie\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.07,8.93c-2.55-0.39-4.57-2.41-4.99-4.94C6.73,3.82,4,8.69,4,12c0,4.41,3.59,8,8,8 c4.06,0,7.7-3.14,7.98-7.45C17.59,11.48,17.14,9.29,17.07,8.93z M8.5,15C7.67,15,7,14.33,7,13.5S7.67,12,8.5,12s1.5,0.67,1.5,1.5 S9.33,15,8.5,15z M10.5,10C9.67,10,9,9.33,9,8.5S9.67,7,10.5,7S12,7.67,12,8.5S11.33,10,10.5,10z M15,16c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C16,15.55,15.55,16,15,16z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10.5\\\" cy=\\\"8.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"15\\\" r=\\\"1\\\"></circle><path d=\\\"M21.95,10.99c-1.79-0.03-3.7-1.95-2.68-4.22c-2.97,1-5.78-1.59-5.19-4.56C7.1,0.74,2,6.41,2,12c0,5.52,4.48,10,10,10 C17.89,22,22.54,16.92,21.95,10.99z M12,20c-4.41,0-8-3.59-8-8c0-3.31,2.73-8.18,8.08-8.02c0.42,2.54,2.44,4.56,4.99,4.94 c0.07,0.36,0.52,2.55,2.92,3.63C19.7,16.86,16.06,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.14,7.45c-2.06-0.28-3.69-1.92-3.99-3.96C6.19,3.31,3.5,6.8,3.5,10c0,3.58,2.92,6.5,6.5,6.5 c3.57,0,6.31-2.83,6.49-6.12C14.53,9.54,14.19,7.75,14.14,7.45z M6.75,12.5c-0.69,0-1.25-0.56-1.25-1.25S6.06,10,6.75,10 S8,10.56,8,11.25S7.44,12.5,6.75,12.5z M8.75,8.5C8.06,8.5,7.5,7.94,7.5,7.25C7.5,6.56,8.06,6,8.75,6S10,6.56,10,7.25 C10,7.94,9.44,8.5,8.75,8.5z M12.5,13.25c-0.41,0-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75 S12.92,13.25,12.5,13.25z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8.75\\\" cy=\\\"7.25\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"6.75\\\" cy=\\\"11.25\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"12.5\\\" r=\\\".75\\\"></circle><path d=\\\"M17.96,9.2C16.53,9.17,15,7.64,15.81,5.82c-2.38,0.8-4.62-1.27-4.15-3.65C5.27,0.82,2,6.46,2,10c0,4.42,3.58,8,8,8 C14.71,18,18.43,13.94,17.96,9.2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5c0-3.2,2.69-6.69,6.65-6.51c0.3,2.04,1.93,3.68,3.99,3.96 c0.05,0.3,0.4,2.09,2.35,2.93C16.31,13.67,13.57,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cruelty_free\": {\n    \"name\": \"cruelty_free\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.88,4.03C16.94,4.2,17,4.51,17,5c0,2.84-1.11,5.24-2.07,6.78c-0.38-0.26-0.83-0.48-1.4-0.62 C13.77,6.64,15.97,4.33,16.88,4.03z M7,5c0-0.49,0.06-0.8,0.12-0.97c0.91,0.3,3.11,2.61,3.36,7.13c-0.58,0.14-1.03,0.35-1.4,0.62 C8.11,10.24,7,7.84,7,5z M16,15.77c-0.44-0.36-0.61-0.52-1.3-1.37C13.94,13.45,13.61,13,12,13s-1.94,0.45-2.7,1.4 c-0.69,0.85-0.86,1.01-1.3,1.37c-0.57,0.49-1,1.03-1,1.73C7,18.88,8.12,20,9.5,20c1,0,1.8-0.33,2.22-0.56 C11.3,19.26,11,18.73,11,18.5c0-0.28,0.45-0.5,1-0.5s1,0.22,1,0.5c0,0.23-0.3,0.76-0.72,0.94C12.7,19.67,13.5,20,14.5,20 c1.38,0,2.5-1.12,2.5-2.5C17,16.8,16.57,16.26,16,15.77z M10.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75 S11,15.59,11,16C11,16.41,10.78,16.75,10.5,16.75z M13.5,16.75c-0.28,0-0.5-0.34-0.5-0.75c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16 C14,16.41,13.78,16.75,13.5,16.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,14c-0.24-0.24-0.44-0.49-0.65-0.75C17.51,11.5,19,8.56,19,5c0-1.95-0.74-3-2-3c-1.54,0-3.96,2.06-5,5.97 C10.96,4.06,8.54,2,7,2C5.74,2,5,3.05,5,5c0,3.56,1.49,6.5,2.65,8.25C7.44,13.51,7.24,13.76,7,14c-0.25,0.25-2,1.39-2,3.5 C5,19.98,7.02,22,9.5,22c1.5,0,2.5-0.5,2.5-0.5s1,0.5,2.5,0.5c2.48,0,4.5-2.02,4.5-4.5C19,15.39,17.25,14.25,17,14z M16.88,4.03 C16.94,4.2,17,4.51,17,5c0,2.84-1.11,5.24-2.07,6.78c-0.38-0.26-0.83-0.48-1.4-0.62C13.77,6.64,15.97,4.33,16.88,4.03z M7,5 c0-0.49,0.06-0.8,0.12-0.97c0.91,0.3,3.11,2.61,3.36,7.13c-0.58,0.14-1.03,0.35-1.4,0.62C8.11,10.24,7,7.84,7,5z M14.5,20 c-1,0-1.8-0.33-2.22-0.56C12.7,19.26,13,18.73,13,18.5c0-0.28-0.45-0.5-1-0.5s-1,0.22-1,0.5c0,0.23,0.3,0.76,0.72,0.94 C11.3,19.67,10.5,20,9.5,20C8.12,20,7,18.88,7,17.5c0-0.7,0.43-1.24,1-1.73c0.44-0.36,0.61-0.52,1.3-1.37 c0.76-0.95,1.09-1.4,2.7-1.4s1.94,0.45,2.7,1.4c0.69,0.85,0.86,1.01,1.3,1.37c0.57,0.49,1,1.03,1,1.73C17,18.88,15.88,20,14.5,20z M14,16c0,0.41-0.22,0.75-0.5,0.75S13,16.41,13,16c0-0.41,0.22-0.75,0.5-0.75S14,15.59,14,16z M11,16c0,0.41-0.22,0.75-0.5,0.75 S10,16.41,10,16c0-0.41,0.22-0.75,0.5-0.75S11,15.59,11,16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M13.88,3.53C13.94,3.69,14,4,14,4.5c0,2.32-0.94,4.27-1.73,5.49c0,0-0.45-0.34-1.16-0.48C11.26,5.49,13.21,3.77,13.88,3.53 z M6,4.5C6,4,6.06,3.69,6.12,3.53c0.67,0.24,2.62,1.96,2.77,5.98C8.18,9.65,7.73,9.99,7.73,9.99C6.94,8.77,6,6.82,6,4.5z M13.09,12.96c-0.27-0.21-0.58-0.58-0.88-0.94c-0.62-0.75-0.93-1.12-2.21-1.12s-1.59,0.37-2.21,1.12c-0.3,0.36-0.61,0.73-0.88,0.94 C6.44,13.35,6,13.81,6,14.5c0,1.1,0.9,2,2,2c0.93,0,1.61-0.35,1.87-0.52C9.49,15.89,9.2,15.4,9.2,15.2c0-0.22,0.36-0.4,0.8-0.4 s0.8,0.18,0.8,0.4c0,0.2-0.29,0.69-0.67,0.78c0.27,0.17,0.94,0.52,1.87,0.52c1.1,0,2-0.9,2-2C14,13.81,13.56,13.35,13.09,12.96z M8.8,13.8c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6C9.2,13.53,9.02,13.8,8.8,13.8z M11.2,13.8 c-0.22,0-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6s0.4,0.27,0.4,0.6C11.6,13.53,11.42,13.8,11.2,13.8z\\\"></path></g><g><path d=\\\"M13.93,11.7c-0.21-0.21-0.41-0.43-0.57-0.64c0.93-1.37,2.14-3.69,2.14-6.56C15.5,2.94,15.01,2,14,2 c-1.23,0-3.17,1.65-4,4.78C9.17,3.65,7.23,2,6,2C4.99,2,4.5,2.94,4.5,4.5c0,2.87,1.21,5.19,2.14,6.56 c-0.18,0.22-0.35,0.42-0.57,0.64c-0.2,0.2-1.57,1.1-1.57,2.8C4.5,16.43,6.07,18,8,18c1.18,0,2-0.4,2-0.4s0.82,0.4,2,0.4 c1.93,0,3.5-1.57,3.5-3.5C15.5,12.8,14.13,11.9,13.93,11.7z M13.88,3.53C13.94,3.69,14,4,14,4.5c0,2.32-0.94,4.27-1.73,5.49 c0,0-0.45-0.34-1.16-0.48C11.26,5.49,13.21,3.77,13.88,3.53z M6,4.5C6,4,6.06,3.69,6.12,3.53c0.67,0.24,2.62,1.96,2.77,5.98 C8.18,9.65,7.73,9.99,7.73,9.99C6.94,8.77,6,6.82,6,4.5z M12,16.5c-0.93,0-1.61-0.35-1.87-0.52c0.38-0.09,0.67-0.59,0.67-0.78 c0-0.22-0.36-0.4-0.8-0.4s-0.8,0.18-0.8,0.4c0,0.2,0.29,0.69,0.67,0.78C9.61,16.15,8.93,16.5,8,16.5c-1.1,0-2-0.9-2-2 c0-0.69,0.44-1.15,0.91-1.54c0.27-0.21,0.58-0.58,0.88-0.94C8.41,11.27,8.72,10.9,10,10.9s1.59,0.37,2.21,1.12 c0.3,0.36,0.61,0.73,0.88,0.94C13.56,13.35,14,13.81,14,14.5C14,15.6,13.1,16.5,12,16.5z M11.6,13.2c0,0.33-0.18,0.6-0.4,0.6 s-0.4-0.27-0.4-0.6c0-0.33,0.18-0.6,0.4-0.6S11.6,12.87,11.6,13.2z M9.2,13.2c0,0.33-0.18,0.6-0.4,0.6s-0.4-0.27-0.4-0.6 c0-0.33,0.18-0.6,0.4-0.6S9.2,12.87,9.2,13.2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_add_alt_1\": {\n    \"name\": \"person_add_alt_1\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M9,16c-2.7,0-5.8,1.29-6,2h12C14.78,17.28,11.69,16,9,16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,14c-2.67,0-8,1.34-8,4v2h16v-2C17,15.34,11.67,14,9,14z M3,18c0.2-0.71,3.3-2,6-2c2.69,0,5.78,1.28,6,2H3z\\\"></path><polygon points=\\\"20,10 20,7 18,7 18,10 15,10 15,12 18,12 18,15 20,15 20,12 23,12 23,10\\\"></polygon><path d=\\\"M9,12c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,5.79,5,8C5,10.21,6.79,12,9,12z M9,6c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 S7,9.1,7,8C7,6.9,7.9,6,9,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"7\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M8,12c-2.2,0-5,1.04-5,1.86V15h10v-1.14C13,13.04,10.2,12,8,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,11c-2,0-6,0.96-6,2.86V16h12v-2.14C14,11.96,10,11,8,11z M13,15H3v-1.14C3,13.04,5.8,12,8,12c2.2,0,5,1.04,5,1.86V15z\\\"></path><path d=\\\"M8,10c1.66,0,3-1.34,3-3c0-1.66-1.34-3-3-3C6.34,4,5,5.34,5,7C5,8.66,6.34,10,8,10z M8,5c1.1,0,2,0.9,2,2S9.1,9,8,9 S6,8.1,6,7S6.9,5,8,5z\\\"></path><polygon points=\\\"16,9 16,7 15,7 15,9 13,9 13,10 15,10 15,12 16,12 16,10 18,10 18,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"social_distance\": {\n    \"name\": \"social_distance\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,5c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S4,6.1,4,5z M8.78,8.58C7.93,8.21,6.99,8,6,8S4.07,8.21,3.22,8.58 C2.48,8.9,2,9.62,2,10.43L2,11h8l0-0.57C10,9.62,9.52,8.9,8.78,8.58z M18,7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2 C16,6.1,16.9,7,18,7z M20.78,8.58C19.93,8.21,18.99,8,18,8c-0.99,0-1.93,0.21-2.78,0.58C14.48,8.9,14,9.62,14,10.43L14,11h8l0-0.57 C22,9.62,21.52,8.9,20.78,8.58z M22,17l-4-4v3H6v-3l-4,4l4,4v-3h12v3L22,17z\\\"></path>\"\n      }\n    }\n  },\n  \"skateboarding\": {\n    \"name\": \"skateboarding\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S13,4.1,13,3z M7.25,22.5c-0.41,0-0.75,0.34-0.75,0.75S6.84,24,7.25,24 S8,23.66,8,23.25S7.66,22.5,7.25,22.5z M15.75,22.5c-0.41,0-0.75,0.34-0.75,0.75S15.34,24,15.75,24s0.75-0.34,0.75-0.75 S16.16,22.5,15.75,22.5z M19.24,19c-0.24,0-0.45,0.11-0.59,0.3c-0.55,0.73-1.42,1.2-2.4,1.2H16v-6l-4.32-2.67l1.8-2.89 C14.63,10.78,16.68,12,19,12v-2c-1.85,0-3.44-1.12-4.13-2.72l-0.52-1.21C14.16,5.64,13.61,5,12.7,5H7L4.5,9l1.7,1.06L8.1,7h2.35 l-2.4,3.84c-0.31,0.5-0.39,1.11-0.21,1.67l1.34,4.14l-3.12,3.76c-0.7-0.16-1.3-0.57-1.71-1.12C4.21,19.11,3.99,19,3.75,19 C3.31,19,3,19.36,3,19.75c0,0.15,0.05,0.31,0.15,0.45c0.82,1.1,2.13,1.8,3.6,1.8h9.5c1.47,0,2.78-0.7,3.6-1.8 c0.1-0.14,0.15-0.3,0.15-0.45C20,19.36,19.68,19,19.24,19z M14,20.5H8.6l2.9-3.5l-1-3.3l3.5,2.2V20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M7.49,19.25c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75s0.34-0.75,0.75-0.75S7.49,18.84,7.49,19.25z M13.26,18.5 c-0.41,0-0.75,0.34-0.75,0.75S12.85,20,13.26,20s0.75-0.34,0.75-0.75S13.67,18.5,13.26,18.5z M12.25,4.5C13.21,4.5,14,3.72,14,2.75 S13.22,1,12.25,1S10.5,1.78,10.5,2.75S11.29,4.5,12.25,4.5z M17,16.5c0,0.12-0.04,0.24-0.13,0.34C16.46,17.29,15.58,18,14.26,18 H5.74c-1.25,0-2.13-0.62-2.61-1.16C3.05,16.75,3,16.62,3,16.5C3,16.24,3.2,16,3.5,16c0.14,0,0.28,0.06,0.38,0.17 C4.34,16.68,5,17,5.74,17H6l2-3l-1.23-3.23C6.6,10.33,6.65,9.84,6.9,9.44L8.73,6.5H6.8L5.27,8.9L4,8l2-3h4.5 c0.68,0,1.11,0.43,1.3,0.76l0.75,1.27C13.25,8.21,14.53,9,16,9v1.5c-1.95,0-3.66-1.02-4.64-2.55L10,10.13l3.5,2.37V17h0.76 c0.74,0,1.4-0.32,1.86-0.83c0.1-0.11,0.23-0.17,0.38-0.17C16.8,16,17,16.24,17,16.5z M12,13.4l-3-1.65l0.7,2.45L7.8,17H12V13.4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"engineering\": {\n    \"name\": \"engineering\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,11c1.1,0,2-0.9,2-2H7C7,10.1,7.9,11,9,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,6C7.78,6,8,5.78,8,5.5V4.14C7.64,4.23,7.31,4.37,7,4.55V5.5C7,5.78,7.22,6,7.5,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.5,6C10.78,6,11,5.78,11,5.5V4.55c-0.31-0.18-0.64-0.32-1-0.41V5.5C10,5.78,10.22,6,10.5,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,17c-2.69,0-5.77,1.28-6,2h12C14.8,18.29,11.7,17,9,17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,15c-2.67,0-8,1.34-8,4v2h16v-2C17,16.34,11.67,15,9,15z M3,19c0.22-0.72,3.31-2,6-2c2.7,0,5.8,1.29,6,2H3z\\\"></path><path d=\\\"M4.74,9H5c0,2.21,1.79,4,4,4s4-1.79,4-4h0.26c0.27,0,0.49-0.22,0.49-0.49V8.49c0-0.27-0.22-0.49-0.49-0.49H13 c0-1.48-0.81-2.75-2-3.45V5.5C11,5.78,10.78,6,10.5,6S10,5.78,10,5.5V4.14C9.68,4.06,9.35,4,9,4S8.32,4.06,8,4.14V5.5 C8,5.78,7.78,6,7.5,6S7,5.78,7,5.5V4.55C5.81,5.25,5,6.52,5,8H4.74C4.47,8,4.25,8.22,4.25,8.49v0.03C4.25,8.78,4.47,9,4.74,9z M11,9c0,1.1-0.9,2-2,2s-2-0.9-2-2H11z\\\"></path><path d=\\\"M21.98,6.23l0.93-0.83l-0.75-1.3l-1.19,0.39c-0.14-0.11-0.3-0.2-0.47-0.27L20.25,3h-1.5L18.5,4.22 c-0.17,0.07-0.33,0.16-0.48,0.27L16.84,4.1l-0.75,1.3l0.93,0.83C17,6.4,17,6.58,17.02,6.75L16.09,7.6l0.75,1.3l1.2-0.38 c0.13,0.1,0.28,0.18,0.43,0.25L18.75,10h1.5l0.27-1.22c0.16-0.07,0.3-0.15,0.44-0.25l1.19,0.38l0.75-1.3l-0.93-0.85 C22,6.57,21.99,6.4,21.98,6.23z M19.5,7.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S20.19,7.75,19.5,7.75z\\\"></path><path d=\\\"M19.27,12.31l0.66-0.59l-0.54-0.93l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L18.04,10h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19l-0.84-0.28l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L16.96,15h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C19.28,12.55,19.28,12.43,19.27,12.31z M17.5,13.39c-0.49,0-0.89-0.4-0.89-0.89s0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 S17.99,13.39,17.5,13.39z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17.27,5.31l0.66-0.59L17.4,3.79l-0.85,0.28c-0.1-0.08-0.21-0.14-0.33-0.19L16.04,3h-1.07l-0.18,0.87 c-0.12,0.05-0.24,0.12-0.34,0.19L13.6,3.79l-0.54,0.93l0.66,0.59c-0.01,0.13-0.01,0.25,0,0.37l-0.66,0.61l0.54,0.93l0.86-0.27 c0.1,0.07,0.2,0.13,0.31,0.18L14.96,8h1.07l0.19-0.87c0.11-0.05,0.22-0.11,0.32-0.18l0.85,0.27l0.54-0.93l-0.66-0.61 C17.28,5.55,17.28,5.43,17.27,5.31z M15.5,6.39c-0.49,0-0.89-0.4-0.89-0.89s0.4-0.89,0.89-0.89s0.89,0.4,0.89,0.89 S15.99,6.39,15.5,6.39z\\\"></path><path d=\\\"M15.21,9.78l0.47-0.42L15.3,8.72l-0.59,0.2c-0.07-0.05-0.15-0.1-0.23-0.13l-0.13-0.61H13.6l-0.13,0.61 c-0.08,0.04-0.17,0.08-0.24,0.14l-0.59-0.19l-0.38,0.65l0.46,0.41c-0.01,0.09-0.01,0.18,0,0.26l-0.46,0.42l0.38,0.65l0.6-0.19 c0.07,0.05,0.14,0.09,0.22,0.12l0.14,0.62h0.75l0.13-0.61c0.08-0.04,0.15-0.08,0.22-0.13l0.59,0.19l0.38-0.65l-0.46-0.42 C15.22,9.95,15.22,9.87,15.21,9.78z M13.97,10.54c-0.35,0-0.62-0.28-0.62-0.62s0.28-0.62,0.62-0.62s0.62,0.28,0.62,0.62 S14.32,10.54,13.97,10.54z\\\"></path><path d=\\\"M6.75,6C6.89,6,7,5.89,7,5.75v-0.7C6.83,5.09,6.66,5.14,6.5,5.21v0.54C6.5,5.89,6.61,6,6.75,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.25,6C8.39,6,8.5,5.89,8.5,5.75V5.21C8.34,5.14,8.17,5.09,8,5.05v0.7C8,5.89,8.11,6,8.25,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,9.5C8.33,9.5,9,8.83,9,8H6C6,8.83,6.67,9.5,7.5,9.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,13c-2.29,0-4.45,1.1-4.5,1.97h9C11.95,14.1,9.79,13,7.5,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,12C5,12,2,13.24,2,15v0.97h11V15C13,13.24,10,12,7.5,12z M3,14.97C3.05,14.1,5.21,13,7.5,13s4.45,1.1,4.5,1.97H3z\\\"></path><path d=\\\"M4.82,8H5c0,1.38,1.12,2.5,2.5,2.5S10,9.38,10,8h0.32c0.14,0,0.25-0.11,0.25-0.25S10.45,7.5,10.32,7.5H10 c0-1.02-0.62-1.9-1.5-2.29v0.54C8.5,5.89,8.39,6,8.25,6S8,5.89,8,5.75v-0.7C7.84,5.02,7.67,5,7.5,5S7.16,5.02,7,5.05v0.7 C7,5.89,6.89,6,6.75,6S6.5,5.89,6.5,5.75V5.21C5.62,5.6,5,6.48,5,7.5H4.82c-0.14,0-0.25,0.11-0.25,0.25S4.68,8,4.82,8z M9,8 c0,0.83-0.67,1.5-1.5,1.5S6,8.83,6,8H9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"no_adult_content\": {\n    \"name\": \"no_adult_content\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.54,1.69-4.9L7.59,9h2.83 L7.1,5.69C8.46,4.63,10.15,4,12,4c4.41,0,8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.9-1.9h-2.83l3.31,3.31 C15.54,19.37,13.85,20,12,20C7.59,20,4,16.41,4,12z\\\"></path><polygon points=\\\"14.25,14 12.75,12 14.25,10 12.75,10 12,11 11.25,10 9.75,10 11.25,12 9.75,14 11.25,14 12,13 12.75,14\\\"></polygon><polygon points=\\\"8,10 7.25,11 6.5,10 5,10 6.5,12 5,14 6.5,14 7.25,13 8,14 9.5,14 8,12 9.5,10\\\"></polygon><polygon points=\\\"16,14 16.75,13 17.5,14 19,14 17.5,12 19,10 17.5,10 16.75,11 16,10 14.5,10 16,12 14.5,14\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.52,0.53-2.92,1.41-4.03L6.44,7.5h2.12 L5.97,4.91C7.08,4.03,8.48,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5c0,1.52-0.53,2.92-1.41,4.03l-1.53-1.53h-2.12l2.59,2.59 c-1.11,0.88-2.51,1.41-4.03,1.41C6.42,16.5,3.5,13.58,3.5,10z\\\"></path><polygon points=\\\"10.5,10 11.5,8.5 10.5,8.5 10,9.25 9.5,8.5 8.5,8.5 9.5,10 8.5,11.5 9.5,11.5 10,10.75 10.5,11.5 11.5,11.5\\\"></polygon><polygon points=\\\"7,8.5 6.5,9.25 6,8.5 5,8.5 6,10 5,11.5 6,11.5 6.5,10.75 7,11.5 8,11.5 7,10 8,8.5\\\"></polygon><polygon points=\\\"13.25,11.5 13.75,10.75 14.25,11.5 15.25,11.5 14.25,10 15.25,8.5 14.25,8.5 13.75,9.25 13.25,8.5 12.25,8.5 13.25,10 12.25,11.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"travel_explore\": {\n    \"name\": \"travel_explore\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.3,16.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S11,12,11,14.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l3.2,3.2 l1.4-1.4L19.3,16.9z M15.5,17c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S16.9,17,15.5,17z M12,20v2 C6.48,22,2,17.52,2,12C2,6.48,6.48,2,12,2c4.84,0,8.87,3.44,9.8,8h-2.07c-0.64-2.46-2.4-4.47-4.73-5.41V5c0,1.1-0.9,2-2,2h-2v2 c0,0.55-0.45,1-1,1H8v2h2v3H9l-4.79-4.79C4.08,10.79,4,11.38,4,12C4,16.41,7.59,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.85,8.5h-1.54c-0.48-2.03-1.93-3.68-3.82-4.48V4.5C12.5,5.33,11.83,6,11,6H9v1c0,0.55-0.45,1-1,1H7v2h1v2H7L3.64,8.64 C3.55,9.08,3.5,9.53,3.5,10c0,3.58,2.92,6.5,6.5,6.5V18c-4.42,0-8-3.58-8-8s3.58-8,8-8C13.91,2,17.15,4.8,17.85,8.5z M18,16.44 l-1.06,1.06l-2.56-2.56c-0.54,0.35-1.19,0.56-1.88,0.56C10.57,15.5,9,13.93,9,12s1.57-3.5,3.5-3.5S16,10.07,16,12 c0,0.69-0.21,1.34-0.56,1.88L18,16.44z M14.5,12c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14.5,13.1,14.5,12z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_tennis\": {\n    \"name\": \"sports_tennis\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19.52,2.49c-2.34-2.34-6.62-1.87-9.55,1.06c-1.6,1.6-2.52,3.87-2.54,5.46c-0.02,1.58,0.26,3.89-1.35,5.5l-4.24,4.24 l1.42,1.42l4.24-4.24c1.61-1.61,3.92-1.33,5.5-1.35s3.86-0.94,5.46-2.54C21.38,9.11,21.86,4.83,19.52,2.49z M10.32,11.68 c-1.53-1.53-1.05-4.61,1.06-6.72s5.18-2.59,6.72-1.06c1.53,1.53,1.05,4.61-1.06,6.72S11.86,13.21,10.32,11.68z\\\"></path><path d=\\\"M18,17c0.53,0,1.04,0.21,1.41,0.59c0.78,0.78,0.78,2.05,0,2.83C19.04,20.79,18.53,21,18,21s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C16.96,17.21,17.47,17,18,17 M18,15c-1.02,0-2.05,0.39-2.83,1.17c-1.56,1.56-1.56,4.09,0,5.66 C15.95,22.61,16.98,23,18,23s2.05-0.39,2.83-1.17c1.56-1.56,1.56-4.09,0-5.66C20.05,15.39,19.02,15,18,15L18,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.09,10.28c2.2-2.2,2.55-5.4,0.8-7.16c-1.76-1.76-4.96-1.4-7.16,0.8C6.4,5.24,5.75,6.93,5.82,8.44l0,0 c-0.04,0.82,0.29,2.73-0.98,4.01L2.28,15L3,15.72l2.56-2.56c1.27-1.27,3.19-0.94,4.01-0.98l0,0 C11.07,12.25,12.76,11.6,14.09,10.28z M7.64,10.36C6.27,9,6.63,6.42,8.43,4.62s4.38-2.16,5.75-0.8c1.36,1.36,1.01,3.94-0.8,5.75 S9,11.73,7.64,10.36z\\\"></path><path d=\\\"M16.12,12.88C15.54,12.29,14.77,12,14,12s-1.54,0.29-2.12,0.88c-1.17,1.17-1.17,3.07,0,4.24C12.46,17.71,13.23,18,14,18 s1.54-0.29,2.12-0.88C17.29,15.95,17.29,14.05,16.12,12.88z M15.41,16.41C15.04,16.79,14.53,17,14,17s-1.04-0.21-1.41-0.59 c-0.78-0.78-0.78-2.05,0-2.83C12.96,13.21,13.47,13,14,13s1.04,0.21,1.41,0.59C16.19,14.37,16.19,15.63,15.41,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"person_add\": {\n    \"name\": \"person_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 16c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H9zm-3-3v-3h3v-2H6V7H4v3H1v2h3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"coronavirus\": {\n    \"name\": \"coronavirus\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7z M13.75,8c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S13.2,8,13.75,8z M10.25,8c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.7,8,10.25,8z M8.5,13c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C9.5,12.55,9.05,13,8.5,13z M10.25,16c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11.25,15.55,10.8,16,10.25,16z M12,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,12.55,12.55,13,12,13z M13.75,16 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.75,15.55,14.3,16,13.75,16z M15.5,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16.5,12.55,16.05,13,15.5,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.5,12c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9.5,11.45,9.5,12z M13.75,10c0.55,0,1-0.45,1-1s-0.45-1-1-1 s-1,0.45-1,1S13.2,10,13.75,10z M10.25,10c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S9.7,10,10.25,10z M10.25,14 c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C11.25,14.45,10.8,14,10.25,14z M22,11.25v1.5c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75h-1.54c-0.15,1.37-0.69,2.63-1.52,3.65l1.09,1.09l0.01-0.01c0.29-0.29,0.77-0.29,1.06,0 c0.29,0.29,0.29,0.77,0,1.06l-1.06,1.06c-0.29,0.29-0.77,0.29-1.06,0c-0.29-0.29-0.29-0.76-0.01-1.05l-1.09-1.09 c-1.02,0.82-2.27,1.36-3.64,1.51v1.54h0.01c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75h-1.5 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.33-0.74,0.74-0.75v-1.55c-1.37-0.15-2.62-0.69-3.63-1.51l-1.09,1.09l0.01,0.01 c0.29,0.29,0.29,0.77,0,1.06c-0.29,0.29-0.77,0.29-1.06,0L4.4,18.54c-0.29-0.29-0.29-0.77,0-1.06c0.29-0.29,0.76-0.29,1.05-0.01 l1.09-1.09c-0.82-1.02-1.36-2.26-1.5-3.63H3.5c0,0.41-0.34,0.75-0.75,0.75C2.34,13.5,2,13.16,2,12.75v-1.5 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75h1.54c0.15-1.37,0.69-2.61,1.5-3.63L5.45,6.53C5.16,6.81,4.69,6.81,4.4,6.52 c-0.29-0.29-0.29-0.77,0-1.06L5.46,4.4c0.29-0.29,0.77-0.29,1.06,0c0.29,0.29,0.29,0.77,0,1.06L6.51,5.47L7.6,6.56 c1.02-0.82,2.26-1.36,3.63-1.51V3.5c-0.41-0.01-0.74-0.34-0.74-0.75C10.5,2.34,10.84,2,11.25,2h1.5c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75h-0.01v1.54c1.37,0.14,2.62,0.69,3.64,1.51l1.09-1.09c-0.29-0.29-0.28-0.76,0.01-1.05 c0.29-0.29,0.77-0.29,1.06,0l1.06,1.06c0.29,0.29,0.29,0.77,0,1.06s-0.77,0.29-1.06,0l-0.01-0.01L17.44,7.6 c0.82,1.02,1.37,2.27,1.52,3.65h1.54c0-0.41,0.34-0.75,0.75-0.75C21.66,10.5,22,10.84,22,11.25z M17,12c0-2.76-2.24-5-5-5 s-5,2.24-5,5s2.24,5,5,5S17,14.76,17,12z M12,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C13,11.45,12.55,11,12,11z M15.5,11c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1C16.5,11.45,16.05,11,15.5,11z M13.75,14c-0.55,0-1,0.45-1,1 c0,0.55,0.45,1,1,1s1-0.45,1-1C14.75,14.45,14.3,14,13.75,14z\\\"></path>\"\n      }\n    }\n  },\n  \"sports_rugby\": {\n    \"name\": \"sports_rugby\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.29,5.71c-1.93,0.64-5.02,2.19-7.7,4.88c-2.71,2.71-4.24,5.81-4.87,7.7c1.93-0.64,5.03-2.2,7.7-4.87 C16.13,10.7,17.66,7.6,18.29,5.71z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.17,9.17c2.15-2.15,4.56-3.67,6.61-4.61C14.1,4.64,10.4,5.12,7.76,7.76c-2.32,2.32-3.1,5.58-3.2,8.04 C5.5,13.75,7.01,11.33,9.17,9.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.83,14.83c-2.15,2.15-4.56,3.67-6.61,4.61c1.68-0.08,5.39-0.55,8.03-3.19c2.32-2.32,3.1-5.58,3.2-8.04 C18.5,10.25,16.99,12.67,14.83,14.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.49,3.51c-0.56-0.56-2.15-0.97-4.16-0.97c-3.08,0-7.15,0.96-9.98,3.79C1.66,11.03,2.1,19.07,3.51,20.49 c0.56,0.56,2.15,0.97,4.16,0.97c3.08,0,7.15-0.96,9.98-3.79C22.34,12.97,21.9,4.93,20.49,3.51z M5.71,18.29 c0.63-1.89,2.16-4.99,4.87-7.7c2.68-2.68,5.78-4.23,7.7-4.88c-0.63,1.89-2.16,4.99-4.88,7.7C10.74,16.09,7.64,17.64,5.71,18.29z M7.76,7.76c2.64-2.64,6.34-3.12,8.03-3.19c-2.05,0.94-4.46,2.46-6.61,4.61c-2.16,2.16-3.67,4.58-4.61,6.63 C4.66,13.33,5.44,10.07,7.76,7.76z M16.24,16.24c-2.64,2.64-6.34,3.12-8.03,3.19c2.05-0.94,4.46-2.46,6.61-4.61 c2.16-2.16,3.67-4.58,4.62-6.63C19.34,10.67,18.56,13.93,16.24,16.24z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.45,5.55c-1.11,0.1-3.74,0.9-5.86,3.03c-2.16,2.16-2.94,4.81-3.04,5.86c1.11-0.1,3.73-0.9,5.86-3.03 C13.57,9.25,14.35,6.6,14.45,5.55z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.88,7.88c1.36-1.36,2.94-2.25,4.3-2.76C11.03,5.19,8.8,5.54,7.17,7.17c-1.43,1.43-1.95,3.41-2.05,4.98 C5.64,10.8,6.53,9.23,7.88,7.88z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.12,12.12c-1.36,1.36-2.94,2.25-4.3,2.76c1.15-0.07,3.38-0.43,5.01-2.06c1.43-1.43,1.95-3.41,2.05-4.98 C14.36,9.2,13.47,10.77,12.12,12.12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7C15.3,4.7,15.3,4.7,15.3,4.7c-0.35-0.35-1.34-0.6-2.6-0.6 c-1.93,0-4.47,0.6-6.24,2.37C3.54,9.39,3.81,14.42,4.7,15.3c0.35,0.35,1.34,0.6,2.6,0.6c1.93,0,4.47-0.6,6.24-2.37 C16.46,10.61,16.19,5.58,15.3,4.7z M5.55,14.45c0.1-1.05,0.88-3.7,3.04-5.86c2.13-2.13,4.76-2.94,5.86-3.03 c-0.1,1.05-0.88,3.7-3.04,5.86C9.28,13.54,6.66,14.35,5.55,14.45z M7.17,7.17c1.63-1.63,3.86-1.98,5.01-2.06 c-1.36,0.52-2.94,1.4-4.3,2.76c-1.35,1.35-2.24,2.92-2.76,4.28C5.22,10.58,5.75,8.6,7.17,7.17z M12.83,12.83 c-1.63,1.63-3.86,1.98-5.01,2.06c1.36-0.52,2.94-1.4,4.3-2.76c1.35-1.35,2.24-2.92,2.76-4.28C14.78,9.42,14.25,11.4,12.83,12.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"connect_without_contact\": {\n    \"name\": \"connect_without_contact\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,14H9c0-4.97,4.03-9,9-9v2C14.13,7,11,10.13,11,14z M18,11V9c-2.76,0-5,2.24-5,5h2C15,12.34,16.34,11,18,11z M7,4 c0-1.11-0.89-2-2-2S3,2.89,3,4s0.89,2,2,2S7,5.11,7,4z M11.45,4.5h-2C9.21,5.92,7.99,7,6.5,7h-3C2.67,7,2,7.67,2,8.5V11h6V8.74 C9.86,8.15,11.25,6.51,11.45,4.5z M19,17c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S17.89,17,19,17z M20.5,18h-3 c-1.49,0-2.71-1.08-2.95-2.5h-2c0.2,2.01,1.59,3.65,3.45,4.24V22h6v-2.5C22,18.67,21.33,18,20.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"woman\": {\n    \"name\": \"woman\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.94,8.31C13.62,7.52,12.85,7,12,7s-1.62,0.52-1.94,1.31L7,16h3v6h4v-6h3L13.94,8.31z\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"3.75\\\" r=\\\"1.75\\\"></circle><path d=\\\"M11.39,7.92C11.15,7.36,10.61,7,10,7S8.85,7.36,8.61,7.92L6,14h2.5v4h3.01v-4H14L11.39,7.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"science\": {\n    \"name\": \"science\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13,6 11,6 11,11.33 6,18 18,18 13,11.33\\\"></polygon><path d=\\\"M20.8,18.4L15,10.67V6.5l1.35-1.69C16.61,4.48,16.38,4,15.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L9,6.5v4.17L3.2,18.4 C2.71,19.06,3.18,20,4,20h16C20.82,20,21.29,19.06,20.8,18.4z M6,18l5-6.67V6h2v5.33L18,18H6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"10.5,5.52 10.92,5 9.08,5 9.5,5.52 9.5,9.27 5.04,15 14.96,15 10.5,9.27\\\"></polygon><path d=\\\"M15.74,14.39L11.5,8.93V5.87l0.85-1.06C12.61,4.48,12.38,4,11.96,4H8.04C7.62,4,7.39,4.48,7.65,4.81L8.5,5.87v3.05 l-4.24,5.46C3.74,15.04,4.21,16,5.04,16h9.91C15.79,16,16.26,15.04,15.74,14.39z M5.04,15L9.5,9.27V5.52L9.08,5h1.84L10.5,5.52 v3.75L14.96,15H5.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nordic_walking\": {\n    \"name\": \"nordic_walking\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M19,23h-1.5v-9H19V23z M7.53,14H6l-2,9h1.53L7.53,14z M13.5,5.5c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S12.4,5.5,13.5,5.5z M9.8,8.9L7,23h2.1l1.8-8l2.1,2v6h2v-7.5l-2.1-2l0.6-3C14.8,12,16.8,13,19,13v-2c-1.9,0-3.5-1-4.3-2.4l-1-1.6 c-0.56-0.89-1.68-1.25-2.65-0.84L6,8.3V13h2V9.6L9.8,8.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,3.75C9.25,2.78,10.03,2,11,2s1.75,0.78,1.75,1.75c0,0.97-0.79,1.75-1.75,1.75C10.04,5.5,9.25,4.72,9.25,3.75z M15,11 V9.5c-3.12,0-2.99-2.17-4.11-3.06c-0.57-0.46-1.35-0.57-2.03-0.28L5,7.79V11h1.5V8.78l1.65-0.7L6.2,18h1.53l1.19-6.02l1.58,1.59V18 H12v-5.05l-1.46-1.46l0.49-2.48C11.94,10.21,13.37,11,15,11z M14,18h1v-6h-1V18z M6.03,12H5l-1.4,6h1.03L6.03,12z\\\"></path>\"\n      }\n    }\n  },\n  \"face_4\": {\n    \"name\": \"face_4\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4.42,9.47L4.42,9.47C6.13,8.5,7.45,6.92,8.08,5.03C6.37,6,5.05,7.58,4.42,9.47z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5,8c0.46,0,0.91-0.05,1.34-0.12C17.44,5.56,14.9,4,12,4c-0.46,0-0.91,0.05-1.34,0.12h0 C12.06,6.44,14.6,8,17.5,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.35,3.15C6.8,2.46,5.95,2,5,2C3.35,2,2,3.35,2,5c0,0.95,0.46,1.8,1.15,2.35 C4.09,5.56,5.56,4.09,7.35,3.15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2c-0.96,0-1.88,0.14-2.75,0.39C8.37,0.96,6.8,0,5,0C2.24,0,0,2.24,0,5c0,1.8,0.96,3.37,2.39,4.25 C2.14,10.12,2,11.04,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,4c2.9,0,5.44,1.56,6.84,3.88 C18.41,7.95,17.96,8,17.5,8c-2.9,0-5.44-1.56-6.84-3.88h0C11.09,4.05,11.54,4,12,4z M2,5c0-1.65,1.35-3,3-3 c0.95,0,1.8,0.46,2.35,1.15C5.56,4.09,4.09,5.56,3.15,7.35C2.46,6.8,2,5.95,2,5z M8.08,5.03C7.45,6.92,6.13,8.5,4.42,9.47h0 C5.05,7.58,6.37,6,8.08,5.03z M12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0.01-0.15c2.6-0.98,4.68-2.99,5.74-5.55 C11.58,8.56,14.37,10,17.5,10c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12C20,16.41,16.41,20,12,20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.89,7.82c1.49-0.74,2.66-2.04,3.23-3.62C5.62,4.94,4.45,6.23,3.89,7.82z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.41,6.43c-0.44-0.67-2.63-3.54-6.57-2.82C9.31,4.25,11.49,6.95,15.41,6.43z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.25,2.93C5.85,2.09,5,1.5,4,1.5C2.62,1.5,1.5,2.62,1.5,4c0,1,0.59,1.85,1.43,2.25 C3.68,4.84,4.84,3.68,6.25,2.93z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M10,2C9.18,2,8.38,2.12,7.64,2.36C7.01,0.97,5.62,0,4,0C1.79,0,0,1.79,0,4c0,1.62,0.97,3.01,2.36,3.64 C2.12,8.38,2,9.18,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M15.41,6.43c-3.92,0.52-6.1-2.18-6.57-2.82 C12.79,2.9,14.97,5.76,15.41,6.43z M7.11,4.19C6.54,5.77,5.38,7.07,3.89,7.82C4.45,6.23,5.62,4.94,7.11,4.19z M1.5,4 c0-1.38,1.12-2.5,2.5-2.5c1,0,1.85,0.59,2.25,1.43C4.84,3.68,3.68,4.84,2.93,6.25C2.09,5.85,1.5,5,1.5,4z M10,16.5 c-3.58,0-6.5-2.92-6.5-6.5c0-0.14,0.03-0.28,0.04-0.42C5.66,8.87,7.38,7.3,8.29,5.29c2.28,2.44,5.34,3.04,7.84,2.55 c0.24,0.68,0.38,1.4,0.38,2.16C16.5,13.58,13.58,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"workspace_premium\": {\n    \"name\": \"workspace_premium\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,4,12,4z M14.31,13.69L12,11.93l-2.32,1.76l0.88-2.85 L8.25,9h2.84L12,6.19L12.91,9h2.84l-2.32,1.84L14.31,13.69z M12,19l-4,1.02v-3.1C9.18,17.6,10.54,18,12,18s2.82-0.4,4-1.08v3.1 L12,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.68,13.69L12,11.93l2.31,1.76l-0.88-2.85L15.75,9h-2.84L12,6.19L11.09,9H8.25l2.31,1.84L9.68,13.69z M20,10 c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,2.03,0.76,3.87,2,5.28V23l6-2l6,2v-7.72C19.24,13.87,20,12.03,20,10z M12,4c3.31,0,6,2.69,6,6 s-2.69,6-6,6s-6-2.69-6-6S8.69,4,12,4z M12,19l-4,1.02v-3.1C9.18,17.6,10.54,18,12,18s2.82-0.4,4-1.08v3.1L12,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,17.13l-3-0.67l-3.03,0.67v-2.88C7.88,14.73,8.91,15,10,15c1.08,0,2.1-0.27,3-0.74V17.13z M10,3.5 c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S12.76,3.5,10,3.5z M11.85,11.35L10,9.94l-1.86,1.41l0.7-2.28L7,7.6h2.27L10,5.35 l0.73,2.25H13l-1.86,1.47L11.85,11.35z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2C6.41,2,3.5,4.91,3.5,8.5c0,1.83,0.76,3.48,1.97,4.66V19L10,18l4.5,1v-5.82c1.23-1.18,2-2.84,2-4.68 C16.5,4.91,13.59,2,10,2z M13,17.13l-3-0.67l-3.03,0.67v-2.88C7.88,14.73,8.91,15,10,15c1.08,0,2.1-0.27,3-0.74V17.13z M10,13.5 c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S12.76,13.5,10,13.5z M8.14,11.35L10,9.94l1.85,1.41l-0.7-2.28L13,7.6h-2.27L10,5.35 L9.27,7.6H7l1.85,1.47L8.14,11.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_america\": {\n    \"name\": \"south_america\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,12c0-1.95,0.7-3.74,1.87-5.13L9,10v1c0,1.1,0.9,2,2,2v5.59c0,0.27,0.11,0.52,0.29,0.71L12,20 C7.58,20,4,16.42,4,12z M13,19.94V18l3.75-5.62c0.16-0.25,0.25-0.54,0.25-0.83V10.5c0-0.55-0.45-1-1-1h-1.5l-1.4-1.75 C12.72,7.28,12.15,7,11.54,7H8V5.07C9.18,4.39,10.54,4,12,4c4.41,0,8,3.59,8,8C20,16.07,16.94,19.44,13,19.94z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M4,12c0-1.95,0.7-3.74,1.87-5.13L9,10 v1c0,1.1,0.9,2,2,2v5.59c0,0.27,0.11,0.52,0.29,0.71L12,20C7.58,20,4,16.42,4,12z M13,19.94V18l3.75-5.62 c0.16-0.25,0.25-0.54,0.25-0.83V10.5c0-0.55-0.45-1-1-1h-1.5l-1.4-1.75C12.72,7.28,12.15,7,11.54,7H8V5.07C9.18,4.39,10.54,4,12,4 c4.41,0,8,3.59,8,8C20,16.07,16.94,19.44,13,19.94z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,10c0-1.54,0.54-2.95,1.43-4.07L7.5,8.5v1C7.5,10.33,8.17,11,9,11v4.17c0,0.22,0.07,0.43,0.2,0.6 l0.55,0.73C6.28,16.36,3.5,13.5,3.5,10z M10.5,16.48V15l3.32-4.74C13.94,10.09,14,9.89,14,9.68V9c0-0.55-0.45-1-1-1h-1.2l-1.15-1.44 C10.37,6.21,9.93,6,9.48,6H6.5V4.52C7.51,3.88,8.71,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5C16.5,13.42,13.85,16.22,10.5,16.48z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M3.5,10c0-1.54,0.54-2.95,1.43-4.07L7.5,8.5v1 C7.5,10.33,8.17,11,9,11v4.17c0,0.22,0.07,0.43,0.2,0.6l0.55,0.73C6.28,16.36,3.5,13.5,3.5,10z M10.5,16.48V15l3.32-4.74 C13.94,10.09,14,9.89,14,9.68V9c0-0.55-0.45-1-1-1h-1.2l-1.15-1.44C10.37,6.21,9.93,6,9.48,6H6.5V4.52C7.51,3.88,8.71,3.5,10,3.5 c3.58,0,6.5,2.92,6.5,6.5C16.5,13.42,13.85,16.22,10.5,16.48z\\\"></path>\"\n      }\n    }\n  },\n  \"share\": {\n    \"name\": \"share\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"18\\\" cy=\\\"5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"19.02\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"notification_add\": {\n    \"name\": \"notification_add\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><path d=\\\"M16,14v3H8v-7c0-2.21,1.79-4,4-4c0.85,0,1.64,0.26,2.28,0.72l1.43-1.43c-0.64-0.51-1.39-0.88-2.21-1.09V3.5 C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5v0.7C7.91,4.86,6,7.21,6,10v7H4v2h16v-2h-2v-3H16z M12,22c1.1,0,2-0.9,2-2h-4 C10,21.1,10.9,22,12,22z M24,8h-3V5h-2v3h-3v2h3v3h2v-3h3V8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M20,7.69h-2.25V10h-1.5V7.69H14V6.31h2.25V4h1.5v2.31H20V7.69z M13.5,11v3h-7V9c0-1.93,1.57-3.5,3.5-3.5 c0.58,0,1.13,0.14,1.61,0.39l1.1-1.1C12.19,4.47,11.62,4.23,11,4.1V3c0-0.55-0.45-1-1-1S9,2.45,9,3v1.1C6.72,4.56,5,6.58,5,9v5H4 v1.5h12V14h-1v-3H13.5z M10,18c0.83,0,1.5-0.67,1.5-1.5h-3C8.5,17.33,9.17,18,10,18z\\\"></path>\"\n      }\n    }\n  },\n  \"pages\": {\n    \"name\": \"pages\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7l4 1V5H5v6h3zm1 6H5v6h6v-3l-4 1zm9 4l-4-1v3h6v-6h-3zm-4-9l4-1-1 4h3V5h-6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 5h6v3L7 7l1 4H5V5zm6 14H5v-6h3l-1 4 4-1v3zm-1.63-4.37l.91-2.63-.91-2.63 2.63.91 2.63-.91-.91 2.63.91 2.63-2.63-.91-2.63.91zM19 19h-6v-3l4 1-1-4h3v6zm0-8h-3l1-4-4 1V5h6v6z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_very_satisfied\": {\n    \"name\": \"sentiment_very_satisfied\",\n    \"keywords\": [\n      \"social\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM8.88 7.82L11 9.94 9.94 11 8.88 9.94 7.82 11 6.76 9.94l2.12-2.12zM12 17.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zm4.18-6.5l-1.06-1.06L14.06 11 13 9.94l2.12-2.12 2.12 2.12L16.18 11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.88 9.94L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zm4.12 0L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-2.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_callback\": {\n    \"name\": \"phone_callback\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6zm8.66 13.21c1.2.41 2.48.67 3.8.75v-1.49c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 15.51c-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.19-1.19c.85.24 1.72.39 2.6.45v1.49zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_individual_suite\": {\n    \"name\": \"airline_seat_individual_suite\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"11\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 14c1.66 0 3-1.34 3-3S8.66 8 7 8s-3 1.34-3 3 1.34 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm12-3h-8v8H3V7H1v10h22v-6c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_lock\": {\n    \"name\": \"vpn_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8h-2v2c0 .55-.45 1-1 1H7v2h6c.55 0 1 .45 1 1v3h1c.9 0 1.64.58 1.9 1.39C18.2 16.97 19 15.08 19 13c0-.34-.04-.67-.08-1H17c-1.65 0-3-1.35-3-3V6c0 1.1-.9 2-2 2zm-4 9v-1l-4.79-4.79C3.08 11.79 3 12.38 3 13c0 4.08 3.05 7.44 7 7.93V19c-1.1 0-2-.9-2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.92 12c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93zM22 4v-.5C22 2.12 20.88 1 19.5 1S17 2.12 17 3.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_forwarded\": {\n    \"name\": \"phone_forwarded\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM18 11l5-5-5-5v3h-4v4h4z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_paused\": {\n    \"name\": \"phone_paused\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM15 3h2v7h-2zm4 0h2v7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi\": {\n    \"name\": \"wifi\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat_angled\": {\n    \"name\": \"airline_seat_flat_angled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 16.64l-4-1.45V17h4zM6 8.5c.15 0 .3-.03.44-.1.49-.24.7-.84.46-1.34-.19-.41-.59-.56-.9-.56-.15 0-.3.03-.44.1-.32.16-.45.42-.5.56-.05.15-.12.44.04.77.2.42.59.57.9.57zm13.16 2.52l-6.69-2.41-.7 1.91 8.59 3.11.01-.02c.19-.51.17-1.05-.06-1.53-.23-.5-.63-.87-1.15-1.06z\\\" opacity=\\\".3\\\"></path><path d=\\\"M1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm8.5 3.05l4 1.44V17h-4v-1.81zm9.84-6.05l-8.56-3.09-2.08 5.66 12.36 4.47.69-1.89c.77-2.09-.31-4.39-2.41-5.15zm.53 4.46l-.01.02-8.59-3.11.7-1.91 6.69 2.41c.52.19.93.56 1.15 1.05.23.49.25 1.04.06 1.54zM6 10.5c.44 0 .88-.1 1.3-.3 1.49-.72 2.12-2.51 1.41-4C8.19 5.13 7.12 4.5 6 4.5c-.44 0-.88.1-1.3.3-1.49.71-2.12 2.5-1.4 4 .51 1.07 1.58 1.7 2.7 1.7zm-.94-3.34c.05-.14.18-.4.51-.56.14-.06.28-.1.43-.1.31 0 .7.15.9.56.24.5.02 1.1-.47 1.34-.14.06-.28.1-.43.1-.3 0-.7-.15-.89-.56-.17-.34-.1-.63-.05-.78z\\\"></path>\"\n      }\n    }\n  },\n  \"vibration\": {\n    \"name\": \"vibration\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5h8v14H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 7h2v10h-2zm3 2h2v6h-2zM0 9h2v6H0zm16.5-6h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14zM3 7h2v10H3z\\\"></path>\"\n      }\n    }\n  },\n  \"more\": {\n    \"name\": \"more\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.06 5L2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM19 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14z\\\"></path><circle cx=\\\"9\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"19\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"support_agent\": {\n    \"name\": \"support_agent\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,12.22C21,6.73,16.74,3,12,3c-4.69,0-9,3.65-9,9.28C2.4,12.62,2,13.26,2,14v2c0,1.1,0.9,2,2,2h1v-6.1 c0-3.87,3.13-7,7-7s7,3.13,7,7V19h-8v2h8c1.1,0,2-0.9,2-2v-1.22c0.59-0.31,1-0.92,1-1.64v-2.3C22,13.14,21.59,12.53,21,12.22z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M18,11.03C17.52,8.18,15.04,6,12.05,6c-3.03,0-6.29,2.51-6.03,6.45c2.47-1.01,4.33-3.21,4.86-5.89 C12.19,9.19,14.88,11,18,11.03z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6C9.32,6,6.12,6.51,6.01,9.88c1.72-0.4,3.06-1.77,3.4-3.51c0.53,1.15,1.96,2.8,4.43,2.6C13.39,7.26,11.85,6,10,6z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle><path d=\\\"M16,10c0-3.31-2.69-6-6-6s-6,2.69-6,6c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1v-4c0-2.76,2.24-5,5-5s5,2.24,5,5v5H9v1h6 c0.55,0,1-0.45,1-1v-1c0.55,0,1-0.45,1-1v-2C17,10.45,16.55,10,16,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"voice_chat\": {\n    \"name\": \"voice_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.17L5.17 16H20V4H4v13.17zM7 7h7v2.4L17 7v6l-3-2.4V13H7V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-6-5.4l3 2.4V7l-3 2.4V7H7v6h7z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_normal\": {\n    \"name\": \"airline_seat_legroom_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_special\": {\n    \"name\": \"folder_special\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.17 8l-2-2H4v12h16V8h-8.83zM15 9l1.19 2.79 3.03.26-2.3 1.99.69 2.96L15 15.47 12.39 17l.69-2.96-2.3-1.99 3.03-.26L15 9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-6.92-3.96L12.39 17 15 15.47 17.61 17l-.69-2.96 2.3-1.99-3.03-.26L15 9l-1.19 2.79-3.03.26z\\\"></path>\"\n      }\n    }\n  },\n  \"ondemand_video\": {\n    \"name\": \"ondemand_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18V5H3v12zM9 7l7 4-7 4V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 7v8l7-4zm12-4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"imagesearch_roller\": {\n    \"name\": \"imagesearch_roller\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect enable-background=\\\"new\\\" height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"8\\\" y=\\\"4\\\"></rect><rect enable-background=\\\"new\\\" height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12\\\" y=\\\"17\\\"></rect><path d=\\\"M20,7V3c0-0.55-0.45-1-1-1H7C6.45,2,6,2.45,6,3v1H4C2.9,4,2,4.9,2,6v4c0,1.1,0.9,2,2,2h8v3h-1c-0.55,0-1,0.45-1,1v6 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-6c0-0.55-0.45-1-1-1h-1v-3c0-1.1-0.9-2-2-2H4V6h2v1c0,0.55,0.45,1,1,1h12 C19.55,8,20,7.55,20,7z M8,4h10v2H8V4z M14,21h-2v-4h2V21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_tree\": {\n    \"name\": \"account_tree\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z M7,9H4V5h3V9z M17,15h3v4h-3V15z M17,5h3v4h-3V5z\\\"></path><polyline opacity=\\\".3\\\" points=\\\"7,5 7,9 4,9 4,5 7,5\\\"></polyline><polyline opacity=\\\".3\\\" points=\\\"20,5 20,9 17,9 17,5 20,5\\\"></polyline><polyline opacity=\\\".3\\\" points=\\\"20,15 20,19 17,19 17,15 20,15\\\"></polyline></g>\"\n      }\n    }\n  },\n  \"bluetooth_audio\": {\n    \"name\": \"bluetooth_audio\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card\": {\n    \"name\": \"sd_card\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"time_to_leave\": {\n    \"name\": \"time_to_leave\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.12 11l-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_extra\": {\n    \"name\": \"airline_seat_legroom_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98C15.96 9.45 15.27 9 14.51 9H11V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z\\\"></path>\"\n      }\n    }\n  },\n  \"power\": {\n    \"name\": \"power\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 13.65l3.5 3.52V19h1v-1.83l3.5-3.51V9H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 7V3h-2v4h-4V3H8v4h-.01C6.89 7 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.5V9c0-1.1-.9-2-2-2zm0 6.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8v4.66z\\\"></path>\"\n      }\n    }\n  },\n  \"live_tv\": {\n    \"name\": \"live_tv\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 20h18V8H3v12zm6-10l7 4-7 4v-8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 10v8l7-4zm12-4h-7.58l3.29-3.29L16 2l-4 4h-.03l-4-4-.69.71L10.56 6H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 14H3V8h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"sms_failed\": {\n    \"name\": \"sms_failed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.17L5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_off\": {\n    \"name\": \"do_not_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,13v-2h1.17L5.12,7.94C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8 c1.48,0,2.86-0.41,4.06-1.12L10.17,13H7z M12,4c-1.48,0-2.86,0.41-4.06,1.12L13.83,11H17v2h-1.17l3.06,3.06 C19.59,14.86,20,13.48,20,12C20,7.59,16.41,4,12,4z\\\" enable-background=\\\"new\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.06l1.46,1.46C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10 C9.96,2,8.07,2.61,6.49,3.66l1.46,1.46C9.14,4.41,10.52,4,12,4z M17,13v-2h-3.17l2,2H17z M1.39,4.22l2.27,2.27 C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27l1.41-1.41L2.81,2.81L1.39,4.22z M5.12,7.94 L8.17,11H7v2h3.17l5.88,5.88C14.86,19.59,13.48,20,12,20c-4.41,0-8-3.59-8-8C4,10.52,4.41,9.14,5.12,7.94z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phone_locked\": {\n    \"name\": \"phone_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,5V4c0-1.1-0.9-2-2-2s-2,0.9-2,2v1h-1v5h6V5H20z M19,5h-2V4c0-0.55,0.45-1,1-1s1,0.45,1,1V5z\\\"></path><g><path d=\\\"M15,17.83c1.29,0.54,2.63,0.89,4,1.07v-2.23l-2.35-0.47L15,17.83z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.33,5H5.1c0.18,1.37,0.53,2.7,1.07,4L7.8,7.35L7.33,5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3H4C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15 C21,15.37,20.66,14.96,20.2,14.87z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07 l1.65-1.63L19,16.67V18.9z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.55,4.5h1.87l0.35,1.57L5.31,7.52C4.94,6.57,4.68,5.55,4.55,4.5z M15.5,15.45 c-1.05-0.13-2.07-0.39-3.02-0.76l1.46-1.46l1.57,0.35V15.45z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.22,12.2l-2.23-0.49c-0.29-0.06-0.65,0-0.92,0.27l-2.08,2c-2.11-1.15-3.85-2.89-5-5l2.04-2.04 C8.27,6.69,8.37,6.34,8.3,6.01L7.8,3.78C7.7,3.33,7.29,3,6.83,3L4,3C3.41,3,2.96,3.51,3,4.1C3.53,10.95,9.04,16.46,15.9,17 c0.41,0.03,1.1-0.25,1.1-1v-2.82C17,12.71,16.67,12.3,16.22,12.2z M4.55,4.5h1.87l0.35,1.57L5.31,7.52C4.94,6.57,4.68,5.55,4.55,4.5 z M15.5,15.45c-1.05-0.13-2.07-0.39-3.02-0.76l1.46-1.46l1.57,0.35V15.45z M16.5,5H16V4c0-0.82-0.67-1.5-1.5-1.5S13,3.18,13,4v1 h-0.5C12.22,5,12,5.22,12,5.5v3C12,8.78,12.22,9,12.5,9h4C16.78,9,17,8.78,17,8.5v-3C17,5.22,16.78,5,16.5,5z M13.75,4 c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5V4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb\": {\n    \"name\": \"do_not_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-1.85,0.63-3.55,1.69-4.9L16.9,18.31C15.55,19.37,13.85,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.55,18.31,16.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"phone_in_talk\": {\n    \"name\": \"phone_in_talk\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 12h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm4 0h2c0-4.97-4.03-9-9-9v2c3.87 0 7 3.13 7 7zm1 3.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_off\": {\n    \"name\": \"wifi_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zm-2 2c-1.08-1.08-2.36-1.85-3.72-2.33l3.02 3.02.7-.69zM9 17l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24C7.79 10.89 6.27 11.74 5 13l2 2c1.35-1.35 3.11-2.04 4.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption\": {\n    \"name\": \"no_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\\\"></path>\"\n      }\n    }\n  },\n  \"tv_off\": {\n    \"name\": \"tv_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h13.46l-12-12H3zm7.12-12L21 17.88V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 7v10.88l1.85 1.85c.09-.23.15-.47.15-.73V7c0-1.11-.89-2-2-2h-7.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2H21zm-.54 16l1.26-1.27-1.26 1.26zM2.41 2.13l-.14.14L1 3.54l1.53 1.53C1.65 5.28 1 6.06 1 7v12c0 1.1.9 2 2 2h15.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_eta\": {\n    \"name\": \"drive_eta\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.12 11l-.12.34V16h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 6h10.29l1.04 3H5.81l1.04-3zM19 16H5v-4.66l.12-.34h13.77l.11.34V16z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"network_locked\": {\n    \"name\": \"network_locked\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 16v-.5c0-1.38-1.12-2.5-2.5-2.5S17 14.12 17 15.5v.5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zM18 5.83v5.43c.47-.16.97-.26 1.5-.26.17 0 .33.03.5.05V1L1 20h13v-2H5.83L18 5.83z\\\"></path>\"\n      }\n    }\n  },\n  \"event_note\": {\n    \"name\": \"event_note\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5h14v2H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM7 11h10v2H7zm0 4h7v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_missed\": {\n    \"name\": \"phone_missed\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.6 17.22c.66.37 1.28.79 1.88 1.27l1.07-1.07c-.91-.75-1.9-1.39-2.95-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z\\\" opacity=\\\".3\\\"></path><path d=\\\"M23.71 16.67C20.66 13.78 16.54 12 12 12S3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.12-.52-.3-.7zm-18.31.56c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.08 1.26c-.6-.48-1.22-.9-1.88-1.27v-1.7c1.05.51 2.03 1.15 2.95 1.9l-1.07 1.07zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z\\\"></path>\"\n      }\n    }\n  },\n  \"priority_high\": {\n    \"name\": \"priority_high\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"19\\\" r=\\\"2\\\"></circle><path d=\\\"M10 3h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_alt\": {\n    \"name\": \"do_not_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M4,12c0-4.4,3.6-8,8-8c1.8,0,3.5,0.6,4.9,1.7L5.7,16.9 C4.6,15.5,4,13.8,4,12z M12,20c-1.8,0-3.5-0.6-4.9-1.7L18.3,7.1C19.4,8.5,20,10.2,20,12C20,16.4,16.4,20,12,20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"confirmation_number\": {\n    \"name\": \"confirmation_number\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zM11 7h2v2h-2V7zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 10V6c0-1.11-.9-2-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-2-1.46c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM11 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_disabled\": {\n    \"name\": \"sync_disabled\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24C17.32 8.85 18 10.34 18 12c0 .85-.19 1.65-.51 2.38l1.5 1.5C19.63 14.74 20 13.41 20 12zM4.27 4L2.86 5.41l2.36 2.36C4.45 8.99 4 10.44 4 12c0 2.21.91 4.2 2.36 5.64L4 20h6v-6l-2.24 2.24C6.68 15.15 6 13.66 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wc\": {\n    \"name\": \"wc\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63C18.18 7.55 17.42 7 16.56 7h-.12c-.86 0-1.63.55-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"sms\": {\n    \"name\": \"sms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.17L5.17 16H20V4H4v13.17zM15 9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zM7 9h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"tap_and_play\": {\n    \"name\": \"tap_and_play\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2c4.97 0 9 4.03 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_legroom_reduced\": {\n    \"name\": \"airline_seat_legroom_reduced\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_problem\": {\n    \"name\": \"sync_problem\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24C18.32 8.85 19 10.34 19 12c0 2.61-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"video_chat\": {\n    \"name\": \"video_chat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,17.17L5.17,16H20V4H4V17.17z M7,7c0-0.55,0.45-1,1-1h6c0.55,0,1,0.45,1,1 v1.99L17,7v6l-2-1.99V13c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V7z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\\\"></path><path d=\\\"M8,14h6c0.55,0,1-0.45,1-1v-1.99L17,13V7l-2,1.99V7c0-0.55-0.45-1-1-1H8C7.45,6,7,6.45,7,7v6C7,13.55,7.45,14,8,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,14.38l0.88-0.88H16.5v-10h-13V14.38z M5.5,6c0-0.55,0.45-1,1-1h5 c0.55,0,1,0.45,1,1v1.8l2-1.8v5l-2-1.8V11c0,0.55-0.45,1-1,1h-5c-0.55,0-1-0.45-1-1V6z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5V18l3-3h11.5c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M16.5,13.5H4.38 L3.5,14.38V3.5h13V13.5z\\\"></path><path d=\\\"M6.5,12h5c0.55,0,1-0.45,1-1V9.2l2,1.8V6l-2,1.8V6c0-0.55-0.45-1-1-1h-5c-0.55,0-1,0.45-1,1v5C5.5,11.55,5.95,12,6.5,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airline_seat_recline_normal\": {\n    \"name\": \"airline_seat_recline_normal\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_off\": {\n    \"name\": \"directions_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"m21.71 11.29-9-9a.996.996 0 00-1.41 0L8.21 5.38l1.41 1.41L12 4.42 19.58 12l-2.38 2.38 1.41 1.41 3.09-3.09c.4-.37.4-1 .01-1.41z\\\"></path><polygon points=\\\"13,7.5 13,10.17 15.17,12.34 16.5,11\\\"></polygon><path d=\\\"m1.39 4.22 3.99 3.99-3.09 3.09a.996.996 0 000 1.41l9 9c.39.39 1.02.39 1.41 0l3.09-3.09 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm6.64 6.63c-.01.05-.04.1-.04.15v4h2v-2.18l4.38 4.38L12 19.58 4.42 12 6.8 9.62l1.23 1.23z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_busy\": {\n    \"name\": \"event_busy\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5h14v2H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zM9.29 17.47l2.44-2.44 2.44 2.44 1.06-1.06-2.44-2.44 2.44-2.44-1.06-1.06-2.44 2.44-2.44-2.44-1.06 1.06 2.44 2.44-2.44 2.44z\\\"></path>\"\n      }\n    }\n  },\n  \"sim_card_alert\": {\n    \"name\": \"sim_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M6,8.83V20h12V4h-7.17L6,8.83z M11,8h2v5h-2V8z M11,15h2v2h-2V15z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,2h-8L4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V8.83L10.83,4H18V20z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"8\\\"></rect></g></g></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_alt\": {\n    \"name\": \"do_disturb_alt\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_disturb_on\": {\n    \"name\": \"do_not_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M17,13H7v-2 h10V13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"11\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_on\": {\n    \"name\": \"do_disturb_on\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"sync\": {\n    \"name\": \"sync\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.01 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 4V1l-4 4 4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46c.78-1.23 1.24-2.69 1.24-4.26 0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.25 7.74C4.47 8.97 4.01 10.43 4.01 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"network_check\": {\n    \"name\": \"network_check\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2c-1.64-1.64-3.55-2.82-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2c1.13-1.13 2.56-1.79 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z\\\"></path>\"\n      }\n    }\n  },\n  \"event_available\": {\n    \"name\": \"event_available\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5h14v2H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-2.51 4.53l-1.06-1.06-4.87 4.87-2.11-2.11-1.06 1.06 3.17 3.17z\\\"></path>\"\n      }\n    }\n  },\n  \"adb\": {\n    \"name\": \"adb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"personal_video\": {\n    \"name\": \"personal_video\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h18v12H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_flat\": {\n    \"name\": \"airline_seat_flat\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 11c.27 0 .52-.11.71-.3.39-.4.39-1.02-.01-1.41C5.51 9.11 5.26 9 5 9c-.27 0-.52.11-.71.3-.39.4-.39 1.02.01 1.41.19.18.44.29.7.29zm13-2h-7v2h9c0-1.1-.9-2-2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 13c.78 0 1.55-.3 2.14-.9 1.16-1.19 1.14-3.08-.04-4.24C6.51 7.29 5.75 7 5 7c-.78 0-1.55.3-2.14.9-1.16 1.19-1.14 3.08.04 4.24.59.57 1.35.86 2.1.86zm-.71-3.7c.19-.19.44-.3.71-.3.26 0 .51.1.7.28.4.39.4 1.01.02 1.41-.2.2-.45.31-.72.31-.26 0-.51-.1-.7-.28-.4-.4-.4-1.02-.01-1.42zM18 7H9v6h13v-2c0-2.21-1.79-4-4-4zm-7 4V9h7c1.1 0 2 .9 2 2h-9zm-9 5h6v2h8v-2h6v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"mms\": {\n    \"name\": \"mms\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.17L5.17 16H20V4H4v13.17zM8.5 9.5l2.5 3.01L14.5 8l4.5 6H5l3.5-4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-5.5-8L11 12.51 8.5 9.5 5 14h14z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_lock\": {\n    \"name\": \"sync_lock\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73C5.06,16.54,4,14.4,4,12 C4,8.27,6.55,5.15,10,4.26z M20,4h-6v6h2V7.56c1.22,1.1,2,2.67,2,4.44h2c0-2.4-1.06-4.54-2.73-6H20V4z M20,17v-1c0-1.1-0.9-2-2-2 s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C21,17.45,20.55,17,20,17z M19,17h-2v-1 c0-0.55,0.45-1,1-1s1,0.45,1,1V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,14H16v-1c0-0.82-0.67-1.5-1.5-1.5S13,12.18,13,13v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C17,14.22,16.78,14,16.5,14z M13.75,13c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V13z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10 C4,7.21,5.91,4.86,8.5,4.2z M14.5,10c-0.08-1.32-0.59-2.5-1.5-3.32V8h-1.5V4h4v1.5h-1.55C15.2,6.6,16,8.2,16,10H14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_disturb_off\": {\n    \"name\": \"do_disturb_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-1.41 0-2.73.37-3.88 1.01l6 5.99H17v2h-.88L19 15.88c.63-1.15 1-2.47 1-3.88 0-4.41-3.59-8-8-8zm0 16c1.56 0 3-.45 4.23-1.23L10.46 13H7v-2h1.46L5.23 7.77C4.45 9 4 10.44 4 12c0 4.41 3.59 8 8 8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 4c4.41 0 8 3.59 8 8 0 1.41-.37 2.73-1.01 3.88l1.46 1.46C21.43 15.79 22 13.96 22 12c0-5.52-4.48-10-10-10-1.96 0-3.79.57-5.33 1.55l1.46 1.46C9.27 4.37 10.59 4 12 4zm5 7h-2.88l2 2H17zM2.41 2.13L1 3.54l2.78 2.78C2.66 7.93 2 9.89 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM12 20c-4.41 0-8-3.59-8-8 0-1.56.45-3 1.23-4.23L8.46 11H7v2h3.46l5.77 5.77C15 19.55 13.56 20 12 20z\\\"></path>\"\n      }\n    }\n  },\n  \"do_disturb\": {\n    \"name\": \"do_disturb\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31C15.55 19.37 13.85 20 12 20zm6.31-3.1L7.1 5.69C8.45 4.63 10.15 4 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"airline_seat_recline_extra\": {\n    \"name\": \"airline_seat_recline_extra\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93c-1.48 0-2.74-1.08-2.96-2.54L4 7H2l1.99 9.76C4.37 19.2 6.47 21 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38-.32-.09-.66-.12-.99-.06h-.02c-1.23.22-2.05 1.39-1.84 2.61l1.35 5.92C7.16 16.98 8.39 18 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_card_alert\": {\n    \"name\": \"sd_card_alert\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 8.83V20h12V4h-7.17L6 8.83zM11 8h2v5h-2V8zm0 7h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zm-7-5h2v2h-2zm0-7h2v5h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"disc_full\": {\n    \"name\": \"disc_full\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 14h2v2h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM20 7h2v5h-2zm-10 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"system_update\": {\n    \"name\": \"system_update\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 19h10V5H7v14zm4-6V8h2v5h3l-4 4-4-4h3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 13h-3V8h-2v5H8l4 4zm1-11.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_bluetooth_speaker\": {\n    \"name\": \"phone_bluetooth_speaker\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21z\\\"></path>\"\n      }\n    }\n  },\n  \"no_encryption_gmailerrorred\": {\n    \"name\": \"no_encryption_gmailerrorred\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20h10.78l-10-10H6zm6.44-10L18 15.56V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66l2 2H18v5.56l2 2V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zM4.41 4.81L3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l1 1 1.41-1.41L4.41 4.81zM6 20V10h.78l10 10H6z\\\"></path>\"\n      }\n    }\n  },\n  \"running_with_errors\": {\n    \"name\": \"running_with_errors\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,10v8h-2v-8H22z M20,20v2h2v-2H20z M18,17.29C16.53,18.95,14.39,20,12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8v9 l7.55-7.55C17.72,3.34,15.02,2,12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10c2.25,0,4.33-0.74,6-2V17.29z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,8v7h-1.5V8H18z M16.5,16.5V18H18v-1.5H16.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5 c2.01,0,3.81-0.92,5-2.35l0,2.1c-1.37,1.1-3.11,1.75-5,1.75c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0c2.46,0,4.67,1.11,6.13,2.87L10,11 V3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"power_off\": {\n    \"name\": \"power_off\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.12 9L16 12.88V9zm-.62 8.17V19h1v-1.83l1.07-1.06L8 10.54v3.11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84L2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"enhanced_encryption\": {\n    \"name\": \"enhanced_encryption\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20h12V10H6v10zm2-6h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10zm-7-1h2v-3h3v-2h-3v-3h-2v3H8v2h3z\\\"></path>\"\n      }\n    }\n  },\n  \"turn_slight_right\": {\n    \"name\": \"turn_slight_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.34,6V4H18v5.66h-2V7.41l-5,5V20H9v-7.58c0-0.53,0.21-1.04,0.59-1.41l5-5H12.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.5,10.56V16H9v-5.44l4-4l0,1.69h1.5l0-4.25l-4.25,0v1.5l1.69,0l-4,4C7.66,9.78,7.5,10.16,7.5,10.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_crash\": {\n    \"name\": \"no_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,15v5h14v-5H5z M7.5,19C6.67,19,6,18.33,6,17.5S6.67,16,7.5,16S9,16.67,9,17.5S8.33,19,7.5,19z M16.5,19 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.92,9.01C18.72,8.42,18.16,8,17.5,8h-11C5.84,8,5.29,8.42,5.08,9.01L3,15v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,9.01z M6.85,10h10.29l1.04,3H5.81L6.85,10z M19,20H5v-5h14V20z M6,17.5 C6,16.67,6.67,16,7.5,16S9,16.67,9,17.5S8.33,19,7.5,19S6,18.33,6,17.5z M15,17.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S17.33,19,16.5,19S15,18.33,15,17.5z M12,6.36L9.17,3.54l1.41-1.41L12,3.54L15.54,0l1.41,1.41L12,6.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.5,12.5V16h11v-3.5H4.5z M6.5,15.25c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1 S7.05,15.25,6.5,15.25z M13.5,15.25c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1S14.05,15.25,13.5,15.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.87,1l1.06,1.06L9.4,5.6L7.28,3.47l1.06-1.06L9.4,3.47L11.87,1z M17,12v6.5c0,0.28-0.22,0.5-0.5,0.5h-1 c-0.28,0-0.5-0.22-0.5-0.5v-1H5v1C5,18.78,4.78,19,4.5,19h-1C3.22,19,3,18.78,3,18.5L3,12l1.62-4.06C4.85,7.37,5.4,7,6.02,7h7.97 c0.61,0,1.16,0.37,1.39,0.94L17,12z M6.02,8.5l-1,2.5h9.97l-1-2.5H6.02z M15.5,16v-3.5h-11V16H15.5z M6.5,13.25c-0.55,0-1,0.45-1,1 s0.45,1,1,1c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1 S14.05,13.25,13.5,13.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"edit_location_alt\": {\n    \"name\": \"edit_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M17.9,9.05C17.96,9.41,18,9.79,18,10.2c0,1.71-1.08,4.64-6,9.14c-4.92-4.49-6-7.43-6-9.14C6,6.17,9.09,4,12,4 c0.32,0,0.65,0.03,0.97,0.08l1.65-1.65C13.78,2.16,12.9,2,12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8 c5.33-4.55,8-8.48,8-11.8c0-1.01-0.16-1.94-0.45-2.8L17.9,9.05z M20.71,2L20,1.29c-0.39-0.39-1.02-0.39-1.41,0l-0.72,0.72 l2.12,2.12l0.72-0.72C21.1,3.02,21.1,2.39,20.71,2z M11,11h2.12l6.16-6.16l-2.12-2.12L11,8.88V11z\\\"></path><path d=\\\"M13.95,13H9V8.05l3.97-3.97C12.65,4.03,12.32,4,12,4c-2.91,0-6,2.17-6,6.2 c0,1.71,1.08,4.64,6,9.14c4.92-4.49,6-7.43,6-9.14c0-0.4-0.04-0.78-0.1-1.15L13.95,13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><polygon points=\\\"14.03,3.56 9,8.59 9,10 10.41,10 15.44,4.97\\\"></polygon><path d=\\\"M5,8.5c0,2.47,3.1,5.8,5,7.53c1.9-1.73,5-5.05,5-7.53 c0-0.3-0.04-0.59-0.09-0.88l-3.88,3.88H7.5V7.96l4.16-4.16C11.14,3.62,10.58,3.5,10,3.5C7.24,3.5,5,5.74,5,8.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,8.5c0,2.47-3.1,5.8-5,7.53C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5c0.58,0,1.14,0.12,1.66,0.3l1.16-1.16 C11.96,2.24,11.01,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s6.5-5.16,6.5-9.5c0-0.74-0.13-1.45-0.36-2.11l-1.23,1.23 C14.96,7.91,15,8.2,15,8.5z\\\"></path><g><path d=\\\"M15.44,2.15l-0.71,0.71l1.41,1.41l0.71-0.71c0.2-0.2,0.2-0.51,0-0.71l-0.71-0.71C15.95,1.95,15.63,1.95,15.44,2.15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"temple_hindu\": {\n    \"name\": \"temple_hindu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13.51,5 10.49,5 9.89,7 14.11,7\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"14.71,9 9.29,9 8.69,11 15.31,11\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"15.91,13 8.09,13 7.49,15 4,15 4,20 9,20 9,15 15,15 15,20 20,20 20,15 16.51,15\\\"></polygon><path d=\\\"M20 11v2h-2L15 3V1h-2v2h-2.03V1h-2v2.12L6 13H4v-2H2v11h9v-5h2v5h9V11h-2zm-9.51-6h3.02l.6 2H9.89l.6-2zm-1.2 4h5.42l.6 2H8.69l.6-2zM20 20h-5v-5H9v5H4v-5h3.49l.6-2h7.82l.6 2H20v5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12.09,7.5 7.91,7.5 7.16,9.5 12.84,9.5\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10.96,4.5 9.04,4.5 8.48,6 11.52,6\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13.4,11 6.6,11 6.04,12.5 3.5,12.5 3.5,16.5 7.5,16.5 7.5,12.5 12.5,12.5 12.5,16.5 16.5,16.5 16.5,12.5 13.96,12.5\\\"></polygon><path d=\\\"M16.5 9v2H15l-3-8V1h-1.5v2h-1V1H8v2l-3 8H3.5V9H2v9h7v-4h2v4h7V9h-1.5zM9.04 4.5h1.92l.56 1.5H8.48l.56-1.5zm-1.13 3h4.17l.75 2H7.16l.75-2zm8.59 9h-4v-4h-5v4h-4v-4h2.54L6.6 11h6.8l.56 1.5h2.54v4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dinner_dining\": {\n    \"name\": \"dinner_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M17.08,15.14C16.41,14.4,15.49,14,14.5,14c-1.35,0-2.58,0.79-3.16,2h6.32 C17.52,15.69,17.32,15.4,17.08,15.14z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><polygon points=\\\"2,19 4,21 20,21 22,19\\\"></polygon><path d=\\\"M3,18h16.97c0,0,0,0,0,0c0.29-3.26-2.28-6-5.48-6c-2.35,0-4.35,1.48-5.14,3.55C8.94,15.32,8.48,15.17,8,15.08V9h1.75 C10.99,9,12,7.99,12,6.75h9v-1.5h-9C12,4.01,10.99,3,9.75,3H3v1.5h1v0.75H3v1.5h1V7.5H3V9h1v7.39C3.56,16.85,3.22,17.39,3,18z M14.5,14c0.99,0,1.91,0.4,2.58,1.14c0.24,0.26,0.44,0.55,0.58,0.86h-6.32C11.92,14.79,13.15,14,14.5,14z M8,4.5h2v0.75H8V4.5z M8,6.75h2V7.5H8V6.75z M5.5,4.5h1v0.75h-1V4.5z M5.5,6.75h1V7.5h-1V6.75z M5.5,9h1v6.06c-0.35,0.06-0.68,0.17-1,0.3V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.5,11.5c-1.08,0-2.05,0.58-2.58,1.5h5.18C14.58,12.1,13.61,11.5,12.5,11.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,14.5h14c0-2.49-2.01-4.5-4.5-4.5c-2.03,0-3.72,1.35-4.28,3.19C7.86,12.92,7.45,12.73,7,12.61V8h1c1.1,0,2-0.9,2-2h7V5 h-7c0-1.1-0.9-2-2-2H3v1h1v1H3v1h1v1H3v1h1v5.26C3.58,13.59,3.23,14.01,3,14.5z M12.5,11.5c1.11,0,2.08,0.6,2.6,1.5H9.92 C10.45,12.08,11.42,11.5,12.5,11.5z M7,4h1.5v1H7V4z M7,6h1.5v1H7V6z M5,4h1v1H5V4z M5,6h1v1H5V6z M5,8h1v4.51 c-0.35,0.02-0.68,0.08-1,0.19V8z\\\"></path><polygon points=\\\"2,15.5 3.5,17 16.5,17 18,15.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"maps_ugc\": {\n    \"name\": \"maps_ugc\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4\\\" fill-opacity=\\\".3\\\"></path><g><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8c-1.18,0-2.34-0.26-3.43-0.78c-0.27-0.13-0.56-0.19-0.86-0.19 c-0.19,0-0.38,0.03-0.56,0.08l-3.2,0.94l0.94-3.2c0.14-0.47,0.1-0.98-0.11-1.42C4.26,14.34,4,13.18,4,12C4,7.59,7.59,4,12,4 M12,2 C6.48,2,2,6.48,2,12c0,1.54,0.36,2.98,0.97,4.29L1,23l6.71-1.97C9.02,21.64,10.46,22,12,22c5.52,0,10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z\\\"></path></g><polygon fill-rule=\\\"evenodd\\\" points=\\\"13,8 11,8 11,11 8,11 8,13 11,13 11,16 13,16 13,13 16,13 16,11 13,11\\\"></polygon>\"\n      }\n    }\n  },\n  \"signpost\": {\n    \"name\": \"signpost\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,6h11.17l1,1l-1,1H6V6z M18,16H6.83l-1-1l1-1H18V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,10h5l3-3l-3-3h-5V2h-2v2H4v6h7v2H6l-3,3l3,3h5v4h2v-4h7v-6h-7V10z M6,6h11.17l1,1l-1,1H6V6z M18,16H6.83l-1-1l1-1H18 V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,6.5V5h8.83l0.67,0.75L14.33,6.5H5.5z M14.5,11v1.5H5.67l-0.67-0.75L5.67,11H14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.75,8H15l2-2.25L15,3.5h-4.25V2h-1.5v1.5H4V8h5.25v1.5H5l-2,2.25L5,14h4.25v4h1.5v-4H16V9.5h-5.25V8z M5.5,6.5V5h8.83 l0.67,0.75L14.33,6.5H5.5z M14.5,11v1.5H5.67l-0.67-0.75L5.67,11H14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_laundry_service\": {\n    \"name\": \"local_laundry_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.99 4L6 20h12V4H5.99c.01 0 0 0 0 0zM11 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 4c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM18 20H6L5.99 4H18v16z\\\"></path><circle cx=\\\"8\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"11\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M12 19c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm2.36-7.36c1.3 1.3 1.3 3.42 0 4.72-1.3 1.3-3.42 1.3-4.72 0l4.72-4.72z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_attributes\": {\n    \"name\": \"edit_attributes\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 9H6.37C5.09 9 4 10.37 4 12s1.09 3 2.37 3h11.26c1.28 0 2.37-1.37 2.37-3s-1.09-3-2.37-3zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zm0 8H6.37C5.09 15 4 13.63 4 12s1.09-3 2.37-3h11.26C18.91 9 20 10.37 20 12s-1.09 3-2.37 3zM7.24 13.06l-1.87-1.87-.7.7 2.57 2.57 4.22-4.22-.7-.7z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_of_travel\": {\n    \"name\": \"mode_of_travel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.31,18.9c-0.96,1-2.06,2.03-3.31,3.1c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2c4,0,7.64,2.92,7.97,7.5l3.53,0L19,14 l-4.5-4.5l3.47,0C17.65,6.24,15.13,4,12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c0.64-0.59,1.23-1.16,1.77-1.71 c-0.17-0.34-0.27-0.72-0.27-1.12c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S17.38,19,16,19C15.76,19,15.53,18.97,15.31,18.9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.48,8C16.23,4.64,13.42,2,10,2C6.41,2,3.5,4.91,3.5,8.5C3.5,12.84,10,18,10,18s1.28-1.01,2.7-2.52 c0.1,0.01,0.2,0.02,0.3,0.02c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2c0,0.44,0.14,0.85,0.38,1.18c-0.49,0.51-0.97,0.97-1.38,1.35 C8.1,14.3,5,10.97,5,8.5c0-2.76,2.24-5,5-5c2.59,0,4.72,1.98,4.98,4.5h-2.73l3.5,3.5l3.5-3.5L16.48,8z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control_rodent\": {\n    \"name\": \"pest_control_rodent\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.65,14.75C17.87,14.38,18,13.96,18,13.5c0-1.38-1.12-2.5-2.5-2.5c-1.3,0-2.5,1.08-2.5,2.5 c0,0.69,0.28,1.32,0.73,1.77l-1.41,1.41C11.5,15.87,11,14.74,11,13.5c0-0.92,0.28-1.76,0.75-2.47c-0.22,0.01-0.44,0.02-0.67,0.07 c-1.48,0.32-2.68,1.53-2.99,3.01c-0.26,1.24,0.02,2.45,0.8,3.41C9.66,18.46,10.79,19,12,19h6.53c0.81,0,1.47-0.66,1.47-1.47 c0-0.41-0.17-0.81-0.48-1.09L17.65,14.75z M17,18c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C18,17.55,17.55,18,17,18z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"17\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M20.86,14.97l-0.93-0.84c0.48-3.45-2.87-6.04-6.05-4.82C13.3,9.11,12.66,9,12,9c-4.26,0-5.65,3.58-5.89,4.85 C4.89,13.47,4,12.35,4,11c0-1.66,1.34-3,3-3h2.5C10.88,8,12,6.88,12,5.5C12,4.12,10.88,3,9.5,3H8C7.45,3,7,3.45,7,4 c0,0.55,0.45,1,1,1h1.5C9.78,5,10,5.22,10,5.5C10,5.78,9.78,6,9.5,6H7c-2.76,0-5,2.24-5,5c0,2.44,1.76,4.47,4.07,4.91 C6.51,18.79,8.99,21,12,21h6.53C21.64,21,23.23,17.11,20.86,14.97z M18.53,19H12c-1.21,0-2.34-0.54-3.11-1.48 c-0.78-0.95-1.06-2.16-0.8-3.41c0.31-1.48,1.51-2.69,2.99-3.01c0.22-0.05,0.45-0.06,0.67-0.07C11.28,11.74,11,12.58,11,13.5 c0,1.24,0.5,2.37,1.32,3.18l1.41-1.41C13.28,14.82,13,14.19,13,13.5c0-1.42,1.2-2.5,2.5-2.5c1.38,0,2.5,1.12,2.5,2.5 c0,0.46-0.13,0.88-0.35,1.25l1.87,1.7c0.31,0.28,0.48,0.67,0.48,1.09C20,18.34,19.34,19,18.53,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.96,11.59C14.09,9.2,12.47,9,12,9c0,0,0,0,0,0l0,0c-1.76,0-2.69,2.14-1.41,3.41l-0.71,0.71h0 c-1.13-1.13-1.16-2.92-0.12-4.1C9.24,9.06,7,9.56,7,12.03C7,13.67,8.33,15,9.97,15h4.95c0.98,0,1.46-1.21,0.73-1.88L13.96,11.59z M13.55,14.2c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75 C14.3,13.86,13.96,14.2,13.55,14.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.32,12.38l-1.34-1.21c0.13-2.27-2.05-3.63-3.93-3C10.7,8.07,10.34,8,9.97,8c-2.02,0-3.67,1.52-3.92,3.48 C4.9,11.38,4,10.42,4,9.25C4,8.01,5.01,7,6.25,7H8.5C9.33,7,10,6.33,10,5.5S9.33,4,8.5,4h-1C7.22,4,7,4.22,7,4.5 C7,4.78,7.22,5,7.5,5h1C8.78,5,9,5.22,9,5.5C9,5.78,8.78,6,8.5,6H6.25C4.46,6,3,7.46,3,9.25c0,1.72,1.35,3.12,3.04,3.23 C6.27,14.46,7.93,16,9.97,16h4.95C16.83,16,17.71,13.65,16.32,12.38z M14.92,15H9.97C8.33,15,7,13.67,7,12.03 c0-2.47,2.24-2.98,2.76-3.01c-1.04,1.18-1.01,2.97,0.12,4.1h0l0.71-0.71C9.31,11.14,10.24,9,12,9l0,0c0,0,0,0,0,0 c0.47,0,2.09,0.2,1.96,2.59l1.69,1.53C16.38,13.79,15.9,15,14.92,15z\\\"></path><circle cx=\\\"13.55\\\" cy=\\\"13.45\\\" r=\\\".75\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"local_mall\": {\n    \"name\": \"local_mall\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8v12h14V8H5zm7 6c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 6c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-2zm-5-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm7 17H5V8h14v12zm-7-8c-1.66 0-3-1.34-3-3H7c0 2.76 2.24 5 5 5s5-2.24 5-5h-2c0 1.66-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"airlines\": {\n    \"name\": \"airlines\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M14.05,6L5.8,18h11.54l2.25-12H14.05z M14.5,14c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C17,12.88,15.88,14,14.5,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.34,18H5.8l8.25-12h5.54L17.34,18z M13,4L2,20h17l3-16H13z M14.5,9c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5S15.88,9,14.5,9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.54,5.5l-6.19,9h8.65l1.69-9H11.54z M11.88,11.75c-1.04,0-1.88-0.84-1.88-1.88S10.84,8,11.88,8 s1.88,0.84,1.88,1.88S12.91,11.75,11.88,11.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.01,14.5H5.35l6.19-9h4.15L14.01,14.5z M10.75,4L2.5,16h12.75L17.5,4H10.75z M11.88,8C10.84,8,10,8.84,10,9.88 s0.84,1.88,1.88,1.88s1.88-0.84,1.88-1.88S12.91,8,11.88,8z\\\"></path>\"\n      }\n    }\n  },\n  \"railway_alert\": {\n    \"name\": \"railway_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M4,16.5C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V13H4V16.5z M10,14c0.83,0,1.5,0.67,1.5,1.5S10.83,17,10,17 s-1.5-0.67-1.5-1.5S9.17,14,10,14z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M4.43,6H11c0-0.33,0.03-0.66,0.08-0.98C7.71,4.92,5.33,5.23,4.43,6z\\\"></path></g><path d=\\\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.9-0.77,3.28-1.08,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99C2.97,2.67,2,5.02,2,7 v9.5C2,18.43,3.57,20,5.5,20L4,21v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16.5 c0,0.83-0.67,1.5-1.5,1.5h-9C4.67,18,4,17.33,4,16.5V13h12V16.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"connecting_airports\": {\n    \"name\": \"connecting_airports\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.4,17l1.3,4.4h-1.1L13,17h-3c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1h3l2.6-4.4h1.1L15.4,15h2.85L19,14h1l-0.6,2l0.6,2h-1 l-0.75-1H15.4z M5.75,7L5,6H4l0.6,2L4,10h1l0.75-1H8.6l-1.3,4.4h1.1L11,9h3c0.55,0,1-0.45,1-1s-0.45-1-1-1h-3L8.4,2.6H7.3L8.6,7 H5.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4,8.5l0.5-1.75L4,5h0.7l0.75,1H7.7L6.6,2.5h0.9L9.6,6h2.15c0.41,0,0.75,0.34,0.75,0.75S12.16,7.5,11.75,7.5H9.6L7.5,11H6.6 l1.1-3.5H5.45l-0.75,1H4z M15.5,13.25L16,11.5h-0.7l-0.75,1H12.3L13.4,9h-0.9l-2.1,3.5H8.25c-0.41,0-0.75,0.34-0.75,0.75 S7.84,14,8.25,14h2.15l2.1,3.5h0.9L12.3,14h2.25l0.75,1H16L15.5,13.25z\\\"></path>\"\n      }\n    }\n  },\n  \"add_business\": {\n    \"name\": \"add_business\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"15.36,9 3.64,9 3.04,12 15.96,12\\\"></polygon><rect height=\\\"2\\\" width=\\\"15\\\" x=\\\"2\\\" y=\\\"4\\\"></rect><path d=\\\"M15,17h2v-3h1v-2l-1-5H2l-1,5v2h1v6h9v-6h4V17z M9,18H4v-4h5V18z M3.04,12l0.6-3h11.72l0.6,3H3.04z\\\"></path><polygon points=\\\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13.22,7 4.78,7 4.03,10 13.97,10\\\"></polygon><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><path d=\\\"M13,14h1v-3h1v-1l-1-4H4l-1,4v1h1v5h6v-5h3V14z M9,15H5v-4h4V15z M4.03,10l0.75-3h8.44l0.75,3H4.03z\\\"></path><polygon points=\\\"16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16 18,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"zoom_out_map\": {\n    \"name\": \"zoom_out_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.3 5.3l-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM9 3H3v6l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3zm-.83 11.41L5.3 17.3 3 15v6h6l-2.3-2.3 2.89-2.87zm7.66 0l-1.42 1.42 2.89 2.87L15 21h6v-6l-2.3 2.3z\\\"></path>\"\n      }\n    }\n  },\n  \"local_printshop\": {\n    \"name\": \"local_printshop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5h8v3H8zm11 5H5c-.55 0-1 .45-1 1v4h2v-2h12v2h2v-4c0-.55-.45-1-1-1zm-1 2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z\\\"></path><circle cx=\\\"18\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle>\"\n      }\n    }\n  },\n  \"directions_railway\": {\n    \"name\": \"directions_railway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm6-3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM12 3C6 3 6 4.2 6 5h12c0-.8 0-2-6-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 15.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5zm-2 0c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5H6V7h12v3zM6 5c0-.8 0-2 6-2s6 1.2 6 2H6zm6 11.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"hvac\": {\n    \"name\": \"hvac\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M12,6c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,6,12,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M12,16c-1.01,0-1.91-0.39-2.62-1h5.24 C13.91,15.61,13.01,16,12,16z M12,8c1.01,0,1.91,0.39,2.62,1H9.38C10.09,8.39,10.99,8,12,8z M8.56,10h6.89 c0.26,0.45,0.44,0.96,0.51,1.5h-7.9C8.12,10.96,8.29,10.45,8.56,10z M15.95,12.5c-0.07,0.54-0.24,1.05-0.51,1.5H8.56 c-0.26-0.45-0.44-0.96-0.51-1.5H15.95z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,15h10V5H5V15z M10,6c2.21,0,4,1.79,4,4c0,2.21-1.79,4-4,4s-4-1.79-4-4C6,7.79,7.79,6,10,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\\\"></path><path d=\\\"M10,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4s-4,1.79-4,4C6,12.21,7.79,14,10,14z M10,13c-0.88,0-1.67-0.39-2.22-1h4.44 C11.67,12.61,10.88,13,10,13z M10,7c0.88,0,1.66,0.39,2.21,0.99H7.79C8.34,7.39,9.12,7,10,7z M7.42,8.49h5.15 c0.22,0.38,0.36,0.8,0.4,1.26H7.03C7.07,9.29,7.2,8.86,7.42,8.49z M12.98,10.24c-0.04,0.46-0.17,0.88-0.39,1.26H7.42 c-0.22-0.38-0.36-0.8-0.39-1.26H12.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alt_route\": {\n    \"name\": \"alt_route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.78,11.16l-1.42,1.42c-0.68-0.69-1.34-1.58-1.79-2.94l1.94-0.49C8.83,10.04,9.28,10.65,9.78,11.16z M11,6L7,2L3,6h3.02 C6.04,6.81,6.1,7.54,6.21,8.17l1.94-0.49C8.08,7.2,8.03,6.63,8.02,6H11z M21,6l-4-4l-4,4h2.99c-0.1,3.68-1.28,4.75-2.54,5.88 c-0.5,0.44-1.01,0.92-1.45,1.55c-0.34-0.49-0.73-0.88-1.13-1.24L9.46,13.6C10.39,14.45,11,15.14,11,17c0,0,0,0,0,0h0v5h2v-5 c0,0,0,0,0,0c0-2.02,0.71-2.66,1.79-3.63c1.38-1.24,3.08-2.78,3.2-7.37H21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.38,9.41l-0.71,0.71c-0.47-0.5-0.93-1.1-1.25-1.96L7.4,7.91C7.66,8.54,8,9.01,8.38,9.41z M9.5,6l-3-3l-3,3h2.53 c0.02,0.43,0.07,0.83,0.14,1.19l0.97-0.24C7.08,6.66,7.04,6.34,7.02,6H9.5z M16.5,6l-3-3l-3,3h2.48c-0.12,2.22-1.02,3.11-1.9,3.96 c-0.39,0.37-0.78,0.75-1.08,1.23c-0.26-0.41-0.58-0.75-0.91-1.07l-0.71,0.71C9.03,11.47,9.5,11.99,9.5,13v4h1v-4c0,0,0,0,0,0h0 c0-1.1,0.53-1.61,1.27-2.32c0.94-0.9,2.07-2.03,2.21-4.68H16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_bar\": {\n    \"name\": \"local_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.23 9L12 12.11 14.77 9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM5.66 5h12.69l-1.78 2H7.43L5.66 5zM12 12.11L9.23 9h5.54L12 12.11z\\\"></path>\"\n      }\n    }\n  },\n  \"taxi_alert\": {\n    \"name\": \"taxi_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18h14v-5H4V18z M15.5,14c0.83,0,1.5,0.67,1.5,1.5S16.33,17,15.5,17 S14,16.33,14,15.5S14.67,14,15.5,14z M6.5,14C7.33,14,8,14.67,8,15.5S7.33,17,6.5,17S5,16.33,5,15.5S5.67,14,6.5,14z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M18,18H4v-5h14c-1.91,0-3.63-0.76-4.89-2H4.81l1.04-3h5.44C11.1,7.37,11,6.7,11,6s0.1-1.37,0.29-2H8v2H5.5 C4.84,6,4.29,6.42,4.08,7.01L2,13v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8 l-0.09-0.27C19.3,12.9,18.66,13,18,13V18z\\\"></path><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,3v4h-1V3H18.5z M18.5,9h-1V8h1V9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"emergency\": {\n    \"name\": \"emergency\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.43,16.87l-4.68-2.7C13.42,13.97,13,14.21,13,14.6V20h-2v-5.4c0-0.38-0.42-0.63-0.75-0.43l-4.68,2.7 l-1-1.73l4.68-2.7c0.33-0.19,0.33-0.67,0-0.87l-4.68-2.7l1-1.73l4.68,2.7C10.58,10.03,11,9.79,11,9.4V4h2v5.4 c0,0.38,0.42,0.63,0.75,0.43l4.68-2.7l1,1.73l-4.68,2.7c-0.33,0.19-0.33,0.67,0,0.87l4.68,2.7L18.43,16.87z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.29,13.9L18,12l3.29-1.9c0.48-0.28,0.64-0.89,0.37-1.37l-2-3.46c-0.28-0.48-0.89-0.64-1.37-0.37L15,6.8V3 c0-0.55-0.45-1-1-1h-4C9.45,2,9,2.45,9,3v3.8L5.71,4.9C5.23,4.63,4.62,4.79,4.34,5.27l-2,3.46C2.06,9.21,2.23,9.82,2.71,10.1L6,12 l-3.29,1.9c-0.48,0.28-0.64,0.89-0.37,1.37l2,3.46c0.28,0.48,0.89,0.64,1.37,0.37L9,17.2V21c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1 v-3.8l3.29,1.9c0.48,0.28,1.09,0.11,1.37-0.37l2-3.46C21.94,14.79,21.77,14.18,21.29,13.9z M18.43,16.87l-4.68-2.7 C13.42,13.97,13,14.21,13,14.6V20h-2v-5.4c0-0.38-0.42-0.63-0.75-0.43l-4.68,2.7l-1-1.73l4.68-2.7c0.33-0.19,0.33-0.67,0-0.87 l-4.68-2.7l1-1.73l4.68,2.7C10.58,10.03,11,9.79,11,9.4V4h2v5.4c0,0.38,0.42,0.63,0.75,0.43l4.68-2.7l1,1.73l-4.68,2.7 c-0.33,0.19-0.33,0.67,0,0.87l4.68,2.7L18.43,16.87z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,16.25h1.5v-4.08c0-0.38,0.42-0.63,0.75-0.43l3.54,2.04l0.75-1.3l-3.54-2.04 c-0.33-0.19-0.33-0.67,0-0.87l3.54-2.04l-0.75-1.3L11.5,8.27c-0.33,0.19-0.75-0.05-0.75-0.43V3.75h-1.5v4.08 c0,0.38-0.42,0.63-0.75,0.43L4.96,6.23l-0.75,1.3l3.54,2.04c0.33,0.19,0.33,0.67,0,0.87l-3.54,2.04l0.75,1.3l3.54-2.04 c0.33-0.19,0.75,0.05,0.75,0.43V16.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.25,17.75h-2.5c-0.55,0-1-0.45-1-1V13.9l-2.47,1.43c-0.48,0.28-1.09,0.11-1.37-0.37L2.66,12.8 c-0.28-0.48-0.11-1.09,0.37-1.37L5.5,10L3.03,8.57C2.55,8.3,2.39,7.69,2.66,7.21l1.25-2.16C4.19,4.56,4.8,4.4,5.28,4.68L7.75,6.1 V3.25c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1V6.1l2.47-1.43c0.48-0.28,1.09-0.11,1.37,0.37l1.25,2.16 c0.28,0.48,0.11,1.09-0.37,1.37L14.5,10l2.47,1.43c0.48,0.28,0.64,0.89,0.37,1.37l-1.25,2.16c-0.28,0.48-0.89,0.64-1.37,0.37 l-2.47-1.43v2.85C12.25,17.3,11.8,17.75,11.25,17.75z M9.25,16.25h1.5v-4.08c0-0.38,0.42-0.63,0.75-0.43l3.54,2.04l0.75-1.3 l-3.54-2.04c-0.33-0.19-0.33-0.67,0-0.87l3.54-2.04l-0.75-1.3L11.5,8.27c-0.33,0.19-0.75-0.05-0.75-0.43V3.75h-1.5v4.08 c0,0.38-0.42,0.63-0.75,0.43L4.96,6.23l-0.75,1.3l3.54,2.04c0.33,0.19,0.33,0.67,0,0.87l-3.54,2.04l0.75,1.3l3.54-2.04 c0.33-0.19,0.75,0.05,0.75,0.43V16.25z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_car_filled\": {\n    \"name\": \"directions_car_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M5,17h14v-5H5V17z M16.5,13c0.83,0,1.5,0.67,1.5,1.5S17.33,16,16.5,16 S15,15.33,15,14.5S15.67,13,16.5,13z M7.5,13C8.33,13,9,13.67,9,14.5S8.33,16,7.5,16S6,15.33,6,14.5S6.67,13,7.5,13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.92,6.01C18.72,5.42,18.16,5,17.5,5h-11C5.84,5,5.29,5.42,5.08,6.01L3,12v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8L18.92,6.01z M6.85,7h10.29l1.04,3H5.81L6.85,7z M19,17H5v-5h14V17z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"park\": {\n    \"name\": \"park\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13.26,10 15.16,10 12.01,5.5 8.88,10 10.69,10 6.79,16 17.26,16\\\"></polygon><path d=\\\"M17,12h2L12,2L5.05,12H7l-3.9,6h6.92v4h3.95v-4H21L17,12z M6.79,16l3.9-6H8.88l3.13-4.5l3.15,4.5h-1.9l4,6H6.79z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"11.09,8.5 12.29,8.5 10,4.83 7.71,8.5 8.91,8.5 5.73,13.5 14.27,13.5\\\"></polygon><path d=\\\"M13.82,10H15l-5-8l-5,8h1.18L3,15h5.5v3h3v-3H17L13.82,10z M5.73,13.5l3.18-5H7.71L10,4.83l2.29,3.67h-1.21l3.18,5H5.73z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"temple_buddhist\": {\n    \"name\": \"temple_buddhist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12,4.33 10,7 14,7\\\"></polygon><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"9\\\"></rect><path d=\\\"M6,20h3v-2c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3v2h3v-7H6V20z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,9.02c0,1.09-0.89,1.98-1.98,1.98H18V8.86c1.72-0.44,3-1.99,3-3.84V5l-2,0.02C19,6.11,18.11,7,17.02,7H16.5L12,1L7.5,7 H6.98C5.89,7,5,6.11,5,5.02H3c0,1.86,1.28,3.4,3,3.84V11H4.98C3.89,11,3,10.11,3,9.02H1c0,1.86,1.28,3.4,3,3.84V22h7v-4 c0-0.55,0.45-1,1-1s1,0.45,1,1v4h7v-9.14c1.72-0.44,3-1.99,3-3.84V9L21,9.02z M12,4.33L14,7h-4L12,4.33z M8,9h8v2H8V9z M18,20h-3 v-2c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v2H6v-7h12V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"7\\\" x=\\\"6.5\\\" y=\\\"7.5\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"10,3.46 8.05,6 11.95,6\\\"></polygon><path d=\\\"M5.5,16.5h2V15c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v1.5h2v-6h-9V16.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5,7.01C17.5,8.11,16.61,9,15.52,9H15V7.16c1.18-0.56,2-1.75,2-3.14V4l-1.5,0.01c0,0.99-0.73,1.8-1.68,1.95L10,1 L6.18,5.97C5.23,5.82,4.5,5.01,4.5,4.02H3C3,5.41,3.82,6.6,5,7.16V9H4.48C3.39,9,2.5,8.11,2.5,7.01H1c0,1.76,1.31,3.2,3,3.44V18h5 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h5v-7.55c1.69-0.24,3-1.68,3-3.44V7L17.5,7.01z M10,3.46L11.95,6H8.05L10,3.46z M6.5,7.5h7V9 h-7V7.5z M14.5,16.5h-2V15c0-1.38-1.12-2.5-2.5-2.5S7.5,13.62,7.5,15v1.5h-2v-6h9V16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"money\": {\n    \"name\": \"money\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 10h1v4h-1zm6 0h1v4h-1zM4 18h16V6H4v12zm10-9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1V9zM8 9c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H9c-.55 0-1-.45-1-1V9zM5 8h2v8H5V8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"emergency_share\": {\n    \"name\": \"emergency_share\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,11c-1.94,0-4,1.45-4,4.15c0,0.94,0.55,2.93,4,6.17c3.45-3.24,4-5.23,4-6.17C16,12.45,13.94,11,12,11z M12,16.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,16.5,12,16.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c1.93,0,3.68,0.78,4.95,2.05l-1.41,1.41C14.63,6.56,13.38,6,12,6S9.37,6.56,8.46,7.46L7.05,6.05 C8.32,4.78,10.07,4,12,4z M19.78,3.23l-1.41,1.41C16.74,3.01,14.49,2,12.01,2S7.27,3.01,5.64,4.63L4.22,3.22 C6.22,1.23,8.97,0,12.01,0S17.79,1.23,19.78,3.23z M12,11c1.94,0,4,1.45,4,4.15c0,0.94-0.55,2.93-4,6.17c-3.45-3.24-4-5.23-4-6.17 C8,12.45,10.06,11,12,11z M12,9c-3.15,0-6,2.41-6,6.15c0,2.49,2,5.44,6,8.85c4-3.41,6-6.36,6-8.85C18,11.41,15.15,9,12,9z M13.5,15 c0-0.83-0.67-1.5-1.5-1.5c-0.83,0-1.5,0.67-1.5,1.5c0,0.83,0.67,1.5,1.5,1.5C12.83,16.5,13.5,15.83,13.5,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,8.5c-2.08,0-3.78,1.7-3.78,3.78c0,1.71,2.05,4.15,3.78,5.74c1.73-1.59,3.78-4.03,3.78-5.74 C13.78,10.2,12.09,8.5,10,8.5z M10,13.5c-0.69,0-1.25-0.56-1.25-1.25C8.75,11.56,9.31,11,10,11c0.69,0,1.25,0.56,1.25,1.25 C11.25,12.94,10.69,13.5,10,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.34,2.66l-1.06,1.06C13.92,2.35,12.03,1.5,9.95,1.5c-2.06,0-3.92,0.83-5.28,2.18L3.61,2.61C5.24,1,7.48,0,9.95,0 C12.45,0,14.71,1.02,16.34,2.66z M6.09,5.09l1.06,1.06C7.87,5.44,8.86,5,9.95,5c1.11,0,2.12,0.46,2.85,1.2l1.06-1.06 c-1-1.01-2.38-1.63-3.91-1.63C8.45,3.5,7.08,4.11,6.09,5.09z M6.22,12.28c0,1.71,2.05,4.15,3.78,5.74 c1.73-1.59,3.78-4.03,3.78-5.74c0-2.08-1.7-3.78-3.78-3.78S6.22,10.2,6.22,12.28z M15.28,12.28C15.28,15.81,10,20,10,20 s-5.28-4.19-5.28-7.72C4.72,9.36,7.08,7,10,7S15.28,9.36,15.28,12.28z M10,11c-0.69,0-1.25,0.56-1.25,1.25 c0,0.69,0.56,1.25,1.25,1.25c0.69,0,1.25-0.56,1.25-1.25C11.25,11.56,10.69,11,10,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pin_drop\": {\n    \"name\": \"pin_drop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3C9.19 3 6 5.11 6 9.13c0 2.68 2 5.49 6 8.44 4-2.95 6-5.77 6-8.44C18 5.11 14.81 3 12 3z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M12 4c1.93 0 5 1.4 5 5.15 0 2.16-1.72 4.67-5 7.32-3.28-2.65-5-5.17-5-7.32C7 5.4 10.07 4 12 4m0-2C8.73 2 5 4.46 5 9.15c0 3.12 2.33 6.41 7 9.85 4.67-3.44 7-6.73 7-9.85C19 4.46 15.27 2 12 2z\\\"></path><path d=\\\"M12 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM5 20h14v2H5v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_right\": {\n    \"name\": \"roundabout_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.92,8C13.44,5.16,10.97,3,8,3C4.69,3,2,5.69,2,9c0,2.97,2.16,5.44,5,5.92L7,21h2l0-6.09c0-0.98-0.71-1.8-1.67-1.97 C5.44,12.63,4,10.98,4,9c0-2.21,1.79-4,4-4c1.98,0,3.63,1.44,3.94,3.33C12.11,9.29,12.93,10,13.91,10l4.26,0l-1.59,1.59L18,13l4-4 l-4-4l-1.41,1.41L18.17,8L13.92,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.75,3c2.37,0,4.33,1.73,4.69,4l3.69,0l-1.19-1.19L15,4.75l3,3l-3,3l-1.06-1.06l1.19-1.19l-3.69,0 c-0.74,0-1.36-0.54-1.48-1.25C9.72,5.69,8.37,4.5,6.75,4.5l0,0C4.96,4.5,3.5,5.96,3.5,7.75c0,1.62,1.18,2.96,2.73,3.21 c0.72,0.11,1.27,0.67,1.27,1.4l0,4.64H6v-4.56l0,0c-2.27-0.36-4-2.32-4-4.69C2,5.13,4.13,3,6.75,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"synagogue\": {\n    \"name\": \"synagogue\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,6C3.45,6,3,6.45,3,7v1h2V7C5,6.45,4.55,6,4,6z\\\" opacity=\\\".3\\\"></path><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><path d=\\\"M7,9.92V19h2v-3c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3v3h2V9.92l-5-4.29L7,9.92z M13.5,10 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5S13.5,9.17,13.5,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6c-0.55,0-1,0.45-1,1v1h2V7C21,6.45,20.55,6,20,6z\\\" opacity=\\\".3\\\"></path><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect><path d=\\\"M20,4c-1.66,0-3,1.34-3,3v0.29L12,3L7,7.29V7c0-1.66-1.34-3-3-3S1,5.34,1,7v14h10v-5c0-0.55,0.45-1,1-1s1,0.45,1,1v5h10V7 C23,5.34,21.66,4,20,4z M5,19H3v-9h2V19z M5,8H3V7c0-0.55,0.45-1,1-1s1,0.45,1,1V8z M17,19h-2v-3c0-1.65-1.35-3-3-3 c-1.65,0-3,1.35-3,3v3H7V9.92l5-4.29l5,4.29V19z M21,19h-2v-9h2V19z M21,8h-2V7c0-0.55,0.45-1,1-1s1,0.45,1,1V8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"6.5\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"2.5\\\" y=\\\"9\\\"></rect><path d=\\\"M3.5,5.5c-0.55,0-1,0.45-1,1v1h2.01v-1C4.51,5.95,4.06,5.5,3.5,5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.01,8.66v6.84H7.5V14c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v1.5h1.49V8.66L10,5.03L6.01,8.66z M11.25,8.25c0,0.69-0.56,1.25-1.25,1.25S8.75,8.94,8.75,8.25S9.31,7,10,7S11.25,7.56,11.25,8.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,5.5c-0.55,0-1,0.45-1,1v1h2.01v-1C17.5,5.95,17.05,5.5,16.5,5.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"6.5\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"15.5\\\" y=\\\"9\\\"></rect><circle cx=\\\"10\\\" cy=\\\"8.25\\\" r=\\\"1.25\\\"></circle><path d=\\\"M16.5,4c-1.38,0-2.5,1.12-2.5,2.5v0.13L10,3L6.01,6.63V6.5C6.01,5.12,4.89,4,3.5,4C2.12,4,1,5.12,1,6.5V17h8v-3 c0-0.55,0.45-1,1-1s1,0.45,1,1v3h8V6.5C19,5.12,17.88,4,16.5,4z M4.5,15.5h-2V9h2V15.5z M4.51,7.5H2.5v-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1V7.5z M13.99,15.5H12.5V14c0-1.38-1.12-2.5-2.5-2.5S7.5,12.62,7.5,14v1.5H6.01V8.66L10,5.03l3.99,3.63V15.5z M17.5,15.5h-2V9h2V15.5z M17.5,7.5h-2.01v-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1V7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nightlife\": {\n    \"name\": \"nightlife\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M1,5h14l-6,9v4h2v2H5v-2h2v-4L1,5z M10.1,9l1.4-2H4.49l1.4,2H10.1z M17,5h5v3h-3v9l0,0c0,1.66-1.34,3-3,3s-3-1.34-3-3 s1.34-3,3-3c0.35,0,0.69,0.06,1,0.17V5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.74,10.96L12,5H2l4.24,5.94v3.56H5V16h4v-1.5H7.74V10.96z M5.99,8L4.91,6.5h4.17L8.01,8H5.99z\\\"></path><path d=\\\"M13.5,5v6.21c-0.31-0.13-0.64-0.21-1-0.21c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V7h2V5H13.5 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"plumbing\": {\n    \"name\": \"plumbing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.28,4.93l-2.12-2.12c-0.78-0.78-2.05-0.78-2.83,0L11.5,5.64l2.12,2.12l2.12-2.12l3.54,3.54 C20.45,8,20.45,6.1,19.28,4.93z\\\"></path><path d=\\\"M5.49,13.77c0.59,0.59,1.54,0.59,2.12,0l2.47-2.47L7.96,9.17l-2.47,2.47C4.9,12.23,4.9,13.18,5.49,13.77L5.49,13.77z\\\"></path><path d=\\\"M15.04,7.76l-0.71,0.71l-0.71,0.71l-3.18-3.18C9.85,5.4,8.9,5.4,8.32,5.99c-0.59,0.59-0.59,1.54,0,2.12l3.18,3.18 L10.79,12l-6.36,6.36c-0.78,0.78-0.78,2.05,0,2.83c0.78,0.78,2.05,0.78,2.83,0L16.45,12c0.39,0.39,1.02,0.39,1.41,0 c0.39-0.39,0.39-1.02,0-1.41L15.04,7.76z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.29,4.45l2.83,2.83l0,0c0.78-0.78,0.78-2.05,0-2.83l-2.12-2.12c-0.39-0.39-1.02-0.39-1.41,0L9.75,5.15l1.41,1.41 L13.29,4.45z\\\"></path><path d=\\\"M4.8,11.52L4.8,11.52c0.39,0.39,1.02,0.39,1.41,0L8.34,9.4L6.92,7.98L4.8,10.1C4.41,10.49,4.41,11.13,4.8,11.52z\\\"></path><path d=\\\"M12.58,6.57l-1.41,1.41L8.34,5.15c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L9.75,9.4L9.04,10.1 l-5.3,5.3c-0.59,0.59-0.59,1.54,0,2.12l0,0c0.59,0.59,1.54,0.59,2.12,0l7.42-7.42l0,0c0.39,0.39,1.02,0.39,1.41,0l0,0 c0.39-0.39,0.39-1.02,0-1.41L12.58,6.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_transit_filled\": {\n    \"name\": \"directions_transit_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M13,5h4.67C17.13,4.46,15.71,4,12,4C8.48,4,7.03,4.48,6.43,5H11H13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,15.5C6,16.33,6.67,17,7.5,17h9c0.83,0,1.5-0.67,1.5-1.5V12H6V15.5z M15.5,13c0.83,0,1.5,0.67,1.5,1.5S16.33,16,15.5,16S14,15.33,14,14.5S14.67,13,15.5,13z M8.5,13c0.83,0,1.5,0.67,1.5,1.5 S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"badge\": {\n    \"name\": \"badge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14,13.5h4V12h-4V13.5z M14,16.5h4V15h-4V16.5z M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9C22,7.9,21.1,7,20,7z M11,4h2v5h-2V4z M20,20H4V9h5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2h5V20 z M9,15c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5s-1.5,0.67-1.5,1.5C7.5,14.33,8.17,15,9,15z M11.08,16.18 C10.44,15.9,9.74,15.75,9,15.75s-1.44,0.15-2.08,0.43C6.36,16.42,6,16.96,6,17.57V18h6v-0.43C12,16.96,11.64,16.42,11.08,16.18z\\\"></path><path d=\\\"M13,11h-2c-1.1,0-2-0.9-2-2H4v11h16V9h-5C15,10.1,14.1,11,13,11z M9,12c0.83,0,1.5,0.67,1.5,1.5 c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5C7.5,12.67,8.17,12,9,12z M12,18H6v-0.43c0-0.6,0.36-1.15,0.92-1.39 C7.56,15.9,8.26,15.75,9,15.75s1.44,0.15,2.08,0.43c0.55,0.24,0.92,0.78,0.92,1.39V18z M18,16.5h-4V15h4V16.5z M18,13.5h-4V12h4 V13.5z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M10.5,9h-1C8.67,9,8,8.33,8,7.5H3.5v9h13v-9H12C12,8.33,11.33,9,10.5,9z M7.5,10 c0.69,0,1.25,0.56,1.25,1.25S8.19,12.5,7.5,12.5s-1.25-0.56-1.25-1.25S6.81,10,7.5,10z M10,15H5v-0.48c0-0.5,0.3-0.95,0.76-1.16 C6.3,13.13,6.88,13,7.5,13c0.62,0,1.2,0.13,1.74,0.36C9.7,13.56,10,14.01,10,14.52V15z M15,14h-3v-1.5h3V14z M15,11.5h-3V10h3 V11.5z\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M16.5,6H12V3.5C12,2.67,11.33,2,10.5,2h-1C8.67,2,8,2.67,8,3.5V6H3.5C2.67,6,2,6.67,2,7.5v9C2,17.33,2.67,18,3.5,18h13 c0.83,0,1.5-0.67,1.5-1.5v-9C18,6.67,17.33,6,16.5,6z M9.5,3.5h1v4h-1V3.5z M16.5,16.5h-13v-9H8C8,8.33,8.67,9,9.5,9h1 C11.33,9,12,8.33,12,7.5h4.5V16.5z\\\"></path></g><g><rect height=\\\"1.5\\\" width=\\\"3\\\" x=\\\"12\\\" y=\\\"10\\\"></rect></g><g><rect height=\\\"1.5\\\" width=\\\"3\\\" x=\\\"12\\\" y=\\\"12.5\\\"></rect></g><g><circle cx=\\\"7.5\\\" cy=\\\"11.25\\\" r=\\\"1.25\\\"></circle></g><g><path d=\\\"M9.24,13.36C8.7,13.13,8.12,13,7.5,13c-0.62,0-1.2,0.13-1.74,0.36C5.3,13.56,5,14.01,5,14.52V15h5v-0.48 C10,14.01,9.7,13.56,9.24,13.36z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"diamond\": {\n    \"name\": \"diamond\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"8.88,5 6.24,5 4.74,8 7.38,8\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"19.26,8 17.76,5 15.12,5 16.62,8\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"11,16.68 11,10 5.44,10\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13,16.68 18.56,10 13,10\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"12.88,5 11.12,5 9.62,8 14.38,8\\\"></polygon><path d=\\\"M19,3H5L2,9l10,12L22,9L19,3z M17.76,5l1.5,3h-2.65l-1.5-3H17.76z M6.24,5h2.65l-1.5,3H4.74L6.24,5z M11,16.68L5.44,10H11 V16.68z M9.62,8l1.5-3h1.76l1.5,3H9.62z M13,16.68V10h5.56L13,16.68z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"7.91,4.5 5.02,4.5 3.92,7.25 6.54,7.25\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"9.25,13.9 9.25,8.75 4.67,8.75\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"16.08,7.25 14.98,4.5 12.09,4.5 13.46,7.25\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10.41,4.5 9.59,4.5 8.21,7.25 11.79,7.25\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10.75,13.9 15.33,8.75 10.75,8.75\\\"></polygon><path d=\\\"M16,3H4L2,8l8,9l8-9L16,3z M14.98,4.5l1.1,2.75h-2.62L12.09,4.5H14.98z M5.02,4.5h2.9L6.54,7.25H3.92L5.02,4.5z M9.25,13.9L4.67,8.75h4.58V13.9z M8.21,7.25L9.59,4.5h0.82l1.38,2.75H8.21z M10.75,13.9V8.75h4.58L10.75,13.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turn_sharp_left\": {\n    \"name\": \"turn_sharp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,6.83L4.41,8.41L3,7l4-4l4,4L9.59,8.41L8,6.83V13h8c1.1,0,2,0.9,2,2v6h-2v-6H8c-1.1,0-2-0.9-2-2V6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,10.5C5.5,11.33,6.17,12,7,12l6,0v5h1.5v-5c0-0.83-0.67-1.5-1.5-1.5l-6,0l0-4.63l1.19,1.19L9.25,6l-3-3l-3,3l1.06,1.06 L5.5,5.87L5.5,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fastfood\": {\n    \"name\": \"fastfood\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21.98c0 .56.45 1.01 1.01 1.01H15c.56 0 1.01-.45 1.01-1.01V21H1v.98z\\\"></path><path d=\\\"M8.5 10.99c-1.42 0-3.77.46-4.88 2.01h9.77c-1.12-1.55-3.47-2.01-4.89-2.01z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM3.62 13c1.11-1.55 3.47-2.01 4.88-2.01s3.77.46 4.88 2.01H3.62zM1 17h15v2H1zM18 5V1h-2v4h-5l.23 2h9.56l-1.4 14H18v2h1.72c.84 0 1.53-.65 1.63-1.47L23 5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_boat\": {\n    \"name\": \"directions_boat\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.49 15.68L8 13.96l1.51 1.72c.34.4 1.28 1.32 2.49 1.32 1.21 0 2.15-.92 2.49-1.32L16 13.96l1.51 1.72c.2.23.6.64 1.14.94l1.12-3.97-2.39-.78L12 10.11l-5.38 1.77-2.4.79 1.13 3.96c.55-.31.94-.72 1.14-.95zM11 3h2v1h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42c-.26.08-.48.26-.6.5s-.15.52-.06.78L3.95 19zM11 3h2v1h-2V3zM6 6h12v3.97L12 8 6 9.97V6zm.62 5.87L12 10.11l5.38 1.77 2.39.78-1.12 3.97c-.54-.3-.94-.71-1.14-.94L16 13.96l-1.51 1.72c-.34.4-1.28 1.32-2.49 1.32-1.21 0-2.15-.92-2.49-1.32L8 13.96l-1.51 1.72c-.2.23-.6.63-1.14.93l-1.13-3.96 2.4-.78zM8 22.01c1.26.64 2.63.97 4 .97s2.74-.32 4-.97c1.26.65 2.62.99 4 .99h2v-2h-2c-1.39 0-2.78-.47-4-1.32-1.22.85-2.61 1.28-4 1.28s-2.78-.43-4-1.28C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99z\\\"></path>\"\n      }\n    }\n  },\n  \"flight\": {\n    \"name\": \"flight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19z\\\"></path>\"\n      }\n    }\n  },\n  \"hail\": {\n    \"name\": \"hail\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M12,6c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,6,12,6z M17,2h2c0,2.7-0.93,4.41-2.3,5.5c-0.5,0.4-1.1,0.7-1.7,0.9V22h-2 v-6h-2v6H9V10.1c-0.3,0.1-0.5,0.2-0.6,0.3C7.87,10.81,7,11.43,7,14H5c0-2.06,0.35-3.78,2.11-5.29C8.21,7.81,10,7,12,7 s2.68-0.46,3.48-1.06C15.96,5.55,17,4.76,17,2z M4,16h3v6H4V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"traffic\": {\n    \"name\": \"traffic\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 19h6V5H9v14zm3-13c.83 0 1.5.67 1.5 1.5S12.83 9 12 9s-1.5-.67-1.5-1.5S11.17 6 12 6zm0 4.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0 4.5c.83 0 1.5.67 1.5 1.5S12.83 18 12 18s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 5h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86h-3V8.86c1.72-.45 3-2 3-3.86zm-5 14H9V5h6v14zm-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9z\\\"></path>\"\n      }\n    }\n  },\n  \"pest_control\": {\n    \"name\": \"pest_control\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,9c-2.21,0-4,2.24-4,5s1.79,5,4,5s4-2.24,4-5S14.21,9,12,9z M13,17h-2v-6h2V17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.88,7.36C13.62,6.57,12.88,6,12,6s-1.62,0.57-1.88,1.36C10.71,7.13,11.34,7,12,7S13.29,7.13,13.88,7.36z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,15v-2h-3.07c-0.05-0.39-0.12-0.77-0.22-1.14l2.58-1.49l-1-1.73L16.92,10c-0.28-0.48-0.62-0.91-0.99-1.29 c0.1-0.56,0.2-1.69-0.58-2.89L17,4.17l-1.41-1.41l-1.72,1.72c-1.68-0.89-3.1-0.33-3.73,0L8.41,2.76L7,4.17l1.65,1.65 c-0.78,1.2-0.68,2.34-0.58,2.89C7.7,9.1,7.36,9.53,7.08,10L4.71,8.63l-1,1.73l2.58,1.49c-0.1,0.37-0.17,0.75-0.22,1.14H3v2h3.07 c0.05,0.39,0.12,0.77,0.22,1.14l-2.58,1.49l1,1.73L7.08,18c1.08,1.81,2.88,3,4.92,3s3.84-1.19,4.92-3l2.37,1.37l1-1.73l-2.58-1.49 c0.1-0.37,0.17-0.75,0.22-1.14H21z M12,6c0.88,0,1.62,0.57,1.88,1.36C13.29,7.13,12.66,7,12,7s-1.29,0.13-1.88,0.36 C10.38,6.57,11.12,6,12,6z M12,19c-2.21,0-4-2.24-4-5s1.79-5,4-5s4,2.24,4,5S14.21,19,12,19z\\\"></path><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.48,7.33C11.4,6.58,10.77,6,10,6S8.6,6.58,8.52,7.33C8.98,7.12,9.48,7,10,7S11.02,7.12,11.48,7.33z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,8c-1.65,0-3,1.57-3,3.5c0,1.93,1.35,3.5,3,3.5s3-1.57,3-3.5C13,9.57,11.65,8,10,8z M10.5,13.5h-1v-4h1 V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,12v-1h-2.04c-0.04-0.38-0.11-0.74-0.22-1.08l1.71-0.99l-0.5-0.87L13.33,9c-0.24-0.4-0.54-0.74-0.87-1.03 c0.07-0.39,0.13-1.19-0.48-1.99l1.24-1.24l-0.71-0.71l-1.29,1.29c-0.41-0.23-1.35-0.61-2.43,0L7.49,4.04L6.78,4.74l1.24,1.24 C7.41,6.78,7.47,7.58,7.55,7.97C7.21,8.26,6.91,8.6,6.67,9L5.05,8.07l-0.5,0.87l1.71,0.99c-0.11,0.34-0.18,0.7-0.22,1.08H4v1h2.04 c0.04,0.38,0.11,0.74,0.22,1.08l-1.71,0.99l0.5,0.87L6.67,14c0.72,1.21,1.94,2,3.33,2s2.61-0.8,3.33-2l1.62,0.94l0.5-0.87 l-1.71-0.99c0.11-0.34,0.18-0.7,0.22-1.08H16z M10,6c0.77,0,1.4,0.58,1.48,1.33C11.02,7.12,10.52,7,10,7S8.98,7.12,8.52,7.33 C8.6,6.58,9.23,6,10,6z M10,15c-1.65,0-3-1.57-3-3.5C7,9.57,8.35,8,10,8s3,1.57,3,3.5C13,13.43,11.65,15,10,15z\\\"></path><g><rect height=\\\"4\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"9.5\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"multiple_stop\": {\n    \"name\": \"multiple_stop\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,4l4,4l-4,4V9h-4V7h4V4z M10,7C9.45,7,9,7.45,9,8s0.45,1,1,1s1-0.45,1-1S10.55,7,10,7z M6,7C5.45,7,5,7.45,5,8 s0.45,1,1,1s1-0.45,1-1S6.55,7,6,7z M7,17h4v-2H7v-3l-4,4l4,4V17z M14,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1 C13,16.55,13.45,17,14,17z M18,17c0.55,0,1-0.45,1-1c0-0.55-0.45-1-1-1s-1,0.45-1,1C17,16.55,17.45,17,18,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"emergency_recording\": {\n    \"name\": \"emergency_recording\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,6v12h12V6H4z M15,13.73l-1,1.73l-3-1.73V17H9v-3.27l-3,1.73l-1-1.73L8,12l-3-1.73l1-1.73l3,1.73V7h2v3.27 l3-1.73l1,1.73L12,12L15,13.73z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,18 H4V6h12V18z M12,12l3,1.73l-1,1.73l-3-1.73V17H9v-3.27l-3,1.73l-1-1.73L8,12l-3-1.73l1-1.73l3,1.73V7h2v3.27l3-1.73l1,1.73L12,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.5,5.5v9h9v-9H4.5z M12.75,11.3L12,12.6l-2.25-1.3v2.45h-1.5V11.3L6,12.6l-0.75-1.3L7.5,10L5.25,8.7L6,7.4 l2.25,1.3V6.25h1.5V8.7L12,7.4l0.75,1.3L10.5,10L12.75,11.3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,6l-3,3V5.5C15,4.67,14.33,4,13.5,4h-9C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h9c0.83,0,1.5-0.67,1.5-1.5V11l3,3 V6z M13.5,14.5h-9v-9h9V14.5z M10.5,10l2.25,1.3L12,12.6l-2.25-1.3v2.45h-1.5V11.3L6,12.6l-0.75-1.3L7.5,10L5.25,8.7L6,7.4 l2.25,1.3V6.25h1.5V8.7L12,7.4l0.75,1.3L10.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_left\": {\n    \"name\": \"turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.83,11l1.59,1.59L7,14l-4-4l4-4l1.41,1.41L6.83,9L15,9c1.1,0,2,0.9,2,2v9h-2v-9L6.83,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,16h1.5V9c0-0.83-0.67-1.5-1.5-1.5l-6.13,0l1.19-1.19L6,5.25l-3,3l3,3l1.06-1.06L5.87,9L12,9V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flight_class\": {\n    \"name\": \"flight_class\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"6\\\"></rect><path d=\\\"M16,4h-2c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2V6C18,4.9,17.1,4,16,4z M16,11h-2V6h2V11z M9.5,16H18v2H9.49 c-0.88,0-1.66-0.58-1.92-1.43L5,8V4h2v4L9.5,16z M8,19h10v2H8V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"3.75\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M13,4h-1.5C10.67,4,10,4.67,10,5.5v3.75c0,0.83,0.67,1.5,1.5,1.5H13c0.83,0,1.5-0.67,1.5-1.5V5.5C14.5,4.67,13.83,4,13,4z M13,9.25h-1.5V5.5H13V9.25z M8.4,13H15v1.5H8.4c-0.66,0-1.24-0.43-1.43-1.06L5,7V4h1.5v3L8.4,13z M7.5,15.5H15V17H7.5V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_road\": {\n    \"name\": \"remove_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><polygon points=\\\"22.5,16.41 21.09,15 19,17.09 16.91,15 15.5,16.41 17.59,18.5 15.5,20.59 16.91,22 19,19.91 21.09,22 22.5,20.59 20.41,18.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8.5\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13\\\"></rect><polygon points=\\\"18,13.56 16.94,12.5 15.25,14.19 13.56,12.5 12.5,13.56 14.19,15.25 12.5,16.94 13.56,18 15.25,16.31 16.94,18 18,16.94 16.31,15.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_grocery_store\": {\n    \"name\": \"local_grocery_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.53 11h7.02l2.76-5H6.16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-1.45-5c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_road\": {\n    \"name\": \"edit_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"15.55,17.42 15.55,18.45 16.58,18.45 20.03,15 19,13.97\\\"></polygon><polygon points=\\\"18,4 16,4 16,11.9 18,9.9\\\"></polygon><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"10\\\" y=\\\"16\\\"></rect><path d=\\\"M22.56,12.59l-1.15-1.15c-0.59-0.59-1.54-0.59-2.12,0L14,16.73V20h3.27l5.29-5.29C23.15,14.12,23.15,13.17,22.56,12.59z M16.58,18.45h-1.03v-1.03L19,13.97L20.03,15L16.58,18.45z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12,14.29 12,15 12.71,15 15.95,11.76 15.24,11.05\\\"></polygon><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"8.5\\\" y=\\\"9\\\"></rect><path d=\\\"M18.07,9.64l-0.71-0.71c-0.39-0.39-1.02-0.39-1.41,0L11,13.88V16h2.12l4.95-4.95C18.46,10.66,18.46,10.03,18.07,9.64z M12.71,15H12v-0.71l3.24-3.24l0.71,0.71L12.71,15z\\\"></path><polygon points=\\\"14,4 13,4 13,10.46 14,9.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"category\": {\n    \"name\": \"category\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"17.5\\\" cy=\\\"17.5\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><path d=\\\"M5 15.5h4v4H5zm7-9.66L10.07 9h3.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM11 13.5H3v8h8v-8zm-2 6H5v-4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"fork_right\": {\n    \"name\": \"fork_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.59,15.59L16,17l4-4l-4-4l-1.41,1.41L16.17,12c-1.51-0.33-3.73,0.08-5.17,1.36l0-6.53l1.59,1.59L14,7l-4-4L6,7 l1.41,1.41L9,6.83V21l2,0v-4c0.73-2.58,3.07-3.47,5.17-3L14.59,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,11.36c1.2-1.05,2.74-1.4,4.13-1.11l-1.19-1.19L13,8l3,3l-3,3l-1.06-1.06l1.19-1.19C11.26,11.32,9.56,12.28,9,14v3H7.5 l0-11.13L6.31,7.06L5.25,6l3-3l3,3l-1.06,1.06L9,5.87L9,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_movies\": {\n    \"name\": \"local_movies\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 5h4v14h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 21V3h-2v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm2-12h2v2h-2V7zm0 4h2v2h-2v-2zm0 6v-2h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"streetview\": {\n    \"name\": \"streetview\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z\\\"></path><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"5\\\"></circle><path d=\\\"M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82C12.23 9.42 11.5 7.8 11.5 6z\\\"></path>\"\n      }\n    }\n  },\n  \"soup_kitchen\": {\n    \"name\": \"soup_kitchen\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.12,17c-0.73,1.78-2.43,3-4.37,3c-1.94,0-3.67-1.23-4.43-3h8.78\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.4,7C6.06,7.55,6,7.97,6,8.38C6,9.15,7,11,7,12c0,0.95-0.4,1.5-0.4,1.5H5.1c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62 C4.5,7.97,4.56,7.55,4.9,7H6.4z M11.4,7C11.06,7.55,11,7.97,11,8.38C11,9.15,12,11,12,12c0,0.95-0.4,1.5-0.4,1.5h1.5 c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H11.4z M8.15,7c-0.34,0.55-0.4,0.97-0.4,1.38 c0,0.77,1,2.63,1,3.62c0,0.95-0.4,1.5-0.4,1.5h1.5c0,0,0.4-0.55,0.4-1.5c0-1-1-2.85-1-3.62c0-0.41,0.06-0.83,0.4-1.38H8.15z M18.6,2 c-1.54,0-2.81,1.16-2.98,2.65L14.53,15H4.01c-0.6,0-1.09,0.53-1,1.13C3.53,19.46,6.39,22,9.75,22c3.48,0,6.34-2.73,6.71-6.23 l1.15-10.87C17.66,4.39,18.08,4,18.6,4c0.55,0,1,0.45,1,1c0,0.3-0.1,1.25-0.1,1.25l1.97,0.25c0,0,0.13-1.06,0.13-1.5 C21.6,3.35,20.25,2,18.6,2z M9.75,20c-1.94,0-3.67-1.23-4.43-3h8.78h0.01C13.39,18.78,11.69,20,9.75,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M8.4,16.5c-1.63,0-3.07-1.08-3.65-2.6h7.28C11.46,15.44,10.04,16.5,8.4,16.5z\\\"></path></g><g><path d=\\\"M4.96,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79C4.5,6.74,4.54,6.42,4.81,6h0.98 C5.53,6.42,5.48,6.74,5.48,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H4.96z M8.32,11c0,0,0.31-0.42,0.31-1.15 c0-0.77-0.77-2.19-0.77-2.79C7.86,6.74,7.9,6.42,8.16,6H7.18C6.92,6.42,6.88,6.74,6.88,7.06c0,0.59,0.77,2.02,0.77,2.79 c0,0.73-0.31,1.15-0.31,1.15H8.32z M10.69,11c0,0,0.31-0.42,0.31-1.15c0-0.77-0.77-2.19-0.77-2.79c0-0.31,0.04-0.64,0.31-1.06H9.56 C9.29,6.42,9.25,6.74,9.25,7.06c0,0.59,0.77,2.02,0.77,2.79c0,0.73-0.31,1.15-0.31,1.15H10.69z M15.5,2c-1.16,0-2.11,0.88-2.24,2 l-0.94,8.4H3.5c-0.28,0-0.53,0.24-0.5,0.52C3.25,15.77,5.59,18,8.4,18c2.78,0,5.07-2.18,5.36-4.99l0.99-8.84 c0.04-0.38,0.36-0.67,0.75-0.67c0.41,0,0.75,0.34,0.75,0.75S16.2,5.3,16.2,5.3l1.48,0.19c0,0,0.07-0.47,0.07-1.24 C17.75,3.01,16.74,2,15.5,2z M8.4,16.5c-1.63,0-3.07-1.08-3.65-2.6h7.28C11.46,15.44,10.04,16.5,8.4,16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"castle\": {\n    \"name\": \"castle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,7H7v6H3v6h5v-1c0-2.21,1.79-4,4-4s4,1.79,4,4v1h5v-6h-4V7z M11,12H9V9h2V12z M15,12h-2V9h2V12z\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M21,9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9V9H21z M21,19h-5v-1 c0-2.21-1.79-4-4-4s-4,1.79-4,4v1H3v-6h4V7h10v6h4V19z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"9\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"9\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.5,5.5h-9v5h-3v5h4V15c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5v0.5h4v-5h-3V5.5z M9,10H7.5V7H9V10z M12.5,10H11V7h1.5V10z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"7.5\\\" y=\\\"7\\\"></rect><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><path d=\\\"M17.5,7v2H16V2h-1.5v2h-2V2H11v2H9V2H7.5v2h-2V2H4v7H2.5V7H1v10h7v-2c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7V7H17.5z M17.5,15.5 h-4V15c0-1.93-1.57-3.5-3.5-3.5S6.5,13.07,6.5,15v0.5h-4v-5h3v-5h9v5h3V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hardware\": {\n    \"name\": \"hardware\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.77,6H11v5h2V5H9C8.11,5,7.32,5.39,6.77,6z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><rect enable-background=\\\"new\\\" height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"13\\\"></rect><path d=\\\"M18,3l-3,3V3H9C6.24,3,4,5.24,4,8h5v12c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8l3,3h2V3H18z M13,19h-2v-6h2V19z M13,11 h-2V6H6.77C7.32,5.39,8.11,5,9,5h4V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6,5.5h3v3.75h1.5V4.5H8C7.18,4.5,6.46,4.89,6,5.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"4.75\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"9\\\" y=\\\"10.75\\\"></rect><path d=\\\"M14.5,3L12,5.5V3H8C5.79,3,4,4.79,4,7h3.5v9c0,0.55,0.45,1,1,1H11c0.55,0,1-0.45,1-1V6.5L14.5,9H16V3H14.5z M10.5,15.5H9 v-4.75h1.5V15.5z M10.5,9.25H9V5.5H6c0.46-0.61,1.18-1,2-1h2.5V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"trip_origin\": {\n    \"name\": \"trip_origin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"pedal_bike\": {\n    \"name\": \"pedal_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.18,10l-1.7-4.68C16.19,4.53,15.44,4,14.6,4H12v2h2.6l1.46,4h-4.81l-0.36-1H12V7H7v2h1.75l1.82,5H9.9 c-0.44-2.23-2.31-3.88-4.65-3.99C2.45,9.87,0,12.2,0,15c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5c0-2.8-2.2-5-5-5H18.18z M7.82,16c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,14h-1.4l-0.73-2H15C14.56,12.58,14.24,13.25,14.1,14z M19,18c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,18,19,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,9h-0.68l-1.58-4.34C13.1,4.26,12.72,4,12.3,4H10v1h2.3l1.46,4H8.75L8.38,8H10V7H6v1h1.32l1.46,4H7.95 C7.7,10.19,6.13,8.86,4.2,9.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,14.25,2.41,16,4.5,16c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,10.75,17.59,9,15.5,9z M6.95,13c-0.23,1.15-1.22,2-2.45,2 C3.1,15,2,13.9,2,12.5S3.1,10,4.5,10c1.23,0,2.23,0.85,2.45,2H4v1H6.95z M12.05,12H9.84l-0.73-2h3.92 C12.5,10.52,12.16,11.22,12.05,12z M15.5,15c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8 C15.3,10.02,15.4,10,15.5,10c1.4,0,2.5,1.1,2.5,2.5S16.9,15,15.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"store_mall_directory\": {\n    \"name\": \"store_mall_directory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.64 9l-.6 3h13.92l-.6-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 7l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5H4zm8 11H6v-4h6v4zm-6.96-6l.6-3h12.72l.6 3H5.04zM4 4h16v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"local_hotel\": {\n    \"name\": \"local_hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"11\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant_menu\": {\n    \"name\": \"restaurant_menu\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.1 13.34l2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66l4.19 4.18zm12.05-3.19c1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38z\\\"></path>\"\n      }\n    }\n  },\n  \"train\": {\n    \"name\": \"train\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-3.51 0-4.96.48-5.57 1h11.13c-.6-.52-2.05-1-5.56-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zm0 2c3.51 0 4.96.48 5.57 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z\\\"></path>\"\n      }\n    }\n  },\n  \"moving\": {\n    \"name\": \"moving\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.71,9.71L22,12V6h-6l2.29,2.29l-4.17,4.17c-0.39,0.39-1.02,0.39-1.41,0l-1.17-1.17c-1.17-1.17-3.07-1.17-4.24,0L2,16.59 L3.41,18l5.29-5.29c0.39-0.39,1.02-0.39,1.41,0l1.17,1.17c1.17,1.17,3.07,1.17,4.24,0L19.71,9.71z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.03,8.03l-3.23,3.23c-0.98,0.98-2.56,0.98-3.54,0l-0.7-0.7c-0.39-0.39-1.02-0.39-1.41,0l-4.09,4.09L2,13.59L6.08,9.5 c0.98-0.98,2.56-0.98,3.54,0l0.71,0.71c0.39,0.39,1.02,0.39,1.41,0l3.23-3.23L13,5h5v5L16.03,8.03z\\\"></path>\"\n      }\n    }\n  },\n  \"local_police\": {\n    \"name\": \"local_police\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M14.5,12.59l0.9,3.88 L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,12.59l0.9,3.88L12,14.42l-3.4,2.05l0.9-3.87l-3-2.59l3.96-0.34L12,6.02l1.54,3.64L17.5,10L14.5,12.59z M12,3.19 l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12c5.16-1.26,9-6.45,9-12 V5L12,1L12,1z\\\"></path>\"\n      }\n    }\n  },\n  \"my_location\": {\n    \"name\": \"my_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3.06V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M12 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>\"\n      }\n    }\n  },\n  \"car_crash\": {\n    \"name\": \"car_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M17.91,13c0.06,0.16,0.09,0.33,0.09,0.5c0,0.83-0.67,1.5-1.5,1.5S15,14.33,15,13.5c0-0.39,0.15-0.74,0.39-1 c-0.86-0.35-1.63-0.86-2.29-1.5H5v5h14v-3.07C18.67,12.98,18.39,13,17.91,13z M7.5,15C6.67,15,6,14.33,6,13.5S6.67,12,7.5,12 S9,12.67,9,13.5S8.33,15,7.5,15z\\\"></path></g><g><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,7h-1V3h1V7z M18.5,8v1h-1V8H18.5z M6,13.5 C6,12.67,6.67,12,7.5,12S9,12.67,9,13.5S8.33,15,7.5,15S6,14.33,6,13.5z M19,12.93c0.65-0.09,1.34-0.28,2-0.6h0V19 c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1v-1H6v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-8l2.08-5.99C5.29,4.42,5.84,4,6.5,4 l4.79,0C11.1,4.63,11,5.31,11,6H6.85L5.81,9h5.86v0c0.36,0.75,0.84,1.43,1.43,2L5,11v5h14L19,12.93z M17.91,13 c-0.89-0.01-1.74-0.19-2.53-0.51C15.15,12.76,15,13.11,15,13.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 C18,13.32,17.97,13.16,17.91,13z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M14.06,10.42c0.27,0.18,0.44,0.49,0.44,0.83c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1c0-0.51,0.39-0.93,0.88-0.99 c-0.56-0.17-1.07-0.43-1.54-0.76l-7.34,0V13h11l0-2.52C14.9,10.53,14.37,10.47,14.06,10.42z M6.5,12.25c-0.55,0-1-0.45-1-1 s0.45-1,1-1c0.55,0,1,0.45,1,1S7.05,12.25,6.5,12.25z\\\"></path></g><g><path d=\\\"M19,5c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S19,2.79,19,5z M15.5,3h-1v2h1V3z M6.5,12.25c-0.55,0-1-0.45-1-1 s0.45-1,1-1c0.55,0,1,0.45,1,1S7.05,12.25,6.5,12.25z M15.5,10.48l0,2.52h-11V9.5l7.34,0c-0.57-0.4-1.07-0.91-1.45-1.5H5.02 l1-2.5h3.51C9.47,4.99,9.51,4.39,9.59,4H6.02C5.4,4,4.85,4.37,4.62,4.94L3,9l0,6.5C3,15.78,3.22,16,3.5,16h1 C4.78,16,5,15.78,5,15.5v-1h10v1c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5v-5.38C16.53,10.31,16.02,10.43,15.5,10.48z M15.5,6h-1v1h1V6z M14.06,10.42c0.27,0.18,0.44,0.49,0.44,0.83c0,0.55-0.45,1-1,1c-0.55,0-1-0.45-1-1 c0-0.51,0.39-0.93,0.88-0.99C13.46,10.29,13.94,10.4,14.06,10.42z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"u_turn_left\": {\n    \"name\": \"u_turn_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,9v12h-2V9c0-2.21-1.79-4-4-4S8,6.79,8,9v4.17l1.59-1.59L11,13l-4,4l-4-4l1.41-1.41L6,13.17V9c0-3.31,2.69-6,6-6 S18,5.69,18,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.5,7.5C5.5,5.01,7.51,3,10,3s4.5,2.01,4.5,4.5V16H13V7.5c0-1.66-1.34-3-3-3s-3,1.34-3,3l0,2.63l1.19-1.19L9.25,10l-3,3 l-3-3l1.06-1.06l1.19,1.19L5.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"run_circle\": {\n    \"name\": \"run_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13.5,6c0.55,0,1,0.45,1,1 c0,0.55-0.45,1-1,1s-1-0.45-1-1C12.5,6.45,12.95,6,13.5,6z M16,12c-0.7,0-2.01-0.54-2.91-1.76l-0.41,2.35L14,14.03V18h-1v-3.58 l-1.11-1.21l-0.52,2.64L7.6,15.08l0.2-0.98l2.78,0.57l0.96-4.89L10,10.35V12H9V9.65l3.28-1.21c0.49-0.18,1.03,0.06,1.26,0.53 C14.37,10.67,15.59,11,16,11V12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path><path d=\\\"M13.54,8.97c-0.23-0.47-0.76-0.71-1.26-0.53L9,9.65V12h1v-1.65l1.54-0.57l-0.96,4.89L7.8,14.1l-0.2,0.98l3.76,0.77 l0.52-2.64L13,14.42V18h1v-3.97l-1.32-1.44l0.41-2.35C13.99,11.46,15.3,12,16,12v-1C15.59,11,14.37,10.67,13.54,8.97z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"7\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S13.31,4,10,4z M11,5c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 s-1-0.45-1-1C10,5.45,10.45,5,11,5z M13.5,10.62c-0.6,0-1.87-0.38-2.67-1.4l-0.21,1.19L12,11.79V15h-1v-2.79l-1-0.99l-0.42,2.13 l-3.17-0.65l0.2-0.98l2.19,0.45l0.62-3.12L8.5,9.37v1.25h-1V8.67l2.67-0.96c0.46-0.16,0.99,0.01,1.22,0.44 c0.7,1.32,1.77,1.47,2.11,1.47V10.62z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\\\"></path><path d=\\\"M11.39,8.15c-0.23-0.43-0.76-0.6-1.22-0.44L7.5,8.67v1.95h1V9.37l0.92-0.33L8.8,12.16l-2.19-0.45l-0.2,0.98l3.17,0.65 L10,11.21l1,0.99V15h1v-3.21l-1.39-1.38l0.21-1.19c0.81,1.03,2.08,1.4,2.67,1.4v-1C13.16,9.62,12.09,9.46,11.39,8.15z\\\"></path><circle cx=\\\"11\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"electric_bike\": {\n    \"name\": \"electric_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,7h-0.82l-1.7-4.68C16.19,1.53,15.44,1,14.6,1H12v2h2.6l1.46,4h-4.81l-0.36-1H12V4H7v2h1.75l1.82,5H9.9 C9.46,8.77,7.59,7.12,5.25,7.01C2.45,6.87,0,9.2,0,12c0,2.8,2.2,5,5,5c2.46,0,4.45-1.69,4.9-4h4.2c0.44,2.23,2.31,3.88,4.65,3.99 c2.8,0.13,5.25-2.19,5.25-5C24,9.2,21.8,7,19,7z M7.82,13c-0.4,1.17-1.49,2-2.82,2c-1.68,0-3-1.32-3-3s1.32-3,3-3 c1.33,0,2.42,0.83,2.82,2H5v2H7.82z M14.1,11h-1.4l-0.73-2H15C14.56,9.58,14.24,10.25,14.1,11z M19,15c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67C18.94,9.01,18.97,9,19,9c1.68,0,3,1.32,3,3S20.68,15,19,15z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,7h-0.68l-1.58-4.34C13.1,2.26,12.72,2,12.3,2H10v1h2.3l1.46,4H8.75L8.38,6H10V5H6v1h1.32l1.46,4H7.95 C7.7,8.19,6.13,6.86,4.2,7.01c-1.64,0.13-3.01,1.46-3.18,3.1C0.8,12.25,2.41,14,4.5,14c1.79,0,3.21-1.29,3.45-3h4.1 c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,8.75,17.59,7,15.5,7z M6.95,11c-0.23,1.15-1.22,2-2.45,2 C3.1,13,2,11.9,2,10.5S3.1,8,4.5,8c1.23,0,2.23,0.85,2.45,2H4v1H6.95z M12.05,10H9.84L9.11,8h3.92C12.5,8.52,12.16,9.22,12.05,10z M15.5,13c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,8.02,15.4,8,15.5,8 c1.4,0,2.5,1.1,2.5,2.5S16.9,13,15.5,13z\\\"></path><polygon points=\\\"9.5,16 7,16 10.5,18 10.5,17 13,17 9.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"local_hospital\": {\n    \"name\": \"local_hospital\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm2-8.5h3.5V7h3v3.5H17v3h-3.5V17h-3v-3.5H7v-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 5c0-1.1-.9-2-2-2H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5zm-2 14H5V5h14v14zm-8.5-2h3v-3.5H17v-3h-3.5V7h-3v3.5H7v3h3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tire_repair\": {\n    \"name\": \"tire_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,8c-0.55,0-1-0.45-1-1c0-0.28,0.11-0.53,0.29-0.71c0.4-0.4,2.46-1.04,2.46-1.04s-0.64,2.06-1.04,2.46 C19.53,7.89,19.28,8,19,8z M20,13v5c0,1.65-1.35,3-3,3s-3-1.35-3-3v-2c0-0.55-0.45-1-1-1s-1,0.45-1,1v3c0,1.1-0.9,2-2,2H4 c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2v8.17c0.31-0.11,0.65-0.17,1-0.17c1.65,0,3,1.35,3,3v2c0,0.55,0.45,1,1,1 s1-0.45,1-1v-5h-1l0-1.42c-1.77-0.77-3-2.53-3-4.58c0-2.76,2.24-5,5-5s5,2.24,5,5c0,2.05-1.23,3.81-3,4.58L21,13H20z M22,7 c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3S22,8.66,22,7z M10,7L8,9V6.17L9.17,5H4.83L6,6.17V9L4,7v2.17l2,2V14l-2-2v2.17l2,2V19 l-2-2v2h6v-2l-2,2v-2.83l2-2V12l-2,2v-2.83l2-2V7z\\\"></path><path d=\\\"M10,7L8,9V6.17L9.17,5H4.83L6,6.17V9L4,7v2.17l2,2V14l-2-2v2.17l2,2V19l-2-2v2h6v-2l-2,2v-2.83l2-2V12l-2,2 v-2.83l2-2V7z M19,4c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,4,19,4z M19.71,7.71C19.53,7.89,19.28,8,19,8 c-0.55,0-1-0.45-1-1c0-0.28,0.11-0.53,0.29-0.71c0.4-0.4,2.46-1.04,2.46-1.04S20.11,7.31,19.71,7.71z\\\" opacity=\\\".3\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.75,3.5c-1.24,0-2.25,1.01-2.25,2.25C12.5,6.99,13.51,8,14.75,8S17,6.99,17,5.75 C17,4.51,15.99,3.5,14.75,3.5z M15.28,6.28c-0.14,0.14-0.32,0.22-0.53,0.22C14.34,6.5,14,6.16,14,5.75c0-0.21,0.08-0.39,0.22-0.53 C14.52,4.92,16,4.5,16,4.5S15.58,5.98,15.28,6.28z M3.5,15.5V14L5,15.5v-2.12l-1.5-1.5v-1.63l1.5,1.5V9.62l-1.5-1.5V6.5L5,8V5.88 L3.62,4.5h4.26L6.5,5.88V8L8,6.5v1.63l-1.5,1.5v2.12l1.5-1.5v1.63l-1.5,1.5v2.12L8,14v1.5H3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.75,8c-1.24,0-2.25-1.01-2.25-2.25c0-1.24,1.01-2.25,2.25-2.25S17,4.51,17,5.75C17,6.99,15.99,8,14.75,8z M14.75,6.5 C14.34,6.5,14,6.16,14,5.75c0-0.21,0.08-0.39,0.22-0.53C14.52,4.92,16,4.5,16,4.5s-0.42,1.48-0.72,1.78 C15.14,6.42,14.96,6.5,14.75,6.5z M3.5,15.5V14L5,15.5v-2.12l-1.5-1.5v-1.63l1.5,1.5V9.62l-1.5-1.5V6.5L5,8V5.88L3.62,4.5h4.26 L6.5,5.88V8L8,6.5v1.63l-1.5,1.5v2.12l1.5-1.5v1.63l-1.5,1.5v2.12L8,14v1.5H3.5z M15.5,10h1l0-0.93c1.19-0.63,2-1.88,2-3.32 C18.5,3.68,16.82,2,14.75,2S11,3.68,11,5.75c0,1.44,0.81,2.69,2,3.32L13,10h1v4.75c0,0.41-0.34,0.75-0.75,0.75 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.24-1.01-2.25-2.25-2.25c-0.26,0-0.52,0.05-0.75,0.13l0-4.1l0-2.52C9.5,3.67,8.83,3,8,3H3.5 C2.67,3,2,3.67,2,4.5v11C2,16.33,2.67,17,3.5,17H8c0.83,0,1.5-0.67,1.5-1.5v-2.25c0-0.41,0.34-0.75,0.75-0.75S11,12.84,11,13.25 v1.5c0,1.24,1.01,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25V10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"egg\": {\n    \"name\": \"egg\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,5c-1.93,0-5,4.91-5,9c0,2.76,2.24,5,5,5s5-2.24,5-5C17,9.91,13.93,5,12,5z M13,18c-3.01,0-5-2-5-5 c0-0.55,0.45-1,1-1s1,0.45,1,1c0,2.92,2.42,3,3,3c0.55,0,1,0.45,1,1S13.55,18,13,18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,3C8.5,3,5,9.33,5,14c0,3.87,3.13,7,7,7c3.87,0,7-3.13,7-7C19,9.33,15.5,3,12,3z M12,19c-2.76,0-5-2.24-5-5 c0-4.09,3.07-9,5-9s5,4.91,5,9C17,16.76,14.76,19,12,19z\\\"></path><path d=\\\"M13,16c-0.58,0-3-0.08-3-3c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,3,1.99,5,5,5c0.55,0,1-0.45,1-1S13.55,16,13,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4.5c-1.54,0-4,3.85-4,7.06c0,2.17,1.79,3.94,4,3.94s4-1.77,4-3.94C14,8.35,11.54,4.5,10,4.5z M10.25,14.5C8.37,14.5,7,12.92,7,10.75C7,10.34,7.34,10,7.75,10s0.75,0.34,0.75,0.75c0,1.12,0.54,2.25,1.75,2.25 c0.41,0,0.75,0.34,0.75,0.75S10.66,14.5,10.25,14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-2.75,0-5.5,4.93-5.5,8.56C4.5,14.56,6.96,17,10,17c3.04,0,5.5-2.44,5.5-5.44C15.5,7.93,12.75,3,10,3z M10,15.5 c-2.21,0-4-1.77-4-3.94c0-3.2,2.46-7.06,4-7.06c1.54,0,4,3.85,4,7.06C14,13.73,12.21,15.5,10,15.5z\\\"></path><path d=\\\"M10.25,13c-1.21,0-1.75-1.13-1.75-2.25C8.5,10.34,8.16,10,7.75,10S7,10.34,7,10.75c0,2.17,1.37,3.75,3.25,3.75 c0.41,0,0.75-0.34,0.75-0.75S10.66,13,10.25,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_pizza\": {\n    \"name\": \"local_pizza\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.51 6.36L12 17.92l6.49-11.55C16.68 4.85 14.38 4 12 4s-4.68.85-6.49 2.36zM9 8.5c-.83 0-1.5-.67-1.5-1.5S8.17 5.5 9 5.5s1.5.67 1.5 1.5S9.82 8.5 9 8.5zm4.5 4.5c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zm0 15.92L5.51 6.36C7.32 4.85 9.62 4 12 4s4.68.85 6.49 2.36L12 17.92zM9 5.5c-.83 0-1.5.67-1.5 1.5S8.17 8.5 9 8.5s1.5-.67 1.5-1.5S9.82 5.5 9 5.5zm1.5 7.5c0 .83.67 1.5 1.5 1.5.82 0 1.5-.67 1.5-1.5s-.68-1.5-1.5-1.5-1.5.67-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"liquor\": {\n    \"name\": \"liquor\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"16\\\" y=\\\"4\\\"></rect><path d=\\\"M6,15c0.55,0,1-0.45,1-1v-1H5v1C5,14.55,5.45,15,6,15z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"7\\\" x=\\\"13\\\" y=\\\"14\\\"></rect><path d=\\\"M3,14c0,1.3,0.84,2.4,2,2.82V20H3v2h6v-2H7v-3.18C8.16,16.4,9,15.3,9,14V6H3V14z M5,8h2v3H5V8z M5,13h2v1 c0,0.55-0.45,1-1,1s-1-0.45-1-1V13z\\\"></path><path d=\\\"M20.64,8.54l-0.96-0.32C19.27,8.08,19,7.7,19,7.27V3c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4.28 c0,0.43-0.27,0.81-0.68,0.95l-0.96,0.32C11.55,8.83,11,9.59,11,10.45V20c0,1.1,0.9,2,2,2h7c1.1,0,2-0.9,2-2v-9.56 C22,9.58,21.45,8.82,20.64,8.54z M16,4h1v1h-1V4z M20,20h-7v-2h7V20z M20,16h-7v-2h7V16z M20,12h-7v-1.56l0.95-0.32 C15.18,9.72,16,8.57,16,7.28V7h1v0.28c0,1.29,0.82,2.44,2.05,2.85L20,10.44V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M5.2,12.44l0.3,0.09l0.3-0.09c0.42-0.13,0.7-0.51,0.7-0.94v-1h-2v1C4.5,11.93,4.78,12.31,5.2,12.44z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"3.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"10.5\\\" y=\\\"11.5\\\"></rect><path d=\\\"M3,11.5c0,1.12,0.74,2.05,1.75,2.37v2.63H3V18h5v-1.5H6.25v-2.63C7.26,13.55,8,12.62,8,11.5V5H3V11.5z M4.5,6.5h2V9h-2 V6.5z M4.5,10.5h2v1c0,0.43-0.28,0.81-0.7,0.94l-0.3,0.09l-0.3-0.09c-0.42-0.13-0.7-0.51-0.7-0.94V10.5z\\\"></path><path d=\\\"M17.06,7.62l-0.61-0.25C15.87,7.15,15.5,6.6,15.5,5.98V3c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v2.98 c0,0.61-0.37,1.17-0.94,1.39L9.94,7.62C9.37,7.85,9,8.4,9,9.02v7.48c0,0.83,0.67,1.5,1.5,1.5h6c0.83,0,1.5-0.67,1.5-1.5V9.02 C18,8.4,17.63,7.85,17.06,7.62z M13,3.5h1v1h-1V3.5z M16.5,16.5h-6V15h6V16.5z M16.5,13.5h-6l0-2h6V13.5z M16.5,10h-6V9.02 l0.61-0.25C12.25,8.31,12.99,7.23,13,6h1c0.01,1.23,0.74,2.31,1.88,2.77l0.61,0.25V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_taxi\": {\n    \"name\": \"local_taxi\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.12 12l-.12.34V17h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99C18.72 5.42 18.16 5 17.5 5zM6.85 7h10.29l1.04 3H5.81l1.04-3zM19 17H5v-4.66l.12-.34h13.77l.11.34V17z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"fire_truck\": {\n    \"name\": \"fire_truck\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,16h1.78c0.55-0.61,1.34-1,2.22-1s1.67,0.39,2.22,1H12v-3H3V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,16h0.78c0.55-0.61,1.34-1,2.22-1s1.67,0.39,2.22,1H21v-3h-7V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22.9,10.69l-1.44-4.32C21.18,5.55,20.42,5,19.56,5H19V4c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v1h-2c-1.1,0-2,0.9-2,2 v4H1v5c0,1.1,0.9,2,2,2h1c0,1.66,1.34,3,3,3s3-1.34,3-3h4c0,1.66,1.34,3,3,3s3-1.34,3-3h3v-6.68C23,11.11,22.97,10.9,22.9,10.69z M7,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,19,7,19z M12,16H9.22C8.67,15.39,7.89,15,7,15s-1.67,0.39-2.22,1H3v-3h9V16 z M14,7h5.56l1.33,4H14V7z M17,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,19,17,19z M21,16h-1.78 c-0.55-0.61-1.34-1-2.22-1s-1.67,0.39-2.22,1H14v-3h7V16z\\\"></path><path d=\\\"M11,8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5z M5.25,8.5H3.5v-2h1.75V8.5z M8.5,8.5H6.75v-2H8.5V8.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M2.5,13.5h0.71C3.6,12.62,4.48,12,5.5,12c1.02,0,1.9,0.62,2.29,1.5H10V11H2.5V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.5,13.5h0.71c0.39-0.88,1.26-1.5,2.29-1.5c1.02,0,1.9,0.62,2.29,1.5h0.71V11h-6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.84,8.68l-1.43-2.85C17.16,5.32,16.64,5,16.07,5H15.5V3.5C15.5,3.22,15.28,3,15,3h-1.5C13.22,3,13,3.22,13,3.5V5h-1.5 C10.67,5,10,5.67,10,6.5v3H1v4C1,14.33,1.67,15,2.5,15h0.55c0.23,1.14,1.24,2,2.45,2c1.21,0,2.22-0.86,2.45-2h4.1 c0.23,1.14,1.24,2,2.45,2c1.21,0,2.22-0.86,2.45-2H19V9.35C19,9.12,18.95,8.89,18.84,8.68z M5.5,15.5c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S6.05,15.5,5.5,15.5z M10,13.5H7.79C7.4,12.62,6.52,12,5.5,12c-1.02,0-1.9,0.62-2.29,1.5H2.5V11H10V13.5z M14.5,15.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.05,15.5,14.5,15.5z M17.5,13.5h-0.71C16.4,12.62,15.52,12,14.5,12 c-1.02,0-1.9,0.62-2.29,1.5H11.5V11h6V13.5z M17.5,9.5h-6v-3h4.57h0l1.43,2.85V9.5z\\\"></path><path d=\\\"M9,7.5H8V6h1V5H1v1h1v1.5H1v1h8V7.5z M4.5,7.5H3V6h1.5V7.5z M7,7.5H5.5V6H7V7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_car\": {\n    \"name\": \"directions_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17h14v-5H5v5zm11.5-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-9 0c.83 0 1.5.67 1.5 1.5S8.33 16 7.5 16 6 15.33 6 14.5 6.67 13 7.5 13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"ramp_right\": {\n    \"name\": \"ramp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,21h2V6.83l1.59,1.59L16,7l-4-4L8,7l1.41,1.41L11,6.83V9c0,4.27-4.03,7.13-6,8.27l1.46,1.46 C8.37,17.56,9.9,16.19,11,14.7L11,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,5.87L8.06,7.06L7,6l3-3l3,3l-1.06,1.06l-1.19-1.19l0,11.13h-1.5l0-4.99l0-0.01c-1.02,1.39-2.35,2.43-3.39,3.09 L4.77,14c1.6-0.96,4.48-3.18,4.48-6.3L9.25,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mosque\": {\n    \"name\": \"mosque\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.91,9h4.18C15.14,9,16,8.14,16,7.09c0-0.64-0.32-1.23-0.85-1.59L12,3.4L8.85,5.5C8.32,5.86,8,6.45,8,7.09 C8,8.14,8.86,9,9.91,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,11H7v4H3v4h6v-2c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3v2h6v-4h-4V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22,4c0,0-2,1.9-2,3c0,0.74,0.4,1.38,1,1.72V13h-2v-2c0-0.95-0.66-1.74-1.55-1.94C17.79,8.48,18,7.81,18,7.09 c0-1.31-0.65-2.53-1.74-3.25L12,1L7.74,3.84C6.65,4.56,6,5.78,6,7.09c0,0.72,0.21,1.39,0.55,1.96C5.66,9.26,5,10.05,5,11v2H3V8.72 C3.6,8.38,4,7.74,4,7c0-1.1-2-3-2-3S0,5.9,0,7c0,0.74,0.4,1.38,1,1.72V21h10v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4h10V8.72 c0.6-0.35,1-0.98,1-1.72C24,5.9,22,4,22,4z M8.85,5.5L12,3.4l3.15,2.1C15.68,5.86,16,6.45,16,7.09C16,8.14,15.14,9,14.09,9H9.91 C8.86,9,8,8.14,8,7.09C8,6.45,8.32,5.86,8.85,5.5z M21,19h-6v-2c0-1.65-1.35-3-3-3c-1.65,0-3,1.35-3,3v2H3v-4h4v-4h10v4h4V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.48,8h3.05c1.09-0.02,1.97-0.91,1.97-2.01c0-0.7-0.37-1.37-0.98-1.73L10,2.75L7.48,4.26 C6.87,4.62,6.5,5.29,6.5,5.99C6.5,7.09,7.38,7.98,8.48,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,9.5h-9v3h-3v3h5v-2c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v2h5v-3h-3V9.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.25,3c0,0-1.5,1.67-1.5,2.5c0,0.55,0.3,1.03,0.75,1.29V11H16V9.5C16,8.67,15.33,8,14.5,8h-0.14 C14.76,7.43,15,6.74,15,5.99c0-1.23-0.65-2.38-1.71-3.01L10,1L6.71,2.98C5.65,3.61,5,4.76,5,5.99C5,6.74,5.24,7.43,5.64,8H5.5 C4.67,8,4,8.67,4,9.5V11H2.5V6.79C2.95,6.53,3.25,6.05,3.25,5.5c0-0.83-1.5-2.5-1.5-2.5s-1.5,1.67-1.5,2.5 c0,0.55,0.3,1.03,0.75,1.29V17h8v-3.5c0-0.55,0.45-1,1-1s1,0.45,1,1V17h8V6.79c0.45-0.26,0.75-0.74,0.75-1.29 C19.75,4.67,18.25,3,18.25,3z M7.48,4.26L10,2.75l2.52,1.51c0.6,0.36,0.98,1.02,0.98,1.73c0,1.1-0.88,1.99-1.97,2.01H8.48 C7.38,7.98,6.5,7.09,6.5,5.99C6.5,5.29,6.87,4.62,7.48,4.26z M17.5,15.5h-5v-2c0-1.38-1.12-2.5-2.5-2.5s-2.5,1.12-2.5,2.5v2h-5v-3 h3v-3h9v3h3V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electrical_services\": {\n    \"name\": \"electrical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,15h-2v-2h2c0.55,0,1,0.45,1,1v0C21,14.55,20.55,15,20,15z\\\"></path><path d=\\\"M20,19h-2v-2h2c0.55,0,1,0.45,1,1v0C21,18.55,20.55,19,20,19z\\\"></path><path d=\\\"M14,12L14,12L14,12c-1.1,0-2,0.9-2,2v0h-2v4h2v0c0,1.1,0.9,2,2,2h0h3l0,0v-8H14z\\\"></path><path d=\\\"M4,5L4,5c0,0.55,0.45,1,1,1h3.5C9.33,6,10,6.67,10,7.5v0C10,8.33,9.33,9,8.5,9H7c-2.21,0-4,1.79-4,4v0c0,2.21,1.79,4,4,4h2 v-2H7c-1.1,0-2-0.9-2-2v0c0-1.1,0.9-2,2-2h1.5c1.93,0,3.5-1.57,3.5-3.5v0C12,5.57,10.43,4,8.5,4H5C4.45,4,4,4.45,4,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16,11.5c0-0.28-0.22-0.5-0.5-0.5H14v1h1.5C15.78,12,16,11.78,16,11.5z\\\"></path><path d=\\\"M15.5,14H14v1h1.5c0.28,0,0.5-0.22,0.5-0.5C16,14.22,15.78,14,15.5,14z\\\"></path><path d=\\\"M9,11v1H8v2h1l0,1c0,0.55,0.45,1,1,1h3v-6h-3C9.45,10,9,10.45,9,11z\\\"></path><path d=\\\"M6.75,9H7.5C8.88,9,10,7.88,10,6.5C10,5.12,8.88,4,7.5,4h-2C5.22,4,5,4.22,5,4.5C5,4.78,5.22,5,5.5,5h2 C8.33,5,9,5.67,9,6.5S8.33,8,7.5,8H6.75C5.23,8,4,9.23,4,10.75s1.23,2.75,2.75,2.75H7v-1H6.75C5.78,12.5,5,11.72,5,10.75 S5.78,9,6.75,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"satellite\": {\n    \"name\": \"satellite\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zM6 6h2.57c0 1.42-1.15 2.58-2.57 2.58V6zm0 4.29c2.37 0 4.28-1.93 4.28-4.29H12c0 3.31-2.68 6-6 6v-1.71zm3 2.86l2.14 2.58 3-3.86L18 17H6l3-3.85z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM8.57 6H6v2.58c1.42 0 2.57-1.16 2.57-2.58zM12 6h-1.72c0 2.36-1.91 4.29-4.28 4.29V12c3.32 0 6-2.69 6-6zm2.14 5.86l-3 3.87L9 13.15 6 17h12z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_transit\": {\n    \"name\": \"directions_transit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM7.5 17h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5c0 .83.67 1.5 1.5 1.5zm8-4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 6v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4-4 0-8 .5-8 4zm14 4h-5V7h5v3zm-6-6c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm0 5h12v3.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"directions_bike\": {\n    \"name\": \"directions_bike\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 22c2.8 0 5-2.2 5-5s-2.2-5-5-5-5 2.2-5 5 2.2 5 5 5zm0-8.5c1.9 0 3.5 1.6 3.5 3.5S6.9 20.5 5 20.5 1.5 18.9 1.5 17s1.6-3.5 3.5-3.5zm2.8-2.3L11 14v5h2v-6.2l-2.2-2.3 2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"transit_enterexit\": {\n    \"name\": \"transit_enterexit\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.98 6L9 12.77V8H6v10h10v-3h-4.85L18 8.03z\\\"></path>\"\n      }\n    }\n  },\n  \"fire_hydrant_alt\": {\n    \"name\": \"fire_hydrant_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-1.47,0-2.75,0.81-3.44,2h6.89C14.75,4.81,13.47,4,12,4z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"14\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,8H8v5H5v2h3v5h8v-5h3v-2h-3V8z M12,17.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.5 S13.93,17.5,12,17.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,10.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.93,10.5,12,10.5z M12,15.5 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,15.5,12,15.5z\\\"></path><path d=\\\"M19,11h-1V8h2V6h-2.35C16.83,3.67,14.61,2,12,2S7.17,3.67,6.35,6H4v2h2v3H5c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v3H4v2 h16v-2h-2v-3h1c1.1,0,2-0.9,2-2v-2C21,11.9,20.1,11,19,11z M12,4c1.47,0,2.75,0.81,3.44,2H8.56C9.25,4.81,10.53,4,12,4z M19,15h-3 v5H8v-5H5v-2h3V8h8v5h3V15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.5c-1.39,0-2.59,0.82-3.15,2h6.3C12.59,4.32,11.39,3.5,10,3.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"11.5\\\" opacity=\\\".3\\\" r=\\\"1.25\\\"></circle><path d=\\\"M13.5,7h-7v3.5h-2v2h2v4h7v-4h2v-2h-2V7z M10,14.25c-1.52,0-2.75-1.23-2.75-2.75S8.48,8.75,10,8.75 s2.75,1.23,2.75,2.75S11.52,14.25,10,14.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,8.75c-1.52,0-2.75,1.23-2.75,2.75s1.23,2.75,2.75,2.75s2.75-1.23,2.75-2.75S11.52,8.75,10,8.75z M10,12.75 c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S10.69,12.75,10,12.75z\\\"></path><path d=\\\"M15.5,9H15V7h1V5.5h-1.25C14.11,3.48,12.24,2,10,2S5.89,3.48,5.25,5.5H4V7h1v2H4.5C3.67,9,3,9.67,3,10.5v2 C3,13.33,3.67,14,4.5,14H5v2.5H4V18h12v-1.5h-1V14h0.5c0.83,0,1.5-0.67,1.5-1.5v-2C17,9.67,16.33,9,15.5,9z M10,3.5 c1.39,0,2.59,0.82,3.15,2h-6.3C7.41,4.32,8.61,3.5,10,3.5z M15.5,12.5h-2v4h-7v-4h-2v-2h2V7h7v3.5h2V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"minor_crash\": {\n    \"name\": \"minor_crash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,15v5h14v-5H5z M7.5,19C6.67,19,6,18.33,6,17.5S6.67,16,7.5,16S9,16.67,9,17.5S8.33,19,7.5,19z M16.5,19 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,19,16.5,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.41,5L8,6.41l-3-3L6.41,2L9.41,5z M19,3.41L17.59,2l-3,3L16,6.41L19,3.41z M13,0h-2v5h2V0z M21,15v8c0,0.55-0.45,1-1,1 h-1c-0.55,0-1-0.45-1-1v-1H6v1c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-8l2.08-5.99C5.29,8.42,5.84,8,6.5,8h11 c0.66,0,1.22,0.42,1.42,1.01L21,15z M5.81,13h12.38l-1.04-3H6.85L5.81,13z M19,15H5v5h14V15z M7.5,19C8.33,19,9,18.33,9,17.5 S8.33,16,7.5,16S6,16.67,6,17.5S6.67,19,7.5,19z M16.5,19c0.83,0,1.5-0.67,1.5-1.5S17.33,16,16.5,16S15,16.67,15,17.5 S15.67,19,16.5,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.5,12.5V16h11v-3.5H4.5z M6.5,15.25c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1 S7.05,15.25,6.5,15.25z M13.5,15.25c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1S14.05,15.25,13.5,15.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,12v6.5c0,0.28-0.22,0.5-0.5,0.5h-1c-0.28,0-0.5-0.22-0.5-0.5v-1H5v1C5,18.78,4.78,19,4.5,19h-1C3.22,19,3,18.78,3,18.5 L3,12l1.62-4.06C4.85,7.37,5.4,7,6.02,7h7.97c0.61,0,1.16,0.37,1.39,0.94L17,12z M6.02,8.5l-1,2.5h9.97l-1-2.5H6.02z M15.5,16v-3.5 h-11V16H15.5z M6.5,13.25c-0.55,0-1,0.45-1,1s0.45,1,1,1c0.55,0,1-0.45,1-1S7.05,13.25,6.5,13.25z M13.5,13.25c-0.55,0-1,0.45-1,1 s0.45,1,1,1c0.55,0,1-0.45,1-1S14.05,13.25,13.5,13.25z M6.95,5.75L8,4.7L5.65,2.35L4.6,3.4L6.95,5.75z M15.4,3.4l-1.05-1.05 L12,4.7l1.05,1.05L15.4,3.4z M10.75,4.7h-1.5V1h1.5V4.7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_library\": {\n    \"name\": \"local_library\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 17.13v-6.95c-2.1.38-4.05 1.35-5.64 2.83L12 14.28l-1.36-1.27C9.05 11.53 7.1 10.56 5 10.18v6.95c2.53.34 4.94 1.3 7 2.83 2.07-1.52 4.47-2.49 7-2.83z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"5\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M16 5c0-2.21-1.79-4-4-4S8 2.79 8 5s1.79 4 4 4 4-1.79 4-4zm-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM3 19c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55C9.64 9.35 6.48 8 3 8v11zm2-8.82c2.1.38 4.05 1.35 5.64 2.83L12 14.28l1.36-1.27c1.59-1.48 3.54-2.45 5.64-2.83v6.95c-2.53.34-4.93 1.3-7 2.82-2.06-1.52-4.47-2.49-7-2.83v-6.94z\\\"></path>\"\n      }\n    }\n  },\n  \"local_parking\": {\n    \"name\": \"local_parking\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"factory\": {\n    \"name\": \"factory\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,12l0-2.05l-5,2V10l-3,1.32V20h16v-8H12z M9,18H7v-4h2V18z M13,18h-2v-4h2V18z M17,18h-2v-4h2V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22,22H2V10l7-3v2l5-2l0,3h3l1-8h3l1,8V22z M12,9.95l-5,2V10l-3,1.32V20h16v-8h-8L12,9.95z M11,18h2v-4h-2V18z M7,18h2v-4 H7V18z M17,14h-2v4h2V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,10v6.5h-13V9.47L6,8.33v1.71l4-1.75V10H16.5z M14,11.5h-1.5V15H14V11.5z M7.5,11.5H6V15h1.5V11.5z M10.75,11.5h-1.5V15h1.5V11.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,10v6.5h-13V9.47L6,8.33v1.71l4-1.75V10H16.5z M15,2l-1,6.5h-2.5V6l-4,1.75V6L2,8.5V18h16V8.5L17,2H15z M14,11.5h-1.5 V15H14V11.5z M7.5,11.5H6V15h1.5V11.5z M10.75,11.5h-1.5V15h1.5V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"person_pin_circle\": {\n    \"name\": \"person_pin_circle\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M12 11c1.33 0 4 .67 4 2v.16c-.97 1.12-2.4 1.84-4 1.84s-3.03-.72-4-1.84V13c0-1.33 2.67-2 4-2zm0-1c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 .2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"volunteer_activism\": {\n    \"name\": \"volunteer_activism\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"7\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"13\\\"></rect><path d=\\\"M16,10.29c1.96-1.82,4-3.88,4-4.99C20,4.56,19.44,4,18.7,4c-0.44,0-0.89,0.21-1.18,0.55L16,6.34l-1.52-1.79 C14.19,4.21,13.74,4,13.3,4C12.56,4,12,4.56,12,5.3C12,6.41,14.04,8.47,16,10.29z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,18h-5.35c-0.54,0-1.07-0.09-1.58-0.26l-2.38-0.79l0.63-1.9l2.38,0.79c0.31,0.1,0.63,0.15,0.95,0.15H15 c0-0.37-0.23-0.7-0.57-0.83L8.61,13H7v5.48l6.97,1.94l5.93-1.85C19.74,18.23,19.39,18,19,18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,13c3.09-2.81,6-5.44,6-7.7C22,3.45,20.55,2,18.7,2c-1.04,0-2.05,0.49-2.7,1.25C15.35,2.49,14.34,2,13.3,2 C11.45,2,10,3.45,10,5.3C10,7.56,12.91,10.19,16,13z M13.3,4c0.44,0,0.89,0.21,1.18,0.55L16,6.34l1.52-1.79 C17.81,4.21,18.26,4,18.7,4C19.44,4,20,4.56,20,5.3c0,1.12-2.04,3.17-4,4.99c-1.96-1.82-4-3.88-4-4.99C12,4.56,12.56,4,13.3,4z\\\"></path><path d=\\\"M19,16h-2c0-1.2-0.75-2.28-1.87-2.7L8.97,11H1v11h6v-1.44l7,1.94l8-2.5v-1C22,17.34,20.66,16,19,16z M5,20H3v-7h2V20z M13.97,20.41L7,18.48V13h1.61l5.82,2.17C14.77,15.3,15,15.63,15,16h-1.35c-0.32,0-0.64-0.05-0.95-0.15l-2.38-0.79l-0.63,1.9 l2.38,0.79c0.51,0.17,1.04,0.26,1.58,0.26H19c0.39,0,0.74,0.23,0.9,0.56L13.97,20.41z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.25,8.48c1.58-1.42,3.25-2.97,3.25-3.87c0-0.63-0.48-1.11-1.11-1.11c-0.36,0-0.76,0.18-1,0.46L13.25,5.3 l-1.14-1.33c-0.24-0.28-0.63-0.46-1-0.46C10.48,3.5,10,3.98,10,4.61C10,5.5,11.67,7.06,13.25,8.48z\\\" opacity=\\\".3\\\"></path><polygon opacity=\\\".3\\\" points=\\\"2.5,16.5 4.5,16.5 4.5,16.36 4.5,10.5 2.5,10.5\\\"></polygon><path d=\\\"M15,14.5H9.74l-2-0.8l0.53-1.4l1.87,0.7h2.36c0-0.26-0.17-0.5-0.42-0.59L6.74,10.5H6v4.75l5.5,1.68 l4.89-1.5C16.16,14.88,15.62,14.5,15,14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.25,10.5C15.7,8.28,18,6.41,18,4.61C18,3.15,16.85,2,15.39,2c-0.82,0-1.62,0.39-2.14,0.99C12.74,2.39,11.94,2,11.11,2 C9.65,2,8.5,3.15,8.5,4.61C8.5,6.4,10.8,8.28,13.25,10.5z M11.11,3.5c0.36,0,0.76,0.18,1,0.46l1.14,1.33l1.14-1.33 c0.24-0.28,0.63-0.46,1-0.46c0.63,0,1.11,0.48,1.11,1.11c0,0.9-1.67,2.45-3.25,3.87C11.67,7.06,10,5.5,10,4.61 C10,3.98,10.48,3.5,11.11,3.5z\\\"></path><path d=\\\"M15,13h-1c0-0.9-0.57-1.7-1.41-2L7,9H1v9h5v-1.18l5.5,1.68l6.5-2V16C18,14.34,16.66,13,15,13z M4.5,16.36v0.14h-2v-6h2 V16.36z M11.5,16.93L6,15.25V10.5h0.74l5.34,1.91c0.25,0.09,0.42,0.33,0.42,0.59h-2.36l-1.87-0.7l-0.53,1.4l2,0.8H15 c0.62,0,1.16,0.38,1.39,0.93L11.5,16.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bakery_dining\": {\n    \"name\": \"bakery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M7.6,8.67l-2.01,0.8c-0.22,0.09-0.34,0.31-0.31,0.54l2.4,5.98h1.23l-0.62-6.9C8.25,8.75,7.91,8.54,7.6,8.67 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.07,16.1c-0.27,0.53,0.29,1.09,0.82,0.83l1.68-0.84l-1.08-2.71L3.07,16.1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.36,6.99h-2.71c-0.27,0-0.53,0.23-0.5,0.54l0.77,8.45h2.17l0.77-8.45C13.88,7.22,13.63,6.99,13.36,6.99z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.41,9.47l-2.01-0.8c-0.31-0.12-0.65,0.09-0.68,0.42l-0.62,6.9h1.23l2.4-5.98 C18.75,9.78,18.63,9.56,18.41,9.47z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.52,13.39l-1.08,2.7l1.68,0.84c0.52,0.26,1.09-0.3,0.82-0.83L19.52,13.39z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.5,10.94c0.13-0.32,0.1-0.23,0.15-0.39c0.3-1.21-0.34-2.47-1.5-2.93l-2.01-0.8c-0.46-0.18-0.95-0.21-1.41-0.12 c-0.11-0.33-0.29-0.63-0.52-0.89C14.73,5.29,14.06,5,13.36,5h-2.71C9.94,5,9.27,5.29,8.8,5.81C8.56,6.07,8.38,6.37,8.27,6.69 C7.81,6.6,7.32,6.63,6.86,6.81l-2.01,0.8c-1.16,0.46-1.8,1.72-1.5,2.93l0.15,0.38C1.1,15.55,1,15.55,1,16.38 c0,0.91,0.46,1.74,1.24,2.22c1.42,0.88,2.49,0.14,4-0.61h11.53c1.52,0.76,1.86,1.01,2.63,1.01c1,0,2.61-0.77,2.61-2.61 C23,15.54,22.88,15.51,20.5,10.94z M3.88,16.93c-0.53,0.26-1.09-0.3-0.82-0.83l1.41-2.72l1.08,2.71L3.88,16.93z M7.68,15.99 l-2.4-5.98C5.25,9.78,5.37,9.56,5.59,9.47l2.01-0.8c0.31-0.12,0.65,0.08,0.68,0.42l0.62,6.9H7.68z M13.09,15.99h-2.17l-0.77-8.45 c-0.03-0.31,0.23-0.54,0.5-0.54h2.71c0.27,0,0.53,0.23,0.5,0.54L13.09,15.99z M16.32,15.99h-1.23l0.62-6.9 c0.03-0.33,0.37-0.54,0.68-0.42l2.01,0.8c0.22,0.09,0.34,0.31,0.31,0.54L16.32,15.99z M20.12,16.93l-1.68-0.84l1.08-2.7l1.41,2.71 C21.21,16.63,20.64,17.19,20.12,16.93z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.35,7.15L4.69,7.82c-0.22,0.09-0.34,0.32-0.3,0.55l2,5.04h1.15L7.01,7.57C6.98,7.24,6.65,7.03,6.35,7.15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.5,13.66c0,0.31,0.34,0.78,0.84,0.53l1.45-0.73l-0.98-2.48C2.45,13.61,2.5,13.45,2.5,13.66z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.12,5.75H8.88c-0.27,0-0.51,0.23-0.49,0.55l0.64,7.12h1.93l0.64-7.12C11.63,5.98,11.39,5.75,11.12,5.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.2,10.98l-0.98,2.48l1.45,0.73c0.5,0.25,1.03-0.3,0.77-0.81L16.2,10.98z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.32,7.82l-1.66-0.67c-0.31-0.12-0.64,0.09-0.66,0.42l-0.52,5.84h1.15l2-5.04 C15.66,8.14,15.53,7.91,15.32,7.82z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.93,9.12c0.12-0.3,0.09-0.23,0.13-0.35c0.24-0.96-0.27-1.97-1.19-2.34l-1.66-0.67c-0.39-0.16-0.8-0.18-1.2-0.08 c-0.09-0.29-0.23-0.56-0.44-0.78c-0.38-0.41-0.91-0.64-1.46-0.64H8.88c-0.55,0-1.09,0.23-1.46,0.64c-0.21,0.23-0.35,0.5-0.44,0.79 C6.59,5.58,6.17,5.6,5.78,5.76L4.12,6.43C3.21,6.8,2.7,7.81,2.94,8.77l0.14,0.35C1.06,13.03,1,13,1,13.66 c0,1.58,1.65,2.56,3.01,1.87l1.22-0.61h9.54l1.22,0.61c1.38,0.7,3.01-0.31,3.01-1.87C19,12.99,18.93,13.01,16.93,9.12z M3.34,14.19c-0.49,0.25-0.84-0.22-0.84-0.53c0-0.2-0.05-0.05,1.31-2.69l0.98,2.48L3.34,14.19z M6.38,13.41l-2-5.04 c-0.04-0.23,0.09-0.46,0.3-0.55l1.66-0.67c0.31-0.12,0.64,0.09,0.66,0.42l0.52,5.84H6.38z M10.96,13.41H9.04L8.39,6.29 C8.37,5.98,8.61,5.75,8.88,5.75h2.24c0.27,0,0.51,0.23,0.49,0.54L10.96,13.41z M13.62,13.41h-1.15l0.52-5.84 c0.03-0.33,0.36-0.54,0.66-0.42l1.66,0.67c0.22,0.09,0.34,0.32,0.3,0.55L13.62,13.41z M16.66,14.19l-1.45-0.73l0.98-2.48l1.24,2.4 C17.7,13.89,17.17,14.44,16.66,14.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_road\": {\n    \"name\": \"add_road\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20,18 20,15 18,15 18,18 15,18 15,20 18,20 18,23 20,23 20,20 23,20 23,18\\\"></polygon><rect height=\\\"9\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"4\\\"></rect><rect height=\\\"16\\\" width=\\\"2\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"12\\\" width=\\\"1\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"7\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"4\\\"></rect><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"14\\\"></rect><polygon points=\\\"18,15 16,15 16,13 15,13 15,15 13,15 13,16 15,16 15,18 16,18 16,16 18,16\\\"></polygon><rect height=\\\"2\\\" width=\\\"1\\\" x=\\\"9.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"electric_scooter\": {\n    \"name\": \"electric_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.82,16H15v-1c0-2.21,1.79-4,4-4h0.74l-1.9-8.44C17.63,1.65,16.82,1,15.89,1H12v2h3.89l1.4,6.25c0,0-0.01,0-0.01,0 c-2.16,0.65-3.81,2.48-4.19,4.75H7.82c-0.48-1.34-1.86-2.24-3.42-1.94c-1.18,0.23-2.13,1.2-2.35,2.38C1.7,16.34,3.16,18,5,18 C6.3,18,7.4,17.16,7.82,16z M5,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,16,5,16z\\\"></path><path d=\\\"M19,12c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,12,19,12z M19,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,16,19,16z\\\"></path><polygon points=\\\"11,20 7,20 13,23 13,21 17,21 11,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S15.55,13,15,13z\\\"></path><path d=\\\"M12,11.99C12,10.34,13.34,9,14.99,9l0.24,0l-1.2-5.22C13.93,3.32,13.52,3,13.05,3H10v1h3.05l0.95,4.14 c-1.57,0.4-2.75,1.72-2.96,3.36H6.93c-0.26-1.01-1.29-1.72-2.44-1.44c-0.71,0.18-1.29,0.78-1.44,1.5C2.77,12.86,3.75,14,5,14 c0.93,0,1.71-0.64,1.93-1.5H12V11.99z M5,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S5.55,13,5,13z\\\"></path><polygon points=\\\"9.5,15 7,15 10.5,17 10.5,16 13,16 9.5,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"u_turn_right\": {\n    \"name\": \"u_turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,9v12h2V9c0-2.21,1.79-4,4-4s4,1.79,4,4v4.17l-1.59-1.59L13,13l4,4l4-4l-1.41-1.41L18,13.17V9c0-3.31-2.69-6-6-6 S6,5.69,6,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.5,7.5C14.5,5.01,12.49,3,10,3S5.5,5.01,5.5,7.5V16H7l0-8.5c0-1.66,1.34-3,3-3s3,1.34,3,3l0,2.63l-1.19-1.19L10.75,10 l3,3l3-3l-1.06-1.06l-1.19,1.19L14.5,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"beenhere\": {\n    \"name\": \"beenhere\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5v12.93l7 4.66 7-4.67V3zm-9 13l-4-4 1.41-1.41 2.58 2.58 6.59-6.59L18 8l-8 8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-7 19.6l-7-4.66V3h14v12.93l-7 4.67zm-2.01-7.42l-2.58-2.59L6 12l4 4 8-8-1.42-1.42z\\\"></path>\"\n      }\n    }\n  },\n  \"forest\": {\n    \"name\": \"forest\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"16.48,10 18.16,10 15,5.49 13.22,8.03 16,12 14.14,12 16.71,16 20.34,16\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"12.16,10 9,5.49 5.84,10 7.52,10 3.66,16 14.34,16 10.48,10\\\"></polygon><path d=\\\"M20.14,12H22L15,2l-3,4.29L9,2L2,12h1.86L0,18h7v4h4v-4h2v4h4v-4h7L20.14,12z M3.66,16l3.86-6H5.84L9,5.49L12.16,10h-1.68 l3.86,6H3.66z M16.71,16l-2.57-4H16l-2.78-3.97L15,5.49L18.16,10h-1.68l3.86,6H16.71z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"10.29,8.5 8,4.83 5.71,8.5 6.91,8.5 3.73,13.5 12.27,13.5 9.09,8.5\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13.09,8.5 14.29,8.5 12,4.83 10.88,6.62 13,10 11.82,10 14.05,13.5 16.27,13.5\\\"></polygon><path d=\\\"M15.82,10H17l-5-8l-2,3.2L8,2l-5,8h1.18L1,15h5.5v3h3v-3h1v3h3v-3H19L15.82,10z M3.73,13.5l3.18-5H5.71L8,4.83l2.29,3.67 H9.09l3.18,5H3.73z M11.82,10H13l-2.12-3.38L12,4.83l2.29,3.67h-1.21l3.18,5h-2.22L11.82,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"directions_railway_filled\": {\n    \"name\": \"directions_railway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g enable-background=\\\"new\\\"><path d=\\\"M6,15.5C6,16.33,6.67,17,7.5,17h9c0.83,0,1.5-0.67,1.5-1.5V12H6V15.5z M12,13 c0.83,0,1.5,0.67,1.5,1.5S12.83,16,12,16s-1.5-0.67-1.5-1.5S11.17,13,12,13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4C8.48,4,7.03,4.48,6.43,5h11.24C17.13,4.46,15.71,4,12,4z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43C7.03,4.48,8.48,4,12,4z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9C6.67,17,6,16.33,6,15.5V12h12 V15.5z M18,10H6V7h12V10z\\\"></path><circle cx=\\\"12\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"icecream\": {\n    \"name\": \"icecream\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M9.32,13.42l2.73,5.21l2.67-5.23C13.88,13.79,12.95,14,12,14 C11.06,14,10.15,13.79,9.32,13.42z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.31,8.02L16.54,7.9l-0.06-0.78C16.29,4.8,14.34,3,12,3S7.71,4.8,7.51,7.12 L7.45,7.9L6.68,8.03C5.72,8.18,5,9.02,5,10c0,1.11,0.9,2,2,2c0.52,0,1.01-0.21,1.39-0.56l0.56-0.54l0.66,0.41 C10.32,11.76,11.14,12,12,12s1.68-0.24,2.39-0.68l0.66-0.42l0.56,0.54C15.99,11.8,16.48,12,17,12c1.1,0,2-0.9,2-2 C19,9.01,18.28,8.18,17.31,8.02z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.38,6.24C17.79,3.24,15.14,1,12,1S6.21,3.24,5.62,6.24C4.08,6.81,3,8.29,3,10c0,2.21,1.79,4,4,4 c0.12,0,0.23-0.02,0.34-0.02L12.07,23l4.61-9.03C16.79,13.98,16.89,14,17,14c2.21,0,4-1.79,4-4C21,8.29,19.92,6.81,18.38,6.24z M12.05,18.63l-2.73-5.21C10.15,13.79,11.06,14,12,14c0.95,0,1.88-0.21,2.72-0.6L12.05,18.63z M17,12c-0.52,0-1.01-0.2-1.39-0.56 l-0.56-0.54l-0.66,0.42C13.68,11.76,12.86,12,12,12s-1.68-0.24-2.39-0.69L8.95,10.9l-0.56,0.54C8.01,11.79,7.52,12,7,12 c-1.1,0-2-0.89-2-2c0-0.98,0.72-1.82,1.68-1.97L7.45,7.9l0.06-0.78C7.71,4.8,9.66,3,12,3s4.29,1.8,4.48,4.12l0.06,0.78l0.77,0.12 C18.28,8.18,19,9.01,19,10C19,11.1,18.1,12,17,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12.12,10.5C11.47,10.81,10.76,11,10,11s-1.47-0.19-2.12-0.5 c-0.3,0-0.21-0.02-0.37,0.08L10,15.61l2.49-5.04C12.33,10.48,12.42,10.5,12.12,10.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.45,6.58l-0.87-0.28l-0.15-0.9C13.15,3.72,11.7,2.5,10,2.5 S6.85,3.72,6.56,5.41l-0.15,0.9L5.55,6.58C4.92,6.79,4.5,7.36,4.5,8c0,0.83,0.67,1.5,1.5,1.5c0.39,0,0.69-0.15,0.87-0.28 l0.74-0.53C8.51,9.15,9.08,9.5,10,9.5c0.92,0,1.45-0.33,2.39-0.81l0.74,0.53C13.31,9.35,13.61,9.5,14,9.5c0.83,0,1.5-0.67,1.5-1.5 C15.5,7.36,15.08,6.79,14.45,6.58z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.92,5.16C14.51,2.8,12.47,1,10,1S5.49,2.8,5.08,5.16C3.88,5.55,3,6.66,3,8c0,1.66,1.34,3,3,3c0.02,0,0.03,0,0.04,0 L10,19l3.96-8c0.01,0,0.03,0,0.04,0c1.66,0,3-1.34,3-3C17,6.66,16.12,5.55,14.92,5.16z M10,15.61l-2.49-5.04 c0.16-0.1,0.07-0.08,0.37-0.08C8.53,10.81,9.24,11,10,11s1.47-0.19,2.12-0.5c0.3,0,0.21-0.02,0.37,0.08L10,15.61z M14,9.5 c-0.39,0-0.69-0.15-0.87-0.28l-0.74-0.53C11.45,9.17,10.92,9.5,10,9.5c-0.92,0-1.49-0.35-2.39-0.81L6.87,9.22 C6.69,9.35,6.39,9.5,6,9.5C5.17,9.5,4.5,8.83,4.5,8c0-0.64,0.42-1.21,1.05-1.42l0.87-0.28l0.15-0.9C6.85,3.72,8.3,2.5,10,2.5 s3.15,1.22,3.44,2.91l0.15,0.9l0.87,0.28C15.08,6.79,15.5,7.36,15.5,8C15.5,8.83,14.83,9.5,14,9.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_airport\": {\n    \"name\": \"local_airport\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tram\": {\n    \"name\": \"tram\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.97 7h-1.94c-2.75.08-3.62.58-3.9 1h9.74c-.28-.42-1.15-.92-3.9-1zM7 16v1c0 .45.3.84.74.95h3.11c-.22-.26-.35-.59-.35-.95 0-.39.15-.73.39-1H7zm6.5 1c0 .36-.13.69-.35.95h3.11c.44-.11.74-.5.74-.95v-1h-3.89c.24.27.39.61.39 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55h-.01.01C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1.97 2h1.94c2.75.08 3.62.58 3.9 1H7.13c.28-.42 1.15-.92 3.9-1zm-.18 10.95H7.74C7.3 17.84 7 17.45 7 17v-1h3.89c-.24.27-.39.61-.39 1 0 .36.13.69.35.95zM17 17c0 .45-.3.84-.74.95h-3.11c.22-.26.35-.59.35-.95 0-.39-.15-.73-.39-1H17v1zm0-3H7v-4h10v4z\\\"></path>\"\n      }\n    }\n  },\n  \"stadium\": {\n    \"name\": \"stadium\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,10.04C6.38,10.53,8.77,11,12,11s5.62-0.47,7-0.96C19,9.86,16.22,9,12,9S5,9.86,5,10.04z M20,11.8 c-1.82,0.73-4.73,1.2-8,1.2s-6.18-0.47-8-1.2v6.78c0.61,0.41,2.36,1.01,5,1.28V16h6v3.86c2.64-0.27,4.39-0.87,5-1.28V11.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,5L3,7V3L7,5z M18,3v4l4-2L18,3z M11,2v4l4-2L11,2z M13,18h-2l0,4c-5.05-0.15-9-1.44-9-3v-9c0-1.66,4.48-3,10-3 s10,1.34,10,3v9c0,1.56-3.95,2.85-9,3L13,18z M5,10.04C6.38,10.53,8.77,11,12,11s5.62-0.47,7-0.96C19,9.86,16.22,9,12,9 S5,9.86,5,10.04z M20,11.8c-1.82,0.73-4.73,1.2-8,1.2s-6.18-0.47-8-1.2v6.78c0.61,0.41,2.36,1.01,5,1.28V16h6v3.86 c2.64-0.27,4.39-0.87,5-1.28V11.8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.4,8.3C5.51,8.65,7.42,9,10,9s4.49-0.35,5.6-0.7c0-0.21-2.38-0.8-5.6-0.8S4.4,8.09,4.4,8.3z M16.5,9.56 c-1.45,0.57-3.82,0.94-6.5,0.94c-2.68,0-5.05-0.37-6.5-0.94v5.7c0.43,0.35,1.82,0.88,4,1.13V13h5v3.39c2.18-0.24,3.57-0.78,4-1.13 V9.56z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,4.5L3,6V3L6,4.5z M15,3v3l3-1.5L15,3z M9,2v3l3-1.5L9,2z M18,8.25c0,0,0,5.87,0,7.25c0,1.27-3.05,2.35-7,2.5v-3.5H9V18 c-3.95-0.15-7-1.23-7-2.5c0-0.99,0-7.25,0-7.25C2,7.01,5.58,6,10,6S18,7.01,18,8.25z M4.4,8.3C5.51,8.65,7.42,9,10,9 s4.49-0.35,5.6-0.7c0-0.21-2.38-0.8-5.6-0.8S4.4,8.09,4.4,8.3z M16.5,9.56c-1.45,0.57-3.82,0.94-6.5,0.94 c-2.68,0-5.05-0.37-6.5-0.94v5.7c0.43,0.35,1.82,0.88,4,1.13V13h5v3.39c2.18-0.24,3.57-0.78,4-1.13V9.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"breakfast_dining\": {\n    \"name\": \"breakfast_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,5H6C4.9,5,4,5.9,4,7c0,0.71,0.38,1.35,1.01,1.73L6,9.31V19h12V9.3l1-0.58c0.63-0.36,1-1.01,1-1.72 C20,5.9,19.1,5,18,5z M15.71,13.7l-3,3C12.51,16.9,12.26,17,12,17s-0.51-0.1-0.71-0.29l-3-3c-0.39-0.39-0.39-1.02,0-1.41l3-3 C11.49,9.1,11.74,9,12,9s0.51,0.1,0.71,0.29l3,3C16.1,12.68,16.1,13.31,15.71,13.7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,3H6C3.79,3,2,4.79,2,7c0,1.48,0.81,2.75,2,3.45V19c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-8.55c1.19-0.69,2-1.97,2-3.45 C22,4.79,20.21,3,18,3z M19,8.72L18,9.3V19H6V9.31L5.01,8.73C4.38,8.35,4,7.71,4,7c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2 C20,7.71,19.62,8.36,19,8.72z\\\"></path><path d=\\\"M12.71,9.29C12.51,9.1,12.26,9,12,9s-0.51,0.1-0.71,0.29l-3,3c-0.39,0.39-0.39,1.02,0,1.41l3,3C11.49,16.9,11.74,17,12,17 s0.51-0.1,0.71-0.29l3-3c0.39-0.39,0.39-1.02,0-1.41L12.71,9.29z M12,14.58L10.41,13L12,11.41L13.59,13L12,14.58z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M15,4.5H5C4.17,4.5,3.5,5.17,3.5,6c0,0.63,0.4,1.19,1,1.4l1,0.35v7.74h9l0-7.74l1-0.35 c0.6-0.21,1-0.78,1-1.4C16.5,5.17,15.83,4.5,15,4.5z M12.71,11.71l-2,2C10.51,13.9,10.26,14,10,14c-0.26,0-0.51-0.1-0.71-0.29 l-2-2c-0.39-0.39-0.39-1.02,0-1.41l2-2C9.49,8.1,9.74,8,10,8s0.51,0.1,0.71,0.29l2,2C13.1,10.68,13.1,11.32,12.71,11.71z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,6c0-1.66-1.34-3-3-3H5C3.34,3,2,4.34,2,6c0,1.3,0.84,2.4,2,2.82v6.68C4,16.33,4.67,17,5.5,17h9 c0.83,0,1.5-0.67,1.5-1.5l0-6.68C17.16,8.4,18,7.3,18,6z M15.5,7.4l-1,0.35l0,7.74h-9V7.76l-1-0.35c-0.6-0.21-1-0.78-1-1.4 c0-0.83,0.67-1.5,1.5-1.5h10c0.83,0,1.5,0.67,1.5,1.5C16.5,6.63,16.1,7.19,15.5,7.4z\\\"></path><path d=\\\"M10.71,8.29C10.51,8.1,10.26,8,10,8S9.49,8.1,9.29,8.29l-2,2c-0.39,0.39-0.39,1.02,0,1.41l2,2C9.49,13.9,9.74,14,10,14 c0.26,0,0.51-0.1,0.71-0.29l2-2c0.39-0.39,0.39-1.02,0-1.41L10.71,8.29z M10,12.29L8.71,11L10,9.71L11.29,11L10,12.29z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"takeout_dining\": {\n    \"name\": \"takeout_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"9.83,5 7.03,7.73 7.12,9 16.87,9 16.96,7.73 14.16,5\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"7.79,18 16.23,18 16.74,11 7.28,11\\\"></polygon><path d=\\\"M20.59,6.05L19,7.63l0.03-0.56L14.98,3H9.02L4.97,7.07L5,7.57L3.41,6.01L2,7.44l3.23,3.11L5.93,20h12.14l0.7-9.44L22,7.46 L20.59,6.05z M16.23,18H7.79l-0.51-7h9.46L16.23,18z M16.87,9H7.12L7.03,7.73L9.83,5h4.33l2.8,2.73L16.87,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"6.93,14.5 13.07,14.5 13.35,9 6.65,9\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8.62,4.5 6.53,6.59 6.58,7.5 13.42,7.5 13.47,6.59 11.38,4.5\\\"></polygon><path d=\\\"M16.44,5.5l-1.49,1.49L15,6l-3-3H8L5,6l0.05,0.99L3.56,5.5L2.5,6.56l2.66,2.66L5.5,16h9l0.34-6.78l2.66-2.66L16.44,5.5z M13.07,14.5H6.93L6.65,9h6.7L13.07,14.5z M13.42,7.5H6.58L6.53,6.59L8.62,4.5h2.76l2.09,2.09L13.42,7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edit_location\": {\n    \"name\": \"edit_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.11,14h-0.83H10H8v-2V8.74V7.91l0.59-0.59L11.91,4C8.61,4.05,6,6.6,6,10.2c0,2.34,1.95,5.44,6,9.14 c4.05-3.7,6-6.79,6-9.14c0-0.03,0-0.06,0-0.08l-3.3,3.3L14.11,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.17,4.91L17.1,3.84l-5.55,5.55v1.08h1.08L18.17,4.91z M16,2.74l1.29-1.29c0.58-0.59,1.52-0.59,2.11-0.01 c0,0,0.01,0.01,0.01,0.01l1.15,1.15c0.59,0.59,0.59,1.54,0,2.12L19.88,5.4l-0.02,0.02L19.28,6l-6,6H10V8.74L16,2.74z M13.72,2.19 l-0.55,0.55L11.9,4.01C8.6,4.06,6,6.61,6,10.21c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14v-0.1l1.8-1.8 c0.13,0.6,0.2,1.24,0.2,1.9c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8c0-4.98,3.8-8.2,8-8.2 C12.58,2.01,13.16,2.07,13.72,2.19z\\\"></path><polygon opacity=\\\".3\\\" points=\\\"18.17,4.91 17.1,3.84 11.55,9.39 11.55,10.47 12.63,10.47\\\"></polygon>\"\n      }\n    }\n  },\n  \"directions_subway_filled\": {\n    \"name\": \"directions_subway_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M13,5h4.67C17.13,4.46,15.71,4,12,4C8.48,4,7.03,4.48,6.43,5H11H13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,15.5C6,16.33,6.67,17,7.5,17h9c0.83,0,1.5-0.67,1.5-1.5V12H6V15.5z M15.5,13c0.83,0,1.5,0.67,1.5,1.5S16.33,16,15.5,16S14,15.33,14,14.5S14.67,13,15.5,13z M8.5,13c0.83,0,1.5,0.67,1.5,1.5 S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5C4,17.43,5.57,19,7.5,19L6,20v1h12v-1l-1.5-1c1.93,0,3.5-1.57,3.5-3.5V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H13h-2H6.43C7.03,4.48,8.48,4,12,4z M6,7h5v3H6V7z M18,15.5c0,0.83-0.67,1.5-1.5,1.5h-9 C6.67,17,6,16.33,6,15.5V12h12V15.5z M18,10h-5V7h5V10z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"local_activity\": {\n    \"name\": \"local_activity\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\\\"></path>\"\n      }\n    }\n  },\n  \"layers\": {\n    \"name\": \"layers\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.26 9L12 13.47 17.74 9 12 4.53z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.37 12.8l-7.38 5.74-7.37-5.73L3 14.07l9 7 9-7zM12 2L3 9l1.63 1.27L12 16l7.36-5.73L21 9l-9-7zm0 11.47L6.26 9 12 4.53 17.74 9 12 13.47z\\\"></path>\"\n      }\n    }\n  },\n  \"directions\": {\n    \"name\": \"directions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m3.01 12 9 9L21 12l-9-9-8.99 9zM14 7.5l3.5 3.5-3.5 3.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.42 1.58c-.75-.75-2.07-.76-2.83 0l-9 9c-.78.78-.78 2.04 0 2.82l9 9c.39.39.9.58 1.41.58.51 0 1.02-.19 1.41-.58l8.99-8.99c.78-.76.79-2.03.02-2.82l-9-9.01zm-1.41 19.41-9-9 9-9 9 9-9 9zM8 11v4h2v-3h4v2.5l3.5-3.5L14 7.5V10H9c-.55 0-1 .45-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"add_location_alt\": {\n    \"name\": \"add_location_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,4.8V7h3v3h1.41c0.06,0.39,0.09,0.79,0.09,1.2c0,2.57-2.1,5.79-6.16,9.51L12,21.01l-0.34-0.31 C7.6,16.99,5.5,13.77,5.5,11.2c0-3.84,2.82-6.7,6.5-6.7C12.7,4.5,13.37,4.6,14,4.8z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M20,1v3h3v2h-3v3h-2V6h-3V4h3V1H20z M12,13c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S13.1,13,12,13z M14,3.25v2.08 C13.38,5.11,12.7,5,12,5c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14c0-0.41-0.03-0.81-0.1-1.2h2.02 c0.05,0.39,0.08,0.79,0.08,1.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,6.22,7.8,3,12,3C12.68,3,13.35,3.08,14,3.25z\\\"></path>\"\n      }\n    }\n  },\n  \"handyman\": {\n    \"name\": \"handyman\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><polygon points=\\\"8.66,14.64 4.41,18.88 5.12,19.59 9.36,15.34 9.36,15.34 8.66,14.64\\\"></polygon></g><g opacity=\\\".3\\\"><rect height=\\\"6\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.0983 17.0848)\\\" width=\\\"1\\\" x=\\\"16.57\\\" y=\\\"14.11\\\"></rect></g><g><path d=\\\"M21.67,18.17l-5.3-5.3h-0.99l-2.54,2.54v0.99l5.3,5.3c0.39,0.39,1.02,0.39,1.41,0l2.12-2.12 C22.06,19.2,22.06,18.56,21.67,18.17z M18.84,19.59l-4.24-4.24l0.71-0.71l4.24,4.24L18.84,19.59z\\\"></path></g><g><path d=\\\"M17.34,10.19l1.41-1.41l2.12,2.12c1.17-1.17,1.17-3.07,0-4.24l-3.54-3.54l-1.41,1.41V1.71L15.22,1l-3.54,3.54l0.71,0.71 h2.83l-1.41,1.41l1.06,1.06l-2.89,2.89L7.85,6.48V5.06L4.83,2.04L2,4.87l3.03,3.03h1.41l4.13,4.13l-0.85,0.85H7.6l-5.3,5.3 c-0.39,0.39-0.39,1.02,0,1.41l2.12,2.12c0.39,0.39,1.02,0.39,1.41,0l5.3-5.3v-2.12l5.15-5.15L17.34,10.19z M9.36,15.34 l-4.24,4.24l-0.71-0.71l4.24-4.24l0,0L9.36,15.34L9.36,15.34z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><rect height=\\\"4.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -5.822 14.0555)\\\" width=\\\"1\\\" x=\\\"13.56\\\" y=\\\"11.81\\\"></rect></g><g opacity=\\\".3\\\"><rect height=\\\"1\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.1976 8.3202)\\\" width=\\\"4.5\\\" x=\\\"3.69\\\" y=\\\"13.56\\\"></rect></g><path d=\\\"M16.71,14.59l-3.54-3.54h-1.41l-0.34-0.34l-0.71,0.71l0.34,0.34v1.41l3.54,3.54c0.39,0.39,1.02,0.39,1.41,0L16.71,16 C17.1,15.61,17.1,14.98,16.71,14.59z M15.29,16l-3.18-3.18l0.71-0.71L16,15.29L15.29,16z\\\"></path><path d=\\\"M13.45,9.02l1.06-1.06l1.41,1.41c0.78-0.78,0.78-2.05,0-2.83l-2.47-2.47l-0.74,0.74l0-1.49l-0.49-0.49L9.74,5.31 l0.49,0.49l1.49,0l-0.74,0.74l0.88,0.88L10,9.29L7.51,6.81l0.15-1.26L5.36,3.23L3.23,5.36l2.31,2.31l1.26-0.15L9.29,10l-1.05,1.05 H6.83l-3.54,3.54c-0.39,0.39-0.39,1.02,0,1.41L4,16.71c0.39,0.39,1.02,0.39,1.41,0l3.54-3.54v-1.41l3.62-3.62L13.45,9.02z M4.71,16L4,15.29l3.18-3.18l0.71,0.71L4.71,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"attractions\": {\n    \"name\": \"attractions\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><circle cx=\\\"11.98\\\" cy=\\\"12.02\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M20.15,14.42c0.23-0.77,0.35-1.58,0.35-2.42s-0.12-1.65-0.35-2.42c0.78-0.6,1.02-1.7,0.51-2.58 c-0.51-0.88-1.58-1.23-2.49-0.85c-1.11-1.17-2.56-2.03-4.18-2.42C13.85,2.75,13.01,2,12,2s-1.85,0.75-1.98,1.73 C8.39,4.12,6.95,4.98,5.83,6.15C4.92,5.77,3.85,6.12,3.34,7C2.83,7.88,3.07,8.98,3.85,9.58C3.62,10.35,3.5,11.16,3.5,12 s0.12,1.65,0.35,2.42c-0.78,0.6-1.02,1.7-0.51,2.58c0.51,0.88,1.58,1.23,2.49,0.85c0.4,0.42,0.83,0.79,1.3,1.12L5.78,22h1.88 l0.98-2.19c0.44,0.19,0.9,0.34,1.38,0.46C10.15,21.25,10.99,22,12,22s1.85-0.75,1.98-1.73c0.46-0.11,0.91-0.26,1.34-0.44L16.3,22 h1.88l-1.34-3c0.48-0.34,0.93-0.72,1.34-1.15c0.91,0.38,1.99,0.03,2.49-0.85S20.93,15.02,20.15,14.42z M13.56,18.75 C13.19,18.29,12.63,18,12,18s-1.2,0.29-1.57,0.75c-0.4-0.09-0.79-0.21-1.16-0.37l1.43-3.19c0.4,0.16,0.84,0.25,1.3,0.25 c0.44,0,0.87-0.08,1.26-0.23l1.42,3.18C14.32,18.54,13.95,18.66,13.56,18.75z M10.48,12.02c0-0.83,0.67-1.5,1.5-1.5 c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5C11.15,13.52,10.48,12.85,10.48,12.02z M18.71,14.01c-0.61,0.07-1.18,0.41-1.52,0.99 c-0.32,0.56-0.34,1.2-0.12,1.75c-0.28,0.29-0.58,0.55-0.9,0.79l-1.5-3.35c0.49-0.59,0.78-1.34,0.78-2.16 c0-1.89-1.55-3.41-3.46-3.41c-1.91,0-3.46,1.53-3.46,3.41c0,0.8,0.28,1.54,0.75,2.13l-1.52,3.39c-0.31-0.23-0.6-0.48-0.87-0.76 C7.15,16.23,7.13,15.57,6.8,15c-0.34-0.59-0.93-0.94-1.56-0.99c-0.22-0.68-0.33-1.4-0.33-2.15c0-0.64,0.09-1.26,0.25-1.85 c0.66-0.03,1.3-0.38,1.65-1c0.37-0.63,0.35-1.38,0.01-1.98C7.74,6.05,8.93,5.34,10.27,5c0.34,0.59,0.99,1,1.73,1s1.39-0.4,1.73-1 c1.34,0.34,2.53,1.07,3.44,2.05C16.85,7.64,16.84,8.38,17.2,9c0.35,0.6,0.96,0.95,1.6,1c0.16,0.59,0.25,1.21,0.25,1.86 C19.05,12.61,18.93,13.33,18.71,14.01z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17,10c0-0.68-0.1-1.34-0.29-1.97c0.49-0.55,0.6-1.36,0.21-2.03c-0.39-0.67-1.15-0.98-1.87-0.83 c-0.91-0.95-2.08-1.64-3.4-1.96C11.42,2.51,10.77,2,10,2S8.58,2.51,8.35,3.21c-1.32,0.32-2.49,1.01-3.4,1.96 C4.22,5.02,3.46,5.33,3.07,6C2.68,6.67,2.8,7.48,3.29,8.03C3.1,8.66,3,9.32,3,10s0.1,1.34,0.29,1.97C2.8,12.52,2.68,13.33,3.07,14 c0.39,0.67,1.15,0.98,1.87,0.83c0.33,0.35,0.69,0.66,1.09,0.93L4.99,18h1.66l0.71-1.52c0.32,0.13,0.65,0.23,0.99,0.32 C8.58,17.49,9.23,18,10,18s1.42-0.51,1.65-1.21c0.34-0.08,0.67-0.19,0.99-0.32L13.36,18h1.66l-1.04-2.24 c0.4-0.27,0.76-0.59,1.09-0.93c0.72,0.15,1.48-0.16,1.87-0.83c0.39-0.67,0.27-1.48-0.21-2.03C16.9,11.34,17,10.68,17,10z M11.46,15.3c-0.31-0.48-0.85-0.8-1.46-0.8s-1.15,0.32-1.46,0.8c-0.19-0.05-0.37-0.11-0.55-0.18l1.06-2.28 C9.35,12.93,9.67,13,10,13s0.65-0.07,0.95-0.17l1.06,2.28C11.83,15.18,11.65,15.24,11.46,15.3z M8.5,10c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M15.32,11.38c-0.57,0.03-1.11,0.34-1.42,0.87 c-0.31,0.53-0.3,1.16-0.04,1.67c-0.17,0.16-0.35,0.32-0.53,0.46l-1.1-2.37C12.7,11.47,13,10.78,13,10c0-1.66-1.34-3-3-3 s-3,1.34-3,3c0,0.78,0.3,1.47,0.78,2.01l-1.1,2.37c-0.19-0.14-0.37-0.29-0.53-0.46c0.26-0.51,0.26-1.14-0.04-1.67 c-0.31-0.53-0.85-0.84-1.42-0.87C4.57,10.94,4.5,10.48,4.5,10s0.07-0.94,0.18-1.38C5.25,8.59,5.8,8.28,6.1,7.75 c0.31-0.53,0.3-1.16,0.04-1.67C6.8,5.44,7.62,4.96,8.54,4.7C8.85,5.18,9.39,5.5,10,5.5s1.15-0.32,1.46-0.8 c0.91,0.25,1.73,0.73,2.39,1.38c-0.26,0.51-0.26,1.14,0.04,1.67c0.31,0.53,0.85,0.84,1.42,0.87c0.11,0.44,0.18,0.9,0.18,1.38 S15.43,10.94,15.32,11.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"egg_alt\": {\n    \"name\": \"egg_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M17.59,10.42c-0.69-0.68-1.21-1.51-1.76-2.39C14.48,5.86,13.31,4,9.97,4C8.35,4,7.01,4.52,5.99,5.55 C4.68,6.88,3.97,8.99,4,11.5C4.05,16.01,8.33,17,9.97,17c1.69,0,2.68,1.05,3.34,1.74C14.03,19.5,14.5,20,15.99,20 c1.89,0,4.01-2.13,4.01-4.98C20,12.82,19.49,12.31,17.59,10.42z M12,15.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5 s3.5,1.57,3.5,3.5S13.93,15.5,12,15.5z\\\"></path></g><g><path d=\\\"M19,9C17,7,15.99,2,9.97,2C4.95,2,1.94,6,2,11.52C2.06,17.04,6.96,19,9.97,19c2.01,0,2.01,3,6.02,3C19,22,22,19,22,15.02 C22,12,21.01,11,19,9z M15.99,20c-1.49,0-1.96-0.5-2.68-1.26C12.66,18.05,11.66,17,9.97,17C8.33,17,4.05,16.01,4,11.5 C3.97,8.99,4.68,6.88,5.99,5.55C7.01,4.52,8.35,4,9.97,4c3.34,0,4.51,1.86,5.86,4.02c0.55,0.88,1.07,1.71,1.76,2.39 c1.9,1.89,2.41,2.4,2.41,4.61C20,17.87,17.88,20,15.99,20z\\\"></path></g><g><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3.5\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M12.73,7.03C11.55,5.15,10.71,4,8.38,4c-1.19,0-2.16,0.38-2.9,1.12C4.51,6.11,3.98,7.69,4,9.6 C4.04,12.96,7.22,14,8.38,14c1.42,0,2.27,0.75,2.83,1.24c0.53,0.47,0.86,0.76,1.98,0.76c1.32,0,2.81-1.53,2.81-3.58 c0-1.6-0.31-1.91-1.81-3.4C13.61,8.44,13.16,7.72,12.73,7.03z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g><g><path d=\\\"M15.6,7.6C14,6,13.19,2,8.38,2C4.36,2,1.95,5.2,2,9.62S5.97,16,8.38,16c1.61,0,1.61,2,4.82,2C15.6,18,18,15.6,18,12.42 C18,10,17.21,9.2,15.6,7.6z M13.19,16c-1.13,0-1.45-0.28-1.98-0.76C10.65,14.75,9.8,14,8.38,14C7.22,14,4.04,12.96,4,9.6 c-0.02-1.9,0.51-3.49,1.48-4.47C6.22,4.38,7.19,4,8.38,4c2.33,0,3.17,1.15,4.35,3.03c0.43,0.69,0.88,1.41,1.46,1.99 c1.5,1.49,1.81,1.8,1.81,3.4C16,14.47,14.52,16,13.19,16z\\\"></path></g><g><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"2.5\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"map\": {\n    \"name\": \"map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18.31l3-1.16V5.45L5 6.46zm11 .24l3-1.01V5.69l-3 1.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM8 17.15l-3 1.16V6.46l3-1.01v11.7zm6 1.38l-4-1.4V5.47l4 1.4v11.66zm5-.99l-3 1.01V6.86l3-1.16v11.84z\\\"></path>\"\n      }\n    }\n  },\n  \"local_phone\": {\n    \"name\": \"local_phone\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.99 7.59c-.24-.83-.39-1.7-.45-2.59h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 4c0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1zm13.4 13.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51z\\\"></path>\"\n      }\n    }\n  },\n  \"snowmobile\": {\n    \"name\": \"snowmobile\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,14h-6.7l-7.45-2.23l0.31-0.62L11.6,12l3.93-2.94c0,0,3.77,3.44,4.27,4.14C19.8,13.2,18.7,14,17,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22,17c0,0.55-0.45,1-1,1h-0.17l-2.2-2.2C20.58,15.37,22,14.4,22,13c0-1-8-8-8-8h-3v2h2.25l0.8,0.72L11,10L2,9l-2,4 l4.54,1.36l-3.49,1.88C-0.77,17.22-0.07,20,2,20h6c2.21,0,4-1.79,4-4h4l2,2h-3v2h6c1.66,0,3-1.34,3-3H22z M8,18H2l5.25-2.83L10,16 C10,17.1,9.11,18,8,18z M17,14h-6.7l-7.45-2.23l0.31-0.62L11.6,12l3.93-2.94c0,0,3.77,3.44,4.27,4.14C19.8,13.2,18.7,14,17,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,12H8.7l-6.56-1.93L2.4,9.56L9.35,10l3.52-2.16c0,0,3.38,3.22,3.38,3.32C16.25,11.16,16.07,12,13,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.5,14.5c0,0.55-0.45,1-1,1l-2.22-2.19C16.87,12.96,18,12.17,18,11c0-0.5-6.5-6.5-6.5-6.5H9V6h1.91l0.84,0.78L9,8.5L1.5,8 L0,11l4.32,1.27l-3.53,1.91C-0.58,14.92-0.06,17,1.5,17h5c1.93,0,3.5-1.57,3.5-3.5h3.33l2.05,2H12.5V17h5c1.38,0,2.5-1.12,2.5-2.5 H18.5z M6.5,15.5h-5l4.87-2.63L8.5,13.5C8.5,14.6,7.6,15.5,6.5,15.5z M13,12H8.7l-6.56-1.93L2.4,9.56L9.35,10l3.52-2.16 c0,0,3.38,3.22,3.38,3.32C16.25,11.16,16.07,12,13,12z\\\"></path>\"\n      }\n    }\n  },\n  \"subway\": {\n    \"name\": \"subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.67 18.5L9.17 20h5.66l-1.5-1.5zm6.4-13.84C15.59 4.08 13.68 4 12 4s-3.59.08-5.07.66C5.01 5.41 4 6.86 4 8.86V20h3.5v-.38l1.15-1.16C7.16 18.29 6 17.04 6 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20H20V8.86c0-2-1.01-3.45-2.93-4.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zM9.17 20l1.5-1.5h2.66l1.5 1.5H9.17zm-2.16-6V9h10v5h-10zm9.49 2c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-8-1c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM20 20h-3.5v-.38l-1.15-1.16c1.49-.17 2.65-1.42 2.65-2.96V9c0-2.63-3-3-6-3s-6 .37-6 3v6.5c0 1.54 1.16 2.79 2.65 2.96L7.5 19.62V20H4V8.86c0-2 1.01-3.45 2.93-4.2C8.41 4.08 10.32 4 12 4s3.59.08 5.07.66c1.92.75 2.93 2.2 2.93 4.2V20z\\\"></path>\"\n      }\n    }\n  },\n  \"local_car_wash\": {\n    \"name\": \"local_car_wash\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.12 14l-.12.34V19h14v-4.66l-.12-.34H5.12zm2.38 4c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5 3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7zm-2 0c0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5zm-5 0C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5s1.5-.67 1.5-1.5zM21 14l-2.08-5.99C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8zM6.85 9h10.29l1.04 3H5.81l1.04-3zM19 19H5v-4.66l.12-.34h13.77l.11.34V19z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"local_cafe\": {\n    \"name\": \"local_cafe\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 15h6c1.1 0 2-.9 2-2V5H6v8c0 1.1.9 2 2 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 19h18v2H2zm2-6c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2H4v10zm14-8h2v3h-2V5zM6 5h10v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5z\\\"></path>\"\n      }\n    }\n  },\n  \"two_wheeler\": {\n    \"name\": \"two_wheeler\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M4.17,11L4.17,11C4.12,11,4.06,11,4,11H4.17 M13.41,5H9v2h3.59l2,2H11l-4,2L5,9H0v2h4c-2.21,0-4,1.79-4,4 c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4l2,2h3l3.49-6.1l1.01,1.01C16.59,12.64,16,13.75,16,15c0,2.21,1.79,4,4,4c2.21,0,4-1.79,4-4 c0-2.21-1.79-4-4-4c-0.18,0-0.36,0.03-0.53,0.05L17.41,9H20V6l-3.72,1.86L13.41,5L13.41,5z M20,17c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C22,16.1,21.1,17,20,17L20,17z M4,17c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2 C6,16.1,5.1,17,4,17L4,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M14.5,9c-0.16,0-0.31,0.02-0.45,0.05L13,8h1.5V6.5l-2,1L11,6H9.01v1h1.58l1,1H9.5L7,9L6,8H3v1h2.5C4.12,9,3,10.12,3,11.5 C3,12.88,4.12,14,5.5,14c1.23,0,2.24-0.88,2.45-2.05L9,13h1.5l2.03-4.06l0.52,0.52C12.42,9.92,12,10.66,12,11.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C17,10.12,15.88,9,14.5,9z M5.5,13C4.67,13,4,12.33,4,11.5S4.67,10,5.5,10 S7,10.67,7,11.5S6.33,13,5.5,13z M14.5,13c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.33,13,14.5,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"straight\": {\n    \"name\": \"straight\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"11,6.83 9.41,8.41 8,7 12,3 16,7 14.59,8.41 13,6.83 13,21 11,21\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"9.25,17 10.75,17 10.75,5.87 11.94,7.06 13,6 10,3 7,6 8.06,7.06 9.25,5.87\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"directions_subway\": {\n    \"name\": \"directions_subway\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-3.51 0-4.96.48-5.57 1h11.23c-.54-.54-1.95-1-5.66-1zM6 15.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V12H6v3.5zm9.5-2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 16 8.5 16 7 15.33 7 14.5 7.67 13 8.5 13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 2c3.71 0 5.12.46 5.66 1H6.43c.61-.52 2.06-1 5.57-1zM6 7h5v3H6V7zm12 8.5c0 .83-.67 1.5-1.5 1.5h-9c-.83 0-1.5-.67-1.5-1.5V12h12v3.5zm0-5.5h-5V7h5v3z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"directions_bus_filled\": {\n    \"name\": \"directions_bus_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g enable-background=\\\"new\\\"><path d=\\\"M6,15c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3H6V15z M15.5,13 c0.83,0,1.5,0.67,1.5,1.5S16.33,16,15.5,16S14,15.33,14,14.5S14.67,13,15.5,13z M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16 S7,15.33,7,14.5S7.67,13,8.5,13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4C8.48,4,7.03,4.48,6.43,5h11.24C17.13,4.46,15.71,4,12,4z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C8,2,4,2.5,4,6v9.5c0,0.95,0.38,1.81,1,2.44V20c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-2.06c0.62-0.63,1-1.49,1-2.44V6C20,2.5,16.42,2,12,2z M12,4c3.71,0,5.13,0.46,5.67,1H6.43 C7.03,4.48,8.48,4,12,4z M18,15c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2v-3h12V15z M18,10H6V7h12V10z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"route\": {\n    \"name\": \"route\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"6\\\" cy=\\\"6\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"18\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M19,15.18V7c0-2.21-1.79-4-4-4s-4,1.79-4,4v10c0,1.1-0.9,2-2,2s-2-0.9-2-2V8.82C8.16,8.4,9,7.3,9,6c0-1.66-1.34-3-3-3 S3,4.34,3,6c0,1.3,0.84,2.4,2,2.82V17c0,2.21,1.79,4,4,4s4-1.79,4-4V7c0-1.1,0.9-2,2-2s2,0.9,2,2v8.18c-1.16,0.41-2,1.51-2,2.82 c0,1.66,1.34,3,3,3s3-1.34,3-3C21,16.7,20.16,15.6,19,15.18z M6,7C5.45,7,5,6.55,5,6s0.45-1,1-1s1,0.45,1,1S6.55,7,6,7z M18,19 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S18.55,19,18,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5.5\\\" cy=\\\"5.5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><circle cx=\\\"14.5\\\" cy=\\\"14.5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M15.25,12.13V6c0-1.65-1.35-3-3-3s-3,1.35-3,3v8c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5V7.87C7.26,7.55,8,6.62,8,5.5 C8,4.12,6.88,3,5.5,3C5.33,3,5.16,3.02,5,3.05C4.67,3.12,4.37,3.25,4.1,3.43C3.44,3.88,3,4.64,3,5.5c0,0.86,0.44,1.62,1.1,2.07 C4.37,7.75,4.67,7.88,5,7.95C4.91,7.93,4.83,7.9,4.75,7.87V14c0,1.65,1.35,3,3,3s3-1.35,3-3V6c0-0.83,0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5v6.13c0.08-0.03,0.16-0.06,0.25-0.08c-0.33,0.07-0.63,0.2-0.89,0.38c-0.67,0.45-1.1,1.21-1.1,2.07 c0,0.86,0.44,1.62,1.1,2.07c0.27,0.18,0.57,0.31,0.89,0.38c0.16,0.03,0.33,0.05,0.5,0.05c1.38,0,2.5-1.12,2.5-2.5 C17,13.38,16.26,12.45,15.25,12.13z M5.5,6.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,6.5,5.5,6.5z M14.5,15.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.05,15.5,14.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation_alt\": {\n    \"name\": \"screen_rotation_alt\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7.59l5-5c0.78-0.78,2.05-0.78,2.83,0L20.24,11h-2.83L10.4,4L5.41,9H8v2H2V5h2V7.59z M20,19h2v-6h-6v2h2.59l-4.99,5 l-7.01-7H3.76l8.41,8.41c0.78,0.78,2.05,0.78,2.83,0l5-5V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4.56,7.5H6.5V9H2V4.5h1.5v1.94l4-4c0.59-0.59,1.54-0.59,2.12,0L16.18,9h-2.12l-5.5-5.5L4.56,7.5z M15.44,12.5H13.5V11H18 v4.5h-1.5v-1.94l-4,4c-0.59,0.59-1.54,0.59-2.12,0L3.82,11h2.12l5.5,5.5L15.44,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"zoom_in_map\": {\n    \"name\": \"zoom_in_map\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,9l0-6L7,3l0,2.59L3.91,2.5L2.5,3.91L5.59,7L3,7l0,2L9,9z M21,9V7l-2.59,0l3.09-3.09L20.09,2.5L17,5.59V3l-2,0l0,6L21,9z M3,15l0,2h2.59L2.5,20.09l1.41,1.41L7,18.41L7,21h2l0-6L3,15z M15,15l0,6h2v-2.59l3.09,3.09l1.41-1.41L18.41,17H21v-2L15,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5.44,6.5L3,4.06L4.06,3L6.5,5.44V4H8v4H4V6.5H5.44z M16,8V6.5h-1.44L17,4.06L15.94,3L13.5,5.44V4H12v4H16z M4.06,17 l2.44-2.44V16H8v-4H4v1.5h1.44L3,15.94L4.06,17z M13.5,14.56L15.94,17L17,15.94l-2.44-2.44H16V12h-4v4h1.5V14.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"safety_check\": {\n    \"name\": \"safety_check\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4.14L6,6.39v4.7c0,4,2.55,7.7,6,8.83c3.45-1.13,6-4.82,6-8.83v-4.7L12,4.14z M12,17c-2.76,0-5-2.24-5-5 s2.24-5,5-5s5,2.24,5,5S14.76,17,12,17z M13.65,14.35l-2.15-2.15V9h1v2.79l1.85,1.85L13.65,14.35z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7z M13.65,14.35 l-2.15-2.15V9h1v2.79l1.85,1.85L13.65,14.35z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,9.27c0,3.26-2.13,6.27-5,7.17c-2.87-0.9-5-3.91-5-7.17V5.53l5-1.92l5,1.92V9.27z M10,6 c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C14,7.79,12.21,6,10,6z M11.15,11.85L9.5,10.21V8h1v1.79l1.35,1.35L11.15,11.85z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M15,9.27c0,3.26-2.13,6.27-5,7.17 c-2.87-0.9-5-3.91-5-7.17V5.53l5-1.92l5,1.92V9.27z M10,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C14,7.79,12.21,6,10,6z M11.15,11.85L9.5,10.21V8h1v1.79l1.35,1.35L11.15,11.85z\\\"></path></g>\"\n      }\n    }\n  },\n  \"departure_board\": {\n    \"name\": \"departure_board\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.29 6H9c-3.69 0-5.11.46-5.66.99h5.74c.05-.33.12-.67.21-.99zM3 14v4c0 .37.21.62.34.73l.29.27h10.74l.29-.27c.13-.11.34-.36.34-.73v-3.08c-.94-.13-1.81-.45-2.59-.92H3zm2.5 4c-.83 0-1.5-.67-1.5-1.5S4.67 15 5.5 15s1.5.67 1.5 1.5S6.33 18 5.5 18zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"5.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16 1c-2.39 0-4.49 1.2-5.75 3.02C9.84 4.01 9.43 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V22c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22v-3.08c3.39-.49 6-3.39 6-6.92 0-3.87-3.13-7-7-7zM9 6h.29c-.09.32-.16.66-.21.99H3.34C3.89 6.46 5.31 6 9 6zM3 8.99h6.08c.16 1.11.57 2.13 1.18 3.01H3V8.99zM15 18c0 .37-.21.62-.34.73l-.29.27H3.63l-.29-.27C3.21 18.62 3 18.37 3 18v-4h9.41c.78.47 1.65.79 2.59.92V18zm1-5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68z\\\"></path>\"\n      }\n    }\n  },\n  \"restaurant\": {\n    \"name\": \"restaurant\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel\": {\n    \"name\": \"hotel\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9h-6v6h8v-4c0-1.1-.9-2-2-2z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"7\\\" cy=\\\"11\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M4 11c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3zm4 0c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm11-4h-8v8H3V5H1v15h2v-3h18v3h2v-9c0-2.21-1.79-4-4-4zm2 8h-8V9h6c1.1 0 2 .9 2 2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"dry_cleaning\": {\n    \"name\": \"dry_cleaning\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><rect enable-background=\\\"new\\\" height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"15\\\"></rect><path d=\\\"M19.56,11.36L13,8.44V7c0-0.55-0.45-1-1-1s-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1h2c0-1.84-1.66-3.3-3.56-2.95 C10.26,2.27,9.29,3.22,9.06,4.4C8.76,5.96,9.66,7.34,11,7.82v0.63l-6.56,2.92C3.56,11.75,3,12.62,3,13.57v0.01 C3,14.92,4.08,16,5.42,16H7v6h10v-6h1.58c1.34,0,2.42-1.08,2.42-2.42v-0.01C21,12.62,20.44,11.75,19.56,11.36z M15,20H9v-5h6V20z M18.58,14H17v-1H7v1H5.42c-0.46,0-0.58-0.65-0.17-0.81l6.75-3l6.75,3C19.17,13.38,19.03,14,18.58,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><rect enable-background=\\\"new\\\" height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"12.5\\\"></rect><path d=\\\"M16.97,10.87c-0.11-0.62-0.55-1.12-1.13-1.37l-5.09-2.18V6.25c0-0.41-0.34-0.75-0.75-0.75c-0.62,0-1-0.56-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1h1.5C12.5,3.12,11.38,2,10,2C9.82,2,9.64,2.02,9.45,2.06C8.5,2.26,7.73,3.05,7.55,4.01 c-0.25,1.33,0.55,2.5,1.7,2.86v0.45L4.16,9.5c-0.57,0.25-1.02,0.75-1.13,1.37C2.83,12.01,3.7,13,4.81,13H6v5h8v-5h1.19 C16.3,13,17.17,12.01,16.97,10.87z M12.5,16.5h-5v-4h5V16.5z M15.19,11.5H14V11H6v0.5H4.81c-0.17,0-0.31-0.14-0.31-0.31 c0-0.12,0.07-0.23,0.19-0.28L10,8.63l5.31,2.28c0.11,0.05,0.19,0.16,0.19,0.28C15.5,11.36,15.36,11.5,15.19,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fork_left\": {\n    \"name\": \"fork_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.41,15.59L8,17l-4-4l4-4l1.41,1.41L7.83,12c1.51-0.33,3.73,0.08,5.17,1.36l0-6.53l-1.59,1.59L10,7l4-4l4,4l-1.41,1.41 L15,6.83V21l-2,0v-4c-0.73-2.58-3.07-3.47-5.17-3L9.41,15.59z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,11.36c-1.2-1.05-2.74-1.4-4.13-1.11l1.19-1.19L7,8l-3,3l3,3l1.06-1.06l-1.19-1.19C8.74,11.32,10.44,12.28,11,14v3h1.5 l0-11.13l1.19,1.19L14.75,6l-3-3l-3,3l1.06,1.06L11,5.87L11,11.36z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turn_right\": {\n    \"name\": \"turn_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.17,11l-1.59,1.59L17,14l4-4l-4-4l-1.41,1.41L17.17,9L9,9c-1.1,0-2,0.9-2,2v9h2v-9L17.17,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8,16H6.5l0-7c0-0.83,0.67-1.5,1.5-1.5l6.13,0l-1.19-1.19L14,5.25l3,3l-3,3l-1.06-1.06L14.13,9L8,9V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bike_scooter\": {\n    \"name\": \"bike_scooter\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,14h0.74L8.82,5.56C8.61,4.65,7.8,4,6.87,4H3v2h3.87l1.42,6.25c0,0-0.01,0-0.01,0C6.12,12.9,4.47,14.73,4.09,17H0v2h6 v-1C6,15.79,7.79,14,10,14z\\\"></path><path d=\\\"M19,8h-0.82l-1.35-3.69C16.55,3.52,15.8,3,14.96,3H11v2h3.96l1.1,3H10.4l0.46,2H15c-0.43,0.58-0.75,1.25-0.9,2h-2.79 l0.46,2h2.33c0.44,2.23,2.31,3.88,4.65,3.99c2.8,0.13,5.25-2.19,5.25-5C24,10.2,21.8,8,19,8z M19,16c-1.68,0-3-1.32-3-3 c0-0.93,0.41-1.73,1.05-2.28l0.96,2.64l1.88-0.68l-0.97-2.67c0.03,0,0.06-0.01,0.09-0.01c1.68,0,3,1.32,3,3S20.68,16,19,16z\\\"></path><path d=\\\"M10,15c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S11.66,15,10,15z M10,19c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S10.55,19,10,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,13c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,13,9,13z M9,16c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,16,9,16z\\\"></path><path d=\\\"M9.24,12L7.82,5.78C7.72,5.32,7.31,5,6.84,5H4.01v1h2.84l1.17,5.14c-1.57,0.4-2.75,1.72-2.96,3.36H1v1h5.01v-0.51 C6.01,13.34,7.35,12,9,12L9.24,12z\\\"></path><path d=\\\"M15.5,8h-0.68l-1.58-4.34C13.1,3.26,12.72,3,12.3,3H10v1h2.3l1.46,4h-4.4l0.23,1h3.45c-0.53,0.52-0.88,1.22-0.98,2h-2.01 l0.23,1h1.79c0.25,1.81,1.83,3.14,3.75,2.99c1.64-0.13,3.01-1.46,3.18-3.1C19.2,9.75,17.59,8,15.5,8z M15.5,14 c-1.4,0-2.5-1.1-2.5-2.5c0-0.94,0.5-1.73,1.24-2.16l1.03,2.83l0.94-0.34l-1.02-2.8C15.3,9.02,15.4,9,15.5,9c1.4,0,2.5,1.1,2.5,2.5 S16.9,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"theater_comedy\": {\n    \"name\": \"theater_comedy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.5,10.81C14.55,9.8,15.64,9,16.99,9c1.38,0,2.5,0.84,2.5,1.88H14.5v1.22c0.69,0.55,1.55,0.9,2.5,0.9 c2.21,0,4-1.79,4-4V4h-8v3.5h1.5V10.81z M19,5.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S18.45,5.5,19,5.5z M14,6.5 c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1S14,7.05,14,6.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,2v5.5h2V4h8v5c0,2.21-1.79,4-4,4c-0.95,0-1.81-0.35-2.5-0.9v2.35C15.26,14.8,16.11,15,17,15c3.31,0,6-2.69,6-6V2H11z\\\"></path><circle cx=\\\"19\\\" cy=\\\"6.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"6.5\\\" r=\\\"1\\\"></circle><path d=\\\"M16.99,9c-1.35,0-2.44,0.8-2.49,1.81v0.07h4.99C19.49,9.84,18.37,9,16.99,9z\\\"></path><path d=\\\"M1,16c0,3.31,2.69,6,6,6s6-2.69,6-6V9H1V16z M3,11h8v5c0,2.21-1.79,4-4,4s-4-1.79-4-4V11z\\\"></path><path d=\\\"M7,20c2.21,0,4-1.79,4-4v-5H3v5C3,18.21,4.79,20,7,20z M7,17.88c-1.38,0-2.5-0.84-2.5-1.88h5 C9.5,17.04,8.38,17.88,7,17.88z M9,12.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S8.45,12.5,9,12.5z M5,12.5c0.55,0,1,0.45,1,1 s-0.45,1-1,1s-1-0.45-1-1S4.45,12.5,5,12.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"5\\\" cy=\\\"13.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"9\\\" cy=\\\"13.5\\\" r=\\\"1\\\"></circle><path d=\\\"M7,17.88c1.38,0,2.5-0.84,2.5-1.88h-5C4.5,17.04,5.62,17.88,7,17.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.95,6c-0.12-0.13-0.2-0.31-0.2-0.5c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75c-0.19,0-0.37-0.08-0.5-0.2v3.46C12,8.67,12.89,8,14,8s2,0.67,2,1.51h-4v1.36 c0.57,0.4,1.26,0.64,2,0.64c1.93,0,3.5-1.57,3.5-3.5V3.5h-7V6H11.95z M15.5,4.75c0.41,0,0.75,0.34,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75C14.75,5.09,15.09,4.75,15.5,4.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,2v4h1.5V3.5h7V8c0,1.93-1.57,3.5-3.5,3.5c-0.74,0-1.43-0.24-2-0.64v1.71c0.61,0.27,1.29,0.42,2,0.42c2.76,0,5-2.24,5-5 V2H9z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><path d=\\\"M9.5,13V8.5h-7V13c0,1.93,1.57,3.5,3.5,3.5C7.93,16.5,9.5,14.93,9.5,13z M3.75,10.5 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S3.75,10.91,3.75,10.5z M6,14.51 c-1.11,0-2-0.67-2-1.51h4C8,13.83,7.11,14.51,6,14.51z M7.5,11.25c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 s0.75,0.34,0.75,0.75C8.25,10.91,7.91,11.25,7.5,11.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,7H1v6c0,0.69,0.14,1.35,0.39,1.95c0.51,1.2,1.46,2.15,2.66,2.66C4.65,17.86,5.31,18,6,18s1.35-0.14,1.95-0.39 c1.2-0.51,2.15-1.46,2.66-2.66C10.86,14.35,11,13.69,11,13V7z M6,16.5c-1.93,0-3.5-1.57-3.5-3.5V8.5h7V13 C9.5,14.93,7.93,16.5,6,16.5z\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"10.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\".75\\\"></circle><path d=\\\"M6,14.51c1.11,0,2-0.67,2-1.51H4C4,13.83,4.89,14.51,6,14.51z\\\"></path><path d=\\\"M14,8c-1.11,0-2,0.67-2,1.51h4C16,8.67,15.11,8,14,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_dining\": {\n    \"name\": \"local_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.11 21.28L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41zM3.91 9.16l4.19 4.18 2.83-2.83L3.91 3.5c-1.56 1.56-1.56 4.09 0 5.66z\\\"></path>\"\n      }\n    }\n  },\n  \"medical_information\": {\n    \"name\": \"medical_information\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15,9c0,1.1-0.9,2-2,2h-2c-1.1,0-2-0.9-2-2H4v11h16V9H15z M11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16z M17,17.5h-4 V16h4V17.5z M19,14.5h-6V13h6V14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,7h-5V4c0-1.1-0.9-2-2-2h-2C9.9,2,9,2.9,9,4v3H4C2.9,7,2,7.9,2,9v11c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V9 C22,7.9,21.1,7,20,7z M11,4h2v5h-2V4z M20,20H4V9h5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2h5V20z M11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16z M13,14.5V13h6v1.5H13z M13,17.5V16h4v1.5H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.25,7.5c0,0.83-0.67,1.5-1.5,1.5h-1.5c-0.83,0-1.5-0.67-1.5-1.5H3.5v9h13v-9H12.25z M9.25,13.25H7.5V15H6 v-1.75H4.25v-1.5H6V10h1.5v1.75h1.75V13.25z M14,14.5h-3.25v-1H14V14.5z M15.75,12h-5v-1h5V12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.25,13.25H7.5V15H6v-1.75H4.25v-1.5H6V10h1.5v1.75h1.75V13.25z M14,14.5v-1h-3.25v1H14z M15.75,12v-1h-5v1H15.75z M18,7.5v9c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,18,2,17.33,2,16.5v-9C2,6.67,2.67,6,3.5,6h4.25V3.5c0-0.83,0.67-1.5,1.5-1.5h1.5 c0.83,0,1.5,0.67,1.5,1.5V6h4.25C17.33,6,18,6.67,18,7.5z M9.25,7.5h1.5v-4h-1.5V7.5z M16.5,7.5h-4.25c0,0.83-0.67,1.5-1.5,1.5 h-1.5c-0.83,0-1.5-0.67-1.5-1.5H3.5v9h13V7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_bus\": {\n    \"name\": \"directions_bus\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.37 17l.29-.27c.13-.11.34-.36.34-.73v-4H6v4c0 .37.21.62.34.73l.29.27h10.74zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm5.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM12 4c-3.69 0-5.11.46-5.66.99h11.31C17.11 4.46 15.69 4 12 4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 21h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1zM12 4c3.69 0 5.11.46 5.66.99H6.34C6.89 4.46 8.31 4 12 4zM6 6.99h12V10H6V6.99zM8 17H6.63l-.29-.27C6.21 16.62 6 16.37 6 16v-4h12v4c0 .37-.21.62-.34.73l-.29.27H8z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"layers_clear\": {\n    \"name\": \"layers_clear\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 13.47l.67-.53-5.02-5.02L6.26 9zm0-8.94l-1.17.91 5.02 5.03L17.74 9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 4.53L17.74 9l-1.89 1.47 1.43 1.42L21 9l-9-7-2.59 2.02 1.42 1.42zm9 9.54l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41L3.41.86zM12 13.47L6.26 9l1.39-1.08 5.02 5.02-.67.53z\\\"></path>\"\n      }\n    }\n  },\n  \"ramp_left\": {\n    \"name\": \"ramp_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,21h-2V6.83L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83V9c0,4.27,4.03,7.13,6,8.27l-1.46,1.46 c-1.91-1.16-3.44-2.53-4.54-4.02L13,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,5.87l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19l0,11.13h1.5l0-4.99l0-0.01c1.02,1.39,2.35,2.43,3.39,3.09 L15.23,14c-1.6-0.96-4.48-3.18-4.48-6.3L10.75,5.87z\\\"></path></g>\"\n      }\n    }\n  },\n  \"electric_rickshaw\": {\n    \"name\": \"electric_rickshaw\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M3,13h0.17C3.58,11.84,4.7,11,6,11c0.35,0,0.69,0.06,1,0.17V10H3V13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,11h-3v2h1.17c0.3-0.85,0.98-1.53,1.83-1.83V11z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,11.18V9.72c0-0.47-0.16-0.92-0.46-1.28L16.6,3.72C16.22,3.26,15.66,3,15.06,3H3C1.9,3,1,3.9,1,5v8c0,1.1,0.9,2,2,2 h0.18C3.6,16.16,4.7,17,6,17s2.4-0.84,2.82-2h8.37c0.41,1.16,1.51,2,2.82,2c1.66,0,3-1.34,3-3C23,12.7,22.16,11.6,21,11.18z M6,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,15,6,15z M7,11.17C6.69,11.06,6.35,11,6,11c-1.3,0-2.42,0.84-2.83,2H3v-3 h4V11.17z M7,8H3V5h4V8z M14,13H9v-3h3V8H9V5h5V13z M16,6.12L18.4,9H16V6.12z M17.17,13H16v-2h3v0.17 C18.15,11.47,17.47,12.15,17.17,13z M20,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.55,15,20,15z\\\"></path></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.25,10.11V9.5H2.5V11h1c0.46-0.61,1.18-1,2-1C5.76,10,6.01,10.04,6.25,10.11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,9.5H13V11h1.5c0.26-0.34,0.6-0.62,1-0.79V9.5z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"9,17 6,17 11,19.5 11,17.5 14,17.5 9,15\\\"></polygon><path d=\\\"M17,10.05V8.53c0-0.34-0.12-0.67-0.33-0.94l-3.22-4.03C13.17,3.21,12.73,3,12.28,3H2.5C1.67,3,1,3.67,1,4.5V11 c0,0.83,0.67,1.5,1.5,1.5H3C3,13.88,4.12,15,5.5,15S8,13.88,8,12.5h6c0,1.38,1.12,2.5,2.5,2.5c1.5,0,2.2-1.12,2.39-1.73 C19.34,11.74,18.38,10.33,17,10.05z M2.5,4.5h3.75V8H2.5V4.5z M3.5,11h-1V9.5h3.75v0.61C6.01,10.04,5.76,10,5.5,10 C4.68,10,3.96,10.39,3.5,11z M5.5,13.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.05,13.5,5.5,13.5z M11.5,11H7.75V9.5H10V8 H7.75V4.5h3.75V11z M13,5.4L15.08,8H13V5.4z M14.5,11H13V9.5h2.5v0.71C15.1,10.38,14.76,10.66,14.5,11z M16.5,13.5 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.05,13.5,16.5,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_location\": {\n    \"name\": \"add_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.5,10.2c0,2.57-2.1,5.79-6.16,9.51L12,20.01l-0.34-0.31 C7.6,15.99,5.5,12.77,5.5,10.2c0-3.84,2.82-6.7,6.5-6.7S18.5,6.35,18.5,10.2z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><g><g><path d=\\\"M13,6v3h3v2h-3v3h-2v-3H8V9h3V6H13z M18,10.2C18,6.57,15.35,4,12,4s-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14 C16.05,15.64,18,12.54,18,10.2z M12,2c4.2,0,8,3.22,8,8.2c0,3.32-2.67,7.25-8,11.8c-5.33-4.55-8-8.48-8-11.8C4,5.22,7.8,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"delivery_dining\": {\n    \"name\": \"delivery_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M4,13v1h4v-3H6C4.9,11,4,11.9,4,13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z M8,14H4v-1c0-1.1,0.9-2,2-2h2V14z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,9.5H5c-0.83,0-1.5,0.67-1.5,1.5v0.5h3V9.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"5.5\\\"></rect><path d=\\\"M15.5,6.5C15.5,5.67,14.83,5,14,5h-2.5v1.5H14v1.41l-3,3.59H8V8H5c-1.66,0-3,1.34-3,3v2h1.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5h3.2l3.8-4.54V6.5z M3.5,11.5V11c0-0.83,0.67-1.5,1.5-1.5h1.5v2H3.5z M6,14c-0.55,0-1-0.45-1-1h2 C7,13.55,6.55,14,6,14z\\\"></path><path d=\\\"M15.5,10.5c-1.38,0-2.5,1.12-2.5,2.5s1.12,2.5,2.5,2.5S18,14.38,18,13S16.88,10.5,15.5,10.5z M15.5,14c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S16.05,14,15.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"car_rental\": {\n    \"name\": \"car_rental\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M7,15.01V18h10v-2.99V15H7V15.01z M15,15.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S14.45,15.5,15,15.5z M9,15.5c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S8.45,15.5,9,15.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"9\\\" cy=\\\"16.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"16.5\\\" r=\\\"1\\\"></circle><path d=\\\"M17.25,9.6c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,9.01,16.28,9,16.28,9H7.72c0,0-0.54,0.01-0.92,0.54 C6.78,9.56,6.77,9.58,6.75,9.6C6.68,9.71,6.61,9.84,6.56,10C6.34,10.66,5.82,12.22,5,14.69v6.5C5,21.64,5.35,22,5.78,22h0.44 C6.65,22,7,21.64,7,21.19V20h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c-0.82-2.46-1.34-4.03-1.56-4.69C17.39,9.84,17.32,9.71,17.25,9.6z M8.33,11h7.34l0.23,0.69L16.33,13H7.67L8.33,11z M17,15.01V18 H7v-2.99V15h10V15.01z\\\"></path><path d=\\\"M10.83,3C10.41,1.83,9.3,1,8,1C6.34,1,5,2.34,5,4c0,1.65,1.34,3,3,3c1.3,0,2.41-0.84,2.83-2H16v2h2V5h1V3H10.83z M8,5 C7.45,5,7,4.55,7,4s0.45-1,1-1s1,0.45,1,1S8.55,5,8,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,14.5h7v-2h-7V14.5z M12.25,12.75c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75S11.84,12.75,12.25,12.75z M7.75,12.75c0.41,0,0.75,0.34,0.75,0.75s-0.34,0.75-0.75,0.75S7,13.91,7,13.5 S7.34,12.75,7.75,12.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.84,8H7.19C6.78,8,6.4,8.26,6.26,8.65L5,12v4.5C5,16.78,5.22,17,5.5,17H6c0.28,0,0.5-0.22,0.5-0.5V16h7v0.5 c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V12l-1.22-3.34C13.64,8.26,13.26,8,12.84,8z M7.54,9.5h4.95l0.55,1.5H6.98 L7.54,9.5z M13.5,14.5h-7v-2h7V14.5z\\\"></path><circle cx=\\\"7.75\\\" cy=\\\"13.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.25\\\" cy=\\\"13.5\\\" r=\\\".75\\\"></circle><path d=\\\"M9.37,2.75C9.05,1.74,8.11,1,7,1C5.62,1,4.5,2.12,4.5,3.5S5.62,6,7,6c1.11,0,2.05-0.74,2.37-1.75h3.13V6H14V4.25h1v-1.5 H9.37z M7,4.5c-0.54,0-1-0.46-1-1s0.46-1,1-1s1,0.46,1,1S7.54,4.5,7,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crisis_alert\": {\n    \"name\": \"crisis_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.5,2.5c0,1.5-1.5,6-1.5,6h-2c0,0-1.5-4.5-1.5-6C9.5,1.12,10.62,0,12,0S14.5,1.12,14.5,2.5z M12,10c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M16.08,5.11c0.18-0.75,0.33-1.47,0.39-2.06C19.75,4.69,22,8.08,22,12c0,5.52-4.48,10-10,10 S2,17.52,2,12c0-3.92,2.25-7.31,5.53-8.95C7.6,3.64,7.74,4.37,7.92,5.11C5.58,6.51,4,9.07,4,12c0,4.42,3.58,8,8,8s8-3.58,8-8 C20,9.07,18.42,6.51,16.08,5.11z M18,12c0,3.31-2.69,6-6,6s-6-2.69-6-6c0-2,0.98-3.77,2.48-4.86c0.23,0.81,0.65,2.07,0.65,2.07 C8.43,9.93,8,10.92,8,12c0,2.21,1.79,4,4,4s4-1.79,4-4c0-1.08-0.43-2.07-1.13-2.79c0,0,0.41-1.22,0.65-2.07C17.02,8.23,18,10,18,12 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12,2c0,1.2-1.2,5-1.2,5H9.2C9.2,7,8,3.2,8,2c0-1.1,0.9-2,2-2S12,0.9,12,2z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z M13.12,4.3c2.01,1.1,3.38,3.24,3.38,5.7c0,3.59-2.91,6.5-6.5,6.5 S3.5,13.59,3.5,10c0-2.46,1.37-4.6,3.38-5.7C6.75,3.76,6.64,3.23,6.57,2.77C3.87,4.06,2,6.81,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8 c0-3.19-1.87-5.94-4.57-7.23C13.36,3.23,13.25,3.76,13.12,4.3z M13.5,10c0,1.93-1.57,3.5-3.5,3.5S6.5,11.93,6.5,10 c0-1.07,0.48-2.02,1.23-2.67c-0.11-0.35-0.28-0.9-0.46-1.53C5.91,6.7,5,8.24,5,10c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-1.76-0.91-3.3-2.28-4.19c-0.18,0.63-0.35,1.18-0.46,1.53C13.02,7.98,13.5,8.93,13.5,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"menu_book\": {\n    \"name\": \"menu_book\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M21,5c-1.11-0.35-2.33-0.5-3.5-0.5c-1.95,0-4.05,0.4-5.5,1.5c-1.45-1.1-3.55-1.5-5.5-1.5S2.45,4.9,1,6v14.65 c0,0.25,0.25,0.5,0.5,0.5c0.1,0,0.15-0.05,0.25-0.05C3.1,20.45,5.05,20,6.5,20c1.95,0,4.05,0.4,5.5,1.5c1.35-0.85,3.8-1.5,5.5-1.5 c1.65,0,3.35,0.3,4.75,1.05c0.1,0.05,0.15,0.05,0.25,0.05c0.25,0,0.5-0.25,0.5-0.5V6C22.4,5.55,21.75,5.25,21,5z M3,18.5V7 c1.1-0.35,2.3-0.5,3.5-0.5c1.34,0,3.13,0.41,4.5,0.99v11.5C9.63,18.41,7.84,18,6.5,18C5.3,18,4.1,18.15,3,18.5z M21,18.5 c-1.1-0.35-2.3-0.5-3.5-0.5c-1.34,0-3.13,0.41-4.5,0.99V7.49c1.37-0.59,3.16-0.99,4.5-0.99c1.2,0,2.4,0.15,3.5,0.5V18.5z\\\"></path><path d=\\\"M11,7.49C9.63,6.91,7.84,6.5,6.5,6.5C5.3,6.5,4.1,6.65,3,7v11.5C4.1,18.15,5.3,18,6.5,18 c1.34,0,3.13,0.41,4.5,0.99V7.49z\\\" opacity=\\\".3\\\"></path></g><g><path d=\\\"M17.5,10.5c0.88,0,1.73,0.09,2.5,0.26V9.24C19.21,9.09,18.36,9,17.5,9c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,10.69,16.18,10.5,17.5,10.5z\\\"></path><path d=\\\"M17.5,13.16c0.88,0,1.73,0.09,2.5,0.26V11.9c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,13.36,16.18,13.16,17.5,13.16z\\\"></path><path d=\\\"M17.5,15.83c0.88,0,1.73,0.09,2.5,0.26v-1.52c-0.79-0.15-1.64-0.24-2.5-0.24c-1.28,0-2.46,0.16-3.5,0.47v1.57 C14.99,16.02,16.18,15.83,17.5,15.83z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fort\": {\n    \"name\": \"fort\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,8.17L20.17,7h-4.34L17,8.17V12H7V8.17L8.17,7H3.83L5,8.17v7.66l-2,2V19h5v-1c0-2.21,1.79-4,4-4 s4,1.79,4,4v1h5v-1.17l-2-2V8.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M23,7V3h-2v2h-2V3h-2v2h-2V3h-2v4l2,2v1H9V9l2-2V3H9v2H7V3H5v2H3V3H1v4l2,2v6l-2,2v4h9v-3c0-1.1,0.9-2,2-2s2,0.9,2,2v3h9 v-4l-2-2V9L23,7z M21,19h-5v-1c0-2.21-1.79-4-4-4s-4,1.79-4,4v1H3v-1.17l2-2V8.17L3.83,7h4.34L7,8.17V12h10V8.17L15.83,7h4.34 L19,8.17v7.66l2,2V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,7.38L16.87,6h-3.75l1.37,1.37v3.12h-9V7.38L6.87,6H3.13L4.5,7.38v5.24l-2,2v0.88h4V15 c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5v0.5h4v-0.88l-2-2V7.38z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,6V3h-1.5v1.5h-1.75V3h-1.5v1.5H12.5V3H11v3l2,2v1H7V8l2-2V3H7.5v1.5H5.75V3h-1.5v1.5H2.5V3H1v3l2,2v4l-2,2v3h7v-2 c0-1.1,0.9-2,2-2s2,0.9,2,2v2h7v-3l-2-2V8L19,6z M17.5,14.62v0.88h-4V15c0-1.93-1.57-3.5-3.5-3.5S6.5,13.07,6.5,15v0.5h-4v-0.88 l2-2V7.38L3.13,6h3.75L5.5,7.38v3.12h9V7.38L13.13,6h3.75L15.5,7.38v5.24L17.5,14.62z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_car\": {\n    \"name\": \"electric_car\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,13h14V8H5V13z M16.5,9c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5S15,11.33,15,10.5 C15,9.67,15.67,9,16.5,9z M7.5,9C8.33,9,9,9.67,9,10.5C9,11.33,8.33,12,7.5,12S6,11.33,6,10.5C6,9.67,6.67,9,7.5,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.92,2.01C18.72,1.42,18.16,1,17.5,1h-11C5.84,1,5.29,1.42,5.08,2.01L3,8v8c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1 h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1V8L18.92,2.01z M6.85,3h10.29l1.08,3.11H5.77L6.85,3z M19,13H5V8h14V13z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,8H5v3h10V8z M7,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C8,10.05,7.55,10.5,7,10.5z M13,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14,10.05,13.55,10.5,13,10.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"13\\\" cy=\\\"9.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"7\\\" cy=\\\"9.5\\\" r=\\\"1\\\"></circle><path d=\\\"M4.5,13h1C5.78,13,6,12.78,6,12.5V12h8v0.5c0,0.28,0.22,0.5,0.5,0.5h1c0.28,0,0.5-0.22,0.5-0.5V7l-1.72-3.45 C14.11,3.21,13.76,3,13.38,3H6.62C6.24,3,5.89,3.21,5.72,3.55L4,7v5.5C4,12.78,4.22,13,4.5,13z M6.62,4h6.76l1.5,3H5.12L6.62,4z M5,8h10v3H5V8z\\\"></path></g><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"brunch_dining\": {\n    \"name\": \"brunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,10h-2v1.47c0,0.95,0.37,1.89,1.03,2.6c0.63-0.71,0.97-1.61,0.97-2.56V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2,21.5C2,21.78,2.22,22,2.49,22h13.02c0.27,0,0.49-0.22,0.49-0.5V20H2V21.5z\\\"></path><path d=\\\"M20.47,15.45c0.99-1.07,1.53-2.48,1.53-3.94V2h-6v9.47c0,1.48,0.58,2.92,1.6,4l0.4,0.42V22h4v-2h-2v-4.03L20.47,15.45z M18,4h2v4h-2V4z M19.03,14.07c-0.65-0.71-1.03-1.65-1.03-2.6V10h2v1.51C20,12.46,19.66,13.36,19.03,14.07z\\\"></path><path d=\\\"M15.5,16H11v-2H7v2H2.5C2.22,16,2,16.22,2,16.5V18h14v-1.5C16,16.22,15.78,16,15.5,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M16.5,8.5h-2v1.26c0,0.73,0.37,1.4,1,1.79c0.63-0.39,1-1.06,1-1.79V8.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" width=\\\"11\\\" x=\\\"2\\\" y=\\\"16.5\\\"></rect><path d=\\\"M12.5,13.5H9V12H6v1.5H2.5C2.22,13.5,2,13.72,2,14v1h11v-1C13,13.72,12.78,13.5,12.5,13.5z\\\"></path><path d=\\\"M18,9.76V2h-5v7.76c0,1.27,0.67,2.44,1.75,3.09V18H18v-1.5h-1.75v-3.65C17.33,12.2,18,11.04,18,9.76z M14.5,3.5h2V7h-2 V3.5z M15.5,11.55c-0.63-0.39-1-1.06-1-1.79V8.5h2v1.26C16.5,10.49,16.13,11.16,15.5,11.55z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"celebration\": {\n    \"name\": \"celebration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"12.35,16.18 7.82,11.65 5.3,18.7\\\"></polygon><path d=\\\"M2,22l14-5L7,8L2,22z M12.35,16.18L5.3,18.7l2.52-7.05L12.35,16.18z\\\"></path><path d=\\\"M14.53,12.53l5.59-5.59c0.49-0.49,1.28-0.49,1.77,0l0.59,0.59l1.06-1.06l-0.59-0.59c-1.07-1.07-2.82-1.07-3.89,0 l-5.59,5.59L14.53,12.53z\\\"></path><path d=\\\"M9.47,7.47l1.06,1.06l0.59-0.59c1.07-1.07,1.07-2.82,0-3.89l-0.59-0.59L9.47,4.53l0.59,0.59c0.48,0.48,0.48,1.28,0,1.76 L9.47,7.47z\\\"></path><path d=\\\"M17.06,11.88l-1.59,1.59l1.06,1.06l1.59-1.59c0.49-0.49,1.28-0.49,1.77,0l1.61,1.61l1.06-1.06l-1.61-1.61 C19.87,10.81,18.13,10.81,17.06,11.88z\\\"></path><path d=\\\"M15.06,5.88l-3.59,3.59l1.06,1.06l3.59-3.59c1.07-1.07,1.07-2.82,0-3.89l-1.59-1.59l-1.06,1.06l1.59,1.59 C15.54,4.6,15.54,5.4,15.06,5.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"10.75,13.31 6.69,9.25 4.46,15.54\\\"></polygon><path d=\\\"M2,18l11.49-4.07L6.07,6.51L2,18z M10.75,13.31l-6.29,2.22l2.22-6.29L10.75,13.31z\\\"></path><path d=\\\"M12.25,5.63L9.78,8.1l0.71,0.71l2.47-2.47c0.78-0.78,0.78-2.05,0-2.83l-1.41-1.41L10.84,2.8l1.41,1.41 C12.64,4.6,12.64,5.24,12.25,5.63z\\\"></path><path d=\\\"M8.36,6.69l0.71,0.71l0.71-0.71c0.78-0.78,0.78-2.05,0-2.83L9.07,3.15L8.36,3.86l0.71,0.71c0.39,0.39,0.39,1.02,0,1.41 L8.36,6.69z\\\"></path><path d=\\\"M15.79,8.58c-0.51,0-1.02,0.2-1.41,0.59l-1.77,1.77l0.71,0.71l1.77-1.77c0.2-0.2,0.45-0.29,0.71-0.29s0.51,0.1,0.71,0.29 l1.41,1.41l0.71-0.71L17.2,9.16C16.81,8.77,16.3,8.58,15.79,8.58z\\\"></path><path d=\\\"M18.62,4.92c-0.39-0.39-0.9-0.59-1.41-0.59s-1.02,0.2-1.41,0.59l-4.6,4.6l0.71,0.71l4.6-4.6c0.2-0.2,0.45-0.29,0.71-0.29 s0.51,0.1,0.71,0.29l0.71,0.71l0.71-0.71L18.62,4.92z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_play\": {\n    \"name\": \"local_play\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.01 8.54C5.2 9.23 6 10.52 6 12s-.81 2.77-2 3.46V18h16v-2.54c-1.19-.69-2-1.99-2-3.46s.81-2.77 2-3.46V6H4l.01 2.54zm6.72 1.68L12 7l1.26 3.23 3.47.2-2.69 2.2.89 3.37L12 14.12 9.07 16l.88-3.37-2.69-2.2 3.47-.21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2V6c0-1.1-.9-2-2-2zm0 4.54c-1.19.69-2 1.99-2 3.46s.81 2.77 2 3.46V18H4v-2.54c1.19-.69 2-1.99 2-3.46 0-1.48-.8-2.77-1.99-3.46L4 6h16v2.54zM9.07 16L12 14.12 14.93 16l-.89-3.36 2.69-2.2-3.47-.21L12 7l-1.27 3.22-3.47.21 2.69 2.2z\\\"></path>\"\n      }\n    }\n  },\n  \"local_pharmacy\": {\n    \"name\": \"local_pharmacy\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.11 19h13.78l-1.79-5.37-.21-.63.21-.63L18.89 7H5.11l1.79 5.37.21.63-.21.63L5.11 19zM8 12h3V9h2v3h3v2h-3v3h-2v-3H8v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 21h18v-2l-2-6 2-6V5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2zm3.9-8.63L5.11 7h13.78l-1.79 5.37-.21.63.21.63L18.89 19H5.11l1.79-5.37.21-.63-.21-.63zM11 17h2v-3h3v-2h-3V9h-2v3H8v2h3z\\\"></path>\"\n      }\n    }\n  },\n  \"design_services\": {\n    \"name\": \"design_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><polygon opacity=\\\".3\\\" points=\\\"15.91,9.28 14.61,7.98 5,17.59 5,19 6.41,19 16.02,9.39\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10.83,8.93 9.63,7.73 8.44,8.92 7.02,7.5 8.21,6.32 6.94,5.04 6.94,5.04 5.04,6.94 8.93,10.83\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"16.27,14.38 15.07,13.17 13.17,15.07 17.06,18.96 18.96,17.06 17.69,15.79 16.5,16.98 15.08,15.57\\\"></polygon><rect height=\\\"2\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 0.4645 14.2513)\\\" width=\\\"2\\\" x=\\\"16.44\\\" y=\\\"5.56\\\"></rect><path d=\\\"M20.97,5.86l-2.83-2.83c-0.39-0.39-1.02-0.39-1.41,0l-4.49,4.49L8.35,3.63c-0.78-0.78-2.05-0.78-2.83,0l-1.9,1.9 c-0.78,0.78-0.78,2.05,0,2.83l3.89,3.89L3,16.76V21h4.24l4.52-4.52l3.89,3.89c0.95,0.95,2.23,0.6,2.83,0l1.9-1.9 c0.78-0.78,0.78-2.05,0-2.83l-3.89-3.89l4.49-4.49C21.36,6.88,21.36,6.25,20.97,5.86z M5.04,6.94l1.89-1.9c0,0,0,0,0,0l1.27,1.27 L7.02,7.5l1.41,1.41l1.19-1.19l1.2,1.2l-1.9,1.9L5.04,6.94z M6.41,19H5v-1.41l9.61-9.61l1.3,1.3l0.11,0.11L6.41,19z M16.5,16.98 l1.19-1.19l1.27,1.27l-1.9,1.9l-3.89-3.89l1.9-1.9l1.2,1.2l-1.19,1.19L16.5,16.98z M17.44,7.98l-1.41-1.41l1.41-1.41l1.41,1.41 L17.44,7.98z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><polygon opacity=\\\".3\\\" points=\\\"11.58,7.83 5,14.41 5,15 5.59,15 12.17,8.42\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"9.54,8.46 9.16,8.08 8.62,8.62 7.95,7.96 8.49,7.41 7.44,6.35 6.89,6.9 6.23,6.23 6.77,5.69 6.08,5 6.08,5 5,6.08 8.46,9.54\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13.79,13.79 13.12,13.13 13.67,12.58 12.61,11.53 12.06,12.07 11.4,11.4 11.94,10.86 11.54,10.46 10.46,11.54 13.92,15 15,13.92 14.33,13.25\\\"></polygon><path d=\\\"M15.71,13.21l-3.46-3.46l1.33-1.33l-2-2l-1.33,1.33L6.79,4.29C6.4,3.9,5.76,3.9,5.37,4.29L4.29,5.37 C3.9,5.76,3.9,6.4,4.29,6.79l3.46,3.46L4,14v2h2l3.75-3.75l3.46,3.46c0.39,0.39,1.02,0.39,1.41,0l1.08-1.08 C16.1,14.24,16.1,13.6,15.71,13.21z M5,6.08L6.08,5c0,0,0,0,0,0l0.69,0.69L6.23,6.23L6.89,6.9l0.54-0.54l1.06,1.06L7.95,7.96 l0.67,0.67l0.54-0.54l0.38,0.38L8.46,9.54L5,6.08z M5.59,15H5v-0.59l6.58-6.58l0.59,0.59L5.59,15z M13.92,15l-3.46-3.46l1.08-1.08 l0.4,0.4L11.4,11.4l0.67,0.67l0.54-0.54l1.06,1.06l-0.54,0.54l0.67,0.67l0.54-0.54L15,13.92L13.92,15z\\\"></path><path d=\\\"M15.62,6.38c0.2-0.2,0.2-0.51,0-0.71l-1.29-1.29c-0.2-0.2-0.51-0.2-0.71,0l-1.34,1.34l2,2L15.62,6.38z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_post_office\": {\n    \"name\": \"local_post_office\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11l8-5H4zM4 8v10h16V8l-8 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"local_see\": {\n    \"name\": \"local_see\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-4.05l-.59-.65L14.12 4H9.88L8.65 5.35l-.6.65H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l.59-.65L9.88 4h4.24l1.24 1.35.59.65H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8.2c-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2z\\\"></path>\"\n      }\n    }\n  },\n  \"person_pin\": {\n    \"name\": \"person_pin\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.83 18l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zM12 5c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 15.58C6 13.08 9.97 12 12 12s6 1.08 6 3.58V17H6v-1.42z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 20l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V17h12v-1.42zM8.48 15c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48z\\\"></path>\"\n      }\n    }\n  },\n  \"electric_moped\": {\n    \"name\": \"electric_moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,11v1h4V9H6C4.9,9,4,9.9,4,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,5c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,12H10V7H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,8.35V5z M7,15c-0.55,0-1-0.45-1-1h2C8,14.55,7.55,15,7,15z M8,12H4v-1c0-1.1,0.9-2,2-2h2V12z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M19,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,11,19,11z M19,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,15,19,15z\\\"></path></g><polygon points=\\\"7,20 11,20 11,18 17,21 13,21 13,23\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,9v1h4V7H6C4.9,7,4,7.9,4,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,5.5C15,4.67,14.33,4,13.5,4H12v1h1.5C13.78,5,14,5.22,14,5.5v1.29L10.79,10H9V6H6C4.34,6,3,7.34,3,9v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,7.21V5.5z M7,12c-0.55,0-1-0.45-1-1h2C8,11.55,7.55,12,7,12z M8,10H4V9c0-1.1,0.9-2,2-2h2V10z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><path d=\\\"M15,9c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,9.9,16.1,9,15,9z M15,12c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,11.55,15.55,12,15,12z\\\"></path></g><polygon points=\\\"7,15 9.5,15 9.5,14 13,16 10.5,16 10.5,17\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"local_convenience_store\": {\n    \"name\": \"local_convenience_store\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 14h2v4h4V9h-3V6H7v3H4v9h4v-4h6zm-1-7h1v2h1V7h1v5h-1v-2h-2V7zM8 9h2V8H8V7h3v3H9v1h2v1H8V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 16h4v4h8V7h-3V4H5v3H2v13h8v-4zm-2 0v2H4V9h3V6h10v3h3v9h-4v-4H8v2zm3-5H9v-1h2V7H8v1h2v1H8v3h3zm4 1h1V7h-1v2h-1V7h-1v3h2z\\\"></path>\"\n      }\n    }\n  },\n  \"place\": {\n    \"name\": \"place\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2zm6 8.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"agriculture\": {\n    \"name\": \"agriculture\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M4,9h5c0-1.1-0.9-2-2-2H4C3.45,7,3,7.45,3,8C3,8.55,3.45,9,4,9z\\\"></path><path d=\\\"M22,14.06V8c0-1.1-0.9-2-2-2h-6.29l-1.06-1.06l1.41-1.41l-0.71-0.71L9.82,6.35l0.71,0.71l1.41-1.41L13,6.71V9 c0,1.1-0.9,2-2,2H8.96c-0.22-0.16-0.45-0.3-0.69-0.43l-0.4,0.89l-0.46-0.21l0.4-0.9C7.26,10.13,6.64,10,6,10 c-0.53,0-1.04,0.11-1.52,0.26l0.34,0.91l-0.47,0.18L4,10.42c-1.06,0.46-1.91,1.28-2.43,2.31l0.89,0.4l-0.21,0.46l-0.9-0.4 C1.13,13.74,1,14.36,1,15c0,0.53,0.11,1.04,0.26,1.52l0.91-0.34l0.18,0.47L1.42,17c0.46,1.06,1.28,1.91,2.31,2.43l0.4-0.89 l0.46,0.21l-0.4,0.9C4.74,19.87,5.36,20,6,20c0.53,0,1.04-0.11,1.52-0.26l-0.34-0.91l0.47-0.18L8,19.58 c1.06-0.46,1.91-1.28,2.43-2.31l-0.89-0.4l0.21-0.46l0.9,0.4c0.1-0.26,0.18-0.54,0.24-0.82h5.16C16.03,16.16,16,16.33,16,16.5 c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5C23,15.55,22.62,14.69,22,14.06z M6,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S7.66,18,6,18z M10.87,14c-0.04-0.18-0.08-0.35-0.13-0.52l-0.91,0.34l-0.18-0.47L10.58,13c0,0,0.42,0,0.42,0c2.21,0,4-1.79,4-4V8 h5v5.05C19.84,13.03,19.67,13,19.5,13c-0.95,0-1.81,0.38-2.44,1H10.87z M19.5,18c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S20.33,18,19.5,18z\\\"></path></g><path d=\\\"M20,13.05V8h-5v1c0,2.21-1.79,4-4,4c0,0-0.42,0-0.42,0c0.14,0.32,0.25,0.65,0.32,1h6.16 c0.63-0.62,1.49-1,2.44-1C19.67,13,19.84,13.03,20,13.05z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M3.5,8H8c0-0.55-0.45-1-1-1H3.5C3.22,7,3,7.22,3,7.5C3,7.78,3.22,8,3.5,8z\\\"></path><path d=\\\"M17,11.51V7c0-0.55-0.45-1-1-1h-4.47l-0.8-0.8l1.06-1.06l-0.53-0.53L8.61,6.27L9.14,6.8l1.06-1.06l0.8,0.8V9 c0,0.55-0.45,1-1,1H7.93C7.66,9.74,7.36,9.52,7.02,9.36L6.83,9.8L6.48,9.66l0.19-0.44C6.3,9.08,5.91,9,5.5,9 C5.1,9,4.71,9.08,4.35,9.21l0.18,0.44L4.19,9.8L4,9.35c-0.72,0.34-1.3,0.92-1.65,1.64l0.45,0.19l-0.14,0.35l-0.44-0.19 C2.08,11.7,2,12.09,2,12.5c0,0.4,0.08,0.79,0.21,1.15l0.44-0.18l0.14,0.35L2.35,14c0.34,0.72,0.92,1.3,1.64,1.65l0.19-0.45 l0.35,0.14l-0.19,0.44C4.7,15.92,5.09,16,5.5,16c0.4,0,0.79-0.08,1.15-0.21l-0.18-0.44l0.35-0.14L7,15.65 c0.72-0.34,1.3-0.92,1.65-1.64L8.2,13.83l0.14-0.35l0.44,0.19c0.08-0.22,0.13-0.44,0.17-0.67h4.1C13.02,13.16,13,13.33,13,13.5 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5C18,12.68,17.6,11.97,17,11.51z M5.5,15C4.12,15,3,13.88,3,12.5 C3,11.12,4.12,10,5.5,10S8,11.12,8,12.5C8,13.88,6.88,15,5.5,15z M13.51,12H8.95c-0.04-0.22-0.09-0.44-0.16-0.65l-0.44,0.18 L8.2,11.19c0,0,0.45-0.19,0.45-0.19H10c1.1,0,2-0.9,2-2V7h4v4.05C15.84,11.02,15.67,11,15.5,11C14.68,11,13.97,11.4,13.51,12z M15.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.33,15,15.5,15z\\\"></path></g><path d=\\\"M16,11.05V7h-4v2c0,1.1-0.9,2-2,2H8.65l0,0c0.05,0.11,0.1,0.23,0.14,0.35l0,0c0,0,0,0.01,0,0.01 c0.07,0.2,0.12,0.41,0.15,0.62c0,0.01,0,0.01,0,0.02h4.56c0.46-0.6,1.17-1,1.99-1C15.67,11,15.84,11.02,16,11.05z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"museum\": {\n    \"name\": \"museum\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,20h12V9H6V20z M8,11h2l2,3l2-3h2v7h-2v-4l-2,3l-2-3v4H8V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22,11V9L12,2L2,9v2h2v9H2v2h20v-2h-2v-9H22z M18,20H6V9h12V20z\\\"></path><polygon points=\\\"10,14 12,17 14,14 14,18 16,18 16,11 14,11 12,14 10,11 8,11 8,18 10,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.03L3,8h0.02v1H5v7H3.02v1h13.97v-1H15V9h1.98V8H17L10,3.03z M14,16H6V8h8V16z\\\"></path><path d=\\\"M6,16h8V8H6V16z M7,9h1l2,3l2-3h1v6h-1v-3.67L10,14l-2-2.67V15H7V9z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"8,11.33 10,14 12,11.33 12,15 13,15 13,9 12,9 10,12 8,9 7,9 7,15 8,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"warehouse\": {\n    \"name\": \"warehouse\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,8.35V19h-2v-8H6v8H4V8.35l8-3.2L20,8.35z M22,21V7L12,3L2,7v14h6v-8h8v8H22z M11,19H9v2h2V19z M13,16h-2v2h2V16z M15,19h-2v2h2V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.5,17H18V6l-8-3L2,6v11h4.5v-6.5h7V17z M16.5,7.04v8.46H15V9H5v6.5H3.5V7.04L10,4.6L16.5,7.04z M9.25,17h-1.5v-1.5h1.5 V17z M10.75,14.5h-1.5V13h1.5V14.5z M12.25,17h-1.5v-1.5h1.5V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"local_fire_department\": {\n    \"name\": \"local_fire_department\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.2,8.65C15.56,9.07,14.8,9.3,14.02,9.3c-2.06,0-3.77-1.55-3.99-3.55C8.13,7.35,6,9.84,6,13 c0,1.79,0.79,3.4,2.04,4.5c-0.04-0.34-0.23-1.88,1.13-3.22l0,0L12,11.5l2.83,2.78l0,0c1.35,1.33,1.17,2.86,1.13,3.21l0,0.01 C17.21,16.4,18,14.79,18,13C18,11.35,17.34,9.78,16.2,8.65z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,14.31l-1.42,1.4C10.2,16.07,10,16.55,10,17.06c0,1.07,0.9,1.94,2,1.94s2-0.87,2-1.94 c0-0.51-0.2-0.99-0.57-1.36L12,14.31z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,6l-0.44,0.55c-0.42,0.52-0.98,0.75-1.54,0.75C13,7.3,12,6.52,12,5.3V2c0,0-8,4-8,11c0,4.42,3.58,8,8,8s8-3.58,8-8 C20,10.04,18.39,7.38,16,6z M12,19c-1.1,0-2-0.87-2-1.94c0-0.51,0.2-0.99,0.58-1.36l1.42-1.4l1.43,1.4 C13.8,16.07,14,16.55,14,17.06C14,18.13,13.1,19,12,19z M15.96,17.5L15.96,17.5c0.04-0.36,0.22-1.89-1.13-3.22l0,0L12,11.5 l-2.83,2.78l0,0c-1.36,1.34-1.17,2.88-1.13,3.22C6.79,16.4,6,14.79,6,13c0-3.16,2.13-5.65,4.03-7.25 c0.23,1.99,1.93,3.55,3.99,3.55c0.78,0,1.54-0.23,2.18-0.66C17.34,9.78,18,11.35,18,13C18,14.79,17.21,16.4,15.96,17.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,11.75L8.89,13c-0.18,0.2-0.39,0.53-0.39,1c0,0.92,0.77,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5 c0-0.47-0.21-0.8-0.39-1L10,11.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.51,7.48c-1.45,0-2.67-1.03-2.95-2.39C7.12,6.48,5.5,8.59,5.5,11c0,1.34,0.6,2.53,1.54,3.36 C7.01,14.12,6.85,13.02,7.77,12L10,9.5l2.23,2.5c0.92,1.02,0.76,2.12,0.73,2.37h0c0.93-0.83,1.54-2.03,1.54-3.37 c0.01-1.43-0.55-2.99-1.41-3.98C12.63,7.32,12.08,7.48,11.51,7.48z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,11c0.01-2.39-1.2-4.96-3-6l-0.33,0.41c-0.31,0.39-0.74,0.57-1.16,0.57c-0.77,0-1.51-0.59-1.51-1.5V2c0,0-6,3.75-6,9 c0,3.31,2.69,6,6,6S16,14.31,16,11L16,11z M10,15.5c-0.73,0-1.5-0.58-1.5-1.5c0-0.47,0.21-0.8,0.39-1L10,11.75L11.11,13 c0.18,0.2,0.39,0.53,0.39,1C11.5,14.83,10.83,15.5,10,15.5z M12.96,14.37L12.96,14.37c0.03-0.25,0.19-1.35-0.73-2.37L10,9.5 L7.77,12c-0.92,1.02-0.76,2.12-0.73,2.36C6.1,13.53,5.5,12.34,5.5,11c0-2.41,1.62-4.52,3.06-5.92c0.28,1.37,1.5,2.39,2.95,2.39 c0.57,0,1.11-0.16,1.58-0.46c0.85,0.99,1.41,2.55,1.41,3.98C14.5,12.34,13.9,13.55,12.96,14.37z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lunch_dining\": {\n    \"name\": \"lunch_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect fill-opacity=\\\".3\\\" height=\\\"1\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"18\\\"></rect><path d=\\\"M12,5C8.61,5,5.01,5.81,4.18,8h15.66c-0.13-0.37-0.35-0.7-0.66-1.01C17.93,5.73,15.31,5,12,5z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M2,19c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3H2V19z M4,18h16v1H4V18z\\\"></path><path d=\\\"M18.66,11.5c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.09,1-3.33,1v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.32,1l-0.01-1.98C20.38,12.19,20.37,11.5,18.66,11.5z\\\"></path><path d=\\\"M22,9c0.02-4-4.28-6-10-6C6.29,3,2,5,2,9v1h20L22,9L22,9z M4.18,8C5.01,5.81,8.61,5,12,5c3.31,0,5.93,0.73,7.19,1.99 C19.49,7.3,19.71,7.63,19.84,8H4.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4.5c-2.49,0-4.82,0.79-5.93,2h11.87C14.83,5.28,12.5,4.5,10,4.5z\\\" fill-opacity=\\\".3\\\"></path><rect fill-opacity=\\\".3\\\" height=\\\"1\\\" width=\\\"13\\\" x=\\\"3.5\\\" y=\\\"14.5\\\"></rect><path d=\\\"M17.99,8c0.26-2.73-3.42-5-7.99-5C5.44,3,1.76,5.27,2.01,8H17.99z M10,4.5c2.5,0,4.83,0.78,5.94,2H4.07 C5.18,5.29,7.51,4.5,10,4.5z\\\"></path><path d=\\\"M2,15.5C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V13H2V15.5z M3.5,14.5h13v1h-13V14.5z\\\"></path><path d=\\\"M15.34,9.25c-1.58,0-1.72,1-2.67,1c-0.95,0-1.08-1-2.67-1c-1.58,0-1.72,1-2.67,1c-0.95,0-1.09-1-2.67-1 c-1.58,0-1.72,1-2.67,1v1.5c1.58,0,1.72-1,2.67-1c0.95,0,1.09,1,2.67,1c1.58,0,1.72-1,2.67-1c0.95,0,1.08,1,2.67,1 c1.58,0,1.72-1,2.67-1c0.95,0,1.08,1,2.66,1v-1.5C17.05,10.25,16.92,9.25,15.34,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wrong_location\": {\n    \"name\": \"wrong_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,11c0,0.07,0,0.13,0,0.2c0,2.34-1.95,5.44-6,9.14c-4.05-3.7-6-6.79-6-9.14C6,7.57,8.65,5,12,5c0.34,0,0.68,0.03,1,0.08 V3.06C12.67,3.02,12.34,3,12,3c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8c0-0.07,0-0.13,0-0.2H18z\\\"></path><circle cx=\\\"12\\\" cy=\\\"11\\\" r=\\\"2\\\"></circle><polygon points=\\\"22.54,2.88 21.12,1.46 19,3.59 16.88,1.46 15.46,2.88 17.59,5 15.46,7.12 16.88,8.54 19,6.41 21.12,8.54 22.54,7.12 20.41,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14.53,9c0.03,0.24,0.07,0.48,0.07,0.74c0,1.88-1.55,4.21-4.6,6.94c-3.05-2.73-4.6-5.06-4.6-6.94C5.4,6.66,7.77,5,10,5 c0.33,0,0.67,0.05,1,0.12V4.09C10.67,4.03,10.34,4,10,4C7.06,4,4.4,6.25,4.4,9.74c0,2.32,1.87,5.08,5.6,8.26 c3.73-3.18,5.6-5.94,5.6-8.26c0-0.25-0.02-0.5-0.05-0.74H14.53z\\\"></path><circle cx=\\\"10\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><polygon points=\\\"17.47,3.23 16.77,2.53 15,4.29 13.23,2.53 12.53,3.23 14.29,5 12.53,6.77 13.23,7.47 15,5.71 16.77,7.47 17.47,6.77 15.71,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"bus_alert\": {\n    \"name\": \"bus_alert\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M4,16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3H4V16z M13.5,14c0.83,0,1.5,0.67,1.5,1.5S14.33,17,13.5,17 S12,16.33,12,15.5S12.67,14,13.5,14z M6.5,14C7.33,14,8,14.67,8,15.5S7.33,17,6.5,17S5,16.33,5,15.5S5.67,14,6.5,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.43,6H11c0-0.33,0.03-0.66,0.08-0.98C7.4,4.91,5.25,5.29,4.43,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,11V8h7.29C11.1,7.37,11,6.7,11,6H4.43c0.83-0.71,2.98-1.09,6.65-0.98c0.1-0.7,0.3-1.37,0.59-1.99C2.97,2.67,2,5.02,2,7 v9.5c0,0.95,0.38,1.81,1,2.44V21c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1h8v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-2.06 c0.62-0.63,1-1.49,1-2.44V13c-1.91,0-3.63-0.76-4.89-2H4z M16,16c0,1.1-0.9,2-2,2H6c-1.1,0-2-0.9-2-2v-3h12V16z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"13.5\\\" cy=\\\"15.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M18,1c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,1,18,1z M18.5,9h-1V8h1V9z M18.5,7h-1V3h1V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_gas_station\": {\n    \"name\": \"local_gas_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h6v-7H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 10.5V19H6v-7h6v1.5zm0-3.5H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"directions_run\": {\n    \"name\": \"directions_run\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.49 3.48c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm-.6 11.5l2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4 1-4.4z\\\"></path>\"\n      }\n    }\n  },\n  \"sailing\": {\n    \"name\": \"sailing\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,11.5H6.83L9,8.38V11.5z M15.38,5.24c1.42,1.52,2.88,3.72,3.41,6.26h-3.68c0.21-1.1,0.39-2.46,0.39-4 C15.5,6.71,15.45,5.95,15.38,5.24z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,13.5V2L3,13.5H11z M9,11.5H6.83L9,8.38V11.5z M21,13.5C21,6.5,14.5,1,12.5,1c0,0,1,3,1,6.5s-1,6-1,6H21z M15.38,5.24 c1.42,1.52,2.88,3.72,3.41,6.26h-3.68c0.21-1.1,0.39-2.46,0.39-4C15.5,6.71,15.45,5.95,15.38,5.24z M22,15H2 c0.31,1.53,1.16,2.84,2.33,3.73C4.98,18.46,5.55,18.01,6,17.5C6.73,18.34,7.8,19,9,19s2.27-0.66,3-1.5c0.73,0.84,1.8,1.5,3,1.5 s2.26-0.66,3-1.5c0.45,0.51,1.02,0.96,1.67,1.23C20.84,17.84,21.69,16.53,22,15z M22,23v-2h-1c-1.04,0-2.08-0.35-3-1 c-1.83,1.3-4.17,1.3-6,0c-1.83,1.3-4.17,1.3-6,0c-0.91,0.65-1.96,1-3,1H2l0,2h1c1.03,0,2.05-0.25,3-0.75c1.89,1,4.11,1,6,0 c1.89,1,4.11,1,6,0h0c0.95,0.5,1.97,0.75,3,0.75H22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.5,11.5V2L3,11.5H9.5z M8,10H5.84L8,6.85V10z M17,11.5C17,5.5,12.03,1,10.5,1c0,0,0.8,2.5,0.8,5.5s-0.8,5-0.8,5H17z M12.68,4.35c1.15,1.34,2.33,3.32,2.7,5.65h-2.92c0.18-0.92,0.34-2.12,0.34-3.5C12.8,5.74,12.75,5.02,12.68,4.35z M17.5,17.5H18 l0,1.5h-0.5c-0.86,0-1.71-0.2-2.5-0.6c-1.58,0.8-3.43,0.8-5,0c-1.58,0.8-3.42,0.8-5,0C4.21,18.8,3.36,19,2.5,19H2v-1.5h0.5 c0.87,0,1.74-0.33,2.5-1c1.53,1.33,3.47,1.33,5,0c1.53,1.33,3.48,1.33,5,0C15.76,17.17,16.63,17.5,17.5,17.5z M16.08,15.55 c-0.41-0.27-0.78-0.64-1.08-1.05c-0.61,0.84-1.5,1.5-2.5,1.5s-1.89-0.66-2.5-1.5C9.39,15.34,8.5,16,7.5,16S5.61,15.34,5,14.5 c-0.3,0.41-0.67,0.78-1.08,1.05C2.94,14.83,2.24,13.76,2,12.5h16C17.76,13.76,17.06,14.83,16.08,15.55z\\\"></path><path d=\\\"M8,10H5.84L8,6.85V10z M12.68,4.35c1.15,1.34,2.33,3.32,2.7,5.65h-2.92c0.18-0.92,0.34-2.12,0.34-3.5 C12.8,5.74,12.75,5.02,12.68,4.35z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"roundabout_left\": {\n    \"name\": \"roundabout_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.08,8c0.48-2.84,2.94-5,5.92-5c3.31,0,6,2.69,6,6c0,2.97-2.16,5.44-5,5.92L17,21h-2l0-6.09c0-0.98,0.71-1.8,1.67-1.97 C18.56,12.63,20,10.98,20,9c0-2.21-1.79-4-4-4c-1.98,0-3.63,1.44-3.94,3.33C11.89,9.29,11.07,10,10.09,10l-4.26,0l1.59,1.59L6,13 L2,9l4-4l1.41,1.41L5.83,8L10.08,8z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.25,3c-2.37,0-4.33,1.73-4.69,4L4.87,7l1.19-1.19L5,4.75l-3,3l3,3l1.06-1.06L4.87,8.5l3.69,0 c0.74,0,1.36-0.54,1.48-1.25c0.24-1.56,1.59-2.75,3.21-2.75l0,0c1.79,0,3.25,1.46,3.25,3.25c0,1.62-1.18,2.96-2.73,3.21 c-0.72,0.11-1.27,0.67-1.27,1.4l0,4.64H14v-4.56l0,0c2.27-0.36,4-2.32,4-4.69C18,5.13,15.87,3,13.25,3\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_transfer\": {\n    \"name\": \"no_transfer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.83,12H18v3.17L14.83,12z M9.17,12l5,5H6.63l-0.29-0.27 C6.21,16.62,6,16.37,6,16v-4H9.17z M10,14.5c0-0.83-0.67-1.5-1.5-1.5S7,13.67,7,14.5C7,15.33,7.67,16,8.5,16S10,15.33,10,14.5z M7.82,4.99h9.83C17.11,4.46,15.69,4,12,4C9.6,4,8.17,4.2,7.31,4.48L7.82,4.99z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.5,13c0.83,0,1.5,0.67,1.5,1.5S9.33,16,8.5,16S7,15.33,7,14.5S7.67,13,8.5,13z M7.31,4.48C8.17,4.2,9.6,4,12,4 c3.69,0,5.11,0.46,5.66,0.99H7.82l2,2H18V10h-5.17l2,2H18v3.17l1.81,1.81C19.92,16.67,20,16.35,20,16V6c0-3.5-3.58-4-8-4 C9.48,2,7.24,2.16,5.78,2.95L7.31,4.48z M19.78,22.61l-1.64-1.64C18.09,20.98,18.05,21,18,21h-1c-0.55,0-1-0.45-1-1v-1H8v1 c0,0.55-0.45,1-1,1H6c-0.55,0-1-0.45-1-1v-1.78C4.39,17.67,4,16.88,4,16V6.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M6,8.83 V10h1.17L6,8.83z M14.17,17l-5-5H6v4c0,0.37,0.21,0.62,0.34,0.73L6.63,17H8H14.17z\\\"></path>\"\n      }\n    }\n  },\n  \"church\": {\n    \"name\": \"church\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,10.04L12,8l-4,2.04v3.35l-4,1.81V20h5v-2.04c0-1.69,1.35-3.06,3-3.06c1.65,0,3,1.37,3,3.06V20h5v-4.79 l-4-1.81V10.04z M12,13.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,13.5,12,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6,9v3.22L2,14v8h9v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4h9v-8L18,12.22z M20,20h-5v-2.04c0-1.69-1.35-3.06-3-3.06c-1.65,0-3,1.37-3,3.06V20H4v-4.79l4-1.81v-3.35L12,8l4,2.04v3.35l4,1.81V20z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.5,8.85L10,6.75l-3.5,2.1v3.23l-3,1v3.42h4V15c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v1.5h4v-3.42 l-3-1V8.85z M10,11.25c-0.69,0-1.25-0.56-1.25-1.25S9.31,8.75,10,8.75s1.25,0.56,1.25,1.25S10.69,11.25,10,11.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,11V8l-4.25-2.55v-1.2h1.75v-1.5h-1.75V1h-1.5v1.75H7.5v1.5h1.75v1.2L5,8v3l-3,1v6h7v-3c0-0.55,0.45-1,1-1s1,0.45,1,1 v3h7v-6L15,11z M16.5,16.5h-4V15c0-1.38-1.12-2.5-2.5-2.5S7.5,13.62,7.5,15v1.5h-4v-3.42l3-1V8.85l3.5-2.1l3.5,2.1v3.23l3,1V16.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"local_offer\": {\n    \"name\": \"local_offer\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.41 2.58C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42l-9-9zM13 20.01 4 11V4h7v-.01l9 9-7 7.02z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"not_listed_location\": {\n    \"name\": \"not_listed_location\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 10.2c0 2.57-2.1 5.79-6.16 9.51l-.34.3-.34-.31C7.6 15.99 5.5 12.77 5.5 10.2c0-3.84 2.82-6.7 6.5-6.7s6.5 2.85 6.5 6.7z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M12.01 16c-.27 0-.52-.1-.71-.29-.2-.2-.29-.43-.29-.71-.01-.55.43-.99.98-1h.02c.28 0 .51.1.71.29.18.19.28.43.28.7s-.1.51-.29.71-.43.3-.7.3zm-.88-3.66c0-.45.1-.84.29-1.16.19-.33.53-.7 1-1.12.28-.25.48-.47.61-.66s.19-.4.19-.64c0-.29-.11-.53-.32-.74-.21-.2-.5-.3-.85-.3-.37 0-.74.1-.96.3-.21.2-.4.45-.4.98H9c0-1.01.46-1.73.97-2.21C10.53 6.28 11.25 6 12 6c.59 0 1.11.12 1.57.35.88.43 1.43 1.33 1.43 2.31 0 .49-.1.9-.31 1.25s-.48.71-.89 1.09c-.32.3-.53.56-.65.77s-.18.49-.18.81V13h-1.85v-.66h.01zM18 10.2C18 6.57 15.35 4 12 4s-6 2.57-6 6.2c0 2.34 1.95 5.44 6 9.14 4.05-3.7 6-6.8 6-9.14zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z\\\"></path>\"\n      }\n    }\n  },\n  \"navigation\": {\n    \"name\": \"navigation\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.72 17.7l3.47-1.53.81-.36.81.36 3.47 1.53L12 7.27z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2 4.5 20.29zm8.31-4.12l-.81-.36-.81.36-3.47 1.53L12 7.27l4.28 10.43-3.47-1.53z\\\"></path>\"\n      }\n    }\n  },\n  \"local_drink\": {\n    \"name\": \"local_drink\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 20.01L17 20l1.1-10H5.89L7 20.01zm5-9.41s3 3.4 3 5.4c0 1.66-1.34 3-3 3s-3-1.34-3-3c0-2 3-5.4 3-5.4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.01 20.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3l2.01 18.23zM17 20l-10 .01L5.89 10H18.1L17 20zm1.76-16l-.43 4H5.67l-.44-4h13.53zM12 19c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S9 14 9 16c0 1.66 1.34 3 3 3zm0-5.09c.59.91 1 1.73 1 2.09 0 .55-.45 1-1 1s-1-.45-1-1c0-.37.41-1.19 1-2.09z\\\"></path>\"\n      }\n    }\n  },\n  \"360\": {\n    \"name\": \"360\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5S2 9.24 2 12c0 2.24 2.94 4.13 7 4.77z\\\"></path>\"\n      }\n    }\n  },\n  \"moped\": {\n    \"name\": \"moped\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,13v1h4v-3H6C4.9,11,4,11.9,4,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,7c0-1.1-0.9-2-2-2h-3v2h3v2.65L13.52,14H10V9H6c-2.21,0-4,1.79-4,4v3h2c0,1.66,1.34,3,3,3s3-1.34,3-3h4.48L19,10.35V7 z M7,17c-0.55,0-1-0.45-1-1h2C8,16.55,7.55,17,7,17z M8,14H4v-1c0-1.1,0.9-2,2-2h2V14z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,13c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3S20.66,13,19,13z M19,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1 S19.55,17,19,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,11v1h4V9H6C4.9,9,4,9.9,4,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,7.5C15,6.67,14.33,6,13.5,6H12v1h1.5C13.78,7,14,7.22,14,7.5v1.29L10.79,12H9V8H6c-1.66,0-3,1.34-3,3v2h2 c0,1.1,0.9,2,2,2s2-0.9,2-2h2.21L15,9.21V7.5z M7,14c-0.55,0-1-0.45-1-1h2C8,13.55,7.55,14,7,14z M8,12H4v-1c0-1.1,0.9-2,2-2h2V12 z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M15,11c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C17,11.9,16.1,11,15,11z M15,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C16,13.55,15.55,14,15,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"local_florist\": {\n    \"name\": \"local_florist\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 13c.62 0 1.12-.49 1.14-1.1l-.11-1.09c-.32.12-.67.19-1.03.19s-.7-.07-1.02-.19l-.12 1.09c.02.61.52 1.1 1.14 1.1zM8.17 7.1l.88.42c.12-.73.51-1.37 1.06-1.83l-.81-.56c-.18-.13-.41-.2-.64-.2-.63 0-1.14.51-1.14 1.14-.01.44.25.83.65 1.03zm7.66 1.8l-.88-.42c-.12.73-.51 1.37-1.06 1.83l.81.57c.18.13.41.2.64.2.63 0 1.14-.51 1.14-1.14.01-.45-.25-.84-.65-1.04zm-.88-1.38l.88-.42c.4-.19.66-.59.66-1.03 0-.63-.51-1.14-1.14-1.14-.24 0-.46.07-.65.2l-.81.55c.55.46.94 1.1 1.06 1.84zM12 5c.36 0 .71.07 1.03.19l.11-1.09C13.12 3.49 12.62 3 12 3s-1.12.49-1.14 1.1l.12 1.09C11.3 5.07 11.64 5 12 5zm-3.34 6.07c.24 0 .46-.07.65-.2l.81-.55c-.56-.46-.95-1.1-1.07-1.84l-.88.42c-.4.2-.66.59-.66 1.03 0 .63.52 1.14 1.15 1.14zm9.9 4.37c-1.9.71-3.42 2.22-4.12 4.12 1.9-.71 3.41-2.22 4.12-4.12zm-13.12 0c.71 1.9 2.22 3.42 4.12 4.12-.71-1.9-2.22-3.41-4.12-4.12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.66 13.07c.15 0 .29-.01.43-.03C9.56 14.19 10.69 15 12 15s2.44-.81 2.91-1.96c.14.02.29.03.43.03 1.73 0 3.14-1.41 3.14-3.14 0-.71-.25-1.39-.67-1.93.43-.54.67-1.22.67-1.93 0-1.73-1.41-3.14-3.14-3.14-.15 0-.29.01-.43.03C14.44 1.81 13.31 1 12 1s-2.44.81-2.91 1.96c-.14-.02-.29-.03-.43-.03-1.73 0-3.14 1.41-3.14 3.14 0 .71.25 1.39.67 1.93-.43.54-.68 1.22-.68 1.93 0 1.73 1.41 3.14 3.15 3.14zm6.68-2c-.24 0-.46-.07-.64-.2l-.81-.57c.55-.45.94-1.09 1.06-1.83l.88.42c.4.19.66.59.66 1.03 0 .64-.52 1.15-1.15 1.15zm-.65-5.94c.2-.13.42-.2.65-.2.63 0 1.14.51 1.14 1.14 0 .44-.25.83-.66 1.03l-.88.42c-.12-.74-.51-1.38-1.07-1.83l.82-.56zM12 3c.62 0 1.12.49 1.14 1.1l-.11 1.09C12.71 5.07 12.36 5 12 5s-.7.07-1.02.19l-.12-1.09c.02-.61.52-1.1 1.14-1.1zm1 5c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1zm-2.02 2.81c.32.12.66.19 1.02.19s.71-.07 1.03-.19l.11 1.09c-.02.61-.52 1.1-1.14 1.1s-1.12-.49-1.14-1.1l.12-1.09zM8.66 4.93c.24 0 .46.07.64.2l.81.56c-.55.45-.94 1.09-1.06 1.83l-.88-.42c-.4-.2-.66-.59-.66-1.03 0-.63.52-1.14 1.15-1.14zM8.17 8.9l.88-.42c.12.74.51 1.38 1.07 1.83l-.81.55c-.2.13-.42.2-.65.2-.63 0-1.14-.51-1.14-1.14-.01-.43.25-.82.65-1.02zM12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zm6.56-6.56c-.71 1.9-2.22 3.42-4.12 4.12.71-1.9 2.22-3.41 4.12-4.12zM3 13c0 4.97 4.03 9 9 9 0-4.97-4.03-9-9-9zm2.44 2.44c1.9.71 3.42 2.22 4.12 4.12-1.9-.71-3.41-2.22-4.12-4.12z\\\"></path>\"\n      }\n    }\n  },\n  \"local_atm\": {\n    \"name\": \"local_atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18h16V6H4v12zm5-4h4v-1h-3c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1h1V7h2v1h2v2h-4v1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-1v1h-2v-1H9v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12zm-9-1h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"atm\": {\n    \"name\": \"atm\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.5 13.5h2V15H7v-5c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v5h1.5v-1.5zm0-3h2V12h-2v-1.5zm13.5 0h1V14h1.5v-3.51h1V15H22v-5c0-.55-.45-1-1-1h-4.5c-.55 0-1 .45-1 1v5H17v-4.5zM10.25 15h1.5v-4.5H14V9H8v1.5h2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"local_shipping\": {\n    \"name\": \"local_shipping\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H15V6H3v9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 8V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4h-3zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9-3H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3V6h12v9zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-6V9.5h2.5l1.96 2.5H17z\\\"></path>\"\n      }\n    }\n  },\n  \"wine_bar\": {\n    \"name\": \"wine_bar\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,13c-1.86,0-3.41-1.28-3.86-3h7.72C15.41,11.72,13.86,13,12,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,3l0,6c0,2.97,2.16,5.43,5,5.91V19H8v2h8v-2h-3v-4.09c2.84-0.48,5-2.94,5-5.91V3H6z M12,13c-1.86,0-3.41-1.28-3.86-3h7.72 C15.41,11.72,13.86,13,12,13z M16,8H8l0-3h8L16,8z\\\"></path>\"\n      }\n    }\n  },\n  \"transfer_within_a_station\": {\n    \"name\": \"transfer_within_a_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.49 13.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 6H14v1.5h5.51V23L22 20.5 19.51 18zM7.5 3.5c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm2.05 6.9C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3z\\\"></path>\"\n      }\n    }\n  },\n  \"ramen_dining\": {\n    \"name\": \"ramen_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.73,18.39l1.27,0.5V20h4v-1.11l1.27-0.5c2.16-0.85,3.74-2.47,4.4-4.39H4.34 C4.99,15.92,6.58,17.54,8.73,18.39z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M22,3.51V2L4,3.99V12H2c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25H10.5V8H22V6.5H10.5V4.78L22,3.51z M8,5.06l1-0.11V6.5H8V5.06z M8,8h1v4H8V8z M5.5,5.34l1-0.11V6.5h-1V5.34z M5.5,8h1v4h-1V8z M19.66,14 c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.89V20h-4v-1.11l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.56,15.02L8.5,15.4v1.01v0.09h3v-0.09V15.4l0.94-0.38 c1.99-0.81,3.41-2.5,3.89-4.52H3.67C4.15,12.52,5.57,14.22,7.56,15.02z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,3.01V2L4,3.54V9H2c0,3.36,2.07,6.23,5,7.41V18h6v-1.59c2.93-1.19,5-4.06,5-7.41H9V7h9V6H9V3.99L18,3.01z M7,4.21 L8,4.1V6H7V4.21z M7,7h1v2H7V7z M5,4.43l1-0.11V6H5V4.43z M5,7h1v2H5V7z M16.33,10.5c-0.48,2.02-1.9,3.72-3.89,4.52L11.5,15.4 v1.01v0.09h-3v-0.09V15.4l-0.94-0.38c-1.99-0.81-3.41-2.5-3.89-4.52H16.33z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cleaning_services\": {\n    \"name\": \"cleaning_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"3\\\"></rect><path d=\\\"M16,13H8c-1.65,0-3,1.35-3,3v5h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2 v-3c0-0.55,0.45-1,1-1s1,0.45,1,1v3h2v-5C19,14.35,17.65,13,16,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,11h-1V3c0-1.1-0.9-2-2-2h-2C9.9,1,9,1.9,9,3v8H8c-2.76,0-5,2.24-5,5v7h18v-7C21,13.24,18.76,11,16,11z M11,3h2v8h-2V3 z M19,21h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3h-2v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H9v-3c0-0.55-0.45-1-1-1s-1,0.45-1,1v3H5 v-5c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"4\\\"></rect><path d=\\\"M13,10H7c-1.1,0-2,0.9-2,2v4h2v-1.5C7,14.22,7.22,14,7.5,14S8,14.22,8,14.5V16h1.5v-1.5 c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V16H12v-1.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V16h2v-4C15,10.9,14.1,10,13,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,9h-1V4c0-0.55-0.45-1-1-1H9C8.45,3,8,3.45,8,4v5H7c-1.66,0-3,1.34-3,3v5c6.51,0,12,0,12,0v-5C16,10.34,14.66,9,13,9z M9,4h2v5H9V4z M15,16h-2v-1.5c0-0.28-0.22-0.5-0.5-0.5S12,14.22,12,14.5V16h-1.5v-1.5c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5 V16H8v-1.5C8,14.22,7.78,14,7.5,14S7,14.22,7,14.5V16H5v-4c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sos\": {\n    \"name\": \"sos\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,7h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V9C15.5,7.9,14.6,7,13.5,7z M13.5,15h-3V9h3V15z M1,15h4 v-2H3c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h4v2H3v2h2c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2H1V15z M17,15h4v-2h-2c-1.1,0-2-0.9-2-2V9 c0-1.1,0.9-2,2-2h4v2h-4v2h2c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.38,12c0,0.82,0.68,1.5,1.5,1.5h2.25c0.82,0,1.5-0.68,1.5-1.5V8c0-0.82-0.68-1.5-1.5-1.5H8.88c-0.82,0-1.5,0.68-1.5,1.5 V12z M11.12,12H8.88V8h2.25V12z M1.5,12h3v-1.25H3c-0.83,0-1.5-0.67-1.5-1.5V8c0-0.83,0.67-1.5,1.5-1.5h3V8H3v1.25h1.5 c0.83,0,1.5,0.67,1.5,1.5V12c0,0.83-0.67,1.5-1.5,1.5h-3V12z M14,12h3v-1.25h-1.5c-0.83,0-1.5-0.67-1.5-1.5V8 c0-0.83,0.67-1.5,1.5-1.5h3V8h-3v1.25H17c0.83,0,1.5,0.67,1.5,1.5V12c0,0.83-0.67,1.5-1.5,1.5h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turn_sharp_right\": {\n    \"name\": \"turn_sharp_right\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18,6.83l1.59,1.59L21,7l-4-4l-4,4l1.41,1.41L16,6.83V13H8c-1.1,0-2,0.9-2,2v6h2v-6h8c1.1,0,2-0.9,2-2V6.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.5,10.5c0,0.83-0.67,1.5-1.5,1.5l-6,0v5H5.5v-5c0-0.83,0.67-1.5,1.5-1.5l6,0l0-4.63l-1.19,1.19L10.75,6l3-3l3,3 l-1.06,1.06L14.5,5.87L14.5,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"directions_boat_filled\": {\n    \"name\": \"directions_boat_filled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.77,12.66l-1.12,3.97c-0.78-0.43-1.07-0.86-2.65-2.67C14.4,15.78,13.57,17,12,17c-1.53,0-2.34-1.15-4-3.04 c-1.6,1.82-1.87,2.21-2.65,2.65l-1.13-3.96L12,10.11L19.77,12.66z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.77,12.66l-1.12,3.97c-0.78-0.43-1.07-0.86-2.65-2.67C14.4,15.78,13.57,17,12,17c-1.53,0-2.34-1.15-4-3.04 c-1.6,1.82-1.87,2.21-2.65,2.65l-1.13-3.96L12,10.11L19.77,12.66z M15,1H9v3H6C4.9,4,4,4.9,4,6v4.62l-1.29,0.42 c-0.63,0.19-0.81,0.84-0.66,1.28L3.95,19H4c1.6,0,3.02-0.88,4-2c0.98,1.12,2.4,2,4,2s3.02-0.88,4-2c0.98,1.12,2.4,2,4,2h0.05 l1.91-6.68c0.11-0.37,0.04-1.06-0.66-1.28L20,10.62V6c0-1.1-0.9-2-2-2h-3V1L15,1z M6,9.97V6h12v3.97L12,8L6,9.97L6,9.97z M16,19.68 c-1.22,0.85-2.61,1.28-4,1.28s-2.78-0.43-4-1.28C6.78,20.53,5.39,21,4,21H2v2h2c1.38,0,2.74-0.35,4-0.99c1.26,0.64,2.63,0.97,4,0.97 s2.74-0.32,4-0.97c1.26,0.65,2.62,0.99,4,0.99h2v-2h-2C18.61,21,17.22,20.53,16,19.68L16,19.68z\\\"></path>\"\n      }\n    }\n  },\n  \"rate_review\": {\n    \"name\": \"rate_review\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.17l.59-.59.58-.58H20V4H4v13.17zM18 14h-7.5l2-2H18v2zM6 11.53l5.88-5.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6v-2.47z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9.5-2H18v-2h-5.5zm3.86-5.87c.2-.2.2-.51 0-.71l-1.77-1.77c-.2-.2-.51-.2-.71 0L6 11.53V14h2.47l5.89-5.87z\\\"></path>\"\n      }\n    }\n  },\n  \"set_meal\": {\n    \"name\": \"set_meal\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3 s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.05,17.56L3.08,18.5L3,17l17.98-0.94L21.05,17.56z M21,19.48H3v1.5h18V19.48z M23,13V4c0-1.1-0.9-2-2-2H3 C1.9,2,1,2.9,1,4v9c0,1.1,0.9,2,2,2h18C22.1,15,23,14.1,23,13z M21,13H3V4h18V13z M20,6c-1.68,0-3.04,0.98-3.21,2.23 C16.15,7.5,14.06,5.5,10.25,5.5c-4.67,0-6.75,3-6.75,3s2.08,3,6.75,3c3.81,0,5.9-2,6.54-2.73C16.96,10.02,18.32,11,20,11V6z\\\"></path>\"\n      }\n    }\n  },\n  \"terrain\": {\n    \"name\": \"terrain\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h3.04l-1.52-2.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z\\\"></path>\"\n      }\n    }\n  },\n  \"festival\": {\n    \"name\": \"festival\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M5.24,14.42C5.2,16.18,5.06,18.14,4.66,20h2.67c0.27-1.94,0.43-4.07,0.52-5.93C7.54,13.9,7.25,13.7,7,13.44 C6.53,13.93,5.92,14.27,5.24,14.42z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,11H8c0,0.83,0.67,1.5,1.5,1.5S11,11.83,11,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,11H3c0,0.83,0.67,1.5,1.5,1.5S6,11.83,6,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4.71C10.67,5.85,8.51,7.55,5.89,9h12.23C15.49,7.55,13.33,5.85,12,4.71z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.5,12.5c0.83,0,1.5-0.67,1.5-1.5h-3C18,11.83,18.67,12.5,19.5,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,12.5c0.83,0,1.5-0.67,1.5-1.5h-3C13,11.83,13.67,12.5,14.5,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,13.44c-0.25,0.25-0.54,0.45-0.85,0.62c0.1,1.87,0.26,4,0.52,5.93h2.67c-0.39-1.86-0.54-3.82-0.57-5.58 C18.08,14.27,17.47,13.93,17,13.44z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2c0,0-5,5-11,7v2c0,1.49,0.93,2.75,2.24,3.26C3.2,16.76,2.92,19.69,2,22h20c-0.92-2.31-1.2-5.24-1.24-7.74 C22.07,13.75,23,12.49,23,11V9C17,7,12,2,12,2z M12,4.71c1.33,1.14,3.49,2.84,6.11,4.29H5.89C8.51,7.55,10.67,5.85,12,4.71z M3,11 h3c0,0.83-0.67,1.5-1.5,1.5S3,11.83,3,11z M7.33,20H4.66c0.39-1.86,0.54-3.82,0.57-5.58c0.68-0.15,1.29-0.49,1.76-0.98 c0.25,0.25,0.54,0.45,0.85,0.62C7.76,15.93,7.6,18.06,7.33,20z M8,11h3c0,0.83-0.67,1.5-1.5,1.5S8,11.83,8,11z M9.35,20 c0.24-1.83,0.39-3.78,0.48-5.53c0.84-0.08,1.61-0.45,2.17-1.02c0.56,0.57,1.32,0.94,2.17,1.02c0.1,1.75,0.24,3.7,0.48,5.53H9.35z M14.5,12.5c-0.83,0-1.5-0.67-1.5-1.5h3C16,11.83,15.33,12.5,14.5,12.5z M16.67,20c-0.27-1.94-0.43-4.07-0.52-5.93 c0.31-0.17,0.61-0.37,0.85-0.62c0.47,0.48,1.08,0.83,1.76,0.98c0.03,1.76,0.18,3.72,0.57,5.58H16.67z M19.5,12.5 c-0.83,0-1.5-0.67-1.5-1.5h3C21,11.83,20.33,12.5,19.5,12.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M5.12,9H2.5c0,0.72,0.59,1.31,1.31,1.31S5.12,9.72,5.12,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.39,11.75c-0.08,1.62-0.21,3.42-0.44,4.75h2.36c0.31-2.21,0.4-4.09,0.43-4.97 c-0.33-0.16-0.62-0.37-0.87-0.64C5.48,11.32,4.97,11.62,4.39,11.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,4.05C8.93,5.01,7.21,6.42,5.28,7.5h9.45C12.79,6.42,11.07,5.01,10,4.05z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.25,9H6.63c0,0.72,0.59,1.31,1.31,1.31S9.25,9.72,9.25,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.75,9c0,0.72,0.59,1.31,1.31,1.31S13.37,9.72,13.37,9H10.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.19,10.31c0.72,0,1.31-0.59,1.31-1.31h-2.62C14.88,9.72,15.47,10.31,16.19,10.31z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.13,10.89c-0.24,0.27-0.54,0.48-0.87,0.64c0.03,0.88,0.11,2.76,0.43,4.97h2.36 c-0.23-1.33-0.36-3.13-0.44-4.75C15.03,11.62,14.52,11.32,14.13,10.89z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c0,0-5,5-9,5.5V9c0,1.23,0.79,2.26,1.89,2.64C2.77,14.11,2.53,16.95,2,18h16c-0.06-0.12-0.68-1.27-0.91-6.35 C18.2,11.27,19,10.24,19,9V7.5C15,7,10,2,10,2z M10,4.05c1.07,0.95,2.79,2.37,4.72,3.45H5.28C7.21,6.42,8.93,5.01,10,4.05z M2.5,9 h2.62c0,0.72-0.59,1.31-1.31,1.31S2.5,9.72,2.5,9z M6.31,16.5H3.95c0.23-1.33,0.36-3.13,0.44-4.75c0.58-0.12,1.09-0.43,1.48-0.85 c0.24,0.27,0.54,0.48,0.87,0.64C6.71,12.41,6.62,14.29,6.31,16.5z M6.63,9h2.62c0,0.72-0.59,1.31-1.31,1.31S6.63,9.72,6.63,9z M7.83,16.5c0.28-2.05,0.37-3.77,0.4-4.72c0.7-0.08,1.32-0.39,1.77-0.88c0.45,0.49,1.07,0.81,1.77,0.88 c0.03,0.95,0.13,2.67,0.4,4.72H7.83z M12.06,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C13.37,9.72,12.79,10.31,12.06,10.31z M13.69,16.5c-0.31-2.21-0.4-4.09-0.43-4.97c0.33-0.16,0.62-0.37,0.87-0.64c0.39,0.42,0.9,0.73,1.48,0.85 c0.08,1.62,0.21,3.42,0.44,4.75H13.69z M16.19,10.31c-0.72,0-1.31-0.59-1.31-1.31h2.62C17.5,9.72,16.91,10.31,16.19,10.31z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turn_slight_left\": {\n    \"name\": \"turn_slight_left\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.66,6V4H6v5.66h2V7.41l5,5V20h2v-7.58c0-0.53-0.21-1.04-0.59-1.41l-5-5H11.66z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.5,10.56V16H11v-5.44l-4-4l0,1.69H5.5L5.5,4l4.25,0v1.5l-1.69,0l4,4C12.34,9.78,12.5,10.16,12.5,10.56z\\\"></path></g>\"\n      }\n    }\n  },\n  \"medical_services\": {\n    \"name\": \"medical_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M4,20h16V8H4V20z M8,13h3v-3h2v3h3v2h-3v3h-2v-3H8V13z\\\"></path></g><path d=\\\"M20,6h-4V4c0-1.1-0.9-2-2-2h-4C8.9,2,8,2.9,8,4v2H4C2.9,6,2,6.9,2,8v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8 C22,6.9,21.1,6,20,6z M10,4h4v2h-4V4z M20,20H4V8h16V20z\\\"></path><polygon points=\\\"11,18 13,18 13,15 16,15 16,13 13,13 13,10 11,10 11,13 8,13 8,15 11,15\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M4,16h12V7H4V16z M7.5,11h2V9h1v2h2v1h-2v2h-1v-2h-2V11z\\\"></path></g><path d=\\\"M16,6h-3V4c0-0.55-0.45-1-1-1H8C7.45,3,7,3.45,7,4v2H4C3.45,6,3,6.45,3,7v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V7 C17,6.45,16.55,6,16,6z M8,4h4v2H8V4z M16,16H4V7h12V16z\\\"></path><polygon points=\\\"9.5,14 10.5,14 10.5,12 12.5,12 12.5,11 10.5,11 10.5,9 9.5,9 9.5,11 7.5,11 7.5,12 9.5,12\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"directions_walk\": {\n    \"name\": \"directions_walk\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.56-.89-1.68-1.25-2.65-.84L6 8.3V13h2V9.6l1.8-.7\\\"></path>\"\n      }\n    }\n  },\n  \"kebab_dining\": {\n    \"name\": \"kebab_dining\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,5C15.22,5,15,4.78,15,4.5S15.22,4,15.5,4h3C18.78,4,19,4.22,19,4.5S18.78,5,18.5,5H15.5z M18.5,16 c0.28,0,0.5,0.22,0.5,0.5S18.78,17,18.5,17h-3c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5H18.5z M19,10v1h-4v-1H19z M5.5,5 C5.22,5,5,4.78,5,4.5S5.22,4,5.5,4h3C8.78,4,9,4.22,9,4.5S8.78,5,8.5,5H5.5z M8.5,16C8.78,16,9,16.22,9,16.5S8.78,17,8.5,17h-3 C5.22,17,5,16.78,5,16.5S5.22,16,5.5,16H8.5z M9,10v1H5v-1H9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.75,7h0.75C19.88,7,21,5.88,21,4.5C21,3.12,19.88,2,18.5,2h-0.75V1h-1.5v1H15.5C14.12,2,13,3.12,13,4.5 C13,5.88,14.12,7,15.5,7h0.75v1H13v5h3.25v1H15.5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5h0.75v4h1.5v-4h0.75 c1.38,0,2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5h-0.75v-1H21V8h-3.25V7z M15.5,5C15.22,5,15,4.78,15,4.5S15.22,4,15.5,4h3 C18.78,4,19,4.22,19,4.5S18.78,5,18.5,5H15.5z M18.5,16c0.28,0,0.5,0.22,0.5,0.5S18.78,17,18.5,17h-3c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5H18.5z M19,10v1h-4v-1H19z M7.75,7H8.5C9.88,7,11,5.88,11,4.5C11,3.12,9.88,2,8.5,2H7.75V1h-1.5v1H5.5 C4.12,2,3,3.12,3,4.5C3,5.88,4.12,7,5.5,7h0.75v1H3v5h3.25v1H5.5C4.12,14,3,15.12,3,16.5C3,17.88,4.12,19,5.5,19h0.75v4h1.5v-4H8.5 c1.38,0,2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5H7.75v-1H11V8H7.75V7z M5.5,5C5.22,5,5,4.78,5,4.5S5.22,4,5.5,4h3 C8.78,4,9,4.22,9,4.5S8.78,5,8.5,5H5.5z M8.5,16C8.78,16,9,16.22,9,16.5S8.78,17,8.5,17h-3C5.22,17,5,16.78,5,16.5S5.22,16,5.5,16 H8.5z M9,10v1H5v-1H9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5,4.5C4.72,4.5,4.5,4.28,4.5,4S4.72,3.5,5,3.5h2c0.28,0,0.5,0.22,0.5,0.5S7.28,4.5,7,4.5H5z M7,13.5 c0.28,0,0.5,0.22,0.5,0.5S7.28,14.5,7,14.5H5c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5H7z M7.5,8.5v1h-3v-1H7.5z M13,4.5 c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5S15.28,4.5,15,4.5H13z M15,13.5c0.28,0,0.5,0.22,0.5,0.5 s-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5H15z M15.5,8.5v1h-3v-1H15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.5,6H7c1.1,0,2-0.9,2-2S8.1,2,7,2H6.5V1h-1v1H5C3.9,2,3,2.9,3,4s0.9,2,2,2h0.5v1H3v4h2.5v1H5c-1.1,0-2,0.9-2,2s0.9,2,2,2 h0.5v3h1v-3H7c1.1,0,2-0.9,2-2s-0.9-2-2-2H6.5v-1H9V7H6.5V6z M5,4.5C4.72,4.5,4.5,4.28,4.5,4S4.72,3.5,5,3.5h2 c0.28,0,0.5,0.22,0.5,0.5S7.28,4.5,7,4.5H5z M7,13.5c0.28,0,0.5,0.22,0.5,0.5S7.28,14.5,7,14.5H5c-0.28,0-0.5-0.22-0.5-0.5 s0.22-0.5,0.5-0.5H7z M7.5,8.5v1h-3v-1H7.5z M14.5,6H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5V1h-1v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5 v1H11v4h2.5v1H13c-1.1,0-2,0.9-2,2s0.9,2,2,2h0.5v3h1v-3H15c1.1,0,2-0.9,2-2s-0.9-2-2-2h-0.5v-1H17V7h-2.5V6z M13,4.5 c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h2c0.28,0,0.5,0.22,0.5,0.5S15.28,4.5,15,4.5H13z M15,13.5c0.28,0,0.5,0.22,0.5,0.5 s-0.22,0.5-0.5,0.5h-2c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5H15z M15.5,8.5v1h-3v-1H15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"ev_station\": {\n    \"name\": \"ev_station\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 13.5H6V19h6v-8l-4 7zm-2 0L10 6v5h2V5H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 3H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V9c0-.69-.28-1.32-.73-1.77l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33 0 1.38 1.12 2.5 2.5 2.5.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2zm0 8v8H6V5h6v6zm6-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8-4l-4 7.5h2V18l4-7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me_disabled\": {\n    \"name\": \"near_me_disabled\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.1,10.44l1.5-4.05l-4.05,1.5L16.1,10.44z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89 L14.57,14.57z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,6.34L21,3l-3.34,9l-1.56-1.56l1.5-4.05l-4.05,1.5L12,6.34z M21.19,21.19l-5.07-5.07L14.31,21H12.9l-2.83-7.07L3,11.1 V9.69l4.88-1.81L2.81,2.81l1.41-1.41l18.38,18.38L21.19,21.19z M14.57,14.57L9.43,9.43l-2.71,1.01l4.89,1.95l1.95,4.89L14.57,14.57z\\\"></path>\"\n      }\n    }\n  },\n  \"car_repair\": {\n    \"name\": \"car_repair\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M17,9.01V9H7v0.01V12h10V9.01z M9,11.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,11.5,9,11.5z M15,11.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,11.5,15,11.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"9\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"10.5\\\" r=\\\"1\\\"></circle><path d=\\\"M5.78,16h0.44C6.65,16,7,15.64,7,15.19V14h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81v-6.5 c0,0-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07C16.82,3.01,16.28,3,16.28,3H7.72 c0,0-0.54,0.01-0.92,0.54C6.78,3.56,6.77,3.58,6.75,3.6C6.68,3.71,6.61,3.84,6.56,4C6.34,4.66,5,8.69,5,8.69v6.5 C5,15.64,5.35,16,5.78,16z M8.33,5h7.34l0.23,0.69L16.33,7H7.67L8.33,5z M7,9.01V9h10v0.01V12H7V9.01z\\\"></path><polygon points=\\\"4,17.01 4,19 11,19 11,22 13,22 13,19 20,19 20,17.01\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M6.5,9.5h7v-2h-7V9.5z M12.25,7.75C12.66,7.75,13,8.09,13,8.5s-0.34,0.75-0.75,0.75S11.5,8.91,11.5,8.5 S11.84,7.75,12.25,7.75z M7.75,7.75c0.41,0,0.75,0.34,0.75,0.75S8.16,9.25,7.75,9.25S7,8.91,7,8.5S7.34,7.75,7.75,7.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.84,3H7.19C6.78,3,6.4,3.26,6.26,3.65L5,7v4.5C5,11.78,5.22,12,5.5,12H6c0.28,0,0.5-0.22,0.5-0.5V11h7v0.5 c0,0.28,0.22,0.5,0.5,0.5h0.5c0.28,0,0.5-0.22,0.5-0.5V7l-1.22-3.34C13.64,3.26,13.26,3,12.84,3z M7.54,4.5h4.95L13.04,6H6.98 L7.54,4.5z M13.5,9.5h-7v-2h7V9.5z\\\"></path><circle cx=\\\"7.75\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"12.25\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><polygon points=\\\"16,13 4,13 4,14.5 9.25,14.5 9.25,17 10.75,17 10.75,14.5 16,14.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"merge\": {\n    \"name\": \"merge\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.41,21L5,19.59l4.83-4.83c0.75-0.75,1.17-1.77,1.17-2.83v-5.1L9.41,8.41L8,7l4-4l4,4l-1.41,1.41L13,6.83v5.1 c0,1.06,0.42,2.08,1.17,2.83L19,19.59L17.59,21L12,15.41L6.41,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.25,10.45c0,0.8-0.32,1.56-0.88,2.12L5,15.94L6.06,17L10,13.06L13.94,17L15,15.94l-3.37-3.37 c-0.56-0.56-0.88-1.33-0.88-2.12l0-4.58l1.19,1.19L13,6l-3-3L7,6l1.06,1.06l1.19-1.19L9.25,10.45z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meals\": {\n    \"name\": \"no_meals\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,14V6c0-1.76,2.24-4,5-4v16.17l-2-2V14H16z M20.49,23.31L10.02,12.85C9.69,12.94,9.36,13,9,13v9H7v-9c-2.21,0-4-1.79-4-4 V5.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M6.17,9L5,7.83V9H6.17z M9,2H7v2.17l2,2V2z M13,9V2h-2v6.17l1.85,1.85 C12.94,9.69,13,9.36,13,9z\\\"></path>\"\n      }\n    }\n  },\n  \"miscellaneous_services\": {\n    \"name\": \"miscellaneous_services\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.17,13.71l1.4-2.42c0.09-0.15,0.05-0.34-0.08-0.45l-1.48-1.16c0.03-0.22,0.05-0.45,0.05-0.68s-0.02-0.46-0.05-0.69 l1.48-1.16c0.13-0.11,0.17-0.3,0.08-0.45l-1.4-2.42c-0.09-0.15-0.27-0.21-0.43-0.15L12,4.83c-0.36-0.28-0.75-0.51-1.18-0.69 l-0.26-1.85C10.53,2.13,10.38,2,10.21,2h-2.8C7.24,2,7.09,2.13,7.06,2.3L6.8,4.15C6.38,4.33,5.98,4.56,5.62,4.84l-1.74-0.7 c-0.16-0.06-0.34,0-0.43,0.15l-1.4,2.42C1.96,6.86,2,7.05,2.13,7.16l1.48,1.16C3.58,8.54,3.56,8.77,3.56,9s0.02,0.46,0.05,0.69 l-1.48,1.16C2,10.96,1.96,11.15,2.05,11.3l1.4,2.42c0.09,0.15,0.27,0.21,0.43,0.15l1.74-0.7c0.36,0.28,0.75,0.51,1.18,0.69 l0.26,1.85C7.09,15.87,7.24,16,7.41,16h2.8c0.17,0,0.32-0.13,0.35-0.3l0.26-1.85c0.42-0.18,0.82-0.41,1.18-0.69l1.74,0.7 C13.9,13.92,14.08,13.86,14.17,13.71z M8.81,11c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C10.81,10.1,9.91,11,8.81,11z\\\"></path><path d=\\\"M21.92,18.67l-0.96-0.74c0.02-0.14,0.04-0.29,0.04-0.44c0-0.15-0.01-0.3-0.04-0.44l0.95-0.74 c0.08-0.07,0.11-0.19,0.05-0.29l-0.9-1.55c-0.05-0.1-0.17-0.13-0.28-0.1l-1.11,0.45c-0.23-0.18-0.48-0.33-0.76-0.44l-0.17-1.18 C18.73,13.08,18.63,13,18.53,13h-1.79c-0.11,0-0.21,0.08-0.22,0.19l-0.17,1.18c-0.27,0.12-0.53,0.26-0.76,0.44l-1.11-0.45 c-0.1-0.04-0.22,0-0.28,0.1l-0.9,1.55c-0.05,0.1-0.04,0.22,0.05,0.29l0.95,0.74c-0.02,0.14-0.03,0.29-0.03,0.44 c0,0.15,0.01,0.3,0.03,0.44l-0.95,0.74c-0.08,0.07-0.11,0.19-0.05,0.29l0.9,1.55c0.05,0.1,0.17,0.13,0.28,0.1l1.11-0.45 c0.23,0.18,0.48,0.33,0.76,0.44l0.17,1.18c0.02,0.11,0.11,0.19,0.22,0.19h1.79c0.11,0,0.21-0.08,0.22-0.19l0.17-1.18 c0.27-0.12,0.53-0.26,0.75-0.44l1.12,0.45c0.1,0.04,0.22,0,0.28-0.1l0.9-1.55C22.03,18.86,22,18.74,21.92,18.67z M17.63,18.83 c-0.74,0-1.35-0.6-1.35-1.35s0.6-1.35,1.35-1.35s1.35,0.6,1.35,1.35S18.37,18.83,17.63,18.83z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.69,11.36l1-1.73c0.06-0.11,0.04-0.24-0.06-0.32l-1.06-0.83C11.6,8.33,11.61,8.16,11.61,8c0-0.16-0.01-0.33-0.04-0.49 l1.06-0.83c0.09-0.08,0.12-0.21,0.06-0.32l-1-1.73c-0.06-0.11-0.19-0.15-0.31-0.11l-1.24,0.5C9.88,4.82,9.6,4.66,9.3,4.53 L9.11,3.21C9.09,3.09,8.98,3,8.86,3h-2C6.74,3,6.63,3.09,6.61,3.21L6.42,4.54c-0.3,0.13-0.59,0.29-0.84,0.49l-1.24-0.5 c-0.11-0.04-0.24,0-0.31,0.11l-1,1.73C2.97,6.47,3,6.61,3.09,6.69l1.06,0.83C4.12,7.67,4.11,7.84,4.11,8 c0,0.16,0.01,0.33,0.04,0.49L3.09,9.32C3,9.4,2.97,9.54,3.03,9.64l1,1.73c0.06,0.11,0.19,0.15,0.31,0.11l1.24-0.5 c0.26,0.2,0.54,0.36,0.84,0.49l0.19,1.32C6.63,12.91,6.74,13,6.86,13h2c0.12,0,0.23-0.09,0.25-0.21l0.19-1.32 c0.3-0.13,0.59-0.29,0.84-0.49l1.24,0.5C11.5,11.51,11.62,11.47,11.69,11.36z M7.86,9.5c-0.83,0-1.5-0.68-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5c0.82,0,1.5,0.67,1.5,1.5C9.36,8.82,8.68,9.5,7.86,9.5z\\\"></path><path d=\\\"M16.81,14.79l-0.64-0.5c0.01-0.1,0.02-0.19,0.02-0.29c0-0.1-0.01-0.2-0.02-0.29l0.64-0.5c0.05-0.05,0.07-0.13,0.04-0.19 l-0.6-1.04c-0.04-0.07-0.11-0.09-0.19-0.07l-0.74,0.3c-0.16-0.12-0.32-0.22-0.51-0.29l-0.11-0.79C14.68,11.05,14.61,11,14.54,11 h-1.2c-0.07,0-0.14,0.05-0.15,0.13l-0.11,0.79c-0.18,0.08-0.35,0.17-0.51,0.29l-0.74-0.3c-0.07-0.02-0.14,0-0.19,0.07l-0.6,1.04 c-0.04,0.07-0.02,0.14,0.04,0.19l0.64,0.5c-0.01,0.1-0.02,0.19-0.02,0.29c0,0.1,0.01,0.2,0.02,0.29l-0.64,0.5 c-0.05,0.05-0.07,0.13-0.04,0.19l0.6,1.04c0.04,0.07,0.11,0.09,0.19,0.07l0.74-0.3c0.16,0.12,0.32,0.22,0.51,0.29l0.11,0.79 C13.2,16.95,13.26,17,13.34,17h1.2c0.07,0,0.14-0.05,0.15-0.13l0.11-0.79c0.18-0.08,0.35-0.17,0.5-0.29l0.75,0.3 c0.07,0.02,0.14,0,0.19-0.07l0.6-1.04C16.88,14.92,16.86,14.84,16.81,14.79z M14,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 c0.55,0,1,0.45,1,1C15,14.55,14.55,15,14,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compass_calibration\": {\n    \"name\": \"compass_calibration\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.94 7.26l2.21 2.21c1.44-.91 3.11-1.4 4.85-1.4 1.74 0 3.41.49 4.84 1.4l2.21-2.21C17 5.79 14.56 5 12 5c-2.56 0-5.01.79-7.06 2.26z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"17\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M17 17c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-8 0c0-1.65 1.35-3 3-3s3 1.35 3 3-1.35 3-3 3-3-1.35-3-3zM2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3 8.1 3 4.56 4.59 2 7.15zm14.84 2.32c-1.44-.91-3.1-1.4-4.84-1.4-1.74 0-3.41.49-4.85 1.41L4.94 7.26C6.99 5.79 9.44 5 12 5c2.56 0 5 .79 7.05 2.26l-2.21 2.21z\\\"></path>\"\n      }\n    }\n  },\n  \"near_me\": {\n    \"name\": \"near_me\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.39 12.61l.32.83 1.32 3.42 4.24-10.13-10.13 4.24 3.42 1.33z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 11.51l6.84 2.65L12.48 21h.98L21 3 3 10.53v.98zm14.27-4.78l-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23z\\\"></path>\"\n      }\n    }\n  },\n  \"home_repair_service\": {\n    \"name\": \"home_repair_service\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20,8h-3V6c0-1.1-0.9-2-2-2H9C7.9,4,7,4.9,7,6v2H4c-1.1,0-2,0.9-2,2v10h20V10C22,8.9,21.1,8,20,8z M9,6h6v2H9V6z M20,18 H4v-3h2v1h2v-1h8v1h2v-1h2V18z M20,13h-2v-1h-2v1H8v-1H6v1H4v-3h3h10h3V13z\\\"></path></g></g><g><g opacity=\\\".3\\\"><polygon points=\\\"18,16 16,16 16,15 8,15 8,16 6,16 6,15 4,15 4,18 20,18 20,15 18,15\\\"></polygon></g><g opacity=\\\".3\\\"><polygon points=\\\"4,10 4,13 6,13 6,12 8,12 8,13 16,13 16,12 18,12 18,13 20,13 20,10 17,10 7,10\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16,7h-3V5c0-0.55-0.45-1-1-1H8C7.45,4,7,4.45,7,5v2H4C3.45,7,3,7.45,3,8v8h14V8C17,7.45,16.55,7,16,7z M8,5h4v2H8V5z M16,15H4v-3h2v1h1v-1h6v1h1v-1h2V15z M16,11h-2v-1h-1v1H7v-1H6v1H4V8h3h6h3V11z\\\"></path></g><g opacity=\\\".3\\\"><polygon points=\\\"7,8 4,8 4,11 6,11 6,10 7,10 7,11 13,11 13,10 14,10 14,11 16,11 16,8 13,8\\\"></polygon></g><g opacity=\\\".3\\\"><polygon points=\\\"14,13 13,13 13,12 7,12 7,13 6,13 6,12 4,12 4,15 16,15 16,12 14,12\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"airline_stops\": {\n    \"name\": \"airline_stops\",\n    \"keywords\": [\n      \"maps\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.21,9.21C15.93,10.78,13.45,13.3,13,17h2v2H9v-2h2c-0.5-4.5-4.37-8-9-8V7c4.39,0,8.22,2.55,10,6.3 c1.13-2.43,2.99-4.25,4.78-5.52L14,5h7v7L18.21,9.21z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,14C9.25,10.41,6,7.5,2,7.5V6c3.56,0,6.64,1.96,8,4.76c0.72-1.49,1.96-2.87,3.68-4.08L11.5,4.5H17V10l-2.24-2.24 c-1.78,1.21-4.01,3.28-4.01,6.24h1.5v1.5h-4.5V14H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"bedroom_baby\": {\n    \"name\": \"bedroom_baby\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,20h16V4H4V20z M6.45,10.5l-0.95-1L7,7.76L6,7h3.65l1.73,3H17v1h-1v2.5l0.84,1.46 c0.39-0.28,0.76-0.58,1.1-0.92L19,15.1c-1.87,1.87-4.36,2.9-7,2.9s-5.13-1.03-7-2.9l1.06-1.06c0.34,0.34,0.71,0.65,1.1,0.92 L8,13.5V9.51L6.45,10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.53,15.71l-0.03-0.06l-0.81-1.41c-1.74,0.65-3.66,0.65-5.4,0l-0.81,1.41l-0.03,0.06 c1.1,0.52,2.28,0.79,3.53,0.79S14.43,16.22,15.53,15.71z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.16,14.96c-0.39-0.27-0.76-0.58-1.1-0.92L5,15.1c1.87,1.87,4.36,2.9,7,2.9s5.13-1.03,7-2.9l-1.06-1.06 c-0.34,0.34-0.71,0.64-1.1,0.92L16,13.5V11h1v-1h-5.62L9.65,7H6l1,0.76L5.5,9.5l0.95,1L8,9.51v3.99L7.16,14.96z M8.48,15.65 l0.81-1.41c1.74,0.65,3.66,0.65,5.4,0l0.81,1.41l0.03,0.06c-1.1,0.51-2.3,0.79-3.55,0.79s-2.43-0.27-3.53-0.79L8.48,15.65z\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"garage\": {\n    \"name\": \"garage\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,11.51V11.5H7v0.01v2.99h10V11.51z M9,14c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1S9.55,14,9,14 z M15,14c-0.55,0-1-0.45-1-1s0.45-1,1-1c0.55,0,1,0.45,1,1S15.55,14,15,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,20h16V4H4V20z M5,11.19C5.82,8.72,6.34,7.16,6.56,6.5c0.05-0.16,0.12-0.29,0.19-0.4 C6.77,6.08,6.78,6.06,6.8,6.04C7.18,5.51,7.72,5.5,7.72,5.5h8.56c0,0,0.54,0.01,0.92,0.53c0.02,0.03,0.03,0.05,0.05,0.07 c0.07,0.11,0.14,0.24,0.19,0.4c0.22,0.66,0.74,2.23,1.56,4.69v6.5c0,0.45-0.35,0.81-0.78,0.81h-0.44c-0.44,0-0.78-0.36-0.78-0.81 V16.5H7v1.19c0,0.45-0.35,0.81-0.78,0.81H5.78C5.35,18.5,5,18.14,5,17.69V11.19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M5.78,18.5h0.44C6.65,18.5,7,18.14,7,17.69V16.5h10v1.19c0,0.45,0.34,0.81,0.78,0.81h0.44c0.43,0,0.78-0.36,0.78-0.81 v-6.5c-0.82-2.46-1.34-4.03-1.56-4.69c-0.05-0.16-0.12-0.29-0.19-0.4c-0.02-0.02-0.03-0.04-0.05-0.07 c-0.38-0.52-0.92-0.53-0.92-0.53H7.72c0,0-0.54,0.01-0.92,0.54C6.78,6.06,6.77,6.08,6.75,6.1C6.68,6.21,6.61,6.34,6.56,6.5 C6.34,7.16,5.82,8.72,5,11.19v6.5C5,18.14,5.35,18.5,5.78,18.5z M8.33,7.5h7.34l0.23,0.69l0.43,1.31H7.67L8.33,7.5z M7,11.51V11.5 h10v0.01v2.99H7V11.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feed\": {\n    \"name\": \"feed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M15,5H5v14h14V9h-4V5z M7,7h5v2H7V7z M17,17H7v-2h10V17z M17,11v2H7v-2H17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,13h10v-2H7V13z M7,17h10v-2H7V17z M16,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8L16,3z M19,19H5V5 h10v4h4V19z M12,7H7v2h5V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flatware\": {\n    \"name\": \"flatware\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M16,7.08c0,1.77-0.84,3.25-2,3.82V21h-2V10.9c-1.16-0.57-2-2.05-2-3.82C10.01,4.83,11.35,3,13,3C14.66,3,16,4.83,16,7.08z M17,3v18h2v-8h2V7C21,5.24,19.76,3,17,3z M8.28,3c-0.4,0-0.72,0.32-0.72,0.72V7H6.72V3.72C6.72,3.32,6.4,3,6,3 S5.28,3.32,5.28,3.72V7H4.44V3.72C4.44,3.32,4.12,3,3.72,3S3,3.32,3,3.72V9c0,1.1,0.9,2,2,2v10h2V11c1.1,0,2-0.9,2-2V3.72 C9,3.32,8.68,3,8.28,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bathroom\": {\n    \"name\": \"bathroom\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,20h16V4H4V20z M9,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S9.55,18,9,18z M9,15c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S9.55,15,9,15z M12,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.55,18,12,18z M12,15 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S12.55,15,12,15z M15,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,18,15,18z M15,15c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,15,15,15z M7,11c0-2.76,2.24-5,5-5s5,2.24,5,5v1H7V11z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path><path d=\\\"M17,11c0-2.76-2.24-5-5-5s-5,2.24-5,5v1h10V11z M8.54,10.5c0.24-1.69,1.7-3,3.46-3s3.22,1.31,3.47,3H8.54z\\\"></path><circle cx=\\\"9\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"9\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"chair_alt\": {\n    \"name\": \"chair_alt\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"14\\\"></rect><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"5\\\"></rect><path d=\\\"M17,10c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v3c0,1.1,0.9,2,2,2h1v2H7c-1.1,0-2,0.9-2,2v7h2v-3h10v3h2v-7 c0-1.1-0.9-2-2-2h-1v-2H17z M17,14v2H7v-2H17z M10,12v-2h4v2H10z M7,8V5h10v3H7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"coffee\": {\n    \"name\": \"coffee\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,11c0,2.76,2.24,5,5,5s5-2.24,5-5v-1H6V11z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"19\\\"></rect><path d=\\\"M18.5,3H6C4.9,3,4,3.9,4,5v5.71c0,3.83,2.95,7.18,6.78,7.29c3.96,0.12,7.22-3.06,7.22-7v-1h0.5c1.93,0,3.5-1.57,3.5-3.5 S20.43,3,18.5,3z M16,11c0,2.76-2.24,5-5,5s-5-2.24-5-5v-1h10V11z M16,8H6V5h10V8z M18.5,8H18V5h0.5C19.33,5,20,5.67,20,6.5 S19.33,8,18.5,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"coffee_maker\": {\n    \"name\": \"coffee_maker\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M13,19c1.65,0,3-1.35,3-3v-3h-6v3C10,17.65,11.35,19,13,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,7h8c0.55,0,1-0.45,1-1V4h2V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h14v-2h-4.03C17.2,19.09,18,17.64,18,16v-5H8v5 c0,1.64,0.81,3.09,2.03,4H6V4h2v2C8,6.55,8.45,7,9,7z M10,16v-3h6v3c0,1.65-1.35,3-3,3S10,17.65,10,16z\\\"></path></g><circle cx=\\\"13\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"bedroom_parent\": {\n    \"name\": \"bedroom_parent\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,20h16V4H4V20z M5,13.17c0-0.66,0.25-1.26,0.65-1.72V9c0-1.1,0.9-2,2-2H11c0.37,0,0.72,0.12,1,0.32 C12.28,7.12,12.63,7,13,7h3.35c1.1,0,2,0.9,2,2v2.45c0.4,0.46,0.65,1.06,0.65,1.72V17h-1.5v-1.5h-11V17H5V13.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path><path d=\\\"M6.5,15.5h11V17H19v-3.83c0-0.66-0.25-1.26-0.65-1.72V9c0-1.1-0.9-2-2-2H13c-0.37,0-0.72,0.12-1,0.32 C11.72,7.12,11.37,7,11,7H7.65c-1.1,0-2,0.9-2,2v2.45C5.25,11.91,5,12.51,5,13.17V17h1.5V15.5z M12.75,8.5h4v2h-4V8.5z M7.25,8.5 h4v2h-4V8.5z M6.5,13c0-0.55,0.45-1,1-1h9c0.55,0,1,0.45,1,1v1h-11V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"window\": {\n    \"name\": \"window\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"5\\\" y=\\\"13\\\"></rect><rect height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"13\\\" y=\\\"5\\\"></rect><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4.75\\\" opacity=\\\".3\\\" width=\\\"4.75\\\" x=\\\"10.75\\\" y=\\\"10.75\\\"></rect><rect height=\\\"4.75\\\" opacity=\\\".3\\\" width=\\\"4.75\\\" x=\\\"4.5\\\" y=\\\"10.75\\\"></rect><rect height=\\\"4.75\\\" opacity=\\\".3\\\" width=\\\"4.75\\\" x=\\\"4.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"4.75\\\" opacity=\\\".3\\\" width=\\\"4.75\\\" x=\\\"10.75\\\" y=\\\"4.5\\\"></rect><path d=\\\"M15.5 3h-11C3.67 3 3 3.67 3 4.5v11c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5zM9.25 15.5H4.5v-4.75h4.75v4.75zm0-6.25H4.5V4.5h4.75v4.75zm6.25 6.25h-4.75v-4.75h4.75v4.75zm0-6.25h-4.75V4.5h4.75v4.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"living\": {\n    \"name\": \"living\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,20h16V4H4V20z M5,12.5c0-0.92,0.51-1.72,1.25-2.15V9c0-1.66,1.34-3,3-3h5.5c1.66,0,3,1.34,3,3v1.35 C18.49,10.78,19,11.58,19,12.5V16c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z M7,18h10 c1.1,0,2-0.9,2-2v-3.5c0-0.92-0.51-1.72-1.25-2.15V9c0-1.66-1.34-3-3-3h-5.5c-1.66,0-3,1.34-3,3v1.35C5.51,10.78,5,11.58,5,12.5 V16C5,17.1,5.9,18,7,18z M7.75,9c0-0.83,0.67-1.5,1.5-1.5h5.5c0.83,0,1.5,0.67,1.5,1.5v1.03C14.99,10.15,14,11.2,14,12.5V13h-4 v-0.5c0-1.3-0.99-2.35-2.25-2.47V9z M6.5,12.5c0-0.55,0.45-1,1-1s1,0.45,1,1v2h7v-2c0-0.55,0.45-1,1-1s1,0.45,1,1V16 c0,0.28-0.22,0.5-0.5,0.5H7c-0.28,0-0.5-0.22-0.5-0.5V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dining\": {\n    \"name\": \"dining\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,20h16V4H4V20z M14.75,6c1.38,0,2.5,1.53,2.5,3.41c0,1.48-0.7,2.71-1.67,3.18l-0.08,0.03V19H14v-6.38 l-0.08-0.04c-0.97-0.47-1.67-1.7-1.67-3.18C12.25,7.52,13.38,6,14.75,6z M6.5,6.5C6.5,6.22,6.72,6,7,6s0.5,0.22,0.5,0.5V9h0.75 V6.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V9H10V6.5C10,6.22,10.23,6,10.5,6C10.78,6,11,6.22,11,6.5v3.8 c0,0.93-0.64,1.71-1.5,1.93V19H8v-6.77c-0.86-0.22-1.5-1-1.5-1.93V6.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path><path d=\\\"M8,12.23V19h1.5v-6.77c0.86-0.22,1.5-1,1.5-1.93V6.5C11,6.22,10.78,6,10.5,6C10.23,6,10,6.22,10,6.5V9H9.25V6.5 c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5V9H7.5V6.5C7.5,6.22,7.28,6,7,6S6.5,6.22,6.5,6.5v3.8C6.5,11.23,7.14,12.01,8,12.23z\\\"></path><path d=\\\"M13.92,12.58L14,12.62V19h1.5v-6.38l0.08-0.03c0.97-0.47,1.67-1.7,1.67-3.18c0-1.88-1.12-3.41-2.5-3.41 c-1.37,0-2.5,1.52-2.5,3.4C12.25,10.88,12.95,12.11,13.92,12.58z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"chair\": {\n    \"name\": \"chair\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,13h10v-2c0-0.88,0.39-1.67,1-2.22V6c0-0.55-0.45-1-1-1H7C6.45,5,6,5.45,6,6 v2.78C6.61,9.33,7,10.12,7,11V13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,10c-0.55,0-1,0.45-1,1v4H5v-4c0-0.55-0.45-1-1-1s-1,0.45-1,1v5 c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1v-5C21,10.45,20.55,10,20,10z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,8V6c0-1.65-1.35-3-3-3H7C5.35,3,4,4.35,4,6v2c-1.65,0-3,1.35-3,3v5c0,1.65,1.35,3,3,3v1c0,0.55,0.45,1,1,1 c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1c0.55,0,1-0.45,1-1v-1c1.65,0,3-1.35,3-3v-5C23,9.35,21.65,8,20,8z M6,6 c0-0.55,0.45-1,1-1h10c0.55,0,1,0.45,1,1v2.78c-0.61,0.55-1,1.34-1,2.22v2H7v-2c0-0.88-0.39-1.67-1-2.22V6z M21,16 c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1v-5c0-0.55,0.45-1,1-1s1,0.45,1,1v4h14v-4c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"table_bar\": {\n    \"name\": \"table_bar\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><ellipse cx=\\\"12\\\" cy=\\\"7.5\\\" opacity=\\\".3\\\" rx=\\\"7.72\\\" ry=\\\"1.5\\\"></ellipse><path d=\\\"M22,7.5C22,5.57,17.52,4,12,4S2,5.57,2,7.5c0,1.81,3.95,3.31,9,3.48V15H9.35c-0.82,0-1.55,0.5-1.86,1.26L6,20h2l1.2-3h5.6 l1.2,3h2l-1.5-3.74C16.2,15.5,15.46,15,14.65,15H13v-4.02C18.05,10.81,22,9.31,22,7.5z M12,9C7.95,9,5.26,8.14,4.28,7.5 C5.26,6.86,7.95,6,12,6s6.74,0.86,7.72,1.5C18.74,8.14,16.05,9,12,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><ellipse cx=\\\"10\\\" cy=\\\"6.5\\\" opacity=\\\".3\\\" rx=\\\"6.1\\\" ry=\\\"1\\\"></ellipse><path d=\\\"M18,6.5C18,5.12,14.42,4,10,4S2,5.12,2,6.5c0,1.3,3.18,2.37,7.25,2.49v3.51H7.61c-0.58,0-1.11,0.33-1.35,0.86L5,16h1.5 l1-2h5l1,2H15l-1.26-2.64c-0.25-0.52-0.78-0.86-1.35-0.86h-1.64V8.99C14.82,8.87,18,7.8,18,6.5z M10,7.5c-3.04,0-5.16-0.55-6.1-1 c0.94-0.45,3.06-1,6.1-1s5.16,0.55,6.1,1C15.16,6.95,13.04,7.5,10,7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_indoor\": {\n    \"name\": \"camera_indoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,10v9h12v-9l-6-4.5L6,10z M14,12v1l2-1.06v4.12L14,15v1c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4 c0-0.55,0.45-1,1-1h4C13.55,11,14,11.45,14,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,12v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L14,13v-1c0-0.55-0.45-1-1-1H9C8.45,11,8,11.45,8,12z\\\"></path><path d=\\\"M12,3L4,9v12h16V9L12,3z M18,19H6v-9l6-4.5l6,4.5V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"door_back\": {\n    \"name\": \"door_back\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,19h10V5H7V19z M9,11h2v2H9V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"11\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"bedroom_child\": {\n    \"name\": \"bedroom_child\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4,20h16V4H4V20z M6,12.87c0-1,0.62-1.85,1.5-2.2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2v1.67 c0.88,0.35,1.5,1.2,1.5,2.2V17h-1.5v-1.5h-9V17H6V12.87z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path><path d=\\\"M7.5,15.5h9V17H18v-4.13c0-1-0.62-1.85-1.5-2.2V9c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v1.67c-0.88,0.35-1.5,1.2-1.5,2.2V17 h1.5V15.5z M9,8.5h6v2H9V8.5z M8.37,12h7.27c0.48,0,0.87,0.39,0.87,0.87V14h-9v-1.13H7.5C7.5,12.39,7.89,12,8.37,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"door_front\": {\n    \"name\": \"door_front\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,19h10V5H7V19z M13,11h2v2h-2V11z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"11\\\"></rect><path d=\\\"M19,19V5c0-1.1-0.9-2-2-2H7C5.9,3,5,3.9,5,5v14H3v2h18v-2H19z M17,19H7V5h10V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shower\": {\n    \"name\": \"shower\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-2.76,0-5,2.24-5,5h10C17,9.24,14.76,7,12,7z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"16\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><path d=\\\"M13,5.08V3h-2v2.08C7.61,5.57,5,8.47,5,12v2h14v-2C19,8.47,16.39,5.57,13,5.08z M7,12c0-2.76,2.24-5,5-5s5,2.24,5,5H7z\\\"></path><circle cx=\\\"16\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"8\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"door_sliding\": {\n    \"name\": \"door_sliding\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,19h5V5h-5V19z M14,11h2v2h-2V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,19h5V5H6V19z M8,11h2v2H8V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,19V5c0-1.1-0.9-2-2-2H6C4.9,3,4,3.9,4,5v14H3v2h18v-2H20z M11,19H6V5h5V19z M18,19h-5V5h5V19z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"8\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"11\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"light\": {\n    \"name\": \"light\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M10,17c0,1.1,0.9,2,2,2s2-0.9,2-2h-2H10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,6.06V3h-2v3.06c-4.5,0.5-8,4.31-8,8.93C3,16.1,3.9,17,5.01,17H8c0,2.21,1.79,4,4,4s4-1.79,4-4h2.99 C20.1,17,21,16.1,21,14.99C21,10.37,17.5,6.56,13,6.06z M12,19c-1.1,0-2-0.9-2-2h2h2C14,18.1,13.1,19,12,19z M12,15H5 c0-3.86,3.14-7,7-7s7,3.14,7,7H12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"table_restaurant\": {\n    \"name\": \"table_restaurant\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"5.18,6 4.33,9 19.67,9 18.82,6\\\"></polygon><path d=\\\"M21.96,9.73l-1.43-5C20.41,4.3,20.02,4,19.57,4H4.43C3.98,4,3.59,4.3,3.47,4.73l-1.43,5C1.86,10.36,2.34,11,3,11h2.2L4,20 h2l0.67-5h10.67L18,20h2l-1.2-9H21C21.66,11,22.14,10.36,21.96,9.73z M6.93,13l0.27-2h9.6l0.27,2H6.93z M4.33,9l0.86-3h13.63 l0.86,3H4.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"4.54,5.5 3.74,7.5 16.26,7.5 15.46,5.5\\\"></polygon><path d=\\\"M17.93,7.63l-1.2-3C16.58,4.25,16.21,4,15.8,4H4.2C3.79,4,3.42,4.25,3.27,4.63l-1.2,3C1.81,8.29,2.29,9,3,9h1.27L3,16h1.5 l0.73-4h9.32l0.73,4h1.5L15.5,9H17C17.71,9,18.19,8.29,17.93,7.63z M5.5,10.5L5.77,9H14l0.27,1.5H5.5z M3.74,7.5l0.8-2h10.92 l0.8,2H3.74z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"podcasts\": {\n    \"name\": \"podcasts\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M14,12c0,0.74-0.4,1.38-1,1.72V22h-2v-8.28c-0.6-0.35-1-0.98-1-1.72c0-1.1,0.9-2,2-2S14,10.9,14,12z M12,6 c-3.31,0-6,2.69-6,6c0,1.74,0.75,3.31,1.94,4.4l1.42-1.42C8.53,14.25,8,13.19,8,12c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.19-0.53,2.25-1.36,2.98l1.42,1.42C17.25,15.31,18,13.74,18,12C18,8.69,15.31,6,12,6z M12,2C6.48,2,2,6.48,2,12 c0,2.85,1.2,5.41,3.11,7.24l1.42-1.42C4.98,16.36,4,14.29,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8c0,2.29-0.98,4.36-2.53,5.82l1.42,1.42 C20.8,17.41,22,14.85,22,12C22,6.48,17.52,2,12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"manage_search\": {\n    \"name\": \"manage_search\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"2\\\" y=\\\"12\\\"></rect><path d=\\\"M18.17,13.75C18.69,12.96,19,12.02,19,11c0-2.76-2.24-5-5-5s-5,2.24-5,5s2.24,5,5,5c1.02,0,1.96-0.31,2.76-0.83L20.59,19 L22,17.59L18.17,13.75z M14,14c-1.65,0-3-1.35-3-3c0-1.65,1.35-3,3-3s3,1.35,3,3C17,12.65,15.65,14,14,14z\\\"></path><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"2\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"10\\\" x=\\\"2\\\" y=\\\"17\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"bed\": {\n    \"name\": \"bed\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19 8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2h6V8zm-8 0c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2h6V8zm8 4H5c-.55 0-1 .45-1 1v2h16v-2c0-.55-.45-1-1-1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 10.78V8c0-1.65-1.35-3-3-3h-4c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78H6C4.35 5 3 6.35 3 8v2.78c-.61.55-1 1.34-1 2.22v6h2v-2h16v2h2v-6c0-.88-.39-1.67-1-2.22zM13 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2h-6V8zM5 8c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v2H5V8zm15 7H4v-2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"doorbell\": {\n    \"name\": \"doorbell\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,10v9h12v-9l-6-4.5L6,10z M12,17.5c-0.55,0-1-0.45-1-1h2C13,17.05,12.55,17.5,12,17.5z M12.75,9.25V9.5 C14.19,9.84,15,11.12,15,12.66V15h1v1H8v-1h1v-2.34c0-1.54,0.82-2.82,2.25-3.16V9.25c0-0.41,0.34-0.75,0.75-0.75 S12.75,8.84,12.75,9.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,3L4,9v12h16V9L12,3z M18,19H6v-9l6-4.5l6,4.5V19z\\\"></path><path d=\\\"M11.25,9.25V9.5C9.82,9.84,9,11.12,9,12.66V15H8v1h8v-1h-1v-2.34c0-1.54-0.81-2.82-2.25-3.16V9.25 c0-0.41-0.34-0.75-0.75-0.75S11.25,8.84,11.25,9.25z\\\"></path><path d=\\\"M12,17.5c0.55,0,1-0.45,1-1h-2C11,17.05,11.45,17.5,12,17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_outdoor\": {\n    \"name\": \"camera_outdoor\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M18,13c0-0.55-0.45-1-1-1h-4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-1l2,1.06v-4.12L18,14V13z M12,3 L4,9v12h16v-2H6v-9l6-4.5l6,4.5v1h2V9L12,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"yard\": {\n    \"name\": \"yard\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,20h16V4H4V20z M8,8.22c0-0.86,0.7-1.56,1.56-1.56c0.33,0,0.64,0.1,0.89,0.28l-0.01-0.12 c0-0.86,0.7-1.56,1.56-1.56s1.56,0.7,1.56,1.56l-0.01,0.12c0.26-0.18,0.56-0.28,0.89-0.28c0.86,0,1.56,0.7,1.56,1.56 c0,0.62-0.37,1.16-0.89,1.4C15.63,9.87,16,10.41,16,11.03c0,0.86-0.7,1.56-1.56,1.56c-0.33,0-0.64-0.11-0.89-0.28l0.01,0.12 c0,0.86-0.7,1.56-1.56,1.56s-1.56-0.7-1.56-1.56l0.01-0.12c-0.26,0.18-0.56,0.28-0.89,0.28C8.7,12.59,8,11.89,8,11.03 c0-0.62,0.37-1.16,0.89-1.4C8.37,9.38,8,8.84,8,8.22z M12,19c0-3.31,2.69-6,6-6C18,16.31,15.31,19,12,19s-6-2.69-6-6 C9.31,13,12,15.69,12,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,11.03c0,0.86,0.7,1.56,1.56,1.56c0.33,0,0.63-0.1,0.89-0.28l-0.01,0.12c0,0.86,0.7,1.56,1.56,1.56s1.56-0.7,1.56-1.56 l-0.01-0.12c0.25,0.17,0.56,0.28,0.89,0.28c0.86,0,1.56-0.7,1.56-1.56c0-0.62-0.37-1.16-0.89-1.41C15.63,9.38,16,8.84,16,8.22 c0-0.86-0.7-1.56-1.56-1.56c-0.33,0-0.63,0.1-0.89,0.28l0.01-0.12c0-0.86-0.7-1.56-1.56-1.56s-1.56,0.7-1.56,1.56l0.01,0.12 C10.2,6.76,9.89,6.66,9.56,6.66C8.7,6.66,8,7.36,8,8.22c0,0.62,0.37,1.16,0.89,1.41C8.37,9.87,8,10.41,8,11.03z M12,8.06 c0.86,0,1.56,0.7,1.56,1.56s-0.7,1.56-1.56,1.56s-1.56-0.7-1.56-1.56S11.14,8.06,12,8.06z\\\"></path><path d=\\\"M18,13c-3.31,0-6,2.69-6,6C15.31,19,18,16.31,18,13z\\\"></path><path d=\\\"M12,19c0-3.31-2.69-6-6-6C6,16.31,8.69,19,12,19z\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,20H4V4h16V20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"blender\": {\n    \"name\": \"blender\",\n    \"keywords\": [\n      \"search\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,16h-2c-1.65,0-3,1.35-3,3v1h8v-1C16,17.35,14.65,16,13,16z M12,19c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S12.55,19,12,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.13,15.13L18,3h-4V2h-4v1H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h2.23l0.64,4.13C6.74,16.05,6,17.43,6,19v1 c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-1C18,17.43,17.26,16.05,16.13,15.13z M5,9V5h1.31l0.62,4H5z M15.67,5l-1.38,9H9.72L8.33,5 H15.67z M16,20H8v-1c0-1.65,1.35-3,3-3h2c1.65,0,3,1.35,3,3V20z\\\"></path><circle cx=\\\"12\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"sim_card\": {\n    \"name\": \"sim_card\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 8.83V20h12V4h-7.17L6 8.83zM9 19H7v-2h2v2zm0-4H7v-4h2v4zm6-4h2v4h-2v-4zm0 6h2v2h-2v-2zm-4-6h2v2h-2v-2zm0 4h2v4h-2v-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 2v16H6V8.83L10.83 4H18zM7 17h2v2H7zm8 0h2v2h-2zm-8-6h2v4H7zm4 4h2v4h-2zm0-4h2v2h-2zm4 0h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds\": {\n    \"name\": \"earbuds\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,6c0-0.55-0.45-1-1-1S5,5.45,5,6v1h1C6.55,7,7,6.55,7,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,18c0,0.55,0.45,1,1,1s1-0.45,1-1v-1h-1C17.45,17,17,17.45,17,18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,3c-2.76,0-5,2.24-5,5v8c0,1.66-1.34,3-3,3s-3-1.34-3-3V9h0.83C7.44,9,8.89,7.82,9,6.21c0.12-1.69-1.16-3.1-2.8-3.21 C4.44,2.89,3,4.42,3,6.19V16c0,2.76,2.24,5,5,5s5-2.24,5-5V8c0-1.66,1.34-3,3-3s3,1.34,3,3v7h-0.83c-1.61,0-3.06,1.18-3.17,2.79 c-0.12,1.69,1.16,3.1,2.8,3.21c1.76,0.12,3.2-1.42,3.2-3.18V8C21,5.24,18.76,3,16,3z M5,6c0-0.55,0.45-1,1-1s1,0.45,1,1 S6.55,7,6,7H5V6z M19,18c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1h1V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"smart_toy\": {\n    \"name\": \"smart_toy\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,7H6v12h12V7z M7.5,11.5C7.5,10.67,8.17,10,9,10s1.5,0.67,1.5,1.5S9.83,13,9,13S7.5,12.33,7.5,11.5z M16,17H8v-2h8V17z M15,13c-0.83,0-1.5-0.67-1.5-1.5S14.17,10,15,10s1.5,0.67,1.5,1.5S15.83,13,15,13z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"15\\\"></rect><path d=\\\"M20,9V7c0-1.1-0.9-2-2-2h-3c0-1.66-1.34-3-3-3S9,3.34,9,5H6C4.9,5,4,5.9,4,7v2c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3v4 c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4c1.66,0,3-1.34,3-3C23,10.34,21.66,9,20,9z M18,19H6V7h12V19z\\\"></path><circle cx=\\\"15\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"videogame_asset\": {\n    \"name\": \"videogame_asset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 16h18V8H3v8zm15.5-7c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-4 3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM4 11h2V9h2v2h2v2H8v2H6v-2H4v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h18v8zM6 15h2v-2h2v-2H8V9H6v2H4v2h2z\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"13.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"18.5\\\" cy=\\\"10.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"smartphone\": {\n    \"name\": \"smartphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v14H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_for_education\": {\n    \"name\": \"cast_for_education\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_screen\": {\n    \"name\": \"smart_screen\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><path d=\\\"M3,17h1V7H3V17z M20,7v10h1V7H20z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,11.25h-1.5v1.5H14V11.25z M16.5,11.25H15v1.5h1.5V11.25z M11.5,11.25H10v1.5h1.5V11.25z M9,11.25H7.5v1.5H9V11.25z M21,5H3C1.9,5,1,5.9,1,7v10c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V7C23,5.9,22.1,5,21,5z M4,17H3V7h1V17z M18,17H6V7h12V17z M21,17 h-1V7h1V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tablet\": {\n    \"name\": \"tablet\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 6h14v12H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z\\\"></path>\"\n      }\n    }\n  },\n  \"security\": {\n    \"name\": \"security\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3.19L5 6.3V12h7v8.93c3.72-1.15 6.47-4.82 7-8.94h-7v-8.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 19.93V12H5V6.3l7-3.11v8.8h7c-.53 4.12-3.28 7.79-7 8.94z\\\"></path>\"\n      }\n    }\n  },\n  \"laptop_windows\": {\n    \"name\": \"laptop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 5h16v10H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z\\\"></path>\"\n      }\n    }\n  },\n  \"cast\": {\n    \"name\": \"cast\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"device_unknown\": {\n    \"name\": \"device_unknown\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 19h10V5H7v14zm6-1h-2v-2h2v2zM12 6.72c1.96 0 3.5 1.51 3.5 3.47 0 2.26-2.62 2.49-2.62 4.45h-1.76c0-2.88 2.63-2.7 2.63-4.45 0-.93-.82-1.75-1.75-1.75s-1.75.82-1.75 1.75H8.5c0-1.95 1.54-3.47 3.5-3.47z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 16h2v2h-2zm6-15H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zM12 8.44c.93 0 1.75.82 1.75 1.75 0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47s-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_mic\": {\n    \"name\": \"headset_mic\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17c0 .55.45 1 1 1h1v-4H5v3zm12-3h2v4h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 4h-2v-4h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_option_key\": {\n    \"name\": \"keyboard_option_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><polygon points=\\\"9,5 3,5 3,7 7.85,7 14.77,19 21,19 21,17 15.93,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8,5 3,5 3,6.5 7.13,6.5 12.04,15 17,15 17,13.5 12.91,13.5\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"12\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"developer_board_off\": {\n    \"name\": \"developer_board_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z M16,13.17V11h-2.17l-1-1H16V7h-4v2.17l-1-1V7 H9.83l-2-2H18v10.17L16,13.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.83,5H18v10.17L19.83,17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V5c0-1.1-0.9-2-2-2H5.83L7.83,5z M12,9.17V7h4v3h-3.17L12,9.17z M9.83,7H11v1.17L9.83,7z M13.83,11H16v2.17L13.83,11z M18,21c0.06,0,0.11,0,0.16-0.01l2.32,2.32l1.41-1.41L2.1,2.1L0.69,3.51 l1.32,1.32C2,4.89,2,4.94,2,5v14c0,1.1,0.9,2,2,2H18z M4,19V6.83l2,2V12h3.17l1,1H6v4h5v-3.17l1,1V17h2.17l2,2H4z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,10.88V9h-1.88l-1-1H13V6h-3v1.88l-1-1V6H8.12l-1.5-1.5h7.88v7.88L13,10.88z M3.5,15.5V5.62L5,7.12V10 h2.88l1,1H5v3h4v-2.88l1,1V14h1.88l1.5,1.5H3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.12,14H18v-1.5h-2v-1.75h2v-1.5h-2V7.5h2V6h-2V4.5C16,3.67,15.33,3,14.5,3H5.12l1.5,1.5h7.88v7.88L16.12,14z M8.12,6H9 v0.88L8.12,6z M13,8h-2.88L10,7.88V6h3V8z M11.12,9H13v1.88L11.12,9z M2.22,2.22L1.16,3.28l0.88,0.88C2.01,4.27,2,4.38,2,4.5v11 C2,16.33,2.67,17,3.5,17h11c0.12,0,0.23-0.01,0.34-0.04l1.88,1.88l1.06-1.06L2.22,2.22z M3.5,15.5V5.62L5,7.12V10h2.88l1,1H5v3h4 v-2.88l1,1V14h1.88l1.5,1.5H3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_right\": {\n    \"name\": \"keyboard_double_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6.41,6 5,7.41 9.58,12 5,16.59 6.41,18 12.41,12\\\"></polygon><polygon points=\\\"13,6 11.59,7.41 16.17,12 11.59,16.59 13,18 19,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5.06,5 4,6.06 7.94,10 4,13.94 5.06,15 10.06,10\\\"></polygon><polygon points=\\\"11,5 9.94,6.06 13.88,10 9.94,13.94 11,15 16,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_down\": {\n    \"name\": \"keyboard_double_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,6.41 16.59,5 12,9.58 7.41,5 6,6.41 12,12.41\\\"></polygon><polygon points=\\\"18,13 16.59,11.59 12,16.17 7.41,11.59 6,13 12,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"15,5.06 13.94,4 10,7.94 6.06,4 5,5.06 10,10.06\\\"></polygon><polygon points=\\\"15,11 13.94,9.94 10,13.88 6.06,9.94 5,11 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_backspace\": {\n    \"name\": \"keyboard_backspace\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_mac\": {\n    \"name\": \"tablet_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 3h15v16H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.5 0h-14C3.12 0 2 1.12 2 2.5v19C2 22.88 3.12 24 4.5 24h14c1.38 0 2.5-1.12 2.5-2.5v-19C21 1.12 19.88 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z\\\"></path>\"\n      }\n    }\n  },\n  \"videogame_asset_off\": {\n    \"name\": \"videogame_asset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M10.83,8l8,8H20V8H10.83z M17.5,12c-0.83,0-1.5-0.67-1.5-1.5S16.67,9,17.5,9S19,9.67,19,10.5 S18.33,12,17.5,12z M13.17,16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5,9c0.83,0,1.5,0.67,1.5,1.5S18.33,12,17.5,12S16,11.33,16,10.5S16.67,9,17.5,9z M10.83,8H20v8h-1.17l1.87,1.87 C21.45,17.58,22,16.85,22,16V8c0-1.1-0.9-2-2-2H8.83L10.83,8z M19.78,22.61L15.17,18H4c-1.1,0-2-0.9-2-2V8 c0-0.85,0.55-1.58,1.3-1.87L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M13.17,16l-3-3H9v2H7v-2H5v-2h2V9.83L5.17,8H4v8H13.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M8.62,6.5l7,7h0.88v-7H8.62z M14.5,10.25c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25 S15.75,8.31,15.75,9S15.19,10.25,14.5,10.25z M11.38,13.5l-2.75-2.75H7.55v1.75h-1.5v-1.75H4.3v-1.5h1.75V8.17L4.38,6.5H3.5v7H11.38 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.25,9c0-0.69,0.56-1.25,1.25-1.25S15.75,8.31,15.75,9s-0.56,1.25-1.25,1.25S13.25,9.69,13.25,9z M8.62,6.5h7.88v7h-0.88 l1.4,1.4c0.57-0.21,0.97-0.76,0.97-1.4v-7C18,5.68,17.33,5,16.5,5H7.12L8.62,6.5z M16.01,18.13L12.88,15H3.5C2.67,15,2,14.32,2,13.5 v-7c0-0.64,0.41-1.19,0.97-1.4L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M11.38,13.5l-2.75-2.75H7.55v1.75h-1.5v-1.75H4.3v-1.5 h1.75V8.17L4.38,6.5H3.5v7H11.38z\\\"></path>\"\n      }\n    }\n  },\n  \"tablet_android\": {\n    \"name\": \"tablet_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.75 3h14.5v16H4.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_off\": {\n    \"name\": \"watch_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.89,5.27L13.51,4h-3.02l-0.38,1.27C11.93,4.76,13.34,5.11,13.89,5.27z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.11,18.73L10.49,20h3.02l0.38-1.27C12.07,19.24,10.66,18.89,10.11,18.73z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,7c2.76,0,5,2.24,5,5c0,0.64-0.13,1.25-0.35,1.82l1.5,1.5C18.69,14.33,19,13.2,19,12c0-2.22-1.03-4.19-2.64-5.47L15,2 H9L8.04,5.21l2.14,2.14C10.75,7.13,11.36,7,12,7z M10.49,4h3.02l0.38,1.27c-0.55-0.16-1.97-0.51-3.78,0L10.49,4z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.46,4.46C5.31,9.67,5,10.8,5,12c0,2.22,1.03,4.19,2.64,5.47L9,22h6l0.96-3.21l3.82,3.82l1.41-1.41 L2.81,2.81z M13.51,20h-3.02l-0.38-1.27c0.55,0.15,1.97,0.51,3.78,0L13.51,20z M12,17c-2.76,0-5-2.24-5-5 c0-0.64,0.13-1.25,0.35-1.82l6.47,6.47C13.25,16.87,12.64,17,12,17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.76,14.83l0.41,1.67h1.65l0.41-1.67C10.84,14.93,10.43,15,10,15S9.16,14.93,8.76,14.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.22,5.17l-0.4-1.67H9.18l-0.4,1.67C9.17,5.07,9.58,5,10,5S10.83,5.07,11.22,5.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,6.5c1.93,0,3.5,1.57,3.5,3.5c0,0.41-0.08,0.8-0.21,1.16l1.14,1.14C14.79,11.62,15,10.83,15,10 c0-1.65-0.81-3.1-2.04-4.01L12,2H8L7.25,5.13l1.59,1.59C9.2,6.58,9.59,6.5,10,6.5z M9.18,3.5h1.63l0.4,1.67 C10.83,5.07,10.42,5,10,5S9.17,5.07,8.78,5.17L9.18,3.5z\\\"></path><path d=\\\"M1.87,3.99l3.7,3.7C5.21,8.38,5,9.17,5,10c0,1.64,0.8,3.07,2.01,3.99L8,18h4l0.77-3.11l3.24,3.24l1.06-1.06L2.93,2.93 L1.87,3.99z M10.83,16.5H9.17l-0.41-1.67C9.16,14.93,9.57,15,10,15s0.84-0.07,1.24-0.17L10.83,16.5z M6.71,8.84l4.45,4.45 C10.8,13.42,10.41,13.5,10,13.5c-1.93,0-3.5-1.57-3.5-3.5C6.5,9.59,6.58,9.2,6.71,8.84z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_hide\": {\n    \"name\": \"keyboard_hide\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15h16V5H4v10zm13-9h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zm-3-3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm0 3h8v2H8v-2zM5 6h2v2H5V6zm0 3h2v2H5V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H4V5h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 6h2v2H8zm0 3h2v2H8zM5 9h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2zm-5 17 4-4H8l4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"home_max\": {\n    \"name\": \"home_max\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,7H5C3.9,7,3,7.9,3,9v5c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,5H5C2.79,5,1,6.79,1,9v5c0,2.21,1.79,4,4,4h2v1h10v-1h2c2.21,0,4-1.79,4-4V9C23,6.79,21.21,5,19,5z M21,14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_return\": {\n    \"name\": \"keyboard_return\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"computer\": {\n    \"name\": \"computer\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h16v10H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"memory\": {\n    \"name\": \"memory\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h10V7H7v10zm2-8h6v6H9V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 11V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10zm-2-8H9v6h6V9zm-2 4h-2v-2h2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_capslock\": {\n    \"name\": \"keyboard_capslock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"tv\": {\n    \"name\": \"tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h18v12H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"adf_scanner\": {\n    \"name\": \"adf_scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"6\\\"></rect><path d=\\\"M19,14H5c-0.55,0-1,0.45-1,1v3h16v-3C20,14.45,19.55,14,19,14z M18,17c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,16.55,18.55,17,18,17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,12h-1V4H6v8H5c-1.66,0-3,1.34-3,3v5h20v-5C22,13.34,20.66,12,19,12z M8,6h8v6H8V6z M20,18H4v-3c0-0.55,0.45-1,1-1h14 c0.55,0,1,0.45,1,1V18z\\\"></path><circle cx=\\\"18\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,14.5h13V11h-13V14.5z M14.75,12c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75 S14,13.16,14,12.75C14,12.34,14.34,12,14.75,12z\\\" opacity=\\\".3\\\"></path><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"7\\\" x=\\\"6.5\\\" y=\\\"5.5\\\"></rect><g><path d=\\\"M16,9.5h-1V4H5v5.5H4c-1.1,0-2,0.9-2,2V16h16v-4.5C18,10.4,17.1,9.5,16,9.5z M6.5,5.5h7v4h-7V5.5z M16.5,14.5h-13V11h13 V14.5z\\\"></path></g><g><circle cx=\\\"14.75\\\" cy=\\\"12.75\\\" r=\\\".75\\\"></circle></g></g></g>\"\n      }\n    }\n  },\n  \"laptop\": {\n    \"name\": \"laptop\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M4,6h16v10H4V6z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,18c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v10c0,1.1,0.9,2,2,2H0v2h24v-2H20z M4,6h16v10H4V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"laptop_chromebook\": {\n    \"name\": \"laptop_chromebook\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 5h16v10H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_group\": {\n    \"name\": \"speaker_group\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16.99l8 .01V3h-8v13.99zM14 4c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 5c1.93 0 3.5 1.57 3.5 3.5S15.93 16 14 16s-3.5-1.57-3.5-3.5S12.07 9 14 9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM18 17l-8-.01V3h8v14zm-4-9c1.1 0 2-.89 2-2s-.9-2-2-2-2 .89-2 2 .9 2 2 2zm0 8c1.93 0 3.5-1.57 3.5-3.5S15.93 9 14 9s-3.5 1.57-3.5 3.5S12.07 16 14 16zm0-5c.83 0 1.5.67 1.5 1.5S14.83 14 14 14s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM6 5H4v16c0 1.1.89 2 2 2h10v-2H6V5z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_iphone\": {\n    \"name\": \"phone_iphone\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 4h9v14H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5 1h-8C6.12 1 5 2.12 5 3.5v17C5 21.88 6.12 23 7.5 23h8c1.38 0 2.5-1.12 2.5-2.5v-17C18 2.12 16.88 1 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard\": {\n    \"name\": \"keyboard\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17h16V7H4v10zm13-9h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zm-3-3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm0 3h8v2H8v-2zM5 8h2v2H5V8zm0 3h2v2H5v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H4V7h16v10zm-9-9h2v2h-2zm0 3h2v2h-2zM8 8h2v2H8zm0 3h2v2H8zm-3 0h2v2H5zm0-3h2v2H5zm3 6h8v2H8zm6-3h2v2h-2zm0-3h2v2h-2zm3 3h2v2h-2zm0-3h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker\": {\n    \"name\": \"speaker\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 4v16h10V4H7zm5 1c1.1 0 2 .9 2 2s-.9 2-2 2c-1.11 0-2-.9-2-2s.89-2 2-2zm0 14c-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=\\\"M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM7 20V4h10v16H7zm5-11c1.1 0 2-.9 2-2s-.9-2-2-2c-1.11 0-2 .9-2 2s.89 2 2 2zm0 2c-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>\"\n      }\n    }\n  },\n  \"gamepad\": {\n    \"name\": \"gamepad\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.67 11H4v2h2.67l1-1zM13 6.67V4h-2v2.67l1 1zm-2 10.66V20h2v-2.67l-1-1zM16.33 12l1 1H20v-2h-2.67z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 16.5V22h6v-5.5l-3-3-3 3zm4 3.5h-2v-2.67l1-1 1 1V20zm2-12.5V2H9v5.5l3 3 3-3zM11 4h2v2.67l-1 1-1-1V4zM7.5 9H2v6h5.5l3-3-3-3zm-.83 4H4v-2h2.67l1 1-1 1zm9.83-4l-3 3 3 3H22V9h-5.5zm3.5 4h-2.67l-1-1 1-1H20v2z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_up\": {\n    \"name\": \"keyboard_double_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"6,17.59 7.41,19 12,14.42 16.59,19 18,17.59 12,11.59\\\"></polygon><polygon points=\\\"6,11 7.41,12.41 12,7.83 16.59,12.41 18,11 12,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"5,14.94 6.06,16 10,12.06 13.94,16 15,14.94 10,9.94\\\"></polygon><polygon points=\\\"5,9 6.06,10.06 10,6.12 13.94,10.06 15,9 10,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"watch\": {\n    \"name\": \"watch\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.72 4.48L14.31 2H9.7l-.41 2.47C10.13 4.17 11.05 4 12 4c.96 0 1.87.17 2.72.48zM9.29 19.53L9.7 22h4.61l.41-2.48c-.85.31-1.76.48-2.72.48-.95 0-1.87-.17-2.71-.47z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.96 5.73L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73C18.81 16.81 20 14.54 20 12s-1.19-4.81-3.04-6.27zM9.7 2h4.61l.41 2.48C13.87 4.17 12.96 4 12 4c-.95 0-1.87.17-2.71.47L9.7 2zm4.61 20H9.7l-.41-2.47c.84.3 1.76.47 2.71.47.96 0 1.87-.17 2.72-.48L14.31 22zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_not_supported\": {\n    \"name\": \"browser_not_supported\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,6v10.5l1.95,1.95C20.98,18.3,21,18.15,21,18V6c0-1.1-0.9-2-2-2H6.5l2,2H19z\\\"></path><path d=\\\"M3.22,3.32L1.95,4.59L3,5.64L3,18c0,1.1,0.9,2,2,2h12.36l2.06,2.06l1.27-1.27L3.22,3.32z M15,18H5V7.64L15.36,18H15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15,5v8.59l1,1V5c0-0.55-0.45-1-1-1H5.41l1,1H15z\\\"></path><path d=\\\"M3.64,3.64L2.93,4.34L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.07,1.07l0.71-0.71L3.64,3.64z M5,15V6.41L13.59,15H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dock\": {\n    \"name\": \"dock\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5h8v10H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 21h8v2H8zm8-19.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"device_hub\": {\n    \"name\": \"device_hub\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"earbuds_battery\": {\n    \"name\": \"earbuds_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"7\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"9\\\"></rect><path d=\\\"M10.62,6C8.76,6,7.25,7.51,7.25,9.38v5.25c0,1.04-0.84,1.88-1.88,1.88S3.5,15.66,3.5,14.62v-4.7C3.66,9.97,3.83,10,4,10 c1.1,0,2-0.9,2-2S5.1,6,4,6S2,6.9,2,8c0,0.04,0,6.62,0,6.62C2,16.49,3.51,18,5.38,18s3.38-1.51,3.38-3.38V9.38 c0-1.04,0.84-1.88,1.88-1.88s1.88,0.84,1.88,1.88v4.7C12.34,14.03,12.17,14,12,14c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 c0-0.04,0-6.62,0-6.62C14,7.51,12.49,6,10.62,6z\\\"></path><path d=\\\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headphones\": {\n    \"name\": \"headphones\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"15\\\"></rect><path d=\\\"M12,3c-4.97,0-9,4.03-9,9v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-3.87,3.13-7,7-7s7,3.13,7,7v1h-4v8h4c1.1,0,2-0.9,2-2v-7 C21,7.03,16.97,3,12,3z M7,15v4H5v-4H7z M19,19h-2v-4h2V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"headphones_battery\": {\n    \"name\": \"headphones_battery\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><rect height=\\\"7\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"18\\\" y=\\\"9\\\"></rect><path d=\\\"M21,7h-1V6h-2v1h-1c-0.55,0-1,0.45-1,1v9c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1V8C22,7.45,21.55,7,21,7z M20,16h-2V9h2 V16z\\\"></path></g><path d=\\\"M8,6c-3.31,0-6,2.69-6,6v4c0,1.1,0.9,2,2,2h2v-5H3.5v-1c0-2.48,2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5v1H10v5h2 c1.1,0,2-0.9,2-2v-4C14,8.69,11.31,6,8,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"start\": {\n    \"name\": \"start\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.59,7.41L18.17,11H6v2h12.17l-3.59,3.59L16,18l6-6l-6-6L14.59,7.41z M2,6v12h2V6H2z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.12,5.62L17.5,10l-4.38,4.38l-1.06-1.06l2.56-2.56H5.5v-1.5h9.13L12.07,6.7L13.12,5.62z M2.5,5v10H4V5H2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_windows\": {\n    \"name\": \"desktop_windows\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 4h18v12H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"toys\": {\n    \"name\": \"toys\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M18,12H6c-1.1,0-2,0.9-2,2c0,0.51,0.2,0.97,0.51,1.32C5.05,14.53,5.97,14,7,14c1.3,0,2.4,0.84,2.82,2h4.37 c0.41-1.16,1.51-2,2.82-2c1.03,0,1.95,0.53,2.49,1.32C19.8,14.97,20,14.51,20,14C20,12.9,19.1,12,18,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.75,10.08L17.4,6.05C17,4.82,15.85,4,14.56,4H9.44C8.15,4,7,4.82,6.6,6.05L5.81,8.4L4.41,7l0.29-0.29 c0.39-0.39,0.39-1.02,0-1.41c-0.39-0.39-1.02-0.39-1.41,0l-2,2c-0.39,0.39-0.39,1.02,0,1.41c0.39,0.39,1.02,0.39,1.41,0L3,8.41 l1.79,1.79C3.18,10.72,2,12.22,2,14c0,1.49,0.83,2.78,2.05,3.47C4.27,18.9,5.51,20,7,20c1.3,0,2.4-0.84,2.82-2h4.37 c0.41,1.16,1.51,2,2.82,2c1.49,0,2.73-1.1,2.95-2.53C21.17,16.78,22,15.49,22,14C22,12.05,20.6,10.43,18.75,10.08z M13,6h1.56 c0.43,0,0.81,0.27,0.95,0.68L16.61,10H13V6z M8.49,6.68C8.63,6.27,9.01,6,9.44,6H11v4H7.41L7.39,9.98L8.49,6.68z M7,18 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.55,18,7,18z M17,18c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S17.55,18,17,18z M19.49,15.32C18.95,14.53,18.03,14,17,14c-1.3,0-2.4,0.84-2.82,2H9.82C9.4,14.84,8.3,14,7,14c-1.03,0-1.95,0.53-2.49,1.32 C4.2,14.97,4,14.51,4,14c0-1.1,0.9-2,2-2h12c1.1,0,2,0.9,2,2C20,14.51,19.8,14.97,19.49,15.32z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M14.25,10h-8.5c-0.69,0-1.25,0.56-1.25,1.25c0,0.24,0.09,0.46,0.21,0.65C5.12,11.36,5.77,11,6.5,11 c0.98,0,1.8,0.63,2.11,1.5h2.78c0.31-0.87,1.14-1.5,2.11-1.5c0.73,0,1.38,0.36,1.79,0.9c0.12-0.19,0.21-0.41,0.21-0.65 C15.5,10.56,14.94,10,14.25,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.55,8.53l-0.83-2.49c-0.31-0.92-1.17-1.54-2.13-1.54H8.41c-0.97,0-1.83,0.62-2.13,1.54L5.73,7.67l-1-1l0.15-0.15 c0.29-0.29,0.29-0.77,0-1.06s-0.77-0.29-1.06,0L2.47,6.82c-0.29,0.29-0.29,0.77,0,1.06c0.29,0.29,0.77,0.29,1.06,0l0.14-0.14 l0.99,0.99C3.69,9.15,3,10.12,3,11.25c0,0.98,0.51,1.83,1.28,2.32c0.16,1.09,1.09,1.93,2.22,1.93c0.98,0,1.8-0.63,2.11-1.5h2.78 c0.31,0.87,1.14,1.5,2.11,1.5c1.13,0,2.06-0.84,2.22-1.93c0.77-0.49,1.28-1.34,1.28-2.32C17,9.84,15.92,8.68,14.55,8.53z M10.75,6 h0.84c0.32,0,0.61,0.21,0.71,0.51l0.66,1.99h-2.21V6z M7.7,6.51C7.81,6.21,8.09,6,8.41,6h0.84v2.5H7.04L7.7,6.51z M6.5,14 c-0.41,0-0.75-0.34-0.75-0.75S6.09,12.5,6.5,12.5s0.75,0.34,0.75,0.75S6.91,14,6.5,14z M13.5,14c-0.41,0-0.75-0.34-0.75-0.75 s0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75S13.91,14,13.5,14z M15.29,11.9c-0.41-0.54-1.06-0.9-1.79-0.9c-0.98,0-1.8,0.63-2.11,1.5 H8.61C8.3,11.63,7.48,11,6.5,11c-0.73,0-1.38,0.36-1.79,0.9c-0.12-0.19-0.21-0.41-0.21-0.65C4.5,10.56,5.06,10,5.75,10h8.5 c0.69,0,1.25,0.56,1.25,1.25C15.5,11.49,15.41,11.71,15.29,11.9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_board\": {\n    \"name\": \"developer_board\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 19h14V5H4v14zm8-12h4v3h-4V7zm0 4h4v6h-4v-6zM6 7h5v5H6V7zm0 6h5v4H6v-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6 13h5v4H6zm0-6h5v5H6zm6 0h4v3h-4zm0 4h4v6h-4zm10-2V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"home_mini\": {\n    \"name\": \"home_mini\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,7c-7.91,0-8,4.8-8,5h16C19.99,11.51,19.64,7,12,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.14,17h5.72c2.1,0,3.92-1.24,4.71-3H4.42C5.22,15.76,7.04,17,9.14,17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,5C4.19,5,2,9.48,2,12c0,3.86,3.13,7,6.99,7h6.02c2.69,0,6.99-2.08,6.99-7C22,12,22,5,12,5z M14.86,17H9.14 c-2.1,0-3.92-1.24-4.71-3h15.15C18.78,15.76,16.96,17,14.86,17z M4,12c0-0.2,0.09-5,8-5c7.64,0,7.99,4.51,8,5H4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"keyboard_control_key\": {\n    \"name\": \"keyboard_control_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"5,12 6.41,13.41 12,7.83 17.59,13.41 19,12 12,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"5,10 6.06,11.06 10,7.12 13.94,11.06 15,10 10,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"connected_tv\": {\n    \"name\": \"connected_tv\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4c1.1,0,1.99-0.9,1.99-2L22,5C22,3.9,21.1,3,20,3z M20,17H4V5h16V17 z M5,14v2h2C7,14.89,6.11,14,5,14z M5,11v1.43c1.97,0,3.57,1.6,3.57,3.57H10C10,13.24,7.76,11,5,11z M5,8v1.45 c3.61,0,6.55,2.93,6.55,6.55H13C13,11.58,9.41,8,5,8z\\\"></path></g><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"5\\\"></rect></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_down\": {\n    \"name\": \"keyboard_arrow_down\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"cast_connected\": {\n    \"name\": \"cast_connected\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 9H5.95c2.83 1.17 5.15 3.3 6.56 6H17V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2c4.97 0 9 4.03 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 7v1.63c.32.1.63.24.95.37H17v6h-4.49c.15.29.29.58.42.88.16.36.31.74.44 1.12H19V7H5z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_mac\": {\n    \"name\": \"desktop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 4h18v10H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z\\\"></path>\"\n      }\n    }\n  },\n  \"smart_display\": {\n    \"name\": \"smart_display\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M4,18.01h16V5.99H4V18.01z M9.5,7.5l7,4.5l-7,4.5V7.5z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"9.5,7.5 9.5,16.5 16.5,12\\\"></polygon><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18.01H4V5.99h16V18.01z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"point_of_sale\": {\n    \"name\": \"point_of_sale\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5 C10,15.78,9.78,16,9.5,16z M10,13.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,13,8,13.22,8,13.5C8,13.78,8.22,14,8.5,14h1 C9.78,14,10,13.78,10,13.5z M10,11.5c0-0.28-0.22-0.5-0.5-0.5h-1C8.22,11,8,11.22,8,11.5C8,11.78,8.22,12,8.5,12h1 C9.78,12,10,11.78,10,11.5z M13,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,16,13,15.78,13,15.5z M13,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,14,13,13.78,13,13.5z M13,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C12.78,12,13,11.78,13,11.5z M16,15.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,16,16,15.78,16,15.5z M16,13.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,14,16,13.78,16,13.5z M16,11.5c0-0.28-0.22-0.5-0.5-0.5h-1c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h1 C15.78,12,16,11.78,16,11.5z M17,4H7v2h10V4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,2H7C5.9,2,5,2.9,5,4v2c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V4C19,2.9,18.1,2,17,2z M17,6H7V4h10V6z M20,22H4 c-1.1,0-2-0.9-2-2v-1h20v1C22,21.1,21.1,22,20,22z M18.53,10.19C18.21,9.47,17.49,9,16.7,9H7.3c-0.79,0-1.51,0.47-1.83,1.19L2,18 h20L18.53,10.19z M9.5,16h-1C8.22,16,8,15.78,8,15.5C8,15.22,8.22,15,8.5,15h1c0.28,0,0.5,0.22,0.5,0.5C10,15.78,9.78,16,9.5,16z M9.5,14h-1C8.22,14,8,13.78,8,13.5C8,13.22,8.22,13,8.5,13h1c0.28,0,0.5,0.22,0.5,0.5C10,13.78,9.78,14,9.5,14z M9.5,12h-1 C8.22,12,8,11.78,8,11.5C8,11.22,8.22,11,8.5,11h1c0.28,0,0.5,0.22,0.5,0.5C10,11.78,9.78,12,9.5,12z M12.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,15.78,12.78,16,12.5,16z M12.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,13.78,12.78,14,12.5,14z M12.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C13,11.78,12.78,12,12.5,12z M15.5,16h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,15.78,15.78,16,15.5,16z M15.5,14h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,13.78,15.78,14,15.5,14z M15.5,12h-1 c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h1c0.28,0,0.5,0.22,0.5,0.5C16,11.78,15.78,12,15.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14,5H6V4h8V5z M8.25,12.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5 h0.5C8.03,13,8.25,12.78,8.25,12.5z M8.25,10.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5S6.97,11,7.25,11h0.5 C8.03,11,8.25,10.78,8.25,10.5z M8.25,8.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5h0.5 C8.03,9,8.25,8.78,8.25,8.5z M10.75,12.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5S9.47,13,9.75,13h0.5 C10.53,13,10.75,12.78,10.75,12.5z M10.75,10.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5 h0.5C10.53,11,10.75,10.78,10.75,10.5z M10.75,8.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5S9.47,9,9.75,9h0.5 C10.53,9,10.75,8.78,10.75,8.5z M13.25,12.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5h0.5 C13.03,13,13.25,12.78,13.25,12.5z M13.25,10.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5c0,0.28,0.22,0.5,0.5,0.5 h0.5C13.03,11,13.25,10.78,13.25,10.5z M13.25,8.5c0-0.28-0.22-0.5-0.5-0.5h-0.5c-0.28,0-0.5,0.22-0.5,0.5S11.97,9,12.25,9h0.5 C13.03,9,13.25,8.78,13.25,8.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,3H6C5.45,3,5,3.45,5,4v1c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V4C15,3.45,14.55,3,14,3z M14,5H6V4h8V5z M16,17H4 c-0.55,0-1-0.45-1-1l0,0l0-1h14v1l0,0C17,16.55,16.55,17,16,17z M14.26,7.61C14.1,7.24,13.74,7,13.34,7H6.66 C6.26,7,5.9,7.24,5.74,7.61L3,14h14L14.26,7.61z M7.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,12.78,8.03,13,7.75,13z M7.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5S6.97,10,7.25,10h0.5 c0.28,0,0.5,0.22,0.5,0.5S8.03,11,7.75,11z M7.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C8.25,8.78,8.03,9,7.75,9z M10.25,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,12,9.75,12h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,13,10.25,13z M10.25,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5 c0.28,0,0.5,0.22,0.5,0.5C10.75,10.78,10.53,11,10.25,11z M10.25,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S9.47,8,9.75,8h0.5 c0.28,0,0.5,0.22,0.5,0.5S10.53,9,10.25,9z M12.75,13h-0.5c-0.28,0-0.5-0.22-0.5-0.5s0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,13,12.75,13z M12.75,11h-0.5c-0.28,0-0.5-0.22-0.5-0.5c0-0.28,0.22-0.5,0.5-0.5h0.5c0.28,0,0.5,0.22,0.5,0.5 C13.25,10.78,13.03,11,12.75,11z M12.75,9h-0.5c-0.28,0-0.5-0.22-0.5-0.5S11.97,8,12.25,8h0.5c0.28,0,0.5,0.22,0.5,0.5 S13.03,9,12.75,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"scanner\": {\n    \"name\": \"scanner\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 14v4h14v-4H5zm3 3H6v-2h2v2zm10 0h-8v-2h8v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM19 18H5v-4h14v4zM6 15h2v2H6zm4 0h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_off\": {\n    \"name\": \"phonelink_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 17v-7h-4v4.61L20.39 17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M23 8h-6c-.55 0-1 .45-1 1v3.61l2 2V10h4v7h-1.61l2.93 2.93c.39-.13.68-.49.68-.93V9c0-.55-.45-1-1-1zm-1-2V4H7.39l2 2zM.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51.65 2.92zM4 6.27L14.73 17H4V6.27z\\\"></path>\"\n      }\n    }\n  },\n  \"power_input\": {\n    \"name\": \"power_input\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_android\": {\n    \"name\": \"phone_android\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 4h10v14H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3-3H7V4h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"browser_updated\": {\n    \"name\": \"browser_updated\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M22,13v3c0,1.1-0.9,2-2,2h-3l1,1v2H6v-2l1-1H4c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2l8,0v2L4,5v11h16v-3H22z M15,15l-5-5h4V3 h2v7h4L15,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M18,10.5v3c0,0.83-0.67,1.5-1.5,1.5H13l1,1v1H6v-1l1-1H3.5C2.67,15,2,14.33,2,13.5v-9C2,3.67,2.67,3,3.5,3h6.75v1.5H3.5v9 h13v-3H18z M16.5,9l-3.25,0V3h-1.5v6L8.5,9l4,4L16.5,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"keyboard_alt\": {\n    \"name\": \"keyboard_alt\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,19h18V6H3V19z M17,8h2v2h-2V8z M17,12h2v2h-2V12z M13,8h2v2h-2V8z M13,12h2 v2h-2V12z M9,8h2v2H9V8z M9,12h2v2H9V12z M8,16h8v1H8V16z M5,8h2v2H5V8z M5,12h2v2H5V12z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,4H3C1.9,4,1,4.9,1,6v13c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M21,19H3V6h18V19z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"8\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"8\\\"></rect><rect height=\\\"1\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"16\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"8\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"12\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"12\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"12\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"8\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"headset\": {\n    \"name\": \"headset\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 18h1c.55 0 1-.45 1-1v-3h-2v4zM5 17c0 .55.45 1 1 1h1v-4H5v3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9zM7 14v4H6c-.55 0-1-.45-1-1v-3h2zm12 3c0 .55-.45 1-1 1h-1v-4h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_voice\": {\n    \"name\": \"keyboard_voice\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 13.3c.66 0 1.19-.54 1.19-1.2l.01-6.2c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v6.2c0 .66.54 1.2 1.2 1.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2s-1.2-.54-1.2-1.2V5.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.41 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z\\\"></path>\"\n      }\n    }\n  },\n  \"mouse\": {\n    \"name\": \"mouse\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3.16V9h5c-.04-2.94-2.19-5.37-5-5.84zm-2 0C8.19 3.63 6.04 6.06 6 9h5V3.16zM11 11H6v4c0 3.31 2.69 6 6 6s6-2.69 6-6v-4h-7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 9c-.04-4.39-3.6-7.93-8-7.93S4.04 4.61 4 9v6c0 4.42 3.58 8 8 8s8-3.58 8-8V9zm-7-5.84c2.81.47 4.96 2.9 5 5.84h-5V3.16zm-2 0V9H6c.04-2.94 2.19-5.37 5-5.84zM18 15c0 3.31-2.69 6-6 6s-6-2.69-6-6v-4h12v4z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_tab\": {\n    \"name\": \"keyboard_tab\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_command_key\": {\n    \"name\": \"keyboard_command_key\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17.5,3C15.57,3,14,4.57,14,6.5V8h-4V6.5C10,4.57,8.43,3,6.5,3S3,4.57,3,6.5S4.57,10,6.5,10H8v4H6.5 C4.57,14,3,15.57,3,17.5S4.57,21,6.5,21s3.5-1.57,3.5-3.5V16h4v1.5c0,1.93,1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S19.43,14,17.5,14H16 v-4h1.5c1.93,0,3.5-1.57,3.5-3.5S19.43,3,17.5,3L17.5,3z M16,8V6.5C16,5.67,16.67,5,17.5,5S19,5.67,19,6.5S18.33,8,17.5,8H16L16,8 z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5V8H6.5L6.5,8z M10,14v-4h4v4H10L10,14z M17.5,19c-0.83,0-1.5-0.67-1.5-1.5 V16h1.5c0.83,0,1.5,0.67,1.5,1.5S18.33,19,17.5,19L17.5,19z M6.5,19C5.67,19,5,18.33,5,17.5S5.67,16,6.5,16H8v1.5 C8,18.33,7.33,19,6.5,19L6.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.25,11.5H13v-3h1.25C15.77,8.5,17,7.27,17,5.75S15.77,3,14.25,3S11.5,4.23,11.5,5.75V7h-3V5.75C8.5,4.23,7.27,3,5.75,3 S3,4.23,3,5.75S4.23,8.5,5.75,8.5H7v3H5.75C4.23,11.5,3,12.73,3,14.25S4.23,17,5.75,17s2.75-1.23,2.75-2.75V13h3v1.25 c0,1.52,1.23,2.75,2.75,2.75S17,15.77,17,14.25S15.77,11.5,14.25,11.5z M13,5.75c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S14.94,7,14.25,7H13V5.75z M5.75,7C5.06,7,4.5,6.44,4.5,5.75S5.06,4.5,5.75,4.5S7,5.06,7,5.75V7H5.75z M7,14.25 c0,0.69-0.56,1.25-1.25,1.25c-0.69,0-1.25-0.56-1.25-1.25S5.06,13,5.75,13H7h0V14.25z M8.5,11.5L8.5,11.5l0-3h3v3H8.5z M14.25,15.5 c-0.69,0-1.25-0.56-1.25-1.25V13h1.25c0.69,0,1.25,0.56,1.25,1.25S14.94,15.5,14.25,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"laptop_mac\": {\n    \"name\": \"laptop_mac\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 5h16v11H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"router\": {\n    \"name\": \"router\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 15H5v4h14v-4h-4zm-7 3H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 4.2c1.5 0 3 .6 4.2 1.7l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2zm-3.3 2.5l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zm0 6H5v-4h14v4zM6 16h2v2H6zm3.5 0h2v2h-2zm3.5 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"headset_off\": {\n    \"name\": \"headset_off\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"14\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"16.83,14 19,16.17 19,14\\\"></polygon><g><path d=\\\"M12,4c3.87,0,7,3.13,7,7v1h-4v0.17L16.83,14H19v2.17l2,2V11c0-4.97-4.03-9-9-9C9.98,2,8.12,2.67,6.62,3.8l1.43,1.43 C9.17,4.45,10.53,4,12,4z\\\"></path><path d=\\\"M2.1,2.1L0.69,3.51l3.33,3.33C3.37,8.09,3,9.5,3,11v7c0,1.1,0.9,2,2,2h4v-8H5v-1c0-0.94,0.19-1.83,0.52-2.65L15,17.83V20 h2.17l1,1H12v2h7c0.34,0,0.65-0.09,0.93-0.24l0.55,0.55l1.41-1.41L2.1,2.1z M7,14v4H5v-4H7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"monitor\": {\n    \"name\": \"monitor\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v11c0,1.1,0.9,2,2,2h3l-1,1v2h12v-2l-1-1h3c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,16H4V5h16 V16z\\\"></path></g><rect height=\\\"11\\\" opacity=\\\".3\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"5\\\"></rect></g>\"\n      }\n    }\n  },\n  \"devices_other\": {\n    \"name\": \"devices_other\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10h4v8h-4z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"11\\\" cy=\\\"16\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm19 2h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8zm-8-6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_up\": {\n    \"name\": \"keyboard_arrow_up\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_double_arrow_left\": {\n    \"name\": \"keyboard_double_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.59,18 19,16.59 14.42,12 19,7.41 17.59,6 11.59,12\\\"></polygon><polygon points=\\\"11,18 12.41,16.59 7.83,12 12.41,7.41 11,6 5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14.94,15 16,13.94 12.06,10 16,6.06 14.94,5 9.94,10\\\"></polygon><polygon points=\\\"9,15 10.06,13.94 6.12,10 10.06,6.06 9,5 4,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"keyboard_arrow_right\": {\n    \"name\": \"keyboard_arrow_right\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink\": {\n    \"name\": \"phonelink\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 10h4v7h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z\\\"></path>\"\n      }\n    }\n  },\n  \"keyboard_arrow_left\": {\n    \"name\": \"keyboard_arrow_left\",\n    \"keywords\": [\n      \"hardware\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect><path d=\\\"M17,8h5.92C19.97,5.51,16.16,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21l5-5.01V8z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"timer_3_select\": {\n    \"name\": \"timer_3_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21,11v2h-4v1h2.5c0.83,0,1.5,0.68,1.5,1.5v2c0,0.83-0.67,1.5-1.5,1.5H15v-2h4v-1h-2.5c-0.82,0-1.5-0.68-1.5-1.5v-2 c0-0.82,0.68-1.5,1.5-1.5H21z M4,5v3h6v2.5H4v3h6V16H4v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1 V8c0-1.66-1.34-3-3-3H4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_no_sim\": {\n    \"name\": \"signal_cellular_no_sim\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.83 5L9.36 6.47 17 14.11V5zM7 9.79V19h9.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.83 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-7L7.94 5.06l1.42 1.42L10.83 5zm10.43 16.21L3.79 3.74 2.38 5.15 5 7.77V19c0 1.11.9 2 2 2h11.23l1.62 1.62 1.41-1.41zM7 19V9.79L16.23 19H7z\\\"></path>\"\n      }\n    }\n  },\n  \"data_usage\": {\n    \"name\": \"data_usage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"mobiledata_off\": {\n    \"name\": \"mobiledata_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"16,7 19,7 15,3 11,7 14,7 14,11.17 16,13.17\\\"></polygon><polygon points=\\\"2.81,2.81 1.39,4.22 8,10.83 8,17.01 5,17.02 9,21 13,17 10,17.01 10,12.83 19.78,22.61 21.19,21.19\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"battery_full\": {\n    \"name\": \"battery_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_0_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M18,20v2H2L22,2v6h-2V6.83L6.83,20H18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,9v6H18V9H16.5z M2,18h13v-1.5H5.62L16.5,5.62V7.5H18V2L2,18z M18,18h-1.5v-1.5H18V18z\\\"></path>\"\n      }\n    }\n  },\n  \"graphic_eq\": {\n    \"name\": \"graphic_eq\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_friendly\": {\n    \"name\": \"mobile_friendly\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling_2\": {\n    \"name\": \"wifi_calling_2\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.49,4.5c1.79,0,3.42,0.73,4.59,1.91l1.06-1.06C20.7,3.9,18.7,3,16.49,3c-2.21,0-4.21,0.9-5.66,2.34 l1.06,1.06C13.08,5.23,14.7,4.5,16.49,4.5z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M16.49,6c-1.38,0-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03s1.84,0.39,2.47,1.03l1.06-1.06 C19.12,6.56,17.87,6,16.49,6z\\\"></path><path d=\\\"M16.49,9c-0.55,0-1.05,0.22-1.41,0.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9z\\\"></path><g><path d=\\\"M15,17.83c1.29,0.54,2.63,0.89,4,1.07v-2.23l-2.35-0.47L15,17.83z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.33,5H5.1c0.18,1.37,0.53,2.7,1.07,4L7.8,7.35L7.33,5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3H4C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15 C21,15.37,20.66,14.96,20.2,14.87z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07 l1.65-1.63L19,16.67V18.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_3_bar\": {\n    \"name\": \"signal_wifi_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_off\": {\n    \"name\": \"media_bluetooth_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,6.17V3h6v4h-4v1.17L9,6.17z M19.42,15L22,17.57l-0.8,0.8l-6.78-6.78l0.8-0.8l2.75,2.75V9h0.6L22,12.43L19.42,15z M19.17,13.55l1.13-1.13l-1.13-1.13V13.55z M17.21,17.21l3.98,3.98l-1.41,1.41l-3.98-3.98l-0.58,0.58l-0.85-0.85l0.58-0.58 L11,13.83V17c0,2.21-1.78,4-3.99,4S3,19.21,3,17s1.79-4,4.01-4c0.73,0,1.41,0.21,2,0.55v-1.72L1.39,4.22L2.8,2.81l13.56,13.56 L17.21,17.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_2_bar\": {\n    \"name\": \"network_wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.78,13.38C15.4,12.5,13.76,12,12,12c-1.76,0-3.4,0.5-4.78,1.38l-4.3-4.3C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07L16.78,13.38z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M16.78,13.38C15.4,12.5,13.76,12,12,12 c-1.76,0-3.4,0.5-4.78,1.38l-4.3-4.3C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L16.78,13.38z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6.36,11.25L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6l-4.15,4.15 C12.58,10.43,11.33,10,10,10C8.67,10,7.42,10.43,6.36,11.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M6.36,11.25L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5 c2.83,0,5.54,0.91,7.79,2.6l-4.15,4.15C12.58,10.43,11.33,10,10,10C8.67,10,7.42,10.43,6.36,11.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bloodtype\": {\n    \"name\": \"bloodtype\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,4.67c-4.05,3.7-6,6.79-6,9.14c0,3.63,2.65,6.2,6,6.2s6-2.57,6-6.2C18,11.46,16.05,8.36,12,4.67z M15,18 H9v-2h6V18z M15,13h-2v2h-2v-2H9v-2h2V9h2v2h2V13z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"16\\\"></rect><polygon points=\\\"13,9 11,9 11,11 9,11 9,13 11,13 11,15 13,15 13,13 15,13 15,11 13,11\\\"></polygon><path d=\\\"M12,2c-5.33,4.55-8,8.48-8,11.8c0,4.98,3.8,8.2,8,8.2s8-3.22,8-8.2C20,10.48,17.33,6.55,12,2z M12,20 c-3.35,0-6-2.57-6-6.2c0-2.34,1.95-5.44,6-9.14c4.05,3.7,6,6.79,6,9.14C18,17.43,15.35,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"medication_liquid\": {\n    \"name\": \"medication_liquid\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g opacity=\\\".3\\\"><defs><rect height=\\\"11\\\" id=\\\"SVGID_1_\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"4\\\" y=\\\"8\\\"></defs></defs><use overflow=\\\"visible\\\" xlink:href=\\\"#SVGID_1_\\\"></rect><clipPath id=\\\"SVGID_2_\\\"><use overflow=\\\"visible\\\" xlink:href=\\\"#SVGID_1_\\\"></clipPath></clipPath><path clip-path=\\\"url(#SVGID_2_)\\\" d=\\\"M4,19h10V8H4V19z M5,12h2.5V9.5h3V12H13v3h-2.5v2.5h-3V15H5V12z\\\"></path></g><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><path d=\\\"M14,6H4C2.9,6,2,6.9,2,8v11c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V8C16,6.9,15.1,6,14,6 M14,19H4V8h10V19z\\\"></path><polygon points=\\\"7.5,17.5 10.5,17.5 10.5,15 13,15 13,12 10.5,12 10.5,9.5 7.5,9.5 7.5,12 5,12 5,15 7.5,15\\\"></polygon></g><ellipse cx=\\\"20\\\" cy=\\\"10\\\" opacity=\\\".3\\\" rx=\\\"1\\\" ry=\\\"2\\\"></ellipse><path d=\\\"M20,6c-1.68,0-3,1.76-3,4c0,1.77,0.83,3.22,2,3.76V20c0,0.55,0.45,1,1,1s1-0.45,1-1v-6.24c1.17-0.54,2-1.99,2-3.76 C23,7.76,21.68,6,20,6z M20,12c-0.41,0-1-0.78-1-2s0.59-2,1-2s1,0.78,1,2S20.41,12,20,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M3.5,15.5h8V7h-8V15.5z M4.5,10h2V8h2v2h2v2h-2v2h-2v-2h-2V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.5,5.5h-8C2.67,5.5,2,6.17,2,7v8.5C2,16.33,2.67,17,3.5,17h8c0.83,0,1.5-0.67,1.5-1.5V7C13,6.17,12.33,5.5,11.5,5.5 M11.5,15.5h-8V7h8V15.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><polygon points=\\\"6.5,14 8.5,14 8.5,12 10.5,12 10.5,10 8.5,10 8.5,8 6.5,8 6.5,10 4.5,10 4.5,12 6.5,12\\\"></polygon></g><ellipse cx=\\\"16.5\\\" cy=\\\"8.75\\\" opacity=\\\".3\\\" rx=\\\"1\\\" ry=\\\"1.75\\\"></ellipse><path d=\\\"M16.5,5.5c-1.38,0-2.5,1.46-2.5,3.25c0,1.45,0.74,2.67,1.75,3.08v4.42c0,0.41,0.34,0.75,0.75,0.75s0.75-0.34,0.75-0.75 v-4.42C18.26,11.42,19,10.2,19,8.75C19,6.96,17.88,5.5,16.5,5.5z M16.5,10.5c-0.46,0-1-0.76-1-1.75c0-0.99,0.54-1.75,1-1.75 c0.46,0,1,0.76,1,1.75C17.5,9.74,16.96,10.5,16.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dark_mode\": {\n    \"name\": \"dark_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27 C17.45,17.19,14.93,19,12,19c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27C17.45,17.19,14.93,19,12,19 c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36 c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M8.04,4.86C7.88,5.39,7.8,5.94,7.8,6.5c0,3.14,2.56,5.7,5.7,5.7c0.56,0,1.11-0.08,1.64-0.24 c-0.79,2.07-2.8,3.54-5.14,3.54c-3.03,0-5.5-2.47-5.5-5.5C4.5,7.66,5.97,5.65,8.04,4.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.04,4.86C7.88,5.39,7.8,5.94,7.8,6.5c0,3.14,2.56,5.7,5.7,5.7c0.56,0,1.11-0.08,1.64-0.24c-0.79,2.07-2.8,3.54-5.14,3.54 c-3.03,0-5.5-2.47-5.5-5.5C4.5,7.66,5.97,5.65,8.04,4.86z M10,3c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7 c0-0.36-0.03-0.72-0.08-1.06C16.16,10,14.91,10.7,13.5,10.7c-2.32,0-4.2-1.88-4.2-4.2c0-1.41,0.7-2.66,1.76-3.42 C10.72,3.03,10.36,3,10,3L10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"reset_tv\": {\n    \"name\": \"reset_tv\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,10h-7.01V7L9,11l3.99,4v-3H20v5H4V5h16v3h2l0-3c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v12c0,1.1,0.9,2,2,2h4v2h8v-2h4 c1.1,0,1.99-0.9,1.99-2l0-5H22C22,10.9,21.1,10,20,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_1_bar\": {\n    \"name\": \"signal_cellular_alt_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,14h3v6H5V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M5,16h2v-5H5V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airplane_ticket\": {\n    \"name\": \"airplane_ticket\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4.01,8.54C5.2,9.23,6,10.52,6,12c0,1.47-0.81,2.77-2,3.46V18h16V6H4L4.01,8.54z M8.14,12.53l1.26,0.99 l2.39-0.64l-2.4-4.16l1.4-0.38l4.01,3.74l2.44-0.65c0.51-0.14,1.04,0.17,1.18,0.68c0.13,0.51-0.17,1.04-0.69,1.19l-8.86,2.36 l-1.66-2.88L8.14,12.53z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.19,4H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12s-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6 C22,4.9,21.19,4,20.19,4z M20,18H4v-2.54c1.19-0.69,2-1.99,2-3.46c0-1.48-0.8-2.77-1.99-3.46L4,6h16V18z\\\"></path><path d=\\\"M17.73,13.3c0.52-0.15,0.82-0.68,0.69-1.19c-0.14-0.51-0.67-0.82-1.18-0.68l-2.44,0.65l-4.01-3.74l-1.4,0.38l2.4,4.16 L9.4,13.52l-1.26-0.99l-0.93,0.25l1.66,2.88L17.73,13.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth\": {\n    \"name\": \"bluetooth\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_nodata\": {\n    \"name\": \"signal_cellular_nodata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,13h-9v9H2L22,2V13z M21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21 L21,19.59l-2.08-2.09L21,15.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"airplanemode_inactive\": {\n    \"name\": \"airplanemode_inactive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M10.5,7.67V3.5C10.5,2.67,11.17,2,12,2c0.83,0,1.5,0.67,1.5,1.5V9l8.5,5v2l-4.49-1.32L10.5,7.67z M19.78,22.61l1.41-1.41 L13.5,13.5L9.56,9.56L2.81,2.81L1.39,4.22l6.38,6.38L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19v-2.67L19.78,22.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M13.12,11.71L9,7.59V4c0-0.55,0.45-1,1-1s1,0.45,1,1v4l6,4v1L13.12,11.71z M17.07,17.07L2.93,2.93L2.22,3.64l5.33,5.33 L3,12v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-2.59l5.36,5.36L17.07,17.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_auto\": {\n    \"name\": \"brightness_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L12 9z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M11 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L13 7h-2zm-.15 5.65L12 9l1.15 3.65h-2.3zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48z\\\"></path>\"\n      }\n    }\n  },\n  \"device_thermostat\": {\n    \"name\": \"device_thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,13V5c0-1.66-1.34-3-3-3S9,3.34,9,5v8c-1.21,0.91-2,2.37-2,4c0,2.76,2.24,5,5,5s5-2.24,5-5C17,15.37,16.21,13.91,15,13 z M11,11V5c0-0.55,0.45-1,1-1s1,0.45,1,1v1h-1v1h1v1v1h-1v1h1v1H11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_lock_rotation\": {\n    \"name\": \"screen_lock_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22.3 13.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41-2.45-2.45c-.59-.59-1.54-.59-2.12 0L1.8 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM7.52 21.48C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM15.05 10h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1v-.5c0-1.38-1.12-2.5-2.5-2.5s-2.5 1.12-2.5 2.5V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4h-3.4v-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"dvr\": {\n    \"name\": \"dvr\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18V5H3v12zm5-9h11v2H8V8zm0 4h11v2H8v-2zM5 8h2v2H5V8zm0 4h2v2H5v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 12h11v2H8zm0-4h11v2H8zm13-5H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zM5 12h2v2H5zm0-4h2v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"bluetooth_disabled\": {\n    \"name\": \"bluetooth_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"h_mobiledata\": {\n    \"name\": \"h_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M15,11H9V7H7v10h2v-4h6v4h2V7h-2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_system_daydream\": {\n    \"name\": \"settings_system_daydream\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 15h6.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.87l-.17-.86C14.29 9.92 13.23 9 12 9c-.96 0-1.84.57-2.26 1.45l-.27.57h-.73C7.74 11.15 7 11.99 7 13c0 1.1.9 2 2 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 17h6.5c1.93 0 3.5-1.57 3.5-3.5 0-1.66-1.16-3.05-2.74-3.41C15.66 8.28 13.95 7 12 7c-1.53 0-2.96.8-3.78 2.08C6.36 9.44 5 11.07 5 13c0 2.21 1.79 4 4 4zm-.26-5.98h.74l.27-.57C10.16 9.57 11.04 9 12 9c1.23 0 2.29.92 2.46 2.14l.17.86h.87c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H9c-1.1 0-2-.9-2-2 0-1.01.74-1.85 1.74-1.98zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_charging_full\": {\n    \"name\": \"battery_charging_full\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z\\\"></path>\"\n      }\n    }\n  },\n  \"flourescent\": {\n    \"name\": \"flourescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"11\\\"></rect><path d=\\\"M5,15h14V9H5V15z M7,11h10v2H7V11z\\\"></path><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"light_mode\": {\n    \"name\": \"light_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><circle cx=\\\"10\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><path d=\\\"M10,7.5c1.38,0,2.5,1.12,2.5,2.5s-1.12,2.5-2.5,2.5S7.5,11.38,7.5,10S8.62,7.5,10,7.5z M10,6c-2.21,0-4,1.79-4,4s1.79,4,4,4 s4-1.79,4-4S12.21,6,10,6L10,6z M3.75,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2C1.34,9.25,1,9.59,1,10 s0.34,0.75,0.75,0.75H3.75z M18.25,10.75c0.41,0,0.75-0.34,0.75-0.75c0-0.41-0.34-0.75-0.75-0.75h-2c-0.41,0-0.75,0.34-0.75,0.75 s0.34,0.75,0.75,0.75H18.25z M9.25,3.75C9.25,4.16,9.59,4.5,10,4.5c0.41,0,0.75-0.34,0.75-0.75v-2C10.75,1.34,10.41,1,10,1 S9.25,1.34,9.25,1.75V3.75z M13.89,5.05c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06c0.29-0.29,0.29-0.77,0-1.06 c-0.29-0.29-0.77-0.29-1.06,0L13.89,5.05z M3.99,14.95c-0.29,0.29-0.29,0.77,0,1.06s0.77,0.29,1.06,0l1.06-1.06 c0.29-0.29,0.29-0.77,0-1.06c-0.29-0.29-0.77-0.29-1.06,0L3.99,14.95z M5.05,6.11c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 L5.05,3.99c-0.29-0.29-0.77-0.29-1.06,0s-0.29,0.77,0,1.06L5.05,6.11z M14.95,16.01c0.29,0.29,0.77,0.29,1.06,0s0.29-0.77,0-1.06 l-1.06-1.06c-0.29-0.29-0.77-0.29-1.06,0c-0.29,0.29-0.29,0.77,0,1.06L14.95,16.01z M9.25,18.25C9.25,18.66,9.59,19,10,19 c0.41,0,0.75-0.34,0.75-0.75v-2c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V18.25z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_1_bar\": {\n    \"name\": \"battery_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v12h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"9.5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"5\\\"></rect><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v9.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wifi_password\": {\n    \"name\": \"wifi_password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M24,8.98l-2.12,2.13C19.35,8.57,15.85,7,12,7s-7.35,1.57-9.88,4.11L0,8.98C3.07,5.9,7.31,4,12,4S20.93,5.9,24,8.98z M24,20 v3c0,0.55-0.45,1-1,1h-4c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1v-1c0-1.1,0.9-2,2-2s2,0.9,2,2v1C23.55,19,24,19.45,24,20z M22,18 c0-0.55-0.45-1-1-1s-1,0.45-1,1v1h2V18z M4.24,13.22l2.12,2.12C7.8,13.9,9.8,13,12,13c2.2,0,4.2,0.9,5.64,2.35l2.12-2.12 C17.78,11.23,15.03,10,12,10C8.97,10,6.22,11.23,4.24,13.22z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21l3.53-3.54 C14.63,16.56,13.38,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M20,7.01l-1.42,1.42C16.34,6.31,13.32,5,10,5S3.66,6.31,1.42,8.43L0,7.01C2.6,4.53,6.12,3,10,3C13.88,3,17.4,4.53,20,7.01 z M3.54,10.54l1.42,1.42C6.29,10.75,8.06,10,10,10c1.94,0,3.71,0.75,5.04,1.96l1.42-1.42C14.76,8.97,12.5,8,10,8 S5.24,8.97,3.54,10.54z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z M16.75,16h1.5v-1 c0-0.41-0.34-0.75-0.75-0.75s-0.75,0.34-0.75,0.75V16z M20,19c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-2c0-0.55,0.45-1,1-1v-1 c0-0.82,0.67-1.5,1.5-1.5S19,14.18,19,15v1c0.55,0,1,0.45,1,1V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarm\": {\n    \"name\": \"access_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm.5-12H11v6l4.75 2.85.75-1.23-4-2.37zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_channel\": {\n    \"name\": \"wifi_channel\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,21c0.5-2.53,2-6,3-6s2.5,3.53,3,6H13z M5.01,21c0.61-5.27,2-9.82,2.99-10.87 c0.98,1.05,2.38,5.61,2.99,10.87H5.01z M16,13c-0.99,0-1.82,0.62-2.5,1.5c0.57-4.77,1.54-8.62,2.5-9.44 c0.97,0.81,1.91,4.67,2.49,9.43C17.81,13.62,16.98,13,16,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,3c-2.51,0-3.77,5.61-4.4,10.57C10.79,10.66,9.61,8,8,8C4.43,8,3,21,3,21h2.01c0.61-5.27,2-9.82,2.99-10.87 c0.98,1.05,2.38,5.61,2.99,10.87H13c0.5-2.53,2-6,3-6s2.5,3.53,3,6h2C21,21,20.5,3,16,3z M16,13c-0.99,0-1.82,0.62-2.5,1.5 c0.57-4.77,1.54-8.62,2.5-9.44c0.97,0.81,1.91,4.67,2.49,9.43C17.81,13.62,16.98,13,16,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.75,17c0.39-1.97,1.59-4.5,2.38-4.5c0.77,0,1.99,2.58,2.38,4.5H10.75z M4.5,17 C5,12.83,6.11,9.28,6.88,8.57C7.64,9.28,8.75,12.83,9.25,17H4.5z M13.12,11c-0.81,0-1.49,0.54-2.04,1.28 c0.47-4.11,1.31-7.16,2.04-7.74c0.73,0.58,1.57,3.63,2.04,7.74C14.62,11.54,13.94,11,13.12,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.12,3c-1.96,0-2.94,4.51-3.42,8.41C9.08,9.12,8.15,7,6.88,7C4.1,7,3,17,3,17h1.5C5,12.83,6.11,9.28,6.88,8.57 C7.64,9.28,8.75,12.83,9.25,17h1.5c0.39-1.97,1.59-4.5,2.38-4.5c0.77,0,1.99,2.58,2.38,4.5H17C17,17,16.58,3,13.12,3z M13.12,11 c-0.81,0-1.49,0.54-2.04,1.28c0.47-4.11,1.31-7.16,2.04-7.74c0.73,0.58,1.57,3.63,2.04,7.74C14.62,11.54,13.94,11,13.12,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bluetooth_drive\": {\n    \"name\": \"bluetooth_drive\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M4,17h14v-5h-1H4V17z M15.5,13c0.83,0,1.5,0.67,1.5,1.5S16.33,16,15.5,16S14,15.33,14,14.5 S14.67,13,15.5,13z M6.5,13C7.33,13,8,13.67,8,14.5S7.33,16,6.5,16S5,15.33,5,14.5S5.67,13,6.5,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,17H4v-5h13c-1.1,0-2-0.9-2-2H4.81l1.04-3H15V5H5.5C4.84,5,4.29,5.42,4.08,6.01L2,12v8c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-1h12v1c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-8h-2V17z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15.5\\\" cy=\\\"14.5\\\" r=\\\"1.5\\\"></circle></g><path d=\\\"M22,3.85L19.15,1h-0.5v3.79l-2.3-2.29l-0.7,0.7L18.44,6l-2.79,2.79l0.7,0.71l2.3-2.3V11h0.5L22,8.14L19.85,6L22,3.85z M19.65,2.91l0.94,0.94l-0.94,0.94V2.91z M20.59,8.14l-0.94,0.94V7.2L20.59,8.14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edgesensor_high\": {\n    \"name\": \"edgesensor_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"4\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"19\\\"></rect><path d=\\\"M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M16,5H8V4h8V5z\\\"></path><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"22\\\" y=\\\"7\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"7\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_0_bar\": {\n    \"name\": \"signal_wifi_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"note_alt\": {\n    \"name\": \"note_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M5,19h14V5H5V19z M14.73,7.15c0.2-0.2,0.51-0.2,0.71,0l1.41,1.41c0.2,0.2,0.2,0.51,0,0.71l-1.06,1.06 l-2.12-2.12L14.73,7.15z M7,14.86l5.96-5.96l2.12,2.12L9.1,17H7V14.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5 C21,3.9,20.1,3,19,3z M12,2.75c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5 V5h14V19z\\\"></path><polygon points=\\\"15.08,11.03 12.96,8.91 7,14.86 7,17 9.1,17\\\"></polygon><path d=\\\"M16.85,9.27c0.2-0.2,0.2-0.51,0-0.71l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12L16.85,9.27z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_maybe\": {\n    \"name\": \"gpp_maybe\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,6.39v4.7c0,4,2.55,7.7,6,8.83c3.45-1.13,6-4.82,6-8.83v-4.7l-6-2.25L6,6.39z M13,16h-2v-2h2V16z M13,12 h-2V7h2V12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z M11,16h2v-2h-2V16z M11,12h2V7h-2V12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_80\": {\n    \"name\": \"battery_80\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z\\\"></path>\"\n      }\n    }\n  },\n  \"devices_fold\": {\n    \"name\": \"devices_fold\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"15,3 12,4.29 12,17.97 15,16.68\\\"></polygon><path d=\\\"M20,3h-3c0-1.44-1.47-2.4-2.79-1.84l-3,1.29C10.48,2.76,10,3.49,10,4.29V19c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5 C22,3.9,21.1,3,20,3z M12,4.29L15,3v13.68l-3,1.29V4.29z M20,19h-5.33l1.12-0.48C16.52,18.2,17,17.48,17,16.68V5h3V19z\\\"></path><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"19\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"15\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"11\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"3\\\"></rect></g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"19\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12,2.5 9.5,3.87 9.5,4.5 9.5,14.47 12,13.11\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"6.12\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"12.38\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"2\\\" y=\\\"15.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"5.12\\\" y=\\\"15.5\\\"></rect><path d=\\\"M16.5,3h-3V2.5c0-1.13-1.21-1.87-2.22-1.32l-2.5,1.36C8.3,2.81,8,3.32,8,3.87V15.5C8,16.33,8.67,17,9.5,17h7 c0.83,0,1.5-0.67,1.5-1.5v-11C18,3.67,17.33,3,16.5,3z M9.5,4.5V3.87L12,2.5v10.61l-2.5,1.36V4.5z M16.5,15.5h-5.75l1.97-1.07 c0.48-0.26,0.78-0.77,0.78-1.32V4.5h3V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_saver\": {\n    \"name\": \"battery_saver\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,4h-2V2h-4v2H8C7.45,4,7,4.45,7,5v16c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M15,14h-2v2h-2 v-2H9v-2h2v-2h2v2h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_4_bar\": {\n    \"name\": \"battery_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v6h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"5\\\"></rect><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v5 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_0\": {\n    \"name\": \"signal_wifi_connected_no_internet_0\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z\\\" fill-opacity=\\\".3\\\"></path><polygon points=\\\"19.59,14 17.5,16.09 17.2,15.79 15.41,14 14,15.41 15.79,17.2 16.09,17.5 14,19.59 15.41,21 17.5,18.92 19.59,21 21,19.59 18.92,17.5 21,15.41\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"water\": {\n    \"name\": \"water\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,14H22H21.98z M5.35,13c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1 c1.19,0,1.4,0.98,3.31,1v-2c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1 c-1.19,0-1.42-1-3.33-1C3.38,11,3.24,12,2,12v2C3.9,14,4.17,13,5.35,13z M18.67,15c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1 c-1.95,0-2.1,1-3.34,1c-1.24,0-1.38-1-3.33-1c-1.95,0-2.1,1-3.34,1v2c1.95,0,2.11-1,3.34-1c1.24,0,1.38,1,3.33,1 c1.95,0,2.1-1,3.34-1c1.19,0,1.42,1,3.33,1c1.94,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1v-2C20.76,16,20.62,15,18.67,15z M5.35,9 c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.42,1,3.33,1c1.95,0,2.09-1,3.33-1c1.19,0,1.4,0.98,3.31,1V8 c-1.19,0-1.42-1-3.33-1c-1.95,0-2.09,1-3.33,1c-1.19,0-1.42-1-3.33-1C10.04,7,9.9,8,8.66,8C7.47,8,7.24,7,5.33,7 C3.38,7,3.24,8,2,8v2C3.9,10,4.17,9,5.35,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thermostat\": {\n    \"name\": \"thermostat\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_4x4\": {\n    \"name\": \"grid_4x4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7H22z M7,7h4v4 H7V7z M7,17v-4h4v4H7z M17,17h-4v-4h4V17z M17,11h-4V7h4V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt\": {\n    \"name\": \"signal_cellular_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_on_select\": {\n    \"name\": \"hdr_on_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M12,4c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4 S9.79,4,12,4 M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_null\": {\n    \"name\": \"signal_wifi_statusbar_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 c3.33,0,6.49,1.08,9.08,3.07L12,18.17L2.92,9.07z\\\"></path></g>\"\n      }\n    }\n  },\n  \"location_disabled\": {\n    \"name\": \"location_disabled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23 13v-2h-2.06c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81C15.09 18.45 13.61 19 12 19z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_2_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 8V2L2 22h16V8h4z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_0_bar\": {\n    \"name\": \"battery_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v14h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"11.5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"5\\\"></rect><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v11.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_2_bar\": {\n    \"name\": \"battery_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"10\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v10h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"8\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"5\\\"></rect><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v8 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grid_3x3\": {\n    \"name\": \"grid_3x3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phishing\": {\n    \"name\": \"phishing\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,9c0-1.3-0.84-2.4-2-2.82V2h-2v4.18C13.84,6.6,13,7.7,13,9s0.84,2.4,2,2.82V15c0,2.21-1.79,4-4,4s-4-1.79-4-4v-1h3L5,9 v6c0,3.31,2.69,6,6,6s6-2.69,6-6v-3.18C18.16,11.4,19,10.3,19,9z M16,10c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S16.55,10,16,10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,5.39V2h-1.5v3.39C10.63,5.7,10,6.52,10,7.5c0,0.98,0.63,1.8,1.5,2.11V13c0,1.38-1.12,2.5-2.5,2.5S6.5,14.38,6.5,13v-1 H9L5,8v5c0,2.21,1.79,4,4,4s4-1.79,4-4V9.61c0.87-0.31,1.5-1.13,1.5-2.11C14.5,6.52,13.87,5.7,13,5.39z M12.25,8.25 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S13,7.09,13,7.5C13,7.91,12.66,8.25,12.25,8.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_4_bar\": {\n    \"name\": \"signal_cellular_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 22h20V2L2 22z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_charging_30\": {\n    \"name\": \"battery_charging_30\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z\\\"></path>\"\n      }\n    }\n  },\n  \"devices\": {\n    \"name\": \"devices\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 10h4v7h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M23 8h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7zM4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error_rounded\": {\n    \"name\": \"wifi_tethering_error_rounded\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_not_disturb_on_total_silence\": {\n    \"name\": \"do_not_disturb_on_total_silence\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.4,6,12,6z M15,13H9v-2h6V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_connected\": {\n    \"name\": \"bluetooth_connected\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_3_bar_lock\": {\n    \"name\": \"signal_wifi_3_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.19 1.35-3.99 3.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"system_security_update\": {\n    \"name\": \"system_security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,12h-3V8h-2v4H8l4,4L16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mobile_off\": {\n    \"name\": \"mobile_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5v8.61l2 2V3c0-1.1-.9-2-2-2H7c-.71 0-1.33.37-1.68.93L8.39 5H17zM1.49 3.76L5 7.27V21c0 1.1.9 2 2 2h10c1.02 0 1.85-.77 1.98-1.75l1.72 1.72 1.41-1.41L2.9 2.35 1.49 3.76zM7 9.27L16.73 19H7V9.27z\\\"></path>\"\n      }\n    }\n  },\n  \"network_wifi_3_bar\": {\n    \"name\": \"network_wifi_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07l-2.85,2.86C16.46,10.71,14.31,10,12,10 c-2.31,0-4.46,0.71-6.23,1.93L2.92,9.07z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07l-2.85,2.86C16.46,10.71,14.31,10,12,10c-2.31,0-4.46,0.71-6.23,1.93L2.92,9.07z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.71,10.18C13.35,9.08,11.73,8.5,10,8.5c-1.73,0-3.35,0.58-4.71,1.68L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5 c2.83,0,5.54,0.91,7.79,2.6L14.71,10.18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M14.71,10.18C13.35,9.08,11.73,8.5,10,8.5 c-1.73,0-3.35,0.58-4.71,1.68L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L14.71,10.18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mode_standby\": {\n    \"name\": \"mode_standby\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,10.34,15,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_1_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 8V2L2 22h16V8h4z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_bad\": {\n    \"name\": \"signal_wifi_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21v-9h8.99L24,8.98z M19.59,14l-2.09,2.09l-0.3-0.3L15.41,14 L14,15.41l1.79,1.79l0.3,0.3L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"discount\": {\n    \"name\": \"discount\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M19,9.79L11.21,2H5v6.21L12.79,16L19,9.79z M7.25,5.5C6.56,5.5,6,4.94,6,4.25S6.56,3,7.25,3S8.5,3.56,8.5,4.25 S7.94,5.5,7.25,5.5z\\\"></path></g><path d=\\\"M12.79,21L3,11.21v2c0,0.53,0.21,1.04,0.59,1.41l7.79,7.79c0.78,0.78,2.05,0.78,2.83,0l6.21-6.21 c0.78-0.78,0.78-2.05,0-2.83L12.79,21z\\\"></path><path d=\\\"M11.38,17.41c0.39,0.39,0.9,0.59,1.41,0.59c0.51,0,1.02-0.2,1.41-0.59l6.21-6.21c0.78-0.78,0.78-2.05,0-2.83l-7.79-7.79 C12.25,0.21,11.74,0,11.21,0H5C3.9,0,3,0.9,3,2v6.21c0,0.53,0.21,1.04,0.59,1.41L11.38,17.41z M5,2h6.21L19,9.79L12.79,16L5,8.21 V2z\\\"></path><circle cx=\\\"7.25\\\" cy=\\\"4.25\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M15.5,8.59L9.41,2.5H4.5v4.91l6.09,6.09L15.5,8.59z M6.5,5.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S7.05,5.5,6.5,5.5 z\\\"></path></g><path d=\\\"M16.56,11.53l-5.97,5.97L3,9.91v1.5c0,0.4,0.16,0.78,0.44,1.06l6.09,6.09C9.82,18.85,10.21,19,10.59,19 c0.38,0,0.77-0.15,1.06-0.44l4.91-4.91C17.15,13.07,17.15,12.12,16.56,11.53L16.56,11.53z\\\"></path><path d=\\\"M9.53,14.56C9.82,14.85,10.21,15,10.59,15c0.38,0,0.77-0.15,1.06-0.44l4.91-4.91c0.59-0.59,0.59-1.54,0-2.12l-6.09-6.09 C10.19,1.16,9.81,1,9.41,1H4.5C3.67,1,3,1.67,3,2.5v4.91c0,0.4,0.16,0.78,0.44,1.06L9.53,14.56z M4.5,2.5h4.91l6.09,6.09 l-4.91,4.91L4.5,7.41V2.5z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"4.5\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"battery_std\": {\n    \"name\": \"battery_std\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling_1\": {\n    \"name\": \"wifi_calling_1\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.49,4.5c1.79,0,3.42,0.73,4.59,1.91l1.06-1.06C20.7,3.9,18.7,3,16.49,3c-2.21,0-4.21,0.9-5.66,2.34 l1.06,1.06C13.08,5.23,14.7,4.5,16.49,4.5z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M16.49,6c-1.38,0-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03s1.84,0.39,2.47,1.03 l1.06-1.06C19.12,6.56,17.87,6,16.49,6z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M16.49,9c-0.55,0-1.05,0.22-1.41,0.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9z\\\"></path><g><path d=\\\"M15,17.83c1.29,0.54,2.63,0.89,4,1.07v-2.23l-2.35-0.47L15,17.83z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.33,5H5.1c0.18,1.37,0.53,2.7,1.07,4L7.8,7.35L7.33,5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3H4C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15 C21,15.37,20.66,14.96,20.2,14.87z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07 l1.65-1.63L19,16.67V18.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"widgets\": {\n    \"name\": \"widgets\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5h4v4H5zm10 10h4v4h-4zM5 15h4v4H5zM16.66 4.52l-2.83 2.82 2.83 2.83 2.83-2.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.66 1.69L11 7.34 16.66 13l5.66-5.66-5.66-5.65zm-2.83 5.65l2.83-2.83 2.83 2.83-2.83 2.83-2.83-2.83zM3 3v8h8V3H3zm6 6H5V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-2v8h8v-8h-8zm6 6h-4v-4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"flashlight_off\": {\n    \"name\": \"flashlight_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><polygon opacity=\\\".3\\\" points=\\\"16,7 9.83,7 14,11.17 14,10.4 16,7.39\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10,12.83 10,20 14,20 14,16.83\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"16,5 16,4 6.83,4 7.83,5\\\"></polygon></g><g><path d=\\\"M2.81,2.81L1.39,4.22L8,10.83V22h8v-3.17l3.78,3.78l1.41-1.41L2.81,2.81z M14,20h-4v-7.17l4,4V20z\\\"></path><polygon points=\\\"16,4 16,5 7.83,5 9.83,7 16,7 16,7.39 14,10.4 14,11.17 16,13.17 16,11 18,8 18,2 6,2 6,3.17 6.83,4\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"battery_30\": {\n    \"name\": \"battery_30\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z\\\"></path>\"\n      }\n    }\n  },\n  \"system_security_update_warning\": {\n    \"name\": \"system_security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M11,7h2v6h-2V7z M11,15h2v2h-2V15z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect></g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\\\"></path><path d=\\\"M7,21h10v-1H7V21z M7,3v1h10V3H7z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"task\": {\n    \"name\": \"task\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M13,9V4H6v16h12V9H13z M10.94,18L7.4,14.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L10.94,18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z M8.82,13.05 L7.4,14.46L10.94,18l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,13.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"share_location\": {\n    \"name\": \"share_location\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.02,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.42-1.43C15.81,19.17,14.48,19.75,13.02,19.93z\\\"></path><path d=\\\"M4.03,12c0-4.05,3.03-7.41,6.95-7.93V2.05C5.95,2.58,2.03,6.84,2.03,12c0,5.16,3.92,9.42,8.95,9.95v-2.02 C7.06,19.41,4.03,16.05,4.03,12z\\\"></path><path d=\\\"M19.95,11h2.02c-0.2-2.01-1-3.84-2.21-5.32l-1.43,1.43C19.19,8.21,19.77,9.54,19.95,11z\\\"></path><path d=\\\"M18.34,4.26c-1.48-1.21-3.32-2.01-5.32-2.21v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.34,4.26z\\\"></path><path d=\\\"M18.33,16.9l1.43,1.42c1.21-1.48,2.01-3.31,2.21-5.32h-2.02C19.77,14.46,19.19,15.79,18.33,16.9z\\\"></path><path d=\\\"M16,11.1C16,8.61,14.1,7,12,7s-4,1.61-4,4.1c0,1.66,1.33,3.63,4,5.9C14.67,14.73,16,12.76,16,11.1z M12,12 c-0.59,0-1.07-0.48-1.07-1.07c0-0.59,0.48-1.07,1.07-1.07s1.07,0.48,1.07,1.07C13.07,11.52,12.59,12,12,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"password\": {\n    \"name\": \"password\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,17h20v2H2V17z M3.15,12.95L4,11.47l0.85,1.48l1.3-0.75L5.3,10.72H7v-1.5H5.3l0.85-1.47L4.85,7L4,8.47L3.15,7l-1.3,0.75 L2.7,9.22H1v1.5h1.7L1.85,12.2L3.15,12.95z M9.85,12.2l1.3,0.75L12,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H15v-1.5h-1.7l0.85-1.47 L12.85,7L12,8.47L11.15,7l-1.3,0.75l0.85,1.47H9v1.5h1.7L9.85,12.2z M23,9.22h-1.7l0.85-1.47L20.85,7L20,8.47L19.15,7l-1.3,0.75 l0.85,1.47H17v1.5h1.7l-0.85,1.48l1.3,0.75L20,11.47l0.85,1.48l1.3-0.75l-0.85-1.48H23V9.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update\": {\n    \"name\": \"security_update\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,12h-3V8h-2v4H8l4,4L16,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"developer_mode\": {\n    \"name\": \"developer_mode\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_3_bar\": {\n    \"name\": \"signal_wifi_statusbar_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.18,11.8L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l2.82,2.82C5.17,9.45,8.41,8,12,8 S18.83,9.45,21.18,11.8z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M21.18,11.8C18.83,9.45,15.59,8,12,8s-6.83,1.45-9.18,3.8L12,21L21.18,11.8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_2\": {\n    \"name\": \"signal_wifi_connected_no_internet_2\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18.31,12h2.67L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l4.23,4.24 C6.22,11.23,8.97,10,12,10C14.35,10,16.52,10.74,18.31,12z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M12,10c-3.03,0-5.78,1.23-7.77,3.22L12,21v-9h6.32C16.52,10.74,14.35,10,12,10z M21,15.41L19.59,14l-2.09,2.09L15.41,14 L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screenshot\": {\n    \"name\": \"screenshot\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M9.5,8.5H12V7H8v4h1.5V8.5z M12,17h4v-4h-1.5v2.5H12V17z\\\"></path></g><g opacity=\\\".3\\\"><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_alt_2_bar\": {\n    \"name\": \"signal_cellular_alt_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,14h3v6H5V14z M11,9h3v11h-3V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,8h2v8H9V8z M5,16h2v-5H5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dataset\": {\n    \"name\": \"dataset\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M5,19h14V5H5V19z M13,7h4v4h-4V7z M13,13h4v4h-4V13z M7,7h4v4H7V7z M7,13h4v4H7V13z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"13\\\"></rect></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"7\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M4.5,15.5h11v-11h-11V15.5z M11,6h3v3h-3V6z M11,11h3v3h-3V11z M6,6h3v3H6V6z M6,11h3v3H6V11z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"11\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"11\\\"></rect></g><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"6\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"sports_score\": {\n    \"name\": \"sports_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,6H9V4h2V6z M15,4h-2v2h2V4z M9,14h2v-2H9V14z M19,10V8h-2v2H19z M19,14v-2h-2v2H19z M13,14h2v-2h-2V14z M19,4h-2v2h2 V4z M13,8V6h-2v2H13z M7,10V8h2V6H7V4H5v16h2v-8h2v-2H7z M15,12h2v-2h-2V12z M11,10v2h2v-2H11z M9,8v2h2V8H9z M13,10h2V8h-2V10z M15,6v2h2V6H15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screen_rotation\": {\n    \"name\": \"screen_rotation\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.828 21.192L2.808 9.172l6.357-6.357 12.02 12.02z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77c-.59-.59-1.54-.59-2.12 0L1.75 8.11c-.59.59-.59 1.54 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29C4.25 19.94 1.91 16.76 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto\": {\n    \"name\": \"hdr_auto\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12.04,8.04 11.95,8.04 10.35,12.59 13.64,12.59\\\"></polygon><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M15.21,17l-0.98-2.81H9.78 l-1,2.81h-1.9l4.13-11h1.97l4.13,11H15.21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z\\\"></path><path d=\\\"M11.01,6L6.88,17h1.9l1-2.81h4.44L15.21,17h1.9L12.98,6H11.01z M10.35,12.59l1.6-4.55h0.09l1.6,4.55H10.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flashlight_on\": {\n    \"name\": \"flashlight_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M8,7.39l2,3V20h4v-9.6l2-3.01V7H8V7.39z M12,12.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5 s-1.5-0.67-1.5-1.5S11.17,12.5,12,12.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"4\\\"></rect><path d=\\\"M6,2v6l2,3v11h8V11l2-3V2H6z M16,7.39l-2,3.01V20h-4v-9.61l-2-3V7h8V7.39z M16,5H8V4h8V5z\\\"></path><circle cx=\\\"12\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"gps_fixed\": {\n    \"name\": \"gps_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M12 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 2zm8.94-3c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_tethering_error\": {\n    \"name\": \"wifi_tethering_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7c-3.31,0-6,2.69-6,6c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.11-0.45,2.1-1.18,2.82l1.42,1.42C17.32,16.15,18,14.66,18,13C18,9.69,15.31,7,12,7z M12,3C6.48,3,2,7.48,2,13 c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13c0-4.42,3.58-8,8-8c2.53,0,4.78,1.17,6.24,3h2.42 C18.93,5.01,15.7,3,12,3z M12,11c-1.1,0-2,0.9-2,2c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15s1.05-0.23,1.41-0.59 C13.77,14.05,14,13.55,14,13C14,11.9,13.1,11,12,11z M20,10h2v6h-2V10z M20,18h2v2h-2V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><circle cx=\\\"10\\\" cy=\\\"11\\\" r=\\\"1.5\\\"></circle><path d=\\\"M10,6c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,12.84,6.5,11.96,6.5,11c0-1.93,1.57-3.5,3.5-3.5 s3.5,1.57,3.5,3.5c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,13.63,15,12.38,15,11C15,8.24,12.76,6,10,6z\\\"></path><path d=\\\"M10,3c-4.42,0-8,3.58-8,8c0,2.21,0.9,4.21,2.34,5.66l1.06-1.06C4.23,14.42,3.5,12.79,3.5,11c0-3.58,2.92-6.5,6.5-6.5 c2.3,0,4.31,1.2,5.47,3h1.72C15.89,4.84,13.16,3,10,3z\\\"></path><rect height=\\\"5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_off\": {\n    \"name\": \"signal_cellular_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_lock_portrait\": {\n    \"name\": \"screen_lock_portrait\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM7 19h10V5H7v14zm2-7c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"pin\": {\n    \"name\": \"pin\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,18h16V6H4V18z M16.84,12.38h-0.5v-1h0.46c0.33,0,0.88-0.14,0.88-0.72c0-0.39-0.31-0.65-0.75-0.65 c-0.5,0-0.74,0.32-0.85,0.64l-0.99-0.41C15.2,9.9,15.68,9,16.94,9c1.09,0,1.54,0.64,1.62,0.75c0.33,0.5,0.28,1.16,0.02,1.57 c-0.15,0.22-0.32,0.38-0.52,0.48v0.07c0.28,0.11,0.51,0.28,0.68,0.52c0.37,0.52,0.33,1.27,0.01,1.76 C18.67,14.28,18.19,15,16.99,15c-0.04,0-1.6,0.08-2.05-1.51l1.03-0.41c0.02,0.1,0.19,0.86,1.02,0.86c0.41,0,0.89-0.28,0.89-0.77 C17.88,12.62,17.4,12.38,16.84,12.38z M10.56,9.2c0.69-0.33,1.48-0.2,1.95,0.03c0.86,0.44,0.91,1.24,0.91,1.48 c0,0.64-0.31,1.26-0.92,1.86c-0.25,0.25-0.72,0.71-1.4,1.39l0.03,0.05h2.37V15H9.61v-1.02c1.07-1.07,1.77-1.77,2.13-2.15 c0.4-0.42,0.54-0.69,0.54-1.06c0-0.4-0.31-0.72-0.81-0.72c-0.52,0-0.8,0.39-0.9,0.72l-1.01-0.42C9.57,10.33,9.74,9.59,10.56,9.2z M6.77,9h0.87v6H6.49v-4.5l-0.9,0.66l-0.58-0.89L6.77,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><polygon points=\\\"6.49,10.5 6.49,15 7.64,15 7.64,9 6.77,9 5.01,10.27 5.59,11.16\\\"></polygon><path d=\\\"M11.47,10.05c0.5,0,0.81,0.32,0.81,0.72c0,0.37-0.14,0.64-0.54,1.06c-0.36,0.38-1.06,1.08-2.13,2.15V15h3.89v-0.99h-2.37 l-0.03-0.05c0.68-0.68,1.15-1.14,1.4-1.39c0.61-0.6,0.92-1.22,0.92-1.86c0-0.24-0.05-1.04-0.91-1.48C12.04,9,11.25,8.87,10.56,9.2 c-0.82,0.39-0.99,1.13-1,1.15l1.01,0.42C10.67,10.44,10.95,10.05,11.47,10.05z\\\"></path><path d=\\\"M16.99,13.94c-0.83,0-0.99-0.76-1.02-0.86l-1.03,0.41c0.45,1.59,2.01,1.51,2.05,1.51c1.2,0,1.68-0.72,1.76-0.85 c0.32-0.49,0.36-1.24-0.01-1.76c-0.17-0.24-0.4-0.41-0.68-0.52V11.8c0.2-0.1,0.37-0.26,0.52-0.48c0.26-0.41,0.31-1.07-0.02-1.57 C18.48,9.64,18.03,9,16.94,9c-1.26,0-1.74,0.9-1.85,1.24l0.99,0.41c0.11-0.32,0.35-0.64,0.85-0.64c0.44,0,0.75,0.26,0.75,0.65 c0,0.58-0.55,0.72-0.88,0.72h-0.46v1h0.5c0.56,0,1.04,0.24,1.04,0.79C17.88,13.66,17.4,13.94,16.99,13.94z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"4g_mobiledata\": {\n    \"name\": \"4g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7z M17,11v2h2v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5 c1.1,0,2-0.9,2-2v-4H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_60\": {\n    \"name\": \"battery_60\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_2_bar_lock\": {\n    \"name\": \"signal_wifi_2_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_home_screen\": {\n    \"name\": \"add_to_home_screen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_not_connected\": {\n    \"name\": \"signal_wifi_statusbar_not_connected\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><g><path d=\\\"M18.52,15.16c0.41-0.73,1.18-1.16,1.63-1.8c0.48-0.68,0.21-1.94-1.14-1.94c-0.88,0-1.32,0.67-1.5,1.23l-1.37-0.57 c0.37-1.12,1.38-2.08,2.86-2.08c1.23,0,2.08,0.56,2.51,1.26c0.37,0.6,0.58,1.73,0.01,2.57c-0.63,0.93-1.23,1.21-1.56,1.81 c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52C18.26,16.41,18.19,15.74,18.52,15.16z M17.95,18.95c0-0.59,0.47-1.04,1.05-1.04 c0.59,0,1.04,0.45,1.04,1.04c0,0.58-0.44,1.05-1.04,1.05C18.42,20,17.95,19.53,17.95,18.95z\\\"></path></g></g><path d=\\\"M14,13c0-2.76,2.24-5,5-5c1.63,0,3.07,0.79,3.98,2L24,8.98C20.93,5.9,16.69,4,12,4 C7.31,4,3.07,5.9,0,8.98L12,21l4.01-4.02C14.8,16.07,14,14.63,14,13z\\\" fill-opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"usb_off\": {\n    \"name\": \"usb_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,8h4v4h-1v2c0,0.34-0.08,0.66-0.23,0.94L16,13.17V12h-1V8z M11,8.17l2,2V6h2l-3-4L9,6h2V8.17z M13,16v2.28 c0.6,0.34,1,0.98,1,1.72c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.74,0.4-1.37,1-1.72V16H8c-1.11,0-2-0.89-2-2v-2.28C5.4,11.38,5,10.74,5,10 c0-0.59,0.26-1.13,0.68-1.49L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L13.17,16H13z M11,14v-0.17l-2.51-2.51 c-0.14,0.16-0.31,0.29-0.49,0.4V14H11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.25,5H7.5L10,2l2.5,3h-1.75v3.63l-1.5-1.5V5z M12.5,10h0.75v1.13l1.23,1.23c0.17-0.24,0.27-0.54,0.27-0.86V10h0.75V7h-3 V10z M10.75,13v2.21c0.45,0.26,0.75,0.74,0.75,1.29c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5c0-0.55,0.3-1.03,0.75-1.29V13h-2.5 c-0.83,0-1.5-0.67-1.5-1.5V9.79C4.8,9.53,4.5,9.05,4.5,8.5c0-0.51,0.26-0.96,0.65-1.23L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06 L10.88,13H10.75z M9.25,11.5v-0.13L7.23,9.35C7.1,9.53,6.94,9.68,6.75,9.79v1.71H9.25z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_1_bar\": {\n    \"name\": \"wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.53,17.46L12,21l-3.53-3.54C9.37,16.56,10.62,16,12,16S14.63,16.56,15.53,17.46z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,13c1.12,0,2.12,0.42,2.91,1.09L10,17l-2.91-2.91C7.88,13.42,8.88,13,10,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"summarize\": {\n    \"name\": \"summarize\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14,5H5v14h14v-9h-5V5z M8,17c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S8.55,17,8,17z M8,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S8.55,13,8,13z M8,9C7.45,9,7,8.55,7,8s0.45-1,1-1s1,0.45,1,1S8.55,9,8,9z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><path d=\\\"M15,3H5C3.9,3,3.01,3.9,3.01,5L3,19c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V9L15,3z M19,19H5V5h9v5h5V19z\\\"></path><circle cx=\\\"8\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><circle cx=\\\"8\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"brightness_medium\": {\n    \"name\": \"brightness_medium\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6v12c3.31 0 6-2.69 6-6s-2.69-6-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"add_alarm\": {\n    \"name\": \"add_alarm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3zm9-3.28l-4.6-3.86-1.29 1.53 4.6 3.86zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off_select\": {\n    \"name\": \"hdr_off_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,18.5v-1c0-0.8-0.7-1.5-1.5-1.5H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1C17.6,19.6,18,19.1,18,18.5z M16.5,18.5h-2v-1h2 V18.5z M3.5,18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5V18z M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z M24,20h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20z M10.98,4.15L9.42,2.59c5.1-2.42,10.41,2.89,7.99,7.99 l-1.56-1.56C16.66,6.06,13.94,3.34,10.98,4.15z M6.34,2.34L4.93,3.76l1.66,1.66c-2.42,5.1,2.89,10.41,7.99,7.99l1.66,1.66 l1.41-1.41L6.34,2.34z M8.15,6.98l4.87,4.87C10.06,12.66,7.34,9.94,8.15,6.98z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_1_bar\": {\n    \"name\": \"signal_wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z\\\"></path>\"\n      }\n    }\n  },\n  \"send_to_mobile\": {\n    \"name\": \"send_to_mobile\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><path d=\\\"M22,12l-4-4v3h-5v2h5v3L22,12z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2L7,1.01C5.9,1.01,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10 c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_2\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_2\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,11.21V8h5.92C19.97,5.51,16.16,4,12,4C7.31,4,3.07,5.9,0,8.98l4.23,4.24C6.22,11.23,8.97,10,12,10 C13.8,10,15.5,10.44,17,11.21z\\\" fill-opacity=\\\".3\\\"></path><g><path d=\\\"M4.23,13.22L12,21l5-5.01v-4.78C15.5,10.44,13.8,10,12,10C8.97,10,6.22,11.23,4.23,13.22z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"dataset_linked\": {\n    \"name\": \"dataset_linked\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M5,5v14h3.09C8.04,18.67,8,18.34,8,18s0.04-0.67,0.09-1H7v-4h3.69c0.95-0.63,2.09-1,3.31-1h5V5H5z M11,11H7V7h4V11z M13,11V7h4v4H13z\\\"></path></g><g><path d=\\\"M7,17h1.09c0.28-1.67,1.24-3.1,2.6-4H7V17z\\\"></path></g><path d=\\\"M5,19V5h14v7h1c0.34,0,0.67,0.04,1,0.09V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h3.81 c-0.35-0.61-0.6-1.28-0.72-2H5z\\\"></path><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect></g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"7\\\"></rect></g><path d=\\\"M16,20h-2c-1.1,0-2-0.9-2-2s0.9-2,2-2h2v-2h-2c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4h2V20z\\\"></path><path d=\\\"M20,14h-2v2h2c1.1,0,2,0.9,2,2s-0.9,2-2,2h-2v2h2c2.21,0,4-1.79,4-4C24,15.79,22.21,14,20,14z\\\"></path><polygon points=\\\"20,19 20,17 17,17 14,17 14,19 19,19\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M4.5,4.5v11h2c0-0.53,0.1-1.02,0.25-1.5H6v-3h3v0.19c0.74-0.43,1.58-0.69,2.5-0.69h4v-6H4.5z M9,9H6V6h3V9z M11,9V6h3v3 H11z\\\"></path></g><g><path d=\\\"M6,11v3h0.75c0.38-1.19,1.18-2.19,2.25-2.81V11H6z\\\"></path></g><g><path d=\\\"M4.5,15.5v-11h11v6h1c0.17,0,0.33,0.03,0.5,0.05V4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v11 C3,16.33,3.67,17,4.5,17h2.25C6.6,16.52,6.5,16.03,6.5,15.5H4.5z\\\"></path></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"6\\\"></rect></g><path d=\\\"M9.5,15.5c0-1.1,0.9-2,2-2h1.75V12H11.5C9.57,12,8,13.57,8,15.5S9.57,19,11.5,19h1.75v-1.5H11.5 C10.4,17.5,9.5,16.6,9.5,15.5z\\\"></path><path d=\\\"M16.5,12h-1.75v1.5h1.75c1.1,0,2,0.9,2,2s-0.9,2-2,2h-1.75V19h1.75c1.93,0,3.5-1.57,3.5-3.5S18.43,12,16.5,12z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4.5\\\" x=\\\"11.75\\\" y=\\\"14.75\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mode_night\": {\n    \"name\": \"mode_night\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9.5,4C9.16,4,8.82,4.02,8.49,4.07C10.4,6.23,11.5,9.05,11.5,12s-1.1,5.77-3.01,7.93 C8.82,19.98,9.16,20,9.5,20c4.41,0,8-3.59,8-8S13.91,4,9.5,4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.5,2c-1.82,0-3.53,0.5-5,1.35c2.99,1.73,5,4.95,5,8.65s-2.01,6.92-5,8.65C5.97,21.5,7.68,22,9.5,22 c5.52,0,10-4.48,10-10S15.02,2,9.5,2z M9.5,20c-0.34,0-0.68-0.02-1.01-0.07c1.91-2.16,3.01-4.98,3.01-7.93s-1.1-5.77-3.01-7.93 C8.82,4.02,9.16,4,9.5,4c4.41,0,8,3.59,8,8S13.91,20,9.5,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_4_bar\": {\n    \"name\": \"signal_wifi_statusbar_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"brightness_high\": {\n    \"name\": \"brightness_high\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"ad_units\": {\n    \"name\": \"ad_units\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><g><g><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1L17,1z M7,4V3h10v1H7L7,4z M7,18V6 h10v12H7L7,18z M7,21v-1h10v1H7L7,21z\\\"></path></g><g><polygon points=\\\"16,7 8,7 8,9 16,9 16,7\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"4g_plus_mobiledata\": {\n    \"name\": \"4g_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,11v2h2v2h-4V9h6c0-1.1-0.9-2-2-2h-4C9.9,7,9,7.9,9,9v6c0,1.1,0.9,2,2,2h4c1.1,0,2-0.9,2-2v-4H13z M24,11h-2V9h-2v2h-2 v2h2v2h2v-2h2V11z M7,7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"r_mobiledata\": {\n    \"name\": \"r_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7.8,7.2L9,10H7L5.87,7.33H4V10H2V2h5c1.13,0,2,0.87,2,2v1.33C9,6.13,8.47,6.87,7.8,7.2z M7,4H4v1.33h3V4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_2_bar\": {\n    \"name\": \"signal_wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z\\\"></path>\"\n      }\n    }\n  },\n  \"sell\": {\n    \"name\": \"sell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,4v7.17L12.83,20L20,12.83L11.17,4H4z M6.5,8C5.67,8,5,7.33,5,6.5S5.67,5,6.5,5S8,5.67,8,6.5 S7.33,8,6.5,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.41,11.41l-8.83-8.83C12.21,2.21,11.7,2,11.17,2H4C2.9,2,2,2.9,2,4v7.17c0,0.53,0.21,1.04,0.59,1.41l8.83,8.83 c0.78,0.78,2.05,0.78,2.83,0l7.17-7.17C22.2,13.46,22.2,12.2,21.41,11.41z M12.83,20L4,11.17V4h7.17L20,12.83L12.83,20z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"play_lesson\": {\n    \"name\": \"play_lesson\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,4v7L9.5,9.5L7,11V4H5v16h6.29C11.1,19.37,11,18.7,11,18c0-3.53,2.61-6.43,6-6.92V4H12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5,20V4h2v7l2.5-1.5L12,11V4h5v7.08c0.33-0.05,0.66-0.08,1-0.08s0.67,0.03,1,0.08V4c0-1.1-0.9-2-2-2H5C3.9,2,3,2.9,3,4v16 c0,1.1,0.9,2,2,2h7.26c-0.42-0.6-0.75-1.28-0.97-2H5z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M16.75,20.5v-5l4,2.5L16.75,20.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_2_bar\": {\n    \"name\": \"wifi_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,10c3.03,0,5.78,1.23,7.76,3.22l-2.12,2.12C16.2,13.9,14.2,13,12,13c-2.2,0-4.2,0.9-5.64,2.35l-2.12-2.12 C6.22,11.23,8.97,10,12,10z M12,16c-1.38,0-2.63,0.56-3.53,1.46L12,21l3.53-3.54C14.63,16.56,13.38,16,12,16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g display=\\\"none\\\"><rect display=\\\"inline\\\" fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,8c2.5,0,4.76,0.97,6.46,2.54l-1.42,1.42C13.71,10.75,11.94,10,10,10c-1.94,0-3.71,0.75-5.04,1.96l-1.42-1.42 C5.24,8.97,7.5,8,10,8z M7.09,14.09L10,17l2.91-2.91C12.12,13.42,11.12,13,10,13S7.88,13.42,7.09,14.09z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_null\": {\n    \"name\": \"signal_cellular_null\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling_3\": {\n    \"name\": \"wifi_calling_3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16.49,3c-2.21,0-4.21,0.9-5.66,2.34l1.06,1.06c1.18-1.18,2.8-1.91,4.59-1.91s3.42,0.73,4.59,1.91l1.06-1.06 C20.7,3.9,18.7,3,16.49,3z\\\"></path><path d=\\\"M20.03,7.46C19.12,6.56,17.87,6,16.49,6s-2.63,0.56-3.54,1.46l1.06,1.06c0.63-0.63,1.51-1.03,2.47-1.03 s1.84,0.39,2.47,1.03L20.03,7.46z\\\"></path><path d=\\\"M15.08,9.59L16.49,11l1.41-1.41C17.54,9.22,17.04,9,16.49,9S15.44,9.22,15.08,9.59z\\\"></path><g><path d=\\\"M15,17.83c1.29,0.54,2.63,0.89,4,1.07v-2.23l-2.35-0.47L15,17.83z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.33,5H5.1c0.18,1.37,0.53,2.7,1.07,4L7.8,7.35L7.33,5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.2,14.87l-3.67-0.73c-0.5-0.1-0.83,0.2-0.9,0.27l-2.52,2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52 c0.23-0.24,0.33-0.57,0.27-0.9L9.13,3.8C9.04,3.34,8.63,3,8.15,3H4C3.44,3,2.97,3.47,3,4.03C3.17,6.92,4.05,9.63,5.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.26,7.97,2.43c0.55,0.03,1.03-0.43,1.03-1v-4.15 C21,15.37,20.66,14.96,20.2,14.87z M5.1,5h2.23L7.8,7.35L6.17,9C5.63,7.7,5.27,6.37,5.1,5z M19,18.9c-1.37-0.18-2.7-0.53-4-1.07 l1.65-1.63L19,16.67V18.9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"pattern\": {\n    \"name\": \"pattern\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,6c0-1.1,0.9-2,2-2s2,0.9,2,2S7.1,8,6,8S4,7.1,4,6z M6,14c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S4.9,14,6,14z M12,8 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,8,12,8z M18,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S19.1,10,18,10z M17.98,16 c-0.74,0-1.37,0.4-1.72,1h-2.54c-0.34-0.6-0.98-1-1.72-1s-1.37,0.4-1.72,1H8.41l3.07-3.07C11.65,13.97,11.82,14,12,14 c1.1,0,2-0.9,2-2c0-0.18-0.03-0.35-0.07-0.51l3.56-3.56C17.65,7.97,17.82,8,18,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56C12.35,10.03,12.18,10,12,10c-1.1,0-2,0.9-2,2c0,0.18,0.03,0.35,0.07,0.51l-3.56,3.56 C6.35,16.03,6.18,16,6,16c-1.1,0-2,0.9-2,2s0.9,2,2,2c0.74,0,1.37-0.4,1.72-1h2.57c0.34,0.6,0.98,1,1.72,1s1.37-0.4,1.72-1h2.55 c0.34,0.6,0.98,1,1.72,1c1.1,0,2-0.9,2-2C19.98,16.9,19.08,16,17.98,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"reviews\": {\n    \"name\": \"reviews\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,17.17L5.17,16H20V4H4V17.17z M10.43,8.43L12,5l1.57,3.43L17,10l-3.43,1.57 L12,15l-1.57-3.43L7,10L10.43,8.43z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\\\"></path><polygon points=\\\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"security_update_good\": {\n    \"name\": \"security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,21h10v-1H7V21z M7,3v1h10V3H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"quiz\": {\n    \"name\": \"quiz\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M8,4v12h12V4H8z M14.74,14.69C14.54,14.9,14.3,15,14.01,15c-0.29,0-0.54-0.1-0.74-0.31 c-0.21-0.21-0.31-0.45-0.31-0.74c0-0.29,0.1-0.54,0.31-0.74c0.21-0.2,0.45-0.3,0.74-0.3c0.29,0,0.54,0.1,0.74,0.3 c0.2,0.2,0.3,0.45,0.3,0.74C15.05,14.24,14.94,14.49,14.74,14.69z M16.51,8.83c-0.23,0.34-0.54,0.69-0.92,1.06 c-0.3,0.27-0.51,0.52-0.64,0.75c-0.12,0.23-0.18,0.49-0.18,0.78v0.4h-1.52v-0.56c0-0.42,0.09-0.78,0.26-1.09 C13.69,9.85,14,9.5,14.46,9.1c0.32-0.29,0.55-0.54,0.69-0.74c0.14-0.2,0.21-0.44,0.21-0.72c0-0.36-0.12-0.65-0.36-0.87 c-0.24-0.23-0.57-0.34-0.99-0.34c-0.4,0-0.72,0.12-0.97,0.36c-0.25,0.24-0.42,0.53-0.53,0.87l-1.37-0.57 c0.18-0.55,0.52-1.03,1-1.45C12.63,5.21,13.25,5,13.99,5c0.56,0,1.05,0.11,1.49,0.33c0.44,0.22,0.78,0.53,1.02,0.93 c0.24,0.4,0.36,0.84,0.36,1.33C16.86,8.08,16.75,8.49,16.51,8.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4 C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M13.51,10.16c0.41-0.73,1.18-1.16,1.63-1.8c0.48-0.68,0.21-1.94-1.14-1.94 c-0.88,0-1.32,0.67-1.5,1.23l-1.37-0.57C11.51,5.96,12.52,5,13.99,5c1.23,0,2.08,0.56,2.51,1.26c0.37,0.6,0.58,1.73,0.01,2.57 c-0.63,0.93-1.23,1.21-1.56,1.81c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52C13.26,11.41,13.19,10.74,13.51,10.16z M12.95,13.95 c0-0.59,0.47-1.04,1.05-1.04c0.59,0,1.04,0.45,1.04,1.04c0,0.58-0.44,1.05-1.04,1.05C13.42,15,12.95,14.53,12.95,13.95z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airplanemode_active\": {\n    \"name\": \"airplanemode_active\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M22,16v-2l-8.5-5V3.5C13.5,2.67,12.83,2,12,2s-1.5,0.67-1.5,1.5V9L2,14v2l8.5-2.5V19L8,20.5L8,22l4-1l4,1l0-1.5L13.5,19 v-5.5L22,16z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect><path d=\\\"M17,13v-1l-6-4V4c0-0.55-0.45-1-1-1S9,3.45,9,4v4l-6,4v1l6-2v4l-1.5,1v1l2.5-0.5l2.5,0.5v-1L11,15v-4L17,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_off\": {\n    \"name\": \"nearby_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.41,13.42L18.83,16l-1.81-1.81L19.2,12L12,4.8L9.81,6.99L8,5.17l2.58-2.58c0.78-0.78,2.05-0.78,2.83,0l8,8 C22.2,11.37,22.2,12.63,21.41,13.42z M21.19,21.19l-1.41,1.41L16,18.83l-2.58,2.58c-0.78,0.78-2.05,0.78-2.83,0l-8-8 c-0.78-0.78-0.78-2.05,0-2.83L5.17,8L1.39,4.22L2.8,2.81L21.19,21.19z M14.19,17.02l-1.39-1.39l-0.8,0.8L7.58,12l0.8-0.8 l-1.4-1.39L4.8,12l7.2,7.2L14.19,17.02z M16.42,12L12,7.58l-0.8,0.8l4.42,4.42L16.42,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"security_update_warning\": {\n    \"name\": \"security_update_warning\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M11,7h2v6h-2V7z M11,15h2v2h-2V15z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect></g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z\\\"></path><path d=\\\"M7,21h10v-1H7V21z M7,3v1h10V3H7z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_low\": {\n    \"name\": \"brightness_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nfc\": {\n    \"name\": \"nfc\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_auto_select\": {\n    \"name\": \"hdr_auto_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon points=\\\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\\\"></polygon><polygon points=\\\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\\\"></polygon><path d=\\\"M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1c0.5-0.3,0.9-0.8,0.9-1.4v-1C18,16.7,17.3,16,16.5,16z M16.5,18.5h-2v-1h2 V18.5z\\\"></path><path d=\\\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path><polygon points=\\\"11.97,5.3 10.95,8.19 13.05,8.19 12.03,5.3\\\"></polygon><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M14.04,11l-0.63-1.79h-2.83L9.96,11H8.74l2.63-7h1.25 l2.63,7H14.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_bad\": {\n    \"name\": \"gpp_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z M9.91,8.5L8.5,9.91L10.59,12L8.5,14.09l1.41,1.41L12,13.42l2.09,2.08 l1.41-1.41L13.42,12l2.08-2.09L14.09,8.5L12,10.59L9.91,8.5z\\\"></path><path d=\\\"M6,6.39v4.7c0,4,2.55,7.7,6,8.83c3.45-1.13,6-4.82,6-8.83v-4.7l-6-2.25L6,6.39z M15.5,9.91L13.42,12 l2.08,2.09l-1.41,1.41L12,13.42L9.91,15.5L8.5,14.09L10.59,12L8.5,9.91L9.91,8.5L12,10.59l2.09-2.09L15.5,9.91z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"storm\": {\n    \"name\": \"storm\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M17.2,9C15.54,6.13,11.86,5.15,9,6.8c-2.67,1.54-3.7,4.84-2.5,7.6c0.09,0.2,0.19,0.4,0.3,0.6 c1.66,2.87,5.33,3.85,8.2,2.2c2.67-1.54,3.7-4.84,2.5-7.6C17.41,9.4,17.31,9.2,17.2,9z M12,16c-2.21,0-4-1.79-4-4s1.79-4,4-4 s4,1.79,4,4S14.21,16,12,16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,8c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S14.21,8,12,8z M12,14c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2 S13.1,14,12,14z\\\"></path><path d=\\\"M18.93,8C16.72,4.18,11.82,2.87,8,5.07c-1.41,0.82-2.48,2-3.16,3.37C4.71,6.24,5.06,4.04,5.86,2H3.74 C2.2,6.49,2.52,11.58,5.07,16c1.1,1.91,2.88,3.19,4.86,3.72c1.98,0.53,4.16,0.31,6.07-0.79c1.41-0.82,2.48-2,3.16-3.37 c0.13,2.2-0.21,4.4-1.01,6.44h2.11C21.79,17.51,21.48,12.42,18.93,8z M15,17.2c-2.87,1.65-6.54,0.67-8.2-2.2 c-0.11-0.2-0.21-0.4-0.3-0.6C5.3,11.64,6.33,8.34,9,6.8c2.86-1.65,6.54-0.67,8.2,2.2c0.11,0.2,0.21,0.4,0.3,0.6 C18.7,12.36,17.67,15.66,15,17.2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bluetooth_searching\": {\n    \"name\": \"bluetooth_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2c.97-1.54 1.54-3.36 1.54-5.31-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"media_bluetooth_on\": {\n    \"name\": \"media_bluetooth_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M9,3l0.01,10.55c-0.6-0.34-1.28-0.55-2-0.55C4.79,13,3,14.79,3,17s1.79,4,4.01,4S11,19.21,11,17V7h4V3H9z M21,12.43 L17.57,9h-0.6v4.55l-2.75-2.75l-0.85,0.85L16.73,15l-3.35,3.35l0.85,0.85l2.75-2.75V21h0.6L21,17.57L18.42,15L21,12.43z M18.17,11.3l1.13,1.13l-1.13,1.13V11.3z M19.3,17.57l-1.13,1.13v-2.26L19.3,17.57z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_charging_20\": {\n    \"name\": \"battery_charging_20\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z\\\" fill-opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"wallpaper\": {\n    \"name\": \"wallpaper\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z\\\"></path>\"\n      }\n    }\n  },\n  \"edgesensor_low\": {\n    \"name\": \"edgesensor_low\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"4\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"19\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"20\\\" y=\\\"10\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"2\\\" y=\\\"7\\\"></rect><path d=\\\"M16,2.01L8,2C6.9,2,6,2.9,6,4v16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2.01,16,2.01z M16,20H8v-1h8V20z M16,17H8V7h8V17z M16,5H8V4h8V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"restart_alt\": {\n    \"name\": \"restart_alt\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,5V2L8,6l4,4V7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02c3.95-0.49,7-3.85,7-7.93C20,8.58,16.42,5,12,5z\\\"></path><path d=\\\"M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_1\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_1\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,14.76V8h5.92C19.97,5.51,16.16,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36C7.8,13.89,9.79,13,12,13 C13.89,13,15.63,13.66,17,14.76z\\\" fill-opacity=\\\".3\\\"></path><g><path d=\\\"M6.35,15.34L12,21l5-5.01v-1.23c-1.37-1.1-3.11-1.76-5-1.76C9.79,13,7.8,13.89,6.35,15.34z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"credit_score\": {\n    \"name\": \"credit_score\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h5v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M14.93,19.17l-2.83-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41-1.41L14.93,19.17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_charging_80\": {\n    \"name\": \"battery_charging_80\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_find\": {\n    \"name\": \"wifi_find\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22.59,10.39L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98L12,21l1.41-1.42L2.93,9.08C5.45,7.16,8.59,6,12,6 C16.13,6,19.88,7.68,22.59,10.39z\\\"></path><path d=\\\"M23,18.59l-2.56-2.56C20.79,15.44,21,14.75,21,14c0-2.24-1.76-4-4-4s-4,1.76-4,4c0,2.24,1.76,4,4,4 c0.75,0,1.44-0.21,2.03-0.56L21.59,20L23,18.59z M15,14c0-1.12,0.88-2,2-2s2,0.88,2,2c0,1.12-0.88,2-2,2S15,15.12,15,14z\\\"></path><path d=\\\"M22.59,10.39C19.88,7.68,16.13,6,12,6C8.59,6,5.45,7.16,2.93,9.08l2.26,2.26l8.24,8.24l0.46-0.46 C12.15,18.09,11,16.21,11,14c0-1.62,0.62-3.13,1.75-4.25S15.38,8,17,8c2.21,0,4.09,1.15,5.13,2.89l0.49-0.49l-0.02-0.02 L22.59,10.39z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4.5c-2.83,0-5.54,0.91-7.79,2.6L10,14.88l0.76-0.76C9.98,13.31,9.5,12.21,9.5,11 c0-2.49,2.01-4.5,4.5-4.5c1.21,0,2.31,0.49,3.12,1.27l0.67-0.67C15.54,5.41,12.83,4.5,10,4.5z\\\" opacity=\\\".3\\\"></path><g><g><path d=\\\"M10,14.88L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6l-0.67,0.67c0.37,0.35,0.66,0.77,0.89,1.23 L20,7.01C17.4,4.53,13.88,3,10,3C6.12,3,2.6,4.53,0,7.01L10,17l1.99-1.99c-0.46-0.23-0.88-0.53-1.23-0.89L10,14.88z\\\"></path></g><g><path d=\\\"M17,11c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.56,0,1.07-0.16,1.52-0.42L17.94,16L19,14.94l-2.42-2.42 C16.84,12.07,17,11.56,17,11z M14,12.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S14.83,12.5,14,12.5z\\\"></path></g></g></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_3\": {\n    \"name\": \"signal_wifi_connected_no_internet_3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.18,11.8L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l2.82,2.82C5.17,9.45,8.41,8,12,8 S18.83,9.45,21.18,11.8z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M21.18,11.8C18.83,9.45,15.59,8,12,8s-6.83,1.45-9.18,3.8L12,21v-9h8.99L21.18,11.8z M19.59,14l-2.09,2.09L15.41,14 L14,15.41l2.09,2.09L14,19.59L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41L19.59,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_1_bar\": {\n    \"name\": \"signal_wifi_statusbar_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17.65,15.34L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36 C7.8,13.89,9.79,13,12,13S16.2,13.89,17.65,15.34z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M17.65,15.34C16.2,13.89,14.21,13,12,13s-4.2,0.89-5.65,2.34L12,21L17.65,15.34z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_3_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 8V2L2 22h16V8h4z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"punch_clock\": {\n    \"name\": \"punch_clock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"3\\\"></rect><path d=\\\"M5,20h14V8H5V20z M12,9c2.76,0,5,2.24,5,5s-2.24,5-5,5c-2.76,0-5-2.24-5-5S9.24,9,12,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,6h-1V1H6v5H5C3.9,6,3,6.9,3,8v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M8,3h8v3H8V3z M19,20H5V8 h14V20z\\\"></path><path d=\\\"M12,19c2.76,0,5-2.24,5-5s-2.24-5-5-5c-2.76,0-5,2.24-5,5S9.24,19,12,19z M12,10.5c1.93,0,3.5,1.57,3.5,3.5 s-1.57,3.5-3.5,3.5S8.5,15.93,8.5,14S10.07,10.5,12,10.5z\\\"></path><polygon points=\\\"13.85,15.14 12.5,13.79 12.5,11.5 11.5,11.5 11.5,14.21 13.14,15.85\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2.5\\\" opacity=\\\".3\\\" width=\\\"7\\\" x=\\\"6.5\\\" y=\\\"2.5\\\"></rect><path d=\\\"M4.5,16.5h11v-10h-11V16.5z M10,7.5c2.21,0,4,1.79,4,4c0,2.21-1.79,4-4,4s-4-1.79-4-4 C6,9.29,7.79,7.5,10,7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,5H15V1H5v4H4.5C3.67,5,3,5.67,3,6.5v10C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5v-10 C17,5.67,16.33,5,15.5,5z M6.5,2.5h7V5h-7V2.5z M15.5,16.5h-11v-10h11V16.5z\\\"></path><path d=\\\"M10,15.5c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4s-4,1.79-4,4C6,13.71,7.79,15.5,10,15.5z M10,8.5c1.65,0,3,1.35,3,3 c0,1.65-1.35,3-3,3c-1.65,0-3-1.35-3-3C7,9.85,8.35,8.5,10,8.5z\\\"></path><polygon points=\\\"11.85,12.65 10.5,11.29 10.5,9.5 9.5,9.5 9.5,11.71 11.15,13.35\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"storage\": {\n    \"name\": \"storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_3_bar\": {\n    \"name\": \"signal_cellular_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 22h20V2L2 22z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M17 7L2 22h15V7z\\\"></path>\"\n      }\n    }\n  },\n  \"network_cell\": {\n    \"name\": \"network_cell\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,22h20V2L2,22z M20,20h-3V9.83l3-3V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fluorescent\": {\n    \"name\": \"fluorescent\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"11\\\"></rect><path d=\\\"M5,15h14V9H5V15z M7,11h10v2H7V11z\\\"></path><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7046 -0.7096 0.7096 0.7046 1.1814 15.2381)\\\" width=\\\"2.54\\\" x=\\\"17.62\\\" y=\\\"5.2\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><polygon points=\\\"17.29,17.71 19.08,19.51 20.5,18.09 18.7,16.3\\\"></polygon><rect height=\\\"2.53\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.8904 5.4222)\\\" width=\\\"1.99\\\" x=\\\"4.1\\\" y=\\\"4.93\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7096 -0.7046 0.7046 0.7096 -11.1263 8.7897)\\\" width=\\\"2.54\\\" x=\\\"3.83\\\" y=\\\"16.89\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_1_bar_lock\": {\n    \"name\": \"signal_wifi_1_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5zM23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z\\\"></path>\"\n      }\n    }\n  },\n  \"sim_card_download\": {\n    \"name\": \"sim_card_download\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,8.83V20h12V4h-7.17L6,8.83z M11,9.02L13,9v4h3l-4,4l-4-4h3V9.02z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,2h-8L4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V8.83L10.83,4H18V20z\\\"></path><polygon points=\\\"12,17 16,13 13,13 13,9 11,9.02 11,13 8,13\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"macro_off\": {\n    \"name\": \"macro_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.11,5.69L9.3,5.13C9.12,5,8.89,4.93,8.66,4.93c-0.25,0-0.47,0.1-0.66,0.24 l1.39,1.39C9.57,6.23,9.82,5.93,10.11,5.69z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.83,8.9l-0.88-0.42c-0.12,0.73-0.51,1.36-1.05,1.82l0.8,0.57 c0.18,0.13,0.4,0.2,0.64,0.2c0.47,0,0.87-0.28,1.05-0.69c0.06-0.14,0.09-0.28,0.09-0.44C16.49,9.49,16.23,9.1,15.83,8.9z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.89,5.68c0.55,0.46,0.94,1.1,1.06,1.84l0.87-0.42 c0.41-0.2,0.66-0.59,0.66-1.03c0-0.63-0.51-1.14-1.14-1.14c-0.24,0-0.46,0.07-0.64,0.2L13.89,5.68z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,5c0.36,0,0.71,0.07,1.03,0.19l0.11-1.09C13.12,3.49,12.62,3,12,3 s-1.12,0.49-1.14,1.1l0.12,1.09C11.3,5.07,11.64,5,12,5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.94,18.77l-0.71-0.71c-0.32,0.47-0.59,0.97-0.79,1.5 C14.98,19.36,15.48,19.09,15.94,18.77z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.44,15.44c0.71,1.9,2.22,3.41,4.12,4.12C8.85,17.66,7.34,16.15,5.44,15.44z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.66,4.93C8.9,4.93,9.12,5,9.3,5.13l0.81,0.56C9.82,5.93,9.57,6.23,9.39,6.56l1.66,1.66C11.03,8.14,11,8.08,11,8 c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1c-0.08,0-0.14-0.03-0.22-0.04l4.06,4.06c1.49-0.24,2.63-1.53,2.63-3.09 c0-0.71-0.25-1.39-0.67-1.93c0.43-0.54,0.67-1.22,0.67-1.93c0-1.73-1.41-3.14-3.14-3.14c-0.15,0-0.29,0.01-0.43,0.03 C14.44,1.81,13.31,1,12,1S9.56,1.81,9.09,2.96C8.95,2.94,8.8,2.93,8.66,2.93c-0.8,0-1.53,0.31-2.09,0.81l1.42,1.42 C8.19,5.03,8.41,4.93,8.66,4.93z M16.39,10.38c-0.18,0.41-0.58,0.69-1.05,0.69c-0.24,0-0.46-0.07-0.64-0.2l-0.8-0.57l-0.01,0 c0.55-0.45,0.94-1.09,1.06-1.83l0.88,0.42c0.4,0.19,0.66,0.59,0.66,1.03C16.49,10.09,16.45,10.24,16.39,10.38z M14.69,5.13 c0.2-0.13,0.42-0.2,0.65-0.2c0,0,0,0,0,0c0.63,0,1.14,0.51,1.14,1.14c0,0.44-0.25,0.83-0.66,1.03l-0.87,0.42l-0.01,0 c-0.12-0.74-0.51-1.38-1.07-1.83L14.69,5.13z M12,3c0.62,0,1.12,0.49,1.14,1.1l-0.11,1.09C12.71,5.07,12.36,5,12,5 s-0.7,0.07-1.02,0.19L10.86,4.1C10.88,3.49,11.38,3,12,3z\\\"></path><path d=\\\"M19.98,17.15C20.63,15.91,21,14.5,21,13c-1.5,0-2.91,0.37-4.15,1.02l1.51,1.51\\\"></path><path d=\\\"M3,13c0,4.97,4.03,9,9,9C12,17.03,7.97,13,3,13z M5.44,15.44c1.9,0.71,3.42,2.22,4.12,4.12 C7.66,18.85,6.15,17.34,5.44,15.44z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l4.42,4.42c-0.19,0.4-0.3,0.84-0.3,1.29c0,1.73,1.41,3.14,3.15,3.14c0.15,0,0.29-0.01,0.43-0.03 C9.56,14.19,10.69,15,12,15c0.05,0,0.11-0.01,0.16-0.01l1.64,1.64C12.67,18.12,12,19.98,12,22c2.02,0,3.88-0.67,5.38-1.8l2.4,2.4 l1.41-1.41L2.81,2.81z M14.44,19.56c0.2-0.54,0.47-1.04,0.79-1.5l0.71,0.71l0,0C15.48,19.09,14.98,19.36,14.44,19.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4c0.3,0,0.59,0.06,0.86,0.16C10.94,3.93,11,3.69,11,3.5c0-0.55-0.45-1-1-1s-1,0.45-1,1 c0,0.19,0.06,0.43,0.14,0.66C9.41,4.06,9.7,4,10,4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.9,4.13C7.44,3.87,6.87,4.02,6.58,4.45l1.11,1.11c0.15-0.38,0.4-0.73,0.71-0.99 C8.24,4.4,8.07,4.23,7.9,4.13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.1,7.13c-0.16-0.09-0.4-0.16-0.64-0.21c-0.1,0.6-0.41,1.12-0.86,1.49c0.16,0.18,0.33,0.35,0.5,0.45 c0.48,0.28,1.09,0.11,1.37-0.37S13.58,7.41,13.1,7.13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.46,6.07c0.24-0.05,0.47-0.11,0.64-0.21c0.48-0.28,0.64-0.89,0.37-1.37s-0.89-0.64-1.37-0.37 c-0.16,0.09-0.34,0.27-0.5,0.45C12.05,4.95,12.36,5.48,12.46,6.07z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.6,14.72c-0.33,0.44-0.6,0.93-0.79,1.46c0.53-0.19,1.02-0.46,1.46-0.79L12.6,14.72z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.81,12.81c0.55,1.57,1.8,2.82,3.37,3.37C7.63,14.61,6.39,13.37,4.81,12.81z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.9,4.13C8.07,4.23,8.24,4.4,8.4,4.58c-0.31,0.26-0.56,0.6-0.71,0.99L9.22,7.1C9.09,6.93,9,6.73,9,6.5c0-0.55,0.45-1,1-1 s1,0.45,1,1s-0.45,1-1,1c-0.23,0-0.43-0.09-0.6-0.22l3.19,3.19c1.49,0.02,2.14-1.16,2.18-1.22c0.52-0.89,0.42-1.97-0.17-2.75 c0.58-0.78,0.68-1.86,0.17-2.75c-0.03-0.06-0.75-1.41-2.46-1.21C11.93,1.63,11.04,1,10,1S8.07,1.63,7.69,2.54 C6.54,2.4,5.85,2.98,5.5,3.38l1.07,1.07C6.87,4.02,7.44,3.87,7.9,4.13z M13.46,8.5c-0.28,0.48-0.89,0.64-1.37,0.37 c-0.16-0.09-0.34-0.27-0.5-0.45c0.45-0.37,0.76-0.9,0.86-1.49c0.24,0.05,0.47,0.11,0.64,0.21C13.58,7.41,13.74,8.02,13.46,8.5z M12.1,4.13c0.48-0.28,1.09-0.11,1.37,0.37s0.11,1.09-0.37,1.37c-0.16,0.09-0.4,0.16-0.64,0.21c-0.1-0.6-0.41-1.12-0.86-1.49 C11.76,4.4,11.93,4.23,12.1,4.13z M10,2.5c0.55,0,1,0.45,1,1c0,0.19-0.06,0.43-0.14,0.66C10.59,4.06,10.3,4,10,4 C9.7,4,9.41,4.06,9.14,4.16C9.06,3.93,9,3.69,9,3.5C9,2.95,9.45,2.5,10,2.5z\\\"></path><path d=\\\"M3,11c0,3.86,3.15,7,7,7C10,14.14,6.85,11,3,11z M4.81,12.81c1.57,0.55,2.82,1.8,3.37,3.37 C6.61,15.63,5.37,14.39,4.81,12.81z\\\"></path><path d=\\\"M16.25,14.13c0.47-0.94,0.75-2,0.75-3.13c-1.12,0-2.19,0.27-3.13,0.75L16.25,14.13z\\\"></path><path d=\\\"M1.87,3.99l3.18,3.18C4.81,7.83,4.86,8.59,5.24,9.25c0.03,0.06,0.75,1.41,2.46,1.21c0.36,0.86,1.19,1.48,2.18,1.53 l1.66,1.66C10.58,14.84,10,16.35,10,18c1.64,0,3.15-0.57,4.35-1.53l1.66,1.66l1.06-1.06L2.93,2.93L1.87,3.99z M12.6,14.72 l0.68,0.68c-0.44,0.33-0.93,0.6-1.46,0.79C12,15.66,12.27,15.17,12.6,14.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_0_bar\": {\n    \"name\": \"signal_cellular_0_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2,22h20V2L2,22z M20,20H6.83L20,6.83V20z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tungsten\": {\n    \"name\": \"tungsten\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,7.1V5h-2v2.1C11.32,7.04,11.66,7,12,7S12.68,7.04,13,7.1z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"19\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -7.6665 17.8014)\\\" width=\\\"1.99\\\" x=\\\"16.66\\\" y=\\\"16.66\\\"></rect><rect height=\\\"1.99\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -10.9791 9.8041)\\\" width=\\\"3\\\" x=\\\"4.85\\\" y=\\\"17.16\\\"></rect><path d=\\\"M15,8.02V3H9v5.02C7.79,8.94,7,10.37,7,12c0,2.76,2.24,5,5,5s5-2.24,5-5C17,10.37,16.21,8.94,15,8.02z M11,5h2v2.1 C12.68,7.04,12.34,7,12,7s-0.68,0.04-1,0.1V5z M12,15c-1.65,0-3-1.35-3-3s1.35-3,3-3c1.65,0,3,1.35,3,3S13.65,15,12,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"1x_mobiledata\": {\n    \"name\": \"1x_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,7h4v10H6V9H4V7z M15.83,11.72L18.66,7h-2.33l-1.66,2.77L13,7h-2.33l2.83,4.72L10.33,17h2.33l2-3.34l2,3.34H19 L15.83,11.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_good\": {\n    \"name\": \"fmd_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,4c-3.35,0-6,2.57-6,6.2c0,2.34,1.95,5.44,6,9.14c4.05-3.7,6-6.79,6-9.14 C18,6.57,15.35,4,12,4z M12,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2c1.1,0,2,0.9,2,2C14,11.1,13.1,12,12,12z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,8c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2C14,8.9,13.1,8,12,8z M12,2c-4.2,0-8,3.22-8,8.2 c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8C20,5.22,16.2,2,12,2z M12,19.33c-4.05-3.7-6-6.79-6-9.14C6,6.57,8.65,4,12,4 s6,2.57,6,6.2C18,12.54,16.05,15.64,12,19.33z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_charging_50\": {\n    \"name\": \"battery_charging_50\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z\\\" fill-opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"location_searching\": {\n    \"name\": \"location_searching\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight\": {\n    \"name\": \"nightlight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><g><path d=\\\"M6,12c0-4.41,3.59-8,8-8c0.34,0,0.68,0.02,1.01,0.07 C13.1,6.23,12,9.05,12,12s1.1,5.77,3.01,7.93C14.68,19.98,14.34,20,14,20C9.59,20,6,16.41,6,12z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,12c0-3.7,2.01-6.92,5-8.65C17.53,2.5,15.82,2,14,2C8.48,2,4,6.48,4,12s4.48,10,10,10c1.82,0,3.53-0.5,5-1.35 C16.01,18.92,14,15.7,14,12z M15.01,19.93C14.68,19.98,14.34,20,14,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c0.34,0,0.68,0.02,1.01,0.07C13.1,6.23,12,9.05,12,12S13.1,17.77,15.01,19.93z\\\"></path></g></g></g></g>\"\n      }\n    }\n  },\n  \"30fps\": {\n    \"name\": \"30fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2,5v3h6v2.5H3v3h5V16H2v3h6c1.66,0,3-1.34,3-3v-1.9c0-1.16-0.94-2.1-2.1-2.1c1.16,0,2.1-0.94,2.1-2.1V8 c0-1.66-1.34-3-3-3H2z M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8 C22,6.34,20.66,5,19,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"fmd_bad\": {\n    \"name\": \"fmd_bad\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,15h2v-2h-2V15z M11,11h2V6h-2V11z M12,2c-4.2,0-8,3.22-8,8.2c0,3.32,2.67,7.25,8,11.8c5.33-4.55,8-8.48,8-11.8 C20,5.22,16.2,2,12,2z M12,19.33c-4.05-3.7-6-6.79-6-9.14C6,6.57,8.65,4,12,4s6,2.57,6,6.2C18,12.54,16.05,15.64,12,19.33z\\\"></path><path d=\\\"M12,19.33c4.05-3.7,6-6.79,6-9.14C18,6.57,15.35,4,12,4s-6,2.57-6,6.2C6,12.54,7.95,15.64,12,19.33z M11,6 h2v5h-2V6z M11,13h2v2h-2V13z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_off\": {\n    \"name\": \"signal_wifi_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_weight\": {\n    \"name\": \"monitor_weight\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"8.5\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"10\\\" y=\\\"8.5\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"11.5\\\" y=\\\"8.5\\\"></rect><path d=\\\"M5,19h14V5H5V19z M12,6c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S10.34,6,12,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,12c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,7.34,9,9S10.34,12,12,12z M13,8.5h1v1h-1V8.5z M11.5,8.5h1v1h-1V8.5z M10,8.5h1v1 h-1V8.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"screenshot_monitor\": {\n    \"name\": \"screenshot_monitor\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,17h16V5H4V17z M15,14.5h2.5V12H19v4h-4V14.5z M5,6h4v1.5H6.5V10H5V6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2V5C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><polygon points=\\\"6.5,7.5 9,7.5 9,6 5,6 5,10 6.5,10\\\"></polygon><polygon points=\\\"19,12 17.5,12 17.5,14.5 15,14.5 15,16 19,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,13.5h13v-9h-13V13.5z M12.5,11.5h2v-2h1v3h-3V11.5z M4.5,5.5h3v1h-2v2h-1V5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5v-9 C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><polygon points=\\\"5.5,6.5 7.5,6.5 7.5,5.5 4.5,5.5 4.5,8.5 5.5,8.5\\\"></polygon><polygon points=\\\"15.5,9.5 14.5,9.5 14.5,11.5 12.5,11.5 12.5,12.5 15.5,12.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lte_mobiledata\": {\n    \"name\": \"lte_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,14h3v2H4V8h2V14z M9,10h2v6h2v-6h2V8H9V10z M21,10V8h-5v8h5v-2h-3v-1h3v-2h-3v-1H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi_1_bar\": {\n    \"name\": \"network_wifi_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.32,14.84C14.34,14.3,13.2,14,12,14c-1.2,0-2.34,0.3-3.32,0.84L2.92,9.07C5.51,7.08,8.67,6,12,6 s6.49,1.08,9.08,3.07L15.32,14.84z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M15.32,14.84C14.34,14.3,13.2,14,12,14 c-1.2,0-2.34,0.3-3.32,0.84L2.92,9.07C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07L15.32,14.84z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.56,12.32c-1.53-1.07-3.6-1.07-5.13,0L2.21,7.1C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6 L12.56,12.32z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l10-9.99C17.4,4.53,13.88,3,10,3z M12.56,12.32c-1.53-1.07-3.6-1.07-5.13,0L2.21,7.1 C4.46,5.41,7.17,4.5,10,4.5c2.83,0,5.54,0.91,7.79,2.6L12.56,12.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"g_mobiledata\": {\n    \"name\": \"g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11v2h2v2H9V9h7c0-1.1-0.9-2-2-2H9C7.9,7,7,7.9,7,9v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4H12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_1_bar\": {\n    \"name\": \"signal_cellular_1_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 22h20V2L2 22z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M12 12L2 22h10V12z\\\"></path>\"\n      }\n    }\n  },\n  \"signal_cellular_2_bar\": {\n    \"name\": \"signal_cellular_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 22h20V2L2 22z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M14 10L2 22h12V10z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_10_select\": {\n    \"name\": \"timer_10_select\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,8v8h-3V8H13 M13,5h-3C8.34,5,7,6.34,7,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3V8C16,6.34,14.66,5,13,5z M1,8h2v11h3 V5H1V8z M18.5,11c-0.83,0-1.5,0.68-1.5,1.5v2c0,0.82,0.67,1.5,1.5,1.5H21v1h-4v2h4.5c0.83,0,1.5-0.67,1.5-1.5v-2 c0-0.83-0.67-1.5-1.5-1.5H19v-1h4v-2H18.5z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_20\": {\n    \"name\": \"battery_20\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z\\\"></path><path d=\\\"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z\\\" fill-opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"3g_mobiledata\": {\n    \"name\": \"3g_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_unknown\": {\n    \"name\": \"battery_unknown\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94c.27-.27.44-.65.44-1.06 0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_suggest\": {\n    \"name\": \"settings_suggest\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.07,15.23c0.12-0.39,0.18-0.8,0.18-1.23c0-0.43-0.06-0.84-0.18-1.23l1.49-1.13l-0.73-1.27l-1.73,0.73 c-0.56-0.6-1.3-1.04-2.13-1.23L10.73,8H9.27L9.03,9.86c-0.83,0.19-1.57,0.63-2.13,1.23l-1.73-0.73l-0.73,1.27l1.49,1.13 c-0.12,0.39-0.18,0.8-0.18,1.23c0,0.43,0.06,0.84,0.18,1.23l-1.49,1.13l0.73,1.27l1.73-0.73c0.56,0.6,1.3,1.04,2.13,1.23L9.27,20 h1.47l0.23-1.86c0.83-0.19,1.57-0.63,2.13-1.23l1.73,0.73l0.73-1.27L14.07,15.23z M10,17c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S11.66,17,10,17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,13c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S9.45,13,10,13 M10,11c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 S11.66,11,10,11L10,11z M18.5,9l1.09-2.41L22,5.5l-2.41-1.09L18.5,2l-1.09,2.41L15,5.5l2.41,1.09L18.5,9z M21.28,12.72L20.5,11 l-0.78,1.72L18,13.5l1.72,0.78L20.5,16l0.78-1.72L23,13.5L21.28,12.72z M16.25,14c0-0.12,0-0.25-0.01-0.37l1.94-1.47l-2.5-4.33 l-2.24,0.94c-0.2-0.13-0.42-0.26-0.64-0.37L12.5,6h-5L7.2,8.41C6.98,8.52,6.77,8.65,6.56,8.78L4.32,7.83l-2.5,4.33l1.94,1.47 C3.75,13.75,3.75,13.88,3.75,14s0,0.25,0.01,0.37l-1.94,1.47l2.5,4.33l2.24-0.94c0.2,0.13,0.42,0.26,0.64,0.37L7.5,22h5l0.3-2.41 c0.22-0.11,0.43-0.23,0.64-0.37l2.24,0.94l2.5-4.33l-1.94-1.47C16.25,14.25,16.25,14.12,16.25,14z M14.83,17.64l-1.73-0.73 c-0.56,0.6-1.3,1.04-2.13,1.23L10.73,20H9.27l-0.23-1.86c-0.83-0.19-1.57-0.63-2.13-1.23l-1.73,0.73l-0.73-1.27l1.49-1.13 c-0.12-0.39-0.18-0.8-0.18-1.23c0-0.43,0.06-0.84,0.18-1.23l-1.49-1.13l0.73-1.27l1.73,0.73c0.56-0.6,1.3-1.04,2.13-1.23L9.27,8 h1.47l0.23,1.86c0.83,0.19,1.57,0.63,2.13,1.23l1.73-0.73l0.73,1.27l-1.49,1.13c0.12,0.39,0.18,0.8,0.18,1.23 c0,0.43-0.06,0.84-0.18,1.23l1.49,1.13L14.83,17.64z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_5_bar\": {\n    \"name\": \"battery_5_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v4h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"3.5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"5\\\"></rect><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v3.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gps_off\": {\n    \"name\": \"gps_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53C10.46 5.13 11.22 5 12 5c3.87 0 7 3.13 7 7 0 .79-.13 1.54-.37 2.24l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04C3.97 7.62 3.26 9.23 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27C15.09 18.45 13.61 19 12 19c-3.87 0-7-3.13-7-7 0-1.61.55-3.09 1.46-4.27l9.81 9.81z\\\"></path>\"\n      }\n    }\n  },\n  \"shortcut\": {\n    \"name\": \"shortcut\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M21,11l-6-6v5H8c-2.76,0-5,2.24-5,5v4h2v-4c0-1.65,1.35-3,3-3h7v5L21,11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"battery_6_bar\": {\n    \"name\": \"battery_6_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v2h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"3.5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"5\\\"></rect><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5v2 h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"data_saver_on\": {\n    \"name\": \"data_saver_on\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,8v3H8v2h3v3h2v-3h3v-2h-3V8H11z M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53 C21.68,14.83,22,13.45,22,12C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05 C5.94,2.55,2,6.81,2,12c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_time\": {\n    \"name\": \"access_time\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_3_bar\": {\n    \"name\": \"battery_3_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"8\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect><path d=\\\"M17,5v16c0,0.55-0.45,1-1,1H8c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h2V2h4v2h2C16.55,4,17,4.45,17,5z M15,6H9v8h6V6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"6.5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"5\\\"></rect><path d=\\\"M13,3.5c0.55,0,1,0.45,1,1V17c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4.5c0-0.55,0.45-1,1-1h1.5V2h3v1.5H13z M12.5,5h-5 v6.5h5V5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar\": {\n    \"name\": \"signal_wifi_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z\\\"></path>\"\n      }\n    }\n  },\n  \"splitscreen\": {\n    \"name\": \"splitscreen\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"4\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"15\\\"></rect><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,9H6V4h12V9z\\\"></path><path d=\\\"M18,13H6c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-5C20,13.9,19.1,13,18,13z M18,20H6v-5h12V20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_4\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_4\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21l5-5.01V8h5.92C19.97,5.51,16.16,4,12,4z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><path d=\\\"M10,3C6.12,3,2.6,4.53,0,7.01L10,17l5-5V7.5h4.51L20,7.01C17.4,4.53,13.88,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_connected_no_internet_3\": {\n    \"name\": \"signal_wifi_statusbar_connected_no_internet_3\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M17,9V8h5.92C19.97,5.51,16.16,4,12,4C7.31,4,3.07,5.9,0,8.98l2.82,2.82C5.17,9.45,8.41,8,12,8 C13.77,8,15.46,8.36,17,9z\\\" fill-opacity=\\\".3\\\"></path><g><path d=\\\"M2.82,11.8L12,21l5-5.01V9c-1.54-0.64-3.23-1-5-1C8.41,8,5.17,9.45,2.82,11.8z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"18\\\"></rect><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_statusbar_2_bar\": {\n    \"name\": \"signal_wifi_statusbar_2_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.77,13.22L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l4.23,4.24 C6.22,11.23,8.97,10,12,10S17.78,11.23,19.77,13.22z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M19.77,13.22C17.78,11.23,15.03,10,12,10s-5.78,1.23-7.77,3.22L12,21L19.77,13.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"h_plus_mobiledata\": {\n    \"name\": \"h_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,11H6V7H4v10h2v-4h6v4h2V7h-2V11z M22,11h-2V9h-2v2h-2v2h2v2h2v-2h2V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rsvp\": {\n    \"name\": \"rsvp\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9h1.5l-1.75,6h-1.5L12.5,9H14l1,3.43L16,9z M5.1,12.9L6,15H4.5l-0.85-2H2.5v2H1V9h3.5C5.35,9,6,9.65,6,10.5v1 C6,12.1,5.6,12.65,5.1,12.9z M4.5,10.5h-2v1h2V10.5z M21.5,13h-2v2H18V9h3.5c0.83,0,1.5,0.67,1.5,1.5v1C23,12.33,22.33,13,21.5,13 z M21.5,10.5h-2v1h2V10.5z M11.5,9v1.5h-3v0.75h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7v-1.5h3v-0.75H7.75 C7.34,12.75,7,12.41,7,12v-2c0-0.55,0.45-1,1-1H11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lte_plus_mobiledata\": {\n    \"name\": \"lte_plus_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M3,14h3v2H1V8h2V14z M5,10h2v6h2v-6h2V8H5V10z M12,16h5v-2h-3v-1h3v-2h-3v-1h3V8h-5V16z M24,11h-2V9h-2v2h-2v2h2v2h2v-2h2 V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"access_alarms\": {\n    \"name\": \"access_alarms\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.9 0-7 3.1-7 7s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm3.7 10.9L11 14V8h1.5v5.3l4 2.4-.8 1.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"monitor_heart\": {\n    \"name\": \"monitor_heart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.11,12.45L14,10.24l-3.11,6.21C10.72,16.79,10.38,17,10,17s-0.72-0.21-0.89-0.55L7.38,13H2v2h2v3h16v-3 h2v-2h-6C15.62,13,15.28,12.79,15.11,12.45z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6H4v3H2v2h6c0.38,0,0.72,0.21,0.89,0.55L10,13.76l3.11-6.21c0.34-0.68,1.45-0.68,1.79,0L16.62,11H22V9 h-2V6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v3h2V6h16v3h2V6C22,4.9,21.1,4,20,4z\\\"></path><path d=\\\"M20,18H4v-3H2v3c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-3h-2V18z\\\"></path><path d=\\\"M14.89,7.55c-0.34-0.68-1.45-0.68-1.79,0L10,13.76l-1.11-2.21C8.72,11.21,8.38,11,8,11H2v2h5.38l1.72,3.45 C9.28,16.79,9.62,17,10,17s0.72-0.21,0.89-0.55L14,10.24l1.11,2.21C15.28,12.79,15.62,13,16,13h6v-2h-5.38L14.89,7.55z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,5.6h-13V8H2v1.25h5c0.27,0,0.53,0.15,0.66,0.39l0.84,1.54l2.34-4.29c0.26-0.48,1.05-0.48,1.32,0 l1.29,2.36H18V8h-1.5V5.6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.34,10.36L11.5,8.82l-2.34,4.29C9.03,13.35,8.77,13.5,8.5,13.5s-0.53-0.15-0.66-0.39l-1.29-2.36H2V12 h1.5v2.4h13V12H18v-1.25h-5C12.73,10.75,12.47,10.6,12.34,10.36z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.4,4H3.6C2.72,4,2,4.72,2,5.6V8h1.5V5.6h13V8H18V5.6C18,4.72,17.28,4,16.4,4z\\\"></path><path d=\\\"M16.5,14.4h-13V12H2v2.4C2,15.28,2.72,16,3.6,16h12.8c0.88,0,1.6-0.72,1.6-1.6V12h-1.5V14.4z\\\"></path><path d=\\\"M12.16,6.89c-0.26-0.48-1.05-0.48-1.32,0L8.5,11.18L7.66,9.64C7.53,9.4,7.27,9.25,7,9.25H2v1.5h4.55l1.29,2.36 c0.13,0.24,0.38,0.39,0.66,0.39s0.53-0.15,0.66-0.39l2.34-4.29l0.84,1.54c0.13,0.24,0.38,0.39,0.66,0.39h5v-1.5h-4.55L12.16,6.89z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_90\": {\n    \"name\": \"battery_90\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z\\\"></path>\"\n      }\n    }\n  },\n  \"ssid_chart\": {\n    \"name\": \"ssid_chart\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,5.47L12,12L7.62,7.62L3,11V8.52L7.83,5l4.38,4.38L21,3L21,5.47z M21,15h-4.7l-4.17,3.34L6,12.41l-3,2.13L3,17l2.8-2 l6.2,6l5-4h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M17,4.86L10,10L6.5,6.5L3,9V7.16l3.66-2.62l3.49,3.49L17,3L17,4.86z M17,12.5h-3.5l-3.36,2.52L5.5,10.3L3,12.14L3,14 l2.3-1.69L10,17l4-3h3V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"data_saver_off\": {\n    \"name\": \"data_saver_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13,2.05v3.03c3.39,0.49,6,3.39,6,6.92c0,0.9-0.18,1.75-0.48,2.54l2.6,1.53C21.68,14.83,22,13.45,22,12 C22,6.82,18.05,2.55,13,2.05z M12,19c-3.87,0-7-3.13-7-7c0-3.53,2.61-6.43,6-6.92V2.05C5.94,2.55,2,6.81,2,12 c0,5.52,4.47,10,9.99,10c3.31,0,6.24-1.61,8.06-4.09l-2.6-1.53C16.17,17.98,14.21,19,12,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gps_not_fixed\": {\n    \"name\": \"gps_not_fixed\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.94 11c-.46-4.17-3.77-7.48-7.94-7.94V1h-2v2.06C6.83 3.52 3.52 6.83 3.06 11H1v2h2.06c.46 4.17 3.77 7.48 7.94 7.94V23h2v-2.06c4.17-.46 7.48-3.77 7.94-7.94H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"sd_storage\": {\n    \"name\": \"sd_storage\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 8.83V20h12V4h-7.17L6 8.83zM15 7h2v4h-2V7zm-3 0h2v4h-2V7zm-1 4H9V7h2v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2h-8L4 8v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16zM9 7h2v4H9zm3 0h2v4h-2zm3 0h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"lens_blur\": {\n    \"name\": \"lens_blur\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,13,6,13z M6,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S6.55,17,6,17z M6,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S6.55,9,6,9z M3,9.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5 s0.5-0.22,0.5-0.5S3.28,9.5,3,9.5z M6,5C5.45,5,5,5.45,5,6s0.45,1,1,1s1-0.45,1-1S6.55,5,6,5z M21,10.5c0.28,0,0.5-0.22,0.5-0.5 S21.28,9.5,21,9.5s-0.5,0.22-0.5,0.5S20.72,10.5,21,10.5z M14,7c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S13.45,7,14,7z M14,3.5 c0.28,0,0.5-0.22,0.5-0.5S14.28,2.5,14,2.5S13.5,2.72,13.5,3S13.72,3.5,14,3.5z M3,13.5c-0.28,0-0.5,0.22-0.5,0.5 s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S3.28,13.5,3,13.5z M10,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S10.28,20.5,10,20.5z M10,3.5c0.28,0,0.5-0.22,0.5-0.5S10.28,2.5,10,2.5S9.5,2.72,9.5,3S9.72,3.5,10,3.5z M10,7c0.55,0,1-0.45,1-1 s-0.45-1-1-1S9,5.45,9,6S9.45,7,10,7z M10,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,12.5,10,12.5z M18,13c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,13,18,13z M18,17c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,17,18,17z M18,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S18.55,9,18,9z M18,5c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1 S18.55,5,18,5z M21,13.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5S21.28,13.5,21,13.5z M14,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S14.55,17,14,17z M14,20.5c-0.28,0-0.5,0.22-0.5,0.5s0.22,0.5,0.5,0.5s0.5-0.22,0.5-0.5 S14.28,20.5,14,20.5z M10,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S10.83,8.5,10,8.5z M10,17 c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S10.55,17,10,17z M14,12.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S14.83,12.5,14,12.5z M14,8.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S14.83,8.5,14,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_connected_no_internet_1\": {\n    \"name\": \"signal_wifi_connected_no_internet_1\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,12h8.99L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36 C7.79,13.89,9.79,13,12,13V12z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M12,21v-8c-2.21,0-4.2,0.89-5.65,2.34L12,21z M21,15.41L19.59,14l-2.09,2.09L15.41,14L14,15.41l2.09,2.09L14,19.59 L15.41,21l2.09-2.08L19.59,21L21,19.59l-2.08-2.09L21,15.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cable\": {\n    \"name\": \"cable\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,5V4c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v1h-1v4c0,0.55,0.45,1,1,1h1v7c0,1.1-0.9,2-2,2s-2-0.9-2-2V7 c0-2.21-1.79-4-4-4S5,4.79,5,7v7H4c-0.55,0-1,0.45-1,1v4h1v1c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h1v-4c0-0.55-0.45-1-1-1H7 V7c0-1.1,0.9-2,2-2s2,0.9,2,2v10c0,2.21,1.79,4,4,4s4-1.79,4-4v-7h1c0.55,0,1-0.45,1-1V5H20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"e_mobiledata\": {\n    \"name\": \"e_mobiledata\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M16,9V7H8v10h8v-2h-6v-2h6v-2h-6V9H16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"battery_charging_90\": {\n    \"name\": \"battery_charging_90\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_50\": {\n    \"name\": \"battery_50\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z\\\"></path>\"\n      }\n    }\n  },\n  \"lan\": {\n    \"name\": \"lan\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3V22z M10,7V4h4v3H10z M9,17v3H5v-3H9z M19,17v3h-4v-3H19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,14.5v2h-3v-2H15.5z M8.5,5.5v-2h3v2H8.5z M7.5,14.5v2h-3v-2H7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,18h6v-5h-2.25V9.25h-4V7H13V2H7v5h2.25v2.25h-4V13H3v5h6v-5H6.75v-2.25h6.5V13H11V18z M15.5,14.5v2h-3v-2H15.5z M8.5,5.5v-2h3v2H8.5z M7.5,14.5v2h-3v-2H7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"screen_lock_landscape\": {\n    \"name\": \"screen_lock_landscape\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.2 10c0-.66-.54-1.2-1.2-1.2s-1.2.54-1.2 1.2v1h2.4v-1zM5 17h14V7H5v10zm4-5c0-.55.45-1 1-1v-1c0-1.1.89-2 2-2 1.1 0 2 .89 2 2v1c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1c0-1.11-.9-2-2-2-1.11 0-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_charging_60\": {\n    \"name\": \"battery_charging_60\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z\\\" fill-opacity=\\\".3\\\"></path><path d=\\\"M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_search_desktop\": {\n    \"name\": \"screen_search_desktop\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M20,5H4v11h16V5z M15.47,15.03l-2.09-2.09c-1.35,0.87-3.17,0.71-4.36-0.47c-1.37-1.37-1.37-3.58,0-4.95 s3.58-1.37,4.95,0c1.18,1.18,1.34,3,0.47,4.36l2.09,2.09L15.47,15.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,18h16c1.1,0,1.99-0.9,1.99-2L22,5c0-1.1-0.9-2-2-2H4C2.9,3,2,3.9,2,5v11C2,17.1,2.9,18,4,18z M4,5h16v11H4V5z\\\"></path><rect height=\\\"2\\\" width=\\\"22\\\" x=\\\"1\\\" y=\\\"19\\\"></rect><path d=\\\"M13.97,7.53c-1.37-1.37-3.58-1.37-4.95,0s-1.37,3.58,0,4.95c1.18,1.18,3,1.34,4.36,0.47l2.09,2.09l1.06-1.06l-2.09-2.09 C15.31,10.53,15.16,8.71,13.97,7.53z M12.91,11.41c-0.78,0.78-2.05,0.78-2.83,0c-0.78-0.78-0.78-2.05,0-2.83s2.05-0.78,2.83,0 C13.69,9.37,13.69,10.63,12.91,11.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"signal_wifi_4_bar_lock\": {\n    \"name\": \"signal_wifi_4_bar_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"nearby_error\": {\n    \"name\": \"nearby_error\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,7.57l4.42,4.42L12,16.41l-4.42-4.42L12,7.57z M12,19.19l-7.2-7.2l7.2-7.2l6,6V7.16l-4.58-4.58 c-0.78-0.78-2.05-0.78-2.83,0l-8.01,8c-0.78,0.78-0.78,2.05,0,2.83l8.01,8c0.78,0.78,2.05,0.78,2.83,0L18,16.82v-3.63L12,19.19z M20,20h2v2h-2V20z M22,10h-2v8h2V10\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_check\": {\n    \"name\": \"price_check\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11,13V9c0-0.55-0.45-1-1-1H6V6h5V4H8.5V3h-2v1H5C4.45,4,4,4.45,4,5v4c0,0.55,0.45,1,1,1h4v2H4v2h2.5v1h2v-1H10 C10.55,14,11,13.55,11,13z\\\"></path><polygon points=\\\"19.59,12.52 13.93,18.17 11.1,15.34 9.69,16.76 13.93,21 21,13.93\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"signal_cellular_connected_no_internet_4_bar\": {\n    \"name\": \"signal_cellular_connected_no_internet_4_bar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M20,18h2v-8h-2V18z M20,22h2v-2h-2V22z M2,22h16V8h4V2L2,22z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><polygon points=\\\"2,18 15,18 15,7.5 18,7.5 18,2\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"6.05\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering_off\": {\n    \"name\": \"wifi_tethering_off\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.69,2.69C2.78,8.6,2,10.71,2,13c0,2.76,1.12,5.26,2.93,7.07l1.42-1.42C4.9,17.21,4,15.21,4,13 c0-1.75,0.57-3.35,1.51-4.66l1.43,1.43C6.35,10.7,6,11.81,6,13c0,1.66,0.68,3.15,1.76,4.24l1.42-1.42C8.45,15.1,8,14.11,8,13 c0-0.63,0.15-1.23,0.41-1.76l1.61,1.61c0,0.05-0.02,0.1-0.02,0.15c0,0.55,0.23,1.05,0.59,1.41C10.95,14.77,11.45,15,12,15 c0.05,0,0.1-0.01,0.16-0.02l7.62,7.62l1.41-1.41L2.81,2.81z M17.7,14.87C17.89,14.28,18,13.65,18,13c0-3.31-2.69-6-6-6 c-0.65,0-1.28,0.1-1.87,0.3l1.71,1.71C11.89,9,11.95,9,12,9c2.21,0,4,1.79,4,4c0,0.05,0,0.11-0.01,0.16L17.7,14.87z M12,5 c4.42,0,8,3.58,8,8c0,1.22-0.27,2.37-0.77,3.4l1.49,1.49C21.53,16.45,22,14.78,22,13c0-5.52-4.48-10-10-10 c-1.78,0-3.44,0.46-4.89,1.28l1.48,1.48C9.63,5.27,10.78,5,12,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"medication\": {\n    \"name\": \"medication\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,19h10V8H7V19z M8,12h2.5V9.5h3V12H16v3h-2.5v2.5h-3V15H8V12z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"3\\\"></rect><path d=\\\"M17,6H7C5.9,6,5,6.9,5,8v11c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V8C19,6.9,18.1,6,17,6z M17,19H7V8h10V19z\\\"></path><polygon points=\\\"10.5,17.5 13.5,17.5 13.5,15 16,15 16,12 13.5,12 13.5,9.5 10.5,9.5 10.5,12 8,12 8,15 10.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"wifi_lock\": {\n    \"name\": \"wifi_lock\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21.98,11L24,8.98C20.93,5.9,16.69,4,12,4C7.31,4,3.07,5.9,0,8.98l6.35,6.36L12,21l3.05-3.05V15 c0-0.45,0.09-0.88,0.23-1.29c0.54-1.57,2.01-2.71,3.77-2.71H21.98z\\\"></path><path d=\\\"M22,16v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C23,16.45,22.55,16,22,16z M21,16h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M17.5,13H17v-1c0-0.82-0.67-1.5-1.5-1.5S14,11.18,14,12v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h4 c0.28,0,0.5-0.22,0.5-0.5v-3C18,13.22,17.78,13,17.5,13z M14.75,12c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1h-1.5 V12z M12,15l-2,2l-4.24-4.24L0,7.01C2.6,4.53,6.12,3,10,3c3.88,0,7.4,1.53,10,4.01L17.51,9.5H15c-1.66,0-3,1.34-3,3V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radar\": {\n    \"name\": \"radar\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19.74,18.33C21.15,16.6,22,14.4,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12s4.48,10,10,10c2.4,0,4.6-0.85,6.33-2.26 c0.27-0.22,0.53-0.46,0.78-0.71c0.03-0.03,0.05-0.06,0.07-0.08C19.38,18.75,19.57,18.54,19.74,18.33z M12,20c-4.41,0-8-3.59-8-8 s3.59-8,8-8s8,3.59,8,8c0,1.85-0.63,3.54-1.69,4.9l-1.43-1.43c0.69-0.98,1.1-2.17,1.1-3.46c0-3.31-2.69-6-6-6s-6,2.69-6,6 s2.69,6,6,6c1.3,0,2.51-0.42,3.49-1.13l1.42,1.42C15.54,19.37,13.85,20,12,20z M13.92,12.51c0.17-0.66,0.02-1.38-0.49-1.9 l-0.02-0.02c-0.77-0.77-2-0.78-2.78-0.04c-0.01,0.01-0.03,0.02-0.05,0.04c-0.78,0.78-0.78,2.05,0,2.83l0.02,0.02 c0.52,0.51,1.25,0.67,1.91,0.49l1.51,1.51c-0.6,0.36-1.29,0.58-2.04,0.58c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 c0,0.73-0.21,1.41-0.56,2L13.92,12.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"network_wifi\": {\n    \"name\": \"network_wifi\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4C7.31,4,3.07,5.9,0,8.98L12,21L24,8.98C20.93,5.9,16.69,4,12,4z M12,8c-2.86,0-5.5,0.94-7.65,2.51L2.92,9.07 C5.51,7.08,8.67,6,12,6s6.49,1.08,9.08,3.07l-1.43,1.43C17.5,8.94,14.86,8,12,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cameraswitch\": {\n    \"name\": \"cameraswitch\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M13.17,8h-2.34l-1,1H8v6h8V9h-1.83L13.17,8z M12,14c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C14,13.1,13.1,14,12,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,7h-1l-1-1h-4L9,7H8C6.9,7,6,7.9,6,9v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V9C18,7.9,17.1,7,16,7z M16,15H8V9h1.83l1-1 h2.34l1,1H16V15z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><path d=\\\"M8.57,0.52L13.05,5V2.05C17.77,2.52,21.53,6.28,22,11c0,0,2,0,2,0C23.34,3.03,15.49-1.58,8.57,0.52z\\\"></path><path d=\\\"M10.95,21.96C6.23,21.49,2.47,17.73,2,13.01c0,0-2,0-2,0c0.66,7.97,8.51,12.58,15.43,10.48l-4.48-4.48V21.96z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"aod\": {\n    \"name\": \"aod\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M8,10h8v1.5H8V10z M9,13h6v1.5H9V13z\\\"></path></g><path d=\\\"M7,21h10v-1H7V21z M7,3v1h10V3H7z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gpp_good\": {\n    \"name\": \"gpp_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M6,6.31v4.78c0,4,2.55,7.7,6,8.83c3.45-1.13,6-4.82,6-8.83V6.31l-6-2.12 L6,6.31z M16.6,9.88l-5.66,5.66L7.4,12l1.41-1.41l2.12,2.12l4.24-4.24L16.6,9.88z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83V6.31l6-2.12l6,2.12V11.09z M8.82,10.59L7.4,12l3.54,3.54l5.66-5.66l-1.41-1.41l-4.24,4.24L8.82,10.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"60fps\": {\n    \"name\": \"60fps\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M19,8v8h-4V8H19 M19,5h-4c-1.66,0-3,1.34-3,3v8c0,1.66,1.34,3,3,3h4c1.66,0,3-1.34,3-3V8C22,6.34,20.66,5,19,5z M10,8V5H5 C3.34,5,2,6.34,2,8v8c0,1.66,1.34,3,3,3h3c1.66,0,3-1.34,3-3v-3c0-1.66-1.34-3-3-3H5V8H10z M8,13v3H5v-3H8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_goldenratio\": {\n    \"name\": \"grid_goldenratio\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M22,11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2H22z M13,13h-2v-2h2V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_security_update_good\": {\n    \"name\": \"system_security_update_good\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7,21h10v-1H7V21z M7,3v1h10V3H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1.01,17,1.01z M17,21H7v-1h10V21z M17,18H7V6h10V18z M17,4H7V3h10V4z M16,10.05l-1.41-1.41l-3.54,3.54l-1.41-1.41l-1.41,1.41L11.05,15L16,10.05z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"remember_me\": {\n    \"name\": \"remember_me\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><path d=\\\"M7,17.52V18h10v-0.48C15.53,16.53,13.78,16,12,16S8.47,16.53,7,17.52z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><path d=\\\"M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1z M17,21H7v-1h10V21z M17,18H7v-0.48 C8.47,16.53,10.22,16,12,16s3.53,0.53,5,1.52V18z M17,15.21C15.5,14.44,13.8,14,12,14s-3.5,0.44-5,1.21V6h10V15.21z M17,4H7V3h10 V4z\\\"></path><path d=\\\"M12,13c1.66,0,3-1.34,3-3s-1.34-3-3-3s-3,1.34-3,3S10.34,13,12,13z M12,9c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,9,12,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_tethering\": {\n    \"name\": \"wifi_tethering\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z\\\"></path>\"\n      }\n    }\n  },\n  \"battery_alert\": {\n    \"name\": \"battery_alert\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z\\\"></path>\"\n      }\n    }\n  },\n  \"usb\": {\n    \"name\": \"usb\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"access_time_filled\": {\n    \"name\": \"access_time_filled\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M11.99,2C6.47,2,2,6.48,2,12s4.47,10,9.99,10C17.52,22,22,17.52,22,12S17.52,2,11.99,2z M15.29,16.71L11,12.41V7h2v4.59 l3.71,3.71L15.29,16.71z\\\"></path></g>\"\n      }\n    }\n  },\n  \"air\": {\n    \"name\": \"air\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3h2c0,0.55,0.45,1,1,1s1-0.45,1-1s-0.45-1-1-1H2v-2h9.5 C13.15,14,14.5,15.35,14.5,17z M19,6.5C19,4.57,17.43,3,15.5,3S12,4.57,12,6.5h2C14,5.67,14.67,5,15.5,5S17,5.67,17,6.5 S16.33,8,15.5,8H2v2h13.5C17.43,10,19,8.43,19,6.5z M18.5,11H2v2h16.5c0.83,0,1.5,0.67,1.5,1.5S19.33,16,18.5,16v2 c1.93,0,3.5-1.57,3.5-3.5S20.43,11,18.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"price_change\": {\n    \"name\": \"price_change\",\n    \"keywords\": [\n      \"device\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M4,18h16V6H4V18z M16,8l2,2h-4L16,8z M18,14.25l-2,2l-2-2H18z M6,14h4v-1H7c-0.55,0-1-0.45-1-1V9 c0-0.55,0.45-1,1-1h1V7h2v1h2v2H8v1h3c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1H8v-1H6V14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M20,18H4V6h16V18z\\\"></path><path d=\\\"M8,17h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1H8v-1h4V8h-2V7H8v1H7C6.45,8,6,8.45,6,9v3c0,0.55,0.45,1,1,1h3v1H6v2 h2V17z\\\"></path><polygon points=\\\"16,8 14,10 18,10\\\"></polygon><polygon points=\\\"18,14.25 14,14.25 16,16.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"cloud_done\": {\n    \"name\": \"cloud_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18l4.6-4.6 1.41 1.41L10 17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-9-3.82l-2.09-2.09L6.5 13.5 10 17l6.01-6.01-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"difference\": {\n    \"name\": \"difference\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.17,3H8v14h11V7.83L14.17,3z M16.5,15h-6v-2h6V15z M16.5,9h-2v2h-2V9h-2V7h2V5h2v2h2V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,23H4c-1.1,0-2-0.9-2-2V7h2v14h14V23z M14.5,7V5h-2v2h-2v2h2v2h2V9h2V7H14.5z M16.5,13h-6v2h6V13z M15,1H8 C6.9,1,6.01,1.9,6.01,3L6,17c0,1.1,0.89,2,1.99,2H19c1.1,0,2-0.9,2-2V7L15,1z M19,17H8V3h6.17L19,7.83V17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3.5,17.5H13V19H3.5C2.67,19,2,18.33,2,17.5V6h1.5V17.5z M17,5v9.5c0,0.83-0.67,1.5-1.5,1.5h-9C5.67,16,5,15.33,5,14.5v-12 C5,1.67,5.67,1,6.5,1H13L17,5z M15.5,5.62L12.38,2.5H6.5v12h9V5.62z M11.75,6.5V5h-1.5v1.5h-1.5V8h1.5v1.5h1.5V8h1.5V6.5H11.75z M13.25,11h-4.5v1.5h4.5V11z\\\"></path><path d=\\\"M12.38,2.5H6.5v12h9V5.62L12.38,2.5z M13.25,12.5h-4.5V11h4.5V12.5z M13.25,8h-1.5v1.5h-1.5V8h-1.5V6.5h1.5 V5h1.5v1.5h1.5V8z\\\" opacity=\\\".3\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_queue\": {\n    \"name\": \"cloud_queue\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12h-1.5v-.5C17.5 8.46 15.04 6 12 6c-2.52 0-4.63 1.69-5.29 4H6c-2.21 0-4 1.79-4 4s1.79 4 4 4h13c1.66 0 3-1.34 3-3s-1.34-3-3-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"approval\": {\n    \"name\": \"approval\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"16\\\"></rect><path d=\\\"M12,4c-1.66,0-3,1.34-3,3l3,4l3-4C15,5.34,13.66,4,12,4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C9.24,2,7,4.24,7,7l5,7l5-7C17,4.24,14.76,2,12,2z M12,11L9,7c0-1.66,1.34-3,3-3s3,1.34,3,3L12,11z\\\"></path><path d=\\\"M18,14h-6H6c-1.1,0-2,0.9-2,2v6h16v-6C20,14.9,19.1,14,18,14z M18,18H6v-2h12V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_for_offline\": {\n    \"name\": \"download_for_offline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,10V6h2v4h3l-4,4l-4-4H11 z M17,17H7v-2h10V17z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"16,10 13,10 13,6 11,6 11,10 8,10 12,14\\\"></polygon><rect height=\\\"2\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"15\\\"></rect><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10s10-4.49,10-10S17.51,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_snippet\": {\n    \"name\": \"text_snippet\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.17,5L19,9.83V19H5V5L14.17,5L14.17,5 M14.17,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9.83 c0-0.53-0.21-1.04-0.59-1.41l-4.83-4.83C15.21,3.21,14.7,3,14.17,3L14.17,3z M7,15h10v2H7V15z M7,11h10v2H7V11z M7,7h7v2H7V7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud\": {\n    \"name\": \"cloud\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_delete\": {\n    \"name\": \"folder_delete\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.5,11.5h2v4h-2V11.5z M20,8v10H4V6h5.17l2,2H20z M19,10h-2.5V9h-2v1H12v1.5h1v4c0,0.83,0.67,1.5,1.5,1.5 h2c0.83,0,1.5-0.67,1.5-1.5v-4h1V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,10V9h-2v1H12v1.5h1v4c0,0.83,0.67,1.5,1.5,1.5h2c0.83,0,1.5-0.67,1.5-1.5v-4h1V10H16.5z M16.5,15.5h-2v-4h2V15.5z M20,6h-8l-2-2H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V8C22,6.89,21.11,6,20,6z M20,18H4V6h5.17 l2,2H20V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.38,7.5l-2-2H3.5v9h13v-7H9.38z M15.5,10H15v2.5c0,0.55-0.45,1-1,1h-1.5c-0.55,0-1-0.45-1-1V10H11V9h1.5 V8.5H14V9h1.5V10z M14,12.5h-1.5V10H14V12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.38,5.5l2,2h7.12v7h-13v-9H7.38z M3.5,4C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7 C18,6.67,17.33,6,16.5,6H10L8,4H3.5z M14,9V8.5h-1.5V9H11v1h0.5v2.5c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V10h0.5V9H14z M14,12.5 h-1.5V10H14V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"snippet_folder\": {\n    \"name\": \"snippet_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.17,6H4v12l16,0V8h-8.83L9.17,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M17.5,12.12v3.38l-3,0v-5h1.38L17.5,12.12z M16.5,9H13v8l6,0v-5.5L16.5,9L16.5,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"topic\": {\n    \"name\": \"topic\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16.77c0.68,0,1.23-0.56,1.23-1.23V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"cloud_download\": {\n    \"name\": \"cloud_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zM12 17l-4-4h2.55v-3h2.91v3H16l-4 4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zm-5.55-8h-2.9v3H8l4 4 4-4h-2.55z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_sync\": {\n    \"name\": \"cloud_sync\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M21.51,18L21.51,18L15,18c-0.55,0-1-0.45-1-1s0.45-1,1-1h1.25v-0.25c0-0.97,0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75V17 c0,0,1.75,0,1.76,0c0.28,0,0.5,0.22,0.5,0.5C22,17.77,21.78,18,21.51,18z\\\"></path></g><g><path d=\\\"M21.5,14.98c-0.02,0-0.03,0-0.05,0.01C21.2,13.3,19.76,12,18,12c-1.4,0-2.6,0.83-3.16,2.02C13.26,14.1,12,15.4,12,17 c0,1.66,1.34,3,3,3l6.5-0.02c1.38,0,2.5-1.12,2.5-2.5S22.88,14.98,21.5,14.98z M21.51,18L21.51,18L15,18c-0.55,0-1-0.45-1-1 s0.45-1,1-1h1.25v-0.25c0-0.97,0.78-1.75,1.75-1.75s1.75,0.78,1.75,1.75V17c0,0,1.75,0,1.76,0c0.28,0,0.5,0.22,0.5,0.5 C22,17.77,21.78,18,21.51,18z M10,4.26v2.09C7.67,7.18,6,9.39,6,12c0,1.77,0.78,3.34,2,4.44V14h2v6H4v-2h2.73 C5.06,16.54,4,14.4,4,12C4,8.27,6.55,5.15,10,4.26z M20,6h-2.73c1.43,1.26,2.41,3.01,2.66,5l-2.02,0 C17.68,9.64,16.98,8.45,16,7.56V10h-2V4h6V6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M18.12,14.5h-4.88c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.25v-0.4c0-0.61,0.49-1.1,1.1-1.1 c0.61,0,1.1,0.49,1.1,1.1v1.15h1.42c0.21,0,0.38,0.17,0.38,0.38S18.33,14.5,18.12,14.5z\\\"></path></g><g><path d=\\\"M18.18,12.25C18.01,10.98,16.92,10,15.6,10c-1.06,0-1.97,0.64-2.35,1.5c-1.24,0-2.25,1.01-2.25,2.25 c0,1.24,1.01,2.25,2.25,2.25h4.88c1.04,0,1.88-0.84,1.88-1.88C20,13.11,19.19,12.28,18.18,12.25z M18.12,14.5h-4.88 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75h1.25v-0.4c0-0.61,0.49-1.1,1.1-1.1c0.61,0,1.1,0.49,1.1,1.1v1.15h1.42 c0.21,0,0.38,0.17,0.38,0.38S18.33,14.5,18.12,14.5z M8.5,4.2v1.58c-1.74,0.62-3,2.27-3,4.22c0,1.32,0.59,2.5,1.5,3.32V12h1.5v4 h-4v-1.5h1.55C4.8,13.4,4,11.8,4,10C4,7.21,5.91,4.86,8.5,4.2z M15.92,9l-1.53,0C14.17,8.09,13.68,7.29,13,6.68V8h-1.5V4h4v1.5 h-1.55C14.96,6.39,15.68,7.61,15.92,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cloud_circle\": {\n    \"name\": \"cloud_circle\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4.08 12H8.5C6.57 16 5 14.43 5 12.5c0-1.8 1.36-3.29 3.12-3.48.73-1.4 2.19-2.36 3.88-2.36 2.12 0 3.89 1.51 4.29 3.52 1.52.1 2.71 1.35 2.71 2.89 0 1.62-1.31 2.93-2.92 2.93z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.29-9.81c-.4-2.01-2.16-3.52-4.29-3.52-1.69 0-3.15.96-3.88 2.36C6.36 9.21 5 10.7 5 12.5 5 14.43 6.57 16 8.5 16h7.58c1.61 0 2.92-1.31 2.92-2.92 0-1.54-1.2-2.79-2.71-2.89zM16 14H8.5c-.83 0-1.5-.67-1.5-1.5S7.67 11 8.5 11h.9l.49-1.05c.41-.79 1.22-1.28 2.11-1.28 1.13 0 2.11.8 2.33 1.91l.28 1.42H16c.55 0 1 .45 1 1s-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_file_move_rtl\": {\n    \"name\": \"drive_file_move_rtl\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.17,8l-2-2H4v12h16V8H11.17z M16,14h-4v3l-4-4l4-4v3h4V14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l2,2H20V18z M12,17l-4-4l4-4v3h4v2h-4V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.38,7.5l-2-2H3.5v9h13v-7H9.38z M13,11.75h-3V14l-3-3l3-3v2.25h3V11.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,10.25h3v1.5h-3V14l-3-3l3-3V10.25z M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13 c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M16.5,14.5h-13v-9h3.88l2,2h7.12V14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_upload\": {\n    \"name\": \"cloud_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_open\": {\n    \"name\": \"folder_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8h16v10H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z\\\"></path>\"\n      }\n    }\n  },\n  \"format_overline\": {\n    \"name\": \"format_overline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M19,3v2H5V3H19z M12,7c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C19,10.13,15.87,7,12,7z M12,18.5 c-2.49,0-4.5-2.01-4.5-4.5S9.51,9.5,12,9.5s4.5,2.01,4.5,4.5S14.49,18.5,12,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15,3v1.5H5V3H15z M15.5,11.5c0,3.04-2.46,5.5-5.5,5.5s-5.5-2.46-5.5-5.5C4.5,8.46,6.96,6,10,6S15.5,8.46,15.5,11.5z M13.5,11.5C13.5,9.57,11.93,8,10,8s-3.5,1.57-3.5,3.5S8.07,15,10,15S13.5,13.43,13.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attach_email\": {\n    \"name\": \"attach_email\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6l8,5l8-5v3h2V4c0-1.1-0.9-2-2-2H3C1.9,2,1.01,2.9,1.01,4L1,16c0,1.1,0.9,2,2,2h10v-2H3V6z M19,4l-8,5L3,4H19z\\\"></path><path d=\\\"M21,14v4c0,1.1-0.9,2-2,2s-2-0.9-2-2v-4.5c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V18h2v-4.5c0-1.38-1.12-2.5-2.5-2.5 S15,12.12,15,13.5V18c0,2.21,1.79,4,4,4s4-1.79,4-4v-4H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3,5.18l6,3.75l6-3.75V8h1V4c0-0.55-0.45-1-1-1H3C2.45,3,2,3.45,2,4v10c0,0.55,0.45,1,1,1h9v-1H3V5.18z M15,4L9,7.75L3,4 H15z\\\"></path><path d=\\\"M17,11v3.5c0,0.83-0.67,1.5-1.5,1.5S14,15.33,14,14.5v-4c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5V14h1v-3.5 C16,9.67,15.33,9,14.5,9S13,9.67,13,10.5v4c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V11H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"folder_off\": {\n    \"name\": \"folder_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"15.17,18 4,6.83 4,18\\\"></polygon><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"11.17,8 20,17.17 20,8\\\"></polygon><g><path d=\\\"M0.69,3.51l1.56,1.56C2.1,5.35,2.01,5.66,2.01,6L2,18c0,1.1,0.9,2,2,2h13.17l3.31,3.31l1.41-1.41L2.1,2.1L0.69,3.51z M15.17,18H4V6.83L15.17,18z\\\"></path><path d=\\\"M20,6h-8l-2-2H7.17l4,4H20v9.17l1.76,1.76C21.91,18.65,22,18.34,22,18V8C22,6.9,21.1,6,20,6z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"3.5,14.5 12.38,14.5 3.5,5.62\\\"></polygon><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"9.62,7.5 16.5,14.38 16.5,7.5\\\"></polygon><path d=\\\"M16.5,7.5v6.88l1.12,1.12C17.85,15.23,18,14.88,18,14.5v-7C18,6.67,17.33,6,16.5,6H10L8,4H6.12l3.5,3.5H16.5z\\\"></path><path d=\\\"M2.22,2.22L1.16,3.28l1.22,1.22C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84l1.06-1.06L2.22,2.22z M3.5,14.5V5.62l8.88,8.88H3.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grid_view\": {\n    \"name\": \"grid_view\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><path d=\\\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\\\"></path><path d=\\\"M3,11h8V3H3V11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M13,21h8v-8h-8V21z M15,15h4v4h-4V15z\\\"></path><path d=\\\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"downloading\": {\n    \"name\": \"downloading\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.32,4.26C16.84,3.05,15.01,2.25,13,2.05v2.02c1.46,0.18,2.79,0.76,3.9,1.62L18.32,4.26z M19.93,11h2.02 c-0.2-2.01-1-3.84-2.21-5.32L18.31,7.1C19.17,8.21,19.75,9.54,19.93,11z M18.31,16.9l1.43,1.43c1.21-1.48,2.01-3.32,2.21-5.32 h-2.02C19.75,14.46,19.17,15.79,18.31,16.9z M13,19.93v2.02c2.01-0.2,3.84-1,5.32-2.21l-1.43-1.43 C15.79,19.17,14.46,19.75,13,19.93z M13,12V7h-2v5H7l5,5l5-5H13z M11,19.93v2.02c-5.05-0.5-9-4.76-9-9.95s3.95-9.45,9-9.95v2.02 C7.05,4.56,4,7.92,4,12S7.05,19.44,11,19.93z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upload_file\": {\n    \"name\": \"upload_file\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,4H6v16h12V9h-5V4z M16,15h-3v4h-2v-4H8l4.01-4L16,15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,2H6C4.9,2,4.01,2.9,4.01,4L4,20c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z\\\"></path><polygon points=\\\"8,15 11,15 11,19 13,19 13,15 16,15 12.01,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"folder_copy\": {\n    \"name\": \"folder_copy\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"11.17,4 7,4 7,15 21,15 21,6 13.17,6\\\"></polygon><path d=\\\"M21,4h-7l-2-2H7C5.9,2,5.01,2.9,5.01,4L5,15c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C23,4.9,22.1,4,21,4z M21,15H7V4h4.17 l2,2H21V15z\\\"></path><path d=\\\"M3,6H1v13c0,1.1,0.9,2,2,2h17v-2H3V6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"8.38,3.5 5.5,3.5 5.5,12.5 16.5,12.5 16.5,5.5 10.38,5.5\\\"></polygon><path d=\\\"M2.5,5H1v10.5C1,16.33,1.67,17,2.5,17h13.18v-1.5H2.5V5z\\\"></path><path d=\\\"M16.5,4H11L9,2H5.5C4.67,2,4,2.67,4,3.5v9C4,13.33,4.67,14,5.5,14h11c0.83,0,1.5-0.67,1.5-1.5v-7C18,4.67,17.33,4,16.5,4z M16.5,12.5h-11v-9h2.88l2,2h6.12V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"download_done\": {\n    \"name\": \"download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18h14v2H5v-2zm4.6-2.7L5 10.7l2-1.9 2.6 2.6L17 4l2 2-9.4 9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"folder\": {\n    \"name\": \"folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.17 8l-.58-.59L9.17 6H4v12h16V8h-8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10z\\\"></path>\"\n      }\n    }\n  },\n  \"file_upload\": {\n    \"name\": \"file_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"9.83,8 11,8 11,14 13,14 13,8 14.17,8 12,5.83\\\"></polygon><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"18\\\"></rect><path d=\\\"M5,10h4v6h6v-6h4l-7-7L5,10z M13,8v6h-2V8H9.83L12,5.83L14.17,8H13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"newspaper\": {\n    \"name\": \"newspaper\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22,3l-1.67,1.67L18.67,3L17,4.67L15.33,3l-1.66,1.67L12,3l-1.67,1.67L8.67,3L7,4.67L5.33,3L3.67,4.67L2,3v16 c0,1.1,0.9,2,2,2l16,0c1.1,0,2-0.9,2-2V3z M11,19H4v-6h7V19z M20,19h-7v-2h7V19z M20,15h-7v-2h7V15z M20,11H4V8h16V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.67,4.33L15.33,3L14,4.33L12.67,3l-1.33,1.33L10,3L8.67,4.33L7.33,3L6,4.33L4.67,3L3.33,4.33L2,3v12.5 C2,16.33,2.67,17,3.5,17h13c0.83,0,1.5-0.67,1.5-1.5V3L16.67,4.33z M16.5,9.5h-13v-3h13V9.5z M10.75,11h5.75v1.5h-5.75V11z M3.5,11 h5.75v4.5H3.5V11z M10.75,15.5V14h5.75v1.5H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"drive_file_rename_outline\": {\n    \"name\": \"drive_file_rename_outline\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12.06,10.02 5,17.08 5,18 5.92,18 12.98,10.94\\\"></polygon><polygon points=\\\"15,16 11,20 21,20 21,16\\\"></polygon><path d=\\\"M12.06,7.19L3,16.25V20h3.75l9.06-9.06L12.06,7.19z M5.92,18H5v-0.92l7.06-7.06l0.92,0.92L5.92,18z\\\"></path><path d=\\\"M18.71,8.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C16.17,4.09,15.92,4,15.66,4c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L18.71,8.04z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"drive_file_move\": {\n    \"name\": \"drive_file_move\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V6h5.17l1.41,1.41 L11.17,8H20V18z\\\"></path><polygon points=\\\"8,14 12,14 12,17 16,13 12,9 12,12 8,12\\\"></polygon><path d=\\\"M10.59,7.41L9.17,6H4v12h16V8h-8.83L10.59,7.41z M12,9l4,4l-4,4v-3H8v-2h4V9z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"file_download\": {\n    \"name\": \"file_download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"14.17,11 13,11 13,5 11,5 11,11 9.83,11 12,13.17\\\"></polygon><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"18\\\"></rect><path d=\\\"M19,9h-4V3H9v6H5l7,7L19,9z M11,11V5h2v6h1.17L12,13.17L9.83,11H11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"folder_zip\": {\n    \"name\": \"folder_zip\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16,16h2v-2h-2v-2h2v-2h-2V8h4v10h-4V16z M16,16h-2v2H4V6h5.17l2,2H14v2h2v2h-2v2h2V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M16,16h2v-2h-2v-2 h2v-2h-2V8h4v10h-4V16z M16,16h-2v2H4V6h5.17l2,2H14v2h2v2h-2v2h2V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon opacity=\\\".3\\\" points=\\\"3.5,14.5 3.5,5.5 7.38,5.5 9.38,7.5 13.5,7.5 13.5,9 12,9 12,10.5 13.5,10.5 13.5,12 12,12 12,13.5 13.5,13.5 13.5,12 15,12 15,10.5 13.5,10.5 13.5,9 15,9 15,7.5 16.5,7.5 16.5,14.5\\\"></polygon><path d=\\\"M16.5,6H10L8,4H3.5C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-7C18,6.67,17.33,6,16.5,6z M3.5,14.5v-9h3.88l2,2h4.12V9H12v1.5h1.5V12H12v1.5h1.5V12H15v-1.5h-1.5V9H15V7.5h1.5v7H3.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"download\": {\n    \"name\": \"download\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 9V5h-2v6H9.83L12 13.17 14.17 11H13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 9V3H9v6H5l7 7 7-7h-4zm-3 4.17L9.83 11H11V5h2v6h1.17L12 13.17zM5 18h14v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"rule_folder\": {\n    \"name\": \"rule_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.17,8l-2-2H4v12l16,0V8H11.17z M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M19,14.59L17.59,16L16,14.41L14.41,16L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13L19,14.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.83,16L5,13.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L7.83,16z M17.41,13L19,14.59L17.59,16L16,14.41L14.41,16 L13,14.59L14.59,13L13,11.41L14.41,10L16,11.59L17.59,10L19,11.41L17.41,13z M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18 c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17l2,2H20V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upload\": {\n    \"name\": \"upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.83 8H11v6h2V8h1.17L12 5.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 3l-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2V8H9.83L12 5.83 14.17 8H13zM5 18h14v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"folder_shared\": {\n    \"name\": \"folder_shared\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.17 8l-.59-.59L9.17 6H4v12h16V8h-8.83zM19 16v1h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm-4-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V6h5.17l2 2H20v10zm-5-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 3v1h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2z\\\"></path>\"\n      }\n    }\n  },\n  \"cloud_off\": {\n    \"name\": \"cloud_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 15c0-1.66-1.34-3-3-3h-1.5v-.5C17.5 8.46 15.04 6 12 6c-.77 0-1.49.17-2.16.46L20.79 17.4c.73-.55 1.21-1.41 1.21-2.4zM2 14c0 2.21 1.79 4 4 4h9.73l-8-8H6c-2.21 0-4 1.79-4 4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3 0 .99-.48 1.85-1.21 2.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81 0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.77 2.77h-.42C2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z\\\"></path>\"\n      }\n    }\n  },\n  \"drive_folder_upload\": {\n    \"name\": \"drive_folder_upload\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.17,6H4v12l16,0V8h-8.83L9.17,6z M16,13h-3v4h-2v-4H8l4.01-4L16,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6 h5.17l2,2H20V18z\\\"></path><polygon points=\\\"11,13 11,17 13,17 13,13 16,13 12.01,9 8,13\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"workspaces\": {\n    \"name\": \"workspaces\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"6\\\" cy=\\\"17\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"7\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><circle cx=\\\"18\\\" cy=\\\"17\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M18,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S20.2,13,18,13z M18,19c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C20,18.1,19.1,19,18,19z\\\"></path><path d=\\\"M6,13c-2.2,0-4,1.8-4,4s1.8,4,4,4s4-1.8,4-4S8.2,13,6,13z M6,19c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C8,18.1,7.1,19,6,19z\\\"></path><path d=\\\"M16,7c0-2.2-1.8-4-4-4S8,4.8,8,7s1.8,4,4,4S16,9.2,16,7z M12,9c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C14,8.1,13.1,9,12,9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5\\\" cy=\\\"14\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"14\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M5,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C8,12.35,6.65,11,5,11z M5,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S5.83,15.5,5,15.5z\\\"></path><path d=\\\"M13,6c0-1.65-1.35-3-3-3S7,4.35,7,6c0,1.65,1.35,3,3,3S13,7.65,13,6z M10,7.5C9.17,7.5,8.5,6.83,8.5,6S9.17,4.5,10,4.5 s1.5,0.67,1.5,1.5S10.83,7.5,10,7.5z\\\"></path><path d=\\\"M15,11c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C18,12.35,16.65,11,15,11z M15,15.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S15.83,15.5,15,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"create_new_folder\": {\n    \"name\": \"create_new_folder\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.17 8l-.59-.59L9.17 6H4v12h16V8h-8.83zM14 10h2v2h2v2h-2v2h-2v-2h-2v-2h2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm0 12H4V6h5.17l1.41 1.41.59.59H20v10zm-8-4h2v2h2v-2h2v-2h-2v-2h-2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_off\": {\n    \"name\": \"file_download_off\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"13,5 11,5 11,8.17 13,10.17\\\"></polygon><path d=\\\"M11,8.17l-2-2V3h6v6h4l-3.59,3.59L13,10.17V5h-2V8.17z M21.19,21.19L2.81,2.81L1.39,4.22L6.17,9H5l7,7l0.59-0.59L15.17,18H5 v2h12.17l2.61,2.61L21.19,21.19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"9.5,4.5 9.5,7.38 10.5,8.38 10.5,4.5\\\"></polygon><path d=\\\"M9.5,7.38L8,5.88V3h4v5h3l-2.44,2.44L10.5,8.38V4.5h-1V7.38z M17.07,17.07L2.93,2.93L1.87,3.99L5.88,8H5l5,5l0.44-0.44 l1.94,1.94H5V16h8.88l2.13,2.13L17.07,17.07z\\\"></path>\"\n      }\n    }\n  },\n  \"file_open\": {\n    \"name\": \"file_open\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon opacity=\\\".3\\\" points=\\\"15,14 18,14 18,9 13,9 13,4 6,4 6,20 15,20\\\"></polygon><path d=\\\"M15,22H6c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2h8l6,6v6h-2V9h-5V4H6v16h9V22z M19,21.66l0-2.24l2.95,2.95l1.41-1.41L20.41,18 h2.24v-2H17v5.66H19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon opacity=\\\".3\\\" points=\\\"12.5,16.5 5.5,16.5 5.5,3.5 11,3.5 11,7 14.5,7 14.5,12 12.5,12\\\"></polygon><path d=\\\"M14,17.74V13.5h4.24V15h-1.68l2.21,2.21l-1.06,1.06l-2.21-2.21v1.68H14z M12.5,16.5h-7v-13H11V7h3.5v5H16V6l-4-4H5.5 C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h7V16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"attachment\": {\n    \"name\": \"attachment\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5c1.38 0 2.5 1.12 2.5 2.5S20.88 13 19.5 13H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9c-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z\\\"></path>\"\n      }\n    }\n  },\n  \"file_download_done\": {\n    \"name\": \"file_download_done\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"20.13,5.41 18.72,4 9.53,13.19 5.28,8.95 3.87,10.36 9.53,16.02\\\"></polygon><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"18\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"request_quote\": {\n    \"name\": \"request_quote\",\n    \"keywords\": [\n      \"file\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,20V4h7v4h5v12H6z M11,19h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1 c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v4h5v12H6z M11,19h2v-1h1 c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1h-3v-1h4v-2h-2V9h-2v1h-1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h3v1H9v2h2V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"paid\": {\n    \"name\": \"paid\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M12.88,17.76V19h-1.75v-1.29c-0.74-0.18-2.39-0.77-3.02-2.96l1.65-0.67c0.06,0.22,0.58,2.09,2.4,2.09c0.93,0,1.98-0.48,1.98-1.61 c0-0.96-0.7-1.46-2.28-2.03c-1.1-0.39-3.35-1.03-3.35-3.31c0-0.1,0.01-2.4,2.62-2.96V5h1.75v1.24c1.84,0.32,2.51,1.79,2.66,2.23 l-1.58,0.67c-0.11-0.35-0.59-1.34-1.9-1.34c-0.7,0-1.81,0.37-1.81,1.39c0,0.95,0.86,1.31,2.64,1.9c2.4,0.83,3.01,2.05,3.01,3.45 C15.9,17.17,13.4,17.67,12.88,17.76z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67 c-0.15-0.44-0.82-1.91-2.66-2.23V5h-1.75v1.26c-2.6,0.56-2.62,2.85-2.62,2.96c0,2.27,2.25,2.91,3.35,3.31 c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75c0.63,2.19,2.28,2.78,3.02,2.96 V19h1.75v-1.24c0.52-0.09,3.02-0.59,3.02-3.22C15.9,13.15,15.29,11.93,12.89,11.1z\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"toc\": {\n    \"name\": \"toc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"gif_box\": {\n    \"name\": \"gif_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,5v14h14V5H5z M9.5,13v-1h1v1c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1v-2c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1h-2v2H9.5z M12.5,14h-1v-4h1V14z M16.5,11h-2v0.5H16v1h-1.5V14h-1v-4h3V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,19H5V5h14V19z M5,3C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5z M11.5,14h1v-4h-1V14z M13.5,14h1v-1.5H16v-1h-1.5V11h2v-1h-3V14z M9.5,12v1h-1v-2h2c0-0.55-0.45-1-1-1h-1c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1 c0.55,0,1-0.45,1-1v-1H9.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,4.5v11h11v-11H4.5z M7.5,11v-1h1v1c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h1 c0.55,0,1,0.45,1,1h-2v2H7.5z M10.5,12h-1V8h1V12z M14.5,9h-2v0.5H14v1h-1.5V12h-1V8h3V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,4.5v11h-11v-11H15.5z M4.5,3C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11 C17,3.67,16.33,3,15.5,3H4.5z M9.5,12h1V8h-1V12z M11.5,12h1v-1.5H14v-1h-1.5V9h2V8h-3V12z M7.5,10v1h-1V9h2c0-0.55-0.45-1-1-1h-1 c-0.55,0-1,0.45-1,1v2c0,0.55,0.45,1,1,1h1c0.55,0,1-0.45,1-1v-1H7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_bag\": {\n    \"name\": \"shopping_bag\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18 20H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 6h-2c0-2.21-1.79-4-4-4S8 3.79 8 6H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6-2c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm6 16H6V8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h4v2c0 .55.45 1 1 1s1-.45 1-1V8h2v12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"webhook\": {\n    \"name\": \"webhook\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10,15l5.88,0c0.27-0.31,0.67-0.5,1.12-0.5c0.83,0,1.5,0.67,1.5,1.5c0,0.83-0.67,1.5-1.5,1.5c-0.44,0-0.84-0.19-1.12-0.5 l-3.98,0c-0.46,2.28-2.48,4-4.9,4c-2.76,0-5-2.24-5-5c0-2.42,1.72-4.44,4-4.9l0,2.07C4.84,13.58,4,14.7,4,16c0,1.65,1.35,3,3,3 s3-1.35,3-3V15z M12.5,4c1.65,0,3,1.35,3,3h2c0-2.76-2.24-5-5-5l0,0c-2.76,0-5,2.24-5,5c0,1.43,0.6,2.71,1.55,3.62l-2.35,3.9 C6.02,14.66,5.5,15.27,5.5,16c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.16-0.02-0.31-0.07-0.45l3.38-5.63 C10.49,9.61,9.5,8.42,9.5,7C9.5,5.35,10.85,4,12.5,4z M17,13c-0.64,0-1.23,0.2-1.72,0.54l-3.05-5.07C11.53,8.35,11,7.74,11,7 c0-0.83,0.67-1.5,1.5-1.5S14,6.17,14,7c0,0.15-0.02,0.29-0.06,0.43l2.19,3.65C16.41,11.03,16.7,11,17,11l0,0c2.76,0,5,2.24,5,5 c0,2.76-2.24,5-5,5c-1.85,0-3.47-1.01-4.33-2.5l2.67,0C15.82,18.82,16.39,19,17,19c1.65,0,3-1.35,3-3S18.65,13,17,13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,3.5C9.12,3.5,8,4.62,8,6c0,1.17,0.81,2.15,1.89,2.43L7,12.92c0,0.03,0,0.05,0,0.08c0,0.55-0.45,1-1,1s-1-0.45-1-1 c0-0.43,0.27-0.8,0.66-0.94l2.05-3.19C6.96,8.14,6.5,7.12,6.5,6c0-2.21,1.79-4,4-4l0,0c2.21,0,4,1.79,4,4H13 C13,4.62,11.88,3.5,10.5,3.5z M8.5,12.25h4.84C13.51,12.09,13.75,12,14,12c0.55,0,1,0.45,1,1s-0.45,1-1,1 c-0.25,0-0.49-0.09-0.66-0.25l-3.41,0C9.58,15.6,7.95,17,6,17c-2.21,0-4-1.79-4-4c0-1.86,1.27-3.43,3-3.87l0,1.58 C4.12,11.1,3.5,11.98,3.5,13c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5V12.25z M14,10.5c1.38,0,2.5,1.12,2.5,2.5 c0,1.38-1.12,2.5-2.5,2.5c-0.56,0-1.08-0.19-1.5-0.5l-1.97,0c0.69,1.2,1.98,2,3.46,2c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4l0,0 c-0.36,0-0.71,0.05-1.04,0.14l-1.47-2.95c0.01-0.06,0.02-0.12,0.02-0.18c0-0.55-0.45-1-1-1s-1,0.45-1,1c0,0.39,0.23,0.73,0.56,0.9 l2.17,4.33C12.68,10.78,13.31,10.5,14,10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"preview\": {\n    \"name\": \"preview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,19H5V7h14V19z M12,10.5c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13 C8.52,11.46,10.16,10.5,12,10.5 M12,9c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M12,10.5 c1.84,0,3.48,0.96,4.34,2.5c-0.86,1.54-2.5,2.5-4.34,2.5S8.52,14.54,7.66,13C8.52,11.46,10.16,10.5,12,10.5 M12,9 c-2.73,0-5.06,1.66-6,4c0.94,2.34,3.27,4,6,4s5.06-1.66,6-4C17.06,10.66,14.73,9,12,9L12,9z M12,14.5c-0.83,0-1.5-0.67-1.5-1.5 s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S12.83,14.5,12,14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"work\": {\n    \"name\": \"work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8h16v11H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors\": {\n    \"name\": \"sensors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.76,16.24C6.67,15.16,6,13.66,6,12s0.67-3.16,1.76-4.24l1.42,1.42C8.45,9.9,8,10.9,8,12c0,1.1,0.45,2.1,1.17,2.83 L7.76,16.24z M16.24,16.24C17.33,15.16,18,13.66,18,12s-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12 c0,1.1-0.45,2.1-1.17,2.83L16.24,16.24z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z M20,12 c0,2.21-0.9,4.21-2.35,5.65l1.42,1.42C20.88,17.26,22,14.76,22,12s-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z M6.35,6.35L4.93,4.93C3.12,6.74,2,9.24,2,12s1.12,5.26,2.93,7.07l1.42-1.42C4.9,16.21,4,14.21,4,12S4.9,7.79,6.35,6.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.41,14.59l-1.06,1.06C2.9,14.21,2,12.21,2,10c0-2.21,0.9-4.21,2.34-5.66l1.06,1.06C4.23,6.58,3.5,8.21,3.5,10 S4.23,13.42,5.41,14.59z M16.5,10c0,1.79-0.73,3.42-1.91,4.59l1.06,1.06C17.1,14.21,18,12.21,18,10c0-2.21-0.9-4.21-2.34-5.66 l-1.06,1.06C15.77,6.58,16.5,8.21,16.5,10z M13.5,10c0,0.96-0.39,1.84-1.03,2.47l1.06,1.06C14.44,12.63,15,11.38,15,10 c0-1.38-0.56-2.63-1.46-3.54l-1.06,1.06C13.11,8.16,13.5,9.04,13.5,10z M6.5,10c0-0.96,0.39-1.84,1.03-2.47L6.46,6.46 C5.56,7.37,5,8.62,5,10c0,1.38,0.56,2.63,1.46,3.54l1.06-1.06C6.89,11.84,6.5,10.96,6.5,10z M10,8.25c-0.97,0-1.75,0.78-1.75,1.75 s0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75S10.97,8.25,10,8.25z\\\"></path>\"\n      }\n    }\n  },\n  \"launch\": {\n    \"name\": \"launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_accessibility\": {\n    \"name\": \"settings_accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,4c-2.61,0.7-5.67,1-8.5,1S6.11,4.7,3.5,4L3,6c1.86,0.5,4,0.83,6,1v12h2v-6h2v6h2V7c2-0.17,4.14-0.5,6-1L20.5,4z M12,4c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,4,12,4z M7,24h2v-2H7V24z M11,24h2v-2h-2V24z M15,24h2v-2h-2V24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"install_mobile\": {\n    \"name\": \"install_mobile\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"7\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><path d=\\\"M17,18H7V6h7V4H7V3h7V1.01L7,1C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-5h-2V18z M17,21H7v-1h10V21z\\\"></path><polygon points=\\\"19,3 17,3 17,10.17 14.41,7.59 14,8 13,9 14,10 18,14 21,11 23,9 21.59,7.59 21,8.18 19,10.17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"6.5\\\" x=\\\"5.5\\\" y=\\\"2.5\\\"></rect><path d=\\\"M14.5,15h-9V5H12V3.5H5.5v-1H12V1H5.5C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5V13h-1.5 V15z M14.5,17.5h-9v-1h9V17.5z\\\"></path><polygon points=\\\"16,3 14.5,3 14.5,3.5 14.5,5 14.5,8.14 12.81,6.45 12,7.27 11.75,7.52 12,7.77 15.23,11 17,9.23 18.75,7.48 17.69,6.42 17,7.11 16,8.11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pan_tool_alt\": {\n    \"name\": \"pan_tool_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.08,19h-6.55l-3.7-3.78L11,16.11V5.5C11,5.22,11.22,5,11.5,5S12,5.22,12,5.5v6.18h1.76L18,13.56L17.08,19 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.89,11.77l-3.8-1.67C14.96,10.04,14.81,10,14.65,10H14V5.5C14,4.12,12.88,3,11.5,3S9,4.12,9,5.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,15.22l5.12,5.19C9.49,20.79,10,21,10.53,21h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,13.03,19.68,12.17,18.89,11.77z M17.08,19h-6.55l-3.7-3.78L11,16.11V5.5C11,5.22,11.22,5,11.5,5S12,5.22,12,5.5v6.18h1.76 L18,13.56L17.08,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.38,15.5H9.12L5.62,12l0.34-0.34L9,12.42V5c0-0.28,0.22-0.5,0.5-0.5S10,4.72,10,5v4.5h2.15l2.58,1.2 c0.19,0.1,0.3,0.3,0.27,0.52L14.38,15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.39,9.36L12.5,8h-1V5c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,12l4.56,4.56 C8.34,16.84,8.72,17,9.12,17h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,10.57,16.16,9.74,15.39,9.36z M14.38,15.5H9.12 L5.62,12l0.34-0.34L9,12.42V5c0-0.28,0.22-0.5,0.5-0.5S10,4.72,10,5v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"smart_button\": {\n    \"name\": \"smart_button\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,9v6c0,1.1-0.9,2-2,2h-1l0-2h1V9H4v6h6v2H4c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h16C21.1,7,22,7.9,22,9z M14.5,19 l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38L19,12l-1.38-0.62L17,10l-0.62,1.38 L15,12l1.38,0.62L17,14z M14.5,19l1.09-2.41L18,15.5l-2.41-1.09L14.5,12l-1.09,2.41L11,15.5l2.41,1.09L14.5,19z M17,14l0.62-1.38 L19,12l-1.38-0.62L17,10l-0.62,1.38L15,12l1.38,0.62L17,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"credit_card\": {\n    \"name\": \"credit_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12h16v6H4zm0-6h16v2H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down\": {\n    \"name\": \"thumb_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12v2h9l-1.34 5.34L15 15V5H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_balance\": {\n    \"name\": \"account_balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.29 6l5.21-2.74L16.71 6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.5 10h-2v7h2v-7zm6 0h-2v7h2v-7zm8.5 9H2v2h19v-2zm-2.5-9h-2v7h2v-7zm-7-9L2 6v2h19V6l-9.5-5zM6.29 6l5.21-2.74L16.71 6H6.29z\\\"></path>\"\n      }\n    }\n  },\n  \"shop\": {\n    \"name\": \"shop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 19h16V8H4v11zM9 9l7.5 4L9 18V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 9v9l7.5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"display_settings\": {\n    \"name\": \"display_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,17h16V5H4V17z M18,13.75h-8v-1.5h8V13.75z M15,7h1.5v1.25H18v1.5h-1.5V11H15V7z M6,8.25h8v1.5H6V8.25z M6,12.25h1.5V11H9v4H7.5v-1.25H6V12.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2V5C22,3.89,21.1,3,20,3z M20,17H4V5h16V17z\\\"></path><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"8.25\\\"></rect><polygon points=\\\"16.5,9.75 18,9.75 18,8.25 16.5,8.25 16.5,7 15,7 15,11 16.5,11\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"8\\\" x=\\\"10\\\" y=\\\"12.25\\\"></rect><polygon points=\\\"7.5,15 9,15 9,11 7.5,11 7.5,12.25 6,12.25 6,13.75 7.5,13.75\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,13.5h13v-9h-13V13.5z M15,11H8v-1h7V11z M13,6h1v1h1v1h-1v1h-1V6z M5,7h7v1H5V7z M5,10h1V9h1v3H6v-1H5 V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,3h-13C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5c0.83,0,1.5-0.67,1.5-1.5v-9 C18,3.67,17.33,3,16.5,3z M16.5,13.5h-13v-9h13V13.5z\\\"></path><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><polygon points=\\\"14,8 15,8 15,7 14,7 14,6 13,6 13,9 14,9\\\"></polygon><rect height=\\\"1\\\" width=\\\"7\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><polygon points=\\\"6,12 7,12 7,9 6,9 6,10 5,10 5,11 6,11\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"next_plan\": {\n    \"name\": \"next_plan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M13,14l2.26-2.26 C14.35,10.68,13.01,10,11.5,10c-2.37,0-4.35,1.66-4.86,3.88l-0.96-0.32C6.32,10.95,8.68,9,11.5,9c1.78,0,3.37,0.79,4.47,2.03L18,9 v5H13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path><path d=\\\"M15.97,11.03C14.87,9.79,13.28,9,11.5,9c-2.82,0-5.18,1.95-5.82,4.56l0.96,0.32C7.15,11.66,9.13,10,11.5,10 c1.51,0,2.85,0.68,3.76,1.74L13,14h5V9L15.97,11.03z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S13.31,4,10,4z M14,11.5h-2.99l1.19-1.19 C11.59,9.81,10.84,9.5,10,9.5c-1.39,0-2.58,0.82-3.15,1.99l-0.96-0.32C6.59,9.6,8.17,8.5,10,8.5c1.12,0,2.13,0.41,2.91,1.09 L14,8.5V11.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\\\"></path><path d=\\\"M10,8.5c-1.83,0-3.41,1.1-4.11,2.68l0.96,0.32C7.42,10.32,8.61,9.5,10,9.5c0.84,0,1.59,0.31,2.19,0.81l-1.19,1.19H14V8.5 l-1.09,1.09C12.13,8.91,11.12,8.5,10,8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_balance_wallet\": {\n    \"name\": \"account_balance_wallet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 17c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6V5H5v14h14v-2h-6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.38-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z\\\"></path><circle cx=\\\"16\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"view_stream\": {\n    \"name\": \"view_stream\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,17H5v-4h14V17z M5,11V7h14v4H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2H5C3.9,5,3,5.9,3,7z M19,17H5v-4h14V17z M5,11V7h14v4H5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,6.5v2.75h-11V6.5H15.5z M4.5,13.5v-2.75h11v2.75H4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5h-11C3.67,5,3,5.67,3,6.5z M15.5,6.5 v2.75h-11V6.5H15.5z M4.5,13.5v-2.75h11v2.75H4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up\": {\n    \"name\": \"swipe_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66 c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25c-0.56-1.26-2.04-1.83-3.3-1.27 s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67c0.49,0.19,1.05,0.18,1.53-0.04 l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88 l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z M2.06,5.56L1,4.5 L4.5,1L8,4.5L6.94,5.56L5.32,3.94C5.11,4.76,5,5.62,5,6.5c0,2.42,0.82,4.65,2.2,6.43L6.13,14C4.49,11.95,3.5,9.34,3.5,6.5 c0-0.92,0.1-1.82,0.3-2.68L2.06,5.56z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66 c0.25-0.11,0.55,0,0.66,0.25l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,5.5c0,2.03,0.75,3.88,2,5.29L5.29,11.5C3.87,9.91,3,7.81,3,5.5c0-0.93,0.14-1.82,0.4-2.66L1.71,4.53L1,3.83L3.83,1 l2.83,2.83L5.94,4.53L4.4,2.99C4.14,3.78,4,4.62,4,5.5z M16.79,8.07L13.6,8l-0.91,0.41l-1.22-2.74C11.02,4.65,9.84,4.2,8.83,4.64 C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3L13,17.63 c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13c0.68-0.3,1.04-1.06,0.84-1.78l-1.18-4.17C18.39,8.69,17.65,8.11,16.79,8.07z M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25 l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flip_to_front\": {\n    \"name\": \"flip_to_front\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3c0 1.1.89 2 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9c-1.11 0-2 .9-2 2v10c0 1.1.89 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z\\\"></path>\"\n      }\n    }\n  },\n  \"update_disabled\": {\n    \"name\": \"update_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M8.67,5.84L7.22,4.39C8.6,3.51,10.24,3,12,3c2.74,0,5.19,1.23,6.84,3.16L21,4v6h-6l2.41-2.41C16.12,6.02,14.18,5,12,5 C10.8,5,9.66,5.31,8.67,5.84z M13,7h-2v1.17l2,2V7z M19.78,22.61l-3-3C15.39,20.48,13.76,21,12,21c-4.97,0-9-4.03-9-9 c0-1.76,0.51-3.4,1.39-4.78L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M15.32,18.15L5.84,8.67C5.31,9.66,5,10.8,5,12 c0,3.86,3.14,7,7,7C13.2,19,14.34,18.69,15.32,18.15z M20.94,13h-2.02c-0.12,0.83-0.39,1.61-0.77,2.32l1.47,1.47 C20.32,15.67,20.79,14.38,20.94,13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,6v2.63l-1.5-1.5V6H10.75z M7.32,5.2C8.11,4.75,9.03,4.5,10,4.5c1.64,0,3.11,0.74,4.12,1.88L12.5,8H17V3.5l-1.82,1.82 C13.9,3.9,12.06,3,10,3C8.61,3,7.31,3.41,6.23,4.1L7.32,5.2z M15.9,13.77c0.7-1.09,1.1-2.38,1.1-3.77h-1.5 c0,0.97-0.25,1.89-0.7,2.68L15.9,13.77z M17.07,17.07l-1.06,1.06l-2.24-2.24C12.69,16.59,11.39,17,10,17c-3.87,0-7-3.13-7-7 c0-1.39,0.41-2.69,1.1-3.77L1.87,3.99l1.06-1.06L17.07,17.07z M12.68,14.8L5.2,7.32C4.75,8.11,4.5,9.03,4.5,10 c0,3.03,2.47,5.5,5.5,5.5C10.97,15.5,11.89,15.25,12.68,14.8z\\\"></path>\"\n      }\n    }\n  },\n  \"delete\": {\n    \"name\": \"delete\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 9h8v10H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horizontal_circle\": {\n    \"name\": \"swap_horizontal_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 11H9v2.5L5.5 14 9 10.5V13h4v2zm2-1.5V11h-4V9h4V6.5l3.5 3.5-3.5 3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-13.5V9h-4v2h4v2.5l3.5-3.5zm-6 4L5.5 14 9 17.5V15h4v-2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"polymer\": {\n    \"name\": \"polymer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_composite\": {\n    \"name\": \"settings_input_composite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 16c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm8 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_split\": {\n    \"name\": \"horizontal_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 15v2H5v-2h14m2-10H3v2h18V5zm0 4H3v2h18V9zm0 4H3v6h18v-6z\\\"></path><path d=\\\"M5 15h14v2H5z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"free_cancellation\": {\n    \"name\": \"free_cancellation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M11.21,20H5V10h14v4.38l2-2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h8.21 L11.21,20z M5,6h14v2H5V6z M16.54,22.5L13,18.96l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,22.5z M10.41,14L12,15.59L10.59,17 L9,15.41L7.41,17L6,15.59L7.59,14L6,12.41L7.41,11L9,12.59L10.59,11L12,12.41L10.41,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"11\\\" x=\\\"4.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M9.21,16.5H4.5V9h11v3.09l1.5-1.5V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11 C3,17.32,3.67,18,4.5,18h6.21L9.21,16.5z M4.5,5.5h11v2h-11V5.5z M13.33,16.38l3.54-3.54l1.06,1.06l-4.6,4.6l-2.83-2.83l1.06-1.06 L13.33,16.38z M8.81,12.25L10,13.44L8.94,14.5l-1.19-1.19L6.56,14.5L5.5,13.44l1.19-1.19L5.5,11.06L6.56,10l1.19,1.19L8.94,10 L10,11.06L8.81,12.25z\\\"></path>\"\n      }\n    }\n  },\n  \"theaters\": {\n    \"name\": \"theaters\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm6 10h-4V5h4v14zm4-2h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z\\\"></path><path d=\\\"M10 5h4v14h-4z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"rocket\": {\n    \"name\": \"rocket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><g><path d=\\\"M7.98,18.25c-0.29-0.9-0.57-1.94-0.76-3L6,16.07v2.98L7.98,18.25z M12,4.36c0,0-3,2.02-3,8.64c0,2.25,1,5,1,5h4 c0,0,1-2.75,1-5C15,6.38,12,4.36,12,4.36z M12,13c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,12.1,13.1,13,12,13z M18,19.05 v-2.98l-1.22-0.81c-0.19,1.05-0.47,2.1-0.76,3L18,19.05z\\\"></path></g></g><g><g><path d=\\\"M14,11c0-1.1-0.9-2-2-2s-2,0.9-2,2s0.9,2,2,2S14,12.1,14,11z M7.98,18.25c-0.29-0.9-0.57-1.94-0.76-3L6,16.07v2.98 L7.98,18.25z M12,2c0,0,5,2,5,11l2.11,1.41c0.56,0.37,0.89,1,0.89,1.66V22l-5-2H9l-5,2v-5.93c0-0.67,0.33-1.29,0.89-1.66L7,13 C7,4,12,2,12,2z M12,4.36c0,0-3,2.02-3,8.64c0,2.25,1,5,1,5h4c0,0,1-2.75,1-5C15,6.38,12,4.36,12,4.36z M18,19.05v-2.98 l-1.22-0.81c-0.19,1.05-0.47,2.1-0.76,3L18,19.05z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M10,3.84c-0.86,0.8-2.25,2.71-2.25,6.66c0,1.45,0.43,3.03,0.75,4h3c0.32-0.97,0.75-2.55,0.75-4 C12.25,6.55,10.86,4.64,10,3.84z M10,10.5c-0.83,0-1.5-0.67-1.5-1.5S9.17,7.5,10,7.5s1.5,0.67,1.5,1.5S10.83,10.5,10,10.5z M6.41,12.28l-0.91,0.7v2.59l1.52-0.76C6.81,14.14,6.56,13.24,6.41,12.28z M12.98,14.81l1.52,0.76v-2.59l-0.91-0.7 C13.44,13.24,13.19,14.14,12.98,14.81z\\\"></path></g><g><path d=\\\"M13.75,10.5l1.67,1.3c0.37,0.28,0.58,0.72,0.58,1.18V18l-4-2H8l-4,2v-5.02c0-0.46,0.21-0.9,0.58-1.18l1.67-1.3 C6.25,3.75,10,2,10,2C10,2,13.75,3.75,13.75,10.5z M7.75,10.5c0,1.45,0.43,3.03,0.75,4h3c0.32-0.97,0.75-2.55,0.75-4 c0-3.95-1.39-5.86-2.25-6.66C9.14,4.64,7.75,6.55,7.75,10.5z M11.5,9c0-0.82-0.67-1.5-1.5-1.5C9.18,7.5,8.5,8.18,8.5,9 c0,0.83,0.68,1.5,1.5,1.5C10.83,10.5,11.5,9.83,11.5,9z M6.41,12.28l-0.91,0.7v2.59l1.52-0.76C6.81,14.14,6.56,13.24,6.41,12.28z M12.98,14.81l1.52,0.76v-2.59l-0.91-0.7C13.44,13.24,13.19,14.14,12.98,14.81z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"css\": {\n    \"name\": \"css\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.5,14v-1H11v0.5h2v-1h-2.5c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H13v-0.5h-2v1h2.5 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C9.95,15,9.5,14.55,9.5,14z M17,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1h-2.5v-1 h2V11H21v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2.5v1h-2V13H16v1C16,14.55,16.45,15,17,15z M8,10 c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1H6.5v0.5h-2v-3h2V11H8V10z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8.5,11.5v-0.75h1V11h1v-0.75H9c-0.28,0-0.5-0.22-0.5-0.5V8.5C8.5,8.22,8.72,8,9,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1V9h-1 v0.75H11c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5H9C8.72,12,8.5,11.78,8.5,11.5z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5 v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5 H15V11h-1v-0.25h-1v0.75C13,11.78,13.22,12,13.5,12z M6.5,12C6.77,12,7,11.78,7,11.5v-0.75H6V11H5V9h1v0.25h1L7,8.5 C7,8.22,6.78,8,6.5,8h-2C4.22,8,4,8.22,4,8.5v3C4,11.78,4.22,12,4.5,12H6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"saved_search\": {\n    \"name\": \"saved_search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.73,13.31C15.52,12.24,16,10.93,16,9.5C16,5.91,13.09,3,9.5,3S3,5.91,3,9.5C3,13.09,5.91,16,9.5,16 c1.43,0,2.74-0.48,3.81-1.27L19.59,21L21,19.59L14.73,13.31z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5 S11.99,14,9.5,14z\\\"></path><polygon points=\\\"9.5,6 8.71,8.44 6.25,8.44 8.26,10.03 7.49,12.5 9.5,10.97 11.51,12.5 10.74,10.03 12.75,8.44 10.29,8.44\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"satellite_alt\": {\n    \"name\": \"satellite_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M6.6,19.32l-1.06,1.06L2,16.85l1.06-1.06L6.6,19.32z M8.72,17.2l-1.06,1.06l-3.54-3.54l1.06-1.06L8.72,17.2z M13.67,12.25 l-1.41,1.41l-3.54-3.54l1.41-1.41L13.67,12.25z M18.26,7.66L17.2,8.72l-3.54-3.54l1.06-1.06L18.26,7.66z M20.38,5.54L19.32,6.6 l-3.54-3.54L16.85,2L20.38,5.54z\\\"></path></g><g><path d=\\\"M15.44,0.59l-3.18,3.18c-0.78,0.78-0.78,2.05,0,2.83l1.24,1.24l-0.71,0.71L11.55,7.3c-0.78-0.78-2.05-0.78-2.83,0 L7.3,8.72c-0.78,0.78-0.78,2.05,0,2.83l1.24,1.24l-0.71,0.71L6.6,12.25c-0.78-0.78-2.05-0.78-2.83,0l-3.18,3.18 c-0.78,0.78-0.78,2.05,0,2.83l3.54,3.54c0.78,0.78,2.05,0.78,2.83,0l3.18-3.18c0.78-0.78,0.78-2.05,0-2.83l-1.24-1.24l0.71-0.71 l1.24,1.24c0.78,0.78,2.05,0.78,2.83,0l1.41-1.41c0.78-0.78,0.78-2.05,0-2.83L13.84,9.6l0.71-0.71l1.24,1.24 c0.78,0.78,2.05,0.78,2.83,0l3.18-3.18c0.78-0.78,0.78-2.05,0-2.83l-3.54-3.54C17.48-0.2,16.22-0.2,15.44,0.59z M6.6,19.32 l-1.06,1.06L2,16.85l1.06-1.06L6.6,19.32z M8.72,17.2l-1.06,1.06l-3.54-3.54l1.06-1.06L8.72,17.2z M13.67,12.25l-1.41,1.41 l-3.54-3.54l1.41-1.41L13.67,12.25z M18.26,7.66L17.2,8.72l-3.54-3.54l1.06-1.06L18.26,7.66z M20.38,5.54L19.32,6.6l-3.54-3.54 L16.85,2L20.38,5.54z M21,14l2,0c0,4.97-4.03,9-9,9l0-2C17.87,21,21,17.87,21,14z M17,14l2,0c0,2.76-2.24,5-5,5l0-2 C15.66,17,17,15.66,17,14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2.56,13.17L1.5,14.23l3.18,3.18l1.06-1.06L2.56,13.17z M4.33,11.4l-1.06,1.06l3.18,3.18l1.06-1.06 L4.33,11.4z M8.57,7.16L7.16,8.57l3.18,3.18l1.41-1.41L8.57,7.16z M12.46,3.27L11.4,4.33l3.18,3.18l1.06-1.06L12.46,3.27z M14.23,1.5l-1.06,1.06l3.18,3.18l1.06-1.06L14.23,1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5,12H19c0,3.87-3.13,7-7,7v-1.5C15.03,17.5,17.5,15.03,17.5,12z M12,14.5V16c2.21,0,4-1.79,4-4h-1.5 C14.5,13.38,13.38,14.5,12,14.5z M15.29,0.44l3.18,3.18c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0 l-1.24-1.24l-0.71,0.71l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-1.41,1.41c-0.59,0.59-1.54,0.59-2.12,0l-1.24-1.24l-0.71,0.71 l1.24,1.24c0.59,0.59,0.59,1.54,0,2.12l-2.83,2.83c-0.59,0.59-1.54,0.59-2.12,0l-3.18-3.18c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83 c0.59-0.59,1.54-0.59,2.12,0l1.24,1.24l0.71-0.71L6.1,9.63c-0.59-0.59-0.59-1.54,0-2.12L7.51,6.1c0.59-0.59,1.54-0.59,2.12,0 l1.24,1.24l0.71-0.71l-1.24-1.24c-0.59-0.59-0.59-1.54,0-2.12l2.83-2.83C13.75-0.15,14.7-0.15,15.29,0.44z M2.56,13.17L1.5,14.23 l3.18,3.18l1.06-1.06L2.56,13.17z M4.33,11.4l-1.06,1.06l3.18,3.18l1.06-1.06L4.33,11.4z M8.57,7.16L7.16,8.57l3.18,3.18l1.41-1.41 L8.57,7.16z M12.46,3.27L11.4,4.33l3.18,3.18l1.06-1.06L12.46,3.27z M14.23,1.5l-1.06,1.06l3.18,3.18l1.06-1.06L14.23,1.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"eject\": {\n    \"name\": \"eject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8.6L9.07 13h5.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 17h14v2H5zm7-12L5.33 15h13.34L12 5zm0 3.6l2.93 4.4H9.07L12 8.6z\\\"></path>\"\n      }\n    }\n  },\n  \"minimize\": {\n    \"name\": \"minimize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19h12v2H6v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"print\": {\n    \"name\": \"print\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5h8v3H8z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"18\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><path d=\\\"M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 14H8v-4h8v4zm4-4h-2v-2H6v2H4v-4c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v4z\\\"></path><path d=\\\"M6 13h12v2h2v-4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4h2v-2zm12-2.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"data_thresholding\": {\n    \"name\": \"data_thresholding\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"19,19 19,17.27 17.27,19\\\"></polygon><path d=\\\"M5,17.72L6.72,16h2.12l-3,3h1.83l3-3h2.12l-3,3h1.62l3-3h2.12l-3,3h1.62l3-3H19V5H5V17.72z M10.67,8.17l2,2 l3.67-3.67l1.41,1.41L12.67,13l-2-2l-3,3l-1.41-1.41L10.67,8.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19h-1.73L19,17.27V19z M19,16 h-0.85l-3,3h-1.62l3-3h-2.12l-3,3H9.8l3-3h-2.12l-3,3H5.84l3-3H6.72L5,17.72V5h14V16z\\\"></path><polygon points=\\\"10.67,11 12.67,13 17.75,7.91 16.34,6.5 12.67,10.17 10.67,8.17 6.25,12.59 7.66,14\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,14.09L5.59,13H7l-2.5,2.5h1.07l2.5-2.5h1.41l-2.5,2.5h1.07l2.5-2.5h1.41l-2.5,2.5h1.07l2.5-2.5h1.41 l-2.5,2.5H13l2.5-2.5v0V4.5h-11V14.09z M9.19,7l1.5,1.5l2.5-2.5l1.06,1.06l-3.56,3.56l-1.5-1.5L6.81,11.5l-1.06-1.06L9.19,7z\\\" opacity=\\\".3\\\"></path><polygon opacity=\\\".3\\\" points=\\\"15.5,15.5 15.5,14.42 14.42,15.5\\\"></polygon><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-1.08l1.08-1.08V15.5z M15.5,13L15.5,13L13,15.5h-1.07l2.5-2.5h-1.41l-2.5,2.5H9.46l2.5-2.5h-1.41l-2.5,2.5H6.98 l2.5-2.5H8.07l-2.5,2.5H4.5L7,13H5.59L4.5,14.09V4.5h11V13z\\\"></path><g><polygon points=\\\"9.19,9.12 10.69,10.62 14.25,7.06 13.19,6 10.69,8.5 9.19,7 5.75,10.44 6.81,11.5\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"tour\": {\n    \"name\": \"tour\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><polygon opacity=\\\".3\\\" points=\\\"7,12 7,6 18.05,6 16.85,9 18.05,12\\\"></polygon><g><path d=\\\"M21,4h-8h-1H7V2H5v2v10v8h2v-8h4h1h9l-2-5L21,4z M7,12V6h11.05l-1.2,3l1.2,3H7z M14,9c0,1.1-0.9,2-2,2s-2-0.9-2-2 s0.9-2,2-2S14,7.9,14,9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"calendar_today\": {\n    \"name\": \"calendar_today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 2v3H4V5h16zM4 21V10h16v11H4z\\\"></path><path d=\\\"M4 5.01h16V8H4z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_cart_checkout\": {\n    \"name\": \"shopping_cart_checkout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2 S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44 C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z M12,2l4,4l-4,4l-1.41-1.41L12.17,7L8,7l0-2l4.17,0l-1.59-1.59L12,2z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7,16.5C7,17.33,6.33,18,5.5,18S4,17.33,4,16.5S4.67,15,5.5,15S7,15.67,7,16.5z M14.5,15c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S15.33,15,14.5,15z M6.6,11h6.67c0.6,0,1.14-0.36,1.38-0.91L17,4.59L15.62,4l-2.35,5.5H6.99 L3.77,2H1v1.5h1.79l2.73,6.37l-1.08,1.88c-0.58,1,0.14,2.25,1.3,2.25H16v-1.5H5.73L6.6,11z M8.94,3.06l1.19,1.19H7v1.5h3.13 L8.94,6.94L10,8l3-3l-3-3L8.94,3.06z\\\"></path></g>\"\n      }\n    }\n  },\n  \"book\": {\n    \"name\": \"book\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m13 13-3-2.25L7 13V4H6v16h12V4h-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"report_problem\": {\n    \"name\": \"report_problem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.99L4.47 19h15.06L12 5.99zM13 18h-2v-2h2v2zm-2-4v-4h2v4h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2L1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM11 16h2v2h-2zm0-6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_calendar\": {\n    \"name\": \"edit_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M5,10h14v2h2V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h7v-2H5V10z M5,6h14v2H5 V6z M22.84,16.28l-0.71,0.71l-2.12-2.12l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71C23.23,15.26,23.23,15.89,22.84,16.28z M19.3,15.58l2.12,2.12l-5.3,5.3H14v-2.12L19.3,15.58z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"2\\\" opacity=\\\".4\\\" width=\\\"11\\\" x=\\\"4.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M4.5,9h11v1H17V5.5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h5v-1.5 h-5V9z M4.5,5.5h11v2h-11V5.5z M18.42,13.34l-0.65,0.65l-1.77-1.77l0.65-0.65c0.29-0.29,0.77-0.29,1.06,0l0.71,0.71 C18.72,12.58,18.72,13.05,18.42,13.34z M15.42,12.81l1.77,1.77L12.77,19H11v-1.77L15.42,12.81z\\\"></path>\"\n      }\n    }\n  },\n  \"book_online\": {\n    \"name\": \"book_online\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,4H7V3h10V4z M17,21H7v-1h10V21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,4H7V3h10V4z M17,21H7v-1h10V21z M17,1H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V3C19,1.9,18.1,1,17,1 L17,1z M7,6h10v12H7V6z M16,11V9.14C16,8.51,15.55,8,15,8H9C8.45,8,8,8.51,8,9.14l0,1.96c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 l0,1.76C8,15.49,8.45,16,9,16h6c0.55,0,1-0.51,1-1.14V13c-0.55,0-1-0.45-1-1C15,11.45,15.45,11,16,11z M12.5,14.5h-1v-1h1V14.5z M12.5,12.5h-1v-1h1V12.5z M12.5,10.5h-1v-1h1V10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tab\": {\n    \"name\": \"tab\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"eco\": {\n    \"name\": \"eco\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.46,9.46C5.68,11.25,5.55,14.04,7.03,16c1.53-2.54,3.73-4.64,6.37-6c-2.26,1.91-3.95,4.44-4.88,7.32 C9.27,17.75,10.11,18,11,18c1.34,0,2.59-0.52,3.54-1.46c1.74-1.74,2.81-6.57,3.26-10.33C14.04,6.65,9.21,7.72,7.46,9.46z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.05,8.05c-2.73,2.73-2.73,7.17,0,9.9C7.42,19.32,9.21,20,11,20s3.58-0.68,4.95-2.05C19.43,14.47,20,4,20,4 S9.53,4.57,6.05,8.05z M14.54,16.54C13.59,17.48,12.34,18,11,18c-0.89,0-1.73-0.25-2.48-0.68c0.92-2.88,2.62-5.41,4.88-7.32 c-2.63,1.36-4.84,3.46-6.37,6c-1.48-1.96-1.35-4.75,0.44-6.54C9.21,7.72,14.04,6.65,17.8,6.2C17.35,9.96,16.28,14.79,14.54,16.54z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.24,7.74c-1.57,1.57-1.63,4.06-0.23,5.72c1.15-2.11,2.9-3.87,5.04-4.97c-1.82,1.54-3.15,3.61-3.8,5.98 C7.86,14.81,8.54,15,9.25,15c1.14,0,2.2-0.44,3.01-1.24c1.63-1.63,2.39-6.09,2.65-8.66C12.34,5.35,7.88,6.11,6.24,7.74z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.54,7.04c-2.05,2.05-2.05,5.37,0,7.42C6.56,15.49,7.91,16,9.25,16c1.34,0,2.69-0.51,3.71-1.54C15.57,11.85,16,4,16,4 S8.15,4.43,5.54,7.04z M12.26,13.76c-0.8,0.8-1.87,1.24-3.01,1.24c-0.71,0-1.39-0.19-2.01-0.52c0.65-2.36,1.99-4.44,3.8-5.98 c-2.13,1.1-3.89,2.86-5.04,4.97c-1.4-1.67-1.33-4.16,0.23-5.72c1.63-1.63,6.09-2.39,8.66-2.65C14.65,7.66,13.89,12.12,12.26,13.76 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"system_update_alt\": {\n    \"name\": \"system_update_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"add_shopping_cart\": {\n    \"name\": \"add_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.41 4l-3.86 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z\\\"></path>\"\n      }\n    }\n  },\n  \"watch_later\": {\n    \"name\": \"watch_later\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M16.2,16.2 L11,13V7h1.5v5.2l4.5,2.7L16.2,16.2z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M12.5,7H11v6l5.2,3.2l0.8-1.3l-4.5-2.7V7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"assessment\": {\n    \"name\": \"assessment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5v14h14V5H5zm4 12H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"fit_screen\": {\n    \"name\": \"fit_screen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><path d=\\\"M6,16h12V8H6V16z M8,10h8v4H8V10z M4,15H2v3c0,1.1,0.9,2,2,2h3v-2H4V15z M4,6h3V4H4C2.9,4,2,4.9,2,6v3h2V6z M20,4h-3v2h3v3 h2V6C22,4.9,21.1,4,20,4z M20,18h-3v2h3c1.1,0,2-0.9,2-2v-3h-2V18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hls_off\": {\n    \"name\": \"hls_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.83,15h1.67c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1H19v1h-2V13h-1.17L17.83,15z M8,10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39,4.22l1.41-1.41l18.38,18.38 l-1.41,1.41L12.17,15H10v-2.17L8,10.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.5,12c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5C16,8.22,15.78,8,15.5,8h-2 C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.13L14.12,12H15.5z\\\"></path><polygon points=\\\"2.93,2.93 1.87,3.99 6,8.12 6,9.5 5,9.5 5,8 4,8 4,12 5,12 5,10.5 6,10.5 6,12 7,12 7,9.12 9,11.12 9,12 9.88,12 16.01,18.13 17.07,17.07\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"view_kanban\": {\n    \"name\": \"view_kanban\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M15,7h2v8h-2V7z M11,7h2v5h-2V7z M7,7h2v10H7V7z\\\" opacity=\\\".3\\\"></path><rect height=\\\"10\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"7\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"8\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"7\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,15.5h11v-11h-11V15.5z M12.5,6H14v6h-1.5V6z M9.25,6h1.5v4h-1.5V6z M6,6h1.5v8H6V6z\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g><g><rect height=\\\"4\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"8\\\" width=\\\"1.5\\\" x=\\\"6\\\" y=\\\"6\\\"></rect></g><g><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"12.5\\\" y=\\\"6\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"settings_input_component\": {\n    \"name\": \"settings_input_component\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 16c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2zm-8 0c0 .55.45 1 1 1s1-.45 1-1v-2H3v2zm16 0c0 .55.45 1 1 1s1-.45 1-1v-2h-2v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v10c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16V6H5V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4H3V8h2v4zm8-10c0-.55-.45-1-1-1s-1 .45-1 1v4H9v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2V2zm0 14c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4zm8-6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v10c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.42 2-1.52 2-2.82V6h-2zm0 10c0 .55-.45 1-1 1s-1-.45-1-1v-2h2v2zm0-4h-2V8h2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"commute\": {\n    \"name\": \"commute\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angleup\": {\n    \"name\": \"text_rotation_angleup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z\\\"></path>\"\n      }\n    }\n  },\n  \"chrome_reader_mode\": {\n    \"name\": \"chrome_reader_mode\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 6h8v13H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM11 19H3V6h8v13zm10 0h-8V6h8v13zm-7-9.5h6V11h-6zm0 2.5h6v1.5h-6zm0 2.5h6V16h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"view_cozy\": {\n    \"name\": \"view_cozy\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18h16V6H4V18z M12.75,7.25h4v4h-4V7.25z M12.75,12.75h4v4h-4V12.75z M7.25,7.25h4v4h-4V7.25z M7.25,12.75h4v4h-4V12.75z\\\" opacity=\\\".3\\\"></path><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.25\\\" y=\\\"7.25\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.75\\\" y=\\\"7.25\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.25\\\" y=\\\"12.75\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.75\\\" y=\\\"12.75\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,14.5h13v-9h-13V14.5z M10.75,6.25h3v3h-3V6.25z M10.75,10.75h3v3h-3V10.75z M6.25,6.25h3v3h-3V6.25z M6.25,10.75h3v3h-3V10.75z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.25\\\" y=\\\"6.25\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.75\\\" y=\\\"6.25\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.25\\\" y=\\\"10.75\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.75\\\" y=\\\"10.75\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"token\": {\n    \"name\": \"token\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M12,4.29l5.91,3.28L14.9,9.24C14.17,8.48,13.14,8,12,8S9.83,8.48,9.1,9.24L6.09,7.57L12,4.29z M11,19.16 l-6-3.33V9.26l3.13,1.74C8.04,11.31,8,11.65,8,12c0,1.86,1.27,3.43,3,3.87V19.16z M10,12c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2 S10,13.1,10,12z M13,19.16v-3.28c1.73-0.44,3-2.01,3-3.87c0-0.35-0.04-0.69-0.13-1.01L19,9.26l0,6.57L13,19.16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,7l-9-5L3,7v10l9,5l9-5L21,7z M12,4.29l5.91,3.28L14.9,9.24C14.17,8.48,13.14,8,12,8S9.83,8.48,9.1,9.24L6.09,7.57 L12,4.29z M11,19.16l-6-3.33V9.26l3.13,1.74C8.04,11.31,8,11.65,8,12c0,1.86,1.27,3.43,3,3.87V19.16z M10,12c0-1.1,0.9-2,2-2 s2,0.9,2,2s-0.9,2-2,2S10,13.1,10,12z M13,19.16v-3.28c1.73-0.44,3-2.01,3-3.87c0-0.35-0.04-0.69-0.13-1.01L19,9.26l0,6.57L13,19.16 z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M10,4.22l4.43,2.46l-2.26,1.25C11.63,7.36,10.86,7,10,7S8.37,7.36,7.83,7.93L5.57,6.68L10,4.22z M9.25,15.37 l-4.5-2.5V7.94l2.35,1.3C7.03,9.49,7,9.74,7,10c0,1.4,0.96,2.57,2.25,2.91V15.37z M8.5,10c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M10.75,15.37v-2.46C12.04,12.57,13,11.4,13,10c0-0.26-0.03-0.51-0.1-0.76l2.35-1.3l0,4.93 L10.75,15.37z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.75,6.25L10,2.5L3.25,6.25v7.5L10,17.5l6.75-3.75L16.75,6.25z M10,4.22l4.43,2.46l-2.26,1.25C11.63,7.36,10.86,7,10,7 S8.37,7.36,7.83,7.93L5.57,6.68L10,4.22z M9.25,15.37l-4.5-2.5V7.94l2.35,1.3C7.03,9.49,7,9.74,7,10c0,1.4,0.96,2.57,2.25,2.91 V15.37z M8.5,10c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5S8.5,10.83,8.5,10z M10.75,15.37v-2.46 C12.04,12.57,13,11.4,13,10c0-0.26-0.03-0.51-0.1-0.76l2.35-1.3l0,4.93L10.75,15.37z\\\"></path>\"\n      }\n    }\n  },\n  \"opacity\": {\n    \"name\": \"opacity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0H0v24h24V0zm0 0H0v24h24V0zM0 24h24V0H0v24z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.24 9.65L12 5.27 7.76 9.6C6.62 10.73 6.01 12 6 14h12c-.01-2-.62-3.23-1.76-4.35z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.66 8L12 2.35 6.34 8C4.78 9.56 4 11.64 4 13.64s.78 4.11 2.34 5.67 3.61 2.35 5.66 2.35 4.1-.79 5.66-2.35S20 15.64 20 13.64 19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z\\\"></path>\"\n      }\n    }\n  },\n  \"spellcheck\": {\n    \"name\": \"spellcheck\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_visible\": {\n    \"name\": \"disabled_visible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,15c-1.95,0-3.76,0.98-4.75,2.5C13.24,19.02,15.05,20,17,20s3.76-0.98,4.75-2.5 C20.76,15.98,18.95,15,17,15z M17,19c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,18.33,17.83,19,17,19 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,15c1.95,0,3.76,0.98,4.75,2.5C20.76,19.02,18.95,20,17,20s-3.76-0.98-4.75-2.5C13.24,15.98,15.05,15,17,15z M17,13 c-3.18,0-5.9,1.87-7,4.5c1.1,2.63,3.82,4.5,7,4.5s5.9-1.87,7-4.5C22.9,14.87,20.18,13,17,13z M17,19c-0.83,0-1.5-0.67-1.5-1.5 S16.17,16,17,16s1.5,0.67,1.5,1.5S17.83,19,17,19z M21.99,12.34C22,12.23,22,12.11,22,12c0-5.52-4.48-10-10-10S2,6.48,2,12 c0,5.17,3.93,9.43,8.96,9.95c-0.93-0.73-1.72-1.64-2.32-2.68C5.9,18,4,15.22,4,12c0-1.85,0.63-3.55,1.69-4.9l5.66,5.66 c0.56-0.4,1.17-0.73,1.82-1L7.1,5.69C8.45,4.63,10.15,4,12,4c4.24,0,7.7,3.29,7.98,7.45C20.69,11.67,21.37,11.97,21.99,12.34z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.25,12.5c-1.67,0-3.21,0.78-4.04,2c0.83,1.22,2.37,2,4.04,2s3.21-0.78,4.04-2 C17.46,13.28,15.92,12.5,14.25,12.5z M14.25,15.75c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25 S14.94,15.75,14.25,15.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.25,12.5c1.67,0,3.21,0.78,4.04,2c-0.83,1.22-2.37,2-4.04,2s-3.21-0.78-4.04-2C11.04,13.28,12.58,12.5,14.25,12.5z M14.25,11c-2.61,0-4.85,1.45-5.75,3.5c0.9,2.05,3.14,3.5,5.75,3.5s4.85-1.45,5.75-3.5C19.1,12.45,16.86,11,14.25,11z M14.25,15.75 c-0.69,0-1.25-0.56-1.25-1.25s0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25S14.94,15.75,14.25,15.75z M17.99,10.38 C18,10.26,18,10.13,18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8c0,4.24,3.3,7.71,7.47,7.98c-0.73-0.53-1.35-1.18-1.83-1.93 C5.22,15.11,3.5,12.75,3.5,10c0-1.52,0.53-2.92,1.41-4.03l4.85,4.85c0.43-0.29,0.9-0.53,1.39-0.73L5.97,4.91 C7.08,4.03,8.48,3.5,10,3.5c3.51,0,6.39,2.81,6.5,6.3C17.02,9.95,17.52,10.14,17.99,10.38z\\\"></path>\"\n      }\n    }\n  },\n  \"power_settings_new\": {\n    \"name\": \"power_settings_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_hdmi\": {\n    \"name\": \"settings_input_hdmi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 9H7v3.53l2.79 5.58.21.42V20h4v-1.47l.21-.42L17 12.53V9h-1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2.01V5h-1v2H11V5h-1v2H8V4zm9 8.53l-3 6V20h-4v-1.47l-3-6V9h10v3.53z\\\"></path>\"\n      }\n    }\n  },\n  \"label_off\": {\n    \"name\": \"label_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 7.03V17h9.97zM16 7h-5.37l7.29 7.29L19.55 12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 7l3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zm3 3L14.97 17H5V7.03z\\\"></path>\"\n      }\n    }\n  },\n  \"hotel_class\": {\n    \"name\": \"hotel_class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"11,8.89 11.94,12 14.76,12 12.49,13.62 13.42,16.63 11,14.79 8.58,16.63 9.51,13.62 7.24,12 10.06,12\\\"></polygon><path d=\\\"m11 8.89.94 3.11h2.82l-2.27 1.62.93 3.01L11 14.79l-2.42 1.84.93-3.01L7.24 12h2.82L11 8.89zM8.58 10H1l6.17 4.41L4.83 22 11 17.31 17.18 22l-2.35-7.59L21 10h-7.58L11 2l-2.42 8zm12.78 12-1.86-6.01L23.68 13h-3.44l-3.08 2.2 1.46 4.72L21.36 22zM17 8l-1.82-6-1.04 3.45.77 2.55H17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"9,6.88 9.85,9.5 12.7,9.5 10.32,11.39 11.12,13.97 9,12.36 6.88,13.97 7.68,11.39 5.3,9.5 8.15,9.5\\\"></polygon><path d=\\\"m9 6.88.85 2.62h2.86l-2.38 1.89.8 2.58L9 12.36l-2.12 1.61.8-2.58L5.3 9.5h2.86L9 6.88zM7.06 8H1l4.94 3.93L4.06 18 9 14.25 13.94 18l-1.88-6.07L17 8h-6.06L9 2 7.06 8zm4.3-3.56.67 2.06h1.58L12.15 2l-.79 2.44zM16.9 10l-3.1 2.47 1.23 3.97L17.08 18l-1.55-5 3.77-3h-2.4z\\\"></path>\"\n      }\n    }\n  },\n  \"expand\": {\n    \"name\": \"expand\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M4,20h16v2H4V20z M4,2h16v2H4V2z M13,9h3l-4-4L8,9h3v6H8l4,4l4-4h-3V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"visibility_off\": {\n    \"name\": \"visibility_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 14c.04 0 .08-.01.12-.01l-2.61-2.61c0 .04-.01.08-.01.12 0 1.38 1.12 2.5 2.5 2.5zm1.01-4.79l1.28 1.28c-.26-.57-.71-1.03-1.28-1.28zm7.81 2.29C19.17 8.13 15.79 6 12 6c-.68 0-1.34.09-1.99.22l.92.92c.35-.09.7-.14 1.07-.14 2.48 0 4.5 2.02 4.5 4.5 0 .37-.06.72-.14 1.07l2.05 2.05c.98-.86 1.81-1.91 2.41-3.12zM12 17c.95 0 1.87-.13 2.75-.39l-.98-.98c-.54.24-1.14.37-1.77.37-2.48 0-4.5-2.02-4.5-4.5 0-.63.13-1.23.36-1.77L6.11 7.97c-1.22.91-2.23 2.1-2.93 3.52C4.83 14.86 8.21 17 12 17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm2.28 4.49l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.06-1.07.14L13 9.21c.58.25 1.03.71 1.28 1.28zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_access_shortcut\": {\n    \"name\": \"switch_access_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06 L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11L4.37,12.37z M12,12 c0-2.73,1.08-5.27,2.75-7.25L12,2h7v7l-2.82-2.82C14.84,7.82,14,9.88,14,12c0,3.32,2.1,6.36,5,7.82L19,22 C14.91,20.41,12,16.35,12,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.2,0.83-4.24,2.2-5.8L10,2h5.5v5.5l-2.23-2.23C12.17,6.55,11.5,8.21,11.5,10c0,2.81,1.64,5.23,4,6.37 L15.5,18z\\\"></path>\"\n      }\n    }\n  },\n  \"find_in_page\": {\n    \"name\": \"find_in_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 4v16h11.6l-2.85-2.85c-.83.55-1.79.83-2.75.83-1.28 0-2.55-.49-3.53-1.46-1.95-1.95-1.95-5.11 0-7.05C9.45 8.49 10.72 8 12 8c1.28 0 2.55.49 3.53 1.46 1.71 1.71 1.92 4.34.64 6.28L18 17.58V9l-5-5H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 15.58l-1.84-1.84c1.28-1.94 1.07-4.57-.64-6.28C14.55 8.49 13.28 8 12 8c-1.28 0-2.55.49-3.53 1.46-1.95 1.95-1.95 5.11 0 7.05.97.97 2.25 1.46 3.53 1.46.96 0 1.92-.28 2.75-.83L17.6 20H6V4h7l5 5v8.58zm-3.01-4.59c0 .8-.31 1.55-.88 2.11-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11S11.2 10 12 10s1.55.31 2.11.88c.57.56.88 1.31.88 2.11z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_in\": {\n    \"name\": \"zoom_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"done\": {\n    \"name\": \"done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark\": {\n    \"name\": \"bookmark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17.97l5-2.15 5 2.15V5H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97l-5-2.14-5 2.14V5h10v12.97z\\\"></path>\"\n      }\n    }\n  },\n  \"subtitles_off\": {\n    \"name\": \"subtitles_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"8.83,6 12.83,10 18,10 18,12 14.83,12 20,17.17 20,6\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"15.17,18 13.17,16 6,16 6,14 11.17,14 8,10.83 8,12 6,12 6,10 7.17,10 4,6.83 4,18\\\"></polygon><g><polygon points=\\\"18,10 12.83,10 14.83,12 18,12\\\"></polygon><path d=\\\"M20,4H6.83l2,2H20v11.17l1.76,1.76C21.91,18.65,22,18.34,22,18V6C22,4.9,21.1,4,20,4z\\\"></path><path d=\\\"M1.04,3.87l1.2,1.2C2.09,5.35,2,5.66,2,6v12c0,1.1,0.9,2,2,2h13.17l2.96,2.96l1.41-1.41L2.45,2.45L1.04,3.87z M4,6.83 L7.17,10H6v2h2v-1.17L11.17,14H6v2h7.17l2,2H4V6.83z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.59,15L12,13.41V14H5v-1h6.59l-1-1H8v-1h1.59L4,5.41V15H13.59z M5,11h2v1H5V11z\\\" opacity=\\\".3\\\"></path><polygon opacity=\\\".3\\\" points=\\\"6.41,5 12.41,11 15,11 15,12 13.41,12 16,14.59 16,5\\\"></polygon><g><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><polygon points=\\\"15,12 15,11 12.41,11 13.41,12\\\"></polygon><path d=\\\"M16,5v9.59l0.87,0.87C16.95,15.32,17,15.17,17,15V5c0-0.55-0.45-1-1-1H5.41l1,1H16z\\\"></path><path d=\\\"M2.93,2.93L2.22,3.64l0.9,0.9C3.05,4.68,3,4.83,3,5v10c0,0.55,0.45,1,1,1h10.59l1.78,1.78l0.71-0.71L2.93,2.93z M4,15 V5.41L9.59,11H8v1h2.59l1,1H5v1h7v-0.59L13.59,15H4z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"verified\": {\n    \"name\": \"verified\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.49,9.88l0.08-0.85l0.18-1.95l-1.9-0.43l-0.84-0.19l-0.44-0.74l-0.99-1.68L12.79,4.8L12,5.14L11.21,4.8 L9.42,4.03L8.43,5.71L7.99,6.45L7.15,6.64l-1.9,0.43l0.18,1.94l0.08,0.85l-0.56,0.65l-1.29,1.48l1.29,1.47l0.56,0.65l-0.08,0.85 l-0.18,1.96l1.9,0.43l0.84,0.19l0.44,0.74l0.99,1.67l1.78-0.77L12,18.85l0.79,0.34l1.78,0.77l0.99-1.68l0.44-0.74l0.84-0.19 l1.9-0.43l-0.18-1.95l-0.08-0.85l0.56-0.65l1.29-1.47l-1.29-1.47L18.49,9.88z M10.09,16.72l-3.8-3.81l1.48-1.48l2.32,2.33 l5.85-5.87l1.48,1.48L10.09,16.72z\\\" opacity=\\\".3\\\"></path><path d=\\\"M23,11.99l-2.44-2.79l0.34-3.69l-3.61-0.82L15.4,1.5L12,2.96L8.6,1.5L6.71,4.69L3.1,5.5L3.44,9.2L1,11.99l2.44,2.79 l-0.34,3.7l3.61,0.82L8.6,22.5l3.4-1.47l3.4,1.46l1.89-3.19l3.61-0.82l-0.34-3.69L23,11.99z M19.05,13.47l-0.56,0.65l0.08,0.85 l0.18,1.95l-1.9,0.43l-0.84,0.19l-0.44,0.74l-0.99,1.68l-1.78-0.77L12,18.85l-0.79,0.34l-1.78,0.77l-0.99-1.67l-0.44-0.74 l-0.84-0.19l-1.9-0.43l0.18-1.96l0.08-0.85l-0.56-0.65l-1.29-1.47l1.29-1.48l0.56-0.65L5.43,9.01L5.25,7.07l1.9-0.43l0.84-0.19 l0.44-0.74l0.99-1.68l1.78,0.77L12,5.14l0.79-0.34l1.78-0.77l0.99,1.68l0.44,0.74l0.84,0.19l1.9,0.43l-0.18,1.95l-0.08,0.85 l0.56,0.65l1.29,1.47L19.05,13.47z\\\"></path><polygon points=\\\"10.09,13.75 7.77,11.42 6.29,12.91 10.09,16.72 17.43,9.36 15.95,7.87\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.67,10l-1.2-1.37L15.19,8.3l0.04-0.43l0.17-1.81l-1.77-0.4l-0.42-0.1l-0.22-0.37l-0.93-1.56L10.4,4.35 L10,4.52L9.6,4.35L7.94,3.63L7.01,5.19L6.79,5.56L6.37,5.66L4.6,6.06l0.17,1.81l0.04,0.43L4.53,8.62L3.33,10l1.2,1.37l0.28,0.32 l-0.04,0.43L4.6,13.94l1.77,0.4l0.42,0.1l0.22,0.37l0.93,1.56l1.66-0.72l0.4-0.17l0.4,0.17l1.66,0.72l0.93-1.56l0.22-0.37 l0.42-0.1l1.77-0.4l-0.17-1.81l-0.04-0.43l0.28-0.32L16.67,10z M8.59,13.07l-2.12-2.12l0.71-0.71l1.41,1.41l4.24-4.24l0.71,0.71 L8.59,13.07z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,10l-1.77-2.03l0.25-2.69l-2.63-0.6l-1.37-2.32L10,3.43L7.53,2.36L6.15,4.68L3.53,5.28l0.25,2.69L2,10l1.77,2.03 l-0.25,2.69l2.63,0.6l1.37,2.32L10,16.56l2.47,1.07l1.37-2.32l2.63-0.6l-0.25-2.69L18,10z M15.23,12.12l0.17,1.81l-1.77,0.4 l-0.42,0.1l-0.22,0.37l-0.93,1.56l-1.66-0.72L10,15.47l-0.4,0.17l-1.66,0.72l-0.93-1.56l-0.22-0.37l-0.42-0.1l-1.77-0.4l0.17-1.82 l0.04-0.43l-0.28-0.32L3.33,10l1.2-1.38l0.28-0.32L4.77,7.87L4.6,6.06l1.77-0.4l0.42-0.09l0.22-0.37l0.93-1.56L9.6,4.35L10,4.52 l0.4-0.17l1.66-0.72l0.93,1.56l0.22,0.37l0.42,0.1l1.77,0.4l-0.17,1.81L15.19,8.3l0.28,0.32l1.2,1.37l-1.2,1.37l-0.28,0.32 L15.23,12.12z\\\"></path><polygon points=\\\"8.59,11.65 7.17,10.24 6.46,10.95 8.59,13.07 13.54,8.12 12.83,7.41\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"arrow_circle_left\": {\n    \"name\": \"arrow_circle_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8s3.59-8,8-8S20,7.59,20,12 M12,13l4,0v-2l-4,0V8l-4,4l4,4V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8s3.59-8,8-8S20,7.59,20,12 M22,12c0-5.52-4.48-10-10-10C6.48,2,2,6.48,2,12 c0,5.52,4.48,10,10,10C17.52,22,22,17.52,22,12L22,12z M12,13l4,0v-2l-4,0V8l-4,4l4,4V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,10c0,3.58,2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5S3.5,6.42,3.5,10z M10,9.25h3v1.5h-3V13 l-3-3l3-3V9.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,13l-3-3l3-3v2.25h3v1.5h-3V13z M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M16.5,10 c0,3.58-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10S6.42,3.5,10,3.5S16.5,6.42,16.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"addchart\": {\n    \"name\": \"addchart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5v2h-3v3h-2V7h-3V5h3V2h2v3H22z M19,19H5V5h6V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6h-2V19z M15,13v4h2v-4H15z M11,17h2V9h-2V17z M9,17v-6H7v6H9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"delete_outline\": {\n    \"name\": \"delete_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"redeem\": {\n    \"name\": \"redeem\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17h16v2H4zm13-6.17L15.38 12 13 8.76 12 7.4l-1 1.36L8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_svideo\": {\n    \"name\": \"settings_input_svideo\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm-7 8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zM8.5 18c-.83 0-1.5-.67-1.5-1.5S7.67 15 8.5 15s1.5.67 1.5 1.5S9.33 18 8.5 18zm2-10C9.67 8 9 7.33 9 6.5S9.67 5 10.5 5h3c.83 0 1.5.67 1.5 1.5S14.33 8 13.5 8h-3zm5 10c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2-5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 6.5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"17.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"assignment_ind\": {\n    \"name\": \"assignment_ind\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v14h14V5zm-7 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.66 3.88c-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.41-.13-.8-.34-1.12zM12 2.75c.22 0 .41.1.55.25.12.13.2.31.2.5 0 .41-.34.75-.75.75s-.75-.34-.75-.75c0-.19.08-.37.2-.5.14-.15.33-.25.55-.25zM19 19H5V5h14v14zm-7-7c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 2.88c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31z\\\"></path>\"\n      }\n    }\n  },\n  \"abc\": {\n    \"name\": \"abc\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V11z M8,10v5H6.5v-1.5h-2V15H3v-5c0-0.55,0.45-1,1-1h3C7.55,9,8,9.45,8,10z M6.5,10.5h-2V12h2V10.5z M13.5,12c0.55,0,1,0.45,1,1v1 c0,0.55-0.45,1-1,1h-4V9h4c0.55,0,1,0.45,1,1v1C14.5,11.55,14.05,12,13.5,12z M11,10.5v0.75h2V10.5H11z M13,12.75h-2v0.75h2V12.75z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13,8.5C13,8.22,13.22,8,13.5,8h2C15.78,8,16,8.22,16,8.5v0.75h-1V9h-1v2h1v-0.25l1-0.01v0.76c0,0.28-0.22,0.5-0.5,0.5h-2 c-0.28,0-0.5-0.22-0.5-0.5V8.5z M7,8.5V12H6v-1H5v1H4V8.5C4,8.22,4.22,8,4.5,8h2C6.78,8,7,8.22,7,8.5z M6,9H5v1h1V9z M11,10 c0.28,0,0.5,0.22,0.5,0.5v1c0,0.27-0.22,0.5-0.5,0.5H8.5V8H11c0.28,0,0.5,0.22,0.5,0.5v1C11.5,9.77,11.28,10,11,10z M9.5,9v0.5h1V9 H9.5z M10.5,11v-0.5h-1V11H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"unfold_more_double\": {\n    \"name\": \"unfold_more_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,7.83L15.17,11l1.41-1.41L12,5L7.41,9.59L8.83,11L12,7.83z M12,2.83L15.17,6l1.41-1.41L12,0L7.41,4.59L8.83,6L12,2.83 z M12,21.17L8.83,18l-1.41,1.41L12,24l4.59-4.59L15.17,18L12,21.17z M12,16.17L8.83,13l-1.41,1.41L12,19l4.59-4.59L15.17,13 L12,16.17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"6.63,7.37 7.69,8.43 10,6.12 12.31,8.43 13.37,7.37 10,4\\\"></polygon><polygon points=\\\"6.63,3.37 7.69,4.43 10,2.12 12.31,4.43 13.37,3.37 10,0\\\"></polygon><polygon points=\\\"13.37,16.63 12.31,15.57 10,17.88 7.69,15.57 6.63,16.63 10,20\\\"></polygon><polygon points=\\\"13.37,12.63 12.31,11.57 10,13.88 7.69,11.57 6.63,12.63 10,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"youtube_searched_for\": {\n    \"name\": \"youtube_searched_for\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.01 14h-.8l-.27-.27c.98-1.14 1.57-2.61 1.57-4.23 0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51C6.51 7 8.53 5 11.01 5s4.5 2.01 4.5 4.5c0 2.48-2.02 4.5-4.5 4.5-.65 0-1.26-.14-1.82-.38L7.71 15.1c.97.57 2.09.9 3.3.9 1.61 0 3.08-.59 4.22-1.57l.27.27v.79l5.01 4.99L22 19l-4.99-5z\\\"></path>\"\n      }\n    }\n  },\n  \"compress\": {\n    \"name\": \"compress\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><polygon points=\\\"16,4 13,4 13,1 11,1 11,4 8,4 12,8\\\"></polygon><polygon points=\\\"8,19 11,19 11,22 13,22 13,19 16,19 12,15\\\"></polygon><rect height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"room\": {\n    \"name\": \"room\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\\\"></path><circle cx=\\\"12\\\" cy=\\\"9\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"lightbulb_circle\": {\n    \"name\": \"lightbulb_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M12,19c-0.83,0-1.5-0.67-1.5-1.5h3 C13.5,18.33,12.83,19,12,19z M15,16.5H9V15h6V16.5z M14.97,14H9.03C7.8,13.09,7,11.64,7,10c0-2.76,2.24-5,5-5s5,2.24,5,5 C17,11.64,16.2,13.09,14.97,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path><path d=\\\"M12,19c0.83,0,1.5-0.67,1.5-1.5h-3C10.5,18.33,11.17,19,12,19z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"15\\\"></rect><path d=\\\"M12,5c-2.76,0-5,2.24-5,5c0,1.64,0.8,3.09,2.03,4h5.95C16.2,13.09,17,11.64,17,10C17,7.24,14.76,5,12,5z M14.43,12.5H9.57 C8.89,11.84,8.5,10.95,8.5,10c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5C15.5,10.95,15.11,11.84,14.43,12.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5z M10,15.5 c-0.55,0-1-0.45-1-1h2C11,15.05,10.55,15.5,10,15.5z M12.5,13.75h-5v-1h5V13.75z M12.62,12H7.38C6.54,11.27,6,10.2,6,9 c0-2.21,1.79-4,4-4s4,1.79,4,4C14,10.2,13.46,11.27,12.62,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"12.75\\\"></rect><path d=\\\"M10,15.5c0.55,0,1-0.45,1-1H9C9,15.05,9.45,15.5,10,15.5z\\\"></path><path d=\\\"M10,5C7.79,5,6,6.79,6,9c0,1.2,0.54,2.27,1.38,3h5.24C13.46,11.27,14,10.2,14,9C14,6.79,12.21,5,10,5z M12.22,11H7.78 C7.28,10.45,7,9.75,7,9c0-1.65,1.35-3,3-3c1.65,0,3,1.35,3,3C13,9.75,12.72,10.45,12.22,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"open_in_browser\": {\n    \"name\": \"open_in_browser\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"question_answer\": {\n    \"name\": \"question_answer\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 11V4H4v8.17l.59-.58.58-.59H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-5 7c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zM4.59 11.59l-.59.58V4h11v7H5.17l-.58.59z\\\"></path>\"\n      }\n    }\n  },\n  \"card_membership\": {\n    \"name\": \"card_membership\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h16v6H4zm0 9h16v2H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_full\": {\n    \"name\": \"open_in_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"21,11 21,3 13,3 16.29,6.29 6.29,16.29 3,13 3,21 11,21 7.71,17.71 17.71,7.71\\\"></polygon>\"\n      }\n    }\n  },\n  \"schedule\": {\n    \"name\": \"schedule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmark_add\": {\n    \"name\": \"bookmark_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,17.97l0-7.07c-2.28-0.46-4-2.48-4-4.9c0-0.34,0.03-0.68,0.1-1L7,5v12.97l5-2.14L17,17.97z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,7h-2v2h-2V7h-2V5h2V3h2v2h2V7z M17,17.97l-5-2.14l-5,2.14V5l6.1,0c0.15-0.74,0.46-1.42,0.9-2L7,3C5.9,3,5,3.9,5,5v16 l7-3l7,3l0-10.1c-0.32,0.07-0.66,0.1-1,0.1c-0.34,0-0.68-0.03-1-0.1L17,17.97z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,14.78l-3.5-1.4l-3.5,1.4V4.5l4.53,0C11.01,4.66,11,4.83,11,5c0,1.68,1.03,3.12,2.5,3.71L13.5,14.78z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.75,4.25v-1.5h-1.5v1.5h-1.5v1.5h1.5v1.5h1.5v-1.5h1.5v-1.5H15.75z M15,17l-5-2l-5,2V4.5C5,3.67,5.67,3,6.5,3l5.04,0 c-0.26,0.45-0.44,0.96-0.5,1.5l-4.53,0v10.28l3.5-1.4l3.5,1.4V8.71h0C13.96,8.9,14.47,9,15,9V17z\\\"></path>\"\n      }\n    }\n  },\n  \"repartition\": {\n    \"name\": \"repartition\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"3.33\\\" x=\\\"15.67\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"3.33\\\" x=\\\"10.33\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"3.33\\\" x=\\\"5\\\" y=\\\"17\\\"></rect><path d=\\\"M3,21h18v-6H3V21z M15.67,17H19v2h-3.33V17z M10.33,17h3.33v2h-3.33V17z M5,17h3.33v2H5V17z\\\"></path><path d=\\\"M6,10l1.42-1.42L5.83,7H17c1.1,0,2,0.9,2,2s-0.9,2-2,2H3v2h14c2.21,0,4-1.79,4-4s-1.79-4-4-4H5.83l1.59-1.59L6,2L2,6L6,10 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2.67\\\" x=\\\"8.67\\\" y=\\\"13.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2.67\\\" x=\\\"12.83\\\" y=\\\"13.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2.67\\\" x=\\\"4.5\\\" y=\\\"13.5\\\"></rect><path d=\\\"M6.06,7.19L4.87,6H14c0.83,0,1.5,0.67,1.5,1.5S14.83,9,14,9H3v1.5h11c1.65,0,3-1.35,3-3s-1.35-3-3-3H4.87l1.19-1.19 L5,2.25l-3,3l3,3L6.06,7.19z\\\"></path><path d=\\\"M3,17h14v-5H3V17z M12.83,13.5h2.67v2h-2.67V13.5z M8.67,13.5h2.67v2H8.67V13.5z M4.5,13.5h2.67v2H4.5V13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hourglass_disabled\": {\n    \"name\": \"hourglass_disabled\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"8,4 16,4 16,7.5 13.16,10.34 14.41,11.59 18,8.01 17.99,8 18,8 18,2 6,2 6,3.17 8,5.17\\\"></polygon><path d=\\\"M2.1,2.1L0.69,3.51l8.9,8.9L6,16l0.01,0.01H6V22h12v-1.17l2.49,2.49l1.41-1.41L2.1,2.1z M16,20H8v-3.5l2.84-2.84L16,18.83 V20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"7,4 13,4 13,6.59 10.5,9.09 11.21,9.79 14,7 14,7 14,3 6,3 6,4.59 7,5.59\\\"></polygon><path d=\\\"M2.93,2.93L2.22,3.64l6.57,6.57L6,13h0v4h8v-1.59l2.36,2.36l0.71-0.71L2.93,2.93z M13,16H7l0-2.59l2.5-2.5l3.5,3.5V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"hls\": {\n    \"name\": \"hls\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6.5,9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9z M16.5,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H17v-1h2V11h1.5v-1 c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1H19v1h-2V13h-1.5v1C15.5,14.55,15.95,15,16.5,15z M14,15v-1.5h-2.5 V9H10v6H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,8h1v4H6v-1.5H5V12H4V8h1v1.5h1V8z M13.5,12h2c0.28,0,0.5-0.22,0.5-0.5v-1.25c0-0.28-0.22-0.5-0.5-0.5H14V9h1v0.25h1V8.5 C16,8.22,15.78,8,15.5,8h-2C13.22,8,13,8.22,13,8.5v1.25c0,0.28,0.22,0.5,0.5,0.5H15V11h-1v-0.25h-1v0.75 C13,11.78,13.22,12,13.5,12z M11.5,11H10V8H9v4l2.5,0V11z\\\"></path></g>\"\n      }\n    }\n  },\n  \"language\": {\n    \"name\": \"language\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.08 8h2.95c.32-1.25.78-2.45 1.38-3.56-1.84.63-3.37 1.9-4.33 3.56zm2.42 4c0-.68.06-1.34.14-2H4.26c-.16.64-.26 1.31-.26 2s.1 1.36.26 2h3.38c-.08-.66-.14-1.32-.14-2zm-2.42 4c.96 1.66 2.49 2.93 4.33 3.56-.6-1.11-1.06-2.31-1.38-3.56H5.08zM12 4.04c-.83 1.2-1.48 2.53-1.91 3.96h3.82c-.43-1.43-1.08-2.76-1.91-3.96zM18.92 8c-.96-1.65-2.49-2.93-4.33-3.56.6 1.11 1.06 2.31 1.38 3.56h2.95zM12 19.96c.83-1.2 1.48-2.53 1.91-3.96h-3.82c.43 1.43 1.08 2.76 1.91 3.96zm2.59-.4c1.84-.63 3.37-1.91 4.33-3.56h-2.95c-.32 1.25-.78 2.45-1.38 3.56zM19.74 10h-3.38c.08.66.14 1.32.14 2s-.06 1.34-.14 2h3.38c.16-.64.26-1.31.26-2s-.1-1.36-.26-2zM9.66 10c-.09.65-.16 1.32-.16 2s.07 1.34.16 2h4.68c.09-.66.16-1.32.16-2s-.07-1.35-.16-2H9.66z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2s.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2s.07-1.35.16-2h4.68c.09.65.16 1.32.16 2s-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2s-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z\\\"></path>\"\n      }\n    }\n  },\n  \"store\": {\n    \"name\": \"store\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.64 9l-.6 3h13.92l-.6-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 4h16v2H4zm16 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm-8 11H6v-4h6v4zm-6.96-6l.6-3h12.72l.6 3H5.04z\\\"></path>\"\n      }\n    }\n  },\n  \"privacy_tip\": {\n    \"name\": \"privacy_tip\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,3.19L5,6.3V11c0,4.52,2.98,8.69,7,9.93c4.02-1.23,7-5.41,7-9.93V6.3L12,3.19z M13,17h-2v-6h2V17z M13,9 h-2V7h2V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,3.19l7,3.11V11c0,4.52-2.98,8.69-7,9.93C7.98,19.69,5,15.52,5,11V6.3L12,3.19 M12,1L3,5v6c0,5.55,3.84,10.74,9,12 c5.16-1.26,9-6.45,9-12V5L12,1L12,1z M11,7h2v2h-2V7z M11,11h2v6h-2V11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,3.6l5,2.25v3.5c0,3.18-2.22,6.32-5,7.12c-2.78-0.8-5-3.94-5-7.12v-3.5L10,3.6 M10,2.5L4,5.2v4.15 c0,3.63,2.56,7.33,6,8.15c3.44-0.82,6-4.52,6-8.15V5.2L10,2.5L10,2.5z M10.5,9h-1v4h1V9z M10.5,7h-1v1h1V7z\\\"></path><path d=\\\"M10,3.6L5,5.85v3.5c0,3.18,2.22,6.32,5,7.12c2.78-0.8,5-3.94,5-7.12v-3.5L10,3.6z M10.5,13h-1V9h1V13z M10.5,8h-1V7h1V8z\\\" opacity=\\\".3\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_flat\": {\n    \"name\": \"trending_flat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 12l-4-4v3H3v2h15v3l4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_alt\": {\n    \"name\": \"filter_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24 M24,24H0\\\" fill=\\\"none\\\"></path><path d=\\\"M7,6h10l-5.01,6.3L7,6z M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6 c0,0,3.72-4.8,5.74-7.39C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><polygon opacity=\\\".3\\\" points=\\\"7,6 17,6 11.99,12.3\\\"></polygon>\"\n      }\n    }\n  },\n  \"settings_cell\": {\n    \"name\": \"settings_cell\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 17h8v1H8zM8 2h8v1H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 22h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 18H8v-1h8v1zm0-3H8V5h8v10zm0-12H8V2h8v1z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_view_month\": {\n    \"name\": \"calendar_view_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"6\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"13\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"13\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"13\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"6\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"6\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,18H4v-5h4V18z M8,11H4V6h4V11z M14,18h-4v-5h4V18z M14,11h-4V6h4V11z M20,18h-4v-5h4V18z M20,11h-4V6h4V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"contact_support\": {\n    \"name\": \"contact_support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 3C7.36 3 4 6.36 4 10.5S7.36 18 11.5 18H13v2.3c3.64-2.3 6-6.08 6-9.8C19 6.36 15.64 3 11.5 3zm1 13.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.5 1C6.26 1 2 5.26 2 10.5c0 5.07 3.99 9.23 9 9.49v3.6l1.43-.69C17.56 20.43 21 15.45 21 10.5 21 5.26 16.74 1 11.5 1zM13 20.3V18h-1.5C7.36 18 4 14.64 4 10.5S7.36 3 11.5 3 19 6.36 19 10.5c0 3.73-2.36 7.51-6 9.8zm-2.5-5.8h2v2h-2zm1-10.5c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"voice_over_off\": {\n    \"name\": \"voice_over_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2zM7 9c0 1.1.9 2 2 2 .22 0 .42-.04.62-.11L7.11 8.38c-.07.2-.11.4-.11.62z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53c-.2-1.86-1.67-3.33-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86zM3 19c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zm6-8c-1.1 0-2-.9-2-2 0-.22.04-.42.11-.62l2.51 2.51c-.2.07-.4.11-.62.11z\\\"></path>\"\n      }\n    }\n  },\n  \"dynamic_form\": {\n    \"name\": \"dynamic_form\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,9h7V6H4V9z M4,18h9v-3H4V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,11H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h9V11z M4,9h7V6H4V9z M15,20H4c-1.1,0-2-0.9-2-2v-3c0-1.1,0.9-2,2-2h11V20z M4,18h9v-3H4V18z M22,9h-2l2-5h-7v7h2v9L22,9z M4.75,17.25h1.5v-1.5h-1.5V17.25z M4.75,8.25h1.5v-1.5h-1.5V8.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"123\": {\n    \"name\": \"123\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M7,15H5.5v-4.5H4V9h3V15z M13.5,13.5h-3v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H9v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15 h4.5V13.5z M19.5,14v-4c0-0.55-0.45-1-1-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15,19.5,14.55,19.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M6,12H5V9H4V8h2V12z M11,11H9v-0.5h1.5c0.28,0,0.5-0.22,0.5-0.5V8.5C11,8.22,10.78,8,10.5,8H8v1h2v0.5H8.5 C8.22,9.5,8,9.72,8,10v2h3V11z M15.5,11.5v-3C15.5,8.22,15.28,8,15,8h-2.5v1h2v0.5h-1v1h1V11h-2v1H15 C15.28,12,15.5,11.78,15.5,11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"trending_up\": {\n    \"name\": \"trending_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"wysiwyg\": {\n    \"name\": \"wysiwyg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,19H5V7h14V19z M17,12H7v-2h10V12z M13,16H7v-2h6V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.11,3,19,3z M19,19H5V7h14V19z M17,12H7v-2 h10V12z M13,16H7v-2h6V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"search\": {\n    \"name\": \"search\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_tracking\": {\n    \"name\": \"spatial_tracking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M20.05,2.41L18.64,1c-3.51,3.51-3.51,9.21,0,12.73l1.41-1.41C17.32,9.58,17.32,5.14,20.05,2.41z\\\"></path><path d=\\\"M22.88,5.24l-1.41-1.41c-1.95,1.95-1.95,5.12,0,7.07l1.41-1.41C21.71,8.32,21.71,6.41,22.88,5.24z\\\"></path><path d=\\\"M15.48,17.34C14.29,16.73,12.37,16,10,16c-2.37,0-4.29,0.73-5.48,1.34C4.2,17.5,4,17.84,4,18.22V19h12 v-0.78C16,17.84,15.8,17.5,15.48,17.34z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"9\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C8,7.9,8.9,7,10,7z\\\"></path><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z M16,19H4v-0.78c0-0.38,0.2-0.72,0.52-0.88C5.71,16.73,7.63,16,10,16 c2.37,0,4.29,0.73,5.48,1.34C15.8,17.5,16,17.84,16,18.22V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.4,2.06L15.34,1c-3.12,3.12-3.12,8.19,0,11.31l1.06-1.06C13.87,8.72,13.87,4.59,16.4,2.06z\\\"></path><path d=\\\"M18.53,4.18l-1.06-1.06c-1.95,1.95-1.95,5.12,0,7.07l1.06-1.06C17.16,7.77,17.16,5.55,18.53,4.18z\\\"></path><circle cx=\\\"8\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8,13.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C10.98,13.9,9.5,13.5,8,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"html\": {\n    \"name\": \"html\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3.5,9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9z M17.5,9H13c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1V14H16v-3.51h1V15h1.5v-5 C18.5,9.45,18.05,9,17.5,9z M11,9H6v1.5h1.75V15h1.5v-4.5H11V9z M24,15v-1.5h-2.5V9H20v6H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4,8h1v4H4v-1.5H3V12H2V8h1v1.5h1V8z M6,9h1v3h1V9h1V8H6V9z M18.5,11H17V8h-1v4l2.5,0V11z M14.5,8h-4 C10.22,8,10,8.22,10,8.5V12h1V9h1v2h1V9h1v3h1V8.5C15,8.22,14.78,8,14.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"settings_backup_restore\": {\n    \"name\": \"settings_backup_restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z\\\"></path>\"\n      }\n    }\n  },\n  \"admin_panel_settings\": {\n    \"name\": \"admin_panel_settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,7.58l-5.5-2.4L5,7.58v3.6c0,3.5,2.33,6.74,5.5,7.74c0.25-0.08,0.49-0.2,0.73-0.3 C11.08,18.11,11,17.56,11,17c0-2.97,2.16-5.43,5-5.91V7.58z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,14.38 c0.62,0,1.12,0.51,1.12,1.12s-0.51,1.12-1.12,1.12s-1.12-0.51-1.12-1.12S16.38,14.38,17,14.38z M17,19.75 c-0.93,0-1.74-0.46-2.24-1.17c0.05-0.72,1.51-1.08,2.24-1.08s2.19,0.36,2.24,1.08C18.74,19.29,17.93,19.75,17,19.75z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"17\\\" cy=\\\"15.5\\\" r=\\\"1.12\\\"></circle><path d=\\\"M18,11.09V6.27L10.5,3L3,6.27v4.91c0,4.54,3.2,8.79,7.5,9.82c0.55-0.13,1.08-0.32,1.6-0.55C13.18,21.99,14.97,23,17,23 c3.31,0,6-2.69,6-6C23,14.03,20.84,11.57,18,11.09z M11,17c0,0.56,0.08,1.11,0.23,1.62c-0.24,0.11-0.48,0.22-0.73,0.3 c-3.17-1-5.5-4.24-5.5-7.74v-3.6l5.5-2.4l5.5,2.4v3.51C13.16,11.57,11,14.03,11,17z M17,21c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4 s4,1.79,4,4C21,19.21,19.21,21,17,21z\\\"></path><path d=\\\"M17,17.5c-0.73,0-2.19,0.36-2.24,1.08c0.5,0.71,1.32,1.17,2.24,1.17s1.74-0.46,2.24-1.17C19.19,17.86,17.73,17.5,17,17.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,10c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C16,11.34,14.66,10,13,10z M13,11.03 c0.47,0,0.84,0.38,0.84,0.84c0,0.46-0.38,0.84-0.84,0.84s-0.84-0.38-0.84-0.84C12.16,11.41,12.53,11.03,13,11.03z M13,15.06 c-0.7,0-1.31-0.35-1.68-0.87c0.04-0.54,1.13-0.81,1.68-0.81s1.64,0.27,1.68,0.81C14.31,14.72,13.7,15.06,13,15.06z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,9V6.84L9,5.09L5,6.84v2.62c0,2.51,1.7,4.84,4,5.51c0.15-0.04,0.29-0.11,0.44-0.17 C9.17,14.25,9,13.65,9,13C9,10.79,10.79,9,13,9z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"13\\\" cy=\\\"11.88\\\" r=\\\".84\\\"></circle><path d=\\\"M13,13.38c-0.55,0-1.64,0.27-1.68,0.81c0.38,0.53,0.99,0.87,1.68,0.87s1.31-0.35,1.68-0.87 C14.64,13.64,13.55,13.38,13,13.38z\\\"></path><path d=\\\"M14,9.14V6.18L9,4L4,6.18v3.27c0,3.03,2.13,5.86,5,6.55c0.35-0.08,0.7-0.2,1.02-0.35C10.76,16.47,11.81,17,13,17 c2.21,0,4-1.79,4-4C17,11.14,15.72,9.59,14,9.14z M9,14.97c-2.3-0.67-4-3-4-5.51V6.84l4-1.75l4,1.75V9c-2.21,0-4,1.79-4,4 c0,0.65,0.17,1.25,0.44,1.79C9.29,14.85,9.15,14.92,9,14.97z M13,16c-1.66,0-3-1.34-3-3c0-1.66,1.34-3,3-3s3,1.34,3,3 C16,14.66,14.66,16,13,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"accessible_forward\": {\n    \"name\": \"accessible_forward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"18\\\" cy=\\\"4.54\\\" r=\\\"2\\\"></circle><path d=\\\"M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm3-3.5h-1.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-1.83 4.1c-.6 1.33.39 2.9 1.85 2.9H18v5h2v-5.5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle\": {\n    \"name\": \"check_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-2 13-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"face\": {\n    \"name\": \"face\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12C12.06 6.44 14.6 8 17.5 8zM8.08 5.03C6.37 6 5.05 7.58 4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 2c2.9 0 5.44 1.56 6.84 3.88-.43.07-.88.12-1.34.12-2.9 0-5.44-1.56-6.84-3.88.43-.07.88-.12 1.34-.12zM8.08 5.03C7.45 6.92 6.13 8.5 4.42 9.47 5.05 7.58 6.37 6 8.08 5.03zM12 20c-4.41 0-8-3.59-8-8 0-.05.01-.1.01-.15 2.6-.98 4.68-2.99 5.74-5.55 1.83 2.26 4.62 3.7 7.75 3.7.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle>\"\n      }\n    }\n  },\n  \"grading\": {\n    \"name\": \"grading\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,7h16v2H4V7z M4,13h16v-2H4V13z M4,17h7v-2H4V17z M4,21h7v-2H4V21z M15.41,18.17L14,16.75l-1.41,1.41L15.41,21L20,16.42 L18.58,15L15.41,18.17z M4,3v2h16V3H4z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"4\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"4.5\\\" x=\\\"5\\\" y=\\\"12.25\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"6.75\\\"></rect><rect height=\\\"1\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"9.5\\\"></rect><polygon points=\\\"12.17,14.59 11.46,13.88 10.76,14.59 12.17,16 15,13.17 14.29,12.46\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"contactless\": {\n    \"name\": \"contactless\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M8.46,14.45L7.1,13.83 c0.28-0.61,0.41-1.24,0.4-1.86c-0.01-0.63-0.14-1.24-0.4-1.8l1.36-0.63c0.35,0.75,0.53,1.56,0.54,2.4 C9.01,12.8,8.83,13.64,8.46,14.45z M11.53,16.01l-1.3-0.74c0.52-0.92,0.78-1.98,0.78-3.15c0-1.19-0.27-2.33-0.8-3.4l1.34-0.67 c0.64,1.28,0.96,2.65,0.96,4.07C12.51,13.55,12.18,14.86,11.53,16.01z M14.67,17.33l-1.35-0.66c0.78-1.6,1.18-3.18,1.18-4.69 c0-1.51-0.4-3.07-1.18-4.64l1.34-0.67C15.56,8.45,16,10.23,16,11.98C16,13.72,15.56,15.52,14.67,17.33z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path><path d=\\\"M7.1,10.18c0.26,0.56,0.39,1.16,0.4,1.8c0.01,0.63-0.13,1.25-0.4,1.86l1.37,0.62c0.37-0.81,0.55-1.65,0.54-2.5 c-0.01-0.84-0.19-1.65-0.54-2.4L7.1,10.18z\\\"></path><path d=\\\"M13.33,7.33c0.78,1.57,1.18,3.14,1.18,4.64c0,1.51-0.4,3.09-1.18,4.69l1.35,0.66c0.88-1.81,1.33-3.61,1.33-5.35 c0-1.74-0.45-3.53-1.33-5.31L13.33,7.33z\\\"></path><path d=\\\"M10.2,8.72c0.53,1.07,0.8,2.21,0.8,3.4c0,1.17-0.26,2.23-0.78,3.15l1.3,0.74c0.65-1.15,0.98-2.45,0.98-3.89 c0-1.42-0.32-2.79-0.96-4.07L10.2,8.72z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S13.31,16,10,16z\\\"></path><path d=\\\"M10,4c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S13.31,4,10,4z M7.63,11.71l-0.91-0.41 C6.91,10.86,7.01,10.42,7,9.98C6.99,9.53,6.9,9.11,6.72,8.71l0.91-0.42C7.87,8.82,7.99,9.38,8,9.97 C8.01,10.56,7.88,11.14,7.63,11.71z M9.82,12.79L8.95,12.3c0.37-0.65,0.55-1.39,0.55-2.22c0-0.84-0.19-1.64-0.57-2.39l0.89-0.45 c0.45,0.89,0.67,1.85,0.67,2.84C10.5,11.08,10.27,12,9.82,12.79z M12.07,13.72l-0.9-0.44c0.55-1.13,0.83-2.24,0.83-3.3 c0-1.06-0.28-2.16-0.83-3.26l0.9-0.44C12.69,7.52,13,8.77,13,9.99C13,11.2,12.69,12.46,12.07,13.72z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.72,8.71C6.9,9.11,6.99,9.53,7,9.98c0.01,0.44-0.09,0.88-0.28,1.31l0.91,0.41C7.88,11.14,8.01,10.56,8,9.97 C7.99,9.38,7.87,8.82,7.63,8.29L6.72,8.71z\\\"></path><path d=\\\"M11.17,6.72C11.72,7.83,12,8.93,12,9.99c0,1.06-0.28,2.17-0.83,3.3l0.9,0.44C12.69,12.46,13,11.2,13,9.99 c0-1.22-0.31-2.46-0.93-3.71L11.17,6.72z\\\"></path><path d=\\\"M8.94,7.69C9.31,8.44,9.5,9.25,9.5,10.08c0,0.83-0.19,1.57-0.55,2.22l0.87,0.49c0.45-0.8,0.68-1.71,0.68-2.71 c0-0.99-0.23-1.95-0.67-2.84L8.94,7.69z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"all_inbox\": {\n    \"name\": \"all_inbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 10h3.13c.21.78.67 1.47 1.27 2H5v-2zm14 2h-4.4c.6-.53 1.06-1.22 1.27-2H19v2zm0-4h-5v1c0 1.07-.93 2-2 2s-2-.93-2-2V8H5V5h14v3zm-5 7v1c0 .47-.19.9-.48 1.25-.37.45-.92.75-1.52.75s-1.15-.3-1.52-.75c-.29-.35-.48-.78-.48-1.25v-1H3v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4h-7zm-9 2h3.13c.02.09.06.17.09.25.24.68.65 1.28 1.18 1.75H5v-2zm14 2h-4.4c.54-.47.95-1.07 1.18-1.75.03-.08.07-.16.09-.25H19v2z\\\"></path><path d=\\\"M8.13 10H5v2h4.4c-.6-.53-1.06-1.22-1.27-2zm6.47 2H19v-2h-3.13c-.21.78-.67 1.47-1.27 2zm-6.38 5.25c-.03-.08-.06-.16-.09-.25H5v2h4.4c-.53-.47-.94-1.07-1.18-1.75zm7.65-.25c-.02.09-.06.17-.09.25-.23.68-.64 1.28-1.18 1.75H19v-2h-3.13z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"help\": {\n    \"name\": \"help\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 14h-2v-2h2v2zm0-3h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"offline_pin\": {\n    \"name\": \"offline_pin\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 13H7v-2h10v2zm-6.7-3L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-5h10v2H7zm3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"info_outline\": {\n    \"name\": \"info_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"highlight_off\": {\n    \"name\": \"highlight_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm4 10.59L14.59 16 12 13.41 9.41 16 8 14.59 10.59 12 8 9.41 9.41 8 12 10.59 14.59 8 16 9.41 13.41 12 16 14.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_scan_wifi\": {\n    \"name\": \"perm_scan_wifi\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5c-3.26 0-6.2.85-9.08 2.65L12 18.83l9.08-11.16C18.18 5.85 15.25 5 12 5zm1 11h-2v-6h2v6zm-2-8V6h2v2h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zM2.92 7.65C5.8 5.85 8.74 5 12 5c3.25 0 6.18.85 9.08 2.67L12 18.83 2.92 7.65zM11 10h2v6h-2zm0-4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"alarm_off\": {\n    \"name\": \"alarm_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52 0-4.97-4.03-9-9-9-1.25 0-2.44.26-3.53.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zm1.903 16.51l-1.43-1.43-9.7-9.7-1.43-1.43-.74-.74L4.52 3.6l-1.5-1.5-1.41 1.41 1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8C3.83 8.69 3 10.75 3 13c0 4.97 4.03 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41-2.16-2.17zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85C15.26 19.39 13.7 20 12 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"work_history\": {\n    \"name\": \"work_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,8v11h7.08C11.03,18.67,11,18.34,11,18c0-3.87,3.13-7,7-7c0.7,0,1.37,0.1,2,0.29V8H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,19V8h16v3.29c0.72,0.22,1.4,0.54,2,0.97V8c0-1.11-0.89-2-2-2h-4V4c0-1.11-0.89-2-2-2h-4C8.89,2,8,2.89,8,4v2H4 C2.89,6,2.01,6.89,2.01,8L2,19c0,1.11,0.89,2,2,2h7.68c-0.3-0.62-0.5-1.29-0.6-2H4z M10,4h4v2h-4V4z\\\"></path></g><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,6.5v9h5.03C8.51,15.34,8.5,15.17,8.5,15c0-3.04,2.46-5.5,5.5-5.5c0.9,0,1.75,0.22,2.5,0.61V6.5H3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.5,15.5v-9h13v3.61c0.56,0.29,1.07,0.67,1.5,1.13V6.5C18,5.67,17.33,5,16.5,5H13V3.5C13,2.67,12.33,2,11.5,2h-3 C7.67,2,7,2.67,7,3.5V5H3.5C2.67,5,2,5.67,2,6.5v9C2,16.33,2.67,17,3.5,17h5.38c-0.18-0.47-0.31-0.97-0.36-1.5H3.5z M8.5,3.5h3V5 h-3V3.5z\\\"></path></g><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M13.5,13h1v1.79l1.35,1.35l-0.71,0.71 l-1.65-1.65V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"camera_enhance\": {\n    \"name\": \"camera_enhance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.95 7l-.59-.65L14.12 5H9.88L8.65 6.35l-.6.65H4v12h16V7h-4.05zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 10l-.94 2.06L9 13l2.06.94L12 16l.94-2.06L15 13l-2.06-.94zm8-5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14H4V7h4.05l.59-.65L9.88 5h4.24l1.24 1.35.59.65H20v12zM12 8c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"accessible\": {\n    \"name\": \"accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle><path d=\\\"M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1c-2.28.46-4 2.48-4 4.9 0 2.76 2.24 5 5 5 2.42 0 4.44-1.72 4.9-4h-2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"label_outline\": {\n    \"name\": \"label_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z\\\"></path>\"\n      }\n    }\n  },\n  \"pregnant_woman\": {\n    \"name\": \"pregnant_woman\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9c-.01-1.34-.83-2.51-2-3 0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"http\": {\n    \"name\": \"http\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"info\": {\n    \"name\": \"info\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 13h-2v-6h2v6zm0-8h-2V7h2v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"view_day\": {\n    \"name\": \"view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 10h15v4H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 18h19v2H2zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 6H4v-4h15v4zM2 4h19v2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture\": {\n    \"name\": \"picture_in_picture\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7h-8v6h8V7zm-2 4h-4V9h4v2z\\\"></path><path d=\\\"M13 9h4v2h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_angledown\": {\n    \"name\": \"text_rotation_angledown\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z\\\"></path>\"\n      }\n    }\n  },\n  \"login\": {\n    \"name\": \"login\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,4v1h6v10h-6v1h6c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1H10z\\\"></path><polygon points=\\\"9.5,6.5 8.79,7.21 11.09,9.5 3,9.5 3,10.5 11.09,10.5 8.79,12.79 9.5,13.5 13,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"text_rotate_up\": {\n    \"name\": \"text_rotate_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z\\\"></path>\"\n      }\n    }\n  },\n  \"spatial_audio_off\": {\n    \"name\": \"spatial_audio_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.48,17.34C14.29,16.73,12.37,16,10,16c-2.37,0-4.29,0.73-5.48,1.34C4.2,17.5,4,17.84,4,18.22V19h12 v-0.78C16,17.84,15.8,17.5,15.48,17.34z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"9\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C8,7.9,8.9,7,10,7z\\\"></path><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z M16,19H4v-0.78c0-0.38,0.2-0.72,0.52-0.88C5.71,16.73,7.63,16,10,16 c2.37,0,4.29,0.73,5.48,1.34C15.8,17.5,16,17.84,16,18.22V19z\\\"></path><path d=\\\"M20.36,1l-1.41,1.41c2.73,2.73,2.73,7.17,0,9.9l1.41,1.41C23.88,10.21,23.88,4.51,20.36,1z\\\"></path><path d=\\\"M17.54,10.9c1.95-1.95,1.95-5.12,0-7.07l-1.41,1.41c1.17,1.17,1.17,3.07,0,4.24L17.54,10.9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8,13.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C10.98,13.9,9.5,13.5,8,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path><path d=\\\"M16.66,1L15.6,2.06c2.53,2.53,2.53,6.66,0,9.19l1.06,1.06C19.78,9.19,19.78,4.12,16.66,1z\\\"></path><path d=\\\"M14.54,3.12l-1.06,1.06c1.36,1.36,1.36,3.59,0,4.95l1.06,1.06C16.49,8.24,16.49,5.07,14.54,3.12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_vertical\": {\n    \"name\": \"swipe_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66 c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M1,2h3.5H6v1.5V7H4.5V4.09c-1.86,2.11-3,4.88-3,7.91s1.14,5.79,3,7.91V17H6v3.5V22H4.5H1v-1.5h2.02 C1.13,18.18,0,15.22,0,12s1.13-6.18,3.02-8.5H1V2z M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25 c-0.56-1.26-2.04-1.83-3.3-1.27s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67 c0.49,0.19,1.05,0.18,1.53-0.04l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34 L15.5,20l-4.92-1.96l4.18-0.88l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12 L21.49,17.34z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.54,16.23l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66 c0.25-0.11,0.55,0,0.66,0.25l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36l1.18,4.17L13.54,16.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.8,13.69l-1.18-4.17c-0.23-0.83-0.97-1.41-1.83-1.45L13.6,8l-0.91,0.41l-1.22-2.74C11.02,4.65,9.84,4.2,8.83,4.64 C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3L13,17.62 c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13C19.65,15.16,20,14.41,19.8,13.69z M13.54,16.23l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68 c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36l1.18,4.17 L13.54,16.23z M1,10c0,2.69,1.2,5.05,3,6.37V14h1v4H1v-1h2.18C1.26,15.47,0,12.91,0,10s1.26-5.47,3.18-7H1V2h4v4H4V3.63 C2.2,4.95,1,7.31,1,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gavel\": {\n    \"name\": \"gavel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_from_trash\": {\n    \"name\": \"restore_from_trash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 14h-2v4h-4v-4H8v5h8zm0 0V9H8v5l4-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2-5V9h8v10H8v-5zm7.5-10l-1-1h-5l-1 1H5v2h14V4zM10 18h4v-4h2l-4-4-4 4h2z\\\"></path>\"\n      }\n    }\n  },\n  \"support\": {\n    \"name\": \"support\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.3,7.32L9.13,4.54C7.02,5.35,5.35,7.02,4.54,9.13l2.78,1.15C7.83,8.9,8.92,7.82,10.3,7.32z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.32,13.72l-2.78,1.15c0.81,2.1,2.48,3.78,4.59,4.59l1.17-2.78C8.91,16.18,7.83,15.09,7.32,13.72z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.67,10.27l2.78-1.15c-0.81-2.1-2.48-3.77-4.58-4.58l-1.15,2.78C15.09,7.83,16.17,8.9,16.67,10.27z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.68,13.71c-0.5,1.37-1.58,2.46-2.95,2.97l1.15,2.78c2.1-0.81,3.77-2.48,4.58-4.58L16.68,13.71z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M14.87,4.54 c2.1,0.81,3.77,2.48,4.58,4.58l-2.78,1.15c-0.51-1.36-1.58-2.44-2.95-2.94L14.87,4.54z M9.13,4.54l1.17,2.78 c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M9.13,19.46c-2.1-0.81-3.78-2.48-4.59-4.59l2.78-1.15 c0.51,1.38,1.59,2.46,2.97,2.96L9.13,19.46z M9,12c0-1.66,1.34-3,3-3s3,1.34,3,3s-1.34,3-3,3S9,13.66,9,12z M14.88,19.46 l-1.15-2.78c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.19,8.99C7.49,8.15,8.16,7.48,9,7.18L7.84,4.41C6.27,5.02,5.02,6.27,4.41,7.84L7.19,8.99L7.19,8.99z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.19,11.01L7.19,11.01l-2.78,1.16c0.61,1.57,1.86,2.82,3.43,3.43L9,12.82 C8.15,12.51,7.49,11.85,7.19,11.01z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.81,8.98l2.78-1.15c-0.61-1.57-1.86-2.82-3.43-3.42l-1.15,2.78C11.85,7.49,12.51,8.15,12.81,8.98z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.82,11c-0.3,0.84-0.96,1.5-1.79,1.81l1.15,2.78c1.57-0.61,2.81-1.86,3.42-3.42L12.82,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M12.16,4.41c1.57,0.61,2.82,1.85,3.43,3.42 l-2.78,1.15c-0.3-0.83-0.96-1.49-1.79-1.79L12.16,4.41z M7.84,4.41L9,7.18c-0.85,0.3-1.51,0.96-1.82,1.81v0L4.41,7.84 C5.02,6.27,6.27,5.02,7.84,4.41z M7.83,15.59c-1.57-0.61-2.82-1.86-3.43-3.43l2.78-1.15v0c0.3,0.84,0.97,1.51,1.81,1.81 L7.83,15.59z M8,10c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S8,11.1,8,10z M12.17,15.59l-1.15-2.78c0.84-0.3,1.5-0.97,1.79-1.81 l2.77,1.16C14.98,13.74,13.74,14.98,12.17,15.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"find_replace\": {\n    \"name\": \"find_replace\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05C14.68 4.78 12.93 4 11 4c-3.53 0-6.43 2.61-6.92 6H6.1c.46-2.28 2.48-4 4.9-4zm5.64 9.14c.66-.9 1.12-1.97 1.28-3.14H15.9c-.46 2.28-2.48 4-4.9 4-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05C7.32 17.22 9.07 18 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z\\\"></path>\"\n      }\n    }\n  },\n  \"anchor\": {\n    \"name\": \"anchor\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,15l1.55,1.55c-0.96,1.69-3.33,3.04-5.55,3.37V11h3V9h-3V7.82C14.16,7.4,15,6.3,15,5c0-1.65-1.35-3-3-3S9,3.35,9,5 c0,1.3,0.84,2.4,2,2.82V9H8v2h3v8.92c-2.22-0.33-4.59-1.68-5.55-3.37L7,15l-4-3v3c0,3.88,4.92,7,9,7s9-3.12,9-7v-3L17,15z M12,4 c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,4,12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"supervised_user_circle\": {\n    \"name\": \"supervised_user_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9.5\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M11.5 17.21c0-1.88 2.98-2.7 4.5-2.7.88 0 2.24.27 3.24.87.48-1.02.75-2.16.75-3.37 0-4.41-3.59-8-8-8s-8 3.59-8 8c0 1.23.29 2.39.78 3.43 1.34-.98 3.43-1.43 4.73-1.43.44 0 .97.05 1.53.16-.63.57-1.06 1.22-1.3 1.86-.08 0-.15-.01-.23-.01-1.38 0-2.98.57-3.66 1.11 1.37 1.65 3.39 2.73 5.66 2.86v-2.78zM16 9c1.11 0 2 .89 2 2 0 1.11-.89 2-2 2-1.11 0-2-.89-2-2-.01-1.11.89-2 2-2zm-6.5 4c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.5 10c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6.5 2c1.11 0 2-.89 2-2 0-1.11-.89-2-2-2-1.11 0-2.01.89-2 2 0 1.11.89 2 2 2zM11.99 2.01c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zM5.84 17.12c.68-.54 2.27-1.11 3.66-1.11.07 0 .15.01.23.01.24-.64.67-1.29 1.3-1.86-.56-.1-1.09-.16-1.53-.16-1.3 0-3.39.45-4.73 1.43-.5-1.04-.78-2.2-.78-3.43 0-4.41 3.59-8 8-8s8 3.59 8 8c0 1.2-.27 2.34-.75 3.37-1-.59-2.36-.87-3.24-.87-1.52 0-4.5.81-4.5 2.7v2.78c-2.27-.13-4.29-1.21-5.66-2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"data_exploration\": {\n    \"name\": \"data_exploration\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20c-2.89,0-5.43-1.54-6.83-3.84l2.95-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5 l-3.69,3.7C4.11,13.5,4,12.76,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8S16.41,20,12,20z 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\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M12,20c-2.89,0-5.43-1.54-6.83-3.84 l2.95-2.95L11.41,16L16,11.42V13h2V8h-5v2h1.58l-3.28,3.28L8,10.5l-3.69,3.7C4.11,13.5,4,12.76,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S20.05,20.5,19.5,20.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.75,16c0,0.41-0.34,0.75-0.75,0.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 C16.41,15.25,16.75,15.59,16.75,16z M10,16.5c-2.27,0-4.28-1.17-5.44-2.94l2.45-2.45l2.49,2.44l4-4V11H15V7h-4v1.5h1.43l-2.94,2.94 L7,9l-3.14,3.14C3.63,11.47,3.5,10.75,3.5,10c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8l0,0h6.5c0.83,0,1.5-0.67,1.5-1.5V10C18,5.58,14.42,2,10,2z M16.75,16 c0,0.41-0.34,0.75-0.75,0.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75C16.41,15.25,16.75,15.59,16.75,16z M10,16.5 c-2.27,0-4.28-1.17-5.44-2.94l2.45-2.45l2.49,2.44l4-4V11H15V7h-4v1.5h1.43l-2.94,2.94L7,9l-3.14,3.14C3.63,11.47,3.5,10.75,3.5,10 c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"timeline\": {\n    \"name\": \"timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M23,8c0,1.1-0.9,2-2,2c-0.18,0-0.35-0.02-0.51-0.07l-3.56,3.55C16.98,13.64,17,13.82,17,14c0,1.1-0.9,2-2,2s-2-0.9-2-2 c0-0.18,0.02-0.36,0.07-0.52l-2.55-2.55C10.36,10.98,10.18,11,10,11c-0.18,0-0.36-0.02-0.52-0.07l-4.55,4.56 C4.98,15.65,5,15.82,5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.18,0,0.35,0.02,0.51,0.07l4.56-4.55C8.02,9.36,8,9.18,8,9 c0-1.1,0.9-2,2-2s2,0.9,2,2c0,0.18-0.02,0.36-0.07,0.52l2.55,2.55C14.64,12.02,14.82,12,15,12c0.18,0,0.36,0.02,0.52,0.07 l3.55-3.56C19.02,8.35,19,8.18,19,8c0-1.1,0.9-2,2-2S23,6.9,23,8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_card\": {\n    \"name\": \"add_card\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h10v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M24,17v2 h-3v3h-2v-3h-3v-2h3v-3h2v3H24z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16H12v-1.5H3.5V10H18V5.5C18,4.67,17.33,4,16.5,4z M16.5,7h-13V5.5 h13V7z M20,15.5h-2.5V18H16v-2.5h-2.5V14H16v-2.5h1.5V14H20V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"model_training\": {\n    \"name\": \"model_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,13.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5h0C13.93,10,15.5,11.57,15.5,13.5z M13,19.5h-2 V21h2V19.5z M19,13c0,1.68-0.59,3.21-1.58,4.42l1.42,1.42C20.18,17.27,21,15.23,21,13c0-2.74-1.23-5.19-3.16-6.84l-1.42,1.42 C17.99,8.86,19,10.82,19,13z M16,5l-4-4v3c0,0,0,0,0,0c-4.97,0-9,4.03-9,9c0,2.23,0.82,4.27,2.16,5.84l1.42-1.42 C5.59,16.21,5,14.68,5,13c0-3.86,3.14-7,7-7c0,0,0,0,0,0v3L16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,16h1.5v-1h-1.5V16z M10,8L10,8L10,8C10,8,10,8,10,8c-1.38,0-2.5,1.12-2.5,2.5C7.5,12,9.25,13,9.25,14 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,9.12,11.38,8,10,8z M6.47,13.53l-0.71,0.71C4.67,13.16,4,11.66,4,10 c0-3.31,2.69-6,6-6V2l2.5,2.5L10,7V5c-2.76,0-5,2.24-5,5C5,11.38,5.56,12.63,6.47,13.53z M14.24,14.24l-0.71-0.71 C14.44,12.63,15,11.38,15,10s-0.56-2.63-1.47-3.53l0.71-0.71C15.33,6.84,16,8.34,16,10S15.33,13.16,14.24,14.24z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_week\": {\n    \"name\": \"calendar_view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"2.5\\\" x=\\\"8.5\\\" y=\\\"6\\\"></rect><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"2.5\\\" x=\\\"13\\\" y=\\\"6\\\"></rect><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"2.5\\\" x=\\\"4\\\" y=\\\"6\\\"></rect><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"2.5\\\" x=\\\"17.5\\\" y=\\\"6\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M6.5,18H4V6h2.5V18z M11,18H8.5V6 H11V18z M15.5,18H13V6h2.5V18z M20,18h-2.5V6H20V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"view_week\": {\n    \"name\": \"view_week\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8,18H4V6h4V18z M14,18h-4V6h4V18z M20,18h-4V6h4V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,18H4V6h4V18z M14,18h-4V6h4V18z M20,18h-4V6h4V18z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.67,5.5v9H8.33v-9H11.67z M3.5,5.5h3.33v9H3.5V5.5z M16.5,14.5h-3.33v-9h3.33V14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M11.67,5.5v9H8.33v-9H11.67z M3.5,5.5h3.33v9H3.5V5.5z M16.5,14.5h-3.33v-9h3.33V14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_takeoff\": {\n    \"name\": \"flight_takeoff\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 2.59 4.49L21 11.49c.81-.23 1.28-1.05 1.07-1.85z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_left_alt\": {\n    \"name\": \"swipe_left_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"15\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M10.1,13c0.46,2.28,2.48,4,4.9,4c2.76,0,5-2.24,5-5s-2.24-5-5-5c-2.42,0-4.44,1.72-4.9,4H5.83l1.59-1.59L6,8l-4,4l4,4 l1.41-1.41L5.83,13H10.1z M15,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S16.66,15,15,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"12\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><path d=\\\"M8.07,10.75C8.42,12.6,10.05,14,12,14c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4c-1.95,0-3.58,1.4-3.93,3.25l-3.2,0l1.19-1.19 L5,7l-3,3l3,3l1.06-1.06l-1.19-1.19L8.07,10.75z M12,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5 C14.5,11.38,13.38,12.5,12,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history_toggle_off\": {\n    \"name\": \"history_toggle_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.1,19.37l1,1.74c-0.96,0.44-2.01,0.73-3.1,0.84v-2.02C13.74,19.84,14.44,19.65,15.1,19.37z M4.07,13H2.05 c0.11,1.1,0.4,2.14,0.84,3.1l1.74-1C4.35,14.44,4.16,13.74,4.07,13z M15.1,4.63l1-1.74C15.14,2.45,14.1,2.16,13,2.05v2.02 C13.74,4.16,14.44,4.35,15.1,4.63z M19.93,11h2.02c-0.11-1.1-0.4-2.14-0.84-3.1l-1.74,1C19.65,9.56,19.84,10.26,19.93,11z M8.9,19.37l-1,1.74c0.96,0.44,2.01,0.73,3.1,0.84v-2.02C10.26,19.84,9.56,19.65,8.9,19.37z M11,4.07V2.05 c-1.1,0.11-2.14,0.4-3.1,0.84l1,1.74C9.56,4.35,10.26,4.16,11,4.07z M18.36,7.17l1.74-1.01c-0.63-0.87-1.4-1.64-2.27-2.27 l-1.01,1.74C17.41,6.08,17.92,6.59,18.36,7.17z M4.63,8.9l-1.74-1C2.45,8.86,2.16,9.9,2.05,11h2.02C4.16,10.26,4.35,9.56,4.63,8.9z M19.93,13c-0.09,0.74-0.28,1.44-0.56,2.1l1.74,1c0.44-0.96,0.73-2.01,0.84-3.1H19.93z M16.83,18.36l1.01,1.74 c0.87-0.63,1.64-1.4,2.27-2.27l-1.74-1.01C17.92,17.41,17.41,17.92,16.83,18.36z M7.17,5.64L6.17,3.89 C5.29,4.53,4.53,5.29,3.9,6.17l1.74,1.01C6.08,6.59,6.59,6.08,7.17,5.64z M5.64,16.83L3.9,17.83c0.63,0.87,1.4,1.64,2.27,2.27 l1.01-1.74C6.59,17.92,6.08,17.41,5.64,16.83z M13,7h-2v5.41l4.29,4.29l1.41-1.41L13,11.59V7z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.45,4.58l-0.5-0.87C7.73,3.33,8.59,3.09,9.5,3.03v1C8.77,4.09,8.08,4.28,7.45,4.58z M15.97,9.5h1 c-0.06-0.91-0.3-1.77-0.69-2.55l-0.87,0.5C15.72,8.08,15.91,8.77,15.97,9.5z M12.55,4.58l0.5-0.87c-0.78-0.38-1.64-0.62-2.55-0.69 v1C11.23,4.09,11.92,4.28,12.55,4.58z M6.58,5.08l-0.5-0.87c-0.74,0.5-1.37,1.14-1.87,1.87l0.87,0.5C5.48,5.99,5.99,5.48,6.58,5.08 z M14.92,6.58l0.87-0.5c-0.5-0.74-1.14-1.37-1.87-1.87l-0.5,0.87C14.01,5.49,14.52,5.99,14.92,6.58z M7.45,15.42l-0.5,0.87 c0.78,0.38,1.64,0.62,2.55,0.69v-1C8.77,15.91,8.08,15.72,7.45,15.42z M4.03,10.5h-1c0.06,0.91,0.3,1.77,0.69,2.55l0.87-0.5 C4.28,11.92,4.09,11.23,4.03,10.5z M10.5,15.97v1c0.91-0.06,1.77-0.3,2.55-0.69l-0.5-0.87C11.92,15.72,11.23,15.91,10.5,15.97z M5.08,13.42l-0.87,0.5c0.5,0.74,1.14,1.37,1.87,1.87l0.5-0.87C5.99,14.52,5.48,14.01,5.08,13.42z M4.58,7.45l-0.87-0.5 C3.33,7.73,3.09,8.59,3.03,9.5h1C4.09,8.77,4.28,8.08,4.58,7.45z M15.97,10.5c-0.06,0.73-0.25,1.42-0.55,2.05l0.87,0.5 c0.38-0.78,0.62-1.64,0.69-2.55H15.97z M13.42,14.92l0.5,0.87c0.74-0.5,1.37-1.14,1.87-1.87l-0.87-0.5 C14.52,14.01,14.01,14.51,13.42,14.92z M10.5,7.05h-1v4l3.17,1.9l0.5-0.82l-2.67-1.58V7.05z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label_important\": {\n    \"name\": \"label_important\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7H7.89l3.57 5-3.57 5H15l3.55-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.63 5.84C16.27 5.33 15.67 5 15 5H4l5 7-5 6.99h11c.67 0 1.27-.32 1.63-.83L21 12l-4.37-6.16zM15 17H7.89l3.57-5-3.57-5H15l3.55 5L15 17z\\\"></path>\"\n      }\n    }\n  },\n  \"published_with_changes\": {\n    \"name\": \"published_with_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17.66,9.53l-7.07,7.07l-4.24-4.24l1.41-1.41l2.83,2.83l5.66-5.66L17.66,9.53z M4,12c0-2.33,1.02-4.42,2.62-5.88L9,8.5v-6H3 l2.2,2.2C3.24,6.52,2,9.11,2,12c0,5.19,3.95,9.45,9,9.95v-2.02C7.06,19.44,4,16.07,4,12z M22,12c0-5.19-3.95-9.45-9-9.95v2.02 c3.94,0.49,7,3.86,7,7.93c0,2.33-1.02,4.42-2.62,5.88L15,15.5v6h6l-2.2-2.2C20.76,17.48,22,14.89,22,12z\\\"></path>\"\n      }\n    }\n  },\n  \"flutter_dash\": {\n    \"name\": \"flutter_dash\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M5,11c0,0.81,0.1,1.53,0.25,2.21c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6 c0.96,0,1.84,0.37,2.5,0.97C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54 c0.37,0.59,0.66,1.24,0.84,1.94C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z\\\"></path></g><g><path d=\\\"M11.07,11.7c0.29-0.39,0.81-0.56,1.27-0.37c0.17,0.07,0.32,0.18,0.43,0.33c0.22,0.28,0.25,0.59,0.22,0.85 c-0.05,0.33-0.25,0.63-0.54,0.79c0,0-4.87,2.95-5.07,2.69S11.07,11.7,11.07,11.7z M22,10c0,2.5-1,3-1.5,3 c-0.23,0-0.44-0.1-0.62-0.26c-0.48,3.32-2.36,5.31-5.33,5.99c0.11,0.44,0.48,0.77,0.95,0.77l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C15.18,22.07,15,21.71,15,21.26c0-0.3,0.04-0.57,0.09-0.8c-0.78-0.16-1.39-0.78-1.55-1.56c-0.49,0.06-1,0.1-1.54,0.1 c-0.88,0-1.7-0.09-2.45-0.25C9.53,18.83,9.5,18.91,9.5,19c0,0.55,0.45,1,1,1l0,0h0.58c0.22,0,0.41,0.15,0.48,0.36 c0.17,0.52,0.66,1.02,1.02,1.32c0.25,0.21,0.24,0.59-0.03,0.78c-0.34,0.24-0.9,0.49-1.79,0.53c-0.18,0.01-0.35-0.07-0.45-0.22 C10.18,22.57,10,22.21,10,21.76c0-0.3,0.04-0.57,0.09-0.8C9.19,20.77,8.5,19.96,8.5,19c0-0.18,0.03-0.36,0.08-0.53 c-2.46-0.86-4.03-2.78-4.46-5.74C3.94,12.9,3.74,13,3.5,13C3,13,2,12.5,2,10c0-2.27,1.7-4.5,3-4.5c0.43,0,0.49,0.49,0.5,0.85 c1.28-1.78,3.26-3.02,5.55-3.29C11.25,2.1,12.13,1.5,13,1.5v1c0,0,0.33-0.5,1-0.5c0.67,0,1,0.5,1,0.5c-0.49,0-0.85,0.35-0.96,0.77 c1.82,0.48,3.39,1.59,4.46,3.08C18.51,5.99,18.57,5.5,19,5.5C20.3,5.5,22,7.73,22,10z M5,11c0,0.81,0.1,1.53,0.25,2.21 c0.18-0.69,0.46-1.33,0.83-1.92c-0.21-0.47-0.34-0.99-0.34-1.54C5.75,7.68,7.43,6,9.5,6c0.96,0,1.84,0.37,2.5,0.97 C12.66,6.37,13.54,6,14.5,6c2.07,0,3.75,1.68,3.75,3.75c0,0.55-0.12,1.07-0.34,1.54c0.37,0.59,0.66,1.24,0.84,1.94 C18.9,12.55,19,11.82,19,11c0-3.86-3.14-7-7-7C8.14,4,5,7.14,5,11z M17.98,15.29c0-0.1,0.02-0.19,0.02-0.29 c0-1.01-0.26-1.95-0.7-2.78c-0.69,0.78-1.68,1.28-2.8,1.28c-0.27,0-0.54-0.03-0.79-0.09c0.14-0.23,0.23-0.49,0.27-0.77 c0.01-0.07,0.01-0.13,0.02-0.19c0.17,0.03,0.33,0.05,0.5,0.05c1.52,0,2.75-1.23,2.75-2.75S16.02,7,14.5,7 c-0.67,0-1.32,0.25-1.83,0.72L12,8.32l-0.67-0.6C10.82,7.25,10.17,7,9.5,7C7.98,7,6.75,8.23,6.75,9.75c0,1.34,0.96,2.46,2.23,2.7 l-0.76,0.83c-0.6-0.22-1.12-0.59-1.53-1.05C6.26,13.06,6,14,6,15c0,0.08,0.01,0.15,0.01,0.24C7.13,17.06,9.14,18,12,18 C14.88,18,16.88,17.09,17.98,15.29z M16,9.75c0,0.97-0.67,1.75-1.5,1.75S13,10.72,13,9.75S13.67,8,14.5,8S16,8.78,16,9.75z M15.25,8.88c0-0.21-0.17-0.38-0.38-0.38S14.5,8.67,14.5,8.88s0.17,0.38,0.38,0.38S15.25,9.08,15.25,8.88z M11,9.75 c0,0.97-0.67,1.75-1.5,1.75S8,10.72,8,9.75S8.67,8,9.5,8S11,8.78,11,9.75z M10.25,8.88c0-0.21-0.17-0.38-0.38-0.38 S9.5,8.67,9.5,8.88s0.17,0.38,0.38,0.38S10.25,9.08,10.25,8.88z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g><path d=\\\"M9.26,9.56c0.23-0.32,0.65-0.45,1.01-0.3c0.14,0.06,0.26,0.15,0.35,0.26c0.18,0.22,0.2,0.47,0.17,0.68 c-0.04,0.27-0.2,0.5-0.43,0.63c0,0-3.89,2.36-4.06,2.15C6.14,12.78,9.26,9.56,9.26,9.56z M18,8.2c0,2-0.8,2.4-1.2,2.4 c-0.19,0-0.35-0.08-0.5-0.21c-0.38,2.65-1.89,4.25-4.26,4.79c0.08,0.35,0.39,0.62,0.76,0.62l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 c-0.11-0.17-0.26-0.45-0.26-0.82c0-0.24,0.03-0.45,0.08-0.64c-0.62-0.13-1.11-0.62-1.24-1.25c-0.39,0.05-0.8,0.08-1.23,0.08 c-0.71,0-1.36-0.07-1.96-0.2C8.02,15.26,8,15.33,8,15.4c0,0.44,0.36,0.8,0.8,0.8l0,0h0.46c0.18,0,0.33,0.12,0.38,0.29 c0.14,0.42,0.53,0.82,0.82,1.06c0.2,0.17,0.19,0.47-0.02,0.62c-0.27,0.19-0.72,0.39-1.43,0.43c-0.14,0.01-0.28-0.06-0.36-0.18 C8.54,18.25,8.4,17.97,8.4,17.6c0-0.24,0.03-0.45,0.08-0.64c-0.73-0.15-1.28-0.8-1.28-1.57c0-0.15,0.03-0.29,0.06-0.42 c-1.97-0.69-3.22-2.22-3.57-4.59c-0.15,0.13-0.31,0.21-0.5,0.21C2.8,10.6,2,10.2,2,8.2c0-1.81,1.36-3.6,2.4-3.6 c0.34,0,0.39,0.39,0.4,0.68c1.02-1.43,2.61-2.41,4.44-2.63C9.4,1.88,10.1,1.4,10.8,1.4v0.8c0,0,0.26-0.4,0.8-0.4 c0.54,0,0.8,0.4,0.8,0.4c-0.39,0-0.68,0.28-0.76,0.62c1.46,0.39,2.71,1.27,3.57,2.46c0.01-0.29,0.06-0.68,0.4-0.68 C16.64,4.6,18,6.39,18,8.2z M4.4,9c0,0.65,0.08,1.23,0.2,1.77c0.15-0.55,0.37-1.07,0.67-1.54C5.1,8.85,5,8.44,5,8 c0-1.66,1.34-3,3-3c0.77,0,1.47,0.3,2,0.78C10.53,5.3,11.23,5,12,5c1.66,0,3,1.34,3,3c0,0.44-0.1,0.85-0.27,1.23 c0.3,0.47,0.53,0.99,0.67,1.55c0.12-0.54,0.2-1.12,0.2-1.78c0-3.09-2.51-5.6-5.6-5.6C6.91,3.4,4.4,5.91,4.4,9z M14.78,12.44 c0-0.08,0.02-0.15,0.02-0.24c0-0.8-0.21-1.56-0.56-2.22C13.69,10.6,12.9,11,12,11c-0.22,0-0.43-0.02-0.63-0.07 c0.11-0.19,0.18-0.4,0.21-0.62c0.01-0.05,0.01-0.1,0.01-0.16c0.13,0.03,0.27,0.04,0.4,0.04c1.21,0,2.2-0.99,2.2-2.2 S13.21,5.8,12,5.8c-0.53,0-1.05,0.2-1.46,0.57L10,6.86L9.46,6.37C9.05,6,8.53,5.8,8,5.8C6.79,5.8,5.8,6.79,5.8,8 c0,1.07,0.77,1.97,1.79,2.16l-0.61,0.66c-0.48-0.17-0.89-0.47-1.22-0.84C5.41,10.65,5.2,11.4,5.2,12.2c0,0.07,0.01,0.12,0.01,0.19 C6.1,13.85,7.71,14.6,10,14.6C12.3,14.6,13.9,13.87,14.78,12.44z M13.2,8c0,0.77-0.54,1.4-1.2,1.4S10.8,8.77,10.8,8 s0.54-1.4,1.2-1.4S13.2,7.23,13.2,8z M12.6,7.3c0-0.17-0.13-0.3-0.3-0.3C12.13,7,12,7.13,12,7.3s0.13,0.3,0.3,0.3 C12.47,7.6,12.6,7.47,12.6,7.3z M9.2,8c0,0.77-0.54,1.4-1.2,1.4S6.8,8.77,6.8,8S7.34,6.6,8,6.6S9.2,7.23,9.2,8z M8.6,7.3 C8.6,7.13,8.47,7,8.3,7C8.13,7,8,7.13,8,7.3s0.13,0.3,0.3,0.3C8.47,7.6,8.6,7.47,8.6,7.3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gif\": {\n    \"name\": \"gif\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 9H13v6h-1.5V9zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z\\\" opacity=\\\".87\\\"></path>\"\n      }\n    }\n  },\n  \"event\": {\n    \"name\": \"event\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8h14V6H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-7 5h5v5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes\": {\n    \"name\": \"speaker_notes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.17l.59-.59.58-.58H20V4H4v13.17zM10 6h8v2h-8V6zm0 3h8v2h-8V9zm0 3h5v2h-5v-2zM6 6h2v2H6V6zm0 3h2v2H6V9zm0 3h2v2H6v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM6 12h2v2H6zm0-3h2v2H6zm0-3h2v2H6zm4 6h5v2h-5zm0-3h8v2h-8zm0-3h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_remote\": {\n    \"name\": \"settings_remote\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 21h4V11h-4v10zm2-9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-1 12h-4V11h4v10z\\\"></path><circle cx=\\\"12\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><path d=\\\"M7.05 6.05l1.41 1.41C9.37 6.56 10.62 6 12 6s2.63.56 3.54 1.46l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z\\\"></path>\"\n      }\n    }\n  },\n  \"view_timeline\": {\n    \"name\": \"view_timeline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M12,7h6v2h-6V7z M9,11h6v2H9V11z M6,15h6v2H6V15z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"6\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"12\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"11\\\"></rect><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,15.5h11v-11h-11V15.5z M11,6h4v1.5h-4V6z M8,9.25h4v1.5H8V9.25z M5,12.5h4V14H5V12.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"11\\\" y=\\\"6\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"9.25\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rowing\": {\n    \"name\": \"rowing\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75c0 .84-.35 1.61-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility_new\": {\n    \"name\": \"accessibility_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"zoom_out\": {\n    \"name\": \"zoom_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_down\": {\n    \"name\": \"text_rotation_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z\\\"></path>\"\n      }\n    }\n  },\n  \"outlet\": {\n    \"name\": \"outlet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M10,11V8c0-0.55-0.45-1-1-1h0 C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0c-1.1,0-2,0.9-2,2v2h4V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M10,11V8c0-0.55-0.45-1-1-1h0C8.45,7,8,7.45,8,8v3c0,0.55,0.45,1,1,1h0C9.55,12,10,11.55,10,11z M16,11V8 c0-0.55-0.45-1-1-1h0c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h0C15.55,12,16,11.55,16,11z M14,16c0-1.1-0.9-2-2-2h0 c-1.1,0-2,0.9-2,2v2h4V16z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_aware\": {\n    \"name\": \"noise_aware\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,15h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61l-1.36-1.36 C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02c-0.25-2.25-2.16-4-4.47-4C9.02,6,7,8.02,7,10.5 c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82C10.56,17.17,11.71,18,13,18C14.65,18,16,16.65,16,15z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M3.6,6.58l1.58,1.26c0.35-0.57,0.77-1.1,1.24-1.57L4.85,5.02C4.38,5.49,3.97,6.02,3.6,6.58z\\\"></path><path d=\\\"M9.46,4.42L8.59,2.61c-0.63,0.23-1.24,0.52-1.8,0.87l0.87,1.81C8.22,4.93,8.82,4.64,9.46,4.42z\\\"></path><path d=\\\"M4.49,9.26L2.53,8.81c-0.21,0.63-0.36,1.28-0.44,1.95l1.96,0.45C4.11,10.53,4.27,9.88,4.49,9.26z\\\"></path><path d=\\\"M20.4,6.58c-0.36-0.56-0.78-1.09-1.25-1.56l-1.58,1.26c0.48,0.47,0.89,0.99,1.24,1.57L20.4,6.58z\\\"></path><path d=\\\"M4.04,12.79l-1.96,0.45c0.08,0.67,0.23,1.33,0.44,1.95l1.97-0.45C4.27,14.12,4.11,13.47,4.04,12.79z\\\"></path><path d=\\\"M17.21,3.48c-0.57-0.35-1.17-0.64-1.8-0.87l-0.87,1.81c0.64,0.22,1.24,0.51,1.8,0.87L17.21,3.48z\\\"></path><path d=\\\"M13,4.07V2.05C12.67,2.02,12.34,2,12,2s-0.67,0.02-1,0.05v2.02C11.33,4.03,11.66,4,12,4S12.67,4.03,13,4.07z\\\"></path><path d=\\\"M11,19.93v2.02c0.33,0.03,0.66,0.05,1,0.05s0.67-0.02,1-0.05v-2.02C12.67,19.97,12.34,20,12,20S11.33,19.97,11,19.93z\\\"></path><path d=\\\"M19.51,14.74l1.97,0.45c0.21-0.63,0.36-1.28,0.44-1.95l-1.96-0.45C19.89,13.47,19.73,14.12,19.51,14.74z\\\"></path><path d=\\\"M19.96,11.21l1.96-0.45c-0.08-0.67-0.23-1.33-0.44-1.95l-1.97,0.45C19.73,9.88,19.89,10.53,19.96,11.21z\\\"></path><path d=\\\"M17.58,17.73l1.58,1.26c0.47-0.48,0.88-1,1.25-1.56l-1.58-1.26C18.47,16.73,18.05,17.26,17.58,17.73z\\\"></path><path d=\\\"M6.79,20.52c0.57,0.35,1.17,0.64,1.8,0.87l0.87-1.81c-0.64-0.22-1.24-0.51-1.8-0.87L6.79,20.52z\\\"></path><path d=\\\"M14.54,19.58l0.87,1.81c0.63-0.23,1.24-0.52,1.8-0.87l-0.87-1.81C15.78,19.07,15.18,19.36,14.54,19.58z\\\"></path><path d=\\\"M3.6,17.42c0.36,0.56,0.78,1.09,1.25,1.56l1.58-1.26c-0.48-0.47-0.89-0.99-1.24-1.57L3.6,17.42z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M13,12.75h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58c-0.22-0.9-0.77-1.7-1.69-2.44 c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56c-0.35-1.71-1.86-3-3.67-3 C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62C8.8,14.22,9.63,15,10.75,15 C11.99,15,13,13.99,13,12.75z\\\"></path><path d=\\\"M3.88,7.83L2.41,7.5C2.25,7.97,2.14,8.46,2.08,8.96L3.54,9.3C3.59,8.79,3.71,8.3,3.88,7.83z\\\"></path><path d=\\\"M7.88,3.86L7.22,2.51C6.75,2.68,6.3,2.9,5.87,3.16l0.65,1.36C6.95,4.25,7.4,4.03,7.88,3.86z\\\"></path><path d=\\\"M5.42,5.39L4.25,4.45C3.9,4.81,3.59,5.21,3.31,5.62l1.18,0.94C4.76,6.14,5.07,5.74,5.42,5.39z\\\"></path><path d=\\\"M10.75,3.55V2.04C10.5,2.01,10.25,2,10,2S9.5,2.01,9.25,2.04v1.51C9.5,3.52,9.75,3.5,10,3.5S10.5,3.52,10.75,3.55z\\\"></path><path d=\\\"M16.46,9.29l1.46-0.33c-0.07-0.5-0.18-0.99-0.33-1.46l-1.47,0.34C16.29,8.3,16.4,8.79,16.46,9.29z\\\"></path><path d=\\\"M14.13,3.16c-0.43-0.26-0.88-0.48-1.35-0.65l-0.65,1.36c0.48,0.17,0.93,0.39,1.35,0.65L14.13,3.16z\\\"></path><path d=\\\"M16.69,5.62c-0.28-0.42-0.59-0.81-0.94-1.17l-1.17,0.94c0.36,0.35,0.67,0.75,0.93,1.18L16.69,5.62z\\\"></path><path d=\\\"M16.46,10.7c-0.05,0.51-0.17,1-0.34,1.46l1.47,0.34c0.16-0.47,0.27-0.96,0.33-1.46L16.46,10.7z\\\"></path><path d=\\\"M12.12,16.14l0.65,1.36c0.47-0.18,0.92-0.39,1.35-0.65l-0.65-1.36C13.05,15.75,12.6,15.97,12.12,16.14z\\\"></path><path d=\\\"M9.25,16.45v1.51C9.5,17.99,9.75,18,10,18s0.5-0.01,0.75-0.04v-1.51c-0.25,0.03-0.5,0.05-0.75,0.05S9.5,16.48,9.25,16.45z\\\"></path><path d=\\\"M14.58,14.61l1.18,0.94c0.35-0.36,0.66-0.75,0.94-1.17l-1.18-0.94C15.24,13.86,14.93,14.26,14.58,14.61z\\\"></path><path d=\\\"M3.54,10.71l-1.46,0.33c0.07,0.5,0.18,0.99,0.33,1.46l1.47-0.34C3.71,11.7,3.6,11.21,3.54,10.71z\\\"></path><path d=\\\"M3.31,14.38c0.28,0.42,0.59,0.81,0.94,1.17l1.17-0.94c-0.36-0.35-0.67-0.75-0.93-1.18L3.31,14.38z\\\"></path><path d=\\\"M5.87,16.84c0.43,0.26,0.88,0.48,1.35,0.65l0.65-1.36c-0.48-0.17-0.93-0.39-1.35-0.65L5.87,16.84z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"leaderboard\": {\n    \"name\": \"leaderboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z\\\"></path></g><g><path d=\\\"M16,11V3H8v6H2v12h20V11H16z M10,5h4v14h-4V5z M4,11h4v8H4V11z M20,19h-4v-6h4V19z\\\"></path></g>\"\n      }\n    }\n  },\n  \"close_fullscreen\": {\n    \"name\": \"close_fullscreen\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,3.41l-5.29,5.29L20,12h-8V4l3.29,3.29L20.59,2L22,3.41z M3.41,22l5.29-5.29L12,20v-8H4l3.29,3.29L2,20.59L3.41,22z\\\"></path>\"\n      }\n    }\n  },\n  \"tips_and_updates\": {\n    \"name\": \"tips_and_updates\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M14.5,9.5C14.5,6.47,12.03,4,9,4S3.5,6.47,3.5,9.5c0,2.47,1.49,3.89,2.35,4.5h6.3 C13.01,13.39,14.5,11.97,14.5,9.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,20h4c0,1.1-0.9,2-2,2S7,21.1,7,20z M5,19h8v-2H5V19z M16.5,9.5c0,3.82-2.66,5.86-3.77,6.5H5.27 C4.16,15.36,1.5,13.32,1.5,9.5C1.5,5.36,4.86,2,9,2S16.5,5.36,16.5,9.5z M14.5,9.5C14.5,6.47,12.03,4,9,4S3.5,6.47,3.5,9.5 c0,2.47,1.49,3.89,2.35,4.5h6.3C13.01,13.39,14.5,11.97,14.5,9.5z M21.37,7.37L20,8l1.37,0.63L22,10l0.63-1.37L24,8l-1.37-0.63L22,6 L21.37,7.37z M19,6l0.94-2.06L22,3l-2.06-0.94L19,0l-0.94,2.06L16,3l2.06,0.94L19,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12,8c0-2.48-2.02-4.5-4.5-4.5S3,5.52,3,8c0,1.37,0.62,2.65,1.67,3.5h5.65C11.38,10.65,12,9.37,12,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.5,14h6v1.5h-6V14z M13.5,8c0,2.09-1.07,3.93-2.69,5H4.19C2.57,11.93,1.5,10.09,1.5,8c0-3.31,2.69-6,6-6S13.5,4.69,13.5,8 z M12,8c0-2.48-2.02-4.5-4.5-4.5S3,5.52,3,8c0,1.37,0.62,2.65,1.67,3.5h5.65C11.38,10.65,12,9.37,12,8z M7.5,18 C8.33,18,9,17.33,9,16.5H6C6,17.33,6.67,18,7.5,18z M18.5,8l0.47-1.03L20,6.5l-1.03-0.47L18.5,5l-0.47,1.03L17,6.5l1.03,0.47L18.5,8 z M15.5,5l0.78-1.72L18,2.5l-1.72-0.78L15.5,0l-0.78,1.72L13,2.5l1.72,0.78L15.5,5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_input_antenna\": {\n    \"name\": \"settings_input_antenna\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29 0-1.38-1.12-2.5-2.5-2.5S9.5 10.62 9.5 12c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2c0-4.97 4.03-9 9-9s9 4.03 9 9h2c0-6.07-4.93-11-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_person\": {\n    \"name\": \"lock_person\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,10v10h5.29C11.1,19.37,11,18.7,11,18c0-3.87,3.13-7,7-7v-1H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,20V10h12v1c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2v10 c0,1.1,0.9,2,2,2h6.26c-0.42-0.6-0.75-1.28-0.97-2H6z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M18,15c0.83,0,1.5,0.67,1.5,1.5S18.83,18,18,18 s-1.5-0.67-1.5-1.5S17.17,15,18,15z M18,21c-1.03,0-1.94-0.52-2.48-1.32C16.25,19.26,17.09,19,18,19s1.75,0.26,2.48,0.68 C19.94,20.48,19.03,21,18,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.5,8.5v8h4.21C9.58,16.02,9.5,15.52,9.5,15c0-2.87,2.2-5.22,5-5.47V8.5H5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.5,16.5v-8h9v1.03C14.66,9.51,14.83,9.5,15,9.5c0.34,0,0.68,0.04,1,0.1V8.5C16,7.67,15.33,7,14.5,7H14V5 c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5C4.67,7,4,7.67,4,8.5v8C4,17.33,4.67,18,5.5,18h4.89c-0.3-0.46-0.53-0.96-0.68-1.5H5.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M15,11c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4S17.21,11,15,11z M15,12c0.83,0,1.5,0.67,1.5,1.5S15.83,15,15,15 c-0.83,0-1.5-0.67-1.5-1.5S14.17,12,15,12z M15,18c-1.09,0-2.03-0.58-2.56-1.45c0.73-0.5,1.61-0.8,2.56-0.8s1.83,0.3,2.56,0.8 C17.03,17.42,16.09,18,15,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"toll\": {\n    \"name\": \"toll\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12c0-2.61 1.67-4.83 4-5.65V4.26C3.55 5.15 1 8.27 1 12c0 3.73 2.55 6.85 6 7.74v-2.09c-2.33-.82-4-3.04-4-5.65z\\\"></path>\"\n      }\n    }\n  },\n  \"bookmarks\": {\n    \"name\": \"bookmarks\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 1H8.99C7.89 1 7 1.9 7 3h10c1.1 0 2 .9 2 2v13l2 1V3c0-1.1-.9-2-2-2zm-4 4H5c-1.1 0-2 .9-2 2v16l7-3 7 3V7c0-1.1-.9-2-2-2zm0 14.97l-4.21-1.81-.79-.34-.79.34L5 19.97V7h10v12.97z\\\"></path><path d=\\\"M5 19.97l5-2.15 5 2.15V7H5z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"outbond\": {\n    \"name\": \"outbond\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M13.88,11.54l-4.96,4.96 l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path>\"\n      }\n    }\n  },\n  \"view_quilt\": {\n    \"name\": \"view_quilt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.33,17H5V7h3.33V17z M13.67,17h-3.33v-4h3.33V17z M19,17h-3.33v-4H19V17z M19,11h-8.67V7H19V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33v-4h3.33V17z M19,17h-3.33v-4H19V17z M19,11h-8.67V7H19V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-2.75h2.67V13.5z M15.5,13.5h-2.67v-2.75h2.67V13.5z M15.5,9.25H8.67V6.5 h6.83V9.25z\\\"></path></g><g><path d=\\\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-2.75h2.67V13.5z M15.5,13.5h-2.67v-2.75h2.67V13.5z M15.5,9.25H8.67V6.5h6.83V9.25z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calendar_view_day\": {\n    \"name\": \"calendar_view_day\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18v2H3zm16-5v1H5v-1h14m2-2H3v5h18v-5zM3 6h18v2H3z\\\"></path><path d=\\\"M5 12h14v1H5z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"shop_two\": {\n    \"name\": \"shop_two\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 7v9h14V7H7zm5 8V8l5.5 3-5.5 4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm9 13H7V7h14v9zm-9-1l5.5-4L12 8z\\\"></path>\"\n      }\n    }\n  },\n  \"done_all\": {\n    \"name\": \"done_all\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z\\\"></path>\"\n      }\n    }\n  },\n  \"percent\": {\n    \"name\": \"percent\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M7.5,4C5.57,4,4,5.57,4,7.5S5.57,11,7.5,11S11,9.43,11,7.5S9.43,4,7.5,4z M7.5,9C6.67,9,6,8.33,6,7.5S6.67,6,7.5,6 S9,6.67,9,7.5S8.33,9,7.5,9z M16.5,13c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5s3.5-1.57,3.5-3.5S18.43,13,16.5,13z M16.5,18 c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S17.33,18,16.5,18z M5.41,20L4,18.59L18.59,4L20,5.41L5.41,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.5,4C5.12,4,4,5.12,4,6.5C4,7.88,5.12,9,6.5,9S9,7.88,9,6.5C9,5.12,7.88,4,6.5,4z M6.5,7.5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,7.05,7.05,7.5,6.5,7.5z M13.5,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5 s2.5-1.12,2.5-2.5C16,12.12,14.88,11,13.5,11z M13.5,14.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C14.5,14.05,14.05,14.5,13.5,14.5z M5.06,16L4,14.94L14.94,4L16,5.06L5.06,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_phone\": {\n    \"name\": \"settings_phone\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zm8.66 13.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 9h2v2h-2zm4 0h2v2h-2zm5 6.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM19 9h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"note_add\": {\n    \"name\": \"note_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 4H6v16h12V9h-5V4zm3 10v2h-3v3h-2v-3H8v-2h3v-3h2v3h3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13 11h-2v3H8v2h3v3h2v-3h3v-2h-3zm1-9H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy_alt\": {\n    \"name\": \"view_comfy_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18h16V6H4V18z M13,7h4v4h-4V7z M13,13h4v4h-4V13z M7,7h4v4H7V7z M7,13h4v4H7V13z\\\" opacity=\\\".3\\\"></path><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7\\\" y=\\\"13\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,14.5h13v-9h-13V14.5z M11,6h3v3h-3V6z M11,11h3v3h-3V11z M6,6h3v3H6V6z M6,11h3v3H6V11z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"11\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"account_box\": {\n    \"name\": \"account_box\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,17.86C6.8,16.09,9.27,15,12,15s5.2,1.09,7,2.86V5H5V17.86z M12,6 c1.93,0,3.5,1.57,3.5,3.5S13.93,13,12,13c-1.93,0-3.5-1.57-3.5-3.5S10.07,6,12,6z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,19H7v-0.24 C8.42,17.62,10.16,17,12,17s3.58,0.62,5,1.76V19z M19,17.86C17.2,16.09,14.73,15,12,15s-5.2,1.09-7,2.86V5h14V17.86z\\\"></path><path d=\\\"M12,13c1.93,0,3.5-1.57,3.5-3.5S13.93,6,12,6c-1.93,0-3.5,1.57-3.5,3.5S10.07,13,12,13z M12,8c0.83,0,1.5,0.67,1.5,1.5 S12.83,11,12,11s-1.5-0.67-1.5-1.5S11.17,8,12,8z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,14.39c1.52-1.18,3.43-1.89,5.5-1.89s3.98,0.71,5.5,1.89V4.5h-11V14.39z M10,5.5c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S8.34,5.5,10,5.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M5.52,15.5C6.77,14.56,8.32,14,10,14s3.23,0.56,4.48,1.5H5.52z M15.5,14.39c-1.52-1.18-3.43-1.89-5.5-1.89s-3.98,0.71-5.5,1.89 V4.5h11V14.39z\\\"></path><path d=\\\"M10,11.5c1.66,0,3-1.34,3-3s-1.34-3-3-3s-3,1.34-3,3S8.34,11.5,10,11.5z M10,7c0.83,0,1.5,0.67,1.5,1.5S10.83,10,10,10 S8.5,9.33,8.5,8.5S9.17,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alarm_on\": {\n    \"name\": \"alarm_on\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm-1.47 10.64l-3.18-3.18 1.06-1.06 2.13 2.13 4.93-4.95 1.06 1.06-6 6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"flaky\": {\n    \"name\": \"flaky\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14.05,17.58l-0.01,0.01l-2.4-2.4l1.06-1.06l1.35,1.35L16.54,13l1.06,1.06 l-3.54,3.54L14.05,17.58z M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M7.34,6.28l1.41,1.41l1.41-1.41 l1.06,1.06L9.81,8.75l1.41,1.41l-1.06,1.06L8.75,9.81l-1.41,1.41l-1.06-1.06l1.41-1.41L6.28,7.34L7.34,6.28z M12,20 c-2.2,0-4.2-0.9-5.7-2.3L17.7,6.3C19.1,7.8,20,9.8,20,12C20,16.4,16.4,20,12,20z\\\" fill-rule=\\\"evenodd\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M6,6.71L6.71,6l1.06,1.06L8.83,6l0.71,0.71L8.47,7.77l1.06,1.06L8.83,9.54L7.77,8.47L6.71,9.54L6,8.83l1.06-1.06L6,6.71z M10,16 c-1.65,0-3.15-0.67-4.24-1.76l8.48-8.48C15.33,6.85,16,8.35,16,10C16,13.31,13.31,16,10,16z\\\" fill-rule=\\\"evenodd\\\"></path></g><g><polygon fill-rule=\\\"evenodd\\\" points=\\\"11.41,12.59 10.41,11.59 9.71,12.29 11.41,14 14.21,11.21 13.5,10.5\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"outbox\": {\n    \"name\": \"outbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,18c-1.63,0-3.06-0.79-3.98-2H5v3h14v-3h-3.02C15.06,17.21,13.63,18,12,18z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><polygon points=\\\"11,14 13,14 13,11 16,11 12,7 8,11 11,11\\\"></polygon><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5v-3h3.02 c0.91,1.21,2.35,2,3.98,2s3.06-0.79,3.98-2H19V19z M19,14h-4.18c-0.41,1.16-1.51,2-2.82,2s-2.4-0.84-2.82-2H5V5h14V14z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,14.5c-1.39,0-2.6-0.82-3.16-2H4.5v3h11v-3h-2.34C12.6,13.68,11.39,14.5,10,14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-3h2.34c0.56,1.18,1.77,2,3.16,2s2.6-0.82,3.16-2h2.34V15.5z M15.5,11H12c0,1.1-0.9,2-2,2s-2-0.9-2-2H4.5V4.5h11 V11z\\\"></path><polygon points=\\\"9.25,11 10.75,11 10.75,9 13,9 10,6 7,9 9.25,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"verified_user\": {\n    \"name\": \"verified_user\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm7 10c0 4.52-2.98 8.69-7 9.93-4.02-1.24-7-5.41-7-9.93V6.3l7-3.11 7 3.11V11zm-11.59.59L6 13l4 4 8-8-1.41-1.42L10 14.17z\\\"></path><path d=\\\"M5 6.3V11c0 4.52 2.98 8.69 7 9.93 4.02-1.23 7-5.41 7-9.93V6.3l-7-3.11L5 6.3zM18 9l-8 8-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_turned_in\": {\n    \"name\": \"assignment_turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm2.41-7.41L10 14.17l6.59-6.59L18 9l-8 8-4-4 1.41-1.41z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 9l-1.41-1.42L10 14.17l-2.59-2.58L6 13l4 4zm1-6h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"extension_off\": {\n    \"name\": \"extension_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,13v2.17L8.83,6H11V4c0-0.28,0.22-0.5,0.5-0.5S12,3.72,12,4v2h6v6h2 c0.28,0,0.5,0.22,0.5,0.5S20.28,13,20,13H18z M8,12.5c0,1.5-0.83,3.57-3,4.37V19h2.13c0.8-2.17,2.87-3,4.37-3 c0.69,0,1.5,0.18,2.25,0.58l-6.33-6.33C7.82,11,8,11.81,8,12.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M1.39,4.22l1.62,1.62c0,0.05-0.01,0.1-0.01,0.16v3.8C5.7,9.8,6,11.96,6,12.5c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8 c0-2.71,2.16-3,2.7-3c0.54,0,2.7,0.29,2.7,3H18c0.06,0,0.11,0,0.16-0.01l1.61,1.61l1.41-1.41L2.81,2.81L1.39,4.22z M11.5,16 c-1.5,0-3.57,0.83-4.37,3H5v-2.13c2.17-0.8,3-2.87,3-4.37c0-0.69-0.18-1.5-0.58-2.25l6.33,6.33C13,16.18,12.19,16,11.5,16z M8.83,6 l-2-2H9c0-1.38,1.12-2.5,2.5-2.5S14,2.62,14,4h4c1.1,0,2,0.9,2,2v4c1.38,0,2.5,1.12,2.5,2.5S21.38,15,20,15v2.17l-2-2V13h2 c0.28,0,0.5-0.22,0.5-0.5S20.28,12,20,12h-2V6h-6V4c0-0.28-0.22-0.5-0.5-0.5S11,3.72,11,4v2H8.83z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,13.5c-1.39,0-2.6,0.82-3.16,2H4.5v-2.34c1.18-0.56,2-1.77,2-3.16c0-0.76-0.24-1.46-0.66-2.03l6.19,6.19 C11.46,13.74,10.76,13.5,10,13.5z M15.5,13.38V10.5H17c0.28,0,0.5-0.22,0.5-0.5S17.28,9.5,17,9.5h-1.5v-5h-5V3 c0-0.28-0.22-0.5-0.5-0.5S9.5,2.72,9.5,3v1.5H6.62L15.5,13.38z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V8c1.1,0,2,0.9,2,2s-0.9,2-2,2v3.5C3,16.33,3.67,17,4.5,17H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h2.88l1.13,1.13L17.07,17.07z M10,13.5c-1.39,0-2.6,0.82-3.16,2H4.5v-2.34c1.18-0.56,2-1.77,2-3.16 c0-0.76-0.24-1.46-0.66-2.03l6.19,6.19C11.46,13.74,10.76,13.5,10,13.5z M19,10c0,1.1-0.9,2-2,2v2.88l-1.5-1.5V10.5H17 c0.28,0,0.5-0.22,0.5-0.5S17.28,9.5,17,9.5h-1.5v-5h-5V3c0-0.28-0.22-0.5-0.5-0.5S9.5,2.72,9.5,3v1.5H6.62L5.12,3H8c0-1.1,0.9-2,2-2 s2,0.9,2,2h3.5C16.33,3,17,3.67,17,4.5V8C18.1,8,19,8.9,19,10z\\\"></path>\"\n      }\n    }\n  },\n  \"join_left\": {\n    \"name\": \"join_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path></g><g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"switch_access_shortcut_add\": {\n    \"name\": \"switch_access_shortcut_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M24,14h-2v-2h-2v2h-2v2h2v2h2v-2h2V14z M7.06,8.94L5,8l2.06-0.94L8,5l0.94,2.06L11,8L8.94,8.94L8,11L7.06,8.94z M8,21 l0.94-2.06L11,18l-2.06-0.94L8,15l-0.94,2.06L5,18l2.06,0.94L8,21z M4.37,12.37L3,13l1.37,0.63L5,15l0.63-1.37L7,13l-1.37-0.63L5,11 L4.37,12.37z M12,12c0-2.73,1.08-5.27,2.75-7.25L12,2h7v7l-2.82-2.82C14.84,7.82,14,9.88,14,12c0,3.32,2.1,6.36,5,7.82L19,22 C14.91,20.41,12,16.35,12,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.22,7.28L4.5,6.5l1.72-0.78L7,4l0.78,1.72L9.5,6.5L7.78,7.28L7,9L6.22,7.28z M7,17l0.78-1.72L9.5,14.5l-1.72-0.78L7,12 l-0.78,1.72L4.5,14.5l1.72,0.78L7,17z M4.5,12l0.47-1.03L6,10.5l-1.03-0.47L4.5,9l-0.47,1.03L3,10.5l1.03,0.47L4.5,12z M15.5,18 c-3.21-1.23-5.5-4.36-5.5-8c0-2.2,0.83-4.24,2.2-5.8L10,2h5.5v5.5l-2.23-2.23C12.17,6.55,11.5,8.21,11.5,10c0,2.81,1.64,5.23,4,6.37 L15.5,18z M20,11.5h-1.5V10H17v1.5h-1.5V13H17v1.5h1.5V13H20V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"disabled_by_default\": {\n    \"name\": \"disabled_by_default\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,5v14h14V5H5z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,19H5V5h14V19z M3,3v18h18V3H3z M17,15.59L15.59,17L12,13.41L8.41,17L7,15.59L10.59,12L7,8.41L8.41,7L12,10.59L15.59,7 L17,8.41L13.41,12L17,15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread_mailbox\": {\n    \"name\": \"markunread_mailbox\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 12H6V8H4v12h16V8H10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6H10v2h10v12H4V8h2v4h2V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"ads_click\": {\n    \"name\": \"ads_click\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11.71,17.99C8.53,17.84,6,15.22,6,12c0-3.31,2.69-6,6-6c3.22,0,5.84,2.53,5.99,5.71l-2.1-0.63C15.48,9.31,13.89,8,12,8 c-2.21,0-4,1.79-4,4c0,1.89,1.31,3.48,3.08,3.89L11.71,17.99z M22,12c0,0.3-0.01,0.6-0.04,0.9l-1.97-0.59C20,12.21,20,12.1,20,12 c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8c0.1,0,0.21,0,0.31-0.01l0.59,1.97C12.6,21.99,12.3,22,12,22C6.48,22,2,17.52,2,12 C2,6.48,6.48,2,12,2S22,6.48,22,12z M18.23,16.26L22,15l-10-3l3,10l1.26-3.77l4.27,4.27l1.98-1.98L18.23,16.26z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17.09,18.5l-3.47-3.47L12.5,18L10,10l8,2.5l-2.97,1.11l3.47,3.47L17.09,18.5z M10,3.5c-3.58,0-6.5,2.92-6.5,6.5 s2.92,6.5,6.5,6.5c0.15,0,0.3-0.01,0.45-0.02l0.46,1.46C10.61,17.98,10.31,18,10,18c-4.42,0-8-3.58-8-8s3.58-8,8-8l0,0 c4.42,0,8,3.58,8,8c0,0.31-0.02,0.61-0.05,0.91l-1.46-0.46c0.01-0.15,0.02-0.3,0.02-0.45C16.5,6.42,13.58,3.5,10,3.5 M10,6.5 c-1.93,0-3.5,1.57-3.5,3.5c0,1.76,1.31,3.23,3.01,3.47L10,15c0,0-0.01,0-0.01,0C7.23,15,5,12.76,5,10c0-2.76,2.24-5,5-5l0,0 c2.76,0,5,2.23,5,4.99c0,0,0,0.01,0,0.01l-1.53-0.49C13.23,7.81,11.76,6.5,10,6.5\\\"></path>\"\n      }\n    }\n  },\n  \"favorite\": {\n    \"name\": \"favorite\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\\\"></path>\"\n      }\n    }\n  },\n  \"width_wide\": {\n    \"name\": \"width_wide\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"6\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M6,18H4V6h2V18z M16,18H8V6h8V18z M20,18h-2V6h2V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"7\\\" x=\\\"6.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M5,14.5H3.5v-9H5V14.5z M13.5,14.5h-7v-9h7V14.5z M16.5,14.5H15v-9h1.5V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edit_off\": {\n    \"name\": \"edit_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,18.08V19h0.92l5.12-5.12l-0.92-0.92L5,18.08z M14.06,9.02l-1.11,1.11l0.92,0.92l1.11-1.11L14.06,9.02z\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M14.06,9.02l0.92,0.92l-1.11,1.11l1.41,1.41l2.52-2.52l-3.75-3.75l-2.52,2.52l1.41,1.41L14.06,9.02z M20.71,7.04 c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C18.17,3.09,17.92,3,17.66,3s-0.51,0.1-0.7,0.29l-1.83,1.83l3.75,3.75L20.71,7.04z M2.81,2.81L1.39,4.22l7.32,7.32L3,17.25V21h3.75l5.71-5.71l7.32,7.32l1.41-1.41L2.81,2.81z M5.92,19H5v-0.92l5.13-5.13l0.92,0.92 L5.92,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"javascript\": {\n    \"name\": \"javascript\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,14v-1h1.5v0.5h2v-1H13c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1h-1.5v-0.5h-2v1H16 c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1h-3C12.45,15,12,14.55,12,14z M9,9v4.5H7.5v-1H6v1C6,14.33,6.67,15,7.5,15H9 c0.83,0,1.5-0.67,1.5-1.5V9C10.5,9,9.83,9,9,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,11.5v-0.75h1V11h1v-0.75H11c-0.28,0-0.5-0.22-0.5-0.5V8.5C10.5,8.22,10.72,8,11,8h2c0.28,0,0.5,0.22,0.5,0.5v0.75h-1 V9h-1v0.75H13c0.28,0,0.5,0.22,0.5,0.5v1.25c0,0.28-0.22,0.5-0.5,0.5h-2C10.72,12,10.5,11.78,10.5,11.5z M8,8v3H7v-1H6v1.5 C6,11.78,6.22,12,6.5,12h2C8.78,12,9,11.78,9,11.5V8H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"class\": {\n    \"name\": \"class\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 13l-3-2.25L7 13V4H6v16h12V4h-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_power\": {\n    \"name\": \"settings_power\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45C16.84 6.94 18 8.83 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44C5.36 5.88 4 8.28 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"fax\": {\n    \"name\": \"fax\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,10c-0.55,0-1,0.45-1,1v7c0,0.55,0.45,1,1,1s1-0.45,1-1v-7C6,10.45,5.55,10,5,10z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"10\\\" y=\\\"6\\\"></rect><path d=\\\"M19,11H8v7h12v-6C20,11.45,19.55,11,19,11z M13,17H9v-5h4V17z M15,17c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S15.55,17,15,17z M15,14c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S15.55,14,15,14z M18,17c-0.55,0-1-0.45-1-1 s0.45-1,1-1s1,0.45,1,1S18.55,17,18,17z M18,14c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S18.55,14,18,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,9h-1V4H8v5H7.22C6.67,8.39,5.89,8,5,8c-1.66,0-3,1.34-3,3v7c0,1.66,1.34,3,3,3c0.89,0,1.67-0.39,2.22-1H22v-8 C22,10.34,20.66,9,19,9z M6,18c0,0.55-0.45,1-1,1s-1-0.45-1-1v-7c0-0.55,0.45-1,1-1s1,0.45,1,1V18z M10,6h6v3h-6V6z M20,18H8v-7 h11c0.55,0,1,0.45,1,1V18z\\\"></path><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"13\\\" r=\\\"1\\\"></circle><circle cx=\\\"15\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><g><rect height=\\\"5\\\" width=\\\"4\\\" x=\\\"9\\\" y=\\\"12\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"4.6\\\" x=\\\"8.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M4.5,8c-0.55,0-1,0.45-1,1v5.5c0,0.55,0.45,1,1,1s1-0.45,1-1V9C5.5,8.45,5.05,8,4.5,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,9H7v5.5h9.5v-5C16.5,9.22,16.28,9,16,9z M11,13.5H8V10h3V13.5z M12.5,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,13.16,12.91,13.5,12.5,13.5z M12.5,11.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C13.25,11.16,12.91,11.5,12.5,11.5z M14.75,13.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,13.16,15.16,13.5,14.75,13.5z M14.75,11.5c-0.41,0-0.75-0.34-0.75-0.75 c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75C15.5,11.16,15.16,11.5,14.75,11.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,7.5h-1.4V4H7v3.5H6.49c-0.46-0.6-1.17-1-1.99-1C3.12,6.5,2,7.62,2,9v5.5C2,15.88,3.12,17,4.5,17 c0.82,0,1.53-0.4,1.99-1H18V9.5C18,8.4,17.1,7.5,16,7.5z M5.5,14.5c0,0.55-0.45,1-1,1s-1-0.45-1-1V9c0-0.55,0.45-1,1-1s1,0.45,1,1 V14.5z M8.5,5.5h4.6v2H8.5V5.5z M16.5,14.5H7V9h9c0.28,0,0.5,0.22,0.5,0.5V14.5z\\\"></path><g><circle cx=\\\"12.5\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle></g><g><circle cx=\\\"12.5\\\" cy=\\\"12.75\\\" r=\\\".75\\\"></circle></g><g><circle cx=\\\"14.75\\\" cy=\\\"12.75\\\" r=\\\".75\\\"></circle></g><g><circle cx=\\\"14.75\\\" cy=\\\"10.75\\\" r=\\\".75\\\"></circle></g><rect height=\\\"3.5\\\" width=\\\"3\\\" x=\\\"8\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"filter_alt_off\": {\n    \"name\": \"filter_alt_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon opacity=\\\".3\\\" points=\\\"8.83,6 16.95,6 13.38,10.55\\\"></polygon><g><path d=\\\"M16.95,6l-3.57,4.55l1.43,1.43c1.03-1.31,4.98-6.37,4.98-6.37C20.3,4.95,19.83,4,19,4H6.83l2,2H16.95z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22L10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-2.17l5.78,5.78l1.41-1.41L2.81,2.81z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"7.62,5.5 10.79,8.67 13.39,5.5\\\"></polygon><path d=\\\"M2.93,2.93L1.87,3.99L9,11.12v4.38C9,15.78,9.22,16,9.5,16h1c0.28,0,0.5-0.22,0.5-0.5v-2.38l5.01,5.01l1.06-1.06 L2.93,2.93z\\\"></path><path d=\\\"M13.39,5.5l-2.6,3.17l1.07,1.07l4.03-4.92C16.15,4.49,15.92,4,15.5,4H6.12l1.5,1.5H13.39z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"spatial_audio\": {\n    \"name\": \"spatial_audio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.48,17.34C14.29,16.73,12.37,16,10,16c-2.37,0-4.29,0.73-5.48,1.34C4.2,17.5,4,17.84,4,18.22V19h12 v-0.78C16,17.84,15.8,17.5,15.48,17.34z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"9\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C8,7.9,8.9,7,10,7z\\\"></path><path d=\\\"M16.39,15.56C14.71,14.7,12.53,14,10,14c-2.53,0-4.71,0.7-6.39,1.56C2.61,16.07,2,17.1,2,18.22V21h16v-2.78 C18,17.1,17.39,16.07,16.39,15.56z M16,19H4v-0.78c0-0.38,0.2-0.72,0.52-0.88C5.71,16.73,7.63,16,10,16 c2.37,0,4.29,0.73,5.48,1.34C15.8,17.5,16,17.84,16,18.22V19z\\\"></path><path d=\\\"M16,1h-2c0,4.97,4.03,9,9,9V8C19.14,8,16,4.86,16,1z\\\"></path><path d=\\\"M20,1h-2c0,2.76,2.24,5,5,5V4C21.35,4,20,2.65,20,1z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8,13.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C10.98,13.9,9.5,13.5,8,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path><path d=\\\"M12.5,1H11c0,4.42,3.58,8,8,8V7.5C15.42,7.5,12.5,4.58,12.5,1z\\\"></path><path d=\\\"M15.5,1H14c0,2.76,2.24,5,5,5V4.5C17.07,4.5,15.5,2.93,15.5,1z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"density_small\": {\n    \"name\": \"density_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"11.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"7\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"2.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"16\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"rounded_corner\": {\n    \"name\": \"rounded_corner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z\\\"></path>\"\n      }\n    }\n  },\n  \"favorite_border\": {\n    \"name\": \"favorite_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less_double\": {\n    \"name\": \"unfold_less_double\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"16.58,1.41 15.16,0 11.99,3.17 8.82,0 7.41,1.41 11.99,6\\\"></polygon><polygon points=\\\"16.58,6.41 15.16,5 11.99,8.17 8.82,5 7.41,6.41 11.99,11\\\"></polygon><polygon points=\\\"7.42,17.59 8.84,19 12.01,15.83 15.18,19 16.59,17.59 12.01,13\\\"></polygon><polygon points=\\\"7.42,22.59 8.84,24 12.01,20.83 15.18,24 16.59,22.59 12.01,18\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13.37,1.06 12.31,0 10,2.31 7.69,0 6.63,1.06 10,4.43\\\"></polygon><polygon points=\\\"13.37,5.06 12.31,4 10,6.31 7.69,4 6.63,5.06 10,8.43\\\"></polygon><polygon points=\\\"6.63,14.94 7.69,16 10,13.69 12.31,16 13.37,14.94 10,11.57\\\"></polygon><polygon points=\\\"6.63,18.94 7.69,20 10,17.69 12.31,20 13.37,18.94 10,15.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"settings_applications\": {\n    \"name\": \"settings_applications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm2.5-7c0-.2.02-.39.04-.58l-1.27-.99c-.11-.09-.15-.26-.07-.39l1.2-2.07c.08-.13.23-.18.37-.13l1.49.6c.31-.25.66-.44 1.02-.6l.22-1.59c.03-.14.15-.25.3-.25h2.4c.15 0 .27.11.3.25l.22 1.59c.37.15.7.35 1.01.59l1.49-.6c.14-.05.29 0 .37.13l1.2 2.07c.08.13.04.29-.07.39l-1.27.99c.03.2.04.39.04.59 0 .2-.02.39-.04.58l1.27.99c.11.09.15.26.07.39l-1.2 2.07c-.08.13-.23.18-.37.13l-1.49-.6c-.31.24-.65.44-1.01.59l-.22 1.59c-.03.15-.15.26-.3.26h-2.4c-.15 0-.27-.11-.3-.25l-.22-1.59c-.37-.15-.7-.35-1.01-.59l-1.49.6c-.14.05-.29 0-.37-.13l-1.2-2.07c-.08-.13-.04-.29.07-.39l1.27-.99c-.03-.2-.05-.39-.05-.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.21 13.97l1.2 2.07c.08.13.23.18.37.13l1.49-.6c.31.24.64.44 1.01.59l.22 1.59c.03.14.15.25.3.25h2.4c.15 0 .27-.11.3-.26l.22-1.59c.36-.15.7-.35 1.01-.59l1.49.6c.14.05.29 0 .37-.13l1.2-2.07c.08-.13.04-.29-.07-.39l-1.27-.99c.03-.19.04-.39.04-.58 0-.2-.02-.39-.04-.59l1.27-.99c.11-.09.15-.26.07-.39l-1.2-2.07c-.08-.13-.23-.18-.37-.13l-1.49.6c-.31-.24-.64-.44-1.01-.59l-.22-1.59c-.03-.14-.15-.25-.3-.25h-2.4c-.15 0-.27.11-.3.26l-.22 1.59c-.36.15-.71.34-1.01.58l-1.49-.6c-.14-.05-.29 0-.37.13l-1.2 2.07c-.08.13-.04.29.07.39l1.27.99c-.03.2-.05.39-.05.59 0 .2.02.39.04.59l-1.27.99c-.11.1-.14.26-.06.39zM12 10.29c.94 0 1.71.77 1.71 1.71s-.77 1.71-1.71 1.71-1.71-.77-1.71-1.71.77-1.71 1.71-1.71zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"backup_table\": {\n    \"name\": \"backup_table\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"4\\\" y=\\\"11\\\"></rect><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><path d=\\\"M20,6v14H6v2h14c1.1,0,2-0.9,2-2V6H20z\\\"></path><path d=\\\"M18,16V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v12c0,1.1,0.9,2,2,2h12C17.1,18,18,17.1,18,16z M4,4h12v5H4V4z M9,16H4v-5h5 V16z M11,11h5v5h-5V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"9\\\" y=\\\"9\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><g><path d=\\\"M16,6v10H6v1h10c0.55,0,1-0.45,1-1V6H16z\\\"></path></g><g><path d=\\\"M14,13V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v9c0,0.55,0.45,1,1,1h9C13.55,14,14,13.55,14,13z M4,4h9v4H4V4z M8,13H4 V9h4V13z M9,9h4v4H9V9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"swipe_right_alt\": {\n    \"name\": \"swipe_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"9\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M13.9,11C13.44,8.72,11.42,7,9,7c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h4.27l-1.59,1.59L18,16l4-4l-4-4 l-1.41,1.41L18.17,11H13.9z M9,9c1.66,0,3,1.34,3,3s-1.34,3-3,3s-3-1.34-3-3S7.34,9,9,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"8\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><path d=\\\"M11.93,9.25C11.58,7.4,9.95,6,8,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4c1.95,0,3.58-1.4,3.93-3.25l3.2,0l-1.19,1.19L15,13 l3-3l-3-3l-1.06,1.06l1.19,1.19L11.93,9.25z M8,7.5c1.38,0,2.5,1.12,2.5,2.5c0,1.38-1.12,2.5-2.5,2.5S5.5,11.38,5.5,10 C5.5,8.62,6.62,7.5,8,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"update\": {\n    \"name\": \"update\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M11,8v5l4.25,2.52l0.77-1.28l-3.52-2.09V8H11z M21,10V3l-2.64,2.64C16.74,4.01,14.49,3,12,3c-4.97,0-9,4.03-9,9 s4.03,9,9,9s9-4.03,9-9h-2c0,3.86-3.14,7-7,7s-7-3.14-7-7s3.14-7,7-7c1.93,0,3.68,0.79,4.95,2.05L14,10H21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"join_full\": {\n    \"name\": \"join_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><path d=\\\"M7.5,12c0-0.97,0.23-4.16,3.03-6.5C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C7.73,16.16,7.5,12.97,7.5,12z\\\"></path><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c2.8,2.34,3.03,5.53,3.03,6.5c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19 c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10c0,0.89-0.23,3.08-2.15,4.81 c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M9.15,5.19C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 C7.23,13.08,7,10.89,7,10C7,9.11,7.23,6.92,9.15,5.19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"turned_in\": {\n    \"name\": \"turned_in\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 14.97l-4.21-1.81-.79-.34-.79.34L7 17.97V5h10v12.97z\\\"></path><path d=\\\"M7 17.97l4.21-1.81.79-.34.79.34L17 17.97V5H7z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"lock\": {\n    \"name\": \"lock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_reset\": {\n    \"name\": \"lock_reset\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,3c-4.97,0-9,4.03-9,9H1l4,4l4-4H6c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7c-1.9,0-3.62-0.76-4.88-1.99L6.7,18.42 C8.32,20.01,10.55,21,13,21c4.97,0,9-4.03,9-9S17.97,3,13,3z M15,11v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3 c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3C16,11.45,15.55,11,15,11z M14,11h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,10c0,3.87-3.13,7-7,7c-2.04,0-3.87-0.88-5.15-2.27l1.06-1.06C6.92,14.79,8.38,15.5,10,15.5c3.03,0,5.5-2.47,5.5-5.5 S13.03,4.5,10,4.5S4.5,6.97,4.5,10h2.25l-3,3l-3-3H3c0-3.87,3.13-7,7-7C13.87,3,17,6.13,17,10z M12.25,10v2.25 c0,0.41-0.34,0.75-0.75,0.75h-3c-0.41,0-0.75-0.34-0.75-0.75V10c0-0.41,0.34-0.75,0.75-0.75V8.5C8.5,7.67,9.17,7,10,7 s1.5,0.67,1.5,1.5v0.75C11.91,9.25,12.25,9.59,12.25,10z M10.75,8.5c0-0.41-0.34-0.75-0.75-0.75S9.25,8.09,9.25,8.5v0.75h1.5V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"online_prediction\": {\n    \"name\": \"online_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.5,11.5c0,2-2.5,3.5-2.5,5h-2c0-1.5-2.5-3-2.5-5C8.5,9.57,10.07,8,12,8S15.5,9.57,15.5,11.5z M13,17.5h-2V19h2V17.5z M22,12c0-2.76-1.12-5.26-2.93-7.07l-1.06,1.06C19.55,7.53,20.5,9.66,20.5,12c0,2.34-0.95,4.47-2.49,6.01l1.06,1.06 C20.88,17.26,22,14.76,22,12z M3.5,12c0-2.34,0.95-4.47,2.49-6.01L4.93,4.93C3.12,6.74,2,9.24,2,12c0,2.76,1.12,5.26,2.93,7.07 l1.06-1.06C4.45,16.47,3.5,14.34,3.5,12z M17.5,12c0,1.52-0.62,2.89-1.61,3.89l1.06,1.06C18.22,15.68,19,13.93,19,12 c0-1.93-0.78-3.68-2.05-4.95l-1.06,1.06C16.88,9.11,17.5,10.48,17.5,12z M7.05,16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89 c0-1.52,0.62-2.89,1.61-3.89L7.05,7.05C5.78,8.32,5,10.07,5,12C5,13.93,5.78,15.68,7.05,16.95z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M9.25,14h1.5v1h-1.5V14z M10,7L10,7L10,7C10,7,10,7,10,7C8.62,7,7.5,8.12,7.5,9.5C7.5,11,9.25,12,9.25,13 c0.35,0,1.5,0,1.5,0c0-1,1.75-2,1.75-3.5C12.5,8.12,11.38,7,10,7z M4,10c0-1.65,0.67-3.15,1.76-4.24L5.05,5.05 C3.78,6.32,3,8.07,3,10c0,1.93,0.78,3.68,2.05,4.95l0.71-0.71C4.67,13.15,4,11.65,4,10z M17,10c0-1.93-0.78-3.68-2.05-4.95 l-0.71,0.71C15.33,6.85,16,8.35,16,10c0,1.65-0.67,3.15-1.76,4.24l0.71,0.71C16.22,13.68,17,11.93,17,10z M6.46,13.54l0.71-0.71 C6.45,12.1,6,11.1,6,10c0-1.1,0.45-2.1,1.17-2.83L6.46,6.46C5.56,7.37,5,8.62,5,10C5,11.38,5.56,12.63,6.46,13.54z M14,10 c0,1.1-0.45,2.1-1.17,2.83l0.71,0.71C14.44,12.63,15,11.38,15,10c0-1.38-0.56-2.63-1.46-3.54l-0.71,0.71C13.55,7.9,14,8.9,14,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"table_view\": {\n    \"name\": \"table_view\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,7H9C7.9,7,7,7.9,7,9v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,9v2H9V9H19z M13,15v-2h2v2H13z M15,17v2h-2v-2H15z M11,15H9v-2h2V15z M17,13h2v2h-2V13z M9,17h2v2H9V17z M17,19v-2h2v2H17z M6,17H5c-1.1,0-2-0.9-2-2V5 c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2v1h-2V5H5v10h1V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"line_weight\": {\n    \"name\": \"line_weight\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z\\\"></path>\"\n      }\n    }\n  },\n  \"g_translate\": {\n    \"name\": \"g_translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42 0 1.33 1.07 2.42 2.38 2.42 1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm5.5-3.51h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7h-.99l-.31-1.04zm1.72 3.5l-.54.53-.65-2.23c.33.6.74 1.18 1.19 1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment\": {\n    \"name\": \"assignment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5v14h14V5H5zm9 12H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 15h7v2H7zm0-4h10v2H7zm0-4h10v2H7zm12-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"build\": {\n    \"name\": \"build\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.92 8.28c.24-1.4-.16-2.89-1.24-3.96-.94-.95-2.2-1.39-3.44-1.32l3.09 3.09-4.24 4.24L3 7.24c-.07 1.24.37 2.49 1.31 3.44 1.04 1.04 2.47 1.45 3.83 1.25.71-.1 1.4-.38 2-.82l9.46 9.46.88-.88-9.45-9.45c.47-.6.77-1.26.89-1.96z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22.61 18.97L13.54 9.9c.93-2.34.45-5.1-1.44-7C9.8.6 6.22.39 3.67 2.25L7.5 6.08 6.08 7.5 2.25 3.67C.39 6.21.6 9.79 2.9 12.09c1.86 1.86 4.57 2.35 6.89 1.48l9.11 9.11c.39.39 1.02.39 1.41 0l2.3-2.3c.4-.38.4-1.02 0-1.41zm-3 1.6l-9.46-9.46c-.61.45-1.29.72-2 .82-1.36.2-2.79-.21-3.83-1.25-.95-.94-1.39-2.2-1.32-3.44l3.09 3.09 4.24-4.24L7.24 3c1.24-.07 2.49.37 3.44 1.31 1.08 1.08 1.49 2.57 1.24 3.96-.12.7-.42 1.36-.88 1.95l9.45 9.45-.88.9z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_shopping_cart\": {\n    \"name\": \"remove_shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38c-.5.36-.83.95-.83 1.62 0 1.1.89 2 1.99 2 .67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7z\\\"></path><path d=\\\"M18.31 6H9.12l4.99 5h1.44z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H7.12l2 2h9.19l-2.76 5h-1.44l1.94 1.94c.54-.14.99-.49 1.25-.97l3.58-6.49C21.25 4.82 20.76 4 20 4zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pin_invoke\": {\n    \"name\": \"pin_invoke\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12v6c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10l0,2H4v12h16v-6H22z M22,7c0-1.66-1.34-3-3-3 c-1.66,0-3,1.34-3,3s1.34,3,3,3C20.66,10,22,8.66,22,7z M11.47,12.12l-2.83,2.83l1.41,1.41l2.83-2.83L15,15.66V10H9.34L11.47,12.12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10v4.5c0,0.83-0.67,1.5-1.5,1.5h-13C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4H12c0,0,0.01,1.48,0,1.5H3.5v9h13V10 H18z M18,6.25C18,5.01,16.99,4,15.75,4C14.5,4,13.5,5.01,13.5,6.25s1.01,2.25,2.25,2.25S18,7.49,18,6.25z M9.35,10.09l-2.12,2.12 l1.06,1.06l2.12-2.12L12,12.74V8.5H7.76L9.35,10.09z\\\"></path>\"\n      }\n    }\n  },\n  \"dashboard\": {\n    \"name\": \"dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5h4v6H5zm10 8h4v6h-4zM5 17h4v2H5zM15 5h4v2h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 13h8V3H3v10zm2-8h4v6H5V5zm8 16h8V11h-8v10zm2-8h4v6h-4v-6zM13 3v6h8V3h-8zm6 4h-4V5h4v2zM3 21h8v-6H3v6zm2-4h4v2H5v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"track_changes\": {\n    \"name\": \"track_changes\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.07 4.93l-1.41 1.41C19.1 7.79 20 9.79 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z\\\"></path>\"\n      }\n    }\n  },\n  \"join_right\": {\n    \"name\": \"join_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse></g><g><path d=\\\"M16.5,12c0,0.97-0.23,4.16-3.03,6.5C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7s-3.14-7-7-7c-0.9,0-1.75,0.19-2.53,0.5 C16.27,7.84,16.5,11.03,16.5,12z\\\"></path></g><g><path d=\\\"M8,19c0.9,0,1.75-0.19,2.53-0.5c-0.61-0.51-1.1-1.07-1.49-1.63C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5 c0.36,0,0.71,0.05,1.04,0.13c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7S4.14,19,8,19z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,14.24c1.73-1.43,2-3.32,2-4.24c0-0.91-0.27-2.81-2-4.24C8.27,7.19,8,9.09,8,10C8,10.92,8.27,12.81,10,14.24z\\\"></path><path d=\\\"M10.85,14.81c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5c0-3.04-2.46-5.5-5.5-5.5 c-0.96,0-1.86,0.25-2.65,0.69C12.77,6.92,13,9.11,13,10C13,10.89,12.77,13.08,10.85,14.81z\\\"></path><path d=\\\"M6.5,15.5c0.96,0,1.86-0.25,2.65-0.69c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14c-2.21,0-4-1.79-4-4 s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10 C1,13.04,3.46,15.5,6.5,15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"compare_arrows\": {\n    \"name\": \"compare_arrows\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z\\\"></path>\"\n      }\n    }\n  },\n  \"nightlight_round\": {\n    \"name\": \"nightlight_round\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M15.5,22c1.05,0,2.05-0.16,3-0.46c-4.06-1.27-7-5.06-7-9.54s2.94-8.27,7-9.54C17.55,2.16,16.55,2,15.5,2 c-5.52,0-10,4.48-10,10S9.98,22,15.5,22L15.5,22z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"stars\": {\n    \"name\": \"stars\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.47 9.16c-1.1-2.87-3.8-4.95-7.01-5.14l2 4.71 5.01.43zm-7.93-5.14c-3.22.18-5.92 2.27-7.02 5.15l5.02-.43 2-4.72zm-7.31 6.12C4.08 10.74 4 11.36 4 12c0 2.48 1.14 4.7 2.91 6.17l1.11-4.75-3.79-3.28zm15.54-.01l-3.79 3.28 1.1 4.76C18.86 16.7 20 14.48 20 12c0-.64-.09-1.27-.23-1.87zM7.84 18.82c1.21.74 2.63 1.18 4.15 1.18 1.53 0 2.95-.44 4.17-1.18L12 16.31l-4.16 2.51z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm7.48 7.16l-5.01-.43-2-4.71c3.21.19 5.91 2.27 7.01 5.14zM12 8.06l1.09 2.56 2.78.24-2.11 1.83.63 2.73L12 13.98l-2.39 1.44.63-2.72-2.11-1.83 2.78-.24L12 8.06zm-.46-4.04l-2 4.72-5.02.43c1.1-2.88 3.8-4.97 7.02-5.15zM4 12c0-.64.08-1.26.23-1.86l3.79 3.28-1.11 4.75C5.14 16.7 4 14.48 4 12zm7.99 8c-1.52 0-2.94-.44-4.15-1.18L12 16.31l4.16 2.51c-1.22.74-2.64 1.18-4.17 1.18zm5.1-1.83l-1.1-4.76 3.79-3.28c.13.6.22 1.23.22 1.87 0 2.48-1.14 4.7-2.91 6.17z\\\"></path>\"\n      }\n    }\n  },\n  \"help_center\": {\n    \"name\": \"help_center\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,5v14h14V5H5z M12.01,18c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 c0.71,0,1.25,0.54,1.25,1.25C13.25,17.43,12.72,18,12.01,18z M15.02,10.6c-0.76,1.11-1.48,1.46-1.87,2.17 c-0.16,0.29-0.22,0.48-0.22,1.41h-1.82c0-0.49-0.08-1.29,0.31-1.98c0.49-0.87,1.42-1.39,1.96-2.16c0.57-0.81,0.25-2.33-1.37-2.33 c-1.06,0-1.58,0.8-1.8,1.48L8.56,8.49C9.01,7.15,10.22,6,11.99,6c1.48,0,2.49,0.67,3.01,1.52C15.44,8.24,15.7,9.59,15.02,10.6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.25,16.74c0,0.69-0.53,1.26-1.25,1.26c-0.7,0-1.26-0.56-1.26-1.26c0-0.71,0.56-1.25,1.26-1.25 C12.71,15.49,13.25,16.04,13.25,16.74z M11.99,6c-1.77,0-2.98,1.15-3.43,2.49l1.64,0.69c0.22-0.67,0.74-1.48,1.8-1.48 c1.62,0,1.94,1.52,1.37,2.33c-0.54,0.77-1.47,1.29-1.96,2.16c-0.39,0.69-0.31,1.49-0.31,1.98h1.82c0-0.93,0.07-1.12,0.22-1.41 c0.39-0.72,1.11-1.06,1.87-2.17c0.68-1,0.42-2.36-0.02-3.08C14.48,6.67,13.47,6,11.99,6z M19,5H5v14h14V5 M19,3c1.1,0,2,0.9,2,2v14 c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V5c0-1.1,0.9-2,2-2H19L19,3z\\\"></path></g>\"\n      }\n    }\n  },\n  \"dashboard_customize\": {\n    \"name\": \"dashboard_customize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><rect enable-background=\\\"new\\\" height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect enable-background=\\\"new\\\" height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect enable-background=\\\"new\\\" height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><path d=\\\"M3,11h8V3H3V11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\\\"></path><path d=\\\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\\\"></path><polygon points=\\\"18,13 16,13 16,16 13,16 13,18 16,18 16,21 18,21 18,18 21,18 21,16 18,16\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"comment_bank\": {\n    \"name\": \"comment_bank\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18l2-2h14V4H4V18z M13,6h5v8l-2.5-1.5L13,14V6z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"18,14 18,6 13,6 13,14 15.5,12.5\\\"></polygon><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H6l-2,2V4h16V16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,14.59L5.59,13H16V4H4V14.59z M11,5h4v6l-2-1.31L11,11V5z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"15,11 15,5 11,5 11,11 13,9.69\\\"></polygon><path d=\\\"M16,3H4C3.45,3,3,3.45,3,4v13l3-3h10c0.55,0,1-0.45,1-1V4C17,3.45,16.55,3,16,3z M16,13H5.59L4,14.59V4h12V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"thumbs_up_down\": {\n    \"name\": \"thumbs_up_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm-2 1.13L7.92 12H2V6.21l1.93-1.93L3.36 7H10v.13zM22.5 10h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5zm-.5 7.79l-1.93 1.93.57-2.72H14v-.13L16.08 12H22v5.79z\\\"></path><path d=\\\"M3.93 4.28L2 6.21V12h5.92L10 7.13V7H3.36zM14 16.87V17h6.64l-.57 2.72L22 17.79V12h-5.92z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"receipt\": {\n    \"name\": \"receipt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19.09h14V4.91H5v14.18zM6 7h12v2H6V7zm0 4h12v2H6v-2zm0 4h12v2H6v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5zM19 19.09H5V4.91h14v14.18zM6 15h12v2H6zm0-4h12v2H6zm0-4h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"question_mark\": {\n    \"name\": \"question_mark\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11.07,12.85c0.77-1.39,2.25-2.21,3.11-3.44c0.91-1.29,0.4-3.7-2.18-3.7c-1.69,0-2.52,1.28-2.87,2.34L6.54,6.96 C7.25,4.83,9.18,3,11.99,3c2.35,0,3.96,1.07,4.78,2.41c0.7,1.15,1.11,3.3,0.03,4.9c-1.2,1.77-2.35,2.31-2.97,3.45 c-0.25,0.46-0.35,0.76-0.35,2.24h-2.89C10.58,15.22,10.46,13.95,11.07,12.85z M14,20c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2 S14,18.9,14,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.29,10.58c0.6-1.07,1.73-1.7,2.39-2.65c0.7-0.99,0.31-2.85-1.67-2.85c-1.3,0-1.94,0.98-2.2,1.8l-2-0.84 C6.35,4.41,7.83,3,9.99,3c1.81,0,3.05,0.82,3.68,1.85c0.54,0.88,0.86,2.54,0.02,3.77c-0.92,1.36-1.81,1.78-2.28,2.65 c-0.19,0.35-0.27,0.58-0.27,1.72H8.91C8.91,12.4,8.82,11.42,9.29,10.58z M11.5,16c0,0.83-0.67,1.5-1.5,1.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5C10.83,14.5,11.5,15.17,11.5,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"contact_page\": {\n    \"name\": \"contact_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.17,4L18,8.83V20H6V4H13.17 M12,14c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8 V17.43z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M12,14 c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,13.1,10.9,14,12,14z M16,17.43c0-0.81-0.48-1.53-1.22-1.85 C13.93,15.21,12.99,15,12,15c-0.99,0-1.93,0.21-2.78,0.58C8.48,15.9,8,16.62,8,17.43V18h8V17.43z\\\"></path>\"\n      }\n    }\n  },\n  \"mediation\": {\n    \"name\": \"mediation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,16l4-4l-4-4v3h-5.06c-0.34-3.1-2.26-5.72-4.94-7.05C7.96,2.31,6.64,1,5,1C3.34,1,2,2.34,2,4s1.34,3,3,3 c0.95,0,1.78-0.45,2.33-1.14C9.23,6.9,10.6,8.77,10.92,11h-3.1C7.4,9.84,6.3,9,5,9c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.3,0,2.4-0.84,2.82-2h3.1c-0.32,2.23-1.69,4.1-3.58,5.14C6.78,17.45,5.95,17,5,17c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.64,0,2.96-1.31,2.99-2.95c2.68-1.33,4.6-3.95,4.94-7.05H18V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe\": {\n    \"name\": \"swipe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M20.13,3.87C18.69,2.17,15.6,1,12,1S5.31,2.17,3.87,3.87L2,2v5h5L4.93,4.93c1-1.29,3.7-2.43,7.07-2.43 s6.07,1.14,7.07,2.43L17,7h5V2L20.13,3.87z\\\"></path></g></g><g><path d=\\\"M12,13.68V7.5C12,7.22,11.78,7,11.5,7S11,7.22,11,7.5v10.61l-4.17-0.89 l3.7,3.78h6.55L18,15.56l-4.24-1.89H12z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14V7.63c0-1.32-0.96-2.5-2.27-2.62C10.25,4.88,9,6.05,9,7.5v8.15 l-1.87-0.4c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67 l0.92-5.44C20.12,15.03,19.68,14.17,18.89,13.77z M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5 v6.18h1.76L18,15.56L17.08,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M14.22,12.7l-2.58-1.2H9.5V7c0-0.28-0.22-0.5-0.5-0.5S8.5,6.72,8.5,7v7.42 l-3.04-0.76L5.12,14l3.5,3.5h5.26l0.61-4.29C14.53,13,14.42,12.79,14.22,12.7z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.89,11.36L12,10h-1V7c0-1.1-0.9-2-2-2S7,5.9,7,7v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3,14l4.56,4.56 C7.84,18.84,8.22,19,8.62,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.1,12.57,15.66,11.74,14.89,11.36z M13.88,17.5H8.62 L5.12,14l0.34-0.34l3.04,0.76V7c0-0.28,0.22-0.5,0.5-0.5S9.5,6.72,9.5,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L13.88,17.5z M18,2v4h-4l1.31-1.31C13.98,3.47,12.09,2.7,10,2.7S6.02,3.47,4.69,4.69L6,6H2V2l1.49,1.49C5.13,1.96,7.44,1,10,1 s4.87,0.96,6.51,2.49L18,2z\\\"></path>\"\n      }\n    }\n  },\n  \"generating_tokens\": {\n    \"name\": \"generating_tokens\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S12.31,6,9,6z M12,10.5h-2v5H8v-5H6V9h6V10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C17,7.58,13.42,4,9,4z M9,18c-3.31,0-6-2.69-6-6s2.69-6,6-6 s6,2.69,6,6S12.31,18,9,18z M12,10.5h-2v5H8v-5H6V9h6V10.5z M20.25,3.75L23,5l-2.75,1.25L19,9l-1.25-2.75L15,5l2.75-1.25L19,1 L20.25,3.75z M20.25,17.75L23,19l-2.75,1.25L19,23l-1.25-2.75L15,19l2.75-1.25L19,15L20.25,17.75z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7.5,5c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S10.26,5,7.5,5z M10,8.75H8.25V13h-1.5V8.75H5V7.5h5V8.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.06,4.94L13,4l2.06-0.94L16,1l0.94,2.06L19,4l-2.06,0.94L16,7L15.06,4.94z M16,19l0.94-2.06L19,16l-2.06-0.94L16,13 l-0.94,2.06L13,16l2.06,0.94L16,19z M2.5,10c0,2.76,2.24,5,5,5s5-2.24,5-5s-2.24-5-5-5S2.5,7.24,2.5,10z M7.5,3.5 c3.59,0,6.5,2.91,6.5,6.5s-2.91,6.5-6.5,6.5S1,13.59,1,10S3.91,3.5,7.5,3.5L7.5,3.5z M10,7.5H5v1.25h1.75V13h1.5V8.75H10V7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"request_page\": {\n    \"name\": \"request_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.17,4H6v16h12V8.83L13.17,4z M15,11h-4v1h3c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1 h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.17,4L18,8.83V20H6V4H13.17 M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2L14,2z M15,11h-4v1h3 c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1h-2v-1H9v-2h4v-1h-3c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1h1V8h2v1h2V11z\\\"></path>\"\n      }\n    }\n  },\n  \"cached\": {\n    \"name\": \"cached\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m19 8-4 4h3c0 3.31-2.69 6-6 6-1.01 0-1.97-.25-2.8-.7l-1.46 1.46C8.97 19.54 10.43 20 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46C15.03 4.46 13.57 4 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"width_full\": {\n    \"name\": \"width_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"6\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M5,18H4V6h1V18z M17,18H7V6h10V18z M20,18h-1V6h1V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"5.5\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M4.5,14.5h-1v-9h1V14.5z M14,14.5H6v-9h8V14.5z M16.5,14.5h-1v-9h1V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alarm\": {\n    \"name\": \"alarm\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm3.75 10.85L11 14V8h1.5v5.25l4 2.37-.75 1.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"on_device_training\": {\n    \"name\": \"on_device_training\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"20\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"3\\\"></rect><rect height=\\\"1\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><path d=\\\"M12,11c-1.1,0-2,0.9-2,2c0,0.74,0.4,1.38,1,1.72v0.78h2v-0.78c0.6-0.35,1-0.98,1-1.72C14,11.9,13.1,11,12,11z\\\"></path><path d=\\\"M18,1.01L6,1C4.9,1,4,1.9,4,3v18c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1.01,18,1.01z M18,21H6v-1h12V21z M18,18H6V6h12V18z M18,4H6V3h12V4z\\\"></path><path d=\\\"M16.01,15.95C16.63,15.12,17,14.11,17,13s-0.37-2.12-0.99-2.95l-1.07,1.07c0.35,0.54,0.56,1.19,0.56,1.88 s-0.21,1.34-0.56,1.88L16.01,15.95z\\\"></path><path d=\\\"M9.06,14.88C8.71,14.34,8.5,13.69,8.5,13c0-1.93,1.57-3.5,3.5-3.5v1.25l2.25-2l-2.25-2V8c-2.76,0-5,2.24-5,5 c0,1.11,0.37,2.12,0.99,2.95L9.06,14.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"16.5\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"2.5\\\"></rect><path d=\\\"M14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9c0.83,0,1.5-0.67,1.5-1.5v-15C16,1.67,15.33,1,14.5,1z M14.5,17.5h-9v-1h9V17.5z M14.5,15h-9V5h9V15z M14.5,3.5h-9v-1h9V3.5z\\\"></path><rect height=\\\".75\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"13.25\\\"></rect><path d=\\\"M10,9.5c-0.83,0-1.5,0.67-1.5,1.5c0,0.55,0.3,1.03,0.75,1.29v0.46h1.5v-0.46c0.45-0.26,0.75-0.74,0.75-1.29 C11.5,10.17,10.83,9.5,10,9.5z\\\"></path><path d=\\\"M12.97,13c0.48-0.63,0.78-1.41,0.78-2.26c0-0.85-0.3-1.63-0.78-2.26l-0.71,0.71c0.31,0.44,0.49,0.98,0.49,1.56 s-0.18,1.11-0.49,1.56L12.97,13z\\\"></path><path d=\\\"M7.74,12.31c-0.31-0.44-0.49-0.98-0.49-1.56C7.25,9.23,8.48,8,10,8v1l1.5-1.5L10,6v1c-2.07,0-3.75,1.68-3.75,3.75 c0,0.85,0.3,1.63,0.78,2.26L7.74,12.31z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"balance\": {\n    \"name\": \"balance\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"12\\\" cy=\\\"5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M13,7.83c0.85-0.3,1.53-0.98,1.83-1.83H18l-3,7c0,1.66,1.57,3,3.5,3s3.5-1.34,3.5-3l-3-7h2V4h-6.17 C14.42,2.83,13.31,2,12,2S9.58,2.83,9.17,4L3,4v2h2l-3,7c0,1.66,1.57,3,3.5,3S9,14.66,9,13L6,6h3.17c0.3,0.85,0.98,1.53,1.83,1.83 V19H2v2h20v-2h-9V7.83z M20.37,13h-3.74l1.87-4.36L20.37,13z M7.37,13H3.63L5.5,8.64L7.37,13z M12,6c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C13,5.55,12.55,6,12,6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"10\\\" cy=\\\"4.25\\\" opacity=\\\".3\\\" r=\\\".75\\\"></circle><path d=\\\"M10.75,6.37C11.39,6.15,11.9,5.64,12.12,5H15l-2.5,5.75c0,1.24,1.23,2.25,2.75,2.25c1.52,0,2.75-1.01,2.75-2.25L15.5,5H17 V3.5h-4.88C11.81,2.63,10.98,2,10,2S8.19,2.63,7.88,3.5H3V5h1.5L2,10.75C2,11.99,3.23,13,4.75,13s2.75-1.01,2.75-2.25L5,5h2.88 C8.1,5.64,8.61,6.15,9.25,6.37v9.13H2V17h16v-1.5h-7.25V6.37z M16.91,10.75h-3.32l1.66-3.82L16.91,10.75z M6.41,10.75H3.09 l1.66-3.82L6.41,10.75z M10,5C9.59,5,9.25,4.66,9.25,4.25C9.25,3.84,9.59,3.5,10,3.5s0.75,0.34,0.75,0.75C10.75,4.66,10.41,5,10,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"upgrade\": {\n    \"name\": \"upgrade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,18v2H8v-2H16z M11,7.99V16h2V7.99h3L12,4L8,7.99H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13,14v1H7v-1H13z M9.5,8v5h1V8H13l-3-3L7,8H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_array\": {\n    \"name\": \"view_array\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect height=\\\"10\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"7\\\"></rect><path d=\\\"M15,7v10H9V7H15z M21,5h-3v14h3V5z M17,5H7v14h10V5z M6,5H3v14h3V5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"7\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"6.5\\\"></rect><path d=\\\"M3,5h2v10H3V5z M15,5v10h2V5H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_voice\": {\n    \"name\": \"settings_voice\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11c.56 0 .99-.44.99-1L13 4c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 22h2v2H7zm5-9c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .56-.44 1-1 1-.55 0-1-.45-1-1V4zm0 18h2v2h-2zm4 0h2v2h-2zm4-12h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z\\\"></path>\"\n      }\n    }\n  },\n  \"sticky_note_2\": {\n    \"name\": \"sticky_note_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,5v14h9v-5h5V5H5z M12,14H7v-2h5V14z M17,10H7V8h10V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,5v9l-5,0l0,5H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h10l6-6V5C21,3.9,20.1,3,19,3z M12,14H7v-2h5V14z M17,10H7V8h10V10z\\\"></path>\"\n      }\n    }\n  },\n  \"analytics\": {\n    \"name\": \"analytics\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"12\\\"></rect><rect height=\\\"10\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"7\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"14\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect></g></g></g>\"\n      }\n    }\n  },\n  \"remove_done\": {\n    \"name\": \"remove_done\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4.84,1.98L3.43,3.39l10.38,10.38l-1.41,1.41l-4.24-4.24l-1.41,1.41l5.66,5.66l2.83-2.83l6.6,6.6l1.41-1.41L4.84,1.98z M18.05,12.36L23,7.4L21.57,6l-4.94,4.94L18.05,12.36z M17.34,7.4l-1.41-1.41l-2.12,2.12l1.41,1.41L17.34,7.4z M1.08,12.35 l5.66,5.66l1.41-1.41l-5.66-5.66L1.08,12.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pan_tool\": {\n    \"name\": \"pan_tool\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.5 5.65c-.28 0-.5.22-.5.5V12h-2V3.42c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V2.51c0-.28-.22-.5-.5-.5s-.5.22-.5.5V12h-2V4.79c0-.28-.22-.5-.5-.5s-.5.23-.5.5v12.87l-5.35-2.83-.51.45 5.86 6.1c.38.39.9.62 1.44.62H18c1.1 0 2-.9 2-2V6.15c0-.28-.22-.5-.5-.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.5 3.65c-.17 0-.34.02-.5.05v-.28c0-1.38-1.12-2.5-2.5-2.5-.33 0-.65.06-.94.18C15.11.44 14.35.01 13.5.01c-1.32 0-2.41 1.03-2.49 2.33-.16-.03-.33-.05-.51-.05-1.38 0-2.5 1.12-2.5 2.5v9.55l-2.41-1.28c-.73-.39-1.64-.28-2.26.27l-2.07 1.83 7.3 7.61c.75.78 1.8 1.23 2.89 1.23H18c2.21 0 4-1.79 4-4V6.15c0-1.38-1.12-2.5-2.5-2.5zM20 20c0 1.1-.9 2-2 2h-6.55c-.54 0-1.07-.22-1.44-.62l-5.86-6.11.51-.45L10 17.66V4.79c0-.28.22-.5.5-.5s.5.23.5.5V12h2V2.51c0-.28.22-.5.5-.5s.5.22.5.5V12h2V3.42c0-.28.22-.5.5-.5s.5.22.5.5V12h2V6.15c0-.28.22-.5.5-.5s.5.22.5.5V20z\\\"></path>\"\n      }\n    }\n  },\n  \"pageview\": {\n    \"name\": \"pageview\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18h16V6H4v12zm7.5-11c2.49 0 4.5 2.01 4.5 4.5 0 .88-.26 1.69-.7 2.39l2.44 2.43-1.42 1.42-2.44-2.44c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.49 16c.88 0 1.7-.26 2.39-.7l2.44 2.44 1.42-1.42-2.44-2.43c.44-.7.7-1.51.7-2.39C16 9.01 13.99 7 11.5 7S7 9.01 7 11.5 9.01 16 11.49 16zm.01-7c1.38 0 2.5 1.12 2.5 2.5S12.88 14 11.5 14 9 12.88 9 11.5 10.12 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"explore_off\": {\n    \"name\": \"explore_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 20c1.48 0 2.86-.41 4.06-1.12l-3.98-3.98-5.58 2.6 2.59-5.58-3.97-3.98C4.41 9.14 4 10.52 4 12c0 4.41 3.59 8 8 8zm0-16c-1.48 0-2.86.41-4.06 1.12l3.98 3.98 5.58-2.6-2.59 5.58 3.98 3.98c.7-1.2 1.11-2.58 1.11-4.06 0-4.41-3.59-8-8-8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5 6.5l-5.58 2.59 2.99 2.99zM2.1 4.93l1.56 1.56C2.61 8.07 2 9.96 2 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm3.02 3.01l3.98 3.98-2.6 5.58 5.58-2.59 3.98 3.98c-1.2.7-2.58 1.11-4.06 1.11-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06zM12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.06l1.46 1.46C21.39 15.93 22 14.04 22 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.46 1.46C9.14 4.41 10.52 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_camera_mic\": {\n    \"name\": \"perm_camera_mic\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.11 7l-.59-.65L14.28 5h-4.24L8.81 6.35l-.6.65H4v12h7v-1.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V19h7V7h-3.89zM14 12c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-1.1.9-2 2-2s2 .9 2 2v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 6c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2s2-.9 2-2V8c0-1.1-.9-2-2-2zm8-1h-3.17l-1.86-2H8.96L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-7v-1.09c2.83-.48 5-2.94 5-5.91h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6c0 2.97 2.17 5.43 5 5.91V19H4V7h4.21l.59-.65L10.04 5h4.24l1.24 1.35.59.65H20v12z\\\"></path>\"\n      }\n    }\n  },\n  \"reorder\": {\n    \"name\": \"reorder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z\\\"></path>\"\n      }\n    }\n  },\n  \"build_circle\": {\n    \"name\": \"build_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8c4.41,0,8,3.59,8,8C20,16.41,16.41,20,12,20z\\\"></path><path d=\\\"M12.68,7.76c-1.11-1.11-2.79-1.3-4.1-0.59l2.35,2.35l-1.41,1.41L7.17,8.58c-0.71,1.32-0.52,2.99,0.59,4.1 c0.98,0.98,2.4,1.24,3.62,0.81l3.41,3.41c0.2,0.2,0.51,0.2,0.71,0l1.4-1.4c0.2-0.2,0.2-0.51,0-0.71l-3.41-3.41 C13.92,10.15,13.66,8.74,12.68,7.76z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S13.31,4,10,4z M12.02,13.5l-2.26-2.26 c-0.84,0.26-1.79,0.08-2.45-0.59C6.54,9.88,6.4,8.73,6.88,7.81l1.63,1.63l1.03-1.03L7.91,6.78c0.92-0.48,2.07-0.34,2.84,0.43 c0.74,0.74,0.9,1.84,0.48,2.74l2.17,2.17L12.02,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S13.86,3,10,3z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6 S13.31,16,10,16z\\\"></path><path d=\\\"M10.75,7.21C9.98,6.44,8.83,6.3,7.91,6.78l1.63,1.63L8.51,9.44L6.88,7.81C6.4,8.73,6.54,9.88,7.31,10.65 c0.66,0.66,1.61,0.85,2.45,0.59l2.26,2.26l1.38-1.38l-2.17-2.17C11.64,9.05,11.49,7.95,10.75,7.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_rotate_vertical\": {\n    \"name\": \"text_rotate_vertical\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"api\": {\n    \"name\": \"api\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,12l-2,2l-2-2l2-2L14,12z M12,6l2.12,2.12l2.5-2.5L12,1L7.38,5.62l2.5,2.5L12,6z M6,12l2.12-2.12l-2.5-2.5L1,12 l4.62,4.62l2.5-2.5L6,12z M18,12l-2.12,2.12l2.5,2.5L23,12l-4.62-4.62l-2.5,2.5L18,12z M12,18l-2.12-2.12l-2.5,2.5L12,23l4.62-4.62 l-2.5-2.5L12,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"face_unlock\": {\n    \"name\": \"face_unlock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.25 13c0 .69-.56 1.25-1.25 1.25S7.75 13.69 7.75 13s.56-1.25 1.25-1.25 1.25.56 1.25 1.25zM15 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm7 .25c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zM10.66 4.12C12.06 6.44 14.6 8 17.5 8c.46 0 .91-.05 1.34-.12C17.44 5.56 14.9 4 12 4c-.46 0-.91.05-1.34.12zM4.42 9.47c1.71-.97 3.03-2.55 3.66-4.44C6.37 6 5.05 7.58 4.42 9.47zM20 12c0-.78-.12-1.53-.33-2.24-.7.15-1.42.24-2.17.24-3.13 0-5.92-1.44-7.76-3.69C8.69 8.87 6.6 10.88 4 11.86c.01.04 0 .09 0 .14 0 4.41 3.59 8 8 8s8-3.59 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_to_back\": {\n    \"name\": \"flip_to_back\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8c-1.11 0-2 .9-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7c0 1.1.89 2 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12c0 1.1.89 2 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_overscan\": {\n    \"name\": \"settings_overscan\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19.01h18V4.99H3v14.02zM18 10l2.5 2.01L18 14v-4zm-5.99-4.5L14 8h-4l2.01-2.5zM14 16l-1.99 2.5L10 16h4zm-8-6v4l-2.5-1.99L6 10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14 16h-4l2.01 2.5zm4-6v4l2.5-1.99zm3-7H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM6 10l-2.5 2.01L6 14zm6.01-4.5L10 8h4z\\\"></path>\"\n      }\n    }\n  },\n  \"segment\": {\n    \"name\": \"segment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,18h12v-2H9V18z M3,6v2h18V6H3z M9,13h12v-2H9V13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"thumb_up\": {\n    \"name\": \"thumb_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 12v-2h-9l1.34-5.34L9 9v10h9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z\\\"></path>\"\n      }\n    }\n  },\n  \"settings_ethernet\": {\n    \"name\": \"settings_ethernet\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z\\\"></path>\"\n      }\n    }\n  },\n  \"pending_actions\": {\n    \"name\": \"pending_actions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85L18.65,19.35z M17,10c0.34,0,0.67,0.03,1,0.08V5h-2v3H8V5H6v15 h4.68C10.25,19.09,10,18.08,10,17C10,13.13,13.13,10,17,10z M12,5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C13,4.55,12.55,5,12,5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z M18,3h-3.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H6C4.9,3,4,3.9,4,5v15c0,1.1,0.9,2,2,2h6.11 c-0.59-0.57-1.07-1.25-1.42-2H6V5h2v3h8V5h2v5.08c0.71,0.1,1.38,0.31,2,0.6V5C20,3.9,19.1,3,18,3z M12,5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C13,4.55,12.55,5,12,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_compact_alt\": {\n    \"name\": \"view_compact_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18h16V6H4V18z M12.5,7.5h4v4h-4V7.5z M12.5,12.5h4v4h-4V12.5z M7.5,7.5h4v4h-4V7.5z M7.5,12.5h4v4h-4 V12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.5\\\" y=\\\"7.5\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.5\\\" y=\\\"7.5\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"7.5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"12.5\\\" y=\\\"12.5\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,14.5h13v-9h-13V14.5z M10.5,6.5h3v3h-3V6.5z M10.5,10.5h3v3h-3V10.5z M6.5,6.5h3v3h-3V6.5z M6.5,10.5 h3v3h-3V10.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"6.5\\\" y=\\\"10.5\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"10.5\\\" y=\\\"10.5\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"feedback\": {\n    \"name\": \"feedback\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.17L5.17 16H20V4H4v13.17zM11 6h2v4h-2V6zm0 6h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vertical_circle\": {\n    \"name\": \"swap_vertical_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-7V9h2.5L10 5.5 6.5 9H9v4zm4-2h-2v4h-2.5l3.5 3.5 3.5-3.5H15z\\\"></path>\"\n      }\n    }\n  },\n  \"record_voice_over\": {\n    \"name\": \"record_voice_over\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><g opacity=\\\".3\\\"><circle cx=\\\"9\\\" cy=\\\"9\\\" r=\\\"2\\\"></circle><path d=\\\"M9 17c-2.69 0-5.77 1.28-6 2h12c-.2-.71-3.3-2-6-2z\\\"></path></g><path d=\\\"M9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 8c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm-6 4c.22-.72 3.31-2 6-2 2.7 0 5.8 1.29 6 2H3zM16.76 5.36l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z\\\"></path>\"\n      }\n    }\n  },\n  \"euro_symbol\": {\n    \"name\": \"euro_symbol\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 18.5c-2.51 0-4.68-1.42-5.76-3.5H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24C10.32 6.92 12.5 5.5 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3C19.41 3.87 17.3 3 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06c-.04.33-.06.66-.06 1s.02.67.06 1H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z\\\"></path>\"\n      }\n    }\n  },\n  \"quickreply\": {\n    \"name\": \"quickreply\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g opacity=\\\".3\\\"><polygon points=\\\"4,4 4,17.17 5.17,16 15,16 15,10 20,10 20,4\\\"></polygon></g><path d=\\\"M5.17,16L4,17.17V4h16v6h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9v-2H5.17z\\\"></path></g><g><polygon points=\\\"19,23 22.5,16 20.3,16 22,12 17,12 17,18 19,18\\\"></polygon></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><polygon points=\\\"4,4 4,14.59 5.59,13 13,13 13,9 16,9 16,4\\\"></polygon></g><path d=\\\"M5.59,13L4,14.59V4h12v5h1V4c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h7v-1H5.59z\\\"></path><g><polygon points=\\\"16.4,13 17.64,10 14,10 14,14.36 15.45,14.36 15.45,18 18,13\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_circle_right\": {\n    \"name\": \"arrow_circle_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,12c0-4.41,3.59-8,8-8s8,3.59,8,8s-3.59,8-8,8S4,16.41,4,12 M12,11l-4,0v2l4,0v3l4-4l-4-4V11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,12c0-4.41,3.59-8,8-8s8,3.59,8,8s-3.59,8-8,8S4,16.41,4,12 M2,12c0,5.52,4.48,10,10,10c5.52,0,10-4.48,10-10 c0-5.52-4.48-10-10-10C6.48,2,2,6.48,2,12L2,12z M12,11l-4,0v2l4,0v3l4-4l-4-4V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.5,10c0-3.58-2.92-6.5-6.5-6.5S3.5,6.42,3.5,10s2.92,6.5,6.5,6.5S16.5,13.58,16.5,10z M10,10.75H7v-1.5 h3V7l3,3l-3,3V10.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,7l3,3l-3,3v-2.25H7v-1.5h3V7z M18,10c0-4.42-3.58-8-8-8s-8,3.58-8,8s3.58,8,8,8S18,14.42,18,10z M3.5,10 c0-3.58,2.92-6.5,6.5-6.5s6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"open_in_new_off\": {\n    \"name\": \"open_in_new_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.79,5.8L14,3h7v7l-2.79-2.8l-4.09,4.09l-1.41-1.41L16.79,5.8z M19,12v4.17l2,2V12H19z M19.78,22.61L18.17,21H5 c-1.11,0-2-0.9-2-2V5.83L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M16.17,19l-4.88-4.88L9.7,15.71L8.29,14.3l1.59-1.59L5,7.83 V19H16.17z M7.83,5H12V3H5.83L7.83,5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,14.88l-1.5-1.5V10H17V14.88z M10,4.5V3H5.12l1.5,1.5H10z M15.03,6.03L17,8V3h-5l1.97,1.97l-3.44,3.44l1.06,1.06 L15.03,6.03z M16.01,18.13L14.88,17H4.5C3.67,17,3,16.33,3,15.5V5.12L1.87,3.99l1.06-1.06l14.14,14.14L16.01,18.13z M13.38,15.5 l-3.91-3.91L8.06,13L7,11.94l1.41-1.41L4.5,6.62v8.88H13.38z\\\"></path>\"\n      }\n    }\n  },\n  \"credit_card_off\": {\n    \"name\": \"credit_card_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,17.17V12h-5.17L20,17.17z M10.83,8H20V6H8.83L10.83,8z M4,6.83V8h1.17 L4,6.83z M15.17,18l-6-6H4v6H15.17z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.83,4H20c1.11,0,2,0.89,2,2v12c0,0.34-0.08,0.66-0.23,0.94L20,17.17V12h-5.17l-4-4H20V6H8.83 L6.83,4z M20.49,23.31L17.17,20H4c-1.11,0-2-0.89-2-2L2.01,6c0-0.34,0.08-0.66,0.23-0.93L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M4,6.83V8h1.17L4,6.83z M15.17,18l-6-6H4v6H15.17z\\\" enable-background=\\\"new\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.88,7H3.5V5.62L4.88,7z M3.5,14.5V10h4.38l4.5,4.5H3.5z M9.12,7h7.38V5.5H7.62 L9.12,7z M16.5,14.38V10h-4.38L16.5,14.38z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.15,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16 h10.38l2.84,2.84L17.78,17.78z M4.88,7H3.5V5.62L4.88,7z M3.5,14.5V10h4.38l4.5,4.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9 c0,0.38-0.15,0.73-0.38,1l-1.12-1.12V10h-4.38l-3-3h7.38V5.5H7.62L6.12,4z\\\" enable-background=\\\"new\\\"></path>\"\n      }\n    }\n  },\n  \"perm_device_information\": {\n    \"name\": \"perm_device_information\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 20h10v1H7zM7 3h10v1H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 7h2v2h-2zm0 4h2v6h-2zm6-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 21H7v-1h10v1zm0-3H7V6h10v12zm0-14H7V3h10v1z\\\"></path>\"\n      }\n    }\n  },\n  \"get_app\": {\n    \"name\": \"get_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.17 11H13V5h-2v6H9.83L12 13.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 9h-4V3H9v6H5l7 7 7-7zm-8 2V5h2v6h1.17L12 13.17 9.83 11H11zm-6 7h14v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"subject\": {\n    \"name\": \"subject\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"sync_alt\": {\n    \"name\": \"sync_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"18,12 22,8 18,4 18,7 3,7 3,9 18,9\\\"></polygon><polygon points=\\\"6,12 2,16 6,20 6,17 21,17 21,15 6,15\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"18,7 15,4 15,6.25 3,6.25 3,7.75 15,7.75 15,10\\\"></polygon><polygon points=\\\"5,10 2,13 5,16 5,13.75 17,13.75 17,12.25 5,12.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"play_for_work\": {\n    \"name\": \"play_for_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_rotation_none\": {\n    \"name\": \"text_rotation_none\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z\\\"></path>\"\n      }\n    }\n  },\n  \"picture_in_picture_alt\": {\n    \"name\": \"picture_in_picture_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 11h-8v6h8v-6zm-2 4h-4v-2h4v2zm4-12H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4.98C23 3.88 22.1 3 21 3zm0 16.02H3V4.97h18v14.05z\\\"></path><path d=\\\"M13 13h4v2h-4z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"view_column\": {\n    \"name\": \"view_column\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.33,17H5V7h3.33V17z M13.67,17h-3.33V7h3.33V17z M19,17h-3.33V7H19V17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,5v14h18V5H3z M8.33,17H5V7h3.33V17z M13.67,17h-3.33V7h3.33V17z M19,17h-3.33V7H19V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-7h2.67V13.5z M15.5,13.5h-2.67v-7h2.67V13.5z\\\"></path></g><g><path d=\\\"M3,5v10h14V5H3z M7.17,13.5H4.5v-7h2.67V13.5z M11.33,13.5H8.67v-7h2.67V13.5z M15.5,13.5h-2.67v-7h2.67V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"input\": {\n    \"name\": \"input\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14c0-1.11-.9-2-2-2zM11 16l4-4-4-4v3H1v2h10v3z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_history\": {\n    \"name\": \"manage_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M22.69,18.37l1.14-1l-1-1.73l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L20,14h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63 l-1.45-0.49l-1,1.73l1.14,1c-0.08,0.5-0.08,0.76,0,1.26l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63L18,24h2l0.3-1.49 c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1C22.77,19.13,22.77,18.87,22.69,18.37z M19,21c-1.1,0-2-0.9-2-2s0.9-2,2-2 s2,0.9,2,2S20.1,21,19,21z M11,7v5.41l2.36,2.36l1.04-1.79L13,11.59V7H11z M21,12c0-4.97-4.03-9-9-9C9.17,3,6.65,4.32,5,6.36V4H3v6 h6V8H6.26C7.53,6.19,9.63,5,12,5c3.86,0,7,3.14,7,7H21z M10.86,18.91C7.87,18.42,5.51,16.01,5.08,13H3.06c0.5,4.5,4.31,8,8.94,8 c0.02,0,0.05,0,0.07,0L10.86,18.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.95,14.89l0.85-0.79l-0.67-1.15l-1.12,0.33c-0.31-0.28-0.67-0.48-1.07-0.62l-0.28-1.16h-1.33l-0.27,1.17 c-0.39,0.13-0.75,0.34-1.05,0.61l-1.14-0.34L12.2,14.1l0.87,0.81c-0.11,0.54-0.05,0.97,0,1.21l-0.87,0.83l0.67,1.15l1.16-0.36 c0.3,0.26,0.64,0.46,1.03,0.59l0.27,1.17h1.33l0.28-1.16c0.39-0.13,0.75-0.33,1.05-0.6l1.15,0.35l0.67-1.15l-0.86-0.81 C19.07,15.53,18.98,15.07,18.95,14.89z M16.01,17c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5S16.84,17,16.01,17z M10.49,16.98C10.33,16.99,10.17,17,10,17c-3.87,0-7-3.13-7-7h1.5c0,2.91,2.27,5.3,5.13,5.49L10.49,16.98z M15.5,10 c0-3.03-2.47-5.5-5.5-5.5c-1.7,0-3.22,0.78-4.22,2H8V8H3V3h1.5v2.71C5.78,4.07,7.76,3,10,3c3.87,0,7,3.13,7,7H15.5z M10.75,6v3.38 l1.55,1.55l-0.78,1.34L9.25,10V6H10.75z\\\"></path></g>\"\n      }\n    }\n  },\n  \"circle_notifications\": {\n    \"name\": \"circle_notifications\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8c4.41,0,8-3.59,8-8S16.41,4,12,4z M12,18.5 c-0.83,0-1.5-0.67-1.5-1.5h3C13.5,17.83,12.83,18.5,12,18.5z M17,16H7v-2h1v-2.61C8,9.27,9.03,7.47,11,7V6.5c0-0.57,0.43-1,1-1 s1,0.43,1,1V7c1.97,0.47,3,2.28,3,4.39V14h1V16z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,18.5c0.83,0,1.5-0.67,1.5-1.5h-3C10.5,17.83,11.17,18.5,12,18.5z M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10 c5.52,0,10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8c4.41,0,8,3.59,8,8S16.41,20,12,20z M16,11.39 c0-2.11-1.03-3.92-3-4.39V6.5c0-0.57-0.43-1-1-1s-1,0.43-1,1V7c-1.97,0.47-3,2.27-3,4.39V14H7v2h10v-2h-1V11.39z M14,14h-4v-3 c0-1.1,0.9-2,2-2s2,0.9,2,2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3d_rotation\": {\n    \"name\": \"3d_rotation\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.53 21.48C4.26 19.94 1.92 16.76 1.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08-.16-.06-.29-.13-.4-.24-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56-.05-.18-.12-.35-.23-.51-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31.2-.09.37-.2.52-.33.15-.13.27-.27.37-.42.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_notes_off\": {\n    \"name\": \"speaker_notes_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 11V9L4 7v10.17L5.17 16H13l-5-5H6zm2 3H6v-2h2v2zM20 4H6.66L10 7.34V6h8v2h-7.34l1 1H18v2h-4.34l5 5H20z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4v12h-1.34l1.91 1.91C21.39 17.66 22 16.9 22 16V4c0-1.1-.9-2-2-2H4.66l2 2H20zM6 12h2v2H6zm12-1V9h-6.34l2 2zm0-3V6h-8v1.34l.66.66zM1.41 1.59L0 3l2 2.01V22l4-4h9l5.73 5.73 1.41-1.41L1.41 1.59zM5.17 16L4 17.17V7l2 2v2h2l5 5H5.17z\\\"></path>\"\n      }\n    }\n  },\n  \"work_off\": {\n    \"name\": \"work_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8v11h13.74l-11-11zm8.4 0l7.6 7.6V8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 4h4v2h-3.6l2 2H20v7.6l2 2V8c0-1.11-.89-2-2-2h-4V4c0-1.11-.89-2-2-2h-4c-.99 0-1.8.7-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h15.74l2 2 1.41-1.41L3.4 1.84zM4 19V8h2.74l11 11H4z\\\"></path>\"\n      }\n    }\n  },\n  \"dangerous\": {\n    \"name\": \"dangerous\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M9.1,5L5,9.1v5.8L9.1,19h5.8l4.1-4.1V9.1L14.9,5H9.1z M16.24,14.83l-1.41,1.41 L12,13.41l-2.83,2.83l-1.41-1.41L10.59,12L7.76,9.17l1.41-1.41L12,10.59l2.83-2.83l1.41,1.41L13.41,12L16.24,14.83z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.73,3H8.27L3,8.27v7.46L8.27,21h7.46L21,15.73V8.27L15.73,3z M19,14.9L14.9,19H9.1L5,14.9V9.1L9.1,5h5.8L19,9.1V14.9z M14.83,7.76L12,10.59L9.17,7.76L7.76,9.17L10.59,12l-2.83,2.83l1.41,1.41L12,13.41l2.83,2.83l1.41-1.41L13.41,12l2.83-2.83 L14.83,7.76z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><path d=\\\"M0,0h20v20H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7.73,4.5L4.5,7.73v4.53l3.23,3.23h4.53l3.23-3.23V7.73L12.27,4.5H7.73z M13.28,12.22l-1.06,1.06L10,11.06l-2.22,2.22l-1.06-1.06L8.94,10L6.72,7.78l1.06-1.06L10,8.94l2.22-2.22l1.06,1.06L11.06,10 L13.28,12.22z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.89,3H7.11L3,7.11v5.77L7.11,17h5.77L17,12.89V7.11L12.89,3z M15.5,12.27l-3.23,3.23H7.73L4.5,12.27V7.73L7.73,4.5 h4.53l3.23,3.23V12.27z\\\"></path><polygon points=\\\"12.22,6.72 10,8.94 7.78,6.72 6.72,7.78 8.94,10 6.72,12.22 7.78,13.28 10,11.06 12.22,13.28 13.28,12.22 11.06,10 13.28,7.78\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lock_outline\": {\n    \"name\": \"lock_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"copyright\": {\n    \"name\": \"copyright\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm-1.92 9.14c.05.33.16.63.3.88s.34.46.59.62c.23.15.53.22.89.23.21-.01.41-.03.6-.1.2-.07.37-.17.52-.3.15-.13.27-.28.36-.46.09-.18.14-.37.15-.58h1.79c-.01.41-.12.79-.3 1.15-.18.36-.43.67-.74.94-.31.27-.67.48-1.08.63-.41.15-.85.23-1.32.23-.65 0-1.22-.12-1.7-.34-.48-.22-.88-.53-1.2-.91s-.56-.83-.71-1.35c-.15-.52-.23-1.06-.23-1.64v-.27c0-.58.09-1.12.24-1.64.15-.52.39-.97.71-1.36s.72-.69 1.2-.92c.48-.23 1.05-.34 1.7-.34.51 0 .97.07 1.39.23.42.16.78.38 1.08.66.3.28.53.62.7 1.01.17.39.26.82.28 1.29h-1.79c-.01-.22-.05-.44-.14-.64-.09-.2-.2-.38-.34-.53-.14-.15-.32-.27-.52-.36-.19-.08-.4-.12-.63-.13-.37.01-.67.08-.91.23-.25.16-.45.37-.59.62s-.25.54-.3.87c-.05.33-.08.66-.08 1.01v.27c0 .33.03.67.08 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53c.09.2.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29-.17-.39-.4-.73-.7-1.01-.3-.28-.66-.5-1.08-.66-.42-.16-.88-.23-1.39-.23-.65 0-1.22.11-1.7.34-.48.23-.88.53-1.2.92s-.56.84-.71 1.36c-.15.52-.24 1.06-.24 1.64v.27c0 .58.08 1.12.23 1.64.15.52.39.97.71 1.35s.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23.41-.15.77-.36 1.08-.63.31-.27.56-.58.74-.94.18-.36.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58-.09.18-.21.33-.36.46s-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88c-.05-.33-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"lightbulb_outline\": {\n    \"name\": \"lightbulb_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z\\\"></path>\"\n      }\n    }\n  },\n  \"open_in_new\": {\n    \"name\": \"open_in_new\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z\\\"></path>\"\n      }\n    }\n  },\n  \"app_shortcut\": {\n    \"name\": \"app_shortcut\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><path d=\\\"M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\\\"></path><polygon points=\\\"20.38,9.62 21,11 21.62,9.62 23,9 21.62,8.38 21,7 20.38,8.38 19,9\\\"></polygon><polygon points=\\\"16,8 14.75,10.75 12,12 14.75,13.25 16,16 17.25,13.25 20,12 17.25,10.75\\\"></polygon><polygon points=\\\"21,13 20.38,14.38 19,15 20.38,15.62 21,17 21.62,15.62 23,15 21.62,14.38\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"2.5\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"16.5\\\"></rect><path d=\\\"M14.5,15h-9V5h9v1H16V2.5C16,1.67,15.33,1,14.5,1h-9C4.67,1,4,1.67,4,2.5v15C4,18.33,4.67,19,5.5,19h9 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15z M5.5,2.5h9v1h-9V2.5z M14.5,17.5h-9v-1h9V17.5z\\\"></path><polygon points=\\\"17.03,7.97 17.5,9 17.97,7.97 19,7.5 17.97,7.03 17.5,6 17.03,7.03 16,7.5\\\"></polygon><polygon points=\\\"13,7 12.06,9.06 10,10 12.06,10.94 13,13 13.94,10.94 16,10 13.94,9.06\\\"></polygon><polygon points=\\\"17.5,11 17.03,12.03 16,12.5 17.03,12.97 17.5,14 17.97,12.97 19,12.5 17.97,12.03\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"supervisor_account\": {\n    \"name\": \"supervisor_account\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"9\\\" cy=\\\"8.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M4.77 17h4.28c.01-.06.12-.58.29-.99-.11 0-.23-.01-.34-.01-1.53 0-3.25.5-4.23 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm.05 10H4.77c.99-.5 2.7-1 4.23-1 .11 0 .23.01.34.01.34-.73.93-1.33 1.64-1.81-.73-.13-1.42-.2-1.98-.2-2.34 0-7 1.17-7 3.5V19h7v-1.5c0-.17.02-.34.05-.5zm7.45-2.5c-1.84 0-5.5 1.01-5.5 3V19h11v-1.5c0-1.99-3.66-3-5.5-3zm1.21-1.82c.76-.43 1.29-1.24 1.29-2.18C19 9.12 17.88 8 16.5 8S14 9.12 14 10.5c0 .94.53 1.75 1.29 2.18.36.2.77.32 1.21.32s.85-.12 1.21-.32z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_phone_msg\": {\n    \"name\": \"perm_phone_msg\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.2 18.21c1.21.41 2.48.67 3.8.76v-1.5c-.88-.07-1.75-.22-2.6-.45l-1.2 1.19zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58zM14 8h5V5h-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 15.5c-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.6-.35-3.8-.76l1.2-1.2c.85.24 1.72.39 2.6.45v1.51zM12 3v10l3-3h6V3h-9zm7 5h-5V5h5v3z\\\"></path>\"\n      }\n    }\n  },\n  \"density_medium\": {\n    \"name\": \"density_medium\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"dns\": {\n    \"name\": \"dns\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 9h14V5H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5S7.83 8.5 7 8.5 5.5 7.83 5.5 7 6.17 5.5 7 5.5zM5 19h14v-4H5v4zm2-3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H5v-4h14v4zm-12-.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-1 6H5V5h14v4zM7 8.5c.83 0 1.5-.67 1.5-1.5S7.83 5.5 7 5.5 5.5 6.17 5.5 7 6.17 8.5 7 8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"home\": {\n    \"name\": \"home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3zm5 15h-2v-6H9v6H7v-7.81l5-4.5 5 4.5V18z\\\"></path><path d=\\\"M7 10.19V18h2v-6h6v6h2v-7.81l-5-4.5z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"view_headline\": {\n    \"name\": \"view_headline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z\\\"></path>\"\n      }\n    }\n  },\n  \"view_in_ar\": {\n    \"name\": \"view_in_ar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13,17.17 17,14.87 17,10.24 13,12.57\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"12,6.25 8.04,8.53 12,10.84 15.96,8.53\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"7,14.87 11,17.17 11,12.57 7,10.24\\\"></polygon><path d=\\\"M3,4c0-0.55,0.45-1,1-1h2V1H4C2.34,1,1,2.34,1,4v2h2V4z\\\"></path><path d=\\\"M3,20v-2H1v2c0,1.66,1.34,3,3,3h2v-2H4C3.45,21,3,20.55,3,20z\\\"></path><path d=\\\"M20,1h-2v2h2c0.55,0,1,0.45,1,1v2h2V4C23,2.34,21.66,1,20,1z\\\"></path><path d=\\\"M21,20c0,0.55-0.45,1-1,1h-2v2h2c1.66,0,3-1.34,3-3v-2h-2V20z\\\"></path><path d=\\\"M19,14.87V9.13c0-0.72-0.38-1.38-1-1.73l-5-2.88c-0.31-0.18-0.65-0.27-1-0.27s-0.69,0.09-1,0.27L6,7.39 C5.38,7.75,5,8.41,5,9.13v5.74c0,0.72,0.38,1.38,1,1.73l5,2.88c0.31,0.18,0.65,0.27,1,0.27s0.69-0.09,1-0.27l5-2.88 C18.62,16.25,19,15.59,19,14.87z M11,17.17l-4-2.3v-4.63l4,2.33V17.17z M12,10.84L8.04,8.53L12,6.25l3.96,2.28L12,10.84z M17,14.87l-4,2.3v-4.6l4-2.33V14.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"explore\": {\n    \"name\": \"explore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm2.01 10.01L6.5 17.5l3.49-7.51L17.5 6.5l-3.49 7.51z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z\\\"></path>\"\n      }\n    }\n  },\n  \"transcribe\": {\n    \"name\": \"transcribe\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"9\\\" cy=\\\"9\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M14.48,17.34C13.29,16.73,11.37,16,9,16c-2.37,0-4.29,0.73-5.48,1.34C3.2,17.5,3,17.84,3,18.22V19h12v-0.78 C15,17.84,14.8,17.5,14.48,17.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.93,2c-3.9,3.89-3.91,9.95,0,14l1.63-1.63c-2.77-3.02-2.77-7.56,0-10.74L17.93,2z\\\"></path><path d=\\\"M9,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4S5,6.79,5,9C5,11.21,6.79,13,9,13z M9,7c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2 s-2-0.9-2-2C7,7.9,7.9,7,9,7z\\\"></path><path d=\\\"M15.39,15.56C13.71,14.7,11.53,14,9,14c-2.53,0-4.71,0.7-6.39,1.56C1.61,16.07,1,17.1,1,18.22V21h16v-2.78 C17,17.1,16.39,16.07,15.39,15.56z M15,19H3v-0.78c0-0.38,0.2-0.72,0.52-0.88C4.71,16.73,6.63,16,9,16c2.37,0,4.29,0.73,5.48,1.34 C14.8,17.5,15,17.84,15,18.22V19z\\\"></path><path d=\\\"M22.92,7.06l-1.68-1.69c-2.02,2.02-2.02,5.07,0,7.27l1.68-1.69C22.08,9.77,22.08,8.24,22.92,7.06z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"8\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8,13.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C10.98,13.9,9.5,13.5,8,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,11c1.66,0,3-1.34,3-3S9.66,5,8,5S5,6.34,5,8S6.34,11,8,11z M8,6.5c0.83,0,1.5,0.67,1.5,1.5S8.83,9.5,8,9.5 S6.5,8.83,6.5,8S7.17,6.5,8,6.5z\\\"></path><path d=\\\"M13.03,13.37C11.56,12.5,9.84,12,8,12s-3.56,0.5-5.03,1.37C2.36,13.72,2,14.39,2,15.09V17h12v-1.91 C14,14.39,13.64,13.72,13.03,13.37z M12.5,15.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C5.02,13.9,6.5,13.5,8,13.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V15.5z\\\"></path><path d=\\\"M14.5,8c0-1.39,0.64-2.61,1.63-3.44l-0.97-1.17C13.84,4.49,13,6.15,13,8s0.84,3.51,2.16,4.61l0.97-1.17 C15.14,10.61,14.5,9.39,14.5,8z\\\"></path><path d=\\\"M18.04,6.85l-0.96-1.15C16.43,6.26,16,7.07,16,8s0.43,1.74,1.09,2.29l0.96-1.15C17.71,8.87,17.5,8.46,17.5,8 S17.71,7.13,18.04,6.85z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"lightbulb\": {\n    \"name\": \"lightbulb\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,4C8.97,4,6.5,6.47,6.5,9.5c0,2.47,1.49,3.89,2.35,4.5h6.3 c0.86-0.61,2.35-2.03,2.35-4.5C17.5,6.47,15.03,4,12,4z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,22c1.1,0,2-0.9,2-2h-4C10,21.1,10.9,22,12,22z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"17\\\"></rect><path d=\\\"M12,2C7.86,2,4.5,5.36,4.5,9.5c0,3.82,2.66,5.86,3.77,6.5h7.46c1.11-0.64,3.77-2.68,3.77-6.5C19.5,5.36,16.14,2,12,2z M15.15,14h-6.3C7.99,13.39,6.5,11.97,6.5,9.5C6.5,6.47,8.97,4,12,4s5.5,2.47,5.5,5.5C17.5,11.97,16.01,13.39,15.15,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_outward\": {\n    \"name\": \"arrow_outward\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"6,6 6,8 14.59,8 5,17.59 6.41,19 16,9.41 16,18 18,18 18,6\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"5,5 5,6.5 12.44,6.5 4,14.94 5.06,16 13.5,7.56 13.5,15 15,15 15,5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"pin_end\": {\n    \"name\": \"pin_end\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,12V6H4v12h10l0,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h16c1.1,0,2,0.9,2,2v6H20z M19,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 c1.66,0,3-1.34,3-3S20.66,14,19,14z M14.66,8H9v5.66l2.12-2.12l2.83,2.83l1.41-1.41l-2.83-2.83L14.66,8z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.5,10V5.5h-13v9H12c0.01,0.02,0,1.5,0,1.5H3.5C2.67,16,2,15.33,2,14.5v-9C2,4.67,2.67,4,3.5,4h13C17.33,4,18,4.67,18,5.5 V10H16.5z M15.75,11.5c-1.24,0-2.25,1.01-2.25,2.25s1,2.25,2.25,2.25c1.24,0,2.25-1.01,2.25-2.25S16.99,11.5,15.75,11.5z M12.74,7 H8.5v4.24l1.59-1.59l2.12,2.12l1.06-1.06l-2.12-2.12L12.74,7z\\\"></path>\"\n      }\n    }\n  },\n  \"all_out\": {\n    \"name\": \"all_out\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"5\\\"></circle><path d=\\\"M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"today\": {\n    \"name\": \"today\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10zm0-12H5V5h14v2zm-7 4H7v5h5v-5z\\\"></path><path d=\\\"M5 5h14v2H5z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"batch_prediction\": {\n    \"name\": \"batch_prediction\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M13,20.5h-2V19h2V20.5z M13,18h-2c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5 C15.5,15,13,16.5,13,18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,8H7c-1.1,0-2,0.9-2,2v10c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2V10C19,8.9,18.1,8,17,8z M13,20.5h-2V19h2V20.5z M13,18h-2 c0-1.5-2.5-3-2.5-5c0-1.93,1.57-3.5,3.5-3.5c1.93,0,3.5,1.57,3.5,3.5C15.5,15,13,16.5,13,18z M18,6.5H6v0C6,5.67,6.67,5,7.5,5h9 C17.33,5,18,5.67,18,6.5L18,6.5z M17,3.5H7v0C7,2.67,7.67,2,8.5,2h7C16.33,2,17,2.67,17,3.5L17,3.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8 c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5C12.5,12,10.75,13,10.75,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,7H6C5.45,7,5,7.45,5,8v8c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V8C15,7.45,14.55,7,14,7z M10.75,16h-1.5v-1h1.5V16z M10.75,14c0,0-1.15,0-1.5,0c0-1-1.75-2-1.75-3.5C7.5,9.12,8.62,8,10,8c0,0,0,0,0,0c1.38,0,2.5,1.12,2.5,2.5 C12.5,12,10.75,13,10.75,14z M14,6H6v0c0-0.55,0.45-1,1-1h6C13.55,5,14,5.45,14,6L14,6z M13,4H7v0c0-0.55,0.45-1,1-1h4 C12.55,3,13,3.45,13,4L13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"arrow_circle_up\": {\n    \"name\": \"arrow_circle_up\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8S16.41,20,12,20 M12,22c5.52,0,10-4.48,10-10c0-5.52-4.48-10-10-10 C6.48,2,2,6.48,2,12C2,17.52,6.48,22,12,22L12,22z M11,12l0,4h2l0-4h3l-4-4l-4,4H11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7 c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3L10,3z M9.5,10v3h1v-3H13l-3-3l-3,3H9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"change_history\": {\n    \"name\": \"change_history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.77L5.61 18h12.78z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 4L2 20h20L12 4zm0 3.77L18.39 18H5.61L12 7.77z\\\"></path>\"\n      }\n    }\n  },\n  \"pinch\": {\n    \"name\": \"pinch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,15.56l-4.24-1.89H15V7.5C15,7.22,14.78,7,14.5,7S14,7.22,14,7.5v10.61l-4.17-0.89l3.7,3.78h6.55 L21,15.56z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,2.5V1h5v5H9.5V3.56L3.56,9.5H6V11H1V6h1.5v2.44L8.44,2.5H6z M21.89,13.77l-3.8-1.67C17.96,12.04,17.81,12,17.65,12H17 V7.5C17,6.12,15.88,5,14.5,5S12,6.12,12,7.5v8.15l-1.87-0.4c-0.19-0.03-1.02-0.15-1.73,0.56L7,17.22l5.12,5.19 C12.49,22.79,13,23,13.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44C23.12,15.03,22.68,14.17,21.89,13.77z M20.08,21h-6.55 l-3.7-3.78L14,18.11V7.5C14,7.22,14.22,7,14.5,7S15,7.22,15,7.5v6.18h1.76L21,15.56L20.08,21z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.38,17.5h-5.26L8.62,14l0.34-0.34L12,14.42V7c0-0.28,0.22-0.5,0.5-0.5S13,6.73,13,7v4.5h2.15l2.58,1.2 c0.19,0.1,0.3,0.3,0.27,0.52L17.38,17.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.39,11.36L15.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L6.5,14l4.56,4.56 c0.28,0.28,0.66,0.44,1.06,0.44h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C19.6,12.58,19.16,11.74,18.39,11.36z M17.38,17.5h-5.26 L8.62,14l0.34-0.34L12,14.42V7c0-0.28,0.22-0.5,0.5-0.5S13,6.73,13,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L17.38,17.5z M5,1v1h2.29L2,7.3V5H1v4h4V8H2.71L8,2.71V5h1V1H5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"done_outline\": {\n    \"name\": \"done_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z\\\"></path>\"\n      }\n    }\n  },\n  \"backup\": {\n    \"name\": \"backup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.21 12.04l-1.53-.11-.3-1.5C16.88 7.86 14.62 6 12 6 9.94 6 8.08 7.14 7.12 8.96l-.5.95-1.07.11C3.53 10.24 2 11.95 2 14c0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.22-2.86-2.79-2.96zm-5.76.96v3h-2.91v-3H8l4-4 4 4h-2.55z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.94 6 12 6c2.62 0 4.88 1.86 5.39 4.43l.3 1.5 1.53.11c1.56.1 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3zM8 13h2.55v3h2.9v-3H16l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_right\": {\n    \"name\": \"swipe_right\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76L18,15.56L17.08,21 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14V7.5C14,6.12,12.88,5,11.5,5S9,6.12,9,7.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,15.03,19.68,14.17,18.89,13.77z M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76 L18,15.56L17.08,21z M12,2.5C7.26,2.5,4.33,5.02,3.57,7H2c0.73-2.88,4.51-6,10-6c3.22,0,6.18,1.13,8.5,3.02V2H22v5h-5V5.5h2.91 C17.79,3.64,15.03,2.5,12,2.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.38,17.5H9.12L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2 c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.39,11.36L12.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,14l4.56,4.56 C8.34,18.84,8.72,19,9.12,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,12.57,16.16,11.74,15.39,11.36z M14.38,17.5H9.12 L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z M2,6c1.03-2.89,4.22-5,8-5c2.93,0,5.51,1.27,7,3.19L17,2h1v4h-4V5l2.36,0C15.06,3.18,12.65,2,10,2C6.89,2,4.11,3.63,3.07,6L2,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"plagiarism\": {\n    \"name\": \"plagiarism\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,4H6v16l12,0V9h-5V4z M13.97,11.03c1.12,1.12,1.31,2.8,0.59,4.13l1.88,1.88l-1.41,1.41l-1.88-1.88 c-1.33,0.71-3.01,0.53-4.13-0.59c-1.37-1.37-1.37-3.58,0-4.95C10.39,9.66,12.61,9.66,13.97,11.03z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"11.5\\\" cy=\\\"13.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.89,2,1.99,2H18c1.1,0,2-0.9,2-2V8L14,2z M18,20L6,20V4h7v5h5V20z\\\"></path><path d=\\\"M9.03,11.03c-1.37,1.37-1.37,3.58,0,4.95c1.12,1.12,2.8,1.31,4.13,0.59l1.88,1.88l1.41-1.41l-1.88-1.88 c0.71-1.33,0.53-3.01-0.59-4.13C12.61,9.66,10.39,9.66,9.03,11.03z M12.56,14.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C13.15,13.03,13.15,13.97,12.56,14.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"9.5\\\" cy=\\\"11.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11,4H5v12h10V8h-4V4z M11.27,9.73c0.86,0.86,0.96,2.18,0.32,3.15l1.45,1.45l-0.71,0.71l-1.45-1.45 c-0.97,0.64-2.29,0.54-3.15-0.32c-0.98-0.98-0.98-2.56,0-3.54S10.29,8.76,11.27,9.73z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V7L12,3z M15,16H5V4h6v4h4V16z\\\"></path><path d=\\\"M7.73,9.73c-0.98,0.98-0.98,2.56,0,3.54c0.86,0.86,2.18,0.96,3.15,0.32l1.45,1.45l0.71-0.71l-1.45-1.45 c0.64-0.97,0.54-2.29-0.32-3.15C10.29,8.76,8.71,8.76,7.73,9.73z M10.56,12.56c-0.59,0.59-1.54,0.59-2.12,0 c-0.59-0.59-0.59-1.54,0-2.12c0.59-0.59,1.54-0.59,2.12,0C11.15,11.03,11.15,11.97,10.56,12.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"php\": {\n    \"name\": \"php\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9z M8,10.5v1C8,12.3,7.3,13,6.5,13h-2v2H3V9h3.5C7.3,9,8,9.7,8,10.5z M6.5,10.5h-2 v1h2V10.5z M21.5,10.5v1c0,0.8-0.7,1.5-1.5,1.5h-2v2h-1.5V9H20C20.8,9,21.5,9.7,21.5,10.5z M20,10.5h-2v1h2V10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10.5,8h1v4h-1v-1.5h-1V12h-1V8h1v1.5h1V8z M7,8.5V10c0,0.28-0.22,0.5-0.5,0.5H5V12H4V8h2.5C6.78,8,7,8.22,7,8.5z M6,9H5 v0.5h1V9z M16,8.5V10c0,0.28-0.22,0.5-0.5,0.5H14V12h-1V8h2.5C15.78,8,16,8.22,16,8.5z M15,9h-1v0.5h1V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"grade\": {\n    \"name\": \"grade\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.11 10.83l-2.47-.21-1.2-.1-.47-1.11L12 7.13l-.97 2.28-.47 1.11-1.2.1-2.47.21 1.88 1.63.91.79-.27 1.17-.57 2.42 2.13-1.28 1.03-.63 1.03.63 2.13 1.28-.57-2.42-.27-1.17.91-.79z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24zm-7.41 5.18l.56 2.41-2.12-1.28-1.03-.62-1.03.62-2.12 1.28.56-2.41.27-1.18-.91-.79-1.88-1.63 2.47-.21 1.2-.1.47-1.11.97-2.27.97 2.29.47 1.11 1.2.1 2.47.21-1.88 1.63-.91.79.27 1.16z\\\"></path>\"\n      }\n    }\n  },\n  \"calendar_month\": {\n    \"name\": \"calendar_month\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M19,4h-1V2h-2v2H8V2H6v2H5C3.89,4,3.01,4.9,3.01,6L3,20c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,20 H5V10h14V20z M19,8H5V6h14V8z M9,14H7v-2h2V14z M13,14h-2v-2h2V14z M17,14h-2v-2h2V14z M9,18H7v-2h2V18z M13,18h-2v-2h2V18z M17,18 h-2v-2h2V18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"11\\\" x=\\\"4.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h11c0.83,0,1.5-0.68,1.5-1.5v-11 C17,4.68,16.33,4,15.5,4z M15.5,16.5h-11V9h11V16.5z M15.5,7.5h-11v-2h11V7.5z M7.5,12H6v-1.5h1.5V12z M10.75,12h-1.5v-1.5h1.5V12z M14,12h-1.5v-1.5H14V12z M7.5,15H6v-1.5h1.5V15z M10.75,15h-1.5v-1.5h1.5V15z M14,15h-1.5v-1.5H14V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"outbound\": {\n    \"name\": \"outbound\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M13.88,11.54l-4.96,4.96 l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10 C22,6.48,17.52,2,12,2L12,2z M13.88,11.54l-4.96,4.96l-1.41-1.41l4.96-4.96L10.34,8l5.65,0.01L16,13.66L13.88,11.54z\\\"></path>\"\n      }\n    }\n  },\n  \"card_giftcard\": {\n    \"name\": \"card_giftcard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17h16v2H4zm13-6.17L15.38 12 12 7.4 8.62 12 7 10.83 9.08 8H4v6h16V8h-5.08z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_split\": {\n    \"name\": \"vertical_split\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 7h4v10h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 13h8v2H3zm0 4h8v2H3zm0-8h8v2H3zm0-4h8v2H3zm10 0v14h8V5h-8zm6 12h-4V7h4v10z\\\"></path>\"\n      }\n    }\n  },\n  \"accessibility\": {\n    \"name\": \"accessibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"restore_page\": {\n    \"name\": \"restore_page\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 4v16h12V8.83L13.17 4H6zm10.72 9c0 2.48-2.02 4.5-4.5 4.5-1.84 0-3.43-1.12-4.12-2.7h1.54c.57.81 1.51 1.35 2.58 1.35 1.74 0 3.15-1.41 3.15-3.15s-1.41-3.15-3.15-3.15c-1.21 0-2.27.7-2.79 1.71L10.88 13h-3.6V9.4l1.17 1.17c.8-1.24 2.19-2.07 3.78-2.07 2.48 0 4.49 2.02 4.49 4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7.17L18 8.83V20zm-9.55-9.43L7.28 9.4V13h3.6l-1.44-1.44c.52-1.01 1.58-1.71 2.79-1.71 1.74 0 3.15 1.41 3.15 3.15s-1.41 3.15-3.15 3.15c-1.07 0-2.02-.54-2.58-1.35H8.1c.69 1.58 2.28 2.7 4.12 2.7 2.48 0 4.5-2.02 4.5-4.5s-2.02-4.5-4.5-4.5c-1.59 0-2.97.83-3.77 2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_horiz\": {\n    \"name\": \"swap_horiz\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z\\\"></path>\"\n      }\n    }\n  },\n  \"width_normal\": {\n    \"name\": \"width_normal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"6\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M8,18H4V6h4V18z M14,18h-4V6h4V18z M20,18h-4V6h4V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M7,14.5H3.5v-9H7V14.5z M11.5,14.5h-3v-9h3V14.5z M16.5,14.5H13v-9h3.5V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"line_style\": {\n    \"name\": \"line_style\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_vert\": {\n    \"name\": \"swap_vert\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z\\\"></path>\"\n      }\n    }\n  },\n  \"help_outline\": {\n    \"name\": \"help_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 16h2v2h-2zm1-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"hide_source\": {\n    \"name\": \"hide_source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.41L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.94,10.94C14.86,19.59,13.48,20,12,20z M7.94,5.12 L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46C19.59,14.86,20,13.48,20,12 c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tab_unselected\": {\n    \"name\": \"tab_unselected\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z\\\"></path>\"\n      }\n    }\n  },\n  \"file_present\": {\n    \"name\": \"file_present\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M14,4H6v16h12V8h-4V4z M16,11v4c0,2.21-1.79,4-4,4s-4-1.79-4-4V9.5C8,8.12,9.12,7,10.5,7S13,8.12,13,9.5V15 h-2V9.5C11,9.22,10.78,9,10.5,9S10,9.22,10,9.5V15c0,1.1,0.9,2,2,2s2-0.9,2-2v-4H16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,15c0,1.1-0.9,2-2,2s-2-0.9-2-2V9.5C10,9.22,10.22,9,10.5,9S11,9.22,11,9.5V15h2V9.5C13,8.12,11.88,7,10.5,7 S8,8.12,8,9.5V15c0,2.21,1.79,4,4,4s4-1.79,4-4v-4h-2V15z\\\"></path><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h8v4h4V20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_brightness\": {\n    \"name\": \"settings_brightness\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19.01h18V4.99H3v14.02zm5-8.51V8h2.5L12 6.5 13.5 8H16v2.5l1.5 1.5-1.5 1.5V16h-2.5L12 17.5 10.5 16H8v-2.5L6.5 12 8 10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9zm9-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_clock\": {\n    \"name\": \"lock_clock\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M11.29,20H6V10h12v1c0.7,0,1.37,0.1,2,0.29V10c0-1.1-0.9-2-2-2h-1V6c0-2.76-2.24-5-5-5S7,3.24,7,6v2H6c-1.1,0-2,0.9-2,2 v10c0,1.1,0.9,2,2,2h6.26C11.84,21.4,11.51,20.72,11.29,20z M9,6c0-1.66,1.34-3,3-3s3,1.34,3,3v2H9V6z\\\"></path><path d=\\\"M11,18c0-3.87,3.13-7,7-7v-1H6v10h5.29C11.1,19.37,11,18.7,11,18z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M19.65,20.35l-2.15-2.15V15h1v2.79l1.85,1.85 L19.65,20.35z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><path d=\\\"M5.5,8.5v8h3.21C8.58,16.02,8.5,15.52,8.5,15c0-3.03,2.47-5.5,5.5-5.5 c0.17,0,0.34,0.01,0.5,0.03V8.5H5.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.5,16.5v-8h9v1.03c0.53,0.05,1.03,0.17,1.5,0.36V8.5C16,7.67,15.33,7,14.5,7H14V5c0-2.21-1.79-4-4-4S6,2.79,6,5v2H5.5 C4.67,7,4,7.67,4,8.5v8C4,17.33,4.67,18,5.5,18h3.9c-0.3-0.46-0.53-0.96-0.68-1.5H5.5z M7.5,5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5v2h-5V5z\\\"></path><path d=\\\"M14,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,12.79,16.21,11,14,11z M13.5,13h1v1.79l1.35,1.35l-0.71,0.71 l-1.65-1.65V13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"source\": {\n    \"name\": \"source\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.17,6H4v12l16,0V8h-8.83L9.17,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,6h-8l-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18L4,18V6h5.17 l2,2H20V18z M18,12H6v-2h12V12z M14,16H6v-2h8V16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"view_agenda\": {\n    \"name\": \"view_agenda\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><path d=\\\"M19,13H5c-1.1,0-2,0.9-2,2v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-4C21,13.9,20.1,13,19,13z M19,19H5v-4h14V19z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v4c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,9H5V5h14V9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"11\\\" x=\\\"4.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"11\\\" x=\\\"4.5\\\" y=\\\"12.5\\\"></rect><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v3C3,8.33,3.67,9,4.5,9h11C16.33,9,17,8.33,17,7.5v-3C17,3.67,16.33,3,15.5,3z M15.5,7.5 h-11v-3h11V7.5z\\\"></path><path d=\\\"M15.5,11h-11C3.67,11,3,11.67,3,12.5v3C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,11.67,16.33,11,15.5,11z M15.5,15.5h-11v-3h11V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"swipe_left\": {\n    \"name\": \"swipe_left\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76L18,15.56L17.08,21 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.89,13.77l-3.8-1.67C14.96,12.04,14.81,12,14.65,12H14V7.5C14,6.12,12.88,5,11.5,5S9,6.12,9,7.5v8.15l-1.87-0.4 c-0.19-0.03-1.02-0.15-1.73,0.56L4,17.22l5.12,5.19C9.49,22.79,10,23,10.53,23h6.55c0.98,0,1.81-0.7,1.97-1.67l0.92-5.44 C20.12,15.03,19.68,14.17,18.89,13.77z M17.08,21h-6.55l-3.7-3.78L11,18.11V7.5C11,7.22,11.22,7,11.5,7S12,7.22,12,7.5v6.18h1.76 L18,15.56L17.08,21z M4.09,5.5H7V7H2V2h1.5v2.02C5.82,2.13,8.78,1,12,1c5.49,0,9.27,3.12,10,6h-1.57C19.67,5.02,16.74,2.5,12,2.5 C8.97,2.5,6.21,3.64,4.09,5.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.38,17.5H9.12L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2 c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.39,11.36L12.5,10h-1V7c0-1.1-0.9-2-2-2s-2,0.9-2,2v5.5l-1.18-0.29c-0.44-0.11-1-0.03-1.42,0.39L3.5,14l4.56,4.56 C8.34,18.84,8.72,19,9.12,19h5.26c0.75,0,1.38-0.55,1.48-1.29l0.61-4.29C16.6,12.57,16.16,11.74,15.39,11.36z M14.38,17.5H9.12 L5.62,14l0.34-0.34L9,14.42V7c0-0.28,0.22-0.5,0.5-0.5S10,6.72,10,7v4.5h2.15l2.58,1.2c0.19,0.1,0.3,0.3,0.27,0.52L14.38,17.5z M16.93,6C15.89,3.63,13.11,2,10,2C7.35,2,4.94,3.18,3.64,5L6,5v1H2V2h1l0,2.19C4.49,2.27,7.07,1,10,1c3.78,0,6.97,2.11,8,5 L16.93,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"turned_in_not\": {\n    \"name\": \"turned_in_not\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_up_alt\": {\n    \"name\": \"swipe_up_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"12\\\" cy=\\\"15\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M13,5.83l1.59,1.59L16,6l-4-4L8,6l1.41,1.41L11,5.83v4.27c-2.28,0.46-4,2.48-4,4.9c0,2.76,2.24,5,5,5s5-2.24,5-5 c0-2.42-1.72-4.44-4-4.9V5.83z M12,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,18,12,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"10\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><path d=\\\"M10.75,4.87l1.19,1.19L13,5l-3-3L7,5l1.06,1.06l1.19-1.19l0,3.2C7.4,8.42,6,10.05,6,12c0,2.21,1.79,4,4,4 c2.21,0,4-1.79,4-4c0-1.95-1.4-3.58-3.25-3.93L10.75,4.87z M10,14.5c-1.38,0-2.5-1.12-2.5-2.5S8.62,9.5,10,9.5 c1.38,0,2.5,1.12,2.5,2.5S11.38,14.5,10,14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fact_check\": {\n    \"name\": \"fact_check\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,19h16V5H4V19z M13.41,10.75l1.41,1.42L17.99,9l1.42,1.42L14.82,15L12,12.16L13.41,10.75z M5,7h5v2H5V7z M5,11h5v2H5V11z M5,15h5v2H5V15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,3H4C2.9,3,2,3.9,2,5v14c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,19H4V5h16V19z\\\"></path><polygon points=\\\"19.41,10.42 17.99,9 14.82,12.17 13.41,10.75 12,12.16 14.82,15\\\"></polygon><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"5\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,15h12V5H4V15z M11.27,9.65l0.71,0.71l2.12-2.12l0.71,0.71l-2.83,2.83l-1.41-1.41L11.27,9.65z M5,7h4v1H5 V7z M5,9.5h4v1H5V9.5z M5,12h4v1H5V12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M16,15H4V5h12V15z\\\"></path><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"7\\\"></rect><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"9.5\\\"></rect><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"12\\\"></rect><polygon points=\\\"14.8,8.94 14.1,8.23 11.97,10.35 11.27,9.65 10.56,10.35 11.97,11.77\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"bookmark_added\": {\n    \"name\": \"bookmark_added\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,17.97l0-7.07c-2.28-0.46-4-2.48-4-4.9c0-0.34,0.03-0.68,0.1-1L7,5v12.97l5-2.14L17,17.97z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.83,9L15,6.17l1.41-1.41l1.41,1.41l3.54-3.54l1.41,1.41L17.83,9z M17,17.97l-5-2.14l-5,2.14V5l6.1,0 c0.15-0.74,0.46-1.42,0.9-2L7,3C5.9,3,5,3.9,5,5v16l7-3l7,3l0-10.1c-0.32,0.07-0.66,0.1-1,0.1c-0.34,0-0.68-0.03-1-0.1L17,17.97z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_full\": {\n    \"name\": \"hourglass_full\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 7.5l4 4 4-4V4H8zm0 9V20h8v-3.5l-4-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9l-4 4-4-4V4h8v3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"invert_colors\": {\n    \"name\": \"invert_colors\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M7.75,8.99C6.62,10.1,6,11.57,6,13.13C6,16.37,8.69,19,12,19l0-14.19L7.75,8.99z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.65,7.56L17.65,7.56L12,2L6.35,7.56l0,0C4.9,8.99,4,10.96,4,13.13C4,17.48,7.58,21,12,21c4.42,0,8-3.52,8-7.87 C20,10.96,19.1,8.99,17.65,7.56z M6,13.13c0-1.56,0.62-3.03,1.75-4.14L12,4.81L12,19C8.69,19,6,16.37,6,13.13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.53,6.59L14.53,6.59L10,2L5.5,6.56c-1.08,1.11-1.75,2.62-1.75,4.28c0,3.4,2.8,6.16,6.25,6.16s6.25-2.76,6.25-6.16 C16.25,9.19,15.6,7.7,14.53,6.59z M5.25,10.84c0-1.21,0.47-2.35,1.32-3.22L10,4.14V15.5C7.38,15.5,5.25,13.41,5.25,10.84z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_media\": {\n    \"name\": \"perm_media\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.17 6l-.59-.59L11.17 4H6v12h16V6h-8.83zm4.33 4.5L21 15H7l4.5-6 3.5 4.51 2.5-3.01z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm5 9h14l-3.5-4.5-2.5 3.01L11.5 9zM22 4h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H6V4h5.17l1.41 1.41.59.59H22v10z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_return\": {\n    \"name\": \"assignment_return\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5v14h14V5H5zm11 9h-4v3l-5-5 5-5v3h4v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 7l-5 5 5 5v-3h4v-4h-4zm7-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"pets\": {\n    \"name\": \"pets\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"9\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"15\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle><circle cx=\\\"19.5\\\" cy=\\\"9.5\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_empty\": {\n    \"name\": \"hourglass_empty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 2H6v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm-2 14.5V20H8v-3.5l4-4 4 4zm0-9l-4 4-4-4V4h8v3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"code_off\": {\n    \"name\": \"code_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10l-2.94,2.94L14,11.88L15.88,10l-3.94-3.94L13,5L18,10z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99l3.07,3.07L2,10 l5,5l1.06-1.06L4.12,10L6,8.12L16.01,18.13z\\\"></path>\"\n      }\n    }\n  },\n  \"aspect_ratio\": {\n    \"name\": \"aspect_ratio\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19.01h18V4.99H3v14.02zM14 15h3v-3h2v5h-5v-2zM5 7h5v2H7v3H5V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM7 9h3V7H5v5h2zm12 3h-2v3h-3v2h5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_list\": {\n    \"name\": \"view_list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,7v2H5V7H7z M5,13v-2h2v2H5z M5,15h2v2H5V15z M19,17H9v-2h10V17z M19,13H9v-2h10V13z M19,9H9V7h10V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,5v14h18V5H3z M7,7v2H5V7H7z M5,13v-2h2v2H5z M5,15h2v2H5V15z M19,17H9v-2h10V17z M19,13H9v-2h10V13z M19,9H9V7h10V9z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,7.83h-8V6.5h8V7.83z M7.5,9.33h8v1.33h-8V9.33z M6,10.67H4.5V9.33H6V10.67z M6,6.5v1.33H4.5V6.5H6z M4.5,12.17H6v1.33H4.5V12.17z M7.5,13.5v-1.33h8v1.33H7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,5v10h14V5H3z M15.5,7.83h-8V6.5h8V7.83z M7.5,9.33h8v1.33h-8V9.33z M6,10.67H4.5V9.33H6V10.67z M6,6.5v1.33H4.5V6.5H6z M4.5,12.17H6v1.33H4.5V12.17z M7.5,13.5v-1.33h8v1.33H7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"star_rate\": {\n    \"name\": \"star_rate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"12.94,12 12,8.89 11.06,12 8.24,12 10.51,13.62 9.58,16.63 12,14.79 14.42,16.63 13.49,13.62 15.76,12\\\"></polygon><path d=\\\"M22,10h-7.58L12,2l-2.42,8H2l6.17,4.41L5.83,22L12,17.31L18.17,22l-2.35-7.59L22,10z M14.42,16.63L12,14.79l-2.42,1.84 l0.93-3.01L8.24,12h2.82L12,8.89L12.94,12h2.82l-2.27,1.62L14.42,16.63z\\\"></path></g>\"\n      },\n      \"18\": {\n        \"width\": 18,\n        \"path\": \"<path d=\\\"M0 0h18v18H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11.3l3.71 2.7-1.42-4.36L15 7h-4.55L9 2.5 7.55 7H3l3.71 2.64L5.29 14 9 11.3z\\\"></path>\"\n      }\n    }\n  },\n  \"announcement\": {\n    \"name\": \"announcement\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4v13.17l.59-.59.58-.58H20V4H4zm9 11h-2v-2h2v2zm0-4h-2V5h2v6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zM11 5h2v6h-2zm0 8h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"view_module\": {\n    \"name\": \"view_module\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,11h-3.33V7H19V11z M13.67,11h-3.33V7h3.33V11z M8.33,7v4H5V7H8.33z M5,17v-4h3.33v4H5z M10.33,17v-4h3.33 v4H10.33z M15.67,17v-4H19v4H15.67z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,5v14h18V5H3z M19,11h-3.33V7H19V11z M13.67,11h-3.33V7h3.33V11z M8.33,7v4H5V7H8.33z M5,17v-4h3.33v4H5z M10.33,17v-4 h3.33v4H10.33z M15.67,17v-4H19v4H15.67z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M15.5,9.25h-2.67V6.5h2.67V9.25z M8.67,9.25V6.5h2.67v2.75H8.67z M11.33,10.75v2.75H8.67v-2.75H11.33z M7.17,6.5v2.75H4.5 V6.5H7.17z M4.5,10.75h2.67v2.75H4.5V10.75z M12.83,13.5v-2.75h2.67v2.75H12.83z\\\"></path></g><g><path d=\\\"M3,5v10h14V5H3z M15.5,9.25h-2.67V6.5h2.67V9.25z M8.67,9.25V6.5h2.67v2.75H8.67z M11.33,10.75v2.75H8.67v-2.75H11.33z M7.17,6.5v2.75H4.5V6.5H7.17z M4.5,10.75h2.67v2.75H4.5V10.75z M12.83,13.5v-2.75h2.67v2.75H12.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_border\": {\n    \"name\": \"bookmark_border\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z\\\"></path>\"\n      }\n    }\n  },\n  \"view_carousel\": {\n    \"name\": \"view_carousel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect height=\\\"10\\\" opacity=\\\".3\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"7\\\"></rect><path d=\\\"M2,7h4v10H2V7z M7,19h10V5H7V19z M9,7h6v10H9V7z M18,7h4v10h-4V7z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"7\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"6.5\\\"></rect><path d=\\\"M2,6.5h3v7H2V6.5z M15,6.5v7h3v-7H15z M6,5h8v10H6V5z M7.5,13.5h5v-7h-5V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"trending_down\": {\n    \"name\": \"trending_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"flight_land\": {\n    \"name\": \"flight_land\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_drive\": {\n    \"name\": \"add_to_drive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M19,11c0.17,0,0.33,0.01,0.49,0.02L15,3H9l5.68,9.84C15.77,11.71,17.3,11,19,11z\\\"></path><polygon points=\\\"8.15,4.52 2,15.5 5,21 11.33,10.03\\\"></polygon><path d=\\\"M13.2,15.5H9.9L6.73,21h7.81C13.58,19.94,13,18.54,13,17C13,16.48,13.07,15.98,13.2,15.5z\\\"></path><polygon points=\\\"20,16 20,13 18,13 18,16 15,16 15,18 18,18 18,21 19,21 20,21 20,18 23,18 23,16\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M15.98,9L12.5,3h-5l4.59,7.92C13,9.77,14.39,9.01,15.98,9z\\\"></path><path d=\\\"M11.25,12.5H8.84L6.23,17h5.79C11.39,16.16,11,15.13,11,14C11,13.47,11.1,12.98,11.25,12.5z\\\"></path><polygon points=\\\"6.63,4.5 2,12.5 4.5,17 9.19,8.91\\\"></polygon><polygon points=\\\"16.75,13.25 16.75,11 15.25,11 15.25,13.25 13,13.25 13,14.75 15.25,14.75 15.25,17 15.5,17 16.75,17 16.75,14.75 19,14.75 19,13.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"autorenew\": {\n    \"name\": \"autorenew\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\\\"></path>\"\n      }\n    }\n  },\n  \"settings\": {\n    \"name\": \"settings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\"\n      }\n    }\n  },\n  \"translate\": {\n    \"name\": \"translate\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z\\\"></path>\"\n      }\n    }\n  },\n  \"schedule_send\": {\n    \"name\": \"schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M5,10.5l6,1.5l-6,1.5v3.49l5.39-2.27c0.6-1.73,1.86-3.16,3.48-3.97L5,7.01V10.5 z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M11,12l-6-1.5V7.01l8.87,3.74c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\\\"></path><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.76,0,5-2.24,5-5S19.76,12,17,12z M18.65,19.35l-2.15-2.15V14h1v2.79l1.85,1.85 L18.65,19.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"event_repeat\": {\n    \"name\": \"event_repeat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"6\\\"></rect><path d=\\\"M21,12V6c0-1.1-0.9-2-2-2h-1V2h-2v2H8V2H6v2H5C3.9,4,3,4.9,3,6v14c0,1.1,0.9,2,2,2h7v-2H5V10h14v2H21z M19,8H5V6h14V8z M15.64,20c0.43,1.45,1.77,2.5,3.36,2.5c1.93,0,3.5-1.57,3.5-3.5s-1.57-3.5-3.5-3.5c-0.95,0-1.82,0.38-2.45,1l1.45,0V18h-4v-4h1.5 l0,1.43C16.4,14.55,17.64,14,19,14c2.76,0,5,2.24,5,5s-2.24,5-5,5c-2.42,0-4.44-1.72-4.9-4L15.64,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"11\\\" x=\\\"4.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M17,10.5v-5C17,4.68,16.33,4,15.5,4H14V2h-1.5v2h-5V2H6v2H4.5C3.67,4,3,4.68,3,5.5v11C3,17.32,3.67,18,4.5,18h6v-1.5h-6V9 h11v1.5H17z M15.5,7.5h-11v-2h11V7.5z M12,12h1l0,1.35c0.73-0.83,1.81-1.35,3-1.35c2.21,0,4,1.79,4,4c0,2.21-1.79,4-4,4 c-2.04,0-3.72-1.53-3.97-3.5l1.01,0C13.28,17.92,14.51,19,16,19c1.66,0,3-1.34,3-3s-1.34-3-3-3c-0.89,0-1.69,0.39-2.24,1L15,14v1 h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"donut_small\": {\n    \"name\": \"donut_small\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.99 9h3.43C18.6 7 17 5.4 15 4.58v3.43c.37.28.71.62.99.99zM4 12c0 3.35 2.04 6.24 5 7.42v-3.44c-1.23-.93-2-2.4-2-3.99C7 10.4 7.77 8.93 9 8V4.58C6.04 5.76 4 8.65 4 12zm11 3.99v3.43c2-.82 3.6-2.42 4.42-4.42h-3.43c-.28.37-.62.71-.99.99z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.82 11h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13c.85.31 1.51.97 1.82 1.82zM15 4.58C17 5.4 18.6 7 19.42 9h-3.43c-.28-.37-.62-.71-.99-.99V4.58zM2 12c0 5.19 3.95 9.45 9 9.95v-7.13C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95zm7-7.42v3.44c-1.23.92-2 2.39-2 3.98 0 1.59.77 3.06 2 3.99v3.44C6.04 18.24 4 15.35 4 12c0-3.35 2.04-6.24 5-7.42zm4 10.24v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13c-.31.85-.97 1.51-1.82 1.82zm2 1.17c.37-.28.71-.61.99-.99h3.43C18.6 17 17 18.6 15 19.42v-3.43z\\\"></path>\"\n      }\n    }\n  },\n  \"pending\": {\n    \"name\": \"pending\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8C20,7.58,16.42,4,12,4z M7,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C8.5,12.83,7.83,13.5,7,13.5z M12,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C13.5,12.83,12.83,13.5,12,13.5z M17,13.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C18.5,12.83,17.83,13.5,17,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\\\"></path><circle cx=\\\"7\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"17\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,4c-3.31,0-6,2.69-6,6c0,3.31,2.69,6,6,6s6-2.69,6-6C16,6.69,13.31,4,10,4z M6.5,11c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C7.5,10.55,7.05,11,6.5,11z M10,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C11,10.55,10.55,11,10,11z M13.5,11c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14.5,10.55,14.05,11,13.5,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,16c-3.31,0-6-2.69-6-6 c0-3.31,2.69-6,6-6s6,2.69,6,6C16,13.31,13.31,16,10,16z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"13.5\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"description\": {\n    \"name\": \"description\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 4H6v16h12V9h-5V4zm3 14H8v-2h8v2zm0-6v2H8v-2h8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 16h8v2H8zm0-4h8v2H8zm6-10H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z\\\"></path>\"\n      }\n    }\n  },\n  \"card_travel\": {\n    \"name\": \"card_travel\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17h16v2H4zm13-7h-2V8H9v2H7V8H4v6h16V8h-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_down_off_alt\": {\n    \"name\": \"thumb_down_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"3,12 3,14 12,14 10.66,19.34 15,15 15,5 6,5\\\"></polygon><rect height=\\\"12\\\" width=\\\"4\\\" x=\\\"19\\\" y=\\\"3\\\"></rect><path d=\\\"M15,3H6C5.17,3,4.46,3.5,4.16,4.22l-3.02,7.05C1.05,11.5,1,11.74,1,12v2c0,1.1,0.9,2,2,2h6.31l-0.95,4.57l-0.03,0.32 c0,0.41,0.17,0.79,0.44,1.06L9.83,23l6.59-6.59C16.78,16.05,17,15.55,17,15V5C17,3.9,16.1,3,15,3z M15,15l-4.34,4.34L12,14H3v-2 l3-7h9V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_contact_calendar\": {\n    \"name\": \"perm_contact_calendar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 5H5v14h14V5h-3zm-4 1c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H6v-1.53c0-2.5 3.97-3.58 6-3.58s6 1.08 6 3.58V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.84 4.22c-.05-.12-.11-.23-.18-.34-.14-.21-.33-.4-.54-.54-.11-.07-.22-.13-.34-.18-.24-.1-.5-.16-.78-.16h-1V1h-2v2H8V1H6v2H5c-.42 0-.8.13-1.12.34-.21.14-.4.33-.54.54-.07.11-.13.22-.18.34-.1.24-.16.5-.16.78v14c0 1.1.89 2 2 2h14c.28 0 .54-.06.78-.16.12-.05.23-.11.34-.18.21-.14.4-.33.54-.54.21-.32.34-.71.34-1.12V5c0-.28-.06-.54-.16-.78zM19 19H5V5h14v14zm-7-6.12c-2.03 0-6 1.08-6 3.58V18h12v-1.53c0-2.51-3.97-3.59-6-3.59zM8.31 16c.69-.56 2.38-1.12 3.69-1.12s3.01.56 3.69 1.12H8.31zM12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"try\": {\n    \"name\": \"try\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M4,17.17L5.17,16H20V4H4V17.17z M10.43,8.43L12,5l1.57,3.43L17,10l-3.43,1.57 L12,15l-1.57-3.43L7,10L10.43,8.43z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C2.9,2,2,2.9,2,4v18l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z\\\"></path><polygon points=\\\"12,15 13.57,11.57 17,10 13.57,8.43 12,5 10.43,8.43 7,10 10.43,11.57\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_task\": {\n    \"name\": \"add_task\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 c1.57,0,3.04,0.46,4.28,1.25l1.45-1.45C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10c1.73,0,3.36-0.44,4.78-1.22 l-1.5-1.5C14.28,19.74,13.17,20,12,20z M19,15h-3v2h3v3h2v-3h3v-2h-3v-3h-2V15z\\\"></path>\"\n      }\n    }\n  },\n  \"private_connectivity\": {\n    \"name\": \"private_connectivity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S14.76,7,12,7z M15,14.5c0,0.55-0.45,1-1,1h-4 c-0.55,0-1-0.45-1-1v-3c0-0.55,0.45-1,1-1v-1c0-1.21,1.08-2.18,2.34-1.97C13.32,7.69,14,8.61,14,9.61v0.89c0.55,0,1,0.45,1,1V14.5z M12.75,13c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S12.75,12.59,12.75,13z M13,9.5v1h-2v-1 c0-0.55,0.45-1,1-1S13,8.95,13,9.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,7c2.76,0,5,2.24,5,5s-2.24,5-5,5s-5-2.24-5-5S9.24,7,12,7z M5.07,13c0.49,3.39,3.4,6,6.93,6c3.53,0,6.44-2.61,6.93-6 L22,13v-2l-3.07,0c-0.49-3.39-3.4-6-6.93-6l0,0c-3.53,0-6.44,2.61-6.93,6c0,0-3.07,0-3.07,0v2L5.07,13z M14,10.5V9.61 c0-1-0.68-1.92-1.66-2.08C11.08,7.32,10,8.29,10,9.5v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h4c0.55,0,1-0.45,1-1v-3 C15,10.95,14.55,10.5,14,10.5z M12,13.75c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75s0.75,0.34,0.75,0.75 C12.75,13.41,12.41,13.75,12,13.75z M13,10.5h-2v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V10.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,6c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C14,7.79,12.21,6,10,6z M12.5,12 c0,0.28-0.22,0.5-0.5,0.5H8c-0.28,0-0.5-0.22-0.5-0.5V9c0-0.28,0.22-0.5,0.5-0.5h0.5V8c0-0.82,0.67-1.5,1.5-1.5s1.5,0.68,1.5,1.5 v0.5H12c0.28,0,0.5,0.22,0.5,0.5V12z M10.6,10.5c0,0.33-0.27,0.6-0.6,0.6s-0.6-0.27-0.6-0.6S9.67,9.9,10,9.9S10.6,10.17,10.6,10.5z M10.75,8v0.5h-1.5V8c0-0.41,0.34-0.75,0.75-0.75S10.75,7.59,10.75,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.45,9.25C15.08,6.57,12.78,4.5,10,4.5S4.92,6.57,4.55,9.25H2v1.5h2.55C4.92,13.43,7.22,15.5,10,15.5s5.08-2.07,5.45-4.75 H18v-1.5H15.45z M10,14c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4s4,1.79,4,4C14,12.21,12.21,14,10,14z M12,8.5h-0.5V8 c0-0.82-0.67-1.5-1.5-1.5S8.5,7.18,8.5,8v0.5H8C7.72,8.5,7.5,8.72,7.5,9v3c0,0.28,0.22,0.5,0.5,0.5h4c0.28,0,0.5-0.22,0.5-0.5V9 C12.5,8.72,12.28,8.5,12,8.5z M10,11.1c-0.33,0-0.6-0.27-0.6-0.6S9.67,9.9,10,9.9s0.6,0.27,0.6,0.6S10.33,11.1,10,11.1z M10.75,8.5 h-1.5V8c0-0.41,0.34-0.75,0.75-0.75S10.75,7.59,10.75,8V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"visibility\": {\n    \"name\": \"visibility\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.79 0-7.17 2.13-8.82 5.5C4.83 14.87 8.21 17 12 17s7.17-2.13 8.82-5.5C19.17 8.13 15.79 6 12 6zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7 12 7s4.5 2.02 4.5 4.5S14.48 16 12 16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.13 8.21 6 12 6s7.17 2.13 8.82 5.5C19.17 14.87 15.79 17 12 17zm0-10c-2.48 0-4.5 2.02-4.5 4.5S9.52 16 12 16s4.5-2.02 4.5-4.5S14.48 7 12 7zm0 7c-1.38 0-2.5-1.12-2.5-2.5S10.62 9 12 9s2.5 1.12 2.5 2.5S13.38 14 12 14z\\\"></path>\"\n      }\n    }\n  },\n  \"https\": {\n    \"name\": \"https\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"code\": {\n    \"name\": \"code\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\\\"></path>\"\n      }\n    }\n  },\n  \"account_circle\": {\n    \"name\": \"account_circle\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12 4c-4.42 0-8 3.58-8 8 0 1.95.7 3.73 1.86 5.12C7.55 15.8 9.68 15 12 15s4.45.8 6.14 2.12C19.3 15.73 20 13.95 20 12c0-4.42-3.58-8-8-8zm0 9c-1.93 0-3.5-1.57-3.5-3.5S10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-1.74 0-3.34-.56-4.65-1.5C8.66 17.56 10.26 17 12 17s3.34.56 4.65 1.5c-1.31.94-2.91 1.5-4.65 1.5zm6.14-2.88C16.45 15.8 14.32 15 12 15s-4.45.8-6.14 2.12C4.7 15.73 4 13.95 4 12c0-4.42 3.58-8 8-8s8 3.58 8 8c0 1.95-.7 3.73-1.86 5.12z\\\"></path><path d=\\\"M12 5.93c-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.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10 3.5c-3.58 0-6.5 2.92-6.5 6.5 0 1.54.54 2.95 1.43 4.06 1.45-.98 3.19-1.56 5.07-1.56s3.62.58 5.07 1.56c.9-1.11 1.43-2.53 1.43-4.06 0-3.58-2.92-6.5-6.5-6.5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 5.5c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4.5c-.83 0-1.5-.67-1.5-1.5S9.17 7 10 7s1.5.67 1.5 1.5S10.83 10 10 10z\\\"></path><path d=\\\"M10 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14.5c-1.49 0-2.86-.51-3.96-1.36C7.19 14.42 8.55 14 10 14s2.81.42 3.96 1.14c-1.1.85-2.47 1.36-3.96 1.36zm5.07-2.44c-1.44-.99-3.19-1.56-5.07-1.56s-3.62.58-5.07 1.56C4.04 12.95 3.5 11.54 3.5 10c0-3.58 2.92-6.5 6.5-6.5s6.5 2.92 6.5 6.5c0 1.54-.54 2.95-1.43 4.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"delete_forever\": {\n    \"name\": \"delete_forever\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 9H8v10h8V9zm-.47 7.12l-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12 1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.12 10.47L12 12.59l-2.13-2.12-1.41 1.41L10.59 14l-2.12 2.12 1.41 1.41L12 15.41l2.12 2.12 1.41-1.41L13.41 14l2.12-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4zM6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM8 9h8v10H8V9z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_circle_down\": {\n    \"name\": \"arrow_circle_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M12,16l-4-4h3l0-4h2l0,4h3L12,16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M13,12l0-4h-2l0,4H8l4,4l4-4H13z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,4c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S13.31,4,10,4z M10,13l-3-3h2.5V7h1v3H13L10,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16 M10,17c3.87,0,7-3.13,7-7c0-3.87-3.13-7-7-7 c-3.87,0-7,3.13-7,7C3,13.87,6.13,17,10,17L10,17z M10.5,10V7h-1v3H7l3,3l3-3H10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"loyalty\": {\n    \"name\": \"loyalty\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 4H4v7l9 9.01L20 13l-9-9zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8zm6.5 3.7l.6-.6c.37-.37.89-.6 1.45-.6 1.13 0 2.05.92 2.05 2.05 0 .57-.23 1.08-.6 1.45L13 17.5 9.5 14c-.37-.38-.6-.89-.6-1.45 0-1.13.92-2.05 2.05-2.05.57 0 1.08.23 1.45.61l.6.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58s1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41s-.23-1.06-.59-1.42zM13 20.01L4 11V4h7v-.01l9 9-7 7.02z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M8.9 12.55c0 .57.23 1.07.6 1.45l3.5 3.5 3.5-3.5c.37-.37.6-.89.6-1.45 0-1.13-.92-2.05-2.05-2.05-.57 0-1.08.23-1.45.6l-.6.6-.6-.59c-.37-.38-.89-.61-1.45-.61-1.13 0-2.05.92-2.05 2.05z\\\"></path>\"\n      }\n    }\n  },\n  \"manage_accounts\": {\n    \"name\": \"manage_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><circle cx=\\\"10\\\" cy=\\\"8\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M10,16c0-0.34,0.03-0.67,0.08-0.99C10.05,15,10.03,15,10,15 c-1.97,0-3.9,0.53-5.59,1.54C4.16,16.68,4,17,4,17.35V18h6.29C10.1,17.37,10,16.7,10,16z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path></g><path d=\\\"M4,18v-0.65c0-0.34,0.16-0.66,0.41-0.81C6.1,15.53,8.03,15,10,15c0.03,0,0.05,0,0.08,0.01c0.1-0.7,0.3-1.37,0.59-1.98 C10.45,13.01,10.23,13,10,13c-2.42,0-4.68,0.67-6.61,1.82C2.51,15.34,2,16.32,2,17.35V20h9.26c-0.42-0.6-0.75-1.28-0.97-2H4z M10,12c2.21,0,4-1.79,4-4s-1.79-4-4-4S6,5.79,6,8S7.79,12,10,12z M10,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S8,9.1,8,8S8.9,6,10,6z\\\"></path><path d=\\\"M20.83,12.63l-1.45,0.49c-0.32-0.27-0.68-0.48-1.08-0.63L18,11h-2l-0.3,1.49c-0.4,0.15-0.76,0.36-1.08,0.63l-1.45-0.49 l-1,1.73l1.14,1c-0.03,0.21-0.06,0.41-0.06,0.63s0.03,0.42,0.06,0.63l-1.14,1l1,1.73l1.45-0.49c0.32,0.27,0.68,0.48,1.08,0.63 L16,21h2l0.3-1.49c0.4-0.15,0.76-0.36,1.08-0.63l1.45,0.49l1-1.73l-1.14-1c0.03-0.21,0.06-0.41,0.06-0.63s-0.03-0.42-0.06-0.63 l1.14-1L20.83,12.63z M17,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C19,17.1,18.1,18,17,18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wifi_protected_setup\": {\n    \"name\": \"wifi_protected_setup\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M16.71,5.29L19,3h-8v8l2.3-2.3c1.97,1.46,3.25,3.78,3.25,6.42c0,1.31-0.32,2.54-0.88,3.63c2.33-1.52,3.88-4.14,3.88-7.13 C19.55,9.1,18.44,6.85,16.71,5.29z\\\"></path></g><g><path d=\\\"M7.46,8.88c0-1.31,0.32-2.54,0.88-3.63C6,6.77,4.46,9.39,4.46,12.38c0,2.52,1.1,4.77,2.84,6.33L5,21h8v-8l-2.3,2.3 C8.74,13.84,7.46,11.52,7.46,8.88z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M15,4H9v6l1.8-1.8c1.22,0.91,2.01,2.35,2.01,3.99c0,0.75-0.18,1.45-0.47,2.09c1.49-0.98,2.47-2.67,2.47-4.59 c0-1.52-0.62-2.89-1.61-3.89L15,4z\\\"></path></g><g><path d=\\\"M7.19,7.84c0-0.75,0.18-1.45,0.47-2.09c-1.49,0.98-2.47,2.67-2.47,4.59c0,1.52,0.62,2.89,1.61,3.89L5,16h6v-5.97 l-1.8,1.8C7.99,10.91,7.19,9.47,7.19,7.84z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"not_started\": {\n    \"name\": \"not_started\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M12,16V8 l5,4L12,16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2L12,2z M11,8H9v8h2V8z M17,12l-5-4v8L17,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M10,4c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S13.31,4,10,4z M9,13H8V7h1V13z M10,13V7l4,3L10,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,4c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S6.69,4,10,4 M10,3c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7 S13.86,3,10,3L10,3z M10,13l4-3l-4-3V13z M8,7v6h1V7H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"join_inner\": {\n    \"name\": \"join_inner\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><ellipse cx=\\\"12\\\" cy=\\\"12\\\" rx=\\\"3\\\" ry=\\\"5.74\\\"></ellipse><g><path d=\\\"M9.04,16.87C8.71,16.95,8.36,17,8,17c-2.76,0-5-2.24-5-5s2.24-5,5-5c0.36,0,0.71,0.05,1.04,0.13 c0.39-0.56,0.88-1.12,1.49-1.63C9.75,5.19,8.9,5,8,5c-3.86,0-7,3.14-7,7s3.14,7,7,7c0.9,0,1.75-0.19,2.53-0.5 C9.92,17.99,9.43,17.43,9.04,16.87z\\\"></path></g><path d=\\\"M16,5c-0.9,0-1.75,0.19-2.53,0.5c0.61,0.51,1.1,1.07,1.49,1.63C15.29,7.05,15.64,7,16,7c2.76,0,5,2.24,5,5s-2.24,5-5,5 c-0.36,0-0.71-0.05-1.04-0.13c-0.39,0.56-0.88,1.12-1.49,1.63C14.25,18.81,15.1,19,16,19c3.86,0,7-3.14,7-7S19.86,5,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.76C8.27,7.19,8,9.08,8,10c0,0.91,0.27,2.81,2,4.24c1.73-1.43,2-3.33,2-4.24C12,9.08,11.73,7.19,10,5.76z\\\"></path><path d=\\\"M13.5,4.5c-0.96,0-1.86,0.25-2.65,0.69c0.42,0.38,0.77,0.77,1.04,1.18C12.38,6.14,12.92,6,13.5,6c2.21,0,4,1.79,4,4 s-1.79,4-4,4c-0.58,0-1.12-0.14-1.61-0.36c-0.27,0.4-0.62,0.8-1.04,1.18c0.79,0.43,1.69,0.69,2.65,0.69c3.04,0,5.5-2.46,5.5-5.5 C19,6.96,16.54,4.5,13.5,4.5z\\\"></path><path d=\\\"M6.5,14c-2.21,0-4-1.79-4-4s1.79-4,4-4c0.58,0,1.12,0.14,1.61,0.36c0.27-0.4,0.62-0.8,1.04-1.18 C8.36,4.75,7.46,4.5,6.5,4.5C3.46,4.5,1,6.96,1,10c0,3.04,2.46,5.5,5.5,5.5c0.96,0,1.86-0.25,2.65-0.69 c-0.42-0.38-0.77-0.77-1.04-1.18C7.62,13.86,7.08,14,6.5,14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"highlight_alt\": {\n    \"name\": \"highlight_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,5h-2V3h2V5z M15,15v6l2.29-2.29L19.59,21L21,19.59l-2.29-2.29L21,15H15z M19,9h2V7h-2V9z M19,13h2v-2h-2V13z M11,21h2 v-2h-2V21z M7,5h2V3H7V5z M3,17h2v-2H3V17z M5,21v-2H3C3,20.1,3.9,21,5,21z M19,3v2h2C21,3.9,20.1,3,19,3z M11,5h2V3h-2V5z M3,9h2 V7H3V9z M7,21h2v-2H7V21z M3,13h2v-2H3V13z M3,5h2V3C3.9,3,3,3.9,3,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rule\": {\n    \"name\": \"rule\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16.54,11L13,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L16.54,11z M11,7H2v2h9V7z M21,13.41L19.59,12L17,14.59 L14.41,12L13,13.41L15.59,16L13,18.59L14.41,20L17,17.41L19.59,20L21,18.59L18.41,16L21,13.41z M11,15H2v2h9V15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"maximize\": {\n    \"name\": \"maximize\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h18v2H3V3z\\\"></path>\"\n      }\n    }\n  },\n  \"payment\": {\n    \"name\": \"payment\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6h16v2H4zm0 6h16v6H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_indicator\": {\n    \"name\": \"drag_indicator\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"event_seat\": {\n    \"name\": \"event_seat\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 5h6v7H9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 21h2v-4h12v4h2v-6H4zM17 5c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v9h10V5zm-2 7H9V5h6v7zm4-2h3v3h-3zM2 10h3v3H2z\\\"></path>\"\n      }\n    }\n  },\n  \"browse_gallery\": {\n    \"name\": \"browse_gallery\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,5c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S12.86,5,9,5z M11.79,16.21L8,12.41V7h2v4.59l3.21,3.21 L11.79,16.21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9S13.97,3,9,3z M9,19c-3.86,0-7-3.14-7-7s3.14-7,7-7s7,3.14,7,7 S12.86,19,9,19z\\\"></path><polygon points=\\\"10,7 8,7 8,12.41 11.79,16.21 13.21,14.79 10,11.59\\\"></polygon><path d=\\\"M17.99,3.52v2.16C20.36,6.8,22,9.21,22,12c0,2.79-1.64,5.2-4.01,6.32v2.16C21.48,19.24,24,15.91,24,12 C24,8.09,21.48,4.76,17.99,3.52z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7,4.5c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S10.03,4.5,7,4.5z M9.08,12.83L6.25,10 V6h1.5v3.38l2.39,2.39L9.08,12.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,3.08V4.6c2.56,0.47,4.5,2.71,4.5,5.4s-1.94,4.93-4.5,5.4v1.52c3.39-0.49,6-3.39,6-6.92C20,6.47,17.39,3.57,14,3.08z\\\"></path><path d=\\\"M7,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C14,6.13,10.87,3,7,3z M7,15.5c-3.03,0-5.5-2.47-5.5-5.5 S3.97,4.5,7,4.5s5.5,2.47,5.5,5.5S10.03,15.5,7,15.5z\\\"></path><polygon points=\\\"7.75,6 6.25,6 6.25,10 9.08,12.83 10.14,11.77 7.75,9.38\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"list\": {\n    \"name\": \"list\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g fill=\\\"none\\\"><path d=\\\"M0 0h24v24H0V0z\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" opacity=\\\".87\\\"></path></g><path d=\\\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z\\\"></path>\"\n      }\n    }\n  },\n  \"output\": {\n    \"name\": \"output\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17,17 22,12 17,7 15.59,8.41 18.17,11 9,11 9,13 18.17,13 15.59,15.59\\\"></polygon><path d=\\\"M19,19H5V5h14v2h2V5c0-1.1-0.89-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.11,0,2-0.9,2-2v-2h-2V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"14,14 18,10 14,6 12.94,7.06 15.13,9.25 8,9.25 8,10.75 15.13,10.75 12.94,12.94\\\"></polygon><path d=\\\"M15.5,15.5h-11v-11h11V6H17V4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11 c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"touch_app\": {\n    \"name\": \"touch_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18.19,12.44l-3.24-1.62c1.29-1,2.12-2.56,2.12-4.32c0-3.03-2.47-5.5-5.5-5.5s-5.5,2.47-5.5,5.5c0,2.13,1.22,3.98,3,4.89 v3.26c-2.08-0.44-2.01-0.44-2.26-0.44c-0.53,0-1.03,0.21-1.41,0.59L4,16.22l5.09,5.09C9.52,21.75,10.12,22,10.74,22h6.3 c0.98,0,1.81-0.7,1.97-1.67l0.8-4.71C20.03,14.32,19.38,13.04,18.19,12.44z M8.07,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5 c0,0.95-0.38,1.81-1,2.44V6.5c0-1.38-1.12-2.5-2.5-2.5c-1.38,0-2.5,1.12-2.5,2.5v2.44C8.45,8.31,8.07,7.45,8.07,6.5z M17.84,15.29 L17.04,20h-6.3c-0.09,0-0.17-0.04-0.24-0.1l-3.68-3.68l4.25,0.89V6.5c0-0.28,0.22-0.5,0.5-0.5c0.28,0,0.5,0.22,0.5,0.5v6h1.76 l3.46,1.73C17.69,14.43,17.91,14.86,17.84,15.29z\\\"></path><path d=\\\"M17.3,14.23l-3.46-1.73h-1.77v-6c0-0.28-0.22-0.5-0.5-0.5 c-0.28,0-0.5,0.22-0.5,0.5v10.61l-4.25-0.89l3.68,3.68c0.06,0.06,0.15,0.1,0.24,0.1h6.3l0.8-4.71 C17.91,14.86,17.69,14.43,17.3,14.23z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"donut_large\": {\n    \"name\": \"donut_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 5.08c3.06.44 5.48 2.86 5.92 5.92h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13c-.44 3.06-2.86 5.48-5.92 5.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"troubleshoot\": {\n    \"name\": \"troubleshoot\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M22,20.59l-4.69-4.69C18.37,14.55,19,12.85,19,11c0-4.42-3.58-8-8-8c-4.08,0-7.44,3.05-7.93,7h2.02C5.57,7.17,8.03,5,11,5 c3.31,0,6,2.69,6,6s-2.69,6-6,6c-2.42,0-4.5-1.44-5.45-3.5H3.4C4.45,16.69,7.46,19,11,19c1.85,0,3.55-0.63,4.9-1.69L20.59,22 L22,20.59z\\\"></path><polygon points=\\\"8.43,9.69 9.65,15 11.29,15 12.55,11.22 13.5,13.5 15.5,13.5 15.5,12 14.5,12 13.25,9 11.71,9 10.59,12.37 9.35,7 7.7,7 6.45,11 1,11 1,12.5 7.55,12.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M18.01,16.94l-4.27-4.27C14.53,11.65,15,10.38,15,9c0-3.31-2.69-6-6-6C6.03,3,3.57,5.16,3.09,8h1.53 C5.08,6,6.86,4.5,9,4.5c2.48,0,4.5,2.02,4.5,4.5s-2.02,4.5-4.5,4.5c-1.76,0-3.27-1.02-4.01-2.5H3.35c0.82,2.33,3.04,4,5.65,4 c1.39,0,2.66-0.48,3.68-1.27L16.95,18L18.01,16.94z\\\"></path><polygon points=\\\"7,7.56 8.11,12 9.36,12 10.29,9.2 11.19,11 12.5,11 12.5,10 11.81,10 10.81,8 9.64,8 8.78,10.57 7.64,6 6.36,6 5.61,9 1,9 1,10 6.39,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"terminal\": {\n    \"name\": \"terminal\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18h16V8H4V18z M12,15h6v2h-6V15z M6.09,10.41L7.5,9l4,4l-4,4l-1.41-1.41L8.67,13L6.09,10.41z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"12\\\" y=\\\"15\\\"></rect><path d=\\\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.11,4,20,4z M20,18H4V8h16V18z\\\"></path><polygon points=\\\"7.5,17 11.5,13 7.5,9 6.09,10.41 8.67,13 6.09,15.59\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,14.5h13V7h-13V14.5z M10,12h5v1.5h-5V12z M5.19,9.06L6.25,8L9,10.75L6.25,13.5l-1.06-1.06l1.69-1.69 L5.19,9.06z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"6.25,13.5 9,10.75 6.25,8 5.19,9.06 6.88,10.75 5.19,12.44\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"10\\\" y=\\\"12\\\"></rect><path d=\\\"M16.5,4h-13C2.67,4,2,4.67,2,5.5v9C2,15.33,2.67,16,3.5,16h13c0.83,0,1.5-0.67,1.5-1.5v-9C18,4.67,17.33,4,16.5,4z M16.5,14.5h-13V7h13V14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"settings_bluetooth\": {\n    \"name\": \"settings_bluetooth\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"group_work\": {\n    \"name\": \"group_work\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zM8 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4-6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path><circle cx=\\\"8\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"8\\\" r=\\\"2\\\"></circle><circle cx=\\\"16\\\" cy=\\\"14\\\" r=\\\"2\\\"></circle>\"\n      }\n    }\n  },\n  \"no_accounts\": {\n    \"name\": \"no_accounts\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,6c-0.52,0-1,0.12-1.44,0.32l4.62,4.62c0.2-0.44,0.32-0.92,0.32-1.44C15.5,7.57,13.93,6,12,6z M12,2C6.48,2,2,6.48,2,12 s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M4,12c0-1.85,0.63-3.55,1.69-4.9l2.86,2.86c0.21,1.56,1.43,2.79,2.99,2.99l2.2,2.2 C13.17,15.05,12.59,15,12,15c-2.32,0-4.45,0.8-6.14,2.12C4.7,15.73,4,13.95,4,12z M12,20c-1.74,0-3.34-0.56-4.65-1.5 C8.66,17.56,10.26,17,12,17s3.34,0.56,4.65,1.5C15.34,19.44,13.74,20,12,20z M18.31,16.9L7.1,5.69C8.45,4.63,10.15,4,12,4 c4.42,0,8,3.58,8,8C20,13.85,19.37,15.54,18.31,16.9z\\\"></path><path d=\\\"M7.35,18.5C8.66,19.44,10.26,20,12,20s3.34-0.56,4.65-1.5 C15.34,17.56,13.74,17,12,17S8.66,17.56,7.35,18.5z M15.18,10.94l-4.62-4.62C11,6.12,11.48,6,12,6c1.93,0,3.5,1.57,3.5,3.5 C15.5,10.02,15.38,10.5,15.18,10.94z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path></g>\"\n      }\n    }\n  },\n  \"offline_bolt\": {\n    \"name\": \"offline_bolt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4.02C7.6 4.02 4.02 7.6 4.02 12S7.6 19.98 12 19.98s7.98-3.58 7.98-7.98S16.4 4.02 12 4.02zM11.39 19v-5.5H8.25l4.5-8.5v5.5h3L11.39 19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zm0 17.96c-4.4 0-7.98-3.58-7.98-7.98S7.6 4.02 12 4.02 19.98 7.6 19.98 12 16.4 19.98 12 19.98zM12.75 5l-4.5 8.5h3.14V19l4.36-8.5h-3V5z\\\"></path>\"\n      }\n    }\n  },\n  \"integration_instructions\": {\n    \"name\": \"integration_instructions\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><circle cx=\\\"12\\\" cy=\\\"3.5\\\" fill=\\\"none\\\" r=\\\".75\\\"></circle><line fill=\\\"none\\\" x1=\\\"19\\\" x2=\\\"5\\\" y1=\\\"5\\\" y2=\\\"5\\\"></line><line fill=\\\"none\\\" x1=\\\"5\\\" x2=\\\"19\\\" y1=\\\"19\\\" y2=\\\"19\\\"></line><g><polygon points=\\\"11,14.17 8.83,12 11,9.83 9.59,8.41 6,12 9.59,15.59\\\"></polygon><polygon points=\\\"14.41,15.59 18,12 14.41,8.41 13,9.83 15.17,12 13,14.17\\\"></polygon><path d=\\\"M19,3h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C4.86,3,4.73,3.01,4.6,3.04C4.21,3.12,3.86,3.32,3.59,3.59 c-0.18,0.18-0.33,0.4-0.43,0.64C3.06,4.46,3,4.72,3,5v10v1v3c0,0.27,0.06,0.54,0.16,0.78c0.1,0.24,0.25,0.45,0.43,0.64 c0.27,0.27,0.62,0.47,1.01,0.55C4.73,20.99,4.86,21,5,21h14c1.1,0,2-0.9,2-2v-3v-1V5C21,3.9,20.1,3,19,3z M12,2.75 c0.41,0,0.75,0.34,0.75,0.75S12.41,4.25,12,4.25s-0.75-0.34-0.75-0.75S11.59,2.75,12,2.75z M19,19H5V5h14V19z\\\"></path></g></g><line fill=\\\"none\\\" opacity=\\\".3\\\" x1=\\\"19\\\" x2=\\\"5\\\" y1=\\\"5\\\" y2=\\\"5\\\"></line><line fill=\\\"none\\\" opacity=\\\".3\\\" x1=\\\"5\\\" x2=\\\"19\\\" y1=\\\"19\\\" y2=\\\"19\\\"></line><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"5\\\"></rect>\"\n      }\n    }\n  },\n  \"currency_exchange\": {\n    \"name\": \"currency_exchange\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12.89,11.1c-1.78-0.59-2.64-0.96-2.64-1.9c0-1.02,1.11-1.39,1.81-1.39c1.31,0,1.79,0.99,1.9,1.34l1.58-0.67 C15.39,8.03,14.72,6.56,13,6.24V5h-2v1.26C8.52,6.82,8.51,9.12,8.51,9.22c0,2.27,2.25,2.91,3.35,3.31 c1.58,0.56,2.28,1.07,2.28,2.03c0,1.13-1.05,1.61-1.98,1.61c-1.82,0-2.34-1.87-2.4-2.09L8.1,14.75c0.63,2.19,2.28,2.78,2.9,2.96V19 h2v-1.24c0.4-0.09,2.9-0.59,2.9-3.22C15.9,13.15,15.29,11.93,12.89,11.1z M3,21H1v-6h6v2l-2.48,0c1.61,2.41,4.36,4,7.48,4 c4.97,0,9-4.03,9-9h2c0,6.08-4.92,11-11,11c-3.72,0-7.01-1.85-9-4.67L3,21z M1,12C1,5.92,5.92,1,12,1c3.72,0,7.01,1.85,9,4.67L21,3 h2v6h-6V7l2.48,0C17.87,4.59,15.12,3,12,3c-4.97,0-9,4.03-9,9H1z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.06,12c0,2.06-1.96,2.46-2.37,2.53v0.98H9.31v-1.02c-0.58-0.14-1.88-0.61-2.37-2.33l1.3-0.53 c0.05,0.17,0.46,1.64,1.89,1.64c0.73,0,1.56-0.37,1.56-1.26c0-0.76-0.55-1.15-1.79-1.59c-0.86-0.31-2.63-0.81-2.63-2.6 c0-0.08,0.01-1.89,2.06-2.33V4.5h1.38v0.98c1.45,0.25,1.98,1.4,2.09,1.75l-1.24,0.53c-0.09-0.28-0.47-1.05-1.49-1.05 c-0.55,0-1.42,0.29-1.42,1.09c0,0.74,0.67,1.03,2.07,1.5C12.58,9.94,13.06,10.9,13.06,12z M6,14l0-1.5l-5,0l0,5l1.5,0l0-2.52 C4.11,17.4,6.87,19,10,19c4.97,0,9-4.03,9-9h-1.5c0,4.14-3.36,7.5-7.5,7.5c-2.67,0-5.02-1.4-6.35-3.5L6,14z M17.5,5.02 C15.89,2.6,13.13,1,10,1c-4.97,0-9,4.03-9,9h1.5c0-4.14,3.36-7.5,7.5-7.5c2.67,0,5.02,1.4,6.35,3.5L14,6v1.5h5v-5h-1.5L17.5,5.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"alarm_add\": {\n    \"name\": \"alarm_add\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3H8v-2h3V9h2v3h3v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"restore\": {\n    \"name\": \"restore\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\\\"></path>\"\n      }\n    }\n  },\n  \"search_off\": {\n    \"name\": \"search_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.5,14h-0.79l-0.28-0.27C15.41,12.59,16,11.11,16,9.5C16,5.91,13.09,3,9.5,3C6.08,3,3.28,5.64,3.03,9h2.02 C5.3,6.75,7.18,5,9.5,5C11.99,5,14,7.01,14,9.5S11.99,14,9.5,14c-0.17,0-0.33-0.03-0.5-0.05v2.02C9.17,15.99,9.33,16,9.5,16 c1.61,0,3.09-0.59,4.23-1.57L14,14.71v0.79l5,4.99L20.49,19L15.5,14z\\\"></path><polygon points=\\\"6.47,10.82 4,13.29 1.53,10.82 0.82,11.53 3.29,14 0.82,16.47 1.53,17.18 4,14.71 6.47,17.18 7.18,16.47 4.71,14 7.18,11.53\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,11.29c0.62-0.77,1-1.73,1-2.79C13,6.01,10.99,4,8.5,4C6.19,4,4.3,5.75,4.05,8h1C5.29,6.31,6.74,5,8.5,5 C10.43,5,12,6.57,12,8.5S10.43,12,8.5,12c-0.17,0-0.34-0.03-0.5-0.05v1C8.17,12.97,8.33,13,8.5,13c1.06,0,2.02-0.38,2.79-1 l3.57,3.57l0.71-0.71L12,11.29z\\\"></path><polygon points=\\\"5.91,9.38 4.5,10.79 3.09,9.38 2.38,10.09 3.79,11.5 2.38,12.91 3.09,13.62 4.5,12.21 5.91,13.62 6.62,12.91 5.21,11.5 6.62,10.09\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"not_accessible\": {\n    \"name\": \"not_accessible\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,4c0-1.1,0.9-2,2-2s2,0.9,2,2s-0.9,2-2,2S10,5.1,10,4z M19,13v-2c-1.54,0.02-3.09-0.75-4.07-1.83l-1.29-1.43 C13.4,7.5,13.2,7.38,13.01,7.28c-0.36-0.19-0.72-0.3-1.2-0.26c-0.49,0.04-0.91,0.27-1.23,0.61L14,11.05 C15.29,12.12,17.25,12.99,19,13z M10,20c-1.66,0-3-1.34-3-3c0-1.31,0.84-2.41,2-2.83V12.1c-2.28,0.46-4,2.48-4,4.9 c0,2.76,2.24,5,5,5c2.42,0,4.44-1.72,4.9-4h-2.07C12.42,19.16,11.31,20,10,20z M2.81,2.81L1.39,4.22L10,12.83V15c0,1.1,0.9,2,2,2 h2.17l5.61,5.61l1.41-1.41L2.81,2.81z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.95,14h1c-0.24,1.69-1.69,3-3.45,3C6.57,17,5,15.43,5,13.5c0-1.76,1.31-3.21,3-3.45v1c-1.14,0.23-2,1.24-2,2.45 C6,14.88,7.12,16,8.5,16C9.71,16,10.72,15.14,10.95,14z M8.5,4.5C8.5,5.33,9.17,6,10,6s1.5-0.67,1.5-1.5S10.83,3,10,3 S8.5,3.67,8.5,4.5z M11,9.59V8.96l0.47,0.43c0.17,0.16,0.35,0.3,0.53,0.43c0.77,0.57,1.68,0.89,2.66,0.89v-1 c-0.94,0-1.81-0.36-2.49-1.04L12,8.52l-1.15-1.05c0,0-0.49-0.47-0.85-0.47C9.57,7,9.21,7.28,9.07,7.66L11,9.59z M16.36,16.36 L3.64,3.64L2.93,4.34L9,10.41V12c0,0.55,0.45,1,1,1h1.59l4.07,4.07L16.36,16.36z\\\"></path></g>\"\n      }\n    }\n  },\n  \"shopping_cart\": {\n    \"name\": \"shopping_cart\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.55 11l2.76-5H6.16l2.37 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.37-.66-.11-1.48-.87-1.48H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"noise_control_off\": {\n    \"name\": \"noise_control_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c1.44,0,2.79,0.38,3.95,1.05l1.45-1.45C15.85,2.59,13.99,2,12,2S8.15,2.59,6.59,3.59l1.45,1.45 C9.21,4.38,10.56,4,12,4z\\\"></path><path d=\\\"M20,12c0,1.44-0.38,2.79-1.05,3.95l1.45,1.45C21.41,15.85,22,13.99,22,12s-0.59-3.85-1.59-5.41l-1.45,1.45 C19.62,9.21,20,10.56,20,12z\\\"></path><path d=\\\"M12,20c-1.44,0-2.79-0.38-3.95-1.05l-1.45,1.45C8.15,21.41,10.01,22,12,22s3.85-0.59,5.41-1.59l-1.45-1.45 C14.79,19.62,13.44,20,12,20z\\\"></path><path d=\\\"M4,12c0-1.44,0.38-2.79,1.05-3.95L3.59,6.59C2.59,8.15,2,10.01,2,12s0.59,3.85,1.59,5.41l1.45-1.45 C4.38,14.79,4,13.44,4,12z\\\"></path><path d=\\\"M11.5,6C9.02,6,7,8.02,7,10.5c0,1.22,0.49,2.41,1.35,3.27l1.36,1.36c0.17,0.17,0.31,0.44,0.44,0.82 C10.56,17.17,11.71,18,13,18c1.65,0,3-1.35,3-3h-2c0,0.55-0.45,1-1,1c-0.43,0-0.81-0.27-0.95-0.68c-0.15-0.44-0.4-1.08-0.93-1.61 l-1.36-1.36C9.28,11.87,9,11.19,9,10.5C9,9.12,10.12,8,11.5,8c1.21,0,2.22,0.86,2.45,2h2.02C15.72,7.75,13.81,6,11.5,6z\\\"></path><circle cx=\\\"13.5\\\" cy=\\\"12.5\\\" r=\\\"1.5\\\"></circle></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"11.25\\\" cy=\\\"10.38\\\" r=\\\"1.25\\\"></circle><path d=\\\"M3.39,5.51C2.51,6.79,2,8.34,2,10s0.51,3.21,1.39,4.49l1.09-1.09C3.86,12.41,3.5,11.25,3.5,10s0.36-2.41,0.97-3.41 L3.39,5.51z\\\"></path><path d=\\\"M16.61,5.51l-1.09,1.09C16.14,7.59,16.5,8.75,16.5,10s-0.36,2.41-0.97,3.41l1.09,1.09C17.49,13.21,18,11.66,18,10 S17.49,6.79,16.61,5.51z\\\"></path><path d=\\\"M10,16.5c-1.25,0-2.41-0.36-3.41-0.97l-1.09,1.09C6.79,17.49,8.34,18,10,18s3.21-0.51,4.49-1.39l-1.09-1.09 C12.41,16.14,11.25,16.5,10,16.5z\\\"></path><path d=\\\"M5.51,3.39l1.09,1.09C7.59,3.86,8.75,3.5,10,3.5s2.41,0.36,3.41,0.97l1.09-1.09C13.21,2.51,11.66,2,10,2 S6.79,2.51,5.51,3.39z\\\"></path><path d=\\\"M9.75,5C7.81,5,6.47,6.37,6.12,7.8c-0.38,1.56,0.2,2.99,1.28,3.85c0.53,0.43,1.01,0.96,1.17,1.62 C8.8,14.22,9.63,15,10.75,15c1.24,0,2.25-1.01,2.25-2.25h-1.5c0,0.41-0.34,0.75-0.75,0.75c-0.43,0-0.66-0.31-0.73-0.58 c-0.22-0.9-0.77-1.7-1.69-2.44c-0.7-0.56-0.98-1.43-0.76-2.33C7.71,7.6,8.34,6.5,9.75,6.5c0.98,0,1.8,0.63,2.11,1.5h1.56 C13.08,6.29,11.56,5,9.75,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shop_2\": {\n    \"name\": \"shop_2\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,16h14V7H7V16z M12,8l5.5,3.5L12,15V8z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,9H1v11c0,1.11,0.89,2,2,2h16v-2H3V9z\\\"></path><path d=\\\"M18,5V3c0-1.11-0.89-2-2-2h-4c-1.11,0-2,0.89-2,2v2H5v11c0,1.11,0.89,2,2,2h14c1.11,0,2-0.89,2-2V5H18z M12,3h4v2h-4V3z M21,16H7V7h14V16z\\\"></path><polygon points=\\\"12,8 12,15 17.5,11.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.5,13.5h12v-8h-12V13.5z M10,6.5l4.5,3l-4.5,3V6.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.5,7H1v9.5C1,17.33,1.67,18,2.5,18H16v-1.5H2.5V7z\\\"></path><path d=\\\"M15,4V2.5C15,1.67,14.33,1,13.5,1h-4C8.67,1,8,1.67,8,2.5V4H4v9.5C4,14.33,4.67,15,5.5,15h12c0.83,0,1.5-0.67,1.5-1.5V4 H15z M9.5,2.5h4V4h-4V2.5z M17.5,13.5h-12v-8h12V13.5z\\\"></path><polygon points=\\\"10,6.5 10,12.5 14.5,9.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_home\": {\n    \"name\": \"add_home\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M12,5.5L6,10v9h5.08c-0.62-4.3,2.72-8,6.92-8v-1L12,5.5z\\\"></path></g><path d=\\\"M6,19v-9l6-4.5l6,4.5v1c0.7,0,1.37,0.1,2,0.29V9l-8-6L4,9v12h7.68c-0.3-0.62-0.5-1.29-0.6-2H6z\\\"></path><g><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M10,4.88L5.5,8.25v7.25h4.03C9.51,15.34,9.5,15.17,9.5,15c0-2.87,2.2-5.22,5-5.47V8.25L10,4.88z\\\"></path></g><path d=\\\"M5.5,15.5V8.25L10,4.88l4.5,3.38v1.28C14.66,9.51,14.83,9.5,15,9.5c0.34,0,0.68,0.04,1,0.1V7.5L10,3L4,7.5V17h5.88 c-0.18-0.47-0.31-0.97-0.36-1.5H5.5z\\\"></path><g><path d=\\\"M15,11c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C19,12.79,17.21,11,15,11z M17,15.5h-1.5V17h-1v-1.5H13v-1h1.5 V13h1v1.5H17V15.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"task_alt\": {\n    \"name\": \"task_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,5.18L10.59,16.6l-4.24-4.24l1.41-1.41l2.83,2.83l10-10L22,5.18z M19.79,10.22C19.92,10.79,20,11.39,20,12 c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-4.42,3.58-8,8-8c1.58,0,3.04,0.46,4.28,1.25l1.44-1.44C16.1,2.67,14.13,2,12,2C6.48,2,2,6.48,2,12 c0,5.52,4.48,10,10,10s10-4.48,10-10c0-1.19-0.22-2.33-0.6-3.39L19.79,10.22z\\\"></path>\"\n      }\n    }\n  },\n  \"lock_open\": {\n    \"name\": \"lock_open\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 20h12V10H6v10zm6-7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h2c0-1.66 1.34-3 3-3s3 1.34 3 3v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"density_large\": {\n    \"name\": \"density_large\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"18\\\" x=\\\"3\\\" y=\\\"19\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"date_range\": {\n    \"name\": \"date_range\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8h14V6H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 11h2v2H7zm12-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2zm-4 3h2v2h-2zm-4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down\": {\n    \"name\": \"swipe_down\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66 c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.22,10l-4.15,0.01c-0.16-0.01-0.31,0.02-0.45,0.08l-0.59,0.26L13.2,6.25c-0.56-1.26-2.04-1.83-3.3-1.27 s-1.83,2.04-1.27,3.3l3.3,7.45l-1.87,0.39c-0.19,0.05-0.99,0.27-1.36,1.21L8,19.19l6.78,2.67c0.49,0.19,1.05,0.18,1.53-0.04 l5.99-2.65c0.89-0.4,1.37-1.38,1.13-2.32l-1.36-5.34C21.85,10.65,21.1,10.04,20.22,10z M21.49,17.34L15.5,20l-4.92-1.96l4.18-0.88 l-4.3-9.7c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25l2.5,5.65l1.61-0.71L20.13,12L21.49,17.34z M3.8,12.18 c-0.2-0.86-0.3-1.76-0.3-2.68c0-2.84,0.99-5.45,2.63-7.5L7.2,3.07C5.82,4.85,5,7.08,5,9.5c0,0.88,0.11,1.74,0.32,2.56l1.62-1.62 L8,11.5L4.5,15L1,11.5l1.06-1.06L3.8,12.18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66 c0.25-0.11,0.55,0,0.66,0.25l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.4,10.51l1.54-1.54l0.71,0.71L3.83,12.5L1,9.67l0.71-0.71l1.69,1.69C3.14,9.82,3,8.93,3,8c0-2.31,0.87-4.41,2.29-6 L6,2.71C4.75,4.12,4,5.97,4,8C4,8.88,4.14,9.72,4.4,10.51z M16.79,8.07L13.6,8l-0.91,0.41l-1.22-2.74 C11.02,4.65,9.84,4.2,8.83,4.64C7.82,5.09,7.36,6.27,7.81,7.28l2.23,5.03l-1.19,0.21C8.39,12.6,7.91,12.9,7.7,13.46L6.99,15.3 L13,17.63c0.37,0.14,0.78,0.13,1.15-0.03l4.81-2.13c0.68-0.3,1.04-1.06,0.84-1.78l-1.18-4.17C18.39,8.69,17.65,8.11,16.79,8.07z M18.35,14.09l-4.81,2.13l-4.62-1.78L9.1,14l3.09-0.54L9.18,6.68c-0.11-0.25,0-0.55,0.25-0.66c0.25-0.11,0.55,0,0.66,0.25 l1.82,4.11l1.96-0.87l2.84,0.05c0.22,0.01,0.4,0.16,0.46,0.36L18.35,14.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"extension\": {\n    \"name\": \"extension\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13h-2V7h-6V5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2H4l.01 2.12C5.76 9.8 7 11.51 7 13.5c0 1.99-1.25 3.7-3 4.38V20h2.12c.68-1.75 2.39-3 4.38-3 1.99 0 3.7 1.25 4.38 3H17v-6h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 11V7c0-1.1-.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S8 3.62 8 5H4c-1.1 0-1.99.9-1.99 2v3.8h.29c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-.3c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7v.3H17c1.1 0 2-.9 2-2v-4c1.38 0 2.5-1.12 2.5-2.5S20.38 11 19 11zm0 3h-2v6h-2.12c-.68-1.75-2.39-3-4.38-3-1.99 0-3.7 1.25-4.38 3H4v-2.12c1.75-.68 3-2.39 3-4.38 0-1.99-1.24-3.7-2.99-4.38L4 7h6V5c0-.28.22-.5.5-.5s.5.22.5.5v2h6v6h2c.28 0 .5.22.5.5s-.22.5-.5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"android\": {\n    \"name\": \"android\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17.6,9.48l1.84-3.18c0.16-0.31,0.04-0.69-0.26-0.85c-0.29-0.15-0.65-0.06-0.83,0.22l-1.88,3.24 c-2.86-1.21-6.08-1.21-8.94,0L5.65,5.67c-0.19-0.29-0.58-0.38-0.87-0.2C4.5,5.65,4.41,6.01,4.56,6.3L6.4,9.48 C3.3,11.25,1.28,14.44,1,18h22C22.72,14.44,20.7,11.25,17.6,9.48z M7,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25S8.25,13.31,8.25,14C8.25,14.69,7.69,15.25,7,15.25z M17,15.25c-0.69,0-1.25-0.56-1.25-1.25 c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C18.25,14.69,17.69,15.25,17,15.25z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g></g><g><path d=\\\"M14.36,8.14l1.57-2.72c0.14-0.24,0.06-0.54-0.18-0.68c-0.24-0.14-0.54-0.06-0.68,0.18l-1.6,2.78C12.4,7.25,11.23,7,10,7 S7.6,7.25,6.54,7.7l-1.6-2.78C4.8,4.68,4.49,4.6,4.25,4.74C4.01,4.87,3.93,5.18,4.07,5.42l1.57,2.72C3.15,9.52,1.39,12.04,1.06,15 h17.88C18.61,12.04,16.85,9.52,14.36,8.14z M6,13c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S6.55,13,6,13z M14,13 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S14.55,13,14,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bookmark_remove\": {\n    \"name\": \"bookmark_remove\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,17.97l0-7.07c-2.28-0.46-4-2.48-4-4.9c0-0.34,0.03-0.68,0.1-1L7,5v12.97l5-2.14L17,17.97z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,7h-6V5h6V7z M17,17.97l-5-2.14l-5,2.14V5l6.1,0c0.15-0.74,0.46-1.42,0.9-2L7,3C5.9,3,5,3.9,5,5v16l7-3l7,3l0-10.1 c-0.32,0.07-0.66,0.1-1,0.1c-0.34,0-0.68-0.03-1-0.1L17,17.97z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.5,14.78l-3.5-1.4l-3.5,1.4V4.5l4.53,0C11.01,4.66,11,4.83,11,5c0,1.68,1.03,3.12,2.5,3.71L13.5,14.78z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.75,4.25v1.5h4.5v-1.5H12.75z M15,17l-5-2l-5,2V4.5C5,3.67,5.67,3,6.5,3l5.04,0c-0.26,0.45-0.44,0.96-0.5,1.5l-4.53,0 v10.28l3.5-1.4l3.5,1.4V8.71h0C13.96,8.9,14.47,9,15,9V17z\\\"></path>\"\n      }\n    }\n  },\n  \"open_with\": {\n    \"name\": \"open_with\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"perm_data_setting\": {\n    \"name\": \"perm_data_setting\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.99 11.57H20V0L0 20h11.56v-2H4.83L17.99 4.83v6.74zm5.78 8.75l-1.07-.83c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83c.09-.08.12-.21.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83c-.02.16-.03.32-.03.49 0 .17.01.33.03.49l-1.06.83c-.09.08-.12.21-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73c.06-.11.03-.24-.06-.32zm-4.78.18c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_sidebar\": {\n    \"name\": \"view_sidebar\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z\\\"></path></g><g><path d=\\\"M2,4v16h20V4H2z M20,8.67h-2.5V6H20V8.67z M17.5,10.67H20v2.67h-2.5V10.67z M4,6h11.5v12H4V6z M17.5,18v-2.67H20V18H17.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,7.67h-2.5V5H16V7.67z M13.5,8.67H16v2.67h-2.5V8.67z M4,5h8.5v10H4V5z M13.5,15v-2.67H16V15H13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,4v12h14V4H3z M16,7.67h-2.5V5H16V7.67z M13.5,8.67H16v2.67h-2.5V8.67z M4,5h8.5v10H4V5z M13.5,15v-2.67H16V15H13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"article\": {\n    \"name\": \"article\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M5,5v14h14V5H5z M14,17H7v-2h7V17z M17,13H7v-2h10V13z M17,9H7V7h10V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z M17,13H7v-2h10 V13z M17,9H7V7h10V9z M14,17H7v-2h7V17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"label\": {\n    \"name\": \"label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 7H5v10h11l3.55-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z\\\"></path>\"\n      }\n    }\n  },\n  \"important_devices\": {\n    \"name\": \"important_devices\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13h5v7h-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM2 4h18v5h2V4c0-1.11-.9-2-2-2H2C.89 2 0 2.89 0 4v12c0 1.1.89 2 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4zm9 2l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z\\\"></path>\"\n      }\n    }\n  },\n  \"fingerprint\": {\n    \"name\": \"fingerprint\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1-1.4-1.39-2.17-3.24-2.17-5.22 0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29-.49-1.31-.73-2.61-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z\\\"></path>\"\n      }\n    }\n  },\n  \"label_important_outline\": {\n    \"name\": \"label_important_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 19H3l4.5-7L3 5h12c.65 0 1.26.31 1.63.84L21 12l-4.37 6.16c-.37.52-.98.84-1.63.84zm-8.5-2H15l3.5-5L15 7H6.5l3.5 5-3.5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"thumb_up_off_alt\": {\n    \"name\": \"thumb_up_off_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13.34,4.66 9,9 9,19 18,19 21,12 21,10 12.23,10\\\"></polygon><path d=\\\"M21,8h-6.31l0.95-4.57l0.03-0.32c0-0.41-0.17-0.79-0.44-1.06L14.17,1L7.59,7.59C7.22,7.95,7,8.45,7,9v10c0,1.1,0.9,2,2,2 h9c0.83,0,1.54-0.5,1.84-1.22l3.02-7.05C22.95,12.5,23,12.26,23,12v-2C23,8.9,22.1,8,21,8z M21,12l-3,7H9V9l4.34-4.34L12.23,10H21 V12z\\\"></path><rect height=\\\"12\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"9\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"logout\": {\n    \"name\": \"logout\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><path d=\\\"M5,5h7V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h7v-2H5V5z M21,12l-4-4v3H9v2h8v3L21,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"work_outline\": {\n    \"name\": \"work_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z\\\"></path>\"\n      }\n    }\n  },\n  \"unpublished\": {\n    \"name\": \"unpublished\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.59,10.76l2.65-2.65l1.41,1.41l-2.65,2.65l3.88,3.88C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8 c-1.48,0-2.86,0.41-4.06,1.12L13.59,10.76z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41L17.66,9.53z M16.06,18.88l-3.88-3.88 l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8 C13.48,20,14.86,19.59,16.06,18.88z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.94,5.12L6.49,3.66C8.07,2.61,9.96,2,12,2c5.52,0,10,4.48,10,10c0,2.04-0.61,3.93-1.66,5.51l-1.46-1.46 C19.59,14.86,20,13.48,20,12c0-4.41-3.59-8-8-8C10.52,4,9.14,4.41,7.94,5.12z M17.66,9.53l-1.41-1.41l-2.65,2.65l1.41,1.41 L17.66,9.53z M19.78,22.61l-2.27-2.27C15.93,21.39,14.04,22,12,22C6.48,22,2,17.52,2,12c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22 l1.41-1.41l18.38,18.38L19.78,22.61z M16.06,18.88l-3.88-3.88l-1.59,1.59l-4.24-4.24l1.41-1.41l2.83,2.83l0.18-0.18L5.12,7.94 C4.41,9.14,4,10.52,4,12c0,4.41,3.59,8,8,8C13.48,20,14.86,19.59,16.06,18.88z\\\"></path>\"\n      }\n    }\n  },\n  \"sensors_off\": {\n    \"name\": \"sensors_off\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.14,10.96C8.05,11.29,8,11.64,8,12c0,1.1,0.45,2.1,1.17,2.83l-1.42,1.42C6.67,15.16,6,13.66,6,12 c0-0.93,0.21-1.8,0.58-2.59L5.11,7.94C4.4,9.13,4,10.52,4,12c0,2.21,0.9,4.21,2.35,5.65l-1.42,1.42C3.12,17.26,2,14.76,2,12 c0-2.04,0.61-3.93,1.66-5.51L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L8.14,10.96z M17.42,14.59C17.79,13.8,18,12.93,18,12 c0-1.66-0.67-3.16-1.76-4.24l-1.42,1.42C15.55,9.9,16,10.9,16,12c0,0.36-0.05,0.71-0.14,1.04L17.42,14.59z M20,12 c0,1.48-0.4,2.87-1.11,4.06l1.45,1.45C21.39,15.93,22,14.04,22,12c0-2.76-1.12-5.26-2.93-7.07l-1.42,1.42C19.1,7.79,20,9.79,20,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.71,8.84C6.58,9.2,6.5,9.59,6.5,10c0,0.96,0.39,1.84,1.03,2.47l-1.06,1.06C5.56,12.63,5,11.38,5,10 c0-0.83,0.22-1.61,0.58-2.3L4.47,6.59C3.86,7.59,3.5,8.75,3.5,10c0,1.79,0.73,3.42,1.91,4.59l-1.06,1.06C2.9,14.21,2,12.21,2,10 c0-1.67,0.51-3.21,1.38-4.5L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L6.71,8.84z M14.59,5.41l1.06-1.06C17.1,5.79,18,7.79,18,10 c0,1.67-0.51,3.22-1.38,4.5l-1.09-1.09c0.61-0.99,0.97-2.16,0.97-3.41C16.5,8.21,15.77,6.58,14.59,5.41z M12.47,7.53l1.06-1.06 C14.44,7.37,15,8.62,15,10c0,0.83-0.2,1.62-0.57,2.31l-1.14-1.14c0.13-0.37,0.2-0.76,0.2-1.18C13.5,9.04,13.11,8.16,12.47,7.53z\\\"></path>\"\n      }\n    }\n  },\n  \"send_and_archive\": {\n    \"name\": \"send_and_archive\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M5,7.01v3.49l6,1.5l-6,1.5v3.49l5.39-2.27l0,0c0.6-1.74,1.86-3.16,3.48-3.97c0,0,0,0,0,0L5,7.01z\\\"></path></g><g><path d=\\\"M11,12l-6-1.5V7.01l8.87,3.73c0.94-0.47,2-0.75,3.13-0.75c0.1,0,0.19,0.01,0.28,0.01L3,4v16l7-2.95c0-0.02,0-0.03,0-0.05 c0-0.8,0.14-1.56,0.39-2.28L5,16.99V13.5L11,12z\\\"></path></g><g><path d=\\\"M17,12c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S19.76,12,17,12z M17,20l-3-3h2.5v-3h1v3H20L17,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><g opacity=\\\".3\\\"><path d=\\\"M4.5,6.22V8.5L9,10l-4.5,1.5v2.28l4.37-1.75c0,0,0,0,0,0c0.5-1.31,1.48-2.37,2.74-2.98c0,0,0,0,0,0L4.5,6.22z\\\"></path></g><g><path d=\\\"M9,10L4.5,8.5V6.22l7.1,2.84C12.33,8.7,13.14,8.5,14,8.5c0.1,0,0.19,0.01,0.29,0.01L3,4v12l5.51-2.2 c0.02-0.62,0.15-1.21,0.36-1.76L4.5,13.78V11.5L9,10z\\\"></path></g></g><g><path d=\\\"M14,10c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C18,11.79,16.21,10,14,10z M14,16l-2-2h1.5v-2h1v2H16L14,16z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"network_ping\": {\n    \"name\": \"network_ping\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,14.67L3.41,6.09L2,7.5l8.5,8.5H4v2h16v-2h-6.5l5.15-5.15C18.91,10.95,19.2,11,19.5,11c1.38,0,2.5-1.12,2.5-2.5 S20.88,6,19.5,6S17,7.12,17,8.5c0,0.35,0.07,0.67,0.2,0.97L12,14.67z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M4,13l0,1.5h12V13h-5l4.18-4.18C15.43,8.94,15.71,9,16,9c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 c0,0.26,0.05,0.51,0.14,0.74L10,11.88L3.06,4.94L2,6l7,7H4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_as_unread\": {\n    \"name\": \"mark_as_unread\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13.5,13.33 20,10 7,10\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"7,12 7,19 20,19 20,12 13.5,15.33\\\"></polygon><path d=\\\"M16.23,7h2.6c-0.06-0.47-0.36-0.94-0.79-1.17L10.5,2L2.8,5.83C2.32,6.09,2,6.64,2,7.17V15c0,1.1,0.9,2,2,2V7.4L10.5,4 L16.23,7z\\\"></path><path d=\\\"M20,8H7c-1.1,0-2,0.9-2,2v9c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2v-9C22,8.9,21.1,8,20,8z M20,19H7v-7l6.5,3.33L20,12V19z M13.5,13.33L7,10h13L13.5,13.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><g><polygon opacity=\\\".3\\\" points=\\\"6.5,10.22 6.5,15.5 16.5,15.5 16.5,10.22 11.5,13\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"11.5,11.28 16.5,8.5 6.5,8.5\\\"></polygon><path d=\\\"M12.5,5.5h2.42c-0.13-0.39-0.41-0.72-0.79-0.9L8.5,2L2.87,4.6C2.34,4.84,2,5.37,2,5.96v6.54C2,13.33,2.67,14,3.5,14V5.96 l5-2.31L12.5,5.5z\\\"></path><path d=\\\"M16.5,7h-10C5.67,7,5,7.67,5,8.5v7C5,16.33,5.67,17,6.5,17h10c0.83,0,1.5-0.67,1.5-1.5v-7C18,7.67,17.33,7,16.5,7z M16.5,15.5h-10v-5.28l5,2.78l5-2.78V15.5z M11.5,11.28l-5-2.78h10L11.5,11.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bug_report\": {\n    \"name\": \"bug_report\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.83 9.65L15.46 9c-.3-.53-.71-.96-1.21-1.31l-.61-.42-.68-.16C12.63 7.04 12.32 7 12 7c-.31 0-.63.04-.94.11l-.74.18-.57.4c-.49.34-.91.79-1.21 1.31l-.37.65-.1.65c-.04.23-.07.48-.07.7v4c0 .22.03.47.07.7l.1.65.37.65c.72 1.24 2.04 2 3.46 2s2.74-.77 3.46-2l.37-.64.1-.65c.04-.24.07-.49.07-.71v-4c0-.22-.03-.47-.07-.7l-.1-.65zM14 16h-4v-2h4v2zm0-4h-4v-2h4v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-4 4v3c0 .22-.03.47-.07.7l-.1.65-.37.65c-.72 1.24-2.04 2-3.46 2s-2.74-.77-3.46-2l-.37-.64-.1-.65C8.03 15.47 8 15.22 8 15v-4c0-.22.03-.47.07-.7l.1-.65.37-.65c.3-.52.72-.97 1.21-1.31l.57-.39.74-.18c.31-.08.63-.12.94-.12.32 0 .63.04.95.12l.68.16.61.42c.5.34.91.78 1.21 1.31l.38.65.1.65c.04.22.07.47.07.69v1zm-6 2h4v2h-4zm0-4h4v2h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"check_circle_outline\": {\n    \"name\": \"check_circle_outline\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"savings\": {\n    \"name\": \"savings\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M19,9.5L15.5,6c0-0.65,0.09-1.29,0.26-1.91C14.79,4.34,14,5.06,13.67,6L7.5,6C5.57,6,4,7.57,4,9.5 c0,1.88,1.22,6.65,2.01,9.5L8,19v-2h6v2l2.01,0l1.55-5.15L20,13.03V9.5H19z M13,9H8V7h5V9z M16,11c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C17,10.55,16.55,11,16,11z\\\"></path></g><g><path d=\\\"M15,10c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,10.55,15,10z M8,9h5V7H8V9z M22,7.5v6.97l-2.82,0.94L17.5,21 L12,21v-2h-2v2l-5.5,0C4.5,21,2,12.54,2,9.5S4.46,4,7.5,4l5,0c0.91-1.21,2.36-2,4-2C17.33,2,18,2.67,18,3.5 c0,0.21-0.04,0.4-0.12,0.58c-0.14,0.34-0.26,0.73-0.32,1.15l2.27,2.27H22z M20,9.5h-1L15.5,6c0-0.65,0.09-1.29,0.26-1.91 C14.79,4.34,14,5.06,13.67,6L7.5,6C5.57,6,4,7.57,4,9.5c0,1.88,1.22,6.65,2.01,9.5L8,19v-2h6v2l2.01,0l1.55-5.15L20,13.03V9.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.88,8L13,5.12c0-0.77,0.11-1.17,0.21-1.52C12.33,3.85,11.73,4.43,11.4,5H6.5c-1.65,0-3,1.35-3,3 c0,1.46,0.99,5.26,1.63,7.5H7V14h4.5v1.5h1.86l1.19-4.27l1.95-0.43V8H15.88z M11,7.5H7V6h4V7.5z M13.25,9 c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25C14,8.66,13.66,9,13.25,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.21,3.61C13.11,3.95,13,4.35,13,5.12L15.88,8h0.62v2.8l-1.95,0.43l-1.19,4.27H11.5V14H7v1.5H5.13 C4.49,13.26,3.5,9.46,3.5,8c0-1.65,1.35-3,3-3l4.9,0C11.73,4.43,12.33,3.85,13.21,3.61z M14,2c-2.17,0-3.35,1.5-3.35,1.5H6.5 C4.05,3.5,2,5.47,2,8c0,2.33,2,9,2,9h4.5v-1.5H10V17h4.5l1.25-4.5L18,12V6.5h-1.5l-2-2C14.5,4.14,15,3.52,15,3C15,2.45,14.55,2,14,2 L14,2z M11,7.5H7V6h4V7.5z M13.25,9c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75S14,7.84,14,8.25 C14,8.66,13.66,9,13.25,9z\\\"></path>\"\n      }\n    }\n  },\n  \"commit\": {\n    \"name\": \"commit\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.9,11L16.9,11c-0.46-2.28-2.48-4-4.9-4s-4.44,1.72-4.9,4h0H2v2h5.1h0c0.46,2.28,2.48,4,4.9,4s4.44-1.72,4.9-4h0H22v-2 H16.9z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,15,12,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.93,9.25C13.58,7.4,11.95,6,10,6S6.42,7.4,6.07,9.25H2v1.5h4.07C6.42,12.6,8.05,14,10,14s3.58-1.4,3.93-3.25H18v-1.5 H13.93z M10,12.5c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C12.5,11.38,11.38,12.5,10,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"history\": {\n    \"name\": \"history\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 3c-4.97 0-9 4.03-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42C8.27 19.99 10.51 21 13 21c4.97 0 9-4.03 9-9s-4.03-9-9-9zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z\\\"></path>\"\n      }\n    }\n  },\n  \"assured_workload\": {\n    \"name\": \"assured_workload\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"6.47,6 17.53,6 12,3.24\\\"></polygon><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"5\\\" y=\\\"10\\\"></rect><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"10\\\"></rect><path d=\\\"M22,6L12,1L2,6v2h20V6z M6.47,6L12,3.24L17.53,6H6.47z\\\"></path><path d=\\\"M2,19v2h12.4c-0.21-0.64-0.32-1.31-0.36-2H2z\\\"></path><polygon points=\\\"19,12.26 19,10 17,10 17,13.26\\\"></polygon><path d=\\\"M20,14l-4,2v2.55c0,2.52,1.71,4.88,4,5.45c2.29-0.57,4-2.93,4-5.45V16L20,14z M19.28,21l-2.03-2.03l1.06-1.06l0.97,0.97 l2.41-2.38l1.06,1.06L19.28,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"4.35,5.5 15.65,5.5 10,2.68\\\"></polygon><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"8\\\"></rect><rect height=\\\"6.5\\\" width=\\\"1.5\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><path d=\\\"M18,5l-8-4L2,5v2h16V5z M4.35,5.5L10,2.68l5.65,2.82H4.35z\\\"></path><path d=\\\"M2,15.5V17h10.66c-0.05-0.22-0.16-0.71-0.16-1.5H2z\\\"></path><polygon points=\\\"16,10.82 16,8 14.5,8 14.5,11.57\\\"></polygon><path d=\\\"M17,12l-3,1.5v2.14c0,2.02,1.28,3.91,3,4.36c1.72-0.46,3-2.35,3-4.36V13.5L17,12z M16.43,17.5l-1.55-1.54l0.71-0.71 l0.82,0.81L18.39,14l0.73,0.68L16.43,17.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"perm_identity\": {\n    \"name\": \"perm_identity\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M12 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z\\\"></path>\"\n      }\n    }\n  },\n  \"install_desktop\": {\n    \"name\": \"install_desktop\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"14.83,9 14.83,9 16,10.17\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"4,17 20,17 20,13.83 17,16.83 9.17,9 13,5.17 13,5 4,5\\\"></polygon><path d=\\\"M20,17H4V5h9V3H4C2.89,3,2,3.89,2,5v12c0,1.1,0.89,2,2,2h4v2h8v-2h4c1.1,0,2-0.9,2-2v-5.17l-2,2V17z\\\"></path><polygon points=\\\"18,10.17 18,3 16,3 16,10.17 13.41,7.59 12,9 17,14 22,9 20.59,7.59\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"3.5,13.5 16.5,13.5 16.5,11.11 14.48,13.12 8.88,7.52 11.89,4.5 3.5,4.5\\\"></polygon><g><path d=\\\"M16.5,13.5h-13v-9h8.39L12,4.39V3H3.5C2.67,3,2,3.67,2,4.5v9C2,14.33,2.67,15,3.5,15H7v2h6v-2h3.5 c0.83,0,1.5-0.67,1.5-1.5V9.61l-1.5,1.5V13.5z\\\"></path></g><polygon points=\\\"15.25,8.11 15.25,3 13.75,3 13.75,8.14 12.06,6.45 11,7.52 14.48,11 18,7.48 16.94,6.42\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"production_quantity_limits\": {\n    \"name\": \"production_quantity_limits\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,10h-2V8h2V10z M13,6h-2V1h2V6z M7,18c-1.1,0-1.99,0.9-1.99,2S5.9,22,7,22s2-0.9,2-2S8.1,18,7,18z M17,18 c-1.1,0-1.99,0.9-1.99,2s0.89,2,1.99,2s2-0.9,2-2S18.1,18,17,18z M8.1,13h7.45c0.75,0,1.41-0.41,1.75-1.03L21,4.96L19.25,4l-3.7,7 H8.53L4.27,2H1v2h2l3.6,7.59l-1.35,2.44C4.52,15.37,5.48,17,7,17h12v-2H7L8.1,13z\\\"></path>\"\n      }\n    }\n  },\n  \"shopping_basket\": {\n    \"name\": \"shopping_basket\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.31 11l2.2 8.01L18.5 19l2.2-8H3.31zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 9h-4.79l-4.38-6.56c-.19-.28-.51-.42-.83-.42s-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1zM12 4.8L14.8 9H9.2L12 4.8zM18.5 19l-12.99.01L3.31 11H20.7l-2.2 8zM12 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"space_dashboard\": {\n    \"name\": \"space_dashboard\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,19V5h6v14H5z M19,19h-6v-7h6V19z M19,10h-6V5h6V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19V5h6v14H5z M19,19h-6v-7h6V19z M19,10h-6V5h6V10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.5,4.5v4h-4.75v-4H15.5z M4.5,15.5v-11h4.75v11H4.5z M15.5,15.5h-4.75V10h4.75V15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,4.5C17,3.67,16.33,3,15.5,3h-11C3.67,3,3,3.67,3,4.5v10.94C3,16.3,3.7,17,4.56,17H15.5c0.83,0,1.5-0.67,1.5-1.5V4.5z M15.5,4.5v4h-4.75v-4H15.5z M4.5,15.5v-11h4.75v11H4.5z M15.5,15.5h-4.75V10h4.75V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"app_blocking\": {\n    \"name\": \"app_blocking\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M18,8c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C22,9.79,20.21,8,18,8z M15.5,12c0-1.38,1.12-2.5,2.5-2.5 c0.42,0,0.8,0.11,1.15,0.29l-3.36,3.36C15.61,12.8,15.5,12.42,15.5,12z M18,14.5c-0.42,0-0.8-0.11-1.15-0.29l3.36-3.36 c0.18,0.35,0.29,0.73,0.29,1.15C20.5,13.38,19.38,14.5,18,14.5z\\\"></path><path d=\\\"M17,18H7V6h10v1h2V6V5V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2v-2v-1v-1h-2V18z M7,3 h10v1H7V3z M17,21H7v-1h10V21z\\\"></path></g></g><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect></g>\"\n      }\n    }\n  },\n  \"cancel_schedule_send\": {\n    \"name\": \"cancel_schedule_send\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,17.97l6.1-2.61c0.02-0.14,0.04-0.29,0.07-0.43L3,15.75V17.97z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.5,11c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S19.53,11,16.5,11z M18.97,18.27 l-0.71,0.71l-1.77-1.77l-1.77,1.77l-0.71-0.71l1.77-1.77l-1.77-1.77l0.71-0.71l1.77,1.77l1.77-1.77l0.71,0.71l-1.77,1.77 L18.97,18.27z\\\" opacity=\\\".3\\\"></path><polygon opacity=\\\".3\\\" points=\\\"3,8.25 10.52,9.25 3.01,6.03\\\"></polygon><path d=\\\"M16.5,9c-0.42,0-0.83,0.04-1.24,0.11c0,0,0,0,0,0L1.01,3L1,10l10.06,1.34c-0.42,0.44-0.78,0.93-1.09,1.46L1,14l0.01,7 l8.07-3.46c0,0,0,0,0,0C9.59,21.19,12.71,24,16.5,24c4.14,0,7.5-3.36,7.5-7.5S20.64,9,16.5,9z M3,8.25l0.01-2.22l7.51,3.22L3,8.25 z M9.1,15.36L3,17.97v-2.22l6.17-0.82C9.14,15.07,9.12,15.21,9.1,15.36z M16.5,22c-3.03,0-5.5-2.47-5.5-5.5s2.47-5.5,5.5-5.5 s5.5,2.47,5.5,5.5S19.53,22,16.5,22z\\\"></path><polygon points=\\\"18.27,14.03 16.5,15.79 14.73,14.03 14.03,14.73 15.79,16.5 14.03,18.27 14.73,18.97 16.5,17.21 18.27,18.97 18.97,18.27 17.21,16.5 18.97,14.73\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><polygon points=\\\"15.41,11.88 14,13.29 12.59,11.88 11.88,12.59 13.29,14 11.88,15.41 12.59,16.12 14,14.71 15.41,16.12 16.12,15.41 14.71,14 16.12,12.59\\\"></polygon><g><path d=\\\"M1.5,11.94l8-1.09c-0.14,0.2-0.27,0.41-0.38,0.63l0.29-0.61L1.5,11.94v4.3l7.06-3.09l0.05-0.25 c0.02-0.08,0.03-0.16,0.05-0.23C8.56,13.09,8.5,13.54,8.5,14v-0.76l-0.7,0.24l-6.3,2.76V11.94z M19.5,14c0-3.03-2.47-5.5-5.5-5.5 C17.03,8.5,19.5,10.97,19.5,14z M10.9,9.35L1.5,8.06v-4.3v4.3l9.54,1.3c-0.29,0.18-0.55,0.39-0.8,0.62L10.9,9.35z M12.54,8.59 l-5.1-2.23l5.25,2.3l0.03-0.01c-0.32,0.08-0.64,0.18-0.93,0.32L12.54,8.59z\\\"></path><path d=\\\"M1,3v5.5l8.82,1.2c-0.22,0.21-0.41,0.44-0.59,0.68L1,11.5V17l7-3.06c0,0.02,0,0.04,0,0.06c0,3.31,2.69,6,6,6s6-2.69,6-6 s-2.69-6-6-6c-0.43,0-0.85,0.05-1.26,0.14L1,3L1,3z M10.94,8.85L2,7.63v-3.1l9.35,4.09C11.21,8.69,11.07,8.77,10.94,8.85 L10.94,8.85z M14,19c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5S16.76,19,14,19L14,19z M2,15.47v-3.1l6.56-0.89 c-0.19,0.42-0.35,0.85-0.44,1.31L2,15.47L2,15.47z\\\"></path></g><g opacity=\\\".3\\\"><polygon points=\\\"2.5,7.19 2.5,5.29 8.8,8.05\\\"></polygon><path d=\\\"M3,6.06l2.31,1.01L3,6.75V6.06 M2,4.53v3.1l8.94,1.22c0.13-0.08,0.27-0.16,0.41-0.22L2,4.53L2,4.53z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M2.5,12.81l5.29-0.72c-0.04,0.12-0.07,0.23-0.1,0.35L2.5,14.71V12.81z\\\"></path><path d=\\\"M5.31,12.93L3,13.94v-0.7L5.31,12.93 M8.56,11.48L2,12.37v3.1l6.12-2.68C8.22,12.33,8.37,11.89,8.56,11.48L8.56,11.48z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M14,18.5c-2.48,0-4.5-2.02-4.5-4.5s2.02-4.5,4.5-4.5s4.5,2.02,4.5,4.5S16.48,18.5,14,18.5z M15.41,16.83l1.41-1.41 L15.41,14l1.41-1.41l-1.41-1.41L14,12.59l-1.41-1.41l-1.41,1.41L12.59,14l-1.41,1.41l1.41,1.41L14,15.41L15.41,16.83z\\\"></path><path d=\\\"M14,10c2.21,0,4,1.79,4,4s-1.79,4-4,4s-4-1.79-4-4S11.79,10,14,10 M14,11.88l-0.71-0.71l-0.71-0.71l-0.71,0.71l-0.71,0.71 l-0.71,0.71l0.71,0.71L11.88,14l-0.71,0.71l-0.71,0.71l0.71,0.71l0.71,0.71l0.71,0.71l0.71-0.71L14,16.12l0.71,0.71l0.71,0.71 l0.71-0.71l0.71-0.71l0.71-0.71l-0.71-0.71L16.12,14l0.71-0.71l0.71-0.71l-0.71-0.71l-0.71-0.71l-0.71-0.71l-0.71,0.71L14,11.88 M14,9c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S16.76,9,14,9L14,9z M14,13.29l1.41-1.41l0.71,0.71L14.71,14l1.41,1.41l-0.71,0.71 L14,14.71l-1.41,1.41l-0.71-0.71L13.29,14l-1.41-1.41l0.71-0.71L14,13.29L14,13.29z\\\"></path></g>\"\n      }\n    }\n  },\n  \"assignment_returned\": {\n    \"name\": \"assignment_returned\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm5-7V8h4v4h3l-5 5-5-5h3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 12h-3V8h-4v4H7l5 5zm2-9h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_right_alt\": {\n    \"name\": \"arrow_right_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z\\\"></path>\"\n      }\n    }\n  },\n  \"rocket_launch\": {\n    \"name\": \"rocket_launch\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M6.71,18.71c-0.28,0.28-2.17,0.76-2.17,0.76s0.47-1.88,0.76-2.17C5.47,17.11,5.72,17,6,17c0.55,0,1,0.45,1,1 C7,18.28,6.89,18.53,6.71,18.71z M7.41,10.83L5.5,10.01l1.97-1.97l1.44,0.29C8.34,9.16,7.83,10.03,7.41,10.83z M13.99,18.5 l-0.82-1.91c0.8-0.42,1.67-0.93,2.49-1.5l0.29,1.44L13.99,18.5z M19.99,4.01c0,0-3.55-0.69-8.23,3.99 c-1.32,1.32-2.4,3.38-2.73,4.04l2.93,2.93c0.65-0.32,2.71-1.4,4.04-2.73C20.68,7.56,19.99,4.01,19.99,4.01z M15,11 c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C17,10.1,16.1,11,15,11z\\\"></path></g><g><path d=\\\"M6,15c-0.83,0-1.58,0.34-2.12,0.88C2.7,17.06,2,22,2,22s4.94-0.7,6.12-1.88C8.66,19.58,9,18.83,9,18C9,16.34,7.66,15,6,15 z M6.71,18.71c-0.28,0.28-2.17,0.76-2.17,0.76s0.47-1.88,0.76-2.17C5.47,17.11,5.72,17,6,17c0.55,0,1,0.45,1,1 C7,18.28,6.89,18.53,6.71,18.71z M17.42,13.65L17.42,13.65c6.36-6.36,4.24-11.31,4.24-11.31s-4.95-2.12-11.31,4.24l-2.49-0.5 C7.21,5.95,6.53,6.16,6.05,6.63L2,10.69l5,2.14L11.17,17l2.14,5l4.05-4.05c0.47-0.47,0.68-1.15,0.55-1.81L17.42,13.65z M7.41,10.83L5.5,10.01l1.97-1.97l1.44,0.29C8.34,9.16,7.83,10.03,7.41,10.83z M13.99,18.5l-0.82-1.91 c0.8-0.42,1.67-0.93,2.49-1.5l0.29,1.44L13.99,18.5z M16,12.24c-1.32,1.32-3.38,2.4-4.04,2.73l-2.93-2.93 c0.32-0.65,1.4-2.71,2.73-4.04c4.68-4.68,8.23-3.99,8.23-3.99S20.68,7.56,16,12.24z M15,11c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2 S13.9,11,15,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M16.5,3.5C15.33,3.46,13,3.82,10.2,6.62C9.18,7.64,8.37,9.06,7.9,9.97l2.12,2.12c0.91-0.46,2.34-1.27,3.36-2.3 C16.18,7,16.54,4.67,16.5,3.5z M12.5,9C11.67,9,11,8.33,11,7.5C11,6.68,11.67,6,12.5,6S14,6.68,14,7.5C14,8.33,13.32,9,12.5,9z M7.99,6.92L6.86,6.78L5.02,8.61l1.62,0.54C6.97,8.52,7.43,7.71,7.99,6.92z M10.85,13.36l0.54,1.62l1.83-1.83l-0.14-1.14 C12.29,12.57,11.48,13.03,10.85,13.36z M5.78,15.28c-0.44,0.44-1.87,0.81-1.87,0.81s0.37-1.43,0.81-1.87 c0.29-0.29,0.77-0.29,1.06,0S6.07,14.99,5.78,15.28z\\\"></path></g><g><path d=\\\"M14.45,10.86l0.26,2.1c0.06,0.46-0.1,0.92-0.43,1.25l-3.55,3.55l-1.41-4.24l-2.83-2.83L2.25,9.27l3.55-3.55 c0.33-0.33,0.79-0.49,1.25-0.43l2.1,0.26C13.92,0.78,17.8,2.2,17.8,2.2C17.8,2.2,19.22,6.08,14.45,10.86z M10.2,6.62 C9.18,7.64,8.37,9.06,7.9,9.97l2.12,2.12c0.91-0.46,2.34-1.27,3.36-2.3C16.18,7,16.54,4.67,16.5,3.5C15.33,3.46,13,3.82,10.2,6.62 z M14,7.5C14,6.68,13.32,6,12.5,6C11.67,6,11,6.68,11,7.5S11.67,9,12.5,9C13.32,9,14,8.33,14,7.5z M7.99,6.92L6.86,6.78L5.02,8.61 l1.62,0.54C6.97,8.52,7.43,7.71,7.99,6.92z M10.85,13.36l0.54,1.62l1.83-1.83l-0.14-1.14C12.29,12.57,11.48,13.03,10.85,13.36z M5.25,12.5c-0.62,0-1.18,0.25-1.59,0.66C2.44,14.38,2,18,2,18s3.62-0.44,4.84-1.66c0.41-0.41,0.66-0.97,0.66-1.59 C7.5,13.51,6.49,12.5,5.25,12.5z M5.78,15.28c-0.44,0.44-1.87,0.81-1.87,0.81s0.37-1.43,0.81-1.87c0.29-0.29,0.77-0.29,1.06,0 S6.07,14.99,5.78,15.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"query_builder\": {\n    \"name\": \"query_builder\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.15L11 13V7h1.5v5.25l4.5 2.67-.75 1.23z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"new_label\": {\n    \"name\": \"new_label\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"12,17 12,13 9,13 9,10 5,10 5,7 15,7 18.55,12 15,17\\\"></polygon><path d=\\\"M21,12l-4.37,6.16C16.26,18.68,15.65,19,15,19h-3l0-2h3l3.55-5L15,7H5v3H3V7c0-1.1,0.9-2,2-2h10c0.65,0,1.26,0.31,1.63,0.84 L21,12z M10,15H7v-3H5v3H2v2h3v3h2v-3h3V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"5.5,6.5 12.28,6.5 15.08,10 12.28,13.5 10.5,13.5 10.5,10.5 8.5,10.5 8.5,8.5 5.5,8.5\\\"></polygon><path d=\\\"M17,10l-3.55,4.44C13.17,14.79,12.73,15,12.28,15H10.5v-1.5h1.78l2.8-3.5l-2.8-3.5H5.5v2H4v-2C4,5.67,4.67,5,5.5,5h6.78 c0.46,0,0.89,0.21,1.17,0.56L17,10z M9,12H7v-2H5.5v2h-2v1.5h2v2H7v-2h2V12z\\\"></path>\"\n      }\n    }\n  },\n  \"exit_to_app\": {\n    \"name\": \"exit_to_app\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"assignment_late\": {\n    \"name\": \"assignment_late\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5v14h14V5H5zm8 12h-2v-2h2v2zm0-4h-2V7h2v6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 15h2v2h-2zm0-8h2v6h-2zm8-4h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-.14 0-.27.01-.4.04-.39.08-.74.28-1.01.55-.18.18-.33.4-.43.64S3 4.72 3 5v14c0 .27.06.54.16.78s.25.45.43.64c.27.27.62.47 1.01.55.13.02.26.03.4.03h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"swipe_down_alt\": {\n    \"name\": \"swipe_down_alt\",\n    \"keywords\": [\n      \"action\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"12\\\" cy=\\\"9\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M13,13.9c2.28-0.46,4-2.48,4-4.9c0-2.76-2.24-5-5-5S7,6.24,7,9c0,2.42,1.72,4.44,4,4.9v4.27l-1.59-1.59L8,18l4,4l4-4 l-1.41-1.41L13,18.17V13.9z M15,9c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,7.34,15,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"10\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><path d=\\\"M10.75,11.93C12.6,11.58,14,9.95,14,8c0-2.21-1.79-4-4-4C7.79,4,6,5.79,6,8c0,1.95,1.4,3.58,3.25,3.93l0,3.2l-1.19-1.19 L7,15l3,3l3-3l-1.06-1.06l-1.19,1.19L10.75,11.93z M12.5,8c0,1.38-1.12,2.5-2.5,2.5c-1.38,0-2.5-1.12-2.5-2.5S8.62,5.5,10,5.5 C11.38,5.5,12.5,6.62,12.5,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sensor_window\": {\n    \"name\": \"sensor_window\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,4v7h-4v-1h-4v1H6V4H18z M6,20v-7h12v7H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,4v7h-4v-1h-4v1H6V4H18z M6,20 v-7h12v7H6z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,16H5v-6h10V16z M15,9h-3.5V8h-3v1H5V4h10V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,3H5C4.45,3,4,3.45,4,4v12c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V4C16,3.45,15.55,3,15,3z M15,16H5v-6h10V16z M15,9 h-3.5V8h-3v1H5V4h10V9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"energy_savings_leaf\": {\n    \"name\": \"energy_savings_leaf\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M7.1,7.01C5.74,8.32,5,10.1,5,12c0,3.86,3.14,7,7,7c1.87,0,3.63-0.73,4.95-2.05C18.27,15.63,19,13.87,19,12V5h-7 C10.16,5,8.42,5.71,7.1,7.01z M13.88,7.12c0.14,0.14,0.16,0.36,0.04,0.52l-2.44,3.33l4.05,0.4c0.44,0.04,0.63,0.59,0.3,0.89 l-5.16,4.63c-0.16,0.15-0.41,0.14-0.56-0.01c-0.14-0.14-0.16-0.36-0.04-0.52l2.44-3.33l-4.05-0.4c-0.44-0.04-0.63-0.59-0.3-0.89 l5.16-4.63C13.48,6.96,13.73,6.97,13.88,7.12z\\\"></path></g><path d=\\\"M12,3C12,3,12,3,12,3c-4.8,0-9,3.86-9,9c0,2.12,0.74,4.07,1.97,5.61L3,19.59L4.41,21l1.97-1.97C7.93,20.26,9.88,21,12,21 c2.3,0,4.61-0.88,6.36-2.64C20.12,16.61,21,14.3,21,12V3H12z M19,12c0,1.87-0.73,3.63-2.05,4.95C15.63,18.27,13.87,19,12,19 c-3.86,0-7-3.14-7-7c0-1.9,0.74-3.68,2.1-4.99C8.42,5.71,10.16,5,12,5h7V12z\\\"></path><path d=\\\"M8.46,12.63l4.05,0.4l-2.44,3.33c-0.11,0.16-0.1,0.38,0.04,0.52c0.15,0.15,0.4,0.16,0.56,0.01l5.16-4.63 c0.33-0.3,0.15-0.85-0.3-0.89l-4.05-0.4l2.44-3.33c0.11-0.16,0.1-0.38-0.04-0.52c-0.15-0.15-0.4-0.16-0.56-0.01l-5.16,4.63 C7.84,12.04,8.02,12.59,8.46,12.63z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.15,6.08C5.08,7.11,4.5,8.5,4.5,10c0,3.03,2.47,5.5,5.5,5.5c1.47,0,2.85-0.57,3.89-1.61 c1.04-1.04,1.61-2.42,1.61-3.89V4.5H10C8.56,4.5,7.19,5.06,6.15,6.08z M11.57,6.12c0.14,0.14,0.15,0.37,0.03,0.52L9.58,9.22 l2.93,0.18c0.45,0.03,0.65,0.58,0.32,0.9l-3.86,3.59c-0.16,0.15-0.4,0.14-0.55-0.01c-0.14-0.14-0.15-0.37-0.03-0.52l2.02-2.58 L7.49,10.6c-0.45-0.03-0.65-0.58-0.32-0.9l3.86-3.59C11.17,5.96,11.42,5.96,11.57,6.12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3C10,3,10,3,10,3c-3.73,0-7,3-7,7c0,1.66,0.58,3.19,1.55,4.39L3,15.94L4.06,17l1.55-1.55C6.81,16.42,8.34,17,10,17 c1.79,0,3.58-0.68,4.95-2.05C16.32,13.58,17,11.79,17,10V3H10z M15.5,10c0,1.47-0.57,2.85-1.61,3.89 c-1.04,1.04-2.42,1.61-3.89,1.61c-3.03,0-5.5-2.47-5.5-5.5c0-1.5,0.58-2.89,1.65-3.92C7.19,5.06,8.56,4.5,10,4.5h5.5V10z\\\"></path><path d=\\\"M7.49,10.6l2.93,0.18L8.4,13.36c-0.12,0.16-0.11,0.38,0.03,0.52c0.15,0.15,0.4,0.15,0.55,0.01l3.86-3.59 c0.33-0.31,0.13-0.87-0.32-0.9L9.58,9.22l2.02-2.58c0.12-0.16,0.11-0.38-0.03-0.52c-0.15-0.15-0.4-0.15-0.55-0.01L7.16,9.7 C6.83,10.01,7.03,10.57,7.49,10.6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane\": {\n    \"name\": \"propane\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,8H7c-2.21,0-4,1.79-4,4s1.79,4,4,4h10c2.21,0,4-1.79,4-4S19.21,8,17,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,6h-1V5c0-1.1-0.9-2-2-2h-4C8.9,3,8,3.9,8,5v1H7c-3.31,0-6,2.69-6,6s2.69,6,6,6v3h2v-3h6v3h2v-3c3.31,0,6-2.69,6-6 S20.31,6,17,6z M10,5h4v1h-4V5z M17,16H7c-2.21,0-4-1.79-4-4s1.79-4,4-4h10c2.21,0,4,1.79,4,4S19.21,16,17,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M14,6.5H6c-1.93,0-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5h8c1.93,0,3.5-1.57,3.5-3.5S15.93,6.5,14,6.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,5h-1V4c0-0.83-0.67-1.5-1.5-1.5h-3C7.67,2.5,7,3.17,7,4v1H6c-2.76,0-5,2.24-5,5s2.24,5,5,5v2h1.5v-2h5v2H14v-2 c2.76,0,5-2.24,5-5S16.76,5,14,5z M8.5,4h3v1h-3V4z M14,13.5H6c-1.93,0-3.5-1.57-3.5-3.5S4.07,6.5,6,6.5h8 c1.93,0,3.5,1.57,3.5,3.5S15.93,13.5,14,13.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"vertical_shades\": {\n    \"name\": \"vertical_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"6\\\" y=\\\"5\\\"></rect><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"5\\\"></rect><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M8,19H6V5h2V19z M14,19h-4V5h4V19z M18,19h-2V5h2V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"11\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"5.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"11\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"4.5\\\"></rect><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M7,15.5H5.5v-11H7V15.5z M11.5,15.5h-3v-11h3V15.5z M14.5,15.5H13v-11h1.5V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"curtains\": {\n    \"name\": \"curtains\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,13.14V19h3.94C9.64,16.07,8.05,13.73,6,13.14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.94,5H6v5.86C8.05,10.27,9.64,7.93,9.94,5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.06,19H18v-5.86C15.95,13.73,14.36,16.07,14.06,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,10.86V5h-3.94C14.36,7.93,15.95,10.27,18,10.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M6,5h3.94C9.64,7.93,8.05,10.27,6,10.86V5z M6,19v-5.86c2.05,0.58,3.64,2.93,3.94,5.86H6z M11.95,19c-0.26-3.06-1.72-5.65-3.76-7c2.04-1.35,3.5-3.94,3.76-7h0.09c0.26,3.06,1.72,5.65,3.76,7c-2.04,1.35-3.5,3.94-3.76,7 H11.95z M18,19h-3.94c0.3-2.93,1.89-5.27,3.94-5.86V19z M18,10.86c-2.05-0.58-3.64-2.93-3.94-5.86H18V10.86z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M8.71,4.5H5.5v4.7C7.16,8.87,8.48,6.94,8.71,4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.5,10.8v4.7h3.21C8.48,13.06,7.16,11.13,5.5,10.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.29,15.5h3.21v-4.7C12.84,11.13,11.52,13.06,11.29,15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,9.2V4.5h-3.21C11.52,6.94,12.84,8.87,14.5,9.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M5.5,4.5h3.21C8.48,6.94,7.16,8.87,5.5,9.2V4.5z M5.5,15.5v-4.7 c1.66,0.33,2.98,2.26,3.21,4.7H5.5z M7.35,10C8.6,9.16,9.57,7.68,10,5.88c0.43,1.8,1.4,3.28,2.65,4.12 c-1.25,0.84-2.22,2.32-2.65,4.12C9.57,12.32,8.6,10.84,7.35,10z M14.5,15.5h-3.21c0.23-2.44,1.55-4.37,3.21-4.7V15.5z M14.5,9.2 c-1.66-0.33-2.98-2.26-3.21-4.7h3.21V9.2z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"solar_power\": {\n    \"name\": \"solar_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"4.44,20 11,20 11,18 4.84,18\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"18.36,14 13,14 13,16 18.76,16\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"13,18 13,20 19.56,20 19.16,18\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"5.24,16 11,16 11,14 5.64,14\\\"></polygon><path d=\\\"M20,12H4L2,22h20L20,12z M13,14h5.36l0.4,2H13V14z M11,20H4.44l0.4-2H11V20z M11,16H5.24l0.4-2H11V16z M13,20v-2h6.16 l0.4,2H13z\\\"></path><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.2089 14.6085)\\\" width=\\\"2\\\" x=\\\"16.53\\\" y=\\\"6.06\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.448 6.7885)\\\" width=\\\"3\\\" x=\\\"4.97\\\" y=\\\"6.56\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"3\\\" y=\\\"2\\\"></rect><rect height=\\\"2\\\" width=\\\"3\\\" x=\\\"18\\\" y=\\\"2\\\"></rect><path d=\\\"M12,7c2.76,0,5-2.24,5-5h-2c0,1.65-1.35,3-3,3S9,3.65,9,2H7C7,4.76,9.24,7,12,7z\\\"></path><path d=\\\"M15,2c0,1.66-1.34,3-3,3S9,3.66,9,2H15z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"3.81,16.5 9.25,16.5 9.25,14.75 4.14,14.75\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"4.42,13.25 9.25,13.25 9.25,11.5 4.74,11.5\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"15.26,11.5 10.75,11.5 10.75,13.25 15.58,13.25\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"10.75,14.75 10.75,16.5 16.19,16.5 15.86,14.75\\\"></polygon><path d=\\\"M16.5,10h-13L2,18h16L16.5,10z M10.75,11.5h4.51l0.33,1.75h-4.83V11.5z M9.25,16.5H3.81l0.33-1.75h5.11V16.5z M9.25,13.25 H4.42l0.33-1.75h4.51V13.25z M10.75,16.5v-1.75h5.11l0.33,1.75H10.75z\\\"></path><rect height=\\\"2\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.3314 12.1139)\\\" width=\\\"1.5\\\" x=\\\"13.71\\\" y=\\\"5.46\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -2.9423 5.8107)\\\" width=\\\"2\\\" x=\\\"4.54\\\" y=\\\"5.71\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"2.05\\\"></rect><rect height=\\\"1.5\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"2.05\\\"></rect><path d=\\\"M10,6c2.21,0,4-1.79,4-4h-1.5c0,1.38-1.12,2.5-2.5,2.5S7.5,3.38,7.5,2H6C6,4.21,7.79,6,10,6z\\\"></path><path d=\\\"M12.5,2c0,1.38-1.12,2.5-2.5,2.5S7.5,3.38,7.5,2H12.5z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"broadcast_on_home\": {\n    \"name\": \"broadcast_on_home\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"7\\\" opacity=\\\".3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"11\\\"></rect><path d=\\\"M20,8.59c0.73,0.29,1.4,0.69,2,1.17V6c0-1.1-0.9-2-2-2H4v2h16V8.59z\\\"></path><path d=\\\"M8,9H3c-0.5,0-1,0.5-1,1v9c0,0.5,0.5,1,1,1h5c0.5,0,1-0.5,1-1v-9C9,9.5,8.5,9,8,9z M7,18H4v-7h3V18z\\\"></path><path d=\\\"M17,14.75c-0.69,0-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22h1.5v-5.03c0.3-0.23,0.5-0.57,0.5-0.97 C18.25,15.31,17.69,14.75,17,14.75z\\\"></path><path d=\\\"M17,12c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16C21,13.79,19.21,12,17,12z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"5.5\\\" opacity=\\\".3\\\" width=\\\"2.5\\\" x=\\\"3.5\\\" y=\\\"9\\\"></rect><path d=\\\"M16.5,7.55c0.55,0.25,1.05,0.59,1.5,0.99V5.5C18,4.67,17.33,4,16.5,4H4v1.5h12.5V7.55z\\\"></path><path d=\\\"M6.5,7.5H3c-0.55,0-1,0.45-1,1V15c0,0.55,0.45,1,1,1h3.5c0.55,0,1-0.45,1-1V8.5C7.5,7.95,7.05,7.5,6.5,7.5z M6,14.5H3.5V9 H6V14.5z\\\"></path><path d=\\\"M14,12c-0.55,0-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1v-4.15C14.79,13.67,15,13.37,15,13C15,12.45,14.55,12,14,12z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,10c-1.66,0-3,1.34-3,3c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22C17,11.34,15.66,10,14,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"propane_tank\": {\n    \"name\": \"propane_tank\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,18c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3H6V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,8H8c-1.1,0-2,0.9-2,2v3h12v-3C18,8.9,17.1,8,16,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,6.14V4c0-1.1-0.9-2-2-2H9C7.9,2,7,2.9,7,4v2.14c-1.72,0.45-3,2-3,3.86v8c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4v-8 C20,8.14,18.72,6.59,17,6.14z M9,4h6v2h-2c0-0.55-0.45-1-1-1s-1,0.45-1,1H9V4z M18,18c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2v-3h12 V18z M18,13H6v-3c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5.5,15c0,0.83,0.67,1.5,1.5,1.5h6c0.83,0,1.5-0.67,1.5-1.5v-2.75h-9V15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,6.5H7C6.17,6.5,5.5,7.17,5.5,8v2.75h9V8C14.5,7.17,13.83,6.5,13,6.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,5.18V3.5C14,2.67,13.33,2,12.5,2h-5C6.67,2,6,2.67,6,3.5v1.68C4.84,5.6,4,6.7,4,8v7c0,1.66,1.34,3,3,3h6 c1.66,0,3-1.34,3-3V8C16,6.7,15.16,5.6,14,5.18z M7.5,3.5h5V5h-1.75c0-0.41-0.34-0.75-0.75-0.75S9.25,4.59,9.25,5H7.5V3.5z M14.5,15c0,0.83-0.67,1.5-1.5,1.5H7c-0.83,0-1.5-0.67-1.5-1.5v-2.75h9V15z M14.5,10.75h-9V8c0-0.83,0.67-1.5,1.5-1.5h6 c0.83,0,1.5,0.67,1.5,1.5V10.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"vertical_shades_closed\": {\n    \"name\": \"vertical_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"14\\\" opacity=\\\".2\\\" width=\\\"1.5\\\" x=\\\"9.5\\\" y=\\\"5\\\"></rect><rect height=\\\"14\\\" opacity=\\\".2\\\" width=\\\"1.5\\\" x=\\\"6\\\" y=\\\"5\\\"></rect><rect height=\\\"14\\\" opacity=\\\".2\\\" width=\\\"1.5\\\" x=\\\"13\\\" y=\\\"5\\\"></rect><rect height=\\\"14\\\" opacity=\\\".2\\\" width=\\\"1.5\\\" x=\\\"16.5\\\" y=\\\"5\\\"></rect><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M7.5,19H6V5h1.5V19z M11,19H9.5V5H11V19z M14.5,19H13V5h1.5V19z M18,19h-1.5V5H18V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"11\\\" opacity=\\\".2\\\" width=\\\"1.12\\\" x=\\\"10.75\\\" y=\\\"4.5\\\"></rect><rect height=\\\"11\\\" opacity=\\\".2\\\" width=\\\"1.12\\\" x=\\\"8.12\\\" y=\\\"4.5\\\"></rect><rect height=\\\"11\\\" opacity=\\\".2\\\" width=\\\"1.12\\\" x=\\\"5.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"11\\\" opacity=\\\".2\\\" width=\\\"1.12\\\" x=\\\"13.38\\\" y=\\\"4.5\\\"></rect><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M6.62,15.5H5.5v-11h1.12V15.5z M9.25,15.5H8.12v-11h1.12V15.5z M11.88,15.5h-1.12v-11 h1.12V15.5z M14.5,15.5h-1.12v-11h1.12V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nest_cam_wired_stand\": {\n    \"name\": \"nest_cam_wired_stand\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,17c-1.65,0-3,1.35-3,3v1h6v-1C15,18.35,13.65,17,12,17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,3l-4.08,0.41C9.69,3.64,8,5.5,8,7.75s1.69,4.11,3.92,4.34l4.11,0.42L16,3L16,3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,1c-0.15,0,0.11-0.02-4.28,0.42C8.47,1.75,6,4.48,6,7.75s2.47,6,5.72,6.33l1.9,0.19l-0.56,0.85 C12.71,15.04,12.36,15,12,15c-2.76,0-5,2.24-5,5v2c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1v-2c0-1.67-0.83-3.15-2.09-4.06 l0.97-1.45c0.04,0,0.09,0.01,0.13,0.01c1.09,0,2-0.89,2-2V3C18,1.89,17.09,1,16,1z M15,20v1H9v-1c0-1.65,1.35-3,3-3 C13.65,17,15,18.35,15,20z M11.92,12.09C9.69,11.86,8,10,8,7.75s1.69-4.11,3.92-4.34L16,3h0l0.03,9.5L11.92,12.09z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9.91,2.96C7.96,3.19,6.5,4.82,6.5,6.75s1.46,3.56,3.39,3.79L13.5,11l0-8.5l0,0L9.91,2.96z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,14.5c-1.38,0-2.5,1.12-2.5,2.5v0.5h5V17C12.5,15.62,11.38,14.5,10,14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.5,1c-0.06,0-3.79,0.47-3.79,0.47C7.02,1.79,5,4.06,5,6.75s2.02,4.96,4.72,5.28l1.37,0.17l-0.57,0.85 C10.35,13.03,10.18,13,10,13c-2.21,0-4,1.79-4,4v1.5C6,18.78,6.22,19,6.5,19h7c0.28,0,0.5-0.22,0.5-0.5V17 c0-1.48-0.81-2.76-2.01-3.45l0.76-1.13c0.61,0.08,0.63,0.08,0.76,0.08c0.81,0,1.5-0.66,1.5-1.49V2.49C15,1.66,14.32,1,13.5,1z M12.5,17v0.5h-5V17c0-1.38,1.12-2.5,2.5-2.5S12.5,15.62,12.5,17z M13.5,11l-3.6-0.46C7.96,10.31,6.5,8.68,6.5,6.75 s1.46-3.56,3.41-3.79L13.5,2.5l0,0L13.5,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"blinds\": {\n    \"name\": \"blinds\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"9\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"5\\\"></rect><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M6,5h8v2H6V5z M6,9h8v2H6V9z M18,19H6v-6h8v1.82c-0.45,0.32-0.75,0.84-0.75,1.43 c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75c0-0.59-0.3-1.12-0.75-1.43V13h2V19z M18,11h-2V9h2V11z M18,7h-2V5h2V7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"5.5\\\" x=\\\"5.5\\\" y=\\\"7.75\\\"></rect><rect height=\\\"1.75\\\" opacity=\\\".3\\\" width=\\\"5.5\\\" x=\\\"5.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"7.75\\\"></rect><rect height=\\\"1.75\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"4.5\\\"></rect><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M5.5,4.5H11v1.75H5.5V4.5z M5.5,7.75H11v1.5H5.5V7.75z M14.5,15.5h-9v-4.75H11v1.53 c-0.3,0.23-0.5,0.57-0.5,0.97c0,0.69,0.56,1.25,1.25,1.25S13,13.94,13,13.25c0-0.4-0.2-0.75-0.5-0.97v-1.53h2V15.5z M14.5,9.25h-2 v-1.5h2V9.25z M14.5,6.25h-2V4.5h2V6.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sensor_occupied\": {\n    \"name\": \"sensor_occupied\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M8.14,15h7.7c-1.16-0.65-2.5-1-3.85-1C10.65,14,9.32,14.35,8.14,15z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"12\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M12,11c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,6.34,9,8S10.34,11,12,11z M12,7c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,7,12,7z\\\"></path><path d=\\\"M12,12c-1.84,0-3.56,0.5-5.03,1.37C6.36,13.72,6,14.39,6,15.09V17h12v-1.91c0-0.7-0.36-1.36-0.97-1.72 C15.56,12.5,13.84,12,12,12z M8.14,15c1.18-0.65,2.51-1,3.86-1c1.35,0,2.68,0.35,3.85,1H8.14z\\\"></path><path d=\\\"M21.23,8.15l1.85-0.77c-1.22-2.91-3.55-5.25-6.46-6.46l-0.77,1.85C18.27,3.79,20.21,5.73,21.23,8.15z\\\"></path><path d=\\\"M8.15,2.77L7.38,0.92C4.47,2.14,2.14,4.47,0.92,7.38l1.85,0.77C3.79,5.73,5.73,3.79,8.15,2.77z\\\"></path><path d=\\\"M2.77,15.85l-1.85,0.77c1.22,2.91,3.55,5.25,6.46,6.46l0.77-1.85C5.73,20.21,3.79,18.27,2.77,15.85z\\\"></path><path d=\\\"M15.85,21.23l0.77,1.85c2.91-1.22,5.25-3.55,6.46-6.46l-1.85-0.77C20.21,18.27,18.27,20.21,15.85,21.23z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,11.5c-1.21,0-2.39,0.32-3.44,0.94c-0.02,0.01-0.04,0.04-0.05,0.06h6.97c-0.01-0.03-0.03-0.05-0.05-0.06 C12.39,11.82,11.21,11.5,10,11.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"10\\\" cy=\\\"6.5\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M17.84,6.73l1.39-0.58c-1.01-2.43-2.96-4.37-5.38-5.38l-0.58,1.39C15.33,3.02,16.98,4.67,17.84,6.73z\\\"></path><path d=\\\"M13.27,17.84l0.58,1.39c2.43-1.01,4.37-2.96,5.38-5.38l-1.39-0.58C16.98,15.33,15.33,16.98,13.27,17.84z\\\"></path><path d=\\\"M2.16,13.27l-1.39,0.58c1.01,2.43,2.96,4.37,5.38,5.38l0.58-1.39C4.67,16.98,3.02,15.33,2.16,13.27z\\\"></path><path d=\\\"M6.73,2.16L6.15,0.77C3.72,1.78,1.78,3.72,0.77,6.15l1.39,0.58C3.02,4.67,4.67,3.02,6.73,2.16z\\\"></path><path d=\\\"M10,9c1.38,0,2.5-1.12,2.5-2.5C12.5,5.12,11.38,4,10,4S7.5,5.12,7.5,6.5C7.5,7.88,8.62,9,10,9z M10,5.5c0.55,0,1,0.45,1,1 s-0.45,1-1,1s-1-0.45-1-1S9.45,5.5,10,5.5z\\\"></path><path d=\\\"M10,10c-1.53,0-2.96,0.42-4.2,1.14C5.3,11.44,5,11.99,5,12.57V14h10v-1.43c0-0.58-0.3-1.14-0.8-1.43 C12.96,10.42,11.53,10,10,10z M6.51,12.5c0.01-0.03,0.03-0.05,0.05-0.06C7.61,11.82,8.79,11.5,10,11.5c1.21,0,2.39,0.32,3.44,0.94 c0.02,0.01,0.04,0.04,0.05,0.06H6.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"electric_bolt\": {\n    \"name\": \"electric_bolt\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.69,2.21L4.33,11.49c-0.64,0.58-0.28,1.65,0.58,1.73L13,14l-4.85,6.76c-0.22,0.31-0.19,0.74,0.08,1.01h0 c0.3,0.3,0.77,0.31,1.08,0.02l10.36-9.28c0.64-0.58,0.28-1.65-0.58-1.73L11,10l4.85-6.76c0.22-0.31,0.19-0.74-0.08-1.01l0,0 C15.47,1.93,15,1.92,14.69,2.21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.72,2.21l-8.56,7.93c-0.32,0.3-0.12,0.83,0.31,0.86l7.33,0.5l-3.64,5.27c-0.24,0.3-0.21,0.73,0.06,1.01h0 c0.29,0.29,0.76,0.3,1.06,0.01l8.56-7.93c0.32-0.3,0.12-0.83-0.31-0.86L9.2,8.5l3.64-5.27c0.24-0.3,0.21-0.73-0.06-1.01l0,0 C12.49,1.93,12.01,1.93,11.72,2.21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"blinds_closed\": {\n    \"name\": \"blinds_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"9\\\"></rect><path d=\\\"M20,19V3H4v16H2v2h11.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M14,19H6v-2h8V19z M14,15H6v-2h8V15z M14,11H6V9h8V11z M14,7H6V5h8V7z M18,19h-2v-2h2V19z M18,15h-2v-2h2V15z M18,11h-2V9h2V11z M18,7h-2V5h2V7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"5.5\\\" x=\\\"5.5\\\" y=\\\"7.75\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"5.5\\\" x=\\\"5.5\\\" y=\\\"10.75\\\"></rect><rect height=\\\"1.75\\\" opacity=\\\".3\\\" width=\\\"5.5\\\" x=\\\"5.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"1.75\\\" opacity=\\\".3\\\" width=\\\"5.5\\\" x=\\\"5.5\\\" y=\\\"13.75\\\"></rect><rect height=\\\"1.75\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"1.75\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"13.75\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"7.75\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"10.75\\\"></rect><path d=\\\"M16,15.5V3H4v12.5H2V17h8.5c0,0.69,0.56,1.25,1.25,1.25S13,17.69,13,17h5v-1.5H16z M11,15.5H5.5v-1.75H11V15.5z M11,12.25 H5.5v-1.5H11V12.25z M11,9.25H5.5v-1.5H11V9.25z M11,6.25H5.5V4.5H11V6.25z M14.5,15.5h-2v-1.75h2V15.5z M14.5,12.25h-2v-1.5h2 V12.25z M14.5,9.25h-2v-1.5h2V9.25z M14.5,6.25h-2V4.5h2V6.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"oil_barrel\": {\n    \"name\": \"oil_barrel\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,11c0.55,0,1,0.45,1,1s-0.45,1-1,1v6h10v-6c-0.55,0-1-0.45-1-1s0.45-1,1-1V5H7V11z M12,8.5 c2.47,2.86,3,3.24,3,4.55c0,1.63-1.34,2.95-3,2.95s-3-1.32-3-2.95C9,11.75,9.52,11.38,12,8.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,16c1.66,0,3-1.32,3-2.95c0-1.31-0.53-1.69-3-4.55c-2.48,2.88-3,3.25-3,4.55C9,14.68,10.34,16,12,16z\\\"></path><path d=\\\"M20,13c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1V5h1c0.55,0,1-0.45,1-1s-0.45-1-1-1H4C3.45,3,3,3.45,3,4s0.45,1,1,1h1v6H4 c-0.55,0-1,0.45-1,1s0.45,1,1,1h1v6H4c-0.55,0-1,0.45-1,1s0.45,1,1,1h16c0.55,0,1-0.45,1-1s-0.45-1-1-1h-1v-6H20z M17,11 c-0.55,0-1,0.45-1,1s0.45,1,1,1v6H7v-6c0.55,0,1-0.45,1-1s-0.45-1-1-1V5h10V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,9.25c0.41,0,0.75,0.34,0.75,0.75S6.41,10.75,6,10.75v4.75h8v-4.75h-0.25C13.34,10.75,13,10.41,13,10 s0.34-0.75,0.75-0.75H14V4.5H6V9.25z M10,7.38c1.85,2.15,2.25,2.43,2.25,3.41c0,1.22-1.01,2.21-2.25,2.21 c-1.24,0-2.25-0.99-2.25-2.21C7.75,9.81,8.14,9.53,10,7.38z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,13c1.24,0,2.25-0.99,2.25-2.21c0-0.98-0.4-1.27-2.25-3.41c-1.86,2.16-2.25,2.43-2.25,3.41C7.75,12.01,8.76,13,10,13z\\\"></path><path d=\\\"M16.25,10.75c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5V4.5h0.75C16.66,4.5,17,4.16,17,3.75S16.66,3,16.25,3 H3.75C3.34,3,3,3.34,3,3.75S3.34,4.5,3.75,4.5H4.5v4.75H3.75C3.34,9.25,3,9.59,3,10s0.34,0.75,0.75,0.75H4.5v4.75H3.75 C3.34,15.5,3,15.84,3,16.25S3.34,17,3.75,17h12.5c0.41,0,0.75-0.34,0.75-0.75s-0.34-0.75-0.75-0.75H15.5v-4.75H16.25z M14,9.25 h-0.25C13.34,9.25,13,9.59,13,10s0.34,0.75,0.75,0.75H14v4.75H6v-4.75c0.41,0,0.75-0.34,0.75-0.75S6.41,9.25,6,9.25V4.5h8V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"heat_pump\": {\n    \"name\": \"heat_pump\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M12,6c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6S8.69,6,12,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M12,18c3.31,0,6-2.69,6-6s-2.69-6-6-6s-6,2.69-6,6S8.69,18,12,18z M11.25,15.92c-0.55-0.1-1.05-0.32-1.5-0.62l1.5-1.5 V15.92z M12.75,15.92v-2.11l1.5,1.5C13.8,15.61,13.3,15.82,12.75,15.92z M15.31,14.25l-1.5-1.5h2.11 C15.82,13.3,15.61,13.8,15.31,14.25z M15.92,11.25h-2.11l1.5-1.5C15.61,10.2,15.82,10.7,15.92,11.25z M12.75,8.08 c0.55,0.1,1.05,0.32,1.5,0.62l-1.5,1.5V8.08z M12,11c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C11,11.45,11.45,11,12,11z M11.25,8.08v2.11l-1.5-1.5C10.2,8.39,10.7,8.18,11.25,8.08z M8.69,9.75l1.5,1.5H8.08C8.18,10.7,8.39,10.2,8.69,9.75z M10.19,12.75l-1.5,1.5c-0.3-0.44-0.51-0.95-0.62-1.5H10.19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4.5,15.5h11v-11h-11V15.5z M10,5.5c2.48,0,4.5,2.02,4.5,4.5s-2.02,4.5-4.5,4.5S5.5,12.48,5.5,10 S7.52,5.5,10,5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,15.5h-11v-11h11V15.5z\\\"></path><path d=\\\"M10,14.5c2.48,0,4.5-2.02,4.5-4.5S12.48,5.5,10,5.5S5.5,7.52,5.5,10S7.52,14.5,10,14.5z M9.5,12.95 c-0.45-0.08-0.87-0.25-1.23-0.51l1.23-1.23V12.95z M10.5,12.95v-1.74l1.23,1.23C11.37,12.7,10.95,12.87,10.5,12.95z M12.44,11.73 l-1.23-1.23h1.74C12.87,10.95,12.7,11.37,12.44,11.73z M12.95,9.5h-1.74l1.23-1.23C12.7,8.63,12.87,9.05,12.95,9.5z M10.5,7.05 c0.45,0.08,0.87,0.25,1.23,0.51L10.5,8.79V7.05z M10.75,10c0,0.41-0.34,0.75-0.75,0.75S9.25,10.41,9.25,10 c0-0.41,0.34-0.75,0.75-0.75S10.75,9.59,10.75,10z M9.5,7.05v1.74L8.27,7.56C8.63,7.3,9.05,7.13,9.5,7.05z M7.56,8.27L8.79,9.5 H7.05C7.13,9.05,7.3,8.63,7.56,8.27z M8.79,10.5l-1.23,1.23c-0.26-0.36-0.43-0.78-0.51-1.23H8.79z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"broadcast_on_personal\": {\n    \"name\": \"broadcast_on_personal\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,10v9h5.59C9.21,18.07,9,17.06,9,16c0-3.39,2.11-6.27,5.08-7.44L10,5.5L4,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,19v-9l6-4.5l4.08,3.06c0.81-0.32,1.69-0.51,2.61-0.54L10,3L2,9v12h8.76c-0.48-0.6-0.88-1.27-1.17-2H4z\\\"></path><path d=\\\"M17,14.75c-0.69,0-1.25,0.56-1.25,1.25c0,0.4,0.2,0.75,0.5,0.97V22h1.5v-5.03c0.3-0.23,0.5-0.57,0.5-0.97 C18.25,15.31,17.69,14.75,17,14.75z\\\"></path><path d=\\\"M17,12c-2.21,0-4,1.79-4,4c0,1.1,0.45,2.1,1.17,2.83l1.06-1.06c-0.45-0.45-0.73-1.08-0.73-1.77c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5c0,0.69-0.28,1.31-0.73,1.76l1.06,1.06C20.55,18.1,21,17.1,21,16C21,13.79,19.21,12,17,12z\\\"></path><path d=\\\"M17,9.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.79,0.73,3.42,1.9,4.6l1.06-1.06C12.56,18.63,12,17.38,12,16c0-2.76,2.24-5,5-5 s5,2.24,5,5c0,1.37-0.56,2.62-1.46,3.52l1.07,1.06c1.17-1.18,1.89-2.8,1.89-4.58C23.5,12.41,20.59,9.5,17,9.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,8.25v7.25h5.05C8.2,14.74,8,13.89,8,13c0-2.44,1.45-4.53,3.54-5.47L8,4.88L3.5,8.25z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.5,15.5V8.25L8,4.88l3.54,2.66c0.57-0.26,1.19-0.43,1.84-0.5L8,3L2,7.5V17h7.54c-0.4-0.45-0.73-0.95-0.99-1.5H3.5z\\\"></path><g><path d=\\\"M14,12c-0.55,0-1,0.45-1,1c0,0.37,0.21,0.67,0.5,0.85V18h1v-4.15C14.79,13.67,15,13.37,15,13C15,12.45,14.55,12,14,12z\\\"></path><path d=\\\"M14,8c-2.76,0-5,2.24-5,5c0,1.38,0.56,2.63,1.46,3.54l0.71-0.71C10.45,15.1,10,14.1,10,13c0-2.21,1.79-4,4-4s4,1.79,4,4 c0,1.18-0.52,2.23-1.33,2.96l0.67,0.74C18.35,15.78,19,14.47,19,13C19,10.24,16.76,8,14,8z\\\"></path><path d=\\\"M14,10c-1.66,0-3,1.34-3,3c0,0.83,0.34,1.58,0.88,2.12l0.71-0.71C12.22,14.05,12,13.55,12,13c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,0.59-0.26,1.11-0.67,1.48L16,15.22c0.61-0.55,1-1.34,1-2.22C17,11.34,15.66,10,14,10z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"electric_meter\": {\n    \"name\": \"electric_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-3.86,0-7,3.14-7,7s3.14,7,7,7s7-3.14,7-7S15.86,4,12,4z M14.25,14l-3,3l-1.5-1.5L11,14.25L9.75,13 l3-3l1.5,1.5L13,12.75L14.25,14z M16,9H8V7h8V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2c-4.97,0-9,4.03-9,9c0,3.92,2.51,7.24,6,8.48V22h2v-2.06c0.33,0.04,0.66,0.06,1,0.06s0.67-0.02,1-0.06V22h2v-2.52 c3.49-1.24,6-4.56,6-8.48C21,6.03,16.97,2,12,2z M12,18c-3.86,0-7-3.14-7-7s3.14-7,7-7s7,3.14,7,7S15.86,18,12,18z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"7\\\"></rect><polygon points=\\\"12.75,10 9.75,13 11,14.25 9.75,15.5 11.25,17 14.25,14 13,12.75 14.25,11.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.5C6.97,3.5,4.5,5.97,4.5,9s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S13.03,3.5,10,3.5z M11.75,11.3 L9.3,13.75L8.25,12.7l1-1l-1-1l2.45-2.45l1.05,1.05l-1,1L11.75,11.3z M13,7.5H7V6h6V7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2C6.13,2,3,5.13,3,9c0,2.98,1.87,5.52,4.5,6.53V18H9v-2.08C9.33,15.97,9.66,16,10,16s0.67-0.03,1-0.08V18h1.5v-2.47 C15.13,14.52,17,11.98,17,9C17,5.13,13.87,2,10,2z M10,14.5c-3.03,0-5.5-2.47-5.5-5.5S6.97,3.5,10,3.5s5.5,2.47,5.5,5.5 S13.03,14.5,10,14.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"7\\\" y=\\\"6\\\"></rect><polygon points=\\\"10.7,8.25 8.25,10.7 9.25,11.7 8.25,12.7 9.3,13.75 11.75,11.3 10.75,10.3 11.75,9.3\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"roller_shades\": {\n    \"name\": \"roller_shades\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"6\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"5\\\"></rect><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M18,19H6v-6h5v1.82c-0.45,0.32-0.75,0.84-0.75,1.43c0,0.97,0.78,1.75,1.75,1.75 s1.75-0.78,1.75-1.75c0-0.59-0.3-1.12-0.75-1.43V13h5V19z M18,11H6V5h12V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4.75\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"4.5\\\"></rect><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M14.5,15.5h-9v-4.75h3.75v1.53c-0.3,0.23-0.5,0.57-0.5,0.97 c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25c0-0.4-0.2-0.75-0.5-0.97v-1.53h3.75V15.5z M14.5,9.25h-9V4.5h9V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wind_power\": {\n    \"name\": \"wind_power\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"13\\\" cy=\\\"13\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M3.28,13C3.13,13,3,13.13,3,13.28c0,0.12,0.08,0.24,0.2,0.27l4.51,1.29l2.33-1.4 c-0.02-0.15-0.03-0.29-0.03-0.44H3.28z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.76,3.54c-0.15-0.09-0.29-0.01-0.34,0.04L14,6.78v3.36l0.11,0.03l3.74-6.24 C17.94,3.79,17.89,3.62,17.76,3.54z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.19,15.48l-2.78-0.69c-0.07,0.1-0.15,0.19-0.24,0.28l4.85,4.85c0.16,0.16,0.35,0.05,0.4,0 c0.09-0.09,0.11-0.23,0.05-0.33L18.19,15.48z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"4\\\" y=\\\"3\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"1\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"19\\\"></rect><path d=\\\"M22.21,18.61l-2.28-4.1c-0.27-0.48-0.73-0.83-1.26-0.97l-2.69-0.67c-0.02-0.47-0.14-0.92-0.37-1.33l3.96-6.59 c0.65-1.08,0.3-2.48-0.78-3.13c-0.36-0.22-0.77-0.32-1.17-0.32c-0.56,0-1.12,0.21-1.56,0.62l-3.43,3.21C12.23,5.7,12,6.23,12,6.78 v3.4c-0.47,0.17-0.89,0.45-1.23,0.82H3.28C2.02,11,1,12.02,1,13.28c0,1.02,0.67,1.91,1.65,2.19l4.51,1.29 c0.18,0.05,0.37,0.08,0.55,0.08c0.36,0,0.72-0.1,1.03-0.29l2.24-1.34c0.29,0.26,0.63,0.47,1.02,0.61V21c-1.1,0-2,0.9-2,2h6 c0-1.1-0.9-2-2-2v-4.28l4.61,4.61c0.45,0.45,1.03,0.67,1.61,0.67c0.58,0,1.17-0.22,1.61-0.67h0 C22.55,20.61,22.71,19.5,22.21,18.61z M7.72,14.84L3.2,13.55C3.08,13.52,3,13.4,3,13.28C3,13.13,3.13,13,3.28,13h6.73 c0,0.15,0.01,0.3,0.03,0.44L7.72,14.84z M13,14c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C14,13.55,13.55,14,13,14z M14,10.14V6.78l3.43-3.21c0.05-0.05,0.19-0.12,0.34-0.04c0.13,0.08,0.18,0.25,0.1,0.38l-3.74,6.24L14,10.14z M20.42,19.92 c-0.05,0.05-0.24,0.16-0.4,0l-4.85-4.85c0.08-0.09,0.16-0.18,0.24-0.28l2.78,0.69l2.28,4.1C20.53,19.69,20.51,19.83,20.42,19.92z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10.5\\\" cy=\\\"11\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M14.6,3.04c-0.16-0.1-0.31-0.01-0.36,0.04L11.5,5.64V8.4l0.21,0.05l2.99-4.99 C14.83,3.25,14.66,3.08,14.6,3.04z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.8,10.5c-0.17,0-0.3,0.14-0.3,0.3c0,0.13,0.09,0.25,0.22,0.29l3.6,1.03l1.69-1.01 c0-0.01-0.04-0.22,0.04-0.61H2.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.64,12.78l-2-0.5c-0.1,0.16-0.21,0.32-0.34,0.45l3.68,3.68c0.17,0.17,0.38,0.05,0.43,0 c0.1-0.1,0.12-0.24,0.05-0.36L14.64,12.78z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"3\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"1\\\" y=\\\"6.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"3\\\" y=\\\"15.5\\\"></rect><path d=\\\"M17.77,15.32l-1.82-3.27c-0.2-0.36-0.54-0.63-0.95-0.73l-2.03-0.51c-0.03-0.38-0.14-0.73-0.32-1.04l3.32-5.54 c0.51-0.85,0.24-1.96-0.62-2.47c-0.29-0.17-1.29-0.58-2.16,0.23l-2.74,2.56C10.17,4.83,10,5.23,10,5.64v2.91 C9.63,8.62,9.3,8.78,9.01,9H2.8C1.81,9,1,9.81,1,10.8c0,0.8,0.53,1.51,1.31,1.73l3.6,1.03c0.14,0.04,0.27,0.06,0.41,0.06 c0.27,0,0.54-0.07,0.77-0.21l1.45-0.87c0.31,0.39,0.72,0.68,1.21,0.83v4.05H9.58C8.71,17.42,8,18.13,8,19h5 c0-0.87-0.71-1.58-1.58-1.58h-0.17V13.8l3.67,3.67c0.7,0.7,1.85,0.7,2.55,0C18.04,16.9,18.16,16.03,17.77,15.32z M8.01,11.11 l-1.69,1.01l-3.6-1.03C2.59,11.06,2.5,10.94,2.5,10.8c0-0.17,0.14-0.3,0.3-0.3h5.25C7.97,10.89,8.01,11.1,8.01,11.11z M10.5,12 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C11.5,11.55,11.05,12,10.5,12z M11.5,8.4V5.64l2.74-2.56 c0.05-0.05,0.2-0.13,0.36-0.04c0.06,0.04,0.23,0.2,0.1,0.42l-2.99,4.99L11.5,8.4z M16.41,16.41c-0.05,0.05-0.25,0.17-0.43,0 l-3.68-3.68c0.13-0.14,0.24-0.29,0.34-0.45l2,0.5l1.82,3.27C16.53,16.17,16.51,16.32,16.41,16.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"roller_shades_closed\": {\n    \"name\": \"roller_shades_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><rect height=\\\"10\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"5\\\"></rect></g><path d=\\\"M20,19V3H4v16H2v2h8.25c0,0.97,0.78,1.75,1.75,1.75s1.75-0.78,1.75-1.75H22v-2H20z M11,19H6v-2h5V19z M18,19h-5v-2h5V19z M18,15H6V5h12V15z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><rect height=\\\"8\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"4.5\\\"></rect></g><path d=\\\"M16,15.5V3H4v12.5H2V17h6.75c0,0.69,0.56,1.25,1.25,1.25s1.25-0.56,1.25-1.25H18v-1.5H16z M9.25,15.5H5.5V14h3.75V15.5z M14.5,15.5h-3.75V14h3.75V15.5z M14.5,12.5h-9v-8h9V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mode_fan_off\": {\n    \"name\": \"mode_fan_off\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4.5,10C4.42,10,4,10.03,4,10.6c0,2,0.82,3.4,2,3.4c0.51,0,0.89-0.12,2.69-0.86 c-0.07-0.2-0.12-0.41-0.15-0.62c-1.48-0.33-2.49-0.89-3.39-2.16C4.93,10.05,4.77,10,4.5,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,19.5c0,0.08,0.03,0.5,0.6,0.5c2,0,3.4-0.82,3.4-2c0-0.38-0.07-0.69-0.42-1.59l-0.97-0.97 c-0.03,0.01-0.06,0.02-0.09,0.02c-0.33,1.48-0.89,2.49-2.16,3.39C10.05,19.07,10,19.23,10,19.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.65,5.15C13.95,4.93,14,4.77,14,4.5C14,4.42,13.97,4,13.4,4c-2,0-3.4,0.82-3.4,2 c0,0.38,0.07,0.69,0.42,1.59l1.05,1.05l0.02-0.1C11.82,7.06,12.37,6.04,13.65,5.15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.85,13.65c0.21,0.3,0.38,0.35,0.65,0.35c0.08,0,0.5-0.03,0.5-0.6c0-2-0.82-3.4-2-3.4 c-0.51,0-0.89,0.12-2.69,0.86c0.07,0.2,0.12,0.41,0.15,0.62C16.94,11.82,17.96,12.37,18.85,13.65z\\\" opacity=\\\".3\\\"></path><g><g><path d=\\\"M10,6c0-1.18,1.4-2,3.4-2C13.97,4,14,4.42,14,4.5c0,0.27-0.05,0.43-0.35,0.65c-1.27,0.9-1.83,1.91-2.16,3.39l-0.02,0.1 l7.25,7.25C18.96,15.95,19.22,16,19.5,16c1.22,0,2.5-0.95,2.5-2.6C22,9.91,20.11,8,18,8c-1.06,0-1.64,0.29-3.91,1.19 c-0.19-0.14-0.4-0.27-0.62-0.37c0.25-1.03,0.61-1.53,1.33-2.04C15.61,6.21,16,5.44,16,4.5C16,3.28,15.05,2,13.4,2 c-3.08,0-4.92,1.47-5.32,3.26l2.33,2.33C10.07,6.69,10,6.38,10,6z M18,10c1.18,0,2,1.4,2,3.4c0,0.57-0.42,0.6-0.5,0.6 c-0.27,0-0.43-0.05-0.65-0.35c-0.9-1.27-1.91-1.83-3.39-2.16c-0.03-0.22-0.08-0.42-0.15-0.62C17.11,10.12,17.49,10,18,10z\\\"></path></g></g><path d=\\\"M1.39,4.22l3.89,3.89C5.04,8.05,4.78,8,4.5,8C3.28,8,2,8.95,2,10.6C2,14.09,3.89,16,6,16c1.06,0,1.64-0.29,3.91-1.19 c0.19,0.14,0.4,0.27,0.62,0.37c-0.25,1.03-0.61,1.53-1.33,2.04C8.39,17.79,8,18.56,8,19.5c0,1.22,0.95,2.5,2.6,2.5 c3.08,0,4.92-1.47,5.32-3.26l3.86,3.86l1.41-1.41L2.81,2.81L1.39,4.22z M12.52,15.46c0.03,0,0.06-0.02,0.09-0.02l0.97,0.97 C13.93,17.31,14,17.62,14,18c0,1.18-1.4,2-3.4,2c-0.57,0-0.6-0.42-0.6-0.5c0-0.27,0.05-0.43,0.35-0.65 C11.63,17.96,12.18,16.94,12.52,15.46z M8.54,12.52c0.03,0.22,0.08,0.42,0.15,0.62C6.89,13.88,6.51,14,6,14c-1.18,0-2-1.4-2-3.4 C4,10.03,4.42,10,4.5,10c0.27,0,0.43,0.05,0.65,0.35C6.04,11.63,7.06,12.18,8.54,12.52z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,8.2c-0.07,0-0.4,0.02-0.4,0.48c0,1.6,0.66,2.72,1.6,2.72c0.39,0,0.62-0.07,2.14-0.68 c-0.04-0.16-0.07-0.33-0.09-0.5C6.01,9.94,5.1,9.36,4.49,8.45C4.39,8.29,4.28,8.2,4,8.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.55,4.49C11.71,4.39,11.8,4.28,11.8,4c0-0.07-0.02-0.4-0.48-0.4c-1.6,0-2.72,0.66-2.72,1.6 c0,0.36,0.06,0.6,0.56,1.84l0.57,0.57l0.05-0.35C10.06,6.01,10.64,5.1,11.55,4.49z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.2,16c0,0.07,0.02,0.4,0.48,0.4c1.6,0,2.72-0.66,2.72-1.6c0-0.36-0.06-0.6-0.56-1.84l-0.28-0.28 c-0.11,0.02-0.23,0.05-0.34,0.06c-0.28,1.25-0.86,2.16-1.77,2.77C8.29,15.61,8.2,15.72,8.2,16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.51,11.55c0.11,0.16,0.22,0.25,0.49,0.25c0.07,0,0.4-0.02,0.4-0.48c0-1.6-0.66-2.72-1.6-2.72 c-0.39,0-0.62,0.07-2.14,0.68c0.04,0.16,0.07,0.33,0.09,0.5C13.99,10.06,14.9,10.64,15.51,11.55z\\\" opacity=\\\".3\\\"></path><g><g><path d=\\\"M8.6,5.2c0-0.94,1.12-1.6,2.72-1.6c0.46,0,0.48,0.33,0.48,0.4c0,0.28-0.09,0.39-0.25,0.49 c-0.91,0.61-1.49,1.52-1.77,2.77L9.73,7.61l5.73,5.73c0.17,0.04,0.35,0.06,0.54,0.06c0.98,0,2-0.76,2-2.08 C18,8.52,16.49,7,14.8,7c-0.83,0-1.29,0.22-3.01,0.91c-0.14-0.12-0.28-0.22-0.44-0.31c0.22-0.99,0.64-1.47,1.1-1.78 C13.09,5.39,13.4,4.75,13.4,4c0-0.98-0.76-2-2.08-2C8.69,2,7.2,3.34,7.03,4.91l2.13,2.13C8.66,5.8,8.6,5.56,8.6,5.2z M14.8,8.6 c0.94,0,1.6,1.12,1.6,2.72c0,0.46-0.33,0.48-0.4,0.48c-0.28,0-0.39-0.09-0.49-0.25c-0.61-0.91-1.52-1.49-2.77-1.77 c-0.01-0.17-0.04-0.34-0.09-0.5C14.18,8.67,14.41,8.6,14.8,8.6z\\\"></path></g></g><path d=\\\"M1.87,3.99l2.67,2.67C4.37,6.62,4.19,6.6,4,6.6c-0.98,0-2,0.76-2,2.08C2,11.48,3.51,13,5.2,13c0.83,0,1.29-0.22,3.01-0.91 c0.14,0.12,0.28,0.22,0.44,0.31c-0.22,0.99-0.64,1.47-1.1,1.78C6.91,14.61,6.6,15.25,6.6,16c0,0.98,0.76,2,2.08,2 c2.63,0,4.12-1.34,4.29-2.91l3.04,3.04l1.06-1.06L2.93,2.93L1.87,3.99z M10.22,12.74c0.12-0.01,0.23-0.04,0.34-0.06l0.28,0.28 c0.5,1.24,0.56,1.48,0.56,1.84c0,0.94-1.12,1.6-2.72,1.6c-0.46,0-0.48-0.33-0.48-0.4c0-0.28,0.09-0.39,0.25-0.49 C9.36,14.9,9.94,13.99,10.22,12.74z M7.26,10.22c0.01,0.17,0.04,0.34,0.09,0.5C5.82,11.33,5.59,11.4,5.2,11.4 c-0.94,0-1.6-1.12-1.6-2.72C3.6,8.22,3.93,8.2,4,8.2c0.28,0,0.39,0.09,0.49,0.25C5.1,9.36,6.01,9.94,7.26,10.22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"curtains_closed\": {\n    \"name\": \"curtains_closed\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"5\\\"></rect><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"3\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><path d=\\\"M20,19V3H4v16H2v2h20v-2H20z M9,19H6V5h3V19z M13,19h-2V5h2V19z M18,19h-3V5h3V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"11\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"5.5\\\" y=\\\"4.5\\\"></rect><rect height=\\\"11\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"4.5\\\"></rect><path d=\\\"M16,15.5V3H4v12.5H2V17h16v-1.5H16z M7.5,15.5h-2v-11h2V15.5z M11,15.5H9v-11h2V15.5z M14.5,15.5h-2v-11h2V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"shield_moon\": {\n    \"name\": \"shield_moon\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,6.39v4.7c0,4,2.55,7.7,6,8.83c3.45-1.13,6-4.82,6-8.83v-4.7l-6-2.25L6,6.39z M12.21,7.61 c-0.46,1.23-0.39,2.64,0.32,3.86c0.71,1.22,1.89,1.99,3.18,2.2c0.34,0.06,0.49,0.47,0.26,0.74c-1.84,2.17-5.21,2.1-6.96-0.07 c-2.19-2.72-0.65-6.72,2.69-7.33C12.04,6.95,12.33,7.28,12.21,7.61z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\\\"></path><path d=\\\"M9.01,14.33c1.75,2.17,5.12,2.24,6.96,0.07c0.23-0.27,0.08-0.68-0.26-0.74c-1.29-0.21-2.48-0.98-3.18-2.2 c-0.71-1.22-0.78-2.63-0.32-3.86c0.12-0.33-0.16-0.66-0.51-0.6C8.36,7.62,6.81,11.61,9.01,14.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,5.53v3.74c0,3.26,2.13,6.27,5,7.17c2.87-0.9,5-3.91,5-7.17V5.53l-5-1.92L5,5.53z M10.14,6.47 c-0.36,0.95-0.3,2.05,0.25,3s1.47,1.55,2.48,1.71c0.27,0.04,0.38,0.37,0.21,0.58c-1.43,1.69-4.05,1.63-5.41-0.06 c-1.71-2.12-0.51-5.23,2.09-5.7C10.01,5.96,10.23,6.22,10.14,6.47z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2L3.5,4.5v4.77c0,4.04,2.77,7.81,6.5,8.73c3.73-0.92,6.5-4.69,6.5-8.73V4.5L10,2z M15,9.27c0,3.26-2.13,6.27-5,7.17 c-2.87-0.9-5-3.91-5-7.17V5.53l5-1.92l5,1.92V9.27z\\\"></path><path d=\\\"M7.65,11.7c1.36,1.69,3.98,1.75,5.41,0.06c0.18-0.21,0.06-0.53-0.21-0.58c-1-0.17-1.93-0.76-2.48-1.71s-0.6-2.05-0.25-3 c0.1-0.25-0.13-0.51-0.39-0.47C7.14,6.48,5.94,9.59,7.65,11.7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"gas_meter\": {\n    \"name\": \"gas_meter\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16,6H8C6.9,6,6,6.9,6,8v10c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V8C18,6.9,17.1,6,16,6z M12,18 c-1.38,0-2.5-1.1-2.5-2.46c0-1.09,0.43-1.39,2.5-3.79c2.05,2.38,2.5,2.7,2.5,3.79C14.5,16.9,13.38,18,12,18z M16,10H8V8h8V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,4h-1V2h-2v2h-2V2H9v2H8C5.79,4,4,5.79,4,8v10c0,2.21,1.79,4,4,4h8c2.21,0,4-1.79,4-4V8C20,5.79,18.21,4,16,4z M18,18 c0,1.1-0.9,2-2,2H8c-1.1,0-2-0.9-2-2V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V18z\\\"></path><path d=\\\"M9.5,15.54C9.5,16.9,10.62,18,12,18s2.5-1.1,2.5-2.46c0-1.09-0.45-1.41-2.5-3.79C9.93,14.15,9.5,14.46,9.5,15.54z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,5H7C6.17,5,5.5,5.67,5.5,6.5V15c0,0.83,0.67,1.5,1.5,1.5h6c0.83,0,1.5-0.67,1.5-1.5V6.5 C14.5,5.67,13.83,5,13,5z M10,14.5c-1.1,0-2-0.88-2-1.97c0-0.87,0.35-1.11,2-3.03c1.64,1.91,2,2.16,2,3.03 C12,13.62,11.1,14.5,10,14.5z M13,8H7V6.5h6V8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,3.5h-0.5V2H11v1.5H9V2H7.5v1.5H7c-1.66,0-3,1.34-3,3V15c0,1.66,1.34,3,3,3h6c1.66,0,3-1.34,3-3V6.5 C16,4.84,14.66,3.5,13,3.5z M14.5,15c0,0.83-0.67,1.5-1.5,1.5H7c-0.83,0-1.5-0.67-1.5-1.5V6.5C5.5,5.67,6.17,5,7,5h6 c0.83,0,1.5,0.67,1.5,1.5V15z\\\"></path><path d=\\\"M8,12.53c0,1.09,0.9,1.97,2,1.97s2-0.88,2-1.97c0-0.87-0.36-1.13-2-3.03C8.35,11.42,8,11.66,8,12.53z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"7\\\" y=\\\"6.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"auto_mode\": {\n    \"name\": \"auto_mode\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19.03,3.56c-1.67-1.39-3.74-2.3-6.03-2.51v2.01c1.73,0.19,3.31,0.88,4.61,1.92L19.03,3.56z\\\"></path><path d=\\\"M11,3.06V1.05C8.71,1.25,6.64,2.17,4.97,3.56l1.42,1.42C7.69,3.94,9.27,3.25,11,3.06z\\\"></path><path d=\\\"M4.98,6.39L3.56,4.97C2.17,6.64,1.26,8.71,1.05,11h2.01C3.25,9.27,3.94,7.69,4.98,6.39z\\\"></path><path d=\\\"M20.94,11h2.01c-0.21-2.29-1.12-4.36-2.51-6.03l-1.42,1.42C20.06,7.69,20.75,9.27,20.94,11z\\\"></path><polygon points=\\\"7,12 10.44,13.56 12,17 13.56,13.56 17,12 13.56,10.44 12,7 10.44,10.44\\\"></polygon><path d=\\\"M12,21c-3.11,0-5.85-1.59-7.46-4H7v-2H1v6h2v-2.7c1.99,2.84,5.27,4.7,9,4.7c4.87,0,9-3.17,10.44-7.56l-1.96-0.45 C19.25,18.48,15.92,21,12,21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.81,3.13c-1.39-1.18-3.14-1.93-5.06-2.09v1.5c1.51,0.15,2.88,0.75,3.99,1.66L15.81,3.13z\\\"></path><path d=\\\"M10,17.5c-2.66,0-4.98-1.41-6.31-3.5h2.06v-1.5H1v4.75h1.5v-2.29C4.11,17.39,6.86,19,10,19c4.01,0,7.41-2.63,8.57-6.25 l-1.47-0.34C16.09,15.36,13.29,17.5,10,17.5z\\\"></path><path d=\\\"M9.25,2.54v-1.5C7.33,1.19,5.58,1.96,4.2,3.14L5.26,4.2C6.37,3.29,7.74,2.69,9.25,2.54z\\\"></path><path d=\\\"M4.2,5.26L3.14,4.2C1.96,5.59,1.2,7.33,1.04,9.25h1.5C2.69,7.74,3.29,6.37,4.2,5.26z\\\"></path><polygon points=\\\"6,10 8.75,11.25 10,14 11.25,11.25 14,10 11.25,8.75 10,6 8.75,8.75\\\"></polygon><path d=\\\"M17.46,9.25h1.51c-0.16-1.92-0.92-3.67-2.1-5.06L15.8,5.26C16.71,6.37,17.31,7.74,17.46,9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"sensor_door\": {\n    \"name\": \"sensor_door\",\n    \"keywords\": [\n      \"home\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,4v16H6V4H18 M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5 S16.33,10.5,15.5,10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,4v16H6V4H18 M18,2H6C4.9,2,4,2.9,4,4v18h16V4C20,2.9,19.1,2,18,2L18,2z M15.5,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5c0.83,0,1.5-0.67,1.5-1.5S16.33,10.5,15.5,10.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,4v12H5V4H15 M13,9c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S13.55,9,13,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,4v12H5V4H15 M15,3H5C4.45,3,4,3.45,4,4v13h12V4C16,3.45,15.55,3,15,3L15,3z M13,9c-0.55,0-1,0.45-1,1s0.45,1,1,1 s1-0.45,1-1S13.55,9,13,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fire_extinguisher\": {\n    \"name\": \"fire_extinguisher\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,19h10v1c0,1.1-0.9,2-2,2H9c-1.1,0-2-0.9-2-2V19z M7,18h10v-5H7V18z M17,3v6l-3.15-0.66c-0.01,0-0.01,0.01-0.02,0.02 c1.55,0.62,2.72,1.98,3.07,3.64H7.1c0.34-1.66,1.52-3.02,3.07-3.64c-0.33-0.26-0.6-0.58-0.8-0.95L5,6.5v-1l4.37-0.91 C9.87,3.65,10.86,3,12,3c0.7,0,1.34,0.25,1.85,0.66L17,3z M13,6c-0.03-0.59-0.45-1-1-1s-1,0.45-1,1s0.45,1,1,1S13,6.55,13,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"countertops\": {\n    \"name\": \"countertops\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22,10h-4V7c0-1.66-1.34-3-3-3c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1v3H8c1.1,0,2-0.9,2-2V4H4v4 c0,1.1,0.9,2,2,2H2v2h2v8h16v-8h2V10z M6,6h2v2H6V6z M6,18v-6h5v6H6z M18,18h-5v-6h5V18z\\\"></path>\"\n      }\n    }\n  },\n  \"room_service\": {\n    \"name\": \"room_service\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 9.58c-2.95 0-5.47 1.83-6.5 4.41h13c-1.03-2.58-3.55-4.41-6.5-4.41z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 17h20v2H2zm11.84-9.21c.1-.24.16-.51.16-.79 0-1.1-.9-2-2-2s-2 .9-2 2c0 .28.06.55.16.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21zM12 9.58c2.95 0 5.47 1.83 6.5 4.41h-13c1.03-2.58 3.55-4.41 6.5-4.41z\\\"></path>\"\n      }\n    }\n  },\n  \"roofing\": {\n    \"name\": \"roofing\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"16\\\"></rect><path d=\\\"M13,18h-2v-2h2V18z M15,14H9v6h6V14L15,14z M19,9.3L19,9.3V4h-3v2.6v0L12,3L2,12h3l7-6.31L19,12h3L19,9.3z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator_warning\": {\n    \"name\": \"escalator_warning\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.5,2c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S5.4,2,6.5,2z M15.5,9.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S17.83,8,17,8S15.5,8.67,15.5,9.5z M18.5,12h-2.84c-0.58,0.01-1.14,0.32-1.45,0.86l-0.92,1.32L9.72,8C9.35,7.37,8.69,7.01,8.01,7H5 C3.9,7,3,7.9,3,9v6h1.5v7h5V11.61L12.03,16h2.2L15,14.9V22h4v-5h1v-3.5C20,12.68,19.33,12,18.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"airport_shuttle\": {\n    \"name\": \"airport_shuttle\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 14h.78c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1h7.56c.55-.61 1.34-1 2.22-1s1.67.39 2.22 1H21v-2H3v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 5H3c-1.1 0-2 .89-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zm-2 2h1l3 3h-4V7zM9 7h4v3H9V7zM3 7h4v3H3V7zm3 10.25c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zm12 0c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25zM21 14h-.78c-.55-.61-1.34-1-2.22-1s-1.67.39-2.22 1H8.22c-.55-.61-1.33-1-2.22-1s-1.67.39-2.22 1H3v-2h18v2z\\\"></path>\"\n      }\n    }\n  },\n  \"grass\": {\n    \"name\": \"grass\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,20H2v-2h5.75l0,0C7.02,15.19,4.81,12.99,2,12.26C2.64,12.1,3.31,12,4,12C8.42,12,12,15.58,12,20z M22,12.26 C21.36,12.1,20.69,12,20,12c-2.93,0-5.48,1.58-6.88,3.93c0.29,0.66,0.53,1.35,0.67,2.07c0.13,0.65,0.2,1.32,0.2,2h2h6v-2h-5.75 C16.98,15.19,19.19,12.99,22,12.26z M15.64,11.02c0.78-2.09,2.23-3.84,4.09-5C15.44,6.16,12,9.67,12,14c0,0.01,0,0.02,0,0.02 C12.95,12.75,14.2,11.72,15.64,11.02z M11.42,8.85C10.58,6.66,8.88,4.89,6.7,4C8.14,5.86,9,8.18,9,10.71c0,0.21-0.03,0.41-0.04,0.61 c0.43,0.24,0.83,0.52,1.22,0.82C10.39,10.96,10.83,9.85,11.42,8.85z\\\"></path>\"\n      }\n    }\n  },\n  \"no_drinks\": {\n    \"name\": \"no_drinks\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"14.77,9 11.83,9 13.38,10.56\\\"></polygon><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l8.23,8.23L11,14v5H6v2h12v-0.17l1.78,1.78L21.19,21.19z M13,19v-3.17L16.17,19H13z M7.83,5l-2-2H21v2l-6.2,6.97l-1.42-1.42L14.77,9h-2.94l-2-2h6.74l1.78-2H7.83z\\\"></path></g>\"\n      }\n    }\n  },\n  \"wheelchair_pickup\": {\n    \"name\": \"wheelchair_pickup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M4.5,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S4.5,5.11,4.5,4z M10,10.95V9c0-1.1-0.9-2-2-2H5C3.9,7,3,7.9,3,9v6h2v7 h3.5v-0.11c-1.24-1.26-2-2.99-2-4.89C6.5,14.42,7.91,12.16,10,10.95z M16.5,17c0,1.65-1.35,3-3,3s-3-1.35-3-3 c0-1.11,0.61-2.06,1.5-2.58v-2.16C9.98,12.9,8.5,14.77,8.5,17c0,2.76,2.24,5,5,5s5-2.24,5-5H16.5z M19.54,14H15V8h-2v8h5.46 l2.47,3.71l1.66-1.11L19.54,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"kitchen\": {\n    \"name\": \"kitchen\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 5h2v3H8zm0 7h2v5H8zm-2 8h12v-9.02H6V20zm2-8h2v5H8v-5zM6 9h12V4H6v5zm2-4h2v3H8V5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 2.01 6 2a2 2 0 00-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z\\\"></path>\"\n      }\n    }\n  },\n  \"fitness_center\": {\n    \"name\": \"fitness_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"do_not_touch\": {\n    \"name\": \"do_not_touch\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,15.17V13h-2.17L18,15.17z M9,11.83l8.14,8.14C17.09,19.98,17.05,20,17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9L9,11.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22L7,9.83l0,4.3l-2.6-1.48c-0.17-0.09-0.34-0.14-0.54-0.14c-0.26,0-0.5,0.09-0.7,0.26L2,13.88l6.8,7.18 c0.57,0.6,1.35,0.94,2.18,0.94H17c0.62,0,1.18-0.19,1.66-0.52l1.12,1.12l1.41-1.41L2.81,2.81z M17,20h-6 c-0.39,0-0.64-0.23-0.75-0.36L6.87,16H9l0-4.17l8.14,8.14C17.09,19.98,17.05,20,17,20z M13.83,11H14V3.25C14,2.56,14.56,2,15.25,2 s1.25,0.56,1.25,1.25V11h1V5.25C17.5,4.56,18.06,4,18.75,4S20,4.56,20,5.25v11.92l-2-2V13h-2.17L13.83,11z M13,10.17V2.25 C13,1.56,12.44,1,11.75,1S10.5,1.56,10.5,2.25v5.42L13,10.17z M9.5,6.67V4.25C9.5,3.56,8.94,3,8.25,3c-0.67,0-1.2,0.53-1.24,1.18v0 L9.5,6.67z\\\"></path></g>\"\n      }\n    }\n  },\n  \"child_care\": {\n    \"name\": \"child_care\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 10c-.1 0-.19.02-.29.03-.2-.67-.49-1.29-.86-1.86C16.6 6.26 14.45 5 12 5S7.4 6.26 6.15 8.17c-.37.57-.66 1.19-.86 1.86-.1-.01-.19-.03-.29-.03-1.1 0-2 .9-2 2s.9 2 2 2c.1 0 .19-.02.29-.03.2.67.49 1.29.86 1.86C7.4 17.74 9.55 19 12 19s4.6-1.26 5.85-3.17c.37-.57.66-1.19.86-1.86.1.01.19.03.29.03 1.1 0 2-.9 2-2s-.9-2-2-2zm-4.5-.75c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zm-5 0c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25zM12 17c-2.01 0-3.74-1.23-4.5-3h9c-.76 1.77-2.49 3-4.5 3z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"10.5\\\" r=\\\"1.25\\\"></circle><path d=\\\"M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66c-.25-1.51-1.36-2.74-2.81-3.17-.53-1.12-1.28-2.1-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91-1.45.43-2.56 1.65-2.81 3.17-.04.21-.06.43-.06.66 0 .23.02.45.06.66.25 1.51 1.36 2.74 2.81 3.17.52 1.11 1.27 2.09 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89 1.44-.43 2.55-1.65 2.8-3.17.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"holiday_village\": {\n    \"name\": \"holiday_village\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8,6.83l-4,4V18h3v-3h2v3h3v-7.17L8,6.83z M9,13H7v-2h2V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,4l-6,6v10h12V10L8,4z M12,18H9v-3H7v3H4v-7.17l4-4l4,4V18z M9,13H7v-2h2V13z M18,20V8.35L13.65,4h-2.83L16,9.18V20H18z M22,20V6.69L19.31,4h-2.83L20,7.52V20H22z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,6.12l-3,3v5.38h2.25v-2.25h1.5v2.25H10V9.12L7,6.12z M7.75,10.75h-1.5v-1.5h1.5V10.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,4L2.5,8.5V16h9V8.5L7,4z M10,14.5H7.75v-2.25h-1.5v2.25H4V9.12l3-3l3,3V14.5z M7.75,10.75h-1.5v-1.5h1.5V10.75z M14.5,16 V7.26L11.24,4H9.12L13,7.88V16H14.5z M17.5,16V6.02L15.48,4h-2.12L16,6.64V16H17.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_photography\": {\n    \"name\": \"no_photography\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.94,8.12L8.9,6.07L9.88,5h4.24l1.83,2H20v10.17l-3.12-3.12 C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5C11.64,8,11.29,8.04,10.94,8.12z M12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12h12.17l-1.68-1.68C13.76,17.75,12.91,18,12,18z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.9,6.07L7.48,4.66L9,3h6l1.83,2H20c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L20,17.17V7h-4.05l-1.83-2H9.88 L8.9,6.07z M20.49,23.31L18.17,21H4c-1.1,0-2-0.9-2-2V7c0-0.59,0.27-1.12,0.68-1.49l-2-2L2.1,2.1L7,7l2.01,2.01l1.43,1.43l4.1,4.1 l1.43,1.43L19,19l1.82,1.82l1.08,1.08L20.49,23.31z M9.19,12.02C9.08,12.33,9,12.65,9,13c0,1.65,1.35,3,3,3 c0.35,0,0.67-0.08,0.98-0.19L9.19,12.02z M16.17,19l-1.68-1.68C13.76,17.75,12.91,18,12,18c-2.76,0-5-2.24-5-5 c0-0.91,0.25-1.76,0.68-2.49L4.17,7H4v12H16.17z M14.81,11.98l2.08,2.08C16.96,13.71,17,13.36,17,13c0-2.76-2.24-5-5-5 c-0.36,0-0.71,0.04-1.06,0.12l2.08,2.08C13.85,10.5,14.5,11.15,14.81,11.98z\\\"></path></g>\"\n      }\n    }\n  },\n  \"no_meeting_room\": {\n    \"name\": \"no_meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5H8.12L12 8.88V6zM7 19h5v-4.46l-5-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 5v3.88l2 2V6h3v7.88l2 2V4h-5V3H6.12l2 2zM2.41 2.13L1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41L2.41 2.13zM12 19H7V9.54l5 5V19z\\\"></path>\"\n      }\n    }\n  },\n  \"no_food\": {\n    \"name\": \"no_food\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.16,11c-1.43,0.07-3.52,0.57-4.54,2h6.55L8.16,11z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M1,21h15.01v0.98c0,0.56-0.45,1.01-1.01,1.01H2.01C1.45,22.99,1,22.54,1,21.98V21z M20.49,23.31L16,18.83V19H1v-2h13.17 l-2-2H1c0-3.24,2.46-5.17,5.38-5.79l-5.7-5.7L2.1,2.1L13,13l2,2l6.9,6.9L20.49,23.31z M10.17,13l-2-2c-1.42,0.06-3.52,0.56-4.55,2 H10.17z M23,5h-5V1h-2v4h-5l0.23,2h9.56l-1,9.97l1.83,1.83L23,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"water_damage\": {\n    \"name\": \"water_damage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,5.69l-5,4.5V18h10v-7.81L12,5.69z M12,16c-1.1,0-2-0.9-2-2c0-1.1,2-4,2-4s2,2.9,2,4 C14,15.1,13.1,16,12,16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,3L2,12h3v8h14v-8h3L12,3z M7,18v-7.81l5-4.5l5,4.5V18H7z M14,14c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,2-4,2-4 S14,12.9,14,14z\\\"></path>\"\n      }\n    }\n  },\n  \"crib\": {\n    \"name\": \"crib\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,14H6V8c0-1.1,0.9-2,2-2h2v5h8V14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,9h-6V4H8C5.79,4,4,5.79,4,8v6c0,1.1,0.9,2,2,2h2v2.93c-0.61-0.35-1.16-0.78-1.65-1.27l-1.42,1.42 C6.74,20.88,9.24,22,12,22c2.76,0,5.26-1.12,7.07-2.93l-1.42-1.42c-0.49,0.49-1.05,0.92-1.65,1.27V16h2c1.1,0,2-0.9,2-2v-3 C20,9.9,19.1,9,18,9z M14,19.75C13.36,19.91,12.69,20,12,20c-0.69,0-1.36-0.09-2-0.25V16h4V19.75z M18,14H6V8c0-1.1,0.9-2,2-2h2v5h8 V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.5,12V7c0-0.83,0.67-1.5,1.5-1.5h1.5v4h6V12H5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,12V9.5C16,8.67,15.33,8,14.5,8H10V4H7C5.34,4,4,5.34,4,7v5c0,0.83,0.67,1.5,1.5,1.5H7v2.27 c-0.59-0.31-1.13-0.7-1.59-1.17l-1.06,1.06C5.79,17.1,7.79,18,10,18c2.21,0,4.21-0.9,5.66-2.34l-1.06-1.06 c-0.47,0.47-1,0.86-1.59,1.17l0-2.27h1.5C15.33,13.5,16,12.83,16,12z M11.5,16.33c-0.48,0.11-0.98,0.17-1.5,0.17 s-1.02-0.06-1.5-0.17V13.5h3V16.33z M5.5,12V7c0-0.83,0.67-1.5,1.5-1.5h1.5v4h6V12H5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"escalator\": {\n    \"name\": \"escalator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5L19,5l0,14H5V5H19 M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17 c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,5L19,5l0,14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2l0-14C21,3.9,20.1,3,19,3L19,3z M17,6h-3.3l-5,9H7c-0.83,0-1.5,0.67-1.5,1.5S6.17,18,7,18h3.3l5-9H17c0.83,0,1.5-0.67,1.5-1.5S17.83,6,17,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"pool\": {\n    \"name\": \"pool\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64s-1.73-.37-2.18-.64c-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2H22zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"16.5\\\" cy=\\\"5.5\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><path d=\\\"M22 16.5h-.02.02zM10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1zm-4.65 7.5c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z\\\"></path><circle cx=\\\"16.5\\\" cy=\\\"5.5\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"beach_access\": {\n    \"name\": \"beach_access\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.6 7.6c-.47 2.34.03 4.78 1.39 6.83l5.45-5.45c-1.53-1.02-3.28-1.56-5.08-1.56-.6 0-1.19.06-1.76.18zM13.12 5c-.93 0-1.82.16-2.67.46 1.91.19 3.79.89 5.44 2.07l1.39-1.39C16.03 5.4 14.61 5 13.12 5zM5 13.12c0 1.49.4 2.91 1.14 4.15l1.39-1.39c-1.18-1.65-1.88-3.52-2.07-5.44-.3.86-.46 1.76-.46 2.68z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.126 14.56l1.428-1.428 6.442 6.442-1.43 1.428zM13.12 3c-2.58 0-5.16.98-7.14 2.95l-.01.01c-3.95 3.95-3.95 10.36 0 14.31l14.3-14.31C18.3 3.99 15.71 3 13.12 3zM6.14 17.27C5.4 16.03 5 14.61 5 13.12c0-.93.16-1.82.46-2.67.19 1.91.89 3.79 2.07 5.44l-1.39 1.38zm2.84-2.84C7.63 12.38 7.12 9.93 7.6 7.6c.58-.12 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.56l-5.45 5.45zm1.47-8.97c.85-.3 1.74-.46 2.67-.46 1.49 0 2.91.4 4.15 1.14l-1.39 1.39c-1.65-1.18-3.52-1.88-5.43-2.07z\\\"></path>\"\n      }\n    }\n  },\n  \"stairs\": {\n    \"name\": \"stairs\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M19,5v14H5V5H19 M18,6h-4.42v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M18,6h-4.42 v3.33H11v3.33H8.42V16H6v2h4.42v-3.33H13v-3.33h2.58V8H18V6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"family_restroom\": {\n    \"name\": \"family_restroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4c0-1.11,0.89-2,2-2s2,0.89,2,2s-0.89,2-2,2S16,5.11,16,4z M20,22v-6h2.5l-2.54-7.63C19.68,7.55,18.92,7,18.06,7h-0.12 c-0.86,0-1.63,0.55-1.9,1.37l-0.86,2.58C16.26,11.55,17,12.68,17,14v8H20z M12.5,11.5c0.83,0,1.5-0.67,1.5-1.5s-0.67-1.5-1.5-1.5 S11,9.17,11,10S11.67,11.5,12.5,11.5z M5.5,6c1.11,0,2-0.89,2-2s-0.89-2-2-2s-2,0.89-2,2S4.39,6,5.5,6z M7.5,22v-7H9V9 c0-1.1-0.9-2-2-2H4C2.9,7,2,7.9,2,9v6h1.5v7H7.5z M14,22v-4h1v-4c0-0.82-0.68-1.5-1.5-1.5h-2c-0.82,0-1.5,0.68-1.5,1.5v4h1v4H14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rice_bowl\": {\n    \"name\": \"rice_bowl\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39 H19.66\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.66,14c-0.66,1.92-2.24,3.54-4.4,4.39L14,18.88V20h-4v-1.12l-1.27-0.5c-2.16-0.85-3.74-2.47-4.4-4.39H19.66 M12,2 C6.48,2,2,6.48,2,12c0,3.69,2.47,6.86,6,8.25V22h8v-1.75c3.53-1.39,6-4.56,6-8.25h0C22,6.48,17.52,2,12,2L12,2z M10,12V4.26 C10.64,4.1,11.31,4,12,4s1.36,0.1,2,0.26V12H10L10,12z M16,12V5.08c2.39,1.39,4,3.96,4,6.92H16L16,12z M4,12 c0-2.95,1.61-5.53,4-6.92V12H4L4,12z\\\"></path>\"\n      }\n    }\n  },\n  \"chalet\": {\n    \"name\": \"chalet\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"13,18 11,18 11,15 9,15 9,18 7,18 7,13.33 10,10.33 13,13.33\\\"></polygon><path d=\\\"M17.5,15L10,7.5L2.5,15l1.41,1.41L5,15.33V20h10v-4.67l1.09,1.09L17.5,15z M13,18h-2v-3H9v3H7v-4.67l3-3l3,3V18z M22,7.5 h-1.19l0.75,0.75l-0.71,0.71L19.39,7.5H18.5v0.89l1.45,1.45l-0.71,0.71L18.5,9.81V11h-1V9.81l-0.75,0.75l-0.71-0.71l1.45-1.45V7.5 h-0.89l-1.45,1.45l-0.71-0.71l0.75-0.75H14v-1h1.19l-0.75-0.75l0.71-0.71l1.45,1.45h0.89V5.61l-1.45-1.45l0.71-0.71l0.75,0.75V3h1 v1.19l0.75-0.75l0.71,0.71L18.5,5.61V6.5h0.89l1.45-1.45l0.71,0.71L20.81,6.5H22V7.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"10.5,14.5 9,14.5 9,12 7.5,12 7.5,14.5 5.94,14.5 5.94,10.95 8.27,8.62 10.5,10.87\\\"></polygon><path d=\\\"M8.27,6.5L2.5,12.27l1.06,1.06l0.88-0.88L4.5,16H12v-3.62l0.94,0.94L14,12.27L8.27,6.5z M10.5,14.5H9V12H7.5v2.5H5.94v-3.55 l2.32-2.32l2.23,2.25V14.5z M18,6.5h-1.39l0.9,0.9l-0.35,0.35L15.9,6.5H15v0.9l1.25,1.25L15.9,9L15,8.11V9.5h-0.5V8.11L13.6,9 l-0.35-0.35L14.5,7.4V6.5h-0.9l-1.25,1.25L12,7.4l0.9-0.9H11.5V6h1.39L12,5.1l0.35-0.35L13.6,6h0.9V5.1l-1.25-1.25L13.6,3.5l0.9,0.9 V3H15v1.39l0.9-0.9l0.35,0.35L15,5.1V6h0.9l1.25-1.25L17.5,5.1L16.61,6H18V6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"fence\": {\n    \"name\": \"fence\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g opacity=\\\".3\\\"><path d=\\\"M16,6.83l1,1V10h-2V7.83l0.41-0.41L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2 V14z\\\"></path></g><g><path d=\\\"M21,12v-2h-2V7l-3-3l-2,2l-2-2l-2,2L8,4L5,7v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2H21z M16,6.83l1,1V10h-2V7.83l0.41-0.41 L16,6.83z M12,6.83l0.59,0.59L13,7.83V10h-2V7.83l0.41-0.41L12,6.83z M11,14v-2h2v2H11z M13,16v2h-2v-2H13z M7,7.83l1-1l0.59,0.59 L9,7.83V10H7V7.83z M7,12h2v2H7V12z M7,16h2v2H7V16z M17,18h-2v-2h2V18z M17,14h-2v-2h2V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"night_shelter\": {\n    \"name\": \"night_shelter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,5.5l6,4.5v9H6v-9L12,5.5 M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4C17,12.9,16.1,12,15,12z M9.75,12.5 c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75C11,13.06,10.44,12.5,9.75,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M15,12h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4 C17,12.9,16.1,12,15,12z M9.75,12.5c-0.69,0-1.25,0.56-1.25,1.25C8.5,14.44,9.06,15,9.75,15S11,14.44,11,13.75 C11,13.06,10.44,12.5,9.75,12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_flash\": {\n    \"name\": \"no_flash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M13.42,16.24l2.55,2.55L15.96,20H4v-8.6h3.02l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5C11.68,19,13.07,17.82,13.42,16.24z M16,13.17l0-1.77h-1.77L16,13.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.4,5.6H22L19,11V7h-1V2h4L20.4,5.6z M16,11.4v1.77l2,2V11c0-0.88-0.72-1.6-1.6-1.6h-2.54L12.58,8h-1.75l3.4,3.4H16z M17.97,17.97L2.1,2.1L0.69,3.51l5.66,5.66L6.14,9.4H3.6C2.72,9.4,2,10.12,2,11v9.4C2,21.28,2.72,22,3.6,22h12.8 c0.75,0,1.38-0.52,1.55-1.22l2.54,2.54l1.41-1.41L17.97,17.97z M11.5,15.5c0,0.83-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5 S9.17,14,10,14S11.5,14.67,11.5,15.5z M15.96,20H4v-8.6h2.14h0.88l0.59-0.65l0.15-0.16l1.5,1.5C7.68,12.43,6.5,13.82,6.5,15.5 c0,1.93,1.57,3.5,3.5,3.5c1.68,0,3.07-1.18,3.42-2.76l2.55,2.55L15.96,20z\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      }\n    }\n  },\n  \"balcony\": {\n    \"name\": \"balcony\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,16H5v4h2V16z M11,16H9v4h2V16z M6,10v4h5V4.08C8.16,4.56,6,7.03,6,10z M10,12H8v-2h2V12z M13,4.08V14h5v-4 C18,7.03,15.84,4.56,13,4.08z M16,12h-2v-2h2V12z M15,16h-2v4h2V16z M19,16h-2v4h2V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,10v2H8v-2H10z M16,12v-2h-2v2H16z M21,14v8H3v-8h1v-4c0-4.42,3.58-8,8-8s8,3.58,8,8v4H21z M7,16H5v4h2V16z M11,16H9v4h2 V16z M11,4.08C8.16,4.56,6,7.03,6,10v4h5V4.08z M13,14h5v-4c0-2.97-2.16-5.44-5-5.92V14z M15,16h-2v4h2V16z M19,16h-2v4h2V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.12,13.5H4.5v3h1.62V13.5z M9.25,13.5H7.62v3h1.62V13.5z M9.25,3.56C7.12,3.92,5.5,5.77,5.5,8v4h3.75 L9.25,3.56z M8.5,10H7V8.5h1.5V10z M10.75,3.56V12h3.75V8C14.5,5.77,12.88,3.92,10.75,3.56z M13,10h-1.5V8.5H13V10z M12.38,13.5 h-1.62v3h1.62V13.5z M15.5,13.5h-1.62v3h1.62V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.5,8.5V10H7V8.5H8.5z M13,10V8.5h-1.5V10H13z M17,12v6H3v-6h1V8c0-3.31,2.69-6,6-6s6,2.69,6,6v4H17z M6.12,13.5H4.5v3 h1.62V13.5z M9.25,13.5H7.62v3h1.62V13.5z M9.25,12l0-8.44C7.12,3.92,5.5,5.77,5.5,8v4H9.25z M10.75,12h3.75V8 c0-2.23-1.62-4.08-3.75-4.44V12z M12.38,13.5h-1.62v3h1.62V13.5z M15.5,13.5h-1.62v3h1.62V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smoking_rooms\": {\n    \"name\": \"smoking_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z\\\"></path>\"\n      }\n    }\n  },\n  \"tapas\": {\n    \"name\": \"tapas\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,10V8h4v2c0,1.1-0.9,2-2,2S16,11.1,16,10z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6 c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5 S10.28,12,10,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22,10V1h-8v9c0,1.86,1.28,3.41,3,3.86V21h-2v2h6v-2h-2v-7.14C20.72,13.41,22,11.86,22,10z M20,3v3h-4V3H20z M16,10V8h4v2 c0,1.1-0.9,2-2,2S16,11.1,16,10z M10,9H8V8h2c1.38,0,2.5-1.12,2.5-2.5C12.5,4.12,11.38,3,10,3H8V1H6v2H4C2.62,3,1.5,4.12,1.5,5.5 C1.5,6.88,2.62,8,4,8h2v1H4c-1.38,0-2.5,1.12-2.5,2.5C1.5,12.88,2.62,14,4,14h2v9h2v-9h2c1.38,0,2.5-1.12,2.5-2.5 C12.5,10.12,11.38,9,10,9z M4,6C3.72,6,3.5,5.78,3.5,5.5S3.72,5,4,5h6c0.28,0,0.5,0.22,0.5,0.5S10.28,6,10,6H4z M10,12H4 c-0.28,0-0.5-0.22-0.5-0.5S3.72,11,4,11h6c0.28,0,0.5,0.22,0.5,0.5S10.28,12,10,12z\\\"></path>\"\n      }\n    }\n  },\n  \"baby_changing_station\": {\n    \"name\": \"baby_changing_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14,8v2h-3L8.31,8.82L7,12.75V22H3V12l1.58-4.63C4.96,6.25,6.22,5.69,7.3,6.18l4.15,1.83L14,8z M8,1C6.9,1,6,1.9,6,3 s0.9,2,2,2s2-0.9,2-2S9.1,1,8,1z M9,19h12v-2H9V19z M19.5,16c0.83,0,1.5-0.67,1.5-1.5c0-0.83-0.67-1.5-1.5-1.5S18,13.67,18,14.5 C18,15.33,18.67,16,19.5,16z M13,12c0-0.55-0.45-1-1-1H9v2h2v1c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2v-3h-2v2h-2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"free_breakfast\": {\n    \"name\": \"free_breakfast\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 13c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V5H6v8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 19h16v2H4zM20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm-4 10c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V5h10v8zm4-5h-2V5h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"no_stroller\": {\n    \"name\": \"no_stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.1,5.27C8.71,5.1,9.35,5,10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67L8.1,5.27z M15,12.17V8.66l-1.61,1.89 L15,12.17z M12.17,15l-1.39-1.39L9.6,15H12.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,20c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S8,18.9,8,20z M15,8.66v3.51l2,2v-7.9C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3c-1.66,0-2.54,1.27-3.18,2.03l-3.5,4.11l1.42,1.42L15,8.66z M19.78,22.61l-1.91-1.91C17.58,21.46,16.86,22,16,22c-1.1,0-2-0.9-2-2c0-0.86,0.54-1.58,1.3-1.87L14.17,17H7.43 c-0.85,0-1.31-1-0.76-1.65l2.69-3.16L1.39,4.22l1.41-1.41l7.86,7.86l1.42,1.42l0,0l9.11,9.11L19.78,22.61z M12.17,15l-1.39-1.39 L9.6,15H12.17z M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.67l1.42,1.42L14.3,4.1C13.03,3.4,11.56,3,10,3C8.77,3,7.6,3.25,6.53,3.7 L8.1,5.27C8.71,5.1,9.35,5,10,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"gite\": {\n    \"name\": \"gite\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,12h10v5H4V12z M20,17h-4v-6.17l2-2v0l2,2V17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,6H9V4H7v2H6l-4,4v9h20v-9L18,6z M4,12h10v5H4V12z M20,17h-4v-6.17l2-2v0l2,2V17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,13.5V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,8.5l-3-3c0,0,0,0,0,0H7.5V4H6v1.5H5l-3,3V15c0,0,0,0,0,0h9.5H13h5c0,0,0,0,0,0L18,8.5C18,8.5,18,8.5,18,8.5z M3.5,13.5 V10h8v3.5H3.5z M16.5,13.5H13V9.12l1.75-1.75l1.75,1.75V13.5z\\\"></path>\"\n      }\n    }\n  },\n  \"stroller\": {\n    \"name\": \"stroller\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,5c0.29,0,0.58,0.02,0.86,0.05L9.49,6.66l-1.4-1.4C8.71,5.09,9.35,5,10,5 M15,8.66V15H9.6L15,8.66 M18.65,3 c-1.66,0-2.54,1.27-3.18,2.03l-8.8,10.32C6.12,16,6.58,17,7.43,17H15c1.1,0,2-0.9,2-2V6.27C17.58,5.59,17.97,5,18.65,5 C19.42,5,20,5.66,20,6.48V7h2V6.48C22,4.56,20.52,3,18.65,3L18.65,3z M10,3C8.03,3,6.21,3.64,4.72,4.72l4.89,4.89l4.7-5.51 C13.03,3.4,11.56,3,10,3L10,3z M16,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,18,16,18L16,18z M6,18c-1.1,0-2,0.9-2,2 s0.9,2,2,2s2-0.9,2-2S7.1,18,6,18L6,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"elevator\": {\n    \"name\": \"elevator\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5v14H5V5H19 M10,18v-4h1v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5 c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,5v14H5V5H19 M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3L19,3z M10,18v-4h1 v-2.5c0-1.1-0.9-2-2-2H8c-1.1,0-2,0.9-2,2V14h1v4H10z M8.5,8.5c0.69,0,1.25-0.56,1.25-1.25S9.19,6,8.5,6S7.25,6.56,7.25,7.25 S7.81,8.5,8.5,8.5z M18,11l-2.5-4L13,11H18z M13,13l2.5,4l2.5-4H13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"iron\": {\n    \"name\": \"iron\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,16H4v-1c0-1.1,0.9-2,2-2h9V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,6c-1.66,0-3,1.34-3,3v4c0,0.55-0.45,1-1,1v-4c0-1.66-1.34-3-3-3h-4c-1.66,0-3,1.34-3,3h2c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1H6c-2.21,0-4,1.79-4,4v3h15v-2c1.66,0,3-1.34,3-3V9c0-0.55,0.45-1,1-1h1V6H21z M15,16H4v-1c0-1.1,0.9-2,2-2h9 V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.4,13H3.6v-0.8c0-0.88,0.72-1.6,1.6-1.6h7.2V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,5.5c-1.1,0-2,0.9-2,2V11c0,0.28-0.22,0.5-0.5,0.5H14V8c0-1.1-0.9-2-2-2H8C6.9,6,6,6.9,6,8h1.5c0-0.28,0.22-0.5,0.5-0.5 h4c0.28,0,0.5,0.22,0.5,0.5v1H5c-1.66,0-3,1.34-3,3v2.5h12V13h0.5c1.1,0,2-0.9,2-2V7.5C16.5,7.22,16.72,7,17,7h1V5.5H17z M12.4,13 H3.6v-0.8c0-0.88,0.72-1.6,1.6-1.6h7.2V13z\\\"></path>\"\n      }\n    }\n  },\n  \"bungalow\": {\n    \"name\": \"bungalow\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,6.78l-3,4.8V19h2v-3h2v3h2v-7.42L12,6.78z M13,14h-2v-2h2V14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,14h-2v-2h2V14z M18.1,16.56L17,14.79V21H7v-6.2l-1.1,1.76L4.2,15.5L12,3l7.8,12.5L18.1,16.56z M15,11.59l-3-4.8l-3,4.8 V19h2v-3h2v3h2V11.59z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,5.83l-2.5,4v5.67h1.75V13h1.5v2.5h1.75V9.83L10,5.83z M10.75,11.5h-1.5V10h1.5V11.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.75,11.5h-1.5V10h1.5V11.5z M16,12.6l-1.27,0.8L14,12.23V17H6v-4.77L5.27,13.4L4,12.6L10,3L16,12.6z M12.5,9.83l-2.5-4 l-2.5,4v5.67h1.75V13h1.5v2.5h1.75V9.83z\\\"></path>\"\n      }\n    }\n  },\n  \"backpack\": {\n    \"name\": \"backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,4.14V2h-3v2h-4V2H7v2.14C5.28,4.59,4,6.14,4,8v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8C20,6.14,18.72,4.59,17,4.14z M18,20H6V8c0-1.1,0.9-2,2-2h8c1.1,0,2,0.9,2,2V20z M7.5,12v2h7v2h2v-4H7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"house\": {\n    \"name\": \"house\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7,10.19V18h2v-6h6v6h2v-7.81l-5-4.5L7,10.19z M14,10h-4c0-1.1,0.9-2,2-2S14,8.9,14,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,9.3V4h-3v2.6L12,3L2,12h3v8h6v-6h2v6h6v-8h3L19,9.3z M17,18h-2v-6H9v6H7v-7.81l5-4.5l5,4.5V18z\\\"></path><path d=\\\"M10,10h4c0-1.1-0.9-2-2-2S10,8.9,10,10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6,8.75V15h2v-4h4v4h2V8.75l-4-3.43L6,8.75z M11,9H9c0-0.55,0.45-1,1-1C10.55,8,11,8.45,11,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,8.29V5h-2v1.57L10,4l-7,6h2v6h4v-4h2v4h4v-6h2L15,8.29z M14,15h-2v-4H8v4H6V8.75l4-3.43l4,3.43V15z\\\"></path><path d=\\\"M9,9h2c0-0.55-0.45-1-1-1C9.45,8,9,8.45,9,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cabin\": {\n    \"name\": \"cabin\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.94,7h-3.89L12,5.52L13.94,7z M7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9z M18,13v2H6v-2H18z M6,19v-2h12v2H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z M12,3L6,7.58V6H4v3.11L1,11.4 l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M13.94,7h-3.89L12,5.52L13.94,7z M7.44,9h9.12L18,10.1V11H6v-0.9L7.44,9z M18,13v2H6v-2H18z M6,19v-2h12v2H6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,5.39L8.54,6.5h2.91L10,5.39z M5.5,8.82V9.5h9V8.82L13.42,8H6.58L5.5,8.82z M5.5,11v1.5h9V11H5.5z M14.5,15.5V14h-9v1.5H14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25C6.59,2.24,7,2.1,7,1.5h1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5z M18.25,9.8l-0.91,1.19L16,9.97V17H4V9.97l-1.34,1.02L1.75,9.8L4,8.08V5.5h1.5v1.44L10,3.5L18.25,9.8z M10,5.39L8.54,6.5h2.91 L10,5.39z M5.5,8.82V9.5h9V8.82L13.42,8H6.58L5.5,8.82z M5.5,11v1.5h9V11H5.5z M14.5,15.5V14h-9v1.5H14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"tty\": {\n    \"name\": \"tty\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M4.13,5C4.3,6.37,4.66,7.71,5.18,8.99l1.65-1.65L6.36,5H4.13z M15.66,16.17l-1.65,1.65 c1.28,0.52,2.63,0.87,3.99,1.05v-2.23L15.66,16.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.2,14.84l-3.67-0.73c-0.33-0.07-0.67,0.04-0.9,0.27L12.1,16.9c-2.5-1.43-4.57-3.5-6-6l2.52-2.52 C8.86,8.14,8.96,7.8,8.9,7.48L8.16,3.8C8.07,3.34,7.66,3,7.18,3H3.03C2.47,3,2,3.47,2.03,4.03C2.2,6.92,3.05,9.63,4.43,12 c1.58,2.73,3.85,4.99,6.57,6.57c2.37,1.37,5.08,2.23,7.97,2.4c0.56,0.03,1.03-0.44,1.03-1v-4.15C20,15.34,19.66,14.93,19.2,14.84z M4.13,5h2.23l0.47,2.34L5.18,8.99C4.66,7.71,4.3,6.37,4.13,5z M18,18.87c-1.37-0.17-2.71-0.53-3.99-1.05l1.65-1.65L18,16.64V18.87 z M14,4h2v2h-2V4z M13,7h2v2h-2V7z M11,4h2v2h-2V4z M18,9h-2V7h2V9z M19,6h-2V4h2V6z M21,9h-2V7h2V9z M22,6h-2V4h2V6z M14,10h2v2 h-2V10z M11,10h2v2h-2V10z M19,12h-2v-2h2V12z M22,12h-2v-2h2V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"room_preferences\": {\n    \"name\": \"room_preferences\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,12.11V5H7v14h4.29C11.1,18.37,11,17.7,11,17C11,15.09,11.76,13.37,13,12.11 z M10,11h2v2h-2V11z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,13h-2v-2h2V13z M7,19V5h6v7.11c0.57-0.59,1.25-1.07,2-1.42V6h2v4h1h1V4h-4V3H5v16H3v2h9.26c-0.42-0.6-0.75-1.28-0.97-2 H7z M21.69,17.63l1.14,1l-1,1.73l-1.45-0.49c-0.32,0.27-0.68,0.48-1.08,0.63L19,22h-2l-0.3-1.49c-0.4-0.15-0.76-0.36-1.08-0.63 l-1.45,0.49l-1-1.73l1.14-1c-0.08-0.5-0.08-0.76,0-1.26l-1.14-1l1-1.73l1.45,0.49c0.32-0.27,0.68-0.48,1.08-0.63L17,12h2l0.3,1.49 c0.4,0.15,0.76,0.36,1.08,0.63l1.45-0.49l1,1.73l-1.14,1C21.77,16.87,21.77,17.13,21.69,17.63z M20,17c0-1.1-0.9-2-2-2s-2,0.9-2,2 s0.9,2,2,2S20,18.1,20,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"checkroom\": {\n    \"name\": \"checkroom\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M21.6,18.2L13,11.75v-0.91c1.65-0.49,2.8-2.17,2.43-4.05c-0.26-1.31-1.3-2.4-2.61-2.7C10.54,3.57,8.5,5.3,8.5,7.5h2 C10.5,6.67,11.17,6,12,6s1.5,0.67,1.5,1.5c0,0.84-0.69,1.52-1.53,1.5C11.43,8.99,11,9.45,11,9.99v1.76L2.4,18.2 C1.63,18.78,2.04,20,3,20h9h9C21.96,20,22.37,18.78,21.6,18.2z M6,18l6-4.5l6,4.5H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"spa\": {\n    \"name\": \"spa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8.55 12c-1.07-.71-2.25-1.27-3.53-1.61 1.28.34 2.46.9 3.53 1.61zm10.43-1.61c-1.29.34-2.49.91-3.57 1.64 1.08-.73 2.28-1.3 3.57-1.64z\\\"></path><path d=\\\"M8.94 12.25c0-.01 0-.01 0 0-.13-.09-.27-.17-.4-.26.13.1.27.17.4.26zm4.41-3.67c-.22-1.21-.66-2.35-1.3-3.38-.66 1.04-1.12 2.19-1.37 3.39.46.3.9.62 1.33.97.42-.35.87-.68 1.34-.98zm3.19 5.08l.01.02c-.09.06-.18.12-.27.17l-.07.05c-.98.71-1.84 1.61-2.53 2.66L12 19.1l-1.67-2.55c-.68-1.03-1.52-1.92-2.51-2.65l-.07-.04c-.13-.08-.26-.16-.39-.25l.01-.01c-.96-.63-2.01-1.07-3.12-1.33.75 3.36 3.16 6.17 6.45 7.35.42.15.84.27 1.28.36.45-.09.89-.21 1.33-.37 3.27-1.17 5.67-3.98 6.43-7.34-1.14.26-2.23.73-3.2 1.39zm-7.55-1.38\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 15.45c-.82-1.25-1.86-2.34-3.06-3.2-.13-.09-.27-.16-.4-.26.13.09.27.17.39.25C6.98 10.83 4.59 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45zm1.32 4.15c-.44.15-.88.27-1.33.37-.44-.09-.87-.21-1.28-.36-3.29-1.18-5.7-3.99-6.45-7.35 1.1.26 2.15.71 3.12 1.33l-.02.01c.13.09.26.18.39.25l.07.04c.99.72 1.84 1.61 2.51 2.65L12 19.1l1.67-2.55c.69-1.05 1.55-1.95 2.53-2.66l.07-.05c.09-.05.18-.11.27-.17l-.01-.02c.98-.65 2.07-1.13 3.21-1.4-.75 3.37-3.15 6.18-6.42 7.35zm2.17-9.97c-.18-2.79-1.31-5.51-3.43-7.63-2.14 2.14-3.32 4.86-3.55 7.63 1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-3.44-4.44c.63 1.03 1.07 2.18 1.3 3.38-.47.3-.91.63-1.34.98-.42-.34-.87-.67-1.33-.97.25-1.2.71-2.35 1.37-3.39z\\\"></path><path d=\\\"M8.99 12.28c-.02-.01-.04-.03-.05-.04 0 0 .01 0 .01.01.01.01.02.02.04.03z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"golf_course\": {\n    \"name\": \"golf_course\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"19.5\\\" cy=\\\"19.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z\\\"></path>\"\n      }\n    }\n  },\n  \"cottage\": {\n    \"name\": \"cottage\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"18,19 13,19 13,15 11,15 11,19 6,19 6,10.1 12,5.52 18,10.1\\\"></polygon><path d=\\\"M12,3L6,7.58V6H4v3.11L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19h-5v-4h-2v4H6v-8.9l6-4.58 l6,4.58V19z M10,1c0,1.66-1.34,3-3,3C6.45,4,6,4.45,6,5H4c0-1.66,1.34-3,3-3c0.55,0,1-0.45,1-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"14.5,15.5 10.75,15.5 10.75,12.5 9.25,12.5 9.25,15.5 5.5,15.5 5.5,8.82 10,5.39 14.5,8.82\\\"></polygon><path d=\\\"M10,3.5L5.5,6.94V5.5H4v2.58L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-3.75v-3h-1.5v3 H5.5V8.82L10,5.39l4.5,3.44V15.5z M8.5,1.5c0,0.9-0.6,2.25-2.25,2.25C5.91,3.76,5.5,3.9,5.5,4.5H4c0-0.9,0.6-2.25,2.25-2.25 C6.59,2.24,7,2.1,7,1.5H8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"vaping_rooms\": {\n    \"name\": \"vaping_rooms\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"10.5\\\" cy=\\\"17.5\\\" opacity=\\\".3\\\" r=\\\".5\\\"></circle><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M22,16v3H8v-3H22z M11,17.5 c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23 c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38 C20.72,8.62,22,10.54,22,12.76z M19.5,13.36V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-1.85,0-3.35-1.5-3.35-3.35 s1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53C17.9,10.2,19.5,11.55,19.5,13.36z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><circle cx=\\\"9\\\" cy=\\\"14\\\" opacity=\\\".3\\\" r=\\\".35\\\"></circle><path d=\\\"M18,15H7v-2h11V15z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5S11.12,9,12.5,9h1 c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M9,13.65c-0.19,0-0.35,0.16-0.35,0.35S8.81,14.35,9,14.35 S9.35,14.19,9.35,14S9.19,13.65,9,13.65z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5 c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1 c1.93,0,3.5,1.57,3.5,3.5V12H18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"casino\": {\n    \"name\": \"casino\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zM16.5 6c.83 0 1.5.67 1.5 1.5S17.33 9 16.5 9 15 8.33 15 7.5 15.67 6 16.5 6zm0 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM12 10.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zM7.5 6C8.33 6 9 6.67 9 7.5S8.33 9 7.5 9 6 8.33 6 7.5 6.67 6 7.5 6zm0 9c.83 0 1.5.67 1.5 1.5S8.33 18 7.5 18 6 17.33 6 16.5 6.67 15 7.5 15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path><circle cx=\\\"7.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"7.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"16.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"16.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"sports_bar\": {\n    \"name\": \"sports_bar\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,19H8l0-6.63c1.26-0.34,2.11-1.27,2.77-1.99C11.6,9.47,12.08,9,13,9l2,0V19z M10,2.02c-1.89,0-3.51,1.11-4.27,2.71 C4.15,5.26,3,6.74,3,8.5c0,1.86,1.28,3.41,3,3.86L6,21h11v-2h2c1.1,0,2-0.9,2-2v-6c0-1.1-0.9-2-2-2h-1.56C17.79,8.41,18,7.73,18,7 c0-2.21-1.79-4-4-4c-0.34,0-0.66,0.05-0.98,0.13C12.2,2.45,11.16,2.02,10,2.02L10,2.02z M7,10.5c-1.1,0-2-0.9-2-2 c0-0.85,0.55-1.6,1.37-1.88l0.8-0.27l0.36-0.76C8,4.62,8.94,4.02,10,4.02c0.79,0,1.39,0.35,1.74,0.65l0.78,0.65 c0,0,0.64-0.32,1.47-0.32c1.1,0,2,0.9,2,2c0,0-3,0-3,0C9.67,7,9.15,10.5,7,10.5C7,10.5,7,10.5,7,10.5L7,10.5z M17,17v-6h2v6H17 L17,17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M12.5,15.5H7v-5.37c0.51-0.15,0.97-0.43,1.34-0.8l1.39-1.39c0.28-0.28,0.66-0.44,1.06-0.44h1.71V15.5z M10.79,6c-0.8,0-1.55,0.31-2.12,0.88L7.28,8.27C6.96,8.59,6.51,8.78,6.02,8.75C5.2,8.7,4.54,8.02,4.5,7.2 C4.46,6.27,5.2,5.5,6.12,5.5c0,0,0,0,0,0c0.14,0,0.27-0.1,0.29-0.24C6.53,4.26,7.39,3.5,8.4,3.5c0.71,0,1.34,0.37,1.69,0.93 c0.07,0.12,0.23,0.15,0.34,0.08c0.27-0.16,0.58-0.26,0.92-0.26c0.96,0,1.75,0.79,1.75,1.75H10.79z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,7.5h-1.27C14.47,7.05,14.6,6.54,14.6,6c0-1.79-1.46-3.25-3.25-3.25c-0.24,0-0.47,0.03-0.69,0.07 C10.05,2.31,9.26,2,8.4,2C6.95,2,5.7,2.89,5.17,4.15C3.91,4.55,3,5.73,3,7.12c0,1.51,1.07,2.77,2.5,3.06V17H14v-1.5h1.5 c0.83,0,1.5-0.67,1.5-1.5V9C17,8.17,16.33,7.5,15.5,7.5z M12.5,15.5H7v-5.37c0.51-0.15,0.97-0.43,1.34-0.8l1.39-1.39 c0.28-0.28,0.66-0.44,1.06-0.44h1.71V15.5z M10.79,6c-0.8,0-1.55,0.31-2.12,0.88L7.28,8.27C6.96,8.59,6.51,8.78,6.02,8.75 C5.2,8.7,4.54,8.02,4.5,7.2C4.46,6.27,5.2,5.5,6.12,5.5c0,0,0,0,0,0c0.14,0,0.27-0.1,0.29-0.24C6.53,4.26,7.39,3.5,8.4,3.5 c0.71,0,1.34,0.37,1.69,0.93c0.07,0.12,0.23,0.15,0.34,0.08c0.27-0.16,0.58-0.26,0.92-0.26c0.96,0,1.75,0.79,1.75,1.75H10.79z M15.5,14H14V9h1.5V14z\\\"></path>\"\n      }\n    }\n  },\n  \"carpenter\": {\n    \"name\": \"carpenter\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.73,14.23L7,1.5L3.11,5.39l8.13,11.67c-0.78,0.78-0.78,2.05,0,2.83l1.41,1.41c0.78,0.78,2.05,0.78,2.83,0l4.24-4.24 C20.51,16.28,20.51,15.01,19.73,14.23z M5.71,5.62L7,4.33l8.49,8.49l-2.81,2.81L5.71,5.62z M14.07,19.88l-1.41-1.41l4.24-4.24 l1.41,1.41L14.07,19.88z\\\"></path>\"\n      }\n    }\n  },\n  \"wash\": {\n    \"name\": \"wash\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M13.5,9C14.33,9,15,8.33,15,7.5C15,6.66,13.5,5,13.5,5S12,6.66,12,7.5C12,8.33,12.67,9,13.5,9z M18.5,1 c0,0-2.5,2.83-2.5,4.5C16,6.88,17.12,8,18.5,8S21,6.88,21,5.5C21,3.83,18.5,1,18.5,1z M18.5,6.5c-0.55,0-1-0.45-1-1 c0-0.4,0.43-1.22,1-2.05c0.57,0.83,1,1.65,1,2.05C19.5,6.05,19.05,6.5,18.5,6.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"house_siding\": {\n    \"name\": \"house_siding\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16v-2h10v2H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,12h3L12,3L2,12h3v8h2v-2h10v2h2V12z M7.21,10h9.58L17,10.19V12H7v-1.81L7.21,10z M14.57,8H9.43L12,5.69L14.57,8z M7,16 v-2h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"child_friendly\": {\n    \"name\": \"child_friendly\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 4.34V8h3.66C18.05 6.3 16.7 4.95 15 4.34zM8.04 14.36l.44.67c1.19.16 2.19.92 2.68 1.97h2.68c.56-1.18 1.77-2 3.16-2 .15 0 .31.01.46.03l.29-.37c.4-.51.7-1.07.92-1.66H7.37c.32.67.57 1.19.67 1.36z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13 2v8h8c0-4.42-3.58-8-8-8zm2 6V4.34c1.7.6 3.05 1.95 3.66 3.66H15zm-8.56 3l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61C20.37 14.54 21 12.84 21 11H6.44zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20zm.74-5.34l-.29.37c-.14-.02-.3-.03-.45-.03-1.39 0-2.6.82-3.16 2h-2.68c-.5-1.04-1.5-1.8-2.68-1.97l-.44-.67c-.1-.17-.34-.69-.67-1.36h11.29c-.21.59-.52 1.15-.92 1.66z\\\"></path>\"\n      }\n    }\n  },\n  \"microwave\": {\n    \"name\": \"microwave\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,18h10V6H4V18z M7.75,8c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61 l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61 L5.37,9.19C5.73,8.79,6.59,8,7.75,8z M7.75,13c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61 l1.42,1.42c-0.36,0.4-1.22,1.19-2.37,1.19c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61 l-1.42-1.42C5.73,13.79,6.59,13,7.75,13z M16,6v12h4V6H16z M18,17c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C19,16.55,18.55,17,18,17z M18,13c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1C19,12.55,18.55,13,18,13z M19,9h-2V7h2V9 z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,6h10v12H4V6z M20,18h-4V6h4V18z M19,9h-2V7h2V9z M18,13L18,13c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,12.55,18.55,13,18,13z M18,17 L18,17c-0.55,0-1-0.45-1-1v0c0-0.55,0.45-1,1-1h0c0.55,0,1,0.45,1,1v0C19,16.55,18.55,17,18,17z M10.25,16 c-0.79,0-1.37-0.38-1.79-0.66C8.13,15.12,7.94,15,7.75,15c-0.37,0-0.8,0.41-0.95,0.61l-1.42-1.42C5.73,13.79,6.59,13,7.75,13 c0.8,0,1.39,0.39,1.81,0.67C9.87,13.88,10.07,14,10.25,14c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,15.21,11.41,16,10.25,16z M10.25,11c-0.79,0-1.37-0.38-1.79-0.66C8.13,10.12,7.94,10,7.75,10c-0.37,0-0.8,0.41-0.95,0.61L5.37,9.19C5.73,8.79,6.59,8,7.75,8 c0.8,0,1.39,0.39,1.81,0.67C9.87,8.88,10.07,9,10.25,9c0.37,0,0.8-0.41,0.95-0.61l1.42,1.42C12.26,10.21,11.41,11,10.25,11z\\\"></path>\"\n      }\n    }\n  },\n  \"hot_tub\": {\n    \"name\": \"hot_tub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"7\\\" cy=\\\"6\\\" r=\\\"2\\\"></circle><path d=\\\"M17.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06zM11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zM13.42 7.21c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06z\\\"></path>\"\n      }\n    }\n  },\n  \"umbrella\": {\n    \"name\": \"umbrella\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.03,8.86L11,14.8V8.29L10.72,8.5L9.96,9.09 L9.03,8.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,6.92L13,5.77V3.88V3.4c0-0.26,0.22-0.48,0.5-0.48c0.28,0,0.5,0.21,0.5,0.48V4h2V3.4C16,2.07,14.88,1,13.5,1 C12.12,1,11,2.07,11,3.4v0.48v1.89L9.5,6.92L6,6.07l5.05,15.25C11.2,21.77,11.6,22,12,22s0.8-0.23,0.95-0.69L18,6.07L14.5,6.92z M13.28,8.5l0.76,0.58l0.92-0.23L13,14.8V8.29L13.28,8.5z M9.96,9.09l0.76-0.58L11,8.29v6.51L9.03,8.86L9.96,9.09z\\\"></path></g>\"\n      }\n    }\n  },\n  \"other_houses\": {\n    \"name\": \"other_houses\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,5.52L6,10.1V19h12v-8.9L12,5.52z M8,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1 C9,14.55,8.55,15,8,15z M12,15c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C13,14.55,12.55,15,12,15z M16,15 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C17,14.55,16.55,15,16,15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,3L1,11.4l1.21,1.59L4,11.62V21h16v-9.38l1.79,1.36L23,11.4L12,3z M18,19H6v-8.9l6-4.58l6,4.58V19z M9,14 c0,0.55-0.45,1-1,1s-1-0.45-1-1c0-0.55,0.45-1,1-1S9,13.45,9,14z M12,13c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1 C11,13.45,11.45,13,12,13z M15,14c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S15,14.55,15,14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,5.39L5.5,8.82v6.68h9V8.82L10,5.39z M7,12.5c-0.41,0-0.75-0.34-0.75-0.75C6.25,11.34,6.59,11,7,11 s0.75,0.34,0.75,0.75C7.75,12.16,7.41,12.5,7,12.5z M10,12.5c-0.41,0-0.75-0.34-0.75-0.75C9.25,11.34,9.59,11,10,11 s0.75,0.34,0.75,0.75C10.75,12.16,10.41,12.5,10,12.5z M13,12.5c-0.41,0-0.75-0.34-0.75-0.75c0-0.41,0.34-0.75,0.75-0.75 s0.75,0.34,0.75,0.75C13.75,12.16,13.41,12.5,13,12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3.5L1.75,9.8l0.91,1.19L4,9.97V17h12V9.97l1.34,1.02l0.91-1.19L10,3.5z M14.5,15.5h-9V8.82L10,5.39l4.5,3.44V15.5z M7.75,11.75c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S6.59,11,7,11S7.75,11.34,7.75,11.75z M10.75,11.75 c0,0.41-0.34,0.75-0.75,0.75s-0.75-0.34-0.75-0.75S9.59,11,10,11S10.75,11.34,10.75,11.75z M13.75,11.75c0,0.41-0.34,0.75-0.75,0.75 s-0.75-0.34-0.75-0.75S12.59,11,13,11S13.75,11.34,13.75,11.75z\\\"></path>\"\n      }\n    }\n  },\n  \"ac_unit\": {\n    \"name\": \"ac_unit\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"all_inclusive\": {\n    \"name\": \"all_inclusive\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2C8.2 7.18 6.84 6.62 5.4 6.62 2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l7.03-6.24c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12c1.02 1.01 2.37 1.57 3.82 1.57 2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z\\\"></path>\"\n      }\n    }\n  },\n  \"dry\": {\n    \"name\": \"dry\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.75,16c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25 c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8 C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75 c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12 l3,0V21z M15.65,4.86l-0.07-0.07c-0.57-0.62-0.82-1.41-0.67-2.2L15,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06 c0.57,0.62,0.82,1.41,0.67,2.2L14.98,9h1.91l0.06-0.43C17.16,7.21,16.68,5.86,15.65,4.86z M19.65,4.86l-0.07-0.07 c-0.57-0.62-0.82-1.41-0.67-2.2L19,2h-1.89l-0.06,0.43c-0.2,1.36,0.27,2.71,1.3,3.72l0.07,0.06c0.57,0.62,0.82,1.41,0.67,2.2 L18.98,9h1.91l0.06-0.43C21.16,7.21,20.68,5.86,19.65,4.86z\\\"></path></g>\"\n      }\n    }\n  },\n  \"soap\": {\n    \"name\": \"soap\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M20,5.5 c0.28,0,0.5,0.22,0.5,0.5S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M10,21H4c-0.55,0-1-0.45-1-1v-6 c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.25,6C14.66,6,15,6.34,15,6.75S14.66,7.5,14.25,7.5S13.5,7.16,13.5,6.75S13.84,6,14.25,6 M14.25,4.5 C13.01,4.5,12,5.51,12,6.75S13.01,9,14.25,9s2.25-1.01,2.25-2.25S15.49,4.5,14.25,4.5L14.25,4.5z M20,5.5c0.28,0,0.5,0.22,0.5,0.5 S20.28,6.5,20,6.5S19.5,6.28,19.5,6S19.72,5.5,20,5.5 M20,4c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S21.1,4,20,4L20,4z M16.5,1 C15.67,1,15,1.67,15,2.5S15.67,4,16.5,4C17.33,4,18,3.33,18,2.5S17.33,1,16.5,1z M20.75,16c0.69,0,1.25-0.56,1.25-1.25 s-0.56-1.25-1.25-1.25H12v-1h6.75c0.69,0,1.25-0.56,1.25-1.25c0-0.67-0.53-1.2-1.18-1.24L8.87,10l1.48-2.6 c0.09-0.17,0.14-0.34,0.14-0.54c0-0.26-0.09-0.5-0.26-0.7L9.12,5l-7.18,6.8C1.34,12.36,1,13.15,1,13.97V20c0,1.66,1.34,3,3,3h13.75 c0.69,0,1.25-0.56,1.25-1.25s-0.56-1.25-1.25-1.25H12v-1h7.75c0.69,0,1.25-0.56,1.25-1.25S20.44,17,19.75,17H12v-1H20.75z M10,21H4 c-0.55,0-1-0.45-1-1v-6c0-0.39,0.23-0.64,0.36-0.75L7,9.87V12l3,0V21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"desk\": {\n    \"name\": \"desk\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"8\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"12\\\"></rect><path d=\\\"M2,6v12h2V8h10v10h2v-2h4v2h2V6H2z M20,14h-4v-2h4V14z M20,10h-4V8h4V10z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"3\\\" x=\\\"13.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"3\\\" x=\\\"13.5\\\" y=\\\"10\\\"></rect><path d=\\\"M2,5v10h1.5V6.5H12V15h1.5v-1.5h3V15H18V5H2z M16.5,12h-3v-2h3V12z M16.5,8.5h-3v-2h3V8.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"do_not_step\": {\n    \"name\": \"do_not_step\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07L14.98,12.15z M12.42,15.26l-1.67-1.68L7.42,16.9 c-0.78,0.78-2.05,0.78-2.83-0.01L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.51,15.68l-1.41-1.41l4.48-4.48L23,11.2L18.51,15.68z M14.98,12.15 M14.98,12.15l3.07-3.07L13.8,4.82l-3.08,3.07 L9.3,6.47L13.8,2l0,0l7.08,7.08l-4.48,4.48L14.98,12.15z M21.18,21.2l-1.41,1.41l-5.94-5.94L10.5,20H1v-2.63 c0-0.84,0.52-1.57,1.3-1.88c0.58-0.23,1.28-0.56,1.97-1.02l1.38,1.38C5.74,15.95,5.87,16,6,16s0.26-0.05,0.36-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.28-1.28c0.27-0.24,0.53-0.51,0.77-0.8l1.27,1.27c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.2-0.2,0.2-0.51,0-0.71l-1.4-1.4c0.19-0.34,0.34-0.72,0.45-1.12l1.71,1.72c0.09,0.1,0.23,0.15,0.35,0.15s0.25-0.05,0.35-0.15 c0.19-0.2,0.19-0.5,0.01-0.7l-7.9-7.9l1.42-1.41L21.18,21.2z M12.42,15.26l-1.67-1.68L7.42,16.9c-0.78,0.78-2.05,0.78-2.83-0.01 L4.4,16.72l-0.47,0.24c-0.29,0.14-0.59,0.27-0.89,0.39L3.03,18h6.64L12.42,15.26z\\\"></path></g>\"\n      }\n    }\n  },\n  \"meeting_room\": {\n    \"name\": \"meeting_room\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 19h6V5H7v14zm3-8h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 19V4h-4V3H5v16H3v2h12V6h2v15h4v-2h-2zm-6 0H7V5h6v14zm-3-8h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"foundation\": {\n    \"name\": \"foundation\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,12h3L12,3L2,12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2V12z M7,15v-4.81l4-3.6V15H7z M13,15V6.59l4,3.6V15H13z\\\"></path>\"\n      }\n    }\n  },\n  \"no_cell\": {\n    \"name\": \"no_cell\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,21h10v-1H7V21z M7,3v1h10V3H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,6v8.17l2,2V3c0-1.1-0.9-1.99-2-1.99L7,1C6.15,1,5.42,1.55,5.13,2.3L8.83,6H17z M7,3h10v1H7V3z M21.19,21.19L2.81,2.81 L1.39,4.22L5,7.83V21c0,1.1,0.9,2,2,2h10c0.85,0,1.58-0.55,1.87-1.3l0.91,0.91L21.19,21.19z M17,21H7v-1h10V21z M7,18V9.83 L15.17,18H7z\\\"></path></g>\"\n      }\n    }\n  },\n  \"business_center\": {\n    \"name\": \"business_center\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 17H9v-1H5v3h14v-3h-4zM4 14h5v-3h6v3h5V9H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 7h-4V5l-2-2h-4L8 5v2H4c-1.1 0-2 .9-2 2v5c0 .75.4 1.38 1 1.73V19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-3.28c.59-.35 1-.99 1-1.72V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm9 14H5v-3h4v1h6v-1h4v3zm-8-4v-2h2v2h-2zm9-1h-5v-3H9v3H4V9h16v5z\\\"></path>\"\n      }\n    }\n  },\n  \"corporate_fare\": {\n    \"name\": \"corporate_fare\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2h4V11z M18,15h-4v2h4V15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,7V3H2v18h20V7H12z M10,19H4v-2h6V19z M10,15H4v-2h6V15z M10,11H4V9h6V11z M10,7H4V5h6V7z M20,19h-8V9h8V19z M18,11h-4v2 h4V11z M18,15h-4v2h4V15z\\\"></path>\"\n      }\n    }\n  },\n  \"food_bank\": {\n    \"name\": \"food_bank\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,5.5l6,4.5v9H6v-9L12,5.5 M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1v-4 c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,5.5l6,4.5v9H6v-9L12,5.5 M12,3L4,9v12h16V9L12,3L12,3z M11.5,9.5v3H11v-3h-1v3H9.5v-3h-1v3c0,0.83,0.67,1.5,1.5,1.5v4h1 v-4c0.83,0,1.5-0.67,1.5-1.5v-3H11.5z M13,11.5v3h1V18h1V9.5C13.9,9.5,13,10.4,13,11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"smoke_free\": {\n    \"name\": \"smoke_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.5 13H22v3h-1.5zM18 13h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM14.5 8.65h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5c-1.85 0-3.35 1.5-3.35 3.35s1.5 3.35 3.35 3.35zM17 13h-2.34L17 15.34zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"houseboat\": {\n    \"name\": \"houseboat\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"13,13 13,11 11,11 11,13 9,13 9,8.18 12,5.98 15,8.18 15,13\\\"></polygon><path d=\\\"M12,16c-1.95,0-2.1,1-3.34,1c-1.19,0-1.42-1-3.33-1C3.38,16,3.24,17,2,17v2c1.9,0,2.17-1,3.35-1c1.19,0,1.42,1,3.33,1 c1.95,0,2.08-1,3.32-1s1.37,1,3.32,1c1.91,0,2.14-1,3.33-1c1.18,0,1.45,1,3.35,1v-2c-1.24,0-1.38-1-3.33-1c-1.91,0-2.14,1-3.33,1 C14.1,17,13.95,16,12,16z M20.34,11.34l-1.37,1.37C18.78,12.89,18.52,13,18.26,13H17V9.65l1.32,0.97L19.5,9L12,3.5L4.5,9l1.18,1.61 L7,9.65V13H5.74c-0.27,0-0.52-0.11-0.71-0.29l-1.37-1.37l-1.41,1.41l1.37,1.37C4.18,14.68,4.95,15,5.74,15h12.51 c0.8,0,1.56-0.32,2.12-0.88l1.37-1.37L20.34,11.34z M13,13v-2h-2v2H9V8.18l3-2.2l3,2.2V13H13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"10.75,11 10.75,9 9.25,9 9.25,11 7.5,11 7.6,6.92 10,5.16 12.4,6.92 12.4,11\\\"></polygon><path d=\\\"M16.74,9.64l-1.07,1.07C15.49,10.89,15.23,11,14.97,11L14,11V8.09l1.11,0.82L16,7.7l-6-4.4L4,7.7l0.89,1.21L6,8.09V11 l-0.97,0c-0.27,0-0.52-0.11-0.71-0.29L3.26,9.64L2.2,10.7l1.07,1.07c0.47,0.47,1.1,0.73,1.77,0.73h9.93c0.66,0,1.3-0.26,1.77-0.73 l1.07-1.07L16.74,9.64z M10.75,11V9h-1.5v2H7.5l0.1-4.08L10,5.16l2.4,1.76V11H10.75z M18,14.5V16c-1.58,0-1.72-1-2.66-1 c-0.95,0-1.08,1-2.67,1c-1.58,0-1.72-1-2.67-1c-0.95,0-1.08,1-2.67,1c-1.59,0-1.72-1-2.67-1C3.72,15,3.58,16,2,16v-1.5 c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1c1.58,0,1.72,1,2.67,1c0.95,0,1.08-1,2.67-1 C16.92,13.5,17.05,14.5,18,14.5z\\\"></path>\"\n      }\n    }\n  },\n  \"no_backpack\": {\n    \"name\": \"no_backpack\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M18,15.17V8c0-1.1-0.9-2-2-2H8.83l6,6h1.67v1.67L18,15.17z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.98,4.15c0.01,0,0.01-0.01,0.02-0.01V2h3v2h4V2h3v2.14c1.72,0.45,3,2,3,3.86v9.17l-2-2V8c0-1.1-0.9-2-2-2H8.83L6.98,4.15z M14.83,12l1.67,1.67V12H14.83z M19.78,22.61l-0.85-0.85C18.65,21.91,18.34,22,18,22H6c-1.1,0-2-0.9-2-2V8 c0-0.36,0.06-0.69,0.15-1.02L1.39,4.22l1.41-1.41l18.38,18.38L19.78,22.61z M17.17,20l-6-6H7.5v-2h1.67L6,8.83V20H17.17z\\\"></path>\"\n      }\n    }\n  },\n  \"bento\": {\n    \"name\": \"bento\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M4,17h8V7H4V17z M8,10.5c0.83,0,1.5,0.67,1.5,1.5S8.83,13.5,8,13.5S6.5,12.83,6.5,12S7.17,10.5,8,10.5z M14,13h6v4h-6V13z M20,7v4h-6V7H20z\\\"></path></g><g><path d=\\\"M20,5H4C2.9,5,2,5.9,2,7v10c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,11h-6V7h6V11z M4,7h8v10H4V7z M14,17v-4h6v4H14z M9.5,12c0,0.83-0.67,1.5-1.5,1.5S6.5,12.83,6.5,12s0.67-1.5,1.5-1.5S9.5,11.17,9.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"vape_free\": {\n    \"name\": \"vape_free\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"10.5\\\" cy=\\\"17.5\\\" opacity=\\\".3\\\" r=\\\".5\\\"></circle><path d=\\\"M2,16.5h1c1.33,0,2.71-0.18,4-0.5v3c-1.29-0.32-2.67-0.5-4-0.5H2V16.5z M16.17,19H8v-3h5.17L1.39,4.22l1.41-1.41 l18.38,18.38l-1.41,1.41L16.17,19z M18.83,16H22v3h-0.17L18.83,16z M11,17.5c0-0.28-0.22-0.5-0.5-0.5S10,17.22,10,17.5 c0,0.28,0.22,0.5,0.5,0.5S11,17.78,11,17.5z M22,12.76V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02,0,1.85-0.83,1.85-1.85 S17.52,3.5,16.5,3.5V2c1.85,0,3.35,1.5,3.35,3.35c0,0.93-0.38,1.77-1,2.38C20.72,8.62,22,10.54,22,12.76z M11.15,8.32 c0-0.01,0-0.01,0-0.02c0-1.85,1.5-3.35,3.35-3.35v1.5c-1.02,0-1.85,0.73-1.85,1.75s0.83,2,1.85,2h1.53c1.87,0,3.47,1.35,3.47,3.16 V15H18v-1.3c0-1.31-0.92-2.05-1.97-2.05H14.5c-0.01,0-0.01,0-0.02,0L11.15,8.32z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9,14.35c-0.19,0-0.35-0.16-0.35-0.35S8.81,13.65,9,13.65S9.35,13.81,9.35,14S9.19,14.35,9,14.35z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.12,13H18v2h-0.88L15.12,13z M13.5,8h-1C11.67,8,11,7.33,11,6.5S11.67,5,12.5,5H13V4h-0.5C11.12,4,10,5.12,10,6.5 S11.12,9,12.5,9h1c0.83,0,1.5,0.67,1.5,1.5V12h1v-1.5C16,9.12,14.88,8,13.5,8z M6,13c-0.98,0.16-2,0.25-3,0.25H2v1.5h1 c1,0,2.02,0.09,3,0.25V13z M18,12v-1.5c0-1.88-1.16-3.5-2.8-4.17C15.69,5.88,16,5.22,16,4.5C16,3.12,14.88,2,13.5,2v1 C14.33,3,15,3.67,15,4.5S14.33,6,13.5,6v1c1.93,0,3.5,1.57,3.5,3.5V12H18z M2.93,2.93L1.87,3.99L10.88,13H7v2h5.88l3.13,3.13 l1.06-1.06L2.93,2.93z M9,14.35c-0.19,0-0.35-0.16-0.35-0.35S8.81,13.65,9,13.65S9.35,13.81,9.35,14S9.19,14.35,9,14.35z\\\"></path></g>\"\n      }\n    }\n  },\n  \"charging_station\": {\n    \"name\": \"charging_station\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17,3v1H7V3H17 M17,20H7v1h10V20\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,11l-3,6v-4h-2l3-6v4H14.5z M17,3H7v1h10V3 M17,20H7v1h10V20 M17,1c1.1,0,2,0.9,2,2v18c0,1.1-0.9,2-2,2H7 c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2H17L17,1z M7,18h10V6H7V18L7,18z\\\"></path></g>\"\n      }\n    }\n  },\n  \"villa\": {\n    \"name\": \"villa\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,9.37l9-3.46V12H9v7H5V9.37z M19,19h-3v-3h-2v3h-3v-5h8V19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,10c-1.1,0-2,0.9-2,2h-1V3L3,8v13h18v-9C21,10.9,20.1,10,19,10z M5,9.37l9-3.46V12H9v7H5V9.37z M19,19h-3v-3h-2v3h-3v-5 h8V19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4.5,7.91l7-2.72V10h-4v5.5h-3V7.91z M15.5,15.5H13V13h-1.5v2.5H9v-4h6.5V15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,8.5C14.67,8.5,14,9.17,14,10h-1V3L3,6.89V17h14v-7C17,9.17,16.33,8.5,15.5,8.5z M4.5,7.91l7-2.72V10h-4v5.5h-3V7.91z M15.5,15.5H13V13h-1.5v2.5H9v-4h6.5V15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"storefront\": {\n    \"name\": \"storefront\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M6.44,9.86L7.02,5H5.05L4.04,9.36c-0.1,0.42-0.01,0.84,0.25,1.17C4.43,10.71,4.73,11,5.23,11 C5.84,11,6.36,10.51,6.44,9.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.71,11C10.45,11,11,10.41,11,9.69V5H9.04L8.49,9.52c-0.05,0.39,0.07,0.78,0.33,1.07 C9.05,10.85,9.37,11,9.71,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.22,11c0.41,0,0.72-0.15,0.96-0.41c0.25-0.29,0.37-0.68,0.33-1.07L14.96,5H13v4.69 C13,10.41,13.55,11,14.22,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.91,4.99L16.98,5l0.58,4.86c0.08,0.65,0.6,1.14,1.21,1.14c0.49,0,0.8-0.29,0.93-0.47 c0.26-0.33,0.35-0.76,0.25-1.17L18.91,4.99z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.9,8.89l-1.05-4.37c-0.22-0.9-1-1.52-1.91-1.52H5.05C4.15,3,3.36,3.63,3.15,4.52L2.1,8.89 c-0.24,1.02-0.02,2.06,0.62,2.88C2.8,11.88,2.91,11.96,3,12.06V19c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-6.94 c0.09-0.09,0.2-0.18,0.28-0.28C21.92,10.96,22.15,9.91,21.9,8.89z M13,5h1.96l0.54,4.52c0.05,0.39-0.07,0.78-0.33,1.07 C14.95,10.85,14.63,11,14.22,11C13.55,11,13,10.41,13,9.69V5z M8.49,9.52L9.04,5H11v4.69C11,10.41,10.45,11,9.71,11 c-0.34,0-0.65-0.15-0.89-0.41C8.57,10.3,8.45,9.91,8.49,9.52z M4.29,10.53c-0.26-0.33-0.35-0.76-0.25-1.17L5.05,5h1.97L6.44,9.86 C6.36,10.51,5.84,11,5.23,11C4.73,11,4.43,10.71,4.29,10.53z M19,19H5v-6.03C5.08,12.98,5.15,13,5.23,13 c0.87,0,1.66-0.36,2.24-0.95c0.6,0.6,1.4,0.95,2.31,0.95c0.87,0,1.65-0.36,2.23-0.93c0.59,0.57,1.39,0.93,2.29,0.93 c0.84,0,1.64-0.35,2.24-0.95c0.58,0.59,1.37,0.95,2.24,0.95c0.08,0,0.15-0.02,0.23-0.03V19z M19.71,10.53 C19.57,10.71,19.27,11,18.77,11c-0.61,0-1.14-0.49-1.21-1.14L16.98,5l1.93-0.01l1.05,4.37C20.06,9.78,19.97,10.21,19.71,10.53z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apartment\": {\n    \"name\": \"apartment\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17,11V3H7v4H3v14h8v-4h2v4h8V11H17z M7,19H5v-2h2V19z M7,15H5v-2h2V15z M7,11H5V9h2V11z M11,15H9v-2h2V15z M11,11H9V9h2 V11z M11,7H9V5h2V7z M15,15h-2v-2h2V15z M15,11h-2V9h2V11z M15,7h-2V5h2V7z M19,19h-2v-2h2V19z M19,15h-2v-2h2V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,9V4H7v3H3v9h7v-3h1v3h6V9H14z M6,14H5v-1h1V14z M6,12H5v-1h1V12z M6,10H5V9h1V10z M10,11H9v-1h1V11z M10,9H9V8h1V9z M10,7H9V6h1V7z M12,11h-1v-1h1V11z M12,9h-1V8h1V9z M12,7h-1V6h1V7z M15,14h-1v-1h1V14z M15,12h-1v-1h1V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"rv_hookup\": {\n    \"name\": \"rv_hookup\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"bathtub\": {\n    \"name\": \"bathtub\",\n    \"keywords\": [\n      \"places\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"15\\\"></rect><circle cx=\\\"7\\\" cy=\\\"7\\\" r=\\\"2\\\"></circle><path d=\\\"M20,13V4.83C20,3.27,18.73,2,17.17,2c-0.75,0-1.47,0.3-2,0.83l-1.25,1.25C13.76,4.03,13.59,4,13.41,4 c-0.4,0-0.77,0.12-1.08,0.32l2.76,2.76c0.2-0.31,0.32-0.68,0.32-1.08c0-0.18-0.03-0.34-0.07-0.51l1.25-1.25 C16.74,4.09,16.95,4,17.17,4C17.63,4,18,4.37,18,4.83V13h-6.85c-0.3-0.21-0.57-0.45-0.82-0.72l-1.4-1.55 c-0.19-0.21-0.43-0.38-0.69-0.5C7.93,10.08,7.59,10,7.24,10C6,10.01,5,11.01,5,12.25V13H2v6c0,1.1,0.9,2,2,2c0,0.55,0.45,1,1,1h14 c0.55,0,1-0.45,1-1c1.1,0,2-0.9,2-2v-6H20z M20,19H4v-4h16V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"4\\\" y=\\\"12\\\"></rect><g><circle cx=\\\"6.5\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M16,11V5.12C16,3.95,15.05,3,13.88,3c-0.56,0-1.1,0.22-1.5,0.62l-0.83,0.83c-0.17-0.08-0.37-0.12-0.57-0.12 c-0.28,0-0.54,0.08-0.76,0.23l1.93,1.93c0.14-0.22,0.23-0.48,0.23-0.76c0-0.2-0.05-0.39-0.12-0.57l0.83-0.83 C13.3,4.12,13.58,4,13.88,4C14.5,4,15,4.5,15,5.12V11H9.1c-0.2-0.14-0.38-0.3-0.55-0.48L7.62,9.49C7.49,9.35,7.33,9.23,7.16,9.15 C6.95,9.05,6.72,9,6.49,9C5.67,9,5,9.67,5,10.5V11H3v4c0,0.55,0.45,1,1,1v0.5C4,16.78,4.22,17,4.5,17h11c0.28,0,0.5-0.22,0.5-0.5 V16c0.55,0,1-0.45,1-1v-4H16z M16,15H4v-3h12V15z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"star_half\": {\n    \"name\": \"star_half\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"toggle_on\": {\n    \"name\": \"toggle_on\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zm0 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"check_box\": {\n    \"name\": \"check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm2.41-7.4l2.58 2.58 6.59-6.59L17.99 9l-8 8L6 13.01l1.41-1.41z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z\\\"></path>\"\n      }\n    }\n  },\n  \"radio_button_unchecked\": {\n    \"name\": \"radio_button_unchecked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"star\": {\n    \"name\": \"star\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><polygon opacity=\\\".3\\\" points=\\\"12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68\\\"></polygon><path d=\\\"m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"toggle_off\": {\n    \"name\": \"toggle_off\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 8H7c-2.21 0-4 1.79-4 4s1.79 4 4 4h10c2.21 0 4-1.79 4-4s-1.79-4-4-4zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"star_outline\": {\n    \"name\": \"star_outline\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border_purple500\": {\n    \"name\": \"star_border_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><path d=\\\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"radio_button_checked\": {\n    \"name\": \"radio_button_checked\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"5\\\"></circle>\"\n      }\n    }\n  },\n  \"check_box_outline_blank\": {\n    \"name\": \"check_box_outline_blank\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"star_border\": {\n    \"name\": \"star_border\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\\\"></path>\"\n      }\n    }\n  },\n  \"star_purple500\": {\n    \"name\": \"star_purple500\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g></g><g><path d=\\\"M12,8.89L12.94,12h2.82l-2.27,1.62l0.93,3.01L12,14.79l-2.42,1.84l0.93-3.01L8.24,12h2.82L12,8.89 M12,2l-2.42,8H2 l6.17,4.41L5.83,22L12,17.31L18.18,22l-2.35-7.59L22,10h-7.58L12,2L12,2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"indeterminate_check_box\": {\n    \"name\": \"indeterminate_check_box\",\n    \"keywords\": [\n      \"toggle\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm2-8h10v2H7v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 11h10v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_center\": {\n    \"name\": \"vertical_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 1v4H8l4 4 4-4h-3V1zM4 11h16v2H4zm4 8h3v4h2v-4h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_top\": {\n    \"name\": \"border_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19h2v2h-2zM3 19h2v2H3zm8 0h2v2h-2zm-8-8h2v2H3zm0 4h2v2H3zm4 4h2v2H7zm4-12h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0-4h18v2H3zm8 12h2v2h-2zm4 4h2v2h-2zm-8-8h2v2H7zm8 0h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"monetization_on\": {\n    \"name\": \"monetization_on\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1.23 13.33V19H10.9v-1.69c-1.5-.31-2.77-1.28-2.86-2.97h1.71c.09.92.72 1.64 2.32 1.64 1.71 0 2.1-.86 2.1-1.39 0-.73-.39-1.41-2.34-1.87-2.17-.53-3.66-1.42-3.66-3.21 0-1.51 1.22-2.48 2.72-2.81V5h2.34v1.71c1.63.39 2.44 1.63 2.49 2.97h-1.71c-.04-.97-.56-1.64-1.94-1.64-1.31 0-2.1.59-2.1 1.43 0 .73.57 1.22 2.34 1.67 1.77.46 3.66 1.22 3.66 3.42-.01 1.6-1.21 2.48-2.74 2.77z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.9.66 1.94 1.64h1.71c-.05-1.34-.87-2.57-2.49-2.97V5H10.9v1.69c-1.51.32-2.72 1.3-2.72 2.81 0 1.79 1.49 2.69 3.66 3.21 1.95.46 2.34 1.15 2.34 1.87 0 .53-.39 1.39-2.1 1.39-1.6 0-2.23-.72-2.32-1.64H8.04c.1 1.7 1.36 2.66 2.86 2.97V19h2.34v-1.67c1.52-.29 2.72-1.16 2.73-2.77-.01-2.2-1.9-2.96-3.66-3.42z\\\"></path>\"\n      }\n    }\n  },\n  \"format_line_spacing\": {\n    \"name\": \"format_line_spacing\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 5h12v2H10zm0 12h12v2H10zm-8.5 0L5 20.5 8.5 17H6V7h2.5L5 3.5 1.5 7H4v10zm8.5-6h12v2H10z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_link\": {\n    \"name\": \"insert_link\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"area_chart\": {\n    \"name\": \"area_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"19,16.95 12,11.5 8,17 5,14.6 5,11 7.44,12.83 12.4,5.88 16.3,9 19,9\\\"></polygon><path d=\\\"M17,7l-5-4l-5,7L3,7v13h18V7H17z M19,16.95l-7-5.45L8,17l-3-2.4V11l2.44,1.83l4.96-6.95L16.3,9H19V16.95z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"15.5,13.8 10,9.39 7,13.5 4.5,11.62 4.5,8.8 6.31,10.01 10.26,5.07 13.5,7.5 15.5,7.5\\\"></polygon><path d=\\\"M14,6l-4-3L6,8L3,6v10h14V6H14z M15.5,13.8L10,9.39L7,13.5l-2.5-1.88V8.8l1.81,1.21l3.95-4.94L13.5,7.5h2V13.8z\\\"></path>\"\n      }\n    }\n  },\n  \"add_comment\": {\n    \"name\": \"add_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17zM13 5h-2v4H7v2h4v4h2v-4h4V9h-4z\\\"></path><path d=\\\"M4 4v12h14.83L20 17.17V4H4zm13 7h-4v4h-2v-4H7V9h4V5h2v4h4v2z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"format_textdirection_l_to_r\": {\n    \"name\": \"format_textdirection_l_to_r\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 8V4c-1.1 0-2 .9-2 2s.9 2 2 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm0-6v4c-1.1 0-2-.9-2-2s.9-2 2-2zm12 14l-4-4v3H5v2h12v3z\\\"></path>\"\n      }\n    }\n  },\n  \"show_chart\": {\n    \"name\": \"show_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.5 13.48l-4-4L2 16.99l1.5 1.5 6-6.01 4 4L22 6.92l-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"table_chart\": {\n    \"name\": \"table_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5h15v3H5zm12 5h3v9h-3zm-7 0h5v9h-5zm-5 0h3v9H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM8 19H5v-9h3v9zm7 0h-5v-9h5v9zm5 0h-3v-9h3v9zm0-11H5V5h15v3z\\\"></path>\"\n      }\n    }\n  },\n  \"text_decrease\": {\n    \"name\": \"text_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M23,11v2h-8 v-2H23z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,9.25v1.5h-6v-1.5H18z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73L4.49,12.44z M6.07,8.02l0.39-1.16h0.08 l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart\": {\n    \"name\": \"insert_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v14h14V5zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm2 0h14v14H5V5zm2 5h2v7H7zm4-3h2v10h-2zm4 6h2v4h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit\": {\n    \"name\": \"mode_edit\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"5,18.08 5,19 5.92,19 14.98,9.94 14.06,9.02\\\"></polygon><g><path d=\\\"M3,17.25L3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25z M5.92,19L5,19l0-0.92l9.06-9.06l0.92,0.92L5.92,19z\\\"></path></g><g><path d=\\\"M20.71,5.63l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83C21.1,6.65,21.1,6.02,20.71,5.63z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"format_color_text\": {\n    \"name\": \"format_color_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M2,20h20v4H2V20z M5.49,17h2.42l1.27-3.58h5.65L16.09,17h2.42L13.25,3h-2.5L5.49,17z M9.91,11.39l2.03-5.79h0.12l2.03,5.79 H9.91z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M7.99,10.44h4.04L12.92,13h1.73L10.89,3H9.11L5.35,13h1.73L7.99,10.44z M9.57,6.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98 H8.51L9.57,6.02z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"query_stats\": {\n    \"name\": \"query_stats\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M19.88,18.47c0.44-0.7,0.7-1.51,0.7-2.39c0-2.49-2.01-4.5-4.5-4.5s-4.5,2.01-4.5,4.5s2.01,4.5,4.49,4.5 c0.88,0,1.7-0.26,2.39-0.7L21.58,23L23,21.58L19.88,18.47z M16.08,18.58c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5 s2.5,1.12,2.5,2.5C18.58,17.46,17.46,18.58,16.08,18.58z M15.72,10.08c-0.74,0.02-1.45,0.18-2.1,0.45l-0.55-0.83l-3.8,6.18 l-3.01-3.52l-3.63,5.81L1,17l5-8l3,3.5L13,6C13,6,15.72,10.08,15.72,10.08z M18.31,10.58c-0.64-0.28-1.33-0.45-2.05-0.49 c0,0,5.12-8.09,5.12-8.09L23,3.18L18.31,10.58z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16.44,15.38C16.79,14.84,17,14.19,17,13.5c0-1.93-1.57-3.5-3.5-3.5S10,11.57,10,13.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.44,15.38z M13.5,15.5c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S14.6,15.5,13.5,15.5z M17.78,2L19,2.87l-3.88,5.9h0C14.61,8.59,14.07,8.5,13.5,8.5L17.78,2z M13.5,8.5c-0.58,0-1.13,0.1-1.65,0.28l0,0l-0.78-1.1 l-3.41,5.36l-2.48-2.97l-2.96,4.81L1,14l4-6.5l2.5,3L11,5L13.5,8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"shape_line\": {\n    \"name\": \"shape_line\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"5\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"16\\\" y=\\\"16\\\"></rect><circle cx=\\\"6\\\" cy=\\\"6\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M6,11c2.76,0,5-2.24,5-5S8.76,1,6,1S1,3.24,1,6S3.24,11,6,11z M6,3c1.65,0,3,1.35,3,3c0,1.65-1.35,3-3,3S3,7.65,3,6 C3,4.35,4.35,3,6,3z\\\"></path><path d=\\\"M21,14h-5c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-5C23,14.9,22.1,14,21,14z M21,21h-5v-5h5V21z\\\"></path><path d=\\\"M17.71,7.7C18.11,7.89,18.54,8,19,8c1.65,0,3-1.35,3-3s-1.35-3-3-3s-3,1.35-3,3c0,0.46,0.11,0.89,0.3,1.29L6.29,16.3 C5.89,16.11,5.46,16,5,16c-1.65,0-3,1.35-3,3s1.35,3,3,3s3-1.35,3-3c0-0.46-0.11-0.89-0.3-1.29L17.71,7.7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5\\\" cy=\\\"5\\\" opacity=\\\".3\\\" r=\\\"2.5\\\"></circle><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"13.5\\\" y=\\\"13.5\\\"></rect><path d=\\\"M5,9c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C2.79,1,1,2.79,1,5C1,7.21,2.79,9,5,9z M5,2.5c1.38,0,2.5,1.12,2.5,2.5 S6.38,7.5,5,7.5S2.5,6.38,2.5,5S3.62,2.5,5,2.5z\\\"></path><path d=\\\"M17.5,12h-4c-0.83,0-1.5,0.67-1.5,1.5v4c0,0.83,0.67,1.5,1.5,1.5h4c0.83,0,1.5-0.67,1.5-1.5v-4C19,12.67,18.33,12,17.5,12 z M17.5,17.5h-4v-4h4V17.5z\\\"></path><path d=\\\"M14.35,6.71C14.7,6.89,15.08,7,15.5,7C16.88,7,18,5.88,18,4.5S16.88,2,15.5,2S13,3.12,13,4.5c0,0.42,0.11,0.8,0.29,1.15 l-7.64,7.64C5.3,13.11,4.92,13,4.5,13C3.12,13,2,14.12,2,15.5S3.12,18,4.5,18S7,16.88,7,15.5c0-0.42-0.11-0.8-0.29-1.15 L14.35,6.71z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"border_bottom\": {\n    \"name\": \"border_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 11h2v2H3zm0 4h2v2H3zm0 4h18v2H3zm16-4h2v2h-2zM3 7h2v2H3zm16 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm4-4h2v2h-2zm-4-4h2v2h-2zm-8 8h2v2H7zM3 3h2v2H3zm8 4h2v2h-2zM7 3h2v2H7zm4 8h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"format_indent_increase\": {\n    \"name\": \"format_indent_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18v2H3zM3 3h18v2H3zm8 4h10v2H11zM3 8v8l4-4zm8 3h10v2H11zm0 4h10v2H11z\\\"></path>\"\n      }\n    }\n  },\n  \"padding\": {\n    \"name\": \"padding\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M15,7h2v2h-2V7z M11,7h2v2h-2V7z M7,7h2v2H7V7z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5z M19,19H5V5h14V19z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"checklist_rtl\": {\n    \"name\": \"checklist_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9,7.5H2V6h7V7.5z M9,12.5H2V14h7V12.5z M11.64,5.11l-1.06,1.06L13.4,9L18,4.4l-1.06-1.06L13.4,6.88L11.64,5.11z M11.64,11.61l-1.06,1.06l2.83,2.83l4.6-4.6l-1.06-1.06l-3.54,3.54L11.64,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"numbers\": {\n    \"name\": \"numbers\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20.5,10L21,8h-4l1-4h-2l-1,4h-4l1-4h-2L9,8H5l-0.5,2h4l-1,4h-4L3,16h4l-1,4h2l1-4h4l-1,4h2l1-4h4l0.5-2h-4l1-4H20.5z M13.5,14h-4l1-4h4L13.5,14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M16.62,8.5L17,7h-3.25l0.75-3H13l-0.75,3h-3L10,4H8.5L7.75,7H4.38L4,8.5h3.37L6.5,12H3.38L3,13.5h3.12L5.5,16H7l0.62-2.5h3 L10,16h1.5l0.62-2.5h3.5L16,12h-3.5l0.88-3.5H16.62z M11,12H8l0.88-3.5h3L11,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"format_align_center\": {\n    \"name\": \"format_align_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h18v2H3zm4 12h10v2H7zm0-8h10v2H7zm-4 4h18v2H3zm0 8h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"format_underlined\": {\n    \"name\": \"format_underlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14v2H5zM6 3v8c0 3.31 2.69 6 6 6s6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6z\\\"></path>\"\n      }\n    }\n  },\n  \"format_bold\": {\n    \"name\": \"format_bold\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.25 8c0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42.97-.67 1.65-1.77 1.65-2.79zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_bottom\": {\n    \"name\": \"align_vertical_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,22H2v-2h20V22z M10,2H7v16h3V2z M17,8h-3v10h3V8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_justify\": {\n    \"name\": \"format_align_justify\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h18v2H3zm0 8h18v2H3zm0 8h18v2H3zm0-4h18v2H3zm0-8h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart\": {\n    \"name\": \"pie_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12c0 4.07 3.06 7.44 7 7.93V4.07C7.06 4.56 4 7.93 4 12zm9 7.93c3.61-.45 6.48-3.32 6.93-6.93H13v6.93zm0-15.86V11h6.93c-.45-3.61-3.32-6.48-6.93-6.93z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.86-7-7.93s3.06-7.44 7-7.93v15.86zm2 0V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.32 6.93 6.93H13z\\\"></path>\"\n      }\n    }\n  },\n  \"data_array\": {\n    \"name\": \"data_array\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15,4 15,6 18,6 18,18 15,18 15,20 20,20 20,4\\\"></polygon><polygon points=\\\"4,20 9,20 9,18 6,18 6,6 9,6 9,4 4,4\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"4,4 4,16 8,16 8,14.5 5.5,14.5 5.5,5.5 8,5.5 8,4\\\"></polygon><polygon points=\\\"12,4 12,5.5 14.5,5.5 14.5,14.5 12,14.5 12,16 16,16 16,4\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"notes\": {\n    \"name\": \"notes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z\\\"></path>\"\n      }\n    }\n  },\n  \"scatter_plot\": {\n    \"name\": \"scatter_plot\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"11\\\" cy=\\\"6\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><circle cx=\\\"16.6\\\" cy=\\\"17.6\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><circle cx=\\\"7\\\" cy=\\\"14\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M7 10c-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 2zm8-10c0-2.21-1.79-4-4-4S7 3.79 7 6s1.79 4 4 4 4-1.79 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.6 5.6c-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>\"\n      }\n    }\n  },\n  \"align_horizontal_right\": {\n    \"name\": \"align_horizontal_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,2h2v20h-2V2z M2,10h16V7H2V10z M8,17h10v-3H8V17z\\\"></path>\"\n      }\n    }\n  },\n  \"square\": {\n    \"name\": \"square\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><rect height=\\\"14\\\" width=\\\"14\\\" x=\\\"5\\\" y=\\\"5\\\"></rect></g><g><path d=\\\"M3,3v18h18V3H3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"11\\\" opacity=\\\".3\\\" width=\\\"11\\\" x=\\\"4.5\\\" y=\\\"4.5\\\"></rect><path d=\\\"M3,3v14h14V3H3z M15.5,15.5h-11v-11h11V15.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_graph\": {\n    \"name\": \"auto_graph\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M14.06,9.94L12,9l2.06-0.94L15,6l0.94,2.06L18,9l-2.06,0.94L15,12L14.06,9.94z M4,14l0.94-2.06L7,11l-2.06-0.94L4,8 l-0.94,2.06L1,11l2.06,0.94L4,14z M8.5,9l1.09-2.41L12,5.5L9.59,4.41L8.5,2L7.41,4.41L5,5.5l2.41,1.09L8.5,9z M4.5,20.5l6-6.01l4,4 L23,8.93l-1.41-1.41l-7.09,7.97l-4-4L3,19L4.5,20.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11.72,8.28L10,7.5l1.72-0.78L12.5,5l0.78,1.72L15,7.5l-1.72,0.78L12.5,10L11.72,8.28z M3.5,12l0.78-1.72L6,9.5L4.28,8.72 L3.5,7L2.72,8.72L1,9.5l1.72,0.78L3.5,12z M7,8l0.94-2.06L10,5L7.94,4.06L7,2L6.06,4.06L4,5l2.06,0.94L7,8z M17.88,6.5l-5.61,6.31 L9,9.54l-6,6.01l1.06,1.06L9,11.67L12.33,15L19,7.5L17.88,6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"candlestick_chart\": {\n    \"name\": \"candlestick_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9,4H7v2H5v12h2v2h2v-2h2V6H9V4z M9,16H7V8h2V16z\\\"></path><rect height=\\\"8\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"10\\\"></rect><path d=\\\"M19,8h-2V4h-2v4h-2v7h2v5h2v-5h2V8z M17,13h-2v-3h2V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7.25,3h-1.5v2H4v10h1.75v2h1.5v-2H9V5H7.25V3z M7.5,6.5v7h-2v-7H7.5z\\\"></path><rect height=\\\"7\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"5.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"12.5\\\" y=\\\"8.5\\\"></rect><path d=\\\"M14.25,7V3h-1.5v4H11v6h1.75v4h1.5v-4H16V7H14.25z M14.5,11.5h-2v-3h2V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bar_chart\": {\n    \"name\": \"bar_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"7\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"13\\\"></rect><rect height=\\\"16\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"10\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"12\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"vertical_align_bottom\": {\n    \"name\": \"vertical_align_bottom\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 3v10H8l4 4 4-4h-3V3zM4 19h16v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off\": {\n    \"name\": \"money_off\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\\\"></path>\"\n      }\n    }\n  },\n  \"format_shapes\": {\n    \"name\": \"format_shapes\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h2v2H3zm16 16h2v2h-2zm0-16h2v2h-2zM3 19h2v2H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.29 7l-3.4 9h1.62l.73-2h3.49l.74 2h1.63l-3.41-9h-1.4zm-.6 5.74L12 8.91l1.3 3.83h-2.61zM17 3H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2V1h-6v2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm16 0h-2v-2h2v2zM19 3h2v2h-2V3zm0 14h-2v2H7v-2H5V7h2V5h10v2h2v10z\\\"></path>\"\n      }\n    }\n  },\n  \"rectangle\": {\n    \"name\": \"rectangle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><rect height=\\\"12\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"6\\\"></rect></g><g><path d=\\\"M2,4v16h20V4H2z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"13\\\" x=\\\"3.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M2,4v12h16V4H2z M16.5,14.5h-13v-9h13V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_style\": {\n    \"name\": \"border_style\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19h2v2h-2zm0-8h2v2h-2zm0 4h2v2h-2zm-4 4h2v2h-2zM3 21h2V5h16V3H3zM19 7h2v2h-2zm-8 12h2v2h-2zm-4 0h2v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"score\": {\n    \"name\": \"score\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h8l-4-4zm0-2.5l4-4 4 4 6-6V5H5v11.5zM12 6h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V6zM7 8.25h2.5V7.5H7V6h4v3.75H8.5v.75H11V12H7V8.25zM19 19v-6l-6 6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5l4-4 4 4 6-6v6zm0-8.5l-6 6-4-4-4 4V5h14v5.5zM13.5 9V6H12v6h1.5zm3.7 3l-2-3 2-3h-1.7l-2 3 2 3zM11 10.5H8.5v-.75H11V6H7v1.5h2.5v.75H7V12h4z\\\"></path>\"\n      }\n    }\n  },\n  \"polyline\": {\n    \"name\": \"polyline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,4h2v2h-2V4z M7,14H5v-2h2V14z M19,20h-2v-2h2V20z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,16v1.26l-6-3v-3.17L11.7,8H16V2h-6v4.9L7.3,10H3v6h5l7,3.5V22h6v-6H15z M12,4h2v2h-2V4z M7,14H5v-2h2V14z M19,20h-2v-2 h2V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M10,3.5h1.5V5H10V3.5z M6,11.5H4.5V10H6V11.5z M15.5,16.5H14V15h1.5V16.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.5,13.5v0.99l-5-2.71V9.24L9.83,6.5H13V2H8.5v3.75L6.16,8.5H3V13h3.6l5.9,3.2V18H17v-4.5H12.5z M10,3.5h1.5V5H10V3.5z M6,11.5H4.5V10H6V11.5z M15.5,16.5H14V15h1.5V16.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"space_bar\": {\n    \"name\": \"space_bar\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13H6V9H4v6h16V9h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"functions\": {\n    \"name\": \"functions\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 17h-7l5-5-5-5h7V4H6v2l6.5 6L6 18v2h12z\\\"></path>\"\n      }\n    }\n  },\n  \"format_italic\": {\n    \"name\": \"format_italic\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 15v3h8v-3h-2.21l3.42-8H18V4h-8v3h2.21l-3.42 8z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_left\": {\n    \"name\": \"format_align_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18v2H3zM3 7h12v2H3zm0-4h18v2H3zm0 12h12v2H3zm0-4h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"line_axis\": {\n    \"name\": \"line_axis\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"22,7.43 20.59,6.02 16.56,10.55 9.5,4 2,11.51 3.5,13.01 9.64,6.86 15.23,12.04 13.5,13.99 9.5,9.99 2,17.5 3.5,19 9.5,12.99 13.5,16.99 16.69,13.4 20.59,17.01 22,15.6 18.02,11.9\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"14.68,10.61 18,6.88 16.88,5.89 13.62,9.56 8,4 2,10.01 3.06,11.07 8,6.12 12.62,10.68 11.27,12.2 8,8.93 2,14.94 3.06,16 8,11.05 11.33,14.38 13.69,11.73 17,15.01 18.06,13.95\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"vertical_distribute\": {\n    \"name\": \"vertical_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,10.5v3h10v-3H7z M2,20v2h20v-2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"border_all\": {\n    \"name\": \"border_all\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H3v18h18V3zM11 19H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z\\\"></path>\"\n      }\n    }\n  },\n  \"multiline_chart\": {\n    \"name\": \"multiline_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_distribute\": {\n    \"name\": \"horizontal_distribute\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,2h-2v20h2V2z M13.5,7h-3v10h3V7z\\\"></path>\"\n      }\n    }\n  },\n  \"edit_note\": {\n    \"name\": \"edit_note\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,10h11v2H3V10z M3,8h11V6H3V8z M3,16h7v-2H3V16z M18.01,12.87l0.71-0.71c0.39-0.39,1.02-0.39,1.41,0l0.71,0.71 c0.39,0.39,0.39,1.02,0,1.41l-0.71,0.71L18.01,12.87z M17.3,13.58l-5.3,5.3V21h2.12l5.3-5.3L17.3,13.58z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M16.78,11.99l0.65-0.65c0.29-0.29,0.29-0.77,0-1.06 l-0.71-0.71c-0.29-0.29-0.77-0.29-1.06,0l-0.65,0.65L16.78,11.99z M16.19,12.58L11.77,17H10v-1.77l4.42-4.42L16.19,12.58z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_center\": {\n    \"name\": \"align_vertical_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"22,11 17,11 17,6 14,6 14,11 10,11 10,3 7,3 7,11 1.84,11 1.84,13 7,13 7,21 10,21 10,13 14,13 14,18 17,18 17,13 22,13\\\"></polygon>\"\n      }\n    }\n  },\n  \"highlight\": {\n    \"name\": \"highlight\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 20h2v-3.83l3-3V11H8v2.17l3 3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6 14l3 3v5h6v-5l3-3V9H6v5zm2-3h8v2.17l-3 3V20h-2v-3.83l-3-3V11zm3-9h2v3h-2zM4.916 4.464l2.12 2.122L5.62 8 3.5 5.877zM18.372 8l-1.414-1.414 2.12-2.12 1.415 1.413z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered\": {\n    \"name\": \"format_list_numbered\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13H3.2L5 10.9V10H2v1h1.8L2 13.1v.9h3zm2-8h14v2H7zM5 16H2v1h2v.5H3v1h1v.5H2v1h3zm2 1h14v2H7zM3 8h1V4H2v1h1zm4 3h14v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"mode\": {\n    \"name\": \"mode\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.06 9.02L5 18.08V19h.92l9.06-9.06z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.37 3.29c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34zm-.56 6.65l-3.75-3.75L3 17.25V21h3.75L17.81 9.94zM5 19v-.92l9.06-9.06.92.92L5.92 19H5z\\\"></path>\"\n      }\n    }\n  },\n  \"border_clear\": {\n    \"name\": \"border_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 3h2v2H7zm0 16h2v2H7zM3 3h2v2H3zm16 0h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zM3 7h2v2H3zm0 12h2v2H3zm16 0h2v2h-2zm0-4h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm4 0h2v2H7zm8 0h2v2h-2zm-4 8h2v2h-2zm4 0h2v2h-2zm0-16h2v2h-2zm-4 0h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2zm0-4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"align_horizontal_left\": {\n    \"name\": \"align_horizontal_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,22H2V2h2V22z M22,7H6v3h16V7z M16,14H6v3h10V14z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_money\": {\n    \"name\": \"attach_money\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.5 17.1c-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79z\\\"></path>\"\n      }\n    }\n  },\n  \"publish\": {\n    \"name\": \"publish\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.83 12H11v6h2v-6h1.17L12 9.83z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 4h14v2H5zm7 3l-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2v-6H9.83L12 9.83 14.17 12H13z\\\"></path>\"\n      }\n    }\n  },\n  \"text_fields\": {\n    \"name\": \"text_fields\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 12h3v7h3v-7h3V9h-9zm3-8h-13v3h5v12h3V7h5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_list_numbered_rtl\": {\n    \"name\": \"format_list_numbered_rtl\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 11h14v2H2zm16 6h2v.5h-1v1h1v.5h-2v1h3v-4h-3zm0-6h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3zm2-3V4h-2v1h1v3zM2 17h14v2H2zM2 5h14v2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"post_add\": {\n    \"name\": \"post_add\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M17,19.22H5V7h7V5H5C3.9,5,3,5.9,3,7v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-7h-2V19.22z\\\"></path><path d=\\\"M19,2h-2v3h-3c0.01,0.01,0,2,0,2h3v2.99c0.01,0.01,2,0,2,0V7h3V5h-3V2z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"9\\\"></rect><polygon points=\\\"7,12 7,14 15,14 15,12 12,12\\\"></polygon><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"7\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M14,15H5V6h6V5H5C4.45,5,4,5.45,4,6V15c0,0.55,0.45,1,1,1H14c0.55,0,1-0.45,1-1V9h-1V15z\\\"></path><polygon points=\\\"7,8 7,9 11,9 12,9 12,8\\\"></polygon><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"10\\\"></rect><rect height=\\\"1\\\" width=\\\"5\\\" x=\\\"7\\\" y=\\\"12\\\"></rect><polygon points=\\\"15,3 14,3 14,5 14,5 12,5 12,6 14,6 14,8 15,8 15,6 15,6 17,6 17,5 15,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"align_horizontal_center\": {\n    \"name\": \"align_horizontal_center\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon points=\\\"11,2 13,2 13,7 21,7 21,10 13,10 13,14 18,14 18,17 13,17 13,22 11,22 11,17 6,17 6,14 11,14 11,10 3,10 3,7 11,7\\\"></polygon>\"\n      }\n    }\n  },\n  \"format_list_bulleted\": {\n    \"name\": \"format_list_bulleted\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h14v2H7z\\\"></path><circle cx=\\\"4\\\" cy=\\\"6\\\" r=\\\"1.5\\\"></circle><path d=\\\"M7 11h14v2H7zm0 6h14v2H7zm-3 2.5c.82 0 1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5-1.5.68-1.5 1.5.68 1.5 1.5 1.5z\\\"></path><circle cx=\\\"4\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"hexagon\": {\n    \"name\": \"hexagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon opacity=\\\".3\\\" points=\\\"16.05,19 7.95,19 3.91,12 7.95,5 16.05,5 20.09,12\\\"></polygon><path d=\\\"M17.2,3H6.8l-5.2,9l5.2,9h10.4l5.2-9L17.2,3z M16.05,19H7.95l-4.04-7l4.04-7h8.09l4.04,7L16.05,19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon opacity=\\\".3\\\" points=\\\"16.27,10 13.13,15.5 6.87,15.5 3.73,10 6.87,4.5 13.13,4.5\\\"></polygon><path d=\\\"M16.27,10l-3.14,5.5H6.87L3.73,10l3.14-5.5h6.26L16.27,10z M6,3l-4,7l4,7h8l4-7l-4-7H6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"superscript\": {\n    \"name\": \"superscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M22,7h-2v1h3v1h-4V7c0-0.55,0.45-1,1-1h2V5h-3V4h3c0.55,0,1,0.45,1,1v1C23,6.55,22.55,7,22,7z M5.88,20h2.66l3.4-5.42h0.12 l3.4,5.42h2.66l-4.65-7.27L17.81,6h-2.68l-3.07,4.99h-0.12L8.85,6H6.19l4.32,6.73L5.88,20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,6l-1,0v1h2v1l-3,0V6c0-0.55,0.45-1,1-1l1,0l0-1h-2V3l2,0c0.55,0,1,0.45,1,1v1C18,5.55,17.55,6,17,6z M5.63,16h1.9 l2.43-3.87h0.08L12.47,16h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,6h-1.9l3.09,4.8L5.63,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bubble_chart\": {\n    \"name\": \"bubble_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.5 12c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15.01\\\" cy=\\\"18\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><circle cx=\\\"7\\\" cy=\\\"14\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M7 18c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm11.01 6c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zm-4 0c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zm2.49-4c3.03 0 5.5-2.47 5.5-5.5S19.53 3 16.5 3 11 5.47 11 8.5s2.47 5.5 5.5 5.5zm0-9C18.43 5 20 6.57 20 8.5S18.43 12 16.5 12 13 10.43 13 8.5 14.57 5 16.5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"border_right\": {\n    \"name\": \"border_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h2v2H3zm0 16h2v2H3zM15 3h2v2h-2zm0 16h2v2h-2zm0-8h2v2h-2zM3 15h2v2H3zm0-4h2v2H3zm0-4h2v2H3zm8 8h2v2h-2zm-4-4h2v2H7zm0-8h2v2H7zm12 0h2v18h-2zM7 19h2v2H7zm4-16h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zm0 8h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_emoticon\": {\n    \"name\": \"insert_emoticon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"move_down\": {\n    \"name\": \"move_down\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"15\\\" y=\\\"6\\\"></rect><path d=\\\"M3,11c0,2.45,1.76,4.47,4.08,4.91l-1.49-1.49L7,13l4,4.01L7,21l-1.41-1.41l1.58-1.58l0-0.06C3.7,17.54,1,14.58,1,11 c0-3.87,3.13-7,7-7h3v2H8C5.24,6,3,8.24,3,11z\\\"></path><path d=\\\"M22,11V4h-9v7H22z M20,9h-5V6h5V9z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"13\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"12.5\\\" y=\\\"5.5\\\"></rect><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><path d=\\\"M11,9h7V4h-7V9z M12.5,5.5h4v2h-4V5.5z\\\"></path><path d=\\\"M5.57,11.94l1.06-1.06l2.87,2.87l-2.88,2.88l-1.06-1.06l1.06-1.06V14.5H6.25C3.35,14.5,1,12.15,1,9.25 C1,6.35,3.35,4,6.25,4H9.5v1.5H6.25C4.18,5.5,2.5,7.18,2.5,9.25C2.5,11.32,4.18,13,6.25,13h0.37v-0.01L5.57,11.94z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"text_increase\": {\n    \"name\": \"text_increase\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M1.99,19h2.42l1.27-3.58h5.65L12.59,19h2.42L9.75,5h-2.5L1.99,19z M6.41,13.39L8.44,7.6h0.12l2.03,5.79H6.41z M20,11h3v2h-3 v3h-2v-3h-3v-2h3V8h2V11z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15.75,9.25H18v1.5h-2.25V13h-1.5v-2.25H12v-1.5h2.25V7h1.5V9.25z M4.49,12.44h4.04L9.42,15h1.73L7.39,5H5.61L1.85,15h1.73 L4.49,12.44z M6.07,8.02l0.39-1.16h0.08l0.39,1.16l1.06,2.98H5.01L6.07,8.02z\\\"></path>\"\n      }\n    }\n  },\n  \"merge_type\": {\n    \"name\": \"merge_type\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.59 19L7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59zm11.407 1.41l-3.408-3.407 1.4-1.407 3.41 3.408z\\\"></path>\"\n      }\n    }\n  },\n  \"format_align_right\": {\n    \"name\": \"format_align_right\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 3h18v2H3zm0 16h18v2H3zm0-8h18v2H3zm6 4h12v2H9zm0-8h12v2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_page_break\": {\n    \"name\": \"insert_page_break\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"18,11 6,11 6,4 13,4 13,9 18,9\\\"></polygon><g><path d=\\\"M18,20H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3h-2V20z\\\"></path><path d=\\\"M6,4h7v5h5v2h2V8l-6-6H6C4.9,2,4,2.9,4,4v7h2V4z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"1\\\" y=\\\"13\\\"></rect></g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"17\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M5.5,3.5H11V7h3.5v2H16V6l-4-4H5.5C4.67,2,4,2.67,4,3.5V9h1.5V3.5z\\\"></path><path d=\\\"M14.5,16.5h-9V14H4v2.5C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V14h-1.5V16.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"2\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"14\\\" y=\\\"11\\\"></rect></g><rect height=\\\"2.5\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"5.5\\\" y=\\\"14\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"11,7 11,3.5 5.5,3.5 5.5,9 14.5,9 14.5,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"mode_comment\": {\n    \"name\": \"mode_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 15.17L18.83 16H4V4h16v13.17z\\\"></path><path d=\\\"M4 4v12h14.83L20 17.17V4z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"insert_photo\": {\n    \"name\": \"insert_photo\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm4-5.86l2.14 2.58 3-3.87L18 17H6l3-3.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 5v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2zm16 14H5V5h14v14zm-4.86-7.14l-3 3.86L9 13.14 6 17h12z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_comment\": {\n    \"name\": \"insert_comment\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 16h14.83L20 17.17V4H4v12zM6 6h12v2H6V6zm0 3h12v2H6V9zm0 3h12v2H6v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm0 2v13.17L18.83 16H4V4h16zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_chart_outlined\": {\n    \"name\": \"insert_chart_outlined\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm0-16H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_invitation\": {\n    \"name\": \"insert_invitation\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v2h14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2zM5 7V5h14v2H5zm0 2h14v10H5V9zm7 3h5v5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_reset\": {\n    \"name\": \"format_color_reset\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.93 7.83l4.77 4.77c-.62-1.81-2.17-4.24-3.71-6.24-.35.47-.71.96-1.06 1.47zM12 18c.96 0 1.83-.36 2.53-.92l-5.72-5.72C8.32 12.38 8 13.31 8 14c0 2.21 1.79 4 4 4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 6.36c1.53 2 3.08 4.43 3.71 6.24l2.23 2.23c.03-.27.06-.55.06-.83 0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l1.44 1.44c.34-.51.7-1 1.06-1.47zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14zM12 18c-2.21 0-4-1.79-4-4 0-.69.32-1.62.81-2.64l5.72 5.72c-.7.56-1.57.92-2.53.92z\\\"></path>\"\n      }\n    }\n  },\n  \"format_clear\": {\n    \"name\": \"format_clear\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"border_left\": {\n    \"name\": \"border_left\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 3h2v2h-2zM3 3h2v18H3zm12 0h2v2h-2zm-4 16h2v2h-2zm0-4h2v2h-2zm4 4h2v2h-2zM11 7h2v2h-2zm0 4h2v2h-2zm8 4h2v2h-2zm0 4h2v2h-2zm0-12h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zm-4 8h2v2h-2zm-8 8h2v2H7zm0-8h2v2H7zm0-8h2v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"title\": {\n    \"name\": \"title\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 7h5.5v12h3V7H19V4H5z\\\"></path>\"\n      }\n    }\n  },\n  \"drag_handle\": {\n    \"name\": \"drag_handle\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 9h16v2H4zm0 4h16v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_vertical\": {\n    \"name\": \"border_vertical\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 3h2v2H7zm0 8h2v2H7zm0 8h2v2H7zm-4 0h2v2H3zM3 3h2v2H3zm0 8h2v2H3zm16-8h2v2h-2zM3 7h2v2H3zm8-4h2v18h-2zM3 15h2v2H3zm12-4h2v2h-2zm4 4h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm0 12h2v2h-2zm-4 0h2v2h-2zm0-16h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"vertical_align_top\": {\n    \"name\": \"vertical_align_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 3h16v2H4zm4 8h3v10h2V11h3l-4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"border_outer\": {\n    \"name\": \"border_outer\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 11h2v2h-2zm0-4h2v2h-2zm10-4H3v18h18V3zm-2 16H5V5h14v14zm-4-8h2v2h-2zm-8 0h2v2H7zm4 4h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"linear_scale\": {\n    \"name\": \"linear_scale\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5C3.12 9.5 2 10.62 2 12s1.12 2.5 2.5 2.5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5 1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"attach_file\": {\n    \"name\": \"attach_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 23c3.04 0 5.5-2.46 5.5-5.5V6h-1.5v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5z\\\"></path>\"\n      }\n    }\n  },\n  \"table_rows\": {\n    \"name\": \"table_rows\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,5v3H5V5H19z M19,10v4H5v-4H19z M5,19v-3h14v3H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,5v3H5V5H19z M19,10v4H5v-4H19z M5,19v-3h14v3H5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><path d=\\\"M15.5,4.5V7h-11V4.5H15.5z M15.5,8.5v3h-11v-3H15.5z M4.5,15.5V13h11v2.5H4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M15.5,4.5V7h-11V4.5H15.5z M15.5,8.5v3h-11v-3H15.5z M4.5,15.5V13h11v2.5H4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"format_paint\": {\n    \"name\": \"format_paint\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 4h10v2H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 2H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3V3c0-.55-.45-1-1-1zm-1 4H6V4h10v2z\\\"></path>\"\n      }\n    }\n  },\n  \"horizontal_rule\": {\n    \"name\": \"horizontal_rule\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" fill-rule=\\\"evenodd\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><rect fill-rule=\\\"evenodd\\\" height=\\\"2\\\" width=\\\"16\\\" x=\\\"4\\\" y=\\\"11\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"2\\\" width=\\\"14\\\" x=\\\"3\\\" y=\\\"9\\\"></rect></g>\"\n      }\n    }\n  },\n  \"subscript\": {\n    \"name\": \"subscript\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,18h-2v1h3v1h-4v-2c0-0.55,0.45-1,1-1h2v-1h-3v-1h3c0.55,0,1,0.45,1,1v1C23,17.55,22.55,18,22,18z M5.88,18h2.66 l3.4-5.42h0.12l3.4,5.42h2.66l-4.65-7.27L17.81,4h-2.68l-3.07,4.99h-0.12L8.85,4H6.19l4.32,6.73L5.88,18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M17,15l-1,0v1h2v1h-3v-2c0-0.55,0.45-1,1-1l1,0l0-1h-2v-1l2,0c0.55,0,1,0.45,1,1v1C18,14.55,17.55,15,17,15z M5.63,14h1.9 l2.43-3.87h0.08L12.47,14h1.9l-3.32-5.2l3.1-4.8h-1.91l-2.19,3.56H9.96L7.75,4h-1.9l3.09,4.8L5.63,14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"border_inner\": {\n    \"name\": \"border_inner\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 15h2v2H3zM3 3h2v2H3zm0 16h2v2H3zm8 2h2v-8h8v-2h-8V3h-2v8H3v2h8zm-4-2h2v2H7zm12-4h2v2h-2zm-4 4h2v2h-2zm4 0h2v2h-2zM3 7h2v2H3zm16 0h2v2h-2zM7 3h2v2H7zm8 0h2v2h-2zm4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"wrap_text\": {\n    \"name\": \"wrap_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17h6v2H4zm13-6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4zM4 5h16v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"schema\": {\n    \"name\": \"schema\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6,3h3v2H6V3z M9,21H6v-2h3V21z M9,13H6v-2h3V13z M19,13h-3v-2h3V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9H14z M6,3h3v2H6V3z M9,21H6v-2h3V21z M9,13H6v-2 h3V13z M19,13h-3v-2h3V13z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.5,3.5H8V5H5.5V3.5z M8,17H5.5v-1.5H8V17z M8,10.75H5.5v-1.5H8V10.75z M15.5,10.75H13v-1.5h2.5V10.75z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.5,7.75v1.5h-2v-1.5h-2V6.5h2V2H4v4.5h2v1.25H4v4.5h2V14H4v4.5h5.5V14h-2v-1.75h2v-1.5h2v1.5H17v-4.5H11.5z M5.5,3.5H8V5 H5.5V3.5z M8,17H5.5v-1.5H8V17z M8,10.75H5.5v-1.5H8V10.75z M15.5,10.75H13v-1.5h2.5V10.75z\\\"></path>\"\n      }\n    }\n  },\n  \"format_color_fill\": {\n    \"name\": \"format_color_fill\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.56,8.94L7.62,0L6.21,1.41l2.38,2.38L3.44,8.94c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17 s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5 c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z M2,20h20v4H2V20z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M15.25,14c0.96,0,1.75-0.79,1.75-1.75c0-1.16-1.75-3.06-1.75-3.06s-1.75,1.9-1.75,3.06C13.5,13.21,14.29,14,15.25,14z\\\"></path><rect height=\\\"4\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"16\\\"></rect><path d=\\\"M7.03,12.6C7.3,12.87,7.65,13,8,13s0.7-0.13,0.97-0.4l3.63-3.63c0.53-0.53,0.53-1.4,0-1.93L5.57,0L4.51,1.06l2.43,2.43 L3.4,7.03c-0.53,0.53-0.53,1.4,0,1.93L7.03,12.6z M8,4.56L11.44,8H4.56L8,4.56z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_textdirection_r_to_l\": {\n    \"name\": \"format_textdirection_r_to_l\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 6c0 1.1.9 2 2 2V4c-1.1 0-2 .9-2 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6 6c0 2.21 1.79 4 4 4v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6zm4 2c-1.1 0-2-.9-2-2s.9-2 2-2v4zM4 18l4 4v-3h12v-2H8v-3z\\\"></path>\"\n      }\n    }\n  },\n  \"pentagon\": {\n    \"name\": \"pentagon\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon opacity=\\\".3\\\" points=\\\"19.63,9.78 16.56,19 7.44,19 4.37,9.78 12,4.44\\\"></polygon><path d=\\\"M19.63,9.78L16.56,19H7.44L4.37,9.78L12,4.44L19.63,9.78z M2,9l4,12h12l4-12L12,2L2,9z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polyline opacity=\\\".3\\\" points=\\\"10,3.82 16.21,8.09 13.63,15.5 6.37,15.5 3.79,8.09 10,3.82\\\"></polyline><path d=\\\"M10,3.82l6.21,4.27l-2.57,7.41H6.37L3.79,8.09L10,3.82 M2,7.5L5.3,17h9.4L18,7.5L10,2L2,7.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"strikethrough_s\": {\n    \"name\": \"strikethrough_s\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.44 5.88c.19-.15.43-.27.72-.36.29-.09.64-.13 1.03-.13.4 0 .76.06 1.06.16.3.11.55.25.75.44s.35.41.44.68c.1.26.15.54.15.85h3.01c0-.66-.13-1.26-.38-1.81s-.61-1.03-1.08-1.43c-.46-.4-1.03-.72-1.69-.94-.67-.23-1.4-.34-2.21-.34-.79 0-1.52.1-2.18.29-.65.2-1.22.48-1.7.83-.48.36-.85.79-1.11 1.29-.27.51-.4 1.06-.4 1.67 0 .64.13 1.19.39 1.67.04.08.1.17.15.25H12c-.64-.22-1.03-.45-1.41-.7-.49-.33-.74-.73-.74-1.21 0-.23.05-.45.15-.66s.25-.39.44-.55zM3 12h9.62c.18.07.4.14.55.2.37.17.66.34.87.51.21.17.35.36.43.57.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42-.45-.44-.59-.75-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58.16.45.37.85.65 1.21.28.35.6.66.98.92.37.26.78.48 1.22.65s.9.3 1.38.39c.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28.65-.19 1.21-.45 1.67-.79.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V10H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"mode_edit_outline\": {\n    \"name\": \"mode_edit_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"5,18.08 5,19 5.92,19 14.98,9.94 14.06,9.02\\\"></polygon><g><path d=\\\"M3,17.25L3,21l3.75,0L17.81,9.94l-3.75-3.75L3,17.25z M5.92,19L5,19l0-0.92l9.06-9.06l0.92,0.92L5.92,19z\\\"></path></g><g><path d=\\\"M20.71,5.63l-2.34-2.34c-0.39-0.39-1.02-0.39-1.41,0l-1.83,1.83l3.75,3.75l1.83-1.83C21.1,6.65,21.1,6.02,20.71,5.63z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"4.5,14.62 4.5,15.5 5.38,15.5 12.5,8.38 11.62,7.5\\\"></polygon><path d=\\\"M3,14v3h3l8.62-8.62l-3-3L3,14z M5.38,15.5H4.5v-0.88l7.12-7.12l0.88,0.88L5.38,15.5z\\\"></path><path d=\\\"M16.71,4.88l-1.59-1.59c-0.39-0.39-1.02-0.39-1.41,0l-1.03,1.02l3,3l1.03-1.02C17.1,5.9,17.1,5.27,16.71,4.88z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stacked_line_chart\": {\n    \"name\": \"stacked_line_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2,19.99l7.5-7.51l4,4l7.09-7.97L22,9.92l-8.5,9.56l-4-4l-6,6.01L2,19.99z M3.5,15.49l6-6.01l4,4L22,3.92l-1.41-1.41 l-7.09,7.97l-4-4L2,13.99L3.5,15.49z\\\"></path>\"\n      }\n    }\n  },\n  \"money_off_csred\": {\n    \"name\": \"money_off_csred\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z\\\"></path>\"\n      }\n    }\n  },\n  \"pie_chart_outline\": {\n    \"name\": \"pie_chart_outline\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-1 17.94c-3.93-.5-7-3.88-7-7.94s3.07-7.44 7-7.93v15.87zm2-.01V13h6.93c-.45 3.61-3.32 6.48-6.93 6.93zM13 11V4.07c3.61.45 6.48 3.33 6.93 6.93H13z\\\"></path>\"\n      }\n    }\n  },\n  \"type_specimen\": {\n    \"name\": \"type_specimen\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"14.04,7.17 13.96,7.17 12.65,10.89 15.34,10.89\\\"></polygon><path d=\\\"M8,16h12V4H8V16z M13.2,5.5h1.61l3.38,9h-1.56l-0.8-2.3h-3.63l-0.82,2.3H9.81L13.2,5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z\\\"></path><path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z\\\"></path><path d=\\\"M12.19,12.2h3.63l0.8,2.3h1.56l-3.38-9H13.2l-3.38,9h1.56L12.19,12.2z M13.96,7.17h0.08l1.31,3.72h-2.69L13.96,7.17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.5,13.5h10v-10h-10V13.5z M10.87,5h1.25l2.63,7h-1.21l-0.63-1.79h-2.83L9.46,12H8.24L10.87,5z\\\" opacity=\\\".3\\\"></path><polygon opacity=\\\".3\\\" points=\\\"11.53,6.3 11.47,6.3 10.45,9.19 12.55,9.19\\\"></polygon><path d=\\\"M3.5,5H2v11.5C2,17.33,2.67,18,3.5,18H15v-1.5H3.5V5z\\\"></path><path d=\\\"M16.5,2h-10C5.67,2,5,2.67,5,3.5v10C5,14.33,5.67,15,6.5,15h10c0.83,0,1.5-0.67,1.5-1.5v-10C18,2.67,17.33,2,16.5,2z M16.5,13.5h-10v-10h10V13.5z\\\"></path><path d=\\\"M10.09,10.21h2.83L13.54,12h1.21l-2.63-7h-1.25l-2.63,7h1.21L10.09,10.21z M11.47,6.3h0.06l1.02,2.89h-2.09L11.47,6.3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"margin\": {\n    \"name\": \"margin\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M15,7h2v2h-2V7z M15,11h2v2h-2V11z M11,7h2v2h-2V7z M11,11h2v2h-2V11z M7,7h2v2H7V7z M7,11h2v2H7V11z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"11\\\"></rect><path d=\\\"M3,3v18h18V3H3z M19,19H5V5h14V19z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"format_indent_decrease\": {\n    \"name\": \"format_indent_decrease\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 16V8l-4 4zm4-9h10v2H11zm0 4h10v2H11zm0 4h10v2H11zm-8 4h18v2H3zM3 3h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"align_vertical_top\": {\n    \"name\": \"align_vertical_top\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,2v2H2V2H22z M7,22h3V6H7V22z M14,16h3V6h-3V16z\\\"></path>\"\n      }\n    }\n  },\n  \"checklist\": {\n    \"name\": \"checklist\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,7h-9v2h9V7z M22,15h-9v2h9V15z M5.54,11L2,7.46l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,11z M5.54,19L2,15.46 l1.41-1.41l2.12,2.12l4.24-4.24l1.41,1.41L5.54,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,7.5h-7V6h7V7.5z M18,12.5h-7V14h7V12.5z M3.06,5.11L2,6.17L4.83,9l4.6-4.6L8.36,3.34L4.83,6.88L3.06,5.11z M3.06,11.61 L2,12.67l2.83,2.83l4.6-4.6L8.36,9.84l-3.54,3.54L3.06,11.61z\\\"></path>\"\n      }\n    }\n  },\n  \"insert_drive_file\": {\n    \"name\": \"insert_drive_file\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 4H6v16h12V9h-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zm-2 12H6V4h7v5h5v11z\\\"></path>\"\n      }\n    }\n  },\n  \"data_object\": {\n    \"name\": \"data_object\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,7v2c0,0.55-0.45,1-1,1H2v4h1c0.55,0,1,0.45,1,1v2c0,1.65,1.35,3,3,3h3v-2H7c-0.55,0-1-0.45-1-1v-2 c0-1.3-0.84-2.42-2-2.83v-0.34C5.16,11.42,6,10.3,6,9V7c0-0.55,0.45-1,1-1h3V4H7C5.35,4,4,5.35,4,7z\\\"></path><path d=\\\"M21,10c-0.55,0-1-0.45-1-1V7c0-1.65-1.35-3-3-3h-3v2h3c0.55,0,1,0.45,1,1v2c0,1.3,0.84,2.42,2,2.83v0.34 c-1.16,0.41-2,1.52-2,2.83v2c0,0.55-0.45,1-1,1h-3v2h3c1.65,0,3-1.35,3-3v-2c0-0.55,0.45-1,1-1h1v-4H21z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M4,6.25v1.5C4,8.16,3.66,8.5,3.25,8.5H2v3h1.25C3.66,11.5,4,11.84,4,12.25v1.5C4,14.99,5.01,16,6.25,16H8v-1.5H6.25 c-0.41,0-0.75-0.34-0.75-0.75v-1.5c0-1.16-0.88-2.11-2-2.24V9.99c1.12-0.12,2-1.08,2-2.24v-1.5c0-0.41,0.34-0.75,0.75-0.75H8V4 H6.25C5.01,4,4,5.01,4,6.25z\\\"></path><path d=\\\"M16.75,8.5C16.34,8.5,16,8.16,16,7.75v-1.5C16,5.01,14.99,4,13.75,4H12v1.5h1.75c0.41,0,0.75,0.34,0.75,0.75v1.5 c0,1.16,0.88,2.11,2,2.24v0.03c-1.12,0.12-2,1.08-2,2.24v1.5c0,0.41-0.34,0.75-0.75,0.75H12V16h1.75c1.24,0,2.25-1.01,2.25-2.25 v-1.5c0-0.41,0.34-0.75,0.75-0.75H18v-3H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"height\": {\n    \"name\": \"height\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><polygon points=\\\"13,6.99 16,6.99 12,3 8,6.99 11,6.99 11,17.01 8,17.01 12,21 16,17.01 13,17.01\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><polygon points=\\\"11,7 14,7 10,3.01 6,7 9,7 9,13 6,13 10,16.99 14,13 11,13\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"format_size\": {\n    \"name\": \"format_size\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12h3v7h3v-7h3V9H3zm6-5h5v12h3V7h5V4H9z\\\"></path>\"\n      }\n    }\n  },\n  \"border_color\": {\n    \"name\": \"border_color\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.81,8.94l-3.75-3.75L4,14.25V18h3.75L16.81,8.94z M6,16v-0.92l7.06-7.06l0.92,0.92L6.92,16H6z\\\"></path><path d=\\\"M19.71,6.04c0.39-0.39,0.39-1.02,0-1.41l-2.34-2.34C17.17,2.09,16.92,2,16.66,2c-0.25,0-0.51,0.1-0.7,0.29l-1.83,1.83 l3.75,3.75L19.71,6.04z\\\"></path><rect height=\\\"4\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"20\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"draw\": {\n    \"name\": \"draw\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"14.61,11.81 7.41,19 6,19 6,17.59 13.19,10.39\\\"></polygon><path d=\\\"M18.85,10.39l1.06-1.06c0.78-0.78,0.78-2.05,0-2.83L18.5,5.09c-0.78-0.78-2.05-0.78-2.83,0l-1.06,1.06L18.85,10.39z M14.61,11.81L7.41,19H6v-1.41l7.19-7.19L14.61,11.81z M13.19,7.56L4,16.76V21h4.24l9.19-9.19L13.19,7.56L13.19,7.56z M19,17.5 c0,2.19-2.54,3.5-5,3.5c-0.55,0-1-0.45-1-1s0.45-1,1-1c1.54,0,3-0.73,3-1.5c0-0.47-0.48-0.87-1.23-1.2l1.48-1.48 C18.32,15.45,19,16.29,19,17.5z M4.58,13.35C3.61,12.79,3,12.06,3,11c0-1.8,1.89-2.63,3.56-3.36C7.59,7.18,9,6.56,9,6 c0-0.41-0.78-1-2-1C5.74,5,5.2,5.61,5.17,5.64C4.82,6.05,4.19,6.1,3.77,5.76C3.36,5.42,3.28,4.81,3.62,4.38C3.73,4.24,4.76,3,7,3 c2.24,0,4,1.32,4,3c0,1.87-1.93,2.72-3.64,3.47C6.42,9.88,5,10.5,5,11c0,0.31,0.43,0.6,1.07,0.86L4.58,13.35z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"12.17,9.89 6.56,15.5 5.5,15.5 5.5,14.44 11.11,8.83\\\"></polygon><path d=\\\"M15.35,8.83l0.71-0.71c0.59-0.59,0.59-1.54,0-2.12L15,4.94c-0.59-0.59-1.54-0.59-2.12,0l-0.71,0.71L15.35,8.83z M12.17,9.89 L6.56,15.5H5.5v-1.06l5.61-5.61L12.17,9.89z M11.11,6.71L4,13.82V17h3.18l7.11-7.11L11.11,6.71L11.11,6.71z M4.51,11.18 C3.59,10.76,3,10.16,3,9.25c0-1.31,1.39-1.99,2.61-2.59C6.45,6.24,7.5,5.73,7.5,5.25C7.5,4.91,6.83,4.5,6,4.5 c-0.94,0-1.36,0.46-1.38,0.48C4.35,5.29,3.88,5.33,3.57,5.07C3.26,4.81,3.21,4.35,3.46,4.03C3.55,3.93,4.34,3,6,3 c1.47,0,3,0.84,3,2.25C9,6.66,7.55,7.37,6.27,8C5.56,8.35,4.5,8.87,4.5,9.25c0,0.3,0.48,0.56,1.17,0.78L4.51,11.18z M14.14,12.16 c0.83,0.48,1.36,1.14,1.36,2.09c0,1.94-2.44,2.75-3.75,2.75C11.34,17,11,16.66,11,16.25s0.34-0.75,0.75-0.75 c0.77,0,2.25-0.49,2.25-1.25c0-0.39-0.38-0.71-0.97-0.97L14.14,12.16z\\\"></path>\"\n      }\n    }\n  },\n  \"border_horizontal\": {\n    \"name\": \"border_horizontal\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 3h2v2h-2zm8 0h2v2h-2zm0 4h2v2h-2zm-4-4h2v2h-2zM3 19h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm4 12h2v2H7zm4-12h2v2h-2zM7 3h2v2H7zM3 3h2v2H3zm12 16h2v2h-2zm-4 0h2v2h-2zm8-4h2v2h-2zm0 4h2v2h-2zm-8-4h2v2h-2zm-8-4h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"short_text\": {\n    \"name\": \"short_text\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 9h16v2H4zm0 4h10v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"add_chart\": {\n    \"name\": \"add_chart\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"10\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><path d=\\\"M19,19H5V5h9V3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2v-9h-2V19z\\\"></path><rect height=\\\"7\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"10\\\"></rect><polygon points=\\\"19,5 19,3 17,3 17,5 15,5 15,7 17,7 17,9 19,9 19,7 21,7 21,5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"format_quote\": {\n    \"name\": \"format_quote\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.62 16h.76L19 12.76V8h-4v4h3.62zm-10 0h.76L9 12.76V8H5v4h3.62z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.62 18L21 13.24V6h-8v8h2.38l-2 4h5.24zM15 12V8h4v4.76L17.38 16h-.76l2-4H15zM3.38 18h5.24L11 13.24V6H3v8h2.38l-2 4zM5 12V8h4v4.76L7.38 16h-.76l2-4H5z\\\"></path>\"\n      }\n    }\n  },\n  \"move_up\": {\n    \"name\": \"move_up\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"5\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><path d=\\\"M3,13c0-2.45,1.76-4.47,4.08-4.91L5.59,9.59L7,11l4-4.01L7,3L5.59,4.41l1.58,1.58l0,0.06C3.7,6.46,1,9.42,1,13 c0,3.87,3.13,7,7,7h3v-2H8C5.24,18,3,15.76,3,13z\\\"></path><path d=\\\"M13,13v7h9v-7H13z M20,18h-5v-3h5V18z\\\"></path><rect height=\\\"7\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"12.5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"5\\\" width=\\\"7\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><path d=\\\"M11,16h7v-5h-7V16z M12.5,12.5h4v2h-4V12.5z\\\"></path><path d=\\\"M5.57,8.06l1.06,1.06L9.5,6.25L6.62,3.37L5.56,4.43l1.06,1.06V5.5H6.25C3.35,5.5,1,7.85,1,10.75C1,13.65,3.35,16,6.25,16 H9.5v-1.5H6.25c-2.07,0-3.75-1.68-3.75-3.75C2.5,8.68,4.18,7,6.25,7h0.37v0.01L5.57,8.06z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"format_strikethrough\": {\n    \"name\": \"format_strikethrough\",\n    \"keywords\": [\n      \"editor\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 12h18v2H3zm11-2V7h5V4H5v3h5v3zm-4 6h4v3h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"south_west\": {\n    \"name\": \"south_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,19v-2H8.41L20,5.41L18.59,4L7,15.59V9H5v10H15z\\\"></path>\"\n      }\n    }\n  },\n  \"cancel\": {\n    \"name\": \"cancel\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 11.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.59-13L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41z\\\"></path>\"\n      }\n    }\n  },\n  \"pivot_table_chart\": {\n    \"name\": \"pivot_table_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M21,5c0-1.1-0.9-2-2-2h-9v5h11V5z\\\"></path><path d=\\\"M3,19c0,1.1,0.9,2,2,2h3V10H3V19z\\\"></path><path d=\\\"M3,5v3h5V3H5C3.9,3,3,3.9,3,5z\\\"></path><path d=\\\"M18,9l-4,4h3v2c0,1.1-0.9,2-2,2h-2v-3l-4,4l4,4v-3h2c2.21,0,4-1.79,4-4v-2h3L18,9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_drop_down_circle\": {\n    \"name\": \"arrow_drop_down_circle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 11l-4-4h8l-4 4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-5l4-4H8z\\\"></path>\"\n      }\n    }\n  },\n  \"north_east\": {\n    \"name\": \"north_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,5v2h6.59L4,18.59L5.41,20L17,8.41V15h2V5H9z\\\"></path>\"\n      }\n    }\n  },\n  \"check\": {\n    \"name\": \"check\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z\\\"></path>\"\n      }\n    }\n  },\n  \"apps_outage\": {\n    \"name\": \"apps_outage\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M4,8h4V4H4V8z M10,20h4v-4h-4V20z M4,20h4v-4H4V20z M4,14h4v-4H4V14z M10,14h4v-4h-4V14z M16,20h4v-4h-4V20z M19,0 c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S21.76,0,19,0z M19.5,8h-1V7h1V8z M19.5,6h-1V2h1V6z M16,14h4v-2.07 C19.67,11.98,19.34,12,19,12c-1.07,0-2.09-0.24-3-0.68V14z M10,4v4h2.68C12.24,7.09,12,6.07,12,5c0-0.34,0.02-0.67,0.07-1H10z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M7,7H4V4h3V7z M7,8.5H4v3h3V8.5z M11.5,8.5h-3v3h3V8.5z M7,13H4v3h3V13z M11.5,13h-3v3h3V13z M16,13h-3v3h3V13z M20,4 c0,2.21-1.79,4-4,4s-4-1.79-4-4s1.79-4,4-4S20,1.79,20,4z M16.5,5h-1v1h1V5z M16.5,2h-1v2h1V2z M16,9.5v2h-3V8.61 C13.86,9.17,14.89,9.5,16,9.5z M11.39,7H8.5V4h2C10.5,5.11,10.83,6.14,11.39,7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_down\": {\n    \"name\": \"arrow_drop_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 10l5 5 5-5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward\": {\n    \"name\": \"arrow_forward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"more_vert\": {\n    \"name\": \"more_vert\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"last_page\": {\n    \"name\": \"last_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z\\\"></path>\"\n      }\n    }\n  },\n  \"west\": {\n    \"name\": \"west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9,19l1.41-1.41L5.83,13H22V11H5.83l4.59-4.59L9,5l-7,7L9,19z\\\"></path>\"\n      }\n    }\n  },\n  \"east\": {\n    \"name\": \"east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15,5l-1.41,1.41L18.17,11H2V13h16.17l-4.59,4.59L15,19l7-7L15,5z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_direction\": {\n    \"name\": \"assistant_direction\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M12,3c-4.99,0-9,4.01-9,9s4.01,9,9,9s9-4.01,9-9S16.99,3,12,3z M12.54,19.8c-0.35,0.27-0.79,0.27-1.15,0 L4.2,12.58c-0.27-0.36-0.27-0.8,0-1.16l7.19-7.22c0.35-0.27,0.79-0.27,1.15,0l7.19,7.22c0.36,0.27,0.36,0.8,0,1.16L12.54,19.8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M12,21c-4.99,0-9-4.01-9-9s4.01-9,9-9s9,4.01,9,9 S16.99,21,12,21z\\\"></path><path d=\\\"M19.73,11.42L12.54,4.2c-0.36-0.27-0.8-0.27-1.15,0L4.2,11.42c-0.27,0.36-0.27,0.8,0,1.16l7.19,7.22 c0.36,0.27,0.8,0.27,1.15,0l7.19-7.22C20.09,12.22,20.09,11.69,19.73,11.42z M13.5,14.5V12H10v3H8v-4c0-0.6,0.4-1,1-1h4.5V7.5 L17,11L13.5,14.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"apps\": {\n    \"name\": \"apps\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"more_horiz\": {\n    \"name\": \"more_horiz\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"menu_open\": {\n    \"name\": \"menu_open\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3,18h13v-2H3V18z M3,13h10v-2H3V13z M3,6v2h13V6H3z M21,15.59L17.42,12L21,8.41L19.59,7l-5,5l5,5L21,15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_forward_ios\": {\n    \"name\": \"arrow_forward_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><polygon points=\\\"6.23,20.23 8,22 18,12 8,2 6.23,3.77 14.46,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g></g><g><polygon points=\\\"4.59,16.59 6,18 14,10 6,2 4.59,3.41 11.17,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"arrow_back\": {\n    \"name\": \"arrow_back\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_upward\": {\n    \"name\": \"arrow_upward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_left\": {\n    \"name\": \"subdirectory_arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"waterfall_chart\": {\n    \"name\": \"waterfall_chart\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M18,4h3v16h-3V4z M3,13h3v7H3V13z M14,4h3v3h-3V4z M10,5h3v4h-3V5z M7,10h3v4H7V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"arrow_downward\": {\n    \"name\": \"arrow_downward\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_right\": {\n    \"name\": \"switch_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" transform=\\\"matrix(-1 -1.224647e-16 1.224647e-16 -1 24 24)\\\" width=\\\"24\\\"></rect><polyline opacity=\\\".3\\\" points=\\\"15.5,15.38 15.5,8.62 18.88,12 15.5,15.38\\\"></polyline><path d=\\\"M15.5,15.38V8.62L18.88,12L15.5,15.38 M14,19l7-7l-7-7V19L14,19z M10,19V5l-7,7L10,19z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios\": {\n    \"name\": \"arrow_back_ios\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M17.51 3.87L15.73 2.1 5.84 12l9.9 9.9 1.77-1.77L9.38 12l8.13-8.13z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_right\": {\n    \"name\": \"chevron_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"chevron_left\": {\n    \"name\": \"chevron_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_back_ios_new\": {\n    \"name\": \"arrow_back_ios_new\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><polygon points=\\\"17.77,3.77 16,2 6,12 16,22 17.77,20.23 9.54,12\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><polygon points=\\\"14.41,3.41 13,2 5,10 13,18 14.41,16.59 7.83,10\\\"></polygon>\"\n      }\n    }\n  },\n  \"unfold_more\": {\n    \"name\": \"unfold_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen\": {\n    \"name\": \"fullscreen\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z\\\"></path>\"\n      }\n    }\n  },\n  \"close\": {\n    \"name\": \"close\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\\\"></path>\"\n      }\n    }\n  },\n  \"payments\": {\n    \"name\": \"payments\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M17 6H3v8h14V6zm-7 7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M17 4H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM3 14V6h14v8H3z\\\"></path><path d=\\\"M10 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\\\"></path></g><path d=\\\"M23 7v11c0 1.1-.9 2-2 2H4v-2h17V7h2z\\\"></path></g>\"\n      }\n    }\n  },\n  \"expand_more\": {\n    \"name\": \"expand_more\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"fullscreen_exit\": {\n    \"name\": \"fullscreen_exit\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"add_home_work\": {\n    \"name\": \"add_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,5v1.4l5,3.57v1.11c0.33-0.05,0.66-0.08,1-0.08c1.08,0,2.09,0.25,3,0.68V5H12z M19,9h-2V7h2V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,5h9v6.68c0.75,0.36,1.43,0.84,2,1.42V3H10v1.97l2,1.43V5z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"7\\\"></rect><path d=\\\"M8,6l-7,5v10h6v-5h2v5h2.68C11.25,20.09,11,19.08,11,18v-4H5v5H3v-6.97l5-3.57l5,3.57v1.08c0.57-0.59,1.25-1.07,2-1.42V11 L8,6z\\\"></path><path d=\\\"M8,8.46l-5,3.57V19h2v-5h6v4c0-1.91,0.76-3.63,2-4.89v-1.08L8,8.46z\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10.5,4.5v1.55l1,0.73V6H13v1.5h-0.51l1.01,0.74v1.48C13.98,9.58,14.48,9.5,15,9.5 c0.9,0,1.75,0.22,2.5,0.61V4.5H10.5z M14.5,7.5V6H16v1.5H14.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"6\\\"></rect><polygon points=\\\"13,6 11.5,6 11.5,6.78 12.49,7.5 13,7.5\\\"></polygon><path d=\\\"M10.5,4.5h7v5.61c0.56,0.29,1.07,0.67,1.5,1.13V3H9v1.96l1.5,1.09V4.5z\\\"></path><path d=\\\"M6.5,5L1,9v8h4.5v-4h2v4H9h0.88c-0.18-0.47-0.31-0.97-0.36-1.5H9v-4H4v4H2.5V9.76l4-2.91l4,2.91v2.08 c0.4-0.57,0.91-1.07,1.5-1.45V9L6.5,5z\\\"></path><path d=\\\"M6.5,6.85l-4,2.91v5.74H4v-4h5v4h0.53C9.51,15.34,9.5,15.17,9.5,15c0-1.18,0.37-2.26,1-3.16V9.76L6.5,6.85z\\\" opacity=\\\".3\\\"></path><g><path d=\\\"M19,15c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4S19,17.21,19,15z M14.5,17v-1.5H13v-1h1.5V13h1v1.5H17v1h-1.5V17 H14.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"offline_share\": {\n    \"name\": \"offline_share\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><g><path d=\\\"M6,5H4v16c0,1.1,0.9,2,2,2h10v-2H6V5z\\\"></path></g><g><path d=\\\"M18,1h-8C8.9,1,8,1.9,8,3v14c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3C20,1.9,19.1,1,18,1z M18,17h-8v-1h8V17z M18,14h-8V6h8 V14z M18,4h-8V3h8V4z\\\"></path></g><g><path d=\\\"M12.5,10.25h2V12L17,9.5L14.5,7v1.75H12c-0.55,0-1,0.45-1,1V12h1.5V10.25z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"arrow_right\": {\n    \"name\": \"arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 17l5-5-5-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"app_settings_alt\": {\n    \"name\": \"app_settings_alt\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><path d=\\\"M21.81,12.74l-0.82-0.63c0-0.09,0-0.13,0-0.22l0.8-0.63c0.16-0.12,0.2-0.34,0.1-0.51l-0.85-1.48 c-0.07-0.13-0.21-0.2-0.35-0.2c-0.05,0-0.1,0.01-0.15,0.03l-0.95,0.38c-0.08-0.05-0.11-0.07-0.19-0.11l-0.15-1.01 C19.22,8.15,19.05,8,18.85,8h-1.71c-0.2,0-0.37,0.15-0.4,0.34L16.6,9.35c-0.03,0.02-0.07,0.03-0.1,0.05 c-0.03,0.02-0.06,0.04-0.09,0.06l-0.95-0.38c-0.05-0.02-0.1-0.03-0.15-0.03c-0.14,0-0.27,0.07-0.35,0.2l-0.85,1.48 c-0.1,0.17-0.06,0.39,0.1,0.51l0.8,0.63c0,0.09,0,0.13,0,0.23l-0.8,0.63c-0.16,0.12-0.2,0.34-0.1,0.51l0.85,1.48 c0.07,0.13,0.21,0.2,0.35,0.2c0.05,0,0.1-0.01,0.15-0.03l0.95-0.37c0.08,0.05,0.12,0.07,0.2,0.11l0.15,1.01 c0.03,0.2,0.2,0.34,0.4,0.34h1.71c0.2,0,0.37-0.15,0.4-0.34l0.15-1.01c0.03-0.02,0.07-0.03,0.1-0.05 c0.03-0.02,0.06-0.04,0.09-0.06l0.95,0.38c0.05,0.02,0.1,0.03,0.15,0.03c0.14,0,0.27-0.07,0.35-0.2l0.85-1.48 C22.01,13.08,21.97,12.86,21.81,12.74z M18,13.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C19.5,12.83,18.83,13.5,18,13.5z M17,18H7V6h10v1h2V3c0-1.1-0.9-2-2-2H7C5.9,1,5,1.9,5,3v18c0,1.1,0.9,2,2,2h10c1.1,0,2-0.9,2-2 v-4h-2V18z M7,3h10v1H7V3z M17,21H7v-1h10V21z\\\"></path><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"3\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"10\\\" x=\\\"7\\\" y=\\\"20\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"south\": {\n    \"name\": \"south\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,15l-1.41-1.41L13,18.17V2H11v16.17l-4.59-4.59L5,15l7,7L19,15z\\\"></path>\"\n      }\n    }\n  },\n  \"maps_home_work\": {\n    \"name\": \"maps_home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g><g><g><path d=\\\"M17,11h2v2h-2v2h2v2h-2v2h4V5h-9v1.4l5,3.57V11z M17,7h2v2h-2V7z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"10,3 10,4.97 10.96,5.66 12,6.4 12,5 21,5 21,19 17,19 17,21 23,21 23,3\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"3,12 3,19 5,19 5,14 11,14 11,19 13,19 13,12 8,8.5\\\"></polygon><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"15\\\"></rect><path d=\\\"M1,11v10h6v-5h2v5h6V11L8,6L1,11z M13,19h-2v-5H5v5H3v-7l5-3.5l5,3.5V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"menu\": {\n    \"name\": \"menu\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z\\\"></path>\"\n      }\n    }\n  },\n  \"double_arrow\": {\n    \"name\": \"double_arrow\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"15.5,5 11,5 16,12 11,19 15.5,19 20.5,12\\\"></polygon><polygon points=\\\"8.5,5 4,5 9,12 4,19 8.5,19 13.5,12\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"9.21,15 12.43,15 16,10 12.43,5 9.21,5 12.79,10\\\"></polygon><polygon points=\\\"4.21,15 7.43,15 11,10 7.43,5 4.21,5 7.79,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"home_work\": {\n    \"name\": \"home_work\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M17,11h2v2h-2v2h2v2h-2v2h4V5h-9v1.4l5,3.57V11z M17,7h2v2h-2V7z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"10,3 10,4.97 10.96,5.66 12,6.4 12,5 21,5 21,19 17,19 17,21 23,21 23,3\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"3,12 3,19 5,19 5,14 11,14 11,19 13,19 13,12 8,8.5\\\"></polygon><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"11\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"15\\\"></rect><path d=\\\"M1,11v10h6v-5h2v5h6V11L8,6L1,11z M13,19h-2v-5H5v5H3v-7l5-3.5l5,3.5V19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11.5,6H13v1.5h-0.51l1.01,0.74v7.26h4v-11h-7v1.55l1,0.73V6z M14.5,6H16v1.5h-1.5V6z M14.5,9.25H16v1.5 h-1.5V9.25z M14.5,12.5H16V14h-1.5V12.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"6\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"9.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"12.5\\\"></rect><polygon points=\\\"13,6 11.5,6 11.5,6.78 12.49,7.5 13,7.5\\\"></polygon><polygon points=\\\"9,3 9,4.96 10.5,6.05 10.5,4.5 17.5,4.5 17.5,15.5 13.5,15.5 13.5,17 19,17 19,3\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"2.5,9.76 2.5,15.5 4,15.5 4,12 9,12 9,15.5 10.5,15.5 10.5,9.76 6.5,6.85\\\"></polygon><path d=\\\"M1,9v8h4.5v-3.5h2V17H12V9L6.5,5L1,9z M10.5,15.5H9V12H4v3.5H2.5V9.76l4-2.91l4,2.91V15.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"north\": {\n    \"name\": \"north\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z\\\"></path>\"\n      }\n    }\n  },\n  \"north_west\": {\n    \"name\": \"north_west\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M5,15h2V8.41L18.59,20L20,18.59L8.41,7H15V5H5V15z\\\"></path>\"\n      }\n    }\n  },\n  \"campaign\": {\n    \"name\": \"campaign\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M18,11c0,0.67,0,1.33,0,2c1.2,0,2.76,0,4,0c0-0.67,0-1.33,0-2C20.76,11,19.2,11,18,11z\\\"></path><path d=\\\"M16,17.61c0.96,0.71,2.21,1.65,3.2,2.39c0.4-0.53,0.8-1.07,1.2-1.6c-0.99-0.74-2.24-1.68-3.2-2.4 C16.8,16.54,16.4,17.08,16,17.61z\\\"></path><path d=\\\"M20.4,5.6C20,5.07,19.6,4.53,19.2,4c-0.99,0.74-2.24,1.68-3.2,2.4c0.4,0.53,0.8,1.07,1.2,1.6 C18.16,7.28,19.41,6.35,20.4,5.6z\\\"></path><path d=\\\"M4,9c-1.1,0-2,0.9-2,2v2c0,1.1,0.9,2,2,2h1v4h2v-4h1l5,3V6L8,9H4z M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4 h0.55L9.03,10.71z\\\"></path><path d=\\\"M15.5,12c0-1.33-0.58-2.53-1.5-3.35v6.69C14.92,14.53,15.5,13.33,15.5,12z\\\"></path><path d=\\\"M9.03,10.71L11,9.53v4.94l-1.97-1.18L8.55,13H8H4v-2h4h0.55L9.03,10.71z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"expand_less\": {\n    \"name\": \"expand_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"subdirectory_arrow_right\": {\n    \"name\": \"subdirectory_arrow_right\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 24H0V0h24v24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_drop_up\": {\n    \"name\": \"arrow_drop_up\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14l5-5 5 5H7z\\\"></path>\"\n      }\n    }\n  },\n  \"unfold_less\": {\n    \"name\": \"unfold_less\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"expand_circle_down\": {\n    \"name\": \"expand_circle_down\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M12,15.5L7.5,11l1.42-1.41L12,12.67l3.08-3.08 L16.5,11L12,15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.08,9.59L12,12.67L8.92,9.59L7.5,11l4.5,4.5l4.5-4.5L15.08,9.59z M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8s8,3.58,8,8S16.42,20,12,20z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5c-3.59,0-6.5,2.91-6.5,6.5s2.91,6.5,6.5,6.5s6.5-2.91,6.5-6.5S13.59,3.5,10,3.5z M10,12.6L6.63,9.23 l1.06-1.06L10,10.48l2.31-2.31l1.06,1.06L10,12.6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,12.6L6.63,9.23l1.06-1.06L10,10.48l2.31-2.31l1.06,1.06L10,12.6z M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8s3.58-8,8-8 S18,5.58,18,10z M16.5,10c0-3.59-2.91-6.5-6.5-6.5S3.5,6.41,3.5,10s2.91,6.5,6.5,6.5S16.5,13.59,16.5,10z\\\"></path>\"\n      }\n    }\n  },\n  \"legend_toggle\": {\n    \"name\": \"legend_toggle\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,15H4v-2h16V15z M20,17H4v2h16V17z M15,11l5-3.55L20,5l-5,3.55L10,5L4,8.66L4,11l5.92-3.61L15,11z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M16,15H4v-1h12V15z M16,11H4v1h12V11z M4,9l4-2.78L12,9l4-2.78V5l-4,2.78L8,5L4,7.78L4,9z\\\"></path></g>\"\n      }\n    }\n  },\n  \"first_page\": {\n    \"name\": \"first_page\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_left\": {\n    \"name\": \"switch_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><polyline opacity=\\\".3\\\" points=\\\"8.5,8.62 8.5,15.38 5.12,12 8.5,8.62\\\"></polyline><path d=\\\"M8.5,8.62v6.76L5.12,12L8.5,8.62 M10,5l-7,7l7,7V5L10,5z M14,5v14l7-7L14,5z\\\"></path>\"\n      }\n    }\n  },\n  \"refresh\": {\n    \"name\": \"refresh\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z\\\"></path>\"\n      }\n    }\n  },\n  \"south_east\": {\n    \"name\": \"south_east\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M19,9h-2v6.59L5.41,4L4,5.41L15.59,17H9v2h10V9z\\\"></path>\"\n      }\n    }\n  },\n  \"arrow_left\": {\n    \"name\": \"arrow_left\",\n    \"keywords\": [\n      \"navigation\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M24 0v24H0V0h24z\\\" fill=\\\"none\\\" opacity=\\\".87\\\"></path><path d=\\\"M14 7l-5 5 5 5V7z\\\"></path>\"\n      }\n    }\n  },\n  \"play_arrow\": {\n    \"name\": \"play_arrow\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 8.64v6.72L15.27 12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 19l11-7L8 5v14zm2-10.36L15.27 12 10 15.36V8.64z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle_on\": {\n    \"name\": \"shuffle_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M5.41,4l5.18,5.17l-1.42,1.41 L4,5.41L5.41,4z M20,20h-5.5l2.05-2.05l-3.13-3.13l1.41-1.41l3.13,3.13L20,14.5V20z M20,9.5l-2.04-2.04L5.41,20L4,18.59L16.54,6.04 L14.5,4H20V9.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"library_add\": {\n    \"name\": \"library_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h12V4H8v12zm2-7h3V6h2v3h3v2h-3v3h-2v-3h-3V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-7-2h2v-3h3V9h-3V6h-2v3h-3v2h3z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_video\": {\n    \"name\": \"featured_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18V5H3v14zM4 6h9v7H4V6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM4 6h9v7H4z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_play_next\": {\n    \"name\": \"queue_play_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 15v-3h3v-2h-3V7h-2v3H8v2h3v3zm5 0l3 3-3 3 1.5 1.5L24 18l-4.5-4.5zM8 19v2h8v-2h2v-2H3V5h18v8h2V5c0-1.11-.9-2-2-2H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle\": {\n    \"name\": \"pause_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M11,16H9V8h2 V16z M15,16h-2V8h2V16z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><rect height=\\\"8\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"8\\\"></rect><rect height=\\\"8\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"8\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5 S13.58,3.5,10,3.5z M9,13H7.5V7H9V13z M12.5,13H11V7h1.5V13z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"7.5\\\" y=\\\"7\\\"></rect><rect height=\\\"6\\\" width=\\\"1.5\\\" x=\\\"11\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"mic_off\": {\n    \"name\": \"mic_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3.7c-.66 0-1.2.54-1.2 1.2v1.51l2.39 2.39.01-3.9c0-.66-.54-1.2-1.2-1.2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 11h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.55-.9l4.2 4.2 1.41-1.41L4.41 2.86zM10.8 4.9c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2l-.01 3.91L15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65l1.76 1.76V4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"radio\": {\n    \"name\": \"radio\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 13H4v7h16v-7zM8 18.98c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 20c0 1.1.89 2 2 2h16c1.11 0 2-.9 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15C2.51 6.43 2 7.17 2 8v12zM4 8h16v3h-2V9h-2v2H4V8zm0 5h16v7H4v-7z\\\"></path><circle cx=\\\"8\\\" cy=\\\"16.48\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"art_track\": {\n    \"name\": \"art_track\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 7h8v2h-8zm0 4h8v2h-8zm0 4h8v2h-8zM4 17h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm1.25-4.25l1.25 1.51L8.25 12l2.25 3h-7l1.75-2.25z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_forward\": {\n    \"name\": \"fast_forward\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><polygon opacity=\\\".3\\\" points=\\\"15,9.86 15,14.14 18.03,12\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"6,9.86 6,14.14 9.03,12\\\"></polygon><path d=\\\"M4,18l8.5-6L4,6V18z M6,9.86L9.03,12L6,14.14V9.86z\\\"></path><path d=\\\"M21.5,12L13,6v12L21.5,12z M15,9.86L18.03,12L15,14.14V9.86z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"playlist_add\": {\n    \"name\": \"playlist_add\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M18,14v-4h-2v4h-4v2h4v4h2v-4h4v-2H18z M3,16h7v-2H3V16z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect><polygon points=\\\"14.75,11.25 14.75,8 13.25,8 13.25,11.25 10,11.25 10,12.75 13.25,12.75 13.25,16 14.75,16 14.75,12.75 18,12.75 18,11.25\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"5k\": {\n    \"name\": \"5k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75-2.25 V15H13V9z M6.5,13.5h3v-1h-3V9H11v1.5H8v1h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H6.5V13.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,14v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H6.5v3.5h3v1h-3V15H10C10.55,15,11,14.55,11,14z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"forward_30\": {\n    \"name\": \"forward_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04c-.09 0-.17-.01-.25-.04s-.14-.06-.2-.11-.1-.1-.13-.17-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85c0-.07.02-.14.05-.2s.07-.11.12-.15.11-.07.18-.1.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z\\\"></path>\"\n      }\n    }\n  },\n  \"note\": {\n    \"name\": \"note\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 6H4v12.01h16V11h-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6H4zm16 14.01H4V6h11v5h5v7.01z\\\"></path>\"\n      }\n    }\n  },\n  \"9k\": {\n    \"name\": \"9k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75-2.25V15H13V9z M6.5,13.5h3v-1h-2 c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1H10c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H6.5V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><path d=\\\"M11,14v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h2v1h-3V15H10C10.55,15,11,14.55,11,14z M9.5,11.5H8V10h1.5V11.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"1k_plus\": {\n    \"name\": \"1k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M10.5,9H12v2.25L13.75,9h1.75l-2.25,3l2.25,3 h-1.75L12,12.75V15h-1.5V9z M6,9h3v6H7.5v-4.5H6V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"7.5,15 9,15 9,9 6,9 6,10.5 7.5,10.5\\\"></polygon><polygon points=\\\"12,12.75 13.75,15 15.5,15 13.25,12 15.5,9 13.75,9 12,11.25 12,9 10.5,9 10.5,15 12,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"2k\": {\n    \"name\": \"2k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75-2.25V15H13V9z M6.5,12.5 c0-0.55,0.45-1,1-1h2v-1h-3V9H10c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H8v1h3V15H6.5V12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,13.5H8v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15H11V13.5z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"skip_previous\": {\n    \"name\": \"skip_previous\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 14.14V9.86L12.97 12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6 6h2v12H6zm12 12V6l-8.5 6 8.5 6zm-2-3.86L12.97 12 16 9.86v4.28z\\\"></path>\"\n      }\n    }\n  },\n  \"library_add_check\": {\n    \"name\": \"library_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><g><path d=\\\"M8,16h12V4H8V16z M10.4,9.09l2.07,2.08L17.6,6L19,7.41L12.47,14L9,10.5L10.4,9.09z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H8V4h12V16z M12.47,14 L9,10.5l1.4-1.41l2.07,2.08L17.6,6L19,7.41L12.47,14z M4,20h14v2H4c-1.1,0-2-0.9-2-2V6h2V20z\\\"></path></g><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\" y=\\\"0\\\"></rect><g><g opacity=\\\".3\\\"><path d=\\\"M7,4v9h9V4H7z M10.09,11.33L7.96,9.21L8.67,8.5l1.41,1.41l4.24-4.24l0.71,0.71L10.09,11.33z\\\"></path></g><g><path d=\\\"M4,16h10v1H4c-0.55,0-1-0.45-1-1V6h1V16z M17,4v9c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h9 C16.55,3,17,3.45,17,4z M16,4H7v9h9V4z M8.67,8.5L7.96,9.21l2.12,2.12l4.95-4.95l-0.71-0.71l-4.24,4.24L8.67,8.5z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"queue\": {\n    \"name\": \"queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h12V4H8v12zm1-7h4V5h2v4h4v2h-4v4h-2v-4H9V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 20c0 1.1.9 2 2 2h14v-2H4V6H2v14zM20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7-1h2v-4h4V9h-4V5h-2v4H9v2h4z\\\"></path>\"\n      }\n    }\n  },\n  \"movie\": {\n    \"name\": \"movie\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 10H5.76L4 6.47V18h16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.01 6L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2zM4 6.47L5.76 10H20v8H4V6.47z\\\"></path>\"\n      }\n    }\n  },\n  \"airplay\": {\n    \"name\": \"airplay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><polygon points=\\\"6,22 18,22 12,16\\\"></polygon><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v12c0,1.1,0.9,2,2,2h4v-2H3V5h18v12h-4v2h4c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"control_camera\": {\n    \"name\": \"control_camera\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.3 13.77L5.54 12l1.76-1.77-1.76-1.77L2 12l3.54 3.54zm8.24 4.69l-1.77-1.76L12 18.46l-1.77-1.76-1.77 1.76L12 22zm2.92-2.92L22 12l-3.54-3.54-1.76 1.77L18.46 12l-1.76 1.77zM12 5.54l1.77 1.76 1.77-1.76L12 2 8.46 5.54l1.77 1.76z\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"3\\\"></circle>\"\n      }\n    }\n  },\n  \"replay_10\": {\n    \"name\": \"replay_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam_off\": {\n    \"name\": \"videocam_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.39 8L15 10.61V8zM5 8v8h9.73l-8-8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.41 1.86L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.55-.18L19.73 21l1.41-1.41L3.41 1.86zM5 16V8h1.73l8 8H5zm10-8v2.61l6 6V6.5l-4 4V7c0-.55-.45-1-1-1h-5.61l2 2H15z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check_circle\": {\n    \"name\": \"playlist_add_check_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8c4.41,0,8-3.59,8-8S16.41,4,12,4z M7,7h7v2H7V7z M7,10h7v2H7V10z M10,15 H7v-2h3V15z M14.05,18.36l-2.83-2.83l1.41-1.41l1.41,1.41L17.59,12L19,13.41L14.05,18.36z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4z M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10 c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M14,10H7v2h7V10z M14,7H7v2h7V7z M7,15h3v-2H7V15z M19,13.41L17.59,12l-3.54,3.54 l-1.41-1.41l-1.41,1.41l2.83,2.83L19,13.41z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5z M6,6h5.5v1.5H6V6z M6,8.5h5.5V10H6V8.5z M8.5,12.5H6V11h2.5V12.5z M11.76,15l-2.12-2.12l1.06-1.06l1.06,1.06l2.47-2.47l1.06,1.06L11.76,15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.24,10.4l1.06,1.06L11.76,15l-2.12-2.12l1.06-1.06l1.06,1.06L14.24,10.4z M3.5,10c0,3.58,2.92,6.5,6.5,6.5 s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5S3.5,6.42,3.5,10z M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8s3.58-8,8-8S18,5.58,18,10z M8.5,11H6 v1.5h2.5V11z M11.5,6H6v1.5h5.5V6z M11.5,8.5H6V10h5.5V8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"6k_plus\": {\n    \"name\": \"6k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"7.5\\\" y=\\\"12.5\\\"></rect><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15 h-1.75l-1.75-2.25V15H11V9z M6,10c0-0.55,0.45-1,1-1h3v1.5H7.5v1H9c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1 V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon><path d=\\\"M7,15h2c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,12.5h1 V14h-1V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"8k_plus\": {\n    \"name\": \"8k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"7.5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"7.5\\\" y=\\\"10\\\"></rect><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15 h-1.75l-1.75-2.25V15H11V9z M6,10c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,15h2c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v4C6,14.55,6.45,15,7,15z M7.5,10h1v1.5h-1V10z M7.5,12.5h1V14h-1V12.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"mic\": {\n    \"name\": \"mic\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M12,12c0.55,0,1-0.45,1-1V5c0-0.55-0.45-1-1-1s-1,0.45-1,1v6C11,11.55,11.45,12,12,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,14c1.66,0,3-1.34,3-3V5c0-1.66-1.34-3-3-3S9,3.34,9,5v6C9,12.66,10.34,14,12,14z M11,5c0-0.55,0.45-1,1-1s1,0.45,1,1 v6c0,0.55-0.45,1-1,1s-1-0.45-1-1V5z\\\"></path><path d=\\\"M17,11c0,2.76-2.24,5-5,5s-5-2.24-5-5H5c0,3.53,2.61,6.43,6,6.92V21h2v-3.08c3.39-0.49,6-3.39,6-6.92H17z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"replay_5\": {\n    \"name\": \"replay_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15c.11 0 .2-.02.27-.06s.14-.1.18-.17.08-.15.11-.25.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle_filled\": {\n    \"name\": \"play_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zM10 7.5l6 4.5-6 4.5v-9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8zm-2 3.5v9l6-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"repeat\": {\n    \"name\": \"repeat\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 22v-3h12v-6h-2v4H7v-3l-4 4zM21 6l-4-4v3H5v6h2V7h10v3z\\\"></path>\"\n      }\n    }\n  },\n  \"featured_play_list\": {\n    \"name\": \"featured_play_list\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18V5H3v14zM5 7h9v2H5V7zm0 3h9v2H5v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 10h9v2H5zm0-3h9v2H5z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset\": {\n    \"name\": \"web_asset\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8h14v10H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 4H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H5V8h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"not_interested\": {\n    \"name\": \"not_interested\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9L7.1 5.69C8.45 4.63 10.15 4 12 4zM5.69 7.1L16.9 18.31C15.55 19.37 13.85 20 12 20c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9z\\\"></path>\"\n      }\n    }\n  },\n  \"web_asset_off\": {\n    \"name\": \"web_asset_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,17.17V8h-9.17L20,17.17z M5.17,8H4v10h11.17L5.17,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.83,4H20c1.11,0,2,0.9,2,2v12c0,0.34-0.09,0.66-0.23,0.94L20,17.17V8h-9.17L6.83,4z M20.49,23.31L17.17,20H4 c-1.11,0-2-0.9-2-2V6c0-0.34,0.08-0.66,0.23-0.94L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M15.17,18l-10-10H4v10H15.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><g opacity=\\\".3\\\"><path d=\\\"M12.38,14.5H3.5V7h1.38L12.38,14.5z M16.5,14.38V7H9.12L16.5,14.38z\\\"></path></g><g><path d=\\\"M17.78,17.78L2.22,2.22L1.16,3.28L2.38,4.5C2.14,4.77,2,5.12,2,5.5v9C2,15.33,2.67,16,3.5,16h10.38l2.84,2.84L17.78,17.78z M3.5,14.5V7h1.38l7.5,7.5H3.5z M6.12,4H16.5C17.33,4,18,4.67,18,5.5v9c0,0.38-0.14,0.73-0.38,1l-1.12-1.12V7H9.12L6.12,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_settings\": {\n    \"name\": \"video_settings\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,6h18v5h2V6c0-1.1-0.9-2-2-2H3C1.9,4,1,4.9,1,6v12c0,1.1,0.9,2,2,2h9v-2H3V6z\\\"></path><polygon points=\\\"15,12 9,8 9,16\\\"></polygon><path d=\\\"M22.71,18.43c0.03-0.29,0.04-0.58,0.01-0.86l1.07-0.85c0.1-0.08,0.12-0.21,0.06-0.32l-1.03-1.79 c-0.06-0.11-0.19-0.15-0.31-0.11L21.23,15c-0.23-0.17-0.48-0.31-0.75-0.42l-0.2-1.36C20.26,13.09,20.16,13,20.03,13h-2.07 c-0.12,0-0.23,0.09-0.25,0.21l-0.2,1.36c-0.26,0.11-0.51,0.26-0.74,0.42l-1.28-0.5c-0.12-0.05-0.25,0-0.31,0.11l-1.03,1.79 c-0.06,0.11-0.04,0.24,0.06,0.32l1.07,0.86c-0.03,0.29-0.04,0.58-0.01,0.86l-1.07,0.85c-0.1,0.08-0.12,0.21-0.06,0.32l1.03,1.79 c0.06,0.11,0.19,0.15,0.31,0.11l1.27-0.5c0.23,0.17,0.48,0.31,0.75,0.42l0.2,1.36c0.02,0.12,0.12,0.21,0.25,0.21h2.07 c0.12,0,0.23-0.09,0.25-0.21l0.2-1.36c0.26-0.11,0.51-0.26,0.74-0.42l1.28,0.5c0.12,0.05,0.25,0,0.31-0.11l1.03-1.79 c0.06-0.11,0.04-0.24-0.06-0.32L22.71,18.43z M19,19.5c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 S19.83,19.5,19,19.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3,5h14v4h1V5c0-0.55-0.45-1-1-1H3C2.45,4,2,4.45,2,5v10c0,0.55,0.45,1,1,1h8v-1H3V5z\\\"></path><path d=\\\"M19.1,14.2l0.87-0.69l-0.88-1.52l-1.03,0.4c-0.16-0.12-0.34-0.22-0.53-0.3L17.38,11h-1.75l-0.16,1.1 c-0.18,0.08-0.36,0.18-0.52,0.3l-1.04-0.41l-0.88,1.52l0.87,0.7c-0.02,0.2-0.03,0.4,0,0.6l-0.87,0.69l0.88,1.52l1.03-0.4 c0.16,0.12,0.34,0.22,0.53,0.3L15.63,18h1.75l0.16-1.1c0.18-0.08,0.36-0.18,0.52-0.3l1.04,0.41l0.88-1.52l-0.87-0.7 C19.12,14.59,19.12,14.4,19.1,14.2z M16.5,15.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1c0.55,0,1,0.45,1,1 C17.5,15.05,17.05,15.5,16.5,15.5z\\\"></path><polygon points=\\\"8,13 12.5,10 8,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"recent_actors\": {\n    \"name\": \"recent_actors\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7H3v10h10V7zM8 8c1.07 0 1.95.87 1.95 1.95 0 1.07-.87 1.95-1.95 1.95s-1.95-.87-1.95-1.95S6.93 8 8 8zm3.89 8H4.11v-.65c0-1.3 2.59-1.95 3.89-1.95s3.89.65 3.89 1.95V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 5h2v14h-2zm-4 0h2v14h-2zm-3 14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12zM3 7h10v10H3V7z\\\"></path><circle cx=\\\"8\\\" cy=\\\"9.94\\\" r=\\\"1.95\\\"></circle><path d=\\\"M8 13.4c-1.3 0-3.89.65-3.89 1.95V16h7.78v-.65c0-1.3-2.59-1.95-3.89-1.95z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption\": {\n    \"name\": \"closed_caption\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6H5v12h14V6zm-8 5H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 20h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v12c0 1.1.89 2 2 2zM5 6h14v12H5V6zm5 3H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1H9.5v.5h-2v-3h2v.5H11v-1c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1h-1.5v.5h-2v-3h2v.5H18v-1c0-.55-.45-1-1-1z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_up\": {\n    \"name\": \"volume_up\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 13h2.83L10 15.17V8.83L7.83 11H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 9v6h4l5 5V4L7 9H3zm7-.17v6.34L7.83 13H5v-2h2.83L10 8.83zm4-.86v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zm0-4.74v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77 0-4.28-2.99-7.86-7-8.77z\\\"></path>\"\n      }\n    }\n  },\n  \"explicit\": {\n    \"name\": \"explicit\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zM9 7h6v2h-4v2h4v2h-4v2h4v2H9V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-2 0H5V5h14v14zm-4-4h-4v-2h4v-2h-4V9h4V7H9v10h6z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_play\": {\n    \"name\": \"playlist_play\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"16,13 16,21 22,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"13,10.5 13,17 18,13.75\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"volume_down\": {\n    \"name\": \"volume_down\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 13h2.83L12 15.17V8.83L9.83 11H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02 0-1.77-1.02-3.29-2.5-4.03zM5 9v6h4l5 5V4L9 9H5zm7-.17v6.34L9.83 13H7v-2h2.83L12 8.83z\\\"></path>\"\n      }\n    }\n  },\n  \"missed_video_call\": {\n    \"name\": \"missed_video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 13.5V8H5v8h10v-2.5zM11 15l-3.89-3.89v2.55H6V9.22h4.44v1.11H7.89l3.11 3.1 2.99-3.01.78.79L11 15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 17c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10zm2-9h10v8H5V8zm6 5.43l-3.11-3.1h2.55V9.22H6v4.44h1.11v-2.55L11 15l3.77-3.79-.78-.79z\\\"></path>\"\n      }\n    }\n  },\n  \"lyrics\": {\n    \"name\": \"lyrics\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,4v14l2-2h9v-4.03c-0.62-0.83-1-1.85-1-2.97c0-1.12,0.38-2.14,1-2.97V4H4z M10,14H6v-2h4V14z M13,11H6V9 h7V11z M13,8H6V6h7V8z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"4\\\" x=\\\"6\\\" y=\\\"12\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"6\\\" y=\\\"6\\\"></rect><path d=\\\"M15,11.97V16H6l-2,2V4h11v2.03c0.52-0.69,1.2-1.25,2-1.6V4c0-1.1-0.9-2-2-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h9 c1.1,0,2-0.9,2-2v-2.42C16.2,13.22,15.52,12.66,15,11.97z\\\"></path><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><path d=\\\"M20,6.18C19.69,6.07,19.35,6,19,6c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3V3h2V1h-4V6.18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M3.5,3.5v10.88l0.88-0.88h8.12V9.4C12.19,8.83,12,8.19,12,7.5c0-0.69,0.19-1.34,0.5-1.91V3.5H3.5z M8,12H5 v-1.5h3V12z M11,9.25H5v-1.5h6V9.25z M11,6.5H5V5h6V6.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.5,9.4v4.1H4.38L3.5,14.38V3.5h9v2.09c0.35-0.64,0.87-1.18,1.5-1.54V3.5C14,2.67,13.33,2,12.5,2h-9 C2.67,2,2,2.67,2,3.5V18l3-3h7.5c0.83,0,1.5-0.67,1.5-1.5v-2.56C13.37,10.57,12.85,10.04,12.5,9.4z\\\"></path><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"3\\\" x=\\\"5\\\" y=\\\"10.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"5\\\" y=\\\"7.75\\\"></rect><path d=\\\"M17,5.21C16.69,5.08,16.36,5,16,5c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-5H20V1h-3V5.21z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"interpreter_mode\": {\n    \"name\": \"interpreter_mode\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M15.52,15.01C15.35,15,15.18,15,15,15c-2.37,0-4.29,0.73-5.48,1.34C9.2,16.5,9,16.84,9,17.22V18l7.17,0 C15.74,17.26,15.4,16.24,15.52,15.01z M13,8c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2S13,6.9,13,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.5,16.5c-0.83,0-1.5-0.67-1.5-1.5v-2.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5V15C22,15.83,21.33,16.5,20.5,16.5z M20,20h1c0,0,0-1.54,0-1.54c1.69-0.24,3-1.7,3-3.46h-1c0,1.38-1.12,2.5-2.5,2.5S18,16.38,18,15h-1c0,1.76,1.31,3.22,3,3.46 C20,18.46,20,20,20,20z M9,12c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c0.47,0,0.92,0.08,1.34,0.23C9.5,5.26,9,6.57,9,8 c0,1.43,0.5,2.74,1.34,3.77C9.92,11.92,9.47,12,9,12z M7.11,13.13C5.79,14.05,5,15.57,5,17.22V20H1v-2.78 c0-1.12,0.61-2.15,1.61-2.66C3.85,13.92,5.37,13.37,7.11,13.13z M11,8c0-2.21,1.79-4,4-4s4,1.79,4,4c0,2.21-1.79,4-4,4 S11,10.21,11,8z M13,8c0,1.1,0.9,2,2,2s2-0.9,2-2c0-1.1-0.9-2-2-2S13,6.9,13,8z M15,15c-2.37,0-4.29,0.73-5.48,1.34 C9.2,16.5,9,16.84,9,17.22V18l7.17,0c0.5,0.86,1.25,1.56,2.15,2L7,20v-2.78c0-1.12,0.61-2.15,1.61-2.66C10.29,13.7,12.47,13,15,13 c0.39,0,0.77,0.02,1.14,0.05c-0.33,0.59-0.55,1.26-0.62,1.96C15.35,15,15.18,15,15,15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M13.63,14.5l-6.13,0v-0.41c0-0.18,0.09-0.34,0.22-0.42C9.02,12.9,10.5,12.5,12,12.5 c0.38,0,0.75,0.03,1.13,0.08C13.12,13.27,13.3,13.93,13.63,14.5z M10.5,7c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S12.83,5.5,12,5.5S10.5,6.17,10.5,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,10c1.66,0,3-1.34,3-3s-1.34-3-3-3S9,5.34,9,7S10.34,10,12,10z M12,5.5c0.83,0,1.5,0.67,1.5,1.5S12.83,8.5,12,8.5 S10.5,7.83,10.5,7S11.17,5.5,12,5.5z M16.87,13.38c-0.62,0-1.12-0.5-1.12-1.12v-1.88c0-0.62,0.5-1.12,1.13-1.12 c0.62,0,1.12,0.5,1.12,1.12v1.88C18,12.87,17.5,13.38,16.87,13.38z M16.5,16h0.75l0-1.15c1.27-0.18,2.25-1.28,2.25-2.6h-0.75 c0,1.03-0.84,1.88-1.88,1.88S15,13.28,15,12.25h-0.75c0,1.32,0.98,2.42,2.25,2.6L16.5,16z M8.38,9.67C7.83,8.92,7.5,8,7.5,7 c0-1,0.33-1.92,0.88-2.67C7.96,4.12,7.5,4,7,4C5.34,4,4,5.34,4,7s1.34,3,3,3C7.5,10,7.96,9.88,8.38,9.67z M13.45,11.1 C12.97,11.04,12.49,11,12,11c-1.84,0-3.56,0.5-5.03,1.37C6.36,12.72,6,13.39,6,14.09V16l9.24,0c-0.68-0.33-1.24-0.85-1.61-1.5 l-6.13,0v-0.41c0-0.18,0.09-0.34,0.22-0.42C9.02,12.9,10.5,12.5,12,12.5c0.38,0,0.75,0.03,1.13,0.08 C13.13,12.05,13.25,11.56,13.45,11.1z M4.5,16H1v-1.91c0-0.7,0.36-1.36,0.97-1.72c1.29-0.76,2.76-1.23,4.33-1.35 C5.89,11.22,4.5,12.2,4.5,14.09V16z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_off\": {\n    \"name\": \"closed_caption_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g enable-background=\\\"new\\\"><g><path d=\\\"M19,6H5v12h14V6z M11,11H9.5v-0.5h-2v3h2V13H11v1c0,0.55-0.45,1-1,1H7 c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V11z M18,11h-1.5v-0.5h-2v3h2V13H18v1c0,0.55-0.45,1-1,1h-3 c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V11z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M5,20h14c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H5C3.89,4,3,4.9,3,6v12C3,19.1,3.89,20,5,20z M5,6h14v12H5V6z\\\"></path><path d=\\\"M10,9H7c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1H9.5v0.5h-2v-3h2V11H11v-1C11,9.45,10.55,9,10,9z\\\"></path><path d=\\\"M17,9h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-2v-3h2V11H18v-1 C18,9.45,17.55,9,17,9z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"7k_plus\": {\n    \"name\": \"7k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15 h-1.75l-1.75-2.25V15H11V9z M5.5,9H9c0.67,0,1.15,0.65,0.96,1.29L8.5,15H6.75l1.38-4.5H5.5V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M6.75,15H8.5l1.46-4.71C10.15,9.65,9.67,9,9,9H5.5v1.5h2.63L6.75,15z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"stop_circle\": {\n    \"name\": \"stop_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S16.42,4,12,4z M16,16H8V8h8V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.42,0-8-3.58-8-8s3.58-8,8-8 s8,3.58,8,8S16.42,20,12,20z M16,16H8V8h8V16z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,4.5c-3.04,0-5.5,2.46-5.5,5.5c0,3.04,2.46,5.5,5.5,5.5s5.5-2.46,5.5-5.5C15.5,6.96,13.04,4.5,10,4.5z M13,13H7V7h6V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3c-3.87,0-7,3.13-7,7c0,3.87,3.13,7,7,7s7-3.13,7-7C17,6.13,13.87,3,10,3z M10,15.5c-3.04,0-5.5-2.46-5.5-5.5 c0-3.04,2.46-5.5,5.5-5.5s5.5,2.46,5.5,5.5C15.5,13.04,13.04,15.5,10,15.5z M13,13H7V7h6V13z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_circle_outline\": {\n    \"name\": \"pause_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 8h2v8h-2zM9 8h2v8H9zm3 14c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"hd\": {\n    \"name\": \"hd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.5 10.5h2v3h-2zM19 5H5v14h14V5zm-8 10H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-4V9h4c.55 0 1 .45 1 1v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm4.5 6.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-4v6h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_from_queue\": {\n    \"name\": \"remove_from_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18V5H3v12zm5-7h8v2H8v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zM8 10h8v2H8z\\\"></path>\"\n      }\n    }\n  },\n  \"skip_next\": {\n    \"name\": \"skip_next\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 9.86v4.28L11.03 12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5 12L6 6v12l8.5-6zM8 9.86L11.03 12 8 14.14V9.86zM16 6h2v12h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"pause\": {\n    \"name\": \"pause\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 5h4v14H6zm8 0h4v14h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"closed_caption_disabled\": {\n    \"name\": \"closed_caption_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M8.83,6H19v10.17l-1.4-1.4C17.84,14.59,18,14.32,18,14v-1h-1.5v0.5h-0.17 l-1.83-1.83V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v0.17L8.83,6z M7.5,13.5h2V13h0.67l-2.5-2.5H7.5V13.5z M11,14 c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18h10.17L11,13.83V14z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.83,4H19c1.1,0,2,0.9,2,2v12c0,0.05-0.01,0.1-0.02,0.16L19,16.17V6H8.83L6.83,4z M19.78,22.61L17.17,20H5 c-1.11,0-2-0.9-2-2V6c0-0.05,0.02-0.1,0.02-0.15L1.39,4.22l1.41-1.41L18,18l1.82,1.82l1.37,1.37L19.78,22.61z M7.5,13.5h2V13h0.67 l-2.5-2.5H7.5V13.5z M15.17,18L11,13.83V14c0,0.55-0.45,1-1,1H7c-0.55,0-1-0.45-1-1v-4c0-0.32,0.16-0.59,0.4-0.78L5,7.83V18H15.17z M18,14v-1h-1.5v0.5h-0.17l1.28,1.28C17.84,14.59,18,14.32,18,14z M14.5,11.67V10.5h2V11H18v-1c0-0.55-0.45-1-1-1h-3 c-0.55,0-1,0.45-1,1v0.17L14.5,11.67z\\\"></path>\"\n      }\n    }\n  },\n  \"audio_file\": {\n    \"name\": \"audio_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13,4H6v16h12V9h-5V4z M16,11v2h-3v3.75c0,1.24-1.01,2.25-2.25,2.25S8.5,17.99,8.5,16.75 c0-1.24,1.01-2.25,2.25-2.25c0.46,0,0.89,0.14,1.25,0.38V11H16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M18,20H6V4h7v5h5V20z\\\"></path><path d=\\\"M12,14.88c-0.36-0.24-0.79-0.38-1.25-0.38c-1.24,0-2.25,1.01-2.25,2.25c0,1.24,1.01,2.25,2.25,2.25S13,17.99,13,16.75V13 h3v-2h-4V14.88z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M11,3.5H5.5v13h9V7H11V3.5z M13.5,9v2H11v3c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-1.1,0.9-2,2-2 c0.37,0,0.7,0.11,1,0.28V9H13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2H5.5C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5V6L12,2z M14.5,16.5h-9v-13H11V7h3.5 V16.5z\\\"></path><path d=\\\"M10,12.28C9.7,12.11,9.37,12,9,12c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2v-3h2.5V9H10V12.28z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"8k\": {\n    \"name\": \"8k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"8\\\" y=\\\"10\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"8\\\" y=\\\"12.5\\\"></rect><path d=\\\"M5,19h14V5H5V19z M13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75-2.25V15H13V9z M6.5,10 c0-0.55,0.45-1,1-1H10c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H7.5c-0.55,0-1-0.45-1-1V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,15H10c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,10h1.5v1.5H8 V10z M8,12.5h1.5V14H8V12.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"4k\": {\n    \"name\": \"4k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v14h14V5zm-7 8.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.89-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2zM5 5h14v14H5V5zm6 4H9.5v3H8V9H6.5v4.5h3V15H11v-1.49h1V12h-1zm5.5 0l-2 3 2 3h1.7l-2-3 2-3zM13 9v6h1.5V9z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing_disabled\": {\n    \"name\": \"hearing_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.03,3.2C7.15,2.44,8.51,2,10,2c3.93,0,7,3.07,7,7c0,1.26-0.38,2.65-1.07,3.9c-0.02,0.04-0.05,0.08-0.08,0.13l-1.48-1.48 C14.77,10.69,15,9.8,15,9c0-2.8-2.2-5-5-5C9.08,4,8.24,4.26,7.5,4.67L6.03,3.2z M17.21,14.38l1.43,1.43C20.11,13.93,21,11.57,21,9 c0-3.04-1.23-5.79-3.22-7.78l-1.42,1.42C17.99,4.26,19,6.51,19,9C19,11.02,18.33,12.88,17.21,14.38z M10,6.5 c-0.21,0-0.4,0.03-0.59,0.08l3.01,3.01C12.47,9.4,12.5,9.21,12.5,9C12.5,7.62,11.38,6.5,10,6.5z M21.19,21.19L2.81,2.81L1.39,4.22 l2.13,2.13C3.19,7.16,3,8.05,3,9h2c0-0.36,0.05-0.71,0.12-1.05l6.61,6.61c-0.88,0.68-1.78,1.41-2.27,2.9c-0.5,1.5-1,2.01-1.71,2.38 C7.56,19.94,7.29,20,7,20c-1.1,0-2-0.9-2-2H3c0,2.21,1.79,4,4,4c0.57,0,1.13-0.12,1.64-0.35c1.36-0.71,2.13-1.73,2.73-3.55 c0.32-0.98,0.9-1.43,1.71-2.05c0.03-0.02,0.05-0.04,0.08-0.06l6.62,6.62L21.19,21.19z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M11,8c0,0.45-0.15,0.85-0.4,1.19L7.81,6.4C8.15,6.15,8.55,6,9,6C10.1,6,11,6.9,11,8z M17.07,17.07L2.93,2.93L2.22,3.64 l2.27,2.27C4.19,6.54,4,7.25,4,8h1c0-0.47,0.09-0.92,0.24-1.34l1.82,1.82C7.24,9.2,7.8,9.76,8.52,9.94l2.1,2.1c0,0,0,0,0,0 c-0.6,0.46-1.23,0.93-1.56,1.92c-0.39,1.16-0.81,1.58-1.42,1.9C7.42,15.95,7.17,16,6.92,16c-0.65,0-1.26-0.42-1.62-1H4.2 c0.42,1.12,1.5,2,2.72,2c0.4,0,0.8-0.08,1.16-0.24c0.96-0.5,1.51-1.21,1.93-2.49c0.23-0.69,0.64-1,1.21-1.43 c0.04-0.03,0.07-0.06,0.11-0.09l5.03,5.03L17.07,17.07z M9.04,4C11.26,4,13,5.71,13,7.9c0,0.72-0.22,1.51-0.63,2.24 c-0.1,0.19-0.21,0.34-0.32,0.49l0.72,0.72c0.16-0.22,0.32-0.45,0.47-0.72C13.73,9.75,14,8.78,14,7.9C14,5.15,11.83,3,9.04,3 C7.75,3,6.59,3.5,5.7,4.29l0.71,0.71C7.12,4.38,8.03,4,9.04,4z M16,8c0-2.19-1-4.14-2.58-5.42l-0.72,0.72C14.1,4.39,15,6.09,15,8 c0,1.55-0.6,2.95-1.57,4.02l0.71,0.71C15.29,11.48,16,9.83,16,8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"fiber_dvr\": {\n    \"name\": \"fiber_dvr\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 11.56v-.89c0-.76-.58-1.33-1.33-1.33h-3.11v5.33h1.33v-1.78h1.02l.76 1.78H20l-.8-1.87c.44-.22.8-.71.8-1.24zm-1.33 0h-1.78v-.89h1.78v.89zM7.11 9.33H4v5.33h3.11c.76 0 1.33-.58 1.33-1.33v-2.67c0-.75-.57-1.33-1.33-1.33zm0 4H5.33v-2.67h1.78v2.67zm7-4h-1.34l-.89 3.05L11 9.33H9.66l1.56 5.34h1.33z\\\"></path><path d=\\\"M3 5h18v14H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.11 0-2 .89-2 2v14c0 1.1.89 2 2 2h18c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 16H3V5h18v14z\\\"></path>\"\n      }\n    }\n  },\n  \"video_library\": {\n    \"name\": \"video_library\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h12V4H8v12zm4-10.5l6 4.5-6 4.5v-9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zM12 5.5v9l6-4.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hearing\": {\n    \"name\": \"hearing\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36z\\\"></path><circle cx=\\\"14\\\" cy=\\\"9\\\" r=\\\"2.5\\\"></circle><path d=\\\"M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55.51.23 1.07.35 1.64.35 2.21 0 4-1.79 4-4h-2c0 1.1-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"games\": {\n    \"name\": \"games\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17.33V20h2v-2.67l-1-1zm2-10.66V4h-2v2.67l1 1zM16.33 12l1 1H20v-2h-2.67zM4 11v2h2.67l1-1-1-1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 9v6h5.5l3-3-3-3H2zm4.67 4H4v-2h2.67l1 1-1 1zM22 9h-5.5l-3 3 3 3H22V9zm-2 4h-2.67l-1-1 1-1H20v2zm-5 3.5l-3-3-3 3V22h6v-5.5zM13 20h-2v-2.67l1-1 1 1V20zM9 7.5l3 3 3-3V2H9v5.5zM11 4h2v2.67l-1 1-1-1V4z\\\"></path>\"\n      }\n    }\n  },\n  \"4k_plus\": {\n    \"name\": \"4k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11.5,9H13v2.25 L14.75,9h1.75l-2.25,3l2.25,3h-1.75L13,12.75V15h-1.5V9z M5.5,9H7v3h1.5V9H10v3h1v1.5h-1V15H8.5v-1.5h-3V9z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"8.5,15 10,15 10,13.5 11,13.5 11,12 10,12 10,9 8.5,9 8.5,12 7,12 7,9 5.5,9 5.5,13.5 8.5,13.5\\\"></polygon><polygon points=\\\"13,12.75 14.75,15 16.5,15 14.25,12 16.5,9 14.75,9 13,11.25 13,9 11.5,9 11.5,15 13,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"call_to_action\": {\n    \"name\": \"call_to_action\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18V5H3v14zm2-4h14v3H5v-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM5 15h14v3H5z\\\"></path>\"\n      }\n    }\n  },\n  \"play_disabled\": {\n    \"name\": \"play_disabled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"10,12.83 10,15.36 11.55,14.37\\\"></polygon></g><path d=\\\"M2.81,2.81L1.39,4.22L8,10.83V19l4.99-3.18l6.78,6.78l1.41-1.41L2.81,2.81z M10,15.36v-2.53l1.55,1.55L10,15.36z M19,12 L8,5v0.17l8.45,8.45L19,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"slow_motion_video\": {\n    \"name\": \"slow_motion_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.26 18.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm11-8.95v2.02C16.97 4.59 20 7.95 20 12s-3.03 7.41-6.95 7.93v2.02C18.08 21.42 22 17.16 22 12c0-5.16-3.92-9.42-8.95-9.95zM16 12l-2.95-2.21L10 7.5v9l3.05-2.29zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_manual_record\": {\n    \"name\": \"fiber_manual_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zm0-14c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z\\\"></path>\"\n      }\n    }\n  },\n  \"sort_by_alpha\": {\n    \"name\": \"sort_by_alpha\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.94 4.66L12.58 2.3l-2.36 2.36zm-4.55 13.07h1.84L7.74 6.27H6.1L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45zm-5.42-4.09l1.94-5.18 1.94 5.18H4.97zm7.61 8.06l2.33-2.33h-4.66zm9.08-14.16V6.28h-8.3v1.6h5.88l-5.92 8.56v1.29h8.53v-1.59h-6.12z\\\"></path>\"\n      }\n    }\n  },\n  \"add_to_queue\": {\n    \"name\": \"add_to_queue\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 17h18V5H3v12zm5-7h3V7h2v3h3v2h-3v3h-2v-3H8v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 15h2v-3h3v-2h-3V7h-2v3H8v2h3zM21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.11-.9-2-2-2zm0 14H3V5h18v12z\\\"></path>\"\n      }\n    }\n  },\n  \"replay_30\": {\n    \"name\": \"replay_30\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43c0-.08-.01-.15-.04-.22s-.06-.12-.11-.17-.11-.09-.18-.11-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85c0-.18.04-.34.11-.48s.17-.27.3-.37.27-.18.44-.23.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53c0 .09-.01.18-.04.27s-.07.17-.13.25-.12.15-.2.22-.17.12-.28.17c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z\\\"></path>\"\n      }\n    }\n  },\n  \"video_label\": {\n    \"name\": \"video_label\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h18v11H3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_check\": {\n    \"name\": \"playlist_add_check\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"11\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"2\\\" width=\\\"7\\\" x=\\\"3\\\" y=\\\"14\\\"></rect><polygon points=\\\"20.59,11.93 16.34,16.17 14.22,14.05 12.81,15.46 16.34,19 22,13.34\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"16.94,9.34 13.4,12.88 11.64,11.11 10.58,12.17 13.4,15 18,10.4\\\"></polygon><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11.25\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8.12\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"subtitles\": {\n    \"name\": \"subtitles\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18h16V6H4v12zm14-2h-2v-2h2v2zm-8-6h8v2h-8v-2zm-4 0h2v2H6v-2zm0 4h8v2H6v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12zM6 10h2v2H6zm0 4h8v2H6zm10 0h2v2h-2zm-6-4h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"library_books\": {\n    \"name\": \"library_books\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h12V4H8v12zm2-10h8v2h-8V6zm0 3h8v2h-8V9zm0 3h4v2h-4v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zM6 4v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zm14 12H8V4h12v12zM10 9h8v2h-8zm0 3h4v2h-4zm0-6h8v2h-8z\\\"></path>\"\n      }\n    }\n  },\n  \"fast_rewind\": {\n    \"name\": \"fast_rewind\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 14.14V9.86L5.97 12zm9 0V9.86L14.97 12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 6l-8.5 6 8.5 6V6zm-2 8.14L5.97 12 9 9.86v4.28zM20 6l-8.5 6 8.5 6V6zm-2 8.14L14.97 12 18 9.86v4.28z\\\"></path>\"\n      }\n    }\n  },\n  \"subscriptions\": {\n    \"name\": \"subscriptions\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 20h16v-8H4v8zm6-7.27L16 16l-6 3.26v-6.53z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 6h16v2H4zm2-4h12v2H6zm14 8H4c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm0 10H4v-8h16v8zm-10-7.27v6.53L16 16z\\\"></path>\"\n      }\n    }\n  },\n  \"9k_plus\": {\n    \"name\": \"9k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1\\\" x=\\\"7.5\\\" y=\\\"10\\\"></rect><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15 h-1.75l-1.75-2.25V15H11V9z M6,13.5h2.5v-1H7c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h2c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H6 V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,14v-4c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5c0,0.55,0.45,1,1,1h1.5v1H6V15h3C9.55,15,10,14.55,10,14z M8.5,11.5 h-1V10h1V11.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"av_timer\": {\n    \"name\": \"av_timer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9h-1v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9z\\\"></path><circle cx=\\\"12\\\" cy=\\\"17\\\" r=\\\"1\\\"></circle><circle cx=\\\"17\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><circle cx=\\\"7\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle>\"\n      }\n    }\n  },\n  \"web\": {\n    \"name\": \"web\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><rect height=\\\"3.5\\\" opacity=\\\".3\\\" width=\\\"10.5\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"3.5\\\" opacity=\\\".3\\\" width=\\\"10.5\\\" x=\\\"4\\\" y=\\\"14.5\\\"></rect><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"3.5\\\" x=\\\"16.5\\\" y=\\\"9\\\"></rect><path d=\\\"M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M14.5,18L4,18v-3.5h10.5 V18z M14.5,12.5H4V9h10.5V12.5z M20,18l-3.5,0V9H20V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"volume_mute\": {\n    \"name\": \"volume_mute\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 13h2.83L14 15.17V8.83L11.83 11H9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 9v6h4l5 5V4l-5 5H7zm7-.17v6.34L11.83 13H9v-2h2.83L14 8.83z\\\"></path>\"\n      }\n    }\n  },\n  \"volume_off\": {\n    \"name\": \"volume_off\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.83 11H5v2h2.83L10 15.17v-3.76l-1.29-1.29z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06c1.34-.3 2.57-.92 3.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM10 15.17L7.83 13H5v-2h2.83l.88-.88L10 11.41v3.76zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8c0-1.77-1.02-3.29-2.5-4.03v1.79l2.48 2.48c.01-.08.02-.16.02-.24z\\\"></path>\"\n      }\n    }\n  },\n  \"replay\": {\n    \"name\": \"replay\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M7,6l5,5V7c3.31,0,6,2.69,6,6s-2.69,6-6,6s-6-2.69-6-6H4c0,4.42,3.58,8,8,8s8-3.58,8-8c0-4.42-3.58-8-8-8V1L7,6z\\\"></path></g>\"\n      }\n    }\n  },\n  \"surround_sound\": {\n    \"name\": \"surround_sound\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M4,18h16V6H4V18z M16.94,7.06C18.32,8.41,19,10.21,19,12s-0.68,3.59-2.05,4.95l-1.23-1.23 c1.02-1.03,1.53-2.37,1.53-3.72c0-1.35-0.52-2.69-1.54-3.71L16.94,7.06z M12,8.5c1.93,0,3.5,1.57,3.5,3.5c0,1.93-1.57,3.5-3.5,3.5 c-1.93,0-3.5-1.57-3.5-3.5C8.5,10.07,10.07,8.5,12,8.5z M7.05,7.05l1.23,1.23C7.27,9.31,6.75,10.65,6.75,12 c0,1.35,0.52,2.69,1.54,3.71l-1.23,1.23C5.68,15.59,5,13.79,5,12S5.68,8.41,7.05,7.05z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><path d=\\\"M8.29,15.71C7.27,14.69,6.75,13.35,6.75,12c0-1.35,0.52-2.69,1.53-3.72L7.05,7.05C5.68,8.41,5,10.21,5,12 s0.68,3.59,2.06,4.94L8.29,15.71z\\\"></path><path d=\\\"M12,15.5c1.93,0,3.5-1.57,3.5-3.5c0-1.93-1.57-3.5-3.5-3.5c-1.93,0-3.5,1.57-3.5,3.5C8.5,13.93,10.07,15.5,12,15.5z M12,10.5c0.83,0,1.5,0.67,1.5,1.5s-0.67,1.5-1.5,1.5s-1.5-0.67-1.5-1.5S11.17,10.5,12,10.5z\\\"></path><path d=\\\"M15.72,15.72l1.23,1.23C18.32,15.59,19,13.79,19,12s-0.68-3.59-2.06-4.94l-1.23,1.23c1.02,1.02,1.54,2.36,1.54,3.71 C17.25,13.35,16.73,14.69,15.72,15.72z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"forward_10\": {\n    \"name\": \"forward_10\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M18,13c0,3.31-2.69,6-6,6s-6-2.69-6-6s2.69-6,6-6v4l5-5l-5-5v4c-4.42,0-8,3.58-8,8c0,4.42,3.58,8,8,8s8-3.58,8-8H18z\\\"></path><polygon points=\\\"10.9,16 10.9,11.73 10.81,11.73 9.04,12.36 9.04,13.05 10.05,12.74 10.05,16\\\"></polygon><path d=\\\"M14.32,11.78c-0.18-0.07-0.37-0.1-0.59-0.1s-0.41,0.03-0.59,0.1s-0.33,0.18-0.45,0.33s-0.23,0.34-0.29,0.57 s-0.1,0.5-0.1,0.82v0.74c0,0.32,0.04,0.6,0.11,0.82s0.17,0.42,0.3,0.57s0.28,0.26,0.46,0.33s0.37,0.1,0.59,0.1s0.41-0.03,0.59-0.1 s0.33-0.18,0.45-0.33s0.22-0.34,0.29-0.57s0.1-0.5,0.1-0.82V13.5c0-0.32-0.04-0.6-0.11-0.82s-0.17-0.42-0.3-0.57 S14.49,11.85,14.32,11.78z M14.33,14.35c0,0.19-0.01,0.35-0.04,0.48s-0.06,0.24-0.11,0.32s-0.11,0.14-0.19,0.17 s-0.16,0.05-0.25,0.05s-0.18-0.02-0.25-0.05s-0.14-0.09-0.19-0.17s-0.09-0.19-0.12-0.32s-0.04-0.29-0.04-0.48v-0.97 c0-0.19,0.01-0.35,0.04-0.48s0.06-0.23,0.12-0.31s0.11-0.14,0.19-0.17s0.16-0.05,0.25-0.05s0.18,0.02,0.25,0.05 s0.14,0.09,0.19,0.17s0.09,0.18,0.12,0.31s0.04,0.29,0.04,0.48V14.35z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"snooze\": {\n    \"name\": \"snooze\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9zm8.337-9.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z\\\"></path>\"\n      }\n    }\n  },\n  \"play_circle\": {\n    \"name\": \"play_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M9.5,16.5v-9l7,4.5L9.5,16.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8c0-4.41,3.59-8,8-8 s8,3.59,8,8C20,16.41,16.41,20,12,20z\\\"></path><polygon points=\\\"9.5,16.5 16.5,12 9.5,7.5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5 S13.58,3.5,10,3.5z M8,13.5v-7l5.5,3.5L8,13.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><polygon points=\\\"8,13.5 13.5,10 8,6.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"pause_circle_filled\": {\n    \"name\": \"pause_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,4.41,3.59,8,8,8s8-3.59,8-8C20,7.59,16.41,4,12,4z M11,16H9V8h2V16z M15,16h-2 V8h2V16z\\\" opacity=\\\".3\\\"></path><rect height=\\\"8\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"8\\\"></rect><rect height=\\\"8\\\" width=\\\"2\\\" x=\\\"9\\\" y=\\\"8\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8 c0-4.41,3.59-8,8-8s8,3.59,8,8C20,16.41,16.41,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"play_circle_outline\": {\n    \"name\": \"play_circle_outline\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 16.5l6-4.5-6-4.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"video_file\": {\n    \"name\": \"video_file\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13,9V4H6v16h12V9H13z M16,17.06L14,16v1c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4 c0.55,0,1,0.45,1,1v1l2-1.06V17.06z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M6,20V4h7v5h5v11H6z M14,14l2-1.06v4.12L14,16v1 c0,0.55-0.45,1-1,1H9c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h4c0.55,0,1,0.45,1,1V14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11,7V3.5H5.5v13h9V7H11z M13,14c0,0-0.78-0.55-1.5-1.05V14c0,0.28-0.22,0.5-0.5,0.5H7.5 C7.22,14.5,7,14.28,7,14v-3.5C7,10.22,7.22,10,7.5,10H11c0.28,0,0.5,0.22,0.5,0.5v1.05L13,10.5V14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,6v10.5c0,0.83-0.67,1.5-1.5,1.5h-9C4.67,18,4,17.33,4,16.5v-13C4,2.67,4.67,2,5.5,2H12L16,6z M14.5,16.5V7H11V3.5H5.5 v13H14.5z M11.5,10.5c0-0.28-0.22-0.5-0.5-0.5H7.5C7.22,10,7,10.22,7,10.5V14c0,0.28,0.22,0.5,0.5,0.5H11c0.28,0,0.5-0.22,0.5-0.5 v-1.05C12.22,13.45,13,14,13,14v-3.5l-1.5,1.05V10.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one\": {\n    \"name\": \"repeat_one\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 15V9h-1l-2 1v1h1.5v4zm6-2h-2v4H7v-3l-4 4 4 4v-3h12zM17 2v3H5v6h2V7h10v3l4-4z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_add_circle\": {\n    \"name\": \"playlist_add_circle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M7,7h7v2H7V7z M10,15H7v-2h3V15z M7,12v-2h7v2 H7z M17,15v2h-2v-2h-2v-2h2v-2h2v2h2v2H17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z M14,10H7v2h7V10z M14,7H7v2h7V7z M7,15h3v-2H7V15z M19,13v2h-2v2h-2v-2h-2v-2h2v-2h2v2H19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5z M6,6h5.5v1.5H6V6z M8.5,12.5H6V11h2.5V12.5z M6,10V8.5h5.5V10H6z M14,12.5V14h-1.5v-1.5H11V11h1.5V9.5H14V11h1.5v1.5H14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z M8.5,11H6v1.5h2.5V11z M11.5,6H6v1.5h5.5V6z M11.5,8.5H6V10h5.5V8.5z M15.5,11v1.5H14V14 h-1.5v-1.5H11V11h1.5V9.5H14V11H15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"playlist_remove\": {\n    \"name\": \"playlist_remove\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,10H3v2h11V10z M14,6H3v2h11V6z M3,16h7v-2H3V16z M14.41,22L17,19.41L19.59,22L21,20.59L18.41,18L21,15.41L19.59,14 L17,16.59L14.41,14L13,15.41L15.59,18L13,20.59L14.41,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M3,5h9v1.5H3V5z M3,11.25h6v1.5H3V11.25z M3,8.12h9v1.5H3V8.12z M12.07,17.02l1.94-1.95l1.94,1.95l1.07-1.07l-1.95-1.94 l1.95-1.94L15.95,11l-1.94,1.95L12.07,11L11,12.07l1.95,1.94L11,15.95L12.07,17.02z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forward_5\": {\n    \"name\": \"forward_5\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z\\\"></path>\"\n      }\n    }\n  },\n  \"5k_plus\": {\n    \"name\": \"5k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11,9h1.5v2.25 L14.25,9H16l-2.25,3L16,15h-1.75l-1.75-2.25V15H11V9z M6,13.5h2.5v-1H6V9h4v1.5H7.5v1H9c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H6 V13.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M10,14v-1.5c0-0.55-0.45-1-1-1H7.5v-1H10V9H6v3.5h2.5v1H6V15h3C9.55,15,10,14.55,10,14z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"6k\": {\n    \"name\": \"6k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect enable-background=\\\"new\\\" height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"8\\\" y=\\\"12.5\\\"></rect><path d=\\\"M5,19h14V5H5V19z M13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75-2.25 V15H13V9z M6.5,10c0-0.55,0.45-1,1-1H11v1.5H8v1h2c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7.5c-0.55,0-1-0.45-1-1V10z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon><path d=\\\"M7.5,15H10c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H8v-1h3V9H7.5c-0.55,0-1,0.45-1,1v4C6.5,14.55,6.95,15,7.5,15z M8,12.5h1.5V14H8V12.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"10k\": {\n    \"name\": \"10k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"10\\\" y=\\\"10.5\\\"></rect><polygon opacity=\\\".3\\\" points=\\\"19,15 19,9 16.75,12\\\"></polygon><path d=\\\"M5,9h2.5v6H6v-4.5H5V19h14v-4h-1.75l-1.75-2.25V15H14V9h1.5v2.25L17.25,9H19V5H5V9z M8.5,10 c0-0.55,0.45-1,1-1H12c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H9.5c-0.55,0-1-0.45-1-1V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,9v6v4H5v-8.5h1V15h1.5V9H5V5 h14V9z\\\"></path><polygon points=\\\"15.5,11.25 15.5,9 14,9 14,15 15.5,15 15.5,12.75 17.25,15 19,15 16.75,12 19,9 17.25,9\\\"></polygon><path d=\\\"M9.5,15H12c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H9.5c-0.55,0-1,0.45-1,1v4C8.5,14.55,8.95,15,9.5,15z M10,10.5h1.5v3 H10V10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"3k\": {\n    \"name\": \"3k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75-2.25V15H13V9z M6.5,13.5h3v-1h-2v-1 h2v-1h-3V9H10c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H6.5V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,14v-4c0-0.55-0.45-1-1-1H6.5v1.5h3v1h-2v1h2v1h-3V15H10C10.55,15,11,14.55,11,14z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"library_music\": {\n    \"name\": \"library_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h12V4H8v12zm4.5-6c.57 0 1.08.19 1.5.51V5h4v2h-3v5.5c0 1.38-1.12 2.5-2.5 2.5S10 13.88 10 12.5s1.12-2.5 2.5-2.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-7.5-1c1.38 0 2.5-1.12 2.5-2.5V7h3V5h-4v5.51c-.42-.32-.93-.51-1.5-.51-1.38 0-2.5 1.12-2.5 2.5s1.12 2.5 2.5 2.5zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_smart_record\": {\n    \"name\": \"fiber_smart_record\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 20c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zM9 6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm8-1.74v2.09c2.33.82 4 3.04 4 5.65s-1.67 4.83-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74z\\\"></path>\"\n      }\n    }\n  },\n  \"sd\": {\n    \"name\": \"sd\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18h16V6H4V18z M13,9h4c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1h-4V9z M6,13h1.5v0.5h2v-1H7 c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1v1H9.5v-0.5h-2v1H10c0.55,0,1,0.45,1,1V14c0,0.55-0.45,1-1,1H7 c-0.55,0-1-0.45-1-1V13z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"14.5\\\" y=\\\"10.5\\\"></rect><path d=\\\"M7,15h3c0.55,0,1-0.45,1-1v-1.5c0-0.55-0.45-1-1-1H7.5v-1h2V11H11v-1c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v1.5 c0,0.55,0.45,1,1,1h2.5v1h-2V13H6v1C6,14.55,6.45,15,7,15z\\\"></path><path d=\\\"M18,14v-4c0-0.55-0.45-1-1-1h-4v6h4C17.55,15,18,14.55,18,14z M16.5,13.5h-2v-3h2V13.5z\\\"></path><path d=\\\"M20,4H4C2.89,4,2,4.9,2,6v12c0,1.1,0.89,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"high_quality\": {\n    \"name\": \"high_quality\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6H5v12h14V6zm-8 9H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-3.5h2v3h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 6v12c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm2 0h14v12H5V6zm4.5 5.5h-2V9H6v6h1.5v-2h2v2H11V9H9.5zM17 9h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h.75v1.5h1.5V15H17c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-.5 4.5h-2v-3h2v3z\\\"></path>\"\n      }\n    }\n  },\n  \"loop\": {\n    \"name\": \"loop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 18c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3zm0-14V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_pin\": {\n    \"name\": \"fiber_pin\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 14.62h1.31v-1.75h1.75c.74 0 1.31-.57 1.31-1.31v-.88c0-.74-.57-1.31-1.31-1.31H5v5.25zm1.31-3.93h1.75v.88H6.31v-.88zm5.03-1.31h1.31v5.25h-1.31zm3.28 5.24h1.1v-3.06l2.23 3.06H19V9.38h-1.09v3.06l-2.19-3.06h-1.1z\\\"></path><path d=\\\"M4 6h16v12H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"album\": {\n    \"name\": \"album\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm0 12.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-12.5c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"fiber_new\": {\n    \"name\": \"fiber_new\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.12 14.47V9.53H8.09v2.88L6.03 9.53H5v4.94h1.03v-2.88l2.1 2.88zm4.12-3.9V9.53h-3.3v4.94h3.3v-1.03h-2.06v-.91h2.06v-1.04h-2.06v-.92zm.82-1.04v4.12c0 .45.37.82.82.82h3.29c.45 0 .82-.37.82-.82V9.53h-1.03v3.71h-.92v-2.89h-1.03v2.9h-.93V9.53h-1.02z\\\"></path><path d=\\\"M4 6h16v12H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"queue_music\": {\n    \"name\": \"queue_music\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><circle cx=\\\"16\\\" cy=\\\"17\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M3,10h12v2H3V10z M3,14h8v2H3V14z M3,6h12v2H3V6z M17,14.18C16.69,14.07,16.35,14,16,14c-1.66,0-3,1.34-3,3s1.34,3,3,3 s3-1.34,3-3V8h3V6h-5V14.18z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"6\\\" x=\\\"3\\\" y=\\\"11\\\"></rect><rect height=\\\"1.5\\\" width=\\\"9\\\" x=\\\"3\\\" y=\\\"8\\\"></rect><path d=\\\"M18,5h-4v6.21C13.69,11.08,13.36,11,13,11c-1.38,0-2.5,1.12-2.5,2.5c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5v-7H18V5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"repeat_on\": {\n    \"name\": \"repeat_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H7v3l-4-4l4-4v3h10v-4h2V19z M17,10V7H7v4H5V5h12V2l4,4L17,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"repeat_one_on\": {\n    \"name\": \"repeat_one_on\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H7v3l-4-4l4-4v3h10v-4h2V19z M10,10.5V9h3v6h-1.5v-4.5H10z M17,10V7H7v4H5V5h12V2l4,4L17,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"video_call\": {\n    \"name\": \"video_call\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h10V8H5v8zm2-5h2V9h2v2h2v2h-2v2H9v-2H7v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8zm-6-1h2v-2h2v-2h-2V9H9v2H7v2h2z\\\"></path>\"\n      }\n    }\n  },\n  \"new_releases\": {\n    \"name\": \"new_releases\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m18.49 9.89.26-2.79-2.74-.62-1.43-2.41L12 5.18 9.42 4.07 7.99 6.48l-2.74.62.26 2.78L3.66 12l1.85 2.11-.26 2.8 2.74.62 1.43 2.41L12 18.82l2.58 1.11 1.43-2.41 2.74-.62-.26-2.79L20.34 12l-1.85-2.11zM13 17h-2v-2h2v2zm0-4h-2V7h2v6z\\\" opacity=\\\".3\\\"></path><path d=\\\"m20.9 5.54-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12l-2.44-2.78.34-3.68zM18.75 16.9l-2.74.62-1.43 2.41L12 18.82l-2.58 1.11-1.43-2.41-2.74-.62.26-2.8L3.66 12l1.85-2.12-.26-2.78 2.74-.61 1.43-2.41L12 5.18l2.58-1.11 1.43 2.41 2.74.62-.26 2.79L20.34 12l-1.85 2.11.26 2.79zM11 15h2v2h-2zm0-8h2v6h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"7k\": {\n    \"name\": \"7k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M13,9h1.5v2.25L16.25,9H18l-2.25,3L18,15h-1.75l-1.75-2.25V15H13V9z M6.5,9H10 c0.67,0,1.15,0.65,0.96,1.29L9.5,15H7.75l1.38-4.5H6.5V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M7.75,15H9.5l1.46-4.71C11.15,9.65,10.67,9,10,9H6.5v1.5h2.63L7.75,15z\\\"></path><polygon points=\\\"14.5,12.75 16.25,15 18,15 15.75,12 18,9 16.25,9 14.5,11.25 14.5,9 13,9 13,15 14.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"5g\": {\n    \"name\": \"5g\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M16.5,13H19v2h-5V9h7c0-1.1-0.9-2-2-2h-5c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h5c1.1,0,2-0.9,2-2v-4h-4.5V13z\\\"></path><path d=\\\"M3,13h5v2H3v2h5c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H5V9h5V7H3V13z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,10.5h2V12h-3V8h4c0-0.55-0.45-1-1-1h-3c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h3c0.55,0,1-0.45,1-1V9.5h-3V10.5z\\\"></path></g><g><path d=\\\"M9,8H6v1.5h2c0.55,0,1,0.45,1,1V12c0,0.55-0.45,1-1,1H5v-1h3v-1.5H5V7h4V8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"3k_plus\": {\n    \"name\": \"3k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15 h-1.75l-1.75-2.25V15H11V9z M5.5,13.5h3v-1h-2v-1h2v-1h-3V9H9c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H5.5V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M10,14v-4c0-0.55-0.45-1-1-1H5.5v1.5h3v1h-2v1h2v1h-3V15H9C9.55,15,10,14.55,10,14z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"1k\": {\n    \"name\": \"1k\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M12,9h1.5v2.25L15.25,9H17l-2.25,3L17,15h-1.75l-1.75-2.25V15H12V9z M7,9h3v6H8.5v-4.5H7 V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,15 10,15 10,9 7,9 7,10.5 8.5,10.5\\\"></polygon><polygon points=\\\"13.5,12.75 15.25,15 17,15 14.75,12 17,9 15.25,9 13.5,11.25 13.5,9 12,9 12,15 13.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"replay_circle_filled\": {\n    \"name\": \"replay_circle_filled\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M18,12.5c0,3.31-2.69,6-6,6s-6-2.69-6-6h2 c0,2.21,1.79,4,4,4s4-1.79,4-4s-1.79-4-4-4v3l-4-4l4-4v3C15.31,6.5,18,9.19,18,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"speed\": {\n    \"name\": \"speed\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z\\\"></path><path d=\\\"M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_none\": {\n    \"name\": \"mic_none\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 12c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"stop\": {\n    \"name\": \"stop\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 8h8v8H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6 18h12V6H6v12zM8 8h8v8H8V8z\\\"></path>\"\n      }\n    }\n  },\n  \"music_video\": {\n    \"name\": \"music_video\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18V5H3v14zm8-7c.35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3s1.34-3 3-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-1c1.65 0 2.98-1.33 3-2.97V8h3V6h-5v6.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"equalizer\": {\n    \"name\": \"equalizer\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16 9h4v11h-4zm-6-5h4v16h-4zm-6 8h4v8H4z\\\"></path>\"\n      }\n    }\n  },\n  \"videocam\": {\n    \"name\": \"videocam\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 8h10v8H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4V7zm-2 9H5V8h10v8z\\\"></path>\"\n      }\n    }\n  },\n  \"shuffle\": {\n    \"name\": \"shuffle\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-5.5l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5zM5.41 4L4 5.41l5.17 5.17 1.42-1.41zM20 20v-5.5l-2.04 2.04-3.13-3.13-1.41 1.41 3.13 3.13L14.5 20z\\\"></path>\"\n      }\n    }\n  },\n  \"branding_watermark\": {\n    \"name\": \"branding_watermark\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18V5H3v14zm8-7h9v6h-9v-6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-10-7h9v6h-9z\\\"></path>\"\n      }\n    }\n  },\n  \"2k_plus\": {\n    \"name\": \"2k_plus\",\n    \"keywords\": [\n      \"av\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14v-6.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19V5H5V19z M11,9h1.5v2.25L14.25,9H16l-2.25,3L16,15 h-1.75l-1.75-2.25V15H11V9z M6,12.5c0-0.55,0.45-1,1-1h1.5v-1H6V9h3c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H7.5v1H10V15H6V12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,11.5h-1.5V10h-1v1.5H15v1h1.5 V14h1v-1.5H19V19H5V5h14V11.5z\\\"></path><path d=\\\"M10,13.5H7.5v-1H9c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H6v1.5h2.5v1H7c-0.55,0-1,0.45-1,1V15h4V13.5z\\\"></path><polygon points=\\\"12.5,12.75 14.25,15 16,15 13.75,12 16,9 14.25,9 12.5,11.25 12.5,9 11,9 11,15 12.5,15\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"crop_landscape\": {\n    \"name\": \"crop_landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_pound\": {\n    \"name\": \"currency_pound\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M14,21c1.93,0,3.62-1.17,4-3l-1.75-0.88C16,18.21,15.33,19,14,19l-4.9,0c0.83-1,1.5-2.34,1.5-4c0-0.35-0.03-0.69-0.08-1 L14,14v-2l-4.18,0C9,10.42,8,9.6,8,8c0-1.93,1.57-3.5,3.5-3.5c1.5,0,2.79,0.95,3.28,2.28L16.63,6c-0.8-2.05-2.79-3.5-5.13-3.5 C8.46,2.5,6,4.96,6,8c0,1.78,0.79,2.9,1.49,4L6,12v2l2.47,0c0.08,0.31,0.13,0.64,0.13,1c0,2.7-2.6,4-2.6,4v2H14z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M9.75,4c1.23,0,2.27,0.81,2.62,1.93l1.39-0.59C13.18,3.69,11.6,2.5,9.75,2.5C7.4,2.5,5.5,4.4,5.5,6.75 c0,1.44,0.67,2.33,1.23,3.25L5.5,10v1.5l1.91,0c0.06,0.25,0.09,0.51,0.09,0.8c0,2.2-2,3.2-2,3.2V17H12c1.44,0,2.6-1.01,2.92-2.3 l-1.42-0.6c-0.05,0.78-0.7,1.4-1.5,1.4l-4.18,0C8.47,14.72,9,13.65,9,12.3c0-0.28-0.02-0.55-0.06-0.8l3.06,0V10l-3.55,0 C7.79,8.65,7,8.02,7,6.75C7,5.23,8.23,4,9.75,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"3mp\": {\n    \"name\": \"3mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M10,10h3 V9h-2V8h2V7h-3V5.5h3.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H10V10z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14 h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H10V7h3v1h-2v1h2v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"control_point\": {\n    \"name\": \"control_point\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-13h-2v4H7v2h4v4h2v-4h4v-2h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_small\": {\n    \"name\": \"photo_size_select_small\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 19h2v2h-2zm-4 0h2v2h-2zM1 19c0 1.1.9 2 2 2h8v-6H1v4zM9 3h2v2H9zM5 3h2v2H5zm12 0h2v2h-2zM1 11h2v2H1zm0-4h2v2H1zm2-4C2 3 1 4 1 5h2V3zm10 0h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zm0-10h2v2h-2zm0-8v2h2c0-1-1-2-2-2zm0 12h2v2h-2zm0-8h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_weak\": {\n    \"name\": \"hdr_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z\\\"></path><circle cx=\\\"5\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M5 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>\"\n      }\n    }\n  },\n  \"center_focus_strong\": {\n    \"name\": \"center_focus_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"3\\\"></circle><path d=\\\"M7 12c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm8 0c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3 3 1.35 3 3zM3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm18 0c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_2\": {\n    \"name\": \"exposure_neg_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.98 10.1c-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95l2.86-3.07c.38-.39.72-.79 1.04-1.18s.59-.78.82-1.17c.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15s.43.25.59.43c.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7zM2 11h8v2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_16_9\": {\n    \"name\": \"crop_16_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,7H5C3.9,7,3,7.9,3,9v6c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V9C21,7.9,20.1,7,19,7z M19,15H5V9h14V15z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,7h-11C3.67,7,3,7.67,3,8.5v3C3,12.33,3.67,13,4.5,13h11c0.83,0,1.5-0.67,1.5-1.5v-3C17,7.67,16.33,7,15.5,7z M15.5,11.5h-11v-3h11V11.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"auto_awesome_motion\": {\n    \"name\": \"auto_awesome_motion\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"8\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"12\\\" y=\\\"12\\\"></rect><path d=\\\"M14,2H4C2.9,2,2,2.9,2,4v10h2V4h10V2z\\\"></path><path d=\\\"M20,10h-8c-1.1,0-2,0.9-2,2v8c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-8C22,10.9,21.1,10,20,10z M20,20h-8v-8h8V20z\\\"></path><path d=\\\"M18,6H8C6.9,6,6,6.9,6,8v10h2V8h10V6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_free\": {\n    \"name\": \"crop_free\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM21 5c0-1.1-.9-2-2-2h-4v2h4v4h2V5zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm16 14v-4h-2v4h-4v2h4c1.1 0 2-.9 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"24mp\": {\n    \"name\": \"24mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17c0.55,0,1,0.45,1,1V16z M13,5.5h1.5v3H16v-3 h1.5v3h1V10h-1v1.5H16V10h-3V5.5z M6.5,9c0-0.55,0.45-1,1-1h2V7h-3V5.5H10c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H8v1h3v1.5H6.5V9 z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M17,12.5h-3.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5C18,12.95,17.55,12.5,17,12.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path><polygon points=\\\"16,11.5 17.5,11.5 17.5,10 18.5,10 18.5,8.5 17.5,8.5 17.5,5.5 16,5.5 16,8.5 14.5,8.5 14.5,5.5 13,5.5 13,10 16,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"4mp\": {\n    \"name\": \"4mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M9.5,5.5 H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6 V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"12.5,11.5 14,11.5 14,10 15,10 15,8.5 14,8.5 14,5.5 12.5,5.5 12.5,8.5 11,8.5 11,5.5 9.5,5.5 9.5,10 12.5,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"panorama_horizontal_select\": {\n    \"name\": \"panorama_horizontal_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,6.38v11.25c2.01-0.59,4.61-1.13,8-1.13c3.38,0,5.99,0.54,8,1.13V6.37 c-2.01,0.59-4.62,1.13-8,1.13C9.32,7.5,6.58,7.11,4,6.38z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.01,4C20.45,4,17.4,5.5,12,5.5c-5.31,0-8.49-1.49-9.01-1.49C2.46,4.01,2,4.45,2,5.02V19c0,0.57,0.46,1,0.99,1 c0.57,0,3.55-1.5,9.01-1.5c5.42,0,8.44,1.5,9.01,1.5c0.53,0,0.99-0.43,0.99-1V5C22,4.43,21.54,4,21.01,4z M20,17.63 c-2.01-0.59-4.62-1.13-8-1.13c-3.39,0-5.99,0.54-8,1.13V6.38C6.58,7.11,9.32,7.5,12,7.5c3.38,0,5.99-0.54,8-1.13V17.63z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"portrait\": {\n    \"name\": \"portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm7-13c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM6 16.58C6 14.08 9.97 13 12 13s6 1.08 6 3.58V18H6v-1.42z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.58c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.42zM8.48 16c.74-.51 2.23-1 3.52-1s2.78.49 3.52 1H8.48zM19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_one\": {\n    \"name\": \"looks_one\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v14h14V5zm-5 12h-2V9h-2V7h4v10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm5 4h2v8h2V7h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_bitcoin\": {\n    \"name\": \"currency_bitcoin\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M17.06,11.57C17.65,10.88,18,9.98,18,9c0-1.86-1.27-3.43-3-3.87L15,3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2 c2.21,0,4-1.79,4-4C19,13.55,18.22,12.27,17.06,11.57z M10,7h4c1.1,0,2,0.9,2,2s-0.9,2-2,2h-4V7z M15,17h-5v-4h5c1.1,0,2,0.9,2,2 S16.1,17,15,17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M12.38,10.75c0.9,0,1.62,0.73,1.62,1.62S13.27,14,12.38,14H8.5v-3.25H12.38z M11.38,6C12.27,6,13,6.73,13,7.62 s-0.73,1.62-1.62,1.62H8.5V6H11.38z M8,15.5V17h1.5v-1.5H11V17h1.5l0-1.5c1.67-0.07,3-1.44,3-3.12c0-1.21-0.69-2.26-1.7-2.78 c0.44-0.54,0.7-1.22,0.7-1.97c0-1.33-0.83-2.46-2-2.92l0-1.71H11v1.5H9.5V3H8v1.5H5.5V6H7v8H5.5v1.5H8z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_wide_angle\": {\n    \"name\": \"panorama_wide_angle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-2.45 0-4.71.2-7.29.64C4.24 8.42 4 10.22 4 12c0 1.78.24 3.58.71 5.36 2.58.44 4.84.64 7.29.64s4.71-.2 7.29-.64c.47-1.78.71-3.58.71-5.36 0-1.78-.24-3.58-.71-5.36C16.71 6.2 14.45 6 12 6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.13 5.78l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4s-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22zm-1.84 11.58c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12c0-1.78.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6s4.71.2 7.29.64c.47 1.78.71 3.58.71 5.36 0 1.78-.24 3.58-.71 5.36z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_shade\": {\n    \"name\": \"wb_shade\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,12v2.5l5.5,5.5H22L14,12z M14,20h3l-3-3V20z M8,4l-6,6h2v10h8V10h2L8,4z M9,14H7v-4h2V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_3_2\": {\n    \"name\": \"crop_3_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,6H5C3.9,6,3,6.9,3,8v8c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V8C21,6.9,20.1,6,19,6z M19,16H5V8h14V16z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,6h-11C3.67,6,3,6.67,3,7.5v5C3,13.33,3.67,14,4.5,14h11c0.83,0,1.5-0.67,1.5-1.5v-5C17,6.67,16.33,6,15.5,6z M15.5,12.5h-11v-5h11V12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hide_image\": {\n    \"name\": \"hide_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"16.17,19 14.17,17 6,17 9,13 11.25,16 12.07,14.9 5,7.83 5,19\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"7.83,5 19,16.17 19,5\\\"></polygon><path d=\\\"M19,5v11.17l2,2V5c0-1.1-0.9-2-2-2H5.83l2,2H19z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61l1.41-1.41L2.81,2.81z M5,19V7.83l7.07,7.07L11.25,16 L9,13l-3,4h8.17l2,2H5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"exposure\": {\n    \"name\": \"exposure\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19V5L5 19h14zm-4.5-4.5v-2H16v2h2V16h-2v2h-1.5v-2h-2v-1.5h2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_3\": {\n    \"name\": \"filter_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm4-4h4v-2h-2V9h2V7h-4V5h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-4v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-4v2h4v2h-2v2h2v2h-4v2h4c1.1 0 2-.89 2-2zm2 10v-2H3V5H1v16c0 1.1.9 2 2 2h16z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_linear\": {\n    \"name\": \"blur_linear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"9\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><circle cx=\\\"13\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><circle cx=\\\"13\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M17 12.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"13\\\" cy=\\\"12\\\" r=\\\"1\\\"></circle><path d=\\\"M3 3h18v2H3z\\\"></path><circle cx=\\\"5\\\" cy=\\\"8\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"5\\\" cy=\\\"12\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"5\\\" cy=\\\"16\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17 8.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"9\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><circle cx=\\\"9\\\" cy=\\\"8\\\" r=\\\"1\\\"></circle><path d=\\\"M3 19h18v2H3z\\\"></path>\"\n      }\n    }\n  },\n  \"60fps_select\": {\n    \"name\": \"60fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,6v6h-3V6H18z M18,4h-3c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M11,6V4H6 C4.9,4,4,4.9,4,6v6c0,1.1,0.9,2,2,2h3c1.1,0,2-0.9,2-2v-2c0-1.1-0.9-2-2-2H6V6H11z M9,10v2H6v-2H9z M5,22H3v-5h2V22z M9,22H7v-5h2 V22z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip_camera_android\": {\n    \"name\": \"flip_camera_android\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M9,12c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S9,10.34,9,12z M13,12c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1 S13,11.45,13,12z\\\"></path><path d=\\\"M8,8H5.09C6.47,5.61,9.05,4,12,4c3.72,0,6.85,2.56,7.74,6h2.06c-0.93-4.56-4.96-8-9.8-8C8.73,2,5.82,3.58,4,6.01V4H2v6h6 V8z\\\"></path><path d=\\\"M16,14v2h2.91c-1.38,2.39-3.96,4-6.91,4c-3.72,0-6.85-2.56-7.74-6H2.2c0.93,4.56,4.96,8,9.8,8c3.27,0,6.18-1.58,8-4.01V20 h2v-6H16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"10\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M8,10c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S8,8.9,8,10z M11,10c0,0.55-0.45,1-1,1s-1-0.45-1-1s0.45-1,1-1S11,9.45,11,10z\\\"></path><path d=\\\"M7,7H4.83C5.86,5.21,7.79,4,10,4c2.61,0,4.82,1.67,5.65,4h1.06C15.85,5.11,13.17,3,10,3C7.44,3,5.22,4.39,4,6.44V4H3v4h4 V7z\\\"></path><path d=\\\"M13,12v1h2.17c-1.04,1.79-2.96,3-5.17,3c-2.61,0-4.82-1.67-5.65-4H3.29c0.86,2.89,3.54,5,6.71,5c2.56,0,4.78-1.39,6-3.44 V16h1v-4H13z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"15mp\": {\n    \"name\": \"15mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,10h3 V9h-3V5.5h4.5V7h-3v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H12V10z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5 c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M16.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H12V9h3v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flare\": {\n    \"name\": \"flare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.644 7.05L7.05 5.645l2.123 2.122-1.408 1.407zM11 1h2v6h-2zm5.242 13.834l2.12 2.12-1.406 1.408-2.12-2.12zM14.834 7.76l2.12-2.123 1.41 1.407-2.123 2.122zm-5.668 8.482l-2.122 2.12-1.407-1.406 2.122-2.122zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-1 8h2v6h-2zM1 11h6v2H1zm16 0h6v2h-6z\\\"></path>\"\n      }\n    }\n  },\n  \"monochrome_photos\": {\n    \"name\": \"monochrome_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 18v-1.8c-1.8 0-3.2-1.4-3.2-3.2s1.4-3.2 3.2-3.2V8c-2.8 0-5 2.2-5 5s2.2 5 5 5zm5-5c0 2.8-2.2 5-5 5v1h8V7h-8v1c2.8 0 5 2.2 5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 21h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zm8-13V7h8v12h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5zm3.2 5c0 1.8-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5s-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2zm-6.4 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_cloudy\": {\n    \"name\": \"wb_cloudy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.23 12.04l-1.52-.11-.3-1.5C16.89 7.86 14.62 6 12.01 6 9.95 6 8.08 7.14 7.13 8.96l-.5.95-1.07.11c-2.02.22-3.55 1.93-3.55 3.98 0 2.21 1.79 4 4 4h13c1.65 0 3-1.35 3-3 0-1.55-1.23-2.86-2.78-2.96z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.36 10.04C18.67 6.59 15.65 4 12.01 4 9.11 4 6.6 5.64 5.35 8.04 2.35 8.36.01 10.91.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19.01 18h-13c-2.21 0-4-1.79-4-4 0-2.05 1.53-3.76 3.56-3.97l1.07-.11.5-.95C8.08 7.14 9.95 6 12.01 6c2.61 0 4.89 1.86 5.4 4.43l.3 1.5 1.52.11c1.56.11 2.78 1.41 2.78 2.96 0 1.65-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_off\": {\n    \"name\": \"motion_photos_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.27,2.27C2.61,8.07,2,9.96,2,12c0,5.52,4.48,10,10,10c2.04,0,3.93-0.61,5.51-1.66l2.27,2.27 l1.41-1.42L2.81,2.81z M12,20c-4.41,0-8-3.59-8-8c0-1.48,0.41-2.86,1.12-4.06l10.93,10.94C14.86,19.59,13.48,20,12,20z\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8c0,1.48-0.41,2.86-1.12,4.05l1.45,1.45C21.39,15.93,22,14.04,22,12c0-5.52-4.48-10-10-10 C9.96,2,8.07,2.61,6.49,3.66l1.45,1.45C9.14,4.41,10.52,4,12,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"wb_twilight\": {\n    \"name\": \"wb_twilight\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" transform=\\\"matrix(0.7069 -0.7074 0.7074 0.7069 -0.3887 15.676)\\\" width=\\\"3\\\" x=\\\"17.22\\\" y=\\\"7.31\\\"></rect><rect height=\\\"2\\\" width=\\\"20\\\" x=\\\"2\\\" y=\\\"18\\\"></rect><rect height=\\\"3\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2992 6.1783)\\\" width=\\\"2\\\" x=\\\"4.31\\\" y=\\\"6.78\\\"></rect><path d=\\\"M5,16h14c0-3.87-3.13-7-7-7S5,12.13,5,16z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"1.5\\\" width=\\\"16\\\" x=\\\"2\\\" y=\\\"14.5\\\"></rect><rect height=\\\"2.5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"3\\\"></rect><rect height=\\\"1.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -0.1972 12.8523)\\\" width=\\\"2.5\\\" x=\\\"14.16\\\" y=\\\"5.91\\\"></rect><rect height=\\\"2.5\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.3852 5.1557)\\\" width=\\\"1.5\\\" x=\\\"3.78\\\" y=\\\"5.41\\\"></rect><path d=\\\"M10,7c-3.31,0-6,2.69-6,6h12C16,9.69,13.31,7,10,7z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"grain\": {\n    \"name\": \"grain\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-8 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera\": {\n    \"name\": \"photo_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6h-4.05l-1.83-2H9.88L8.05 6H4v12h16V6zm-8 11c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h4.05l1.83-2h4.24l1.83 2H20v12H4V6zm8 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_din\": {\n    \"name\": \"crop_din\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"logo_dev\": {\n    \"name\": \"logo_dev\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M7.68,14.98H6V9h1.71 c1.28,0,1.71,1.03,1.71,1.71l0,2.56C9.42,13.95,9,14.98,7.68,14.98z M12.38,11.46v1.07h-1.18v1.39h1.93v1.07h-2.25 c-0.4,0.01-0.74-0.31-0.75-0.71V9.75c-0.01-0.4,0.31-0.74,0.71-0.75h2.28l0,1.07h-1.92v1.39H12.38z M16.88,14.23 c-0.48,1.11-1.33,0.89-1.71,0L13.77,9h1.18l1.07,4.11L17.09,9h1.18L16.88,14.23z\\\"></path><path d=\\\"M7.77,10.12H7.14v3.77h0.63c0.14,0,0.28-0.05,0.42-0.16c0.14-0.1,0.21-0.26,0.21-0.47v-2.52c0-0.21-0.07-0.37-0.21-0.47 C8.05,10.17,7.91,10.12,7.77,10.12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.46,8.43H5.93v3.15h0.53c0.12,0,0.23-0.04,0.35-0.13c0.12-0.09,0.18-0.22,0.18-0.39v-2.1c0-0.18-0.06-0.31-0.18-0.39 C6.69,8.47,6.58,8.43,6.46,8.43z\\\"></path><path d=\\\"M15.5,3h-11C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h11c0.83,0,1.5-0.67,1.5-1.5v-11C17,3.67,16.33,3,15.5,3z M6.38,12.49h-1.4V7.49h1.43c1.07,0,1.43,0.86,1.43,1.43l0,2.14C7.84,11.63,7.49,12.49,6.38,12.49z M10.31,9.55v0.89H9.33v1.16 h1.61v0.89H9.06c-0.34,0.01-0.62-0.26-0.63-0.59V8.12C8.43,7.78,8.7,7.5,9.03,7.5h1.91l0,0.89H9.33v1.16H10.31z M14.07,11.87 c-0.4,0.93-1.11,0.74-1.43,0L11.47,7.5h0.98l0.9,3.43l0.89-3.43h0.98L14.07,11.87z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"image_search\": {\n    \"name\": \"image_search\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.7 11.53c-.7.31-1.45.47-2.21.47C12.46 12 10 9.53 10 6.5c0-.17.01-.34.03-.5H4v14h14v-8.17l-.3-.3zM5.5 18l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18h-11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.21 16.83l-1.96-2.36L5.5 18h11l-3.54-4.71zM20 6.5C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89c.44-.7.7-1.51.7-2.39zM15.5 9C14.12 9 13 7.88 13 6.5S14.12 4 15.5 4 18 5.12 18 6.5 16.88 9 15.5 9zM18 20H4V6h6.03c.06-.72.27-1.39.58-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6.17l-2-2V20z\\\"></path>\"\n      }\n    }\n  },\n  \"timelapse\": {\n    \"name\": \"timelapse\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3.99c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm4.25 12.24c-2.35 2.34-6.15 2.34-8.49 0L12 11.99v-6c1.54 0 3.07.59 4.24 1.76 2.35 2.34 2.35 6.14.01 8.48z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16.24 7.75c-1.17-1.17-2.7-1.76-4.24-1.76v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0 2.34-2.34 2.34-6.14-.01-8.48zM12 1.99c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"11mp\": {\n    \"name\": \"11mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M13,5.5h3 v6h-1.5V7H13V5.5z M8,5.5h3v6H9.5V7H8V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><g><polygon points=\\\"9.5,11.5 11,11.5 11,5.5 8,5.5 8,7 9.5,7\\\"></polygon></g><g><polygon points=\\\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"crop_original\": {\n    \"name\": \"crop_original\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11z\\\"></path>\"\n      }\n    }\n  },\n  \"13mp\": {\n    \"name\": \"13mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,10h3 V9h-2V8h2V7h-3V5.5h3.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H12V10z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5 c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\\\"></path><path d=\\\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H12V7h3v1h-2v1h2v1h-3v1.5h3.5C16.05,11.5,16.5,11.05,16.5,10.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_5_4\": {\n    \"name\": \"crop_5_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,4H5C3.9,4,3,4.9,3,6v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.1,4,19,4z M19,18H5V6h14V18z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,4h-11C3.67,4,3,4.67,3,5.5v9C3,15.33,3.67,16,4.5,16h11c0.83,0,1.5-0.67,1.5-1.5v-9C17,4.67,16.33,4,15.5,4z M15.5,14.5h-11v-9h11V14.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"timer_10\": {\n    \"name\": \"timer_10\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2.99 18h2V6h-.25L-.01 7.72V9.4l3-1zm9.59-11.83c-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59s-.75-.7-1.23-.88zm.32 7.05h-.01c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57s-.51.18-.82.18c-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51zm10.24.41c-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23-.23-.08-.41-.16-.55-.25-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39 0-.14.03-.28.09-.41.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88s-.66-.44-1.09-.59c-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57s-.51.52-.67.84c-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44-.11-.18-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19s.8-.31 1.11-.54c.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_red_eye\": {\n    \"name\": \"remove_red_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6.5c-3.79 0-7.17 2.13-8.82 5.5 1.65 3.37 5.02 5.5 8.82 5.5s7.17-2.13 8.82-5.5C19.17 8.63 15.79 6.5 12 6.5zm0 10c-2.48 0-4.5-2.02-4.5-4.5S9.52 7.5 12 7.5s4.5 2.02 4.5 4.5-2.02 4.5-4.5 4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 13c-3.79 0-7.17-2.13-8.82-5.5C4.83 8.63 8.21 6.5 12 6.5s7.17 2.13 8.82 5.5c-1.65 3.37-5.03 5.5-8.82 5.5zm0-10c-2.48 0-4.5 2.02-4.5 4.5s2.02 4.5 4.5 4.5 4.5-2.02 4.5-4.5-2.02-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9_plus\": {\n    \"name\": \"filter_9_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14v-6h-2v2h-2v-2h-2V9h2V7h2v2h2V3H7v14zm2-5h3v-1h-1c-1.1 0-2-.89-2-2V8c0-1.11.9-2 2-2h1c1.1 0 2 .89 2 2v4c0 1.11-.9 2-2 2H9v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 21H3V5H1v16c0 1.1.9 2 2 2h16v-2z\\\"></path><path d=\\\"M11 8h1v1h-1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 6h-1c-1.1 0-2 .89-2 2v1c0 1.11.9 2 2 2h1v1H9v2h3c1.1 0 2-.89 2-2V8c0-1.11-.9-2-2-2zm0 3h-1V8h1v1zm9-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z\\\"></path>\"\n      }\n    }\n  },\n  \"switch_video\": {\n    \"name\": \"switch_video\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17h12V7H4v10zm4-8v2h4V9l3 3-3 3v-2H8v2l-3-3 3-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 13h4v2l3-3-3-3v2H8V9l-3 3 3 3zm10-3.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zM16 17H4V7h12v10z\\\"></path>\"\n      }\n    }\n  },\n  \"photo\": {\n    \"name\": \"photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v14h14V5zM6 17l3-3.86 2.14 2.58 3-3.87L18 17H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm6.14 10.72L9 13.14 6 17h12l-3.86-5.14z\\\"></path>\"\n      }\n    }\n  },\n  \"video_stable\": {\n    \"name\": \"video_stable\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"8.86\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.2589 -0.9659 0.9659 0.2589 -2.6958 20.4865)\\\" width=\\\"5.1\\\" x=\\\"9.45\\\" y=\\\"7.57\\\"></rect><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M4,18V6h2.95l-2.33,8.73L16.82,18 H4z M15.62,15.61l-8.55-2.29l1.31-4.92l8.56,2.29L15.62,15.61z M20,18h-2.95l2.34-8.73L7.18,6H20V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"healing\": {\n    \"name\": \"healing\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.03 16.72l3.63 3.62 3.62-3.63-3.62-3.62zM7.29 3.71L3.66 7.34l3.63 3.62 3.62-3.63z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.73 12.02l3.98-3.98c.39-.39.39-1.02 0-1.41l-4.34-4.34c-.39-.39-1.02-.39-1.41 0l-3.98 3.98L8 2.29C7.8 2.1 7.55 2 7.29 2c-.25 0-.51.1-.7.29L2.25 6.63c-.39.39-.39 1.02 0 1.41l3.98 3.98L2.25 16c-.39.39-.39 1.02 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29s.51-.1.71-.29l4.34-4.34c.39-.39.39-1.02 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_next\": {\n    \"name\": \"navigate_next\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.02 18l6-6-6-6-1.41 1.41L13.19 12l-4.58 4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_5\": {\n    \"name\": \"looks_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2H9v-2h4v-2H9V7h6v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm4 8h4v2H9v2h4c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7H9v6z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_9\": {\n    \"name\": \"filter_9\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h2v2h-2zM7 17h14V3H7v14zm4-4h4v-2h-2c-1.1 0-2-.89-2-2V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v6c0 1.11-.9 2-2 2h-4v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm14-10V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v2c0 1.11.9 2 2 2h2v2h-4v2h4c1.1 0 2-.89 2-2zm-4-4V7h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"dirty_lens\": {\n    \"name\": \"dirty_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.12,5H9.88L8.05,7H4v12h7.27c0.14-0.98,0.42-2.05-0.16-2.43c-0.89-0.59-1.27,2.06-2.8,1.35 c-1.39-1.12,1.05-1.29,0.5-3.27c-0.22-0.79-2.28,0.36-2.4-1.24c-0.08-1,1.49-0.74,1.51-1.49c0.03-0.75-1.03-1.05-0.25-1.91 c0.22-0.24,0.71-0.26,0.91-0.19c0.79,0.27,1.55,1.82,2.51,1.19c1.03-0.66-1.88-2.35,0-2.86c1.64-0.44,1.31,2.08,2.65,2.44 c1.94,0.52,2.65-4.55,4.41-2.33c1.85,2.33-3.43,2.27-2.85,4.01c0.34,1.01,2.15-1.2,2.76,0.53c0.64,1.83-3.09,0.82-3.04,1.66 c0.06,0.83,2.41,0.55,1.64,2.12c-1.14,1.86-3-1.03-3.81,0.09c-0.39,0.57-0.09,1.49,0.13,2.33H20V7h-4.05L14.12,5z M19,17.15 c0,0.48-0.38,0.86-0.86,0.86c-0.47,0-0.86-0.38-0.86-0.86s0.38-0.86,0.86-0.86C18.61,16.29,19,16.67,19,17.15z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19h-7.02 c-0.22-0.84-0.52-1.76-0.13-2.33c0.81-1.12,2.67,1.77,3.81-0.09c0.77-1.57-1.58-1.29-1.64-2.12c-0.05-0.84,3.68,0.17,3.04-1.66 c-0.61-1.73-2.42,0.48-2.76-0.53c-0.58-1.74,4.7-1.68,2.85-4.01c-1.76-2.22-2.47,2.85-4.41,2.33c-1.34-0.36-1.01-2.88-2.65-2.44 c-1.88,0.51,1.03,2.2,0,2.86c-0.96,0.63-1.72-0.92-2.51-1.19c-0.2-0.07-0.69-0.05-0.91,0.19c-0.78,0.86,0.28,1.16,0.25,1.91 c-0.02,0.75-1.59,0.49-1.51,1.49c0.12,1.6,2.18,0.45,2.4,1.24c0.55,1.98-1.89,2.15-0.5,3.27c1.53,0.71,1.91-1.94,2.8-1.35 c0.58,0.38,0.3,1.45,0.16,2.43H4V7h4.05l1.83-2h4.24l1.83,2H20V19z\\\"></path><path d=\\\"M17.28,17.15c0,0.48,0.39,0.86,0.86,0.86c0.48,0,0.86-0.38,0.86-0.86s-0.39-0.86-0.86-0.86 C17.66,16.29,17.28,16.67,17.28,17.15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"raw_on\": {\n    \"name\": \"raw_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6.5,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-1C8,9.7,7.3,9,6.5,9z M6.5,11.5h-2v-1h2V11.5z\\\"></path><path d=\\\"M10.25,9l-1.5,6h1.5l0.38-1.5h1.75l0.37,1.5h1.5l-1.5-6H10.25z M11,12l0.25-1h0.5L12,12H11z\\\"></path><polygon points=\\\"19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 15.5,15 16.98,15 17.74,11.96 18.5,15 19.98,15 21.48,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"raw_off\": {\n    \"name\": \"raw_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"17.15,14.32 17.74,11.96 18.5,15 19.98,15 21.48,9 19.98,9 19.24,12 18.5,9 16.98,9 16.24,12 15.5,9 14,9 14.72,11.9\\\"></polygon><path d=\\\"M1.39,4.22L6.17,9H3v6h1.5v-2h1.1l0.9,2H8l-0.9-2.1C7.6,12.6,8,12.1,8,11.5v-0.67l1.43,1.43L8.75,15h1.5l0.38-1.5h0.04 l9.11,9.11l1.41-1.41L2.81,2.81L1.39,4.22z M6.5,11.5h-2v-1h2V11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_5\": {\n    \"name\": \"filter_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm4-4h4v-2h-4V5h6v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-4v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 23v-2H3V5H1v16c0 1.1.9 2 2 2h16zm-2-10v-2c0-1.11-.9-2-2-2h-2V7h4V5h-6v6h4v2h-4v2h4c1.1 0 2-.89 2-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama\": {\n    \"name\": \"panorama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h18V6H3v12zm5.5-5.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H3V6h18v12zm-6.5-7L11 15.51 8.5 12.5 5 17h14z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_none\": {\n    \"name\": \"filter_none\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 3h14v14H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"flip_camera_ios\": {\n    \"name\": \"flip_camera_ios\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14.12,5H9.88L8.05,7H4v12h16V7h-4.05L14.12,5z M12,18c-2.76,0-5-2.24-5-5H5l2.49-2.49L7.5,10.5L10,13H9.97 H8c0,2.21,1.79,4,4,4c0.58,0,1.13-0.13,1.62-0.35l0.74,0.74C13.65,17.76,12.86,18,12,18z M19,13l-2.49,2.49L16.5,15.5L14,13h0.03 H16c0-2.21-1.79-4-4-4c-0.58,0-1.13,0.13-1.62,0.35L9.64,8.62C10.35,8.24,11.14,8,12,8c2.76,0,5,2.24,5,5H19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z\\\"></path><g><path d=\\\"M12,17c-2.21,0-4-1.79-4-4h1.97H10l-2.5-2.5l-0.01,0.01L5,13h2c0,2.76,2.24,5,5,5c0.86,0,1.65-0.24,2.36-0.62l-0.74-0.74 C13.13,16.87,12.58,17,12,17z\\\"></path></g><g><path d=\\\"M12,8c-0.86,0-1.65,0.24-2.36,0.62l0.74,0.73C10.87,9.13,11.42,9,12,9c2.21,0,4,1.79,4,4h-1.97H14l2.5,2.5l0.01-0.01 L19,13h-2C17,10.24,14.76,8,12,8z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13.59,6l-0.29-0.29L11.59,4H8.41L6.71,5.71L6.41,6H6H4v9h12V6h-2H13.59z M10,14c-2.21,0-4-1.79-4-4H4.5 l2-2l2,2H7c0,1.65,1.35,3,3,3c0.44,0,0.85-0.1,1.23-0.27l0.73,0.73C11.38,13.8,10.72,14,10,14z M13.5,12l-2-2H13 c0-1.65-1.35-3-3-3C9.56,7,9.15,7.1,8.77,7.27L8.04,6.54C8.62,6.2,9.28,6,10,6c2.21,0,4,1.79,4,4h1.5L13.5,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,13c-1.65,0-3-1.35-3-3h1.5l-2-2l-2,2H6c0,2.21,1.79,4,4,4c0.72,0,1.38-0.2,1.96-0.54l-0.73-0.73 C10.85,12.9,10.44,13,10,13z\\\"></path><path d=\\\"M16,5h-2l-2-2H8L6,5H4C3.45,5,3,5.45,3,6v9c0,0.55,0.45,1,1,1h12c0.55,0,1-0.45,1-1V6C17,5.45,16.55,5,16,5z M16,15H4V6h2 h0.41l0.29-0.29L8.41,4h3.17l1.71,1.71L13.59,6H14h2V15z\\\"></path><path d=\\\"M10,6C9.28,6,8.62,6.2,8.04,6.54l0.73,0.73C9.15,7.1,9.56,7,10,7c1.65,0,3,1.35,3,3h-1.5l2,2l2-2H14C14,7.79,12.21,6,10,6 z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"brightness_7\": {\n    \"name\": \"brightness_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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><circle cx=\\\"12\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle>\"\n      }\n    }\n  },\n  \"12mp\": {\n    \"name\": \"12mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,9 c0-0.55,0.45-1,1-1h2V7h-3V5.5h3.5c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1h-2v1h3v1.5H12V9z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5 c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M16.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H12V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_to_photos\": {\n    \"name\": \"add_to_photos\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H8v12h12V4zm-1 7h-4v4h-2v-4H9V9h4V5h2v4h4v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm4-4h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM8 4h12v12H8V4zm7 1h-2v4H9v2h4v4h2v-4h4V9h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_actual\": {\n    \"name\": \"photo_size_select_actual\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.08 5L3 5.08V19h17.92c.03-.02.06-.06.08-.08V5.08L20.92 5H3.08zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zm0 15.92c-.02.03-.06.06-.08.08H3V5.08L3.08 5h17.83c.03.02.06.06.08.08v13.84zm-10-3.41L8.5 12.5 5 17h14l-4.5-6z\\\"></path>\"\n      }\n    }\n  },\n  \"burst_mode\": {\n    \"name\": \"burst_mode\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 17h10V7H11v10zm3-3.53l1.43 1.72 2-2.58L20 15.99h-8l2-2.52z\\\" opacity=\\\".3\\\"></path><path d=\\\"M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 12H11V7h10v10zm-3.57-4.38l-2 2.57L14 13.47l-2 2.52h8z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_wide_angle_select\": {\n    \"name\": \"panorama_wide_angle_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,4C8.03,4,5.15,4.63,3,5c-0.55,1.97-1,3.92-1,7c0,3.03,0.45,5.05,1,7c2.15,0.37,4.98,1,9,1c3.97,0,6.85-0.63,9-1 c0.57-2.02,1-3.99,1-7c0-3.03-0.45-5.05-1-7C18.85,4.63,16.02,4,12,4z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"currency_lira\": {\n    \"name\": \"currency_lira\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9,8.76V3h2v4.51L15,5v2.36l-4,2.51l0.01,2.35L15,9.72v2.36l-4,2.51V19c2.76,0,5-2.24,5-5h2c0,3.87-3.13,7-7,7H9v-5.16 l-3,1.88l0-2.36l3-1.88v-2.36L6,13l0-2.36L9,8.76z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8,7.32L5.5,8.89v1.77L8,9.09v1.77l-2.5,1.57v1.77L8,12.63V17h1.5c3.04,0,5.5-2.46,5.5-5.5h-1.5c0,2.21-1.79,4-4,4v-3.81 l3-1.88V8.04l-3,1.88V8.15l3-1.88V4.5l-3,1.88V3H8V7.32z\\\"></path></g>\"\n      }\n    }\n  },\n  \"slideshow\": {\n    \"name\": \"slideshow\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm5-11l5 4-5 4V8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM10 8v8l5-4z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_auto\": {\n    \"name\": \"wb_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.35 0 4.38-1.36 5.36-3.32l.01-.01c.4-.81.63-1.71.63-2.67 0-3.31-2.69-6-6-6zm2.3 10l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9zm-3.45-3.35h2.3L8 9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 7l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L9 7H7zm-.15 5.65L8 9l1.15 3.65h-2.3zm13.95.64L19.3 7h-1.6l-1.49 6.29L15 7h-.76l-.01.01C12.76 5.18 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c2.96 0 5.55-1.61 6.93-4 .03-.06.05-.12.08-.18.05-.08.09-.17.14-.25l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22l-1.2 6.29zm-7.43 1.38C12.38 16.64 10.35 18 8 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6c0 .96-.23 1.86-.63 2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_auto\": {\n    \"name\": \"motion_photos_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M12.03,8.99h-0.07l-1.16,3.31h2.39L12.03,8.99z M11.29,7.5h1.43 l3.01,8h-1.39l-0.72-2.04h-3.23L9.66,15.5H8.28L11.29,7.5z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_enhanced_select\": {\n    \"name\": \"hdr_enhanced_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4C9.79,4,8,5.79,8,8s1.79,4,4,4s4-1.79,4-4S14.21,4,12,4z M15,9h-2v2h-2V9H9V7h2V5h2v2h2V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C8.69,2,6,4.69,6,8s2.69,6,6,6s6-2.69,6-6S15.31,2,12,2z M12,12c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4 S14.21,12,12,12z\\\"></path><polygon points=\\\"13,5 11,5 11,7 9,7 9,9 11,9 11,11 13,11 13,9 15,9 15,7 13,7\\\"></polygon><polygon points=\\\"3.5,18 1.5,18 1.5,16 0,16 0,22 1.5,22 1.5,19.5 3.5,19.5 3.5,22 5,22 5,16 3.5,16\\\"></polygon><polygon points=\\\"22,18.5 22,16.5 20.5,16.5 20.5,18.5 18.5,18.5 18.5,20 20.5,20 20.5,22 22,22 22,20 24,20 24,18.5\\\"></polygon><path d=\\\"M16.5,16H13v6h1.5v-2h1.1l0.9,2H18l-0.9-2.1c0.5-0.3,0.9-0.8,0.9-1.4v-1C18,16.7,17.3,16,16.5,16z M16.5,18.5h-2v-1h2 V18.5z\\\"></path><path d=\\\"M10,16H6.5v6H10c0.8,0,1.5-0.7,1.5-1.5v-3C11.5,16.7,10.8,16,10,16z M10,20.5H8v-3h2V20.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_6\": {\n    \"name\": \"filter_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm4-10c0-1.11.9-2 2-2h4v2h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V7zm2 4h2v2h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V7h4V5h-4c-1.1 0-2 .89-2 2v6c0 1.11.9 2 2 2zm0-4h2v2h-2v-2zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_on\": {\n    \"name\": \"mic_external_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"6.81,16 7.19,16 7.79,10 6.21,10\\\"></polygon><path d=\\\"M9.22,7C9.7,6.47,10,5.77,10,5c0-1.66-1.34-3-3-3S4,3.34,4,5c0,0.77,0.3,1.47,0.78,2H9.22z\\\"></path><path d=\\\"M16,2c-2.21,0-4,1.79-4,4v12c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l1-10H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4V6c0-1.1,0.9-2,2-2 s2,0.9,2,2v16h2V6C20,3.79,18.21,2,16,2z M7.19,16H6.81l-0.6-6h1.58L7.19,16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_8\": {\n    \"name\": \"filter_8\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm4-5.5c0-.83.67-1.5 1.5-1.5-.83 0-1.5-.67-1.5-1.5V7c0-1.11.9-2 2-2h2c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V13c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2v-1.5zM13 7h2v2h-2zm0 4h2v2h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8h2c1.1 0 2-.89 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7c0-1.11-.9-2-2-2h-2c-1.1 0-2 .89-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13c0 1.11.9 2 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_drama\": {\n    \"name\": \"filter_drama\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12h-1.5v-.5C17.5 8.47 15.03 6 12 6c-1.8 0-3.39.88-4.4 2.22 2.54.7 4.4 3.02 4.4 5.78h-2c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4h13c1.65 0 3-1.35 3-3s-1.35-3-3-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_album\": {\n    \"name\": \"photo_album\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M16,4v7l-2.5-1.5L11,11V4H6v16h12V4H16z M7,18l2.38-3.17L11,17l2.62-3.5L17,18H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,20H6V4h5v7l2.5-1.5L16,11V4h2V20 z M13.62,13.5L17,18H7l2.38-3.17L11,17L13.62,13.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M13,10l-2-1l-2,1V3.5H5.5v13h9v-13H13V10z M6,15l2.12-2.83L9.5,14l1.88-2.5 L14,15H6z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.5,2h-9C4.67,2,4,2.67,4,3.5v13C4,17.33,4.67,18,5.5,18h9c0.83,0,1.5-0.67,1.5-1.5v-13C16,2.67,15.33,2,14.5,2z M14.5,16.5h-9v-13H9V10l2-1l2,1V3.5h1.5V16.5z\\\"></path><polygon points=\\\"9.5,14 8.12,12.17 6,15 14,15 11.38,11.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"image_not_supported\": {\n    \"name\": \"image_not_supported\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><path d=\\\"M7.83,5H19v11.17L7.83,5z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19H16.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.83,3H19c1.1,0,2,0.9,2,2v13.17l-2-2V5H7.83L5.83,3z M20.49,23.31L18.17,21H5c-1.1,0-2-0.9-2-2V5.83L0.69,3.51L2.1,2.1 l1.49,1.49L5,5l8.11,8.11l2.69,2.69L19,19l1.41,1.41l1.49,1.49L20.49,23.31z M16.17,19l-2-2H6l3-4l2,2.72l0.84-1.05L5,7.83V19 H16.17z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><g><path d=\\\"M5,15V6.41l5.41,5.41l-1.05,1.32L8,11.33L6,14h6.59l1,1H5z M15,13.59V5H6.41L15,13.59z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.07,17.07L2.93,2.93L2.22,3.64L4,5.41V15c0,0.55,0.45,1,1,1h9.59l1.78,1.78L17.07,17.07z M5,15V6.41l5.41,5.41 l-1.05,1.32L8,11.33L6,14h6.59l1,1H5z M5.41,4H15c0.55,0,1,0.45,1,1v9.59l-1-1V5H6.41L5.41,4z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"looks_6\": {\n    \"name\": \"looks_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11 13h2v2h-2zm8-8H5v14h14V5zm-4 4h-4v2h2c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2c-1.1 0-2-.89-2-2V9c0-1.11.9-2 2-2h4v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 9v6c0 1.11.9 2 2 2h2c1.1 0 2-.89 2-2v-2c0-1.11-.9-2-2-2h-2V9h4V7h-4c-1.1 0-2 .89-2 2zm4 4v2h-2v-2h2zm-8 8h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_frames\": {\n    \"name\": \"filter_frames\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 10h8v6H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM6 18h12V8H6v10zm2-8h8v6H8v-6z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_5\": {\n    \"name\": \"brightness_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98c-3.03 0-5.5-2.47-5.5-5.5S8.97 6.5 12 6.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-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>\"\n      }\n    }\n  },\n  \"16mp\": {\n    \"name\": \"16mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,6.5 c0-0.55,0.45-1,1-1h3.5V7h-3v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H13c-0.55,0-1-0.45-1-1V6.5z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"9\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M13,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,9H15v1.5h-1.5V9z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"vrpano\": {\n    \"name\": \"vrpano\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,6.38v11.25c2.01-0.59,4.61-1.13,8-1.13c3.38,0,5.99,0.54,8,1.13V6.37 c-2.01,0.59-4.62,1.13-8,1.13C9.32,7.5,6.58,7.11,4,6.38z M18.51,15.4C16.52,15.15,14.3,15,12,15c-2.34,0-4.52,0.15-6.52,0.41 l3.69-4.42l2,2.4L14,10L18.51,15.4z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.01,4C20.45,4,17.4,5.5,12,5.5c-5.31,0-8.49-1.49-9.01-1.49C2.46,4.01,2,4.45,2,5.02V19c0,0.57,0.46,1,0.99,1 c0.57,0,3.55-1.5,9.01-1.5c5.42,0,8.44,1.5,9.01,1.5c0.53,0,0.99-0.43,0.99-1V5C22,4.43,21.54,4,21.01,4z M20,17.63 c-2.01-0.59-4.62-1.13-8-1.13c-3.39,0-5.99,0.54-8,1.13V6.38C6.58,7.11,9.32,7.5,12,7.5c3.38,0,5.99-0.54,8-1.13V17.63z\\\"></path><path d=\\\"M9.17,10.99l-3.69,4.42C7.48,15.15,9.66,15,12,15c2.3,0,4.52,0.15,6.51,0.4L14,10l-2.83,3.39L9.17,10.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"8mp\": {\n    \"name\": \"8mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"9\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M10,6.5 c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H11c-0.55,0-1-0.45-1-1V6.5z M6,13.5c0-0.55,0.45-1,1-1h4.5 c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,6.5H13 V8h-1.5V6.5z M11.5,9H13v1.5h-1.5V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flash_off\": {\n    \"name\": \"flash_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"animation\": {\n    \"name\": \"animation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M5,12c-0.63,0.84-1,1.88-1,3c0,2.76,2.24,5,5,5c1.12,0,2.16-0.37,3-1C8.13,19,5,15.87,5,12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,4c-1.13,0-2.16,0.37-3,1c3.87,0.01,7,3.14,7,7c0.63-0.84,1-1.88,1-3C20,6.24,17.76,4,15,4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,7c-0.6,0-1.17,0.11-1.7,0.3C10.11,7.83,10,8.4,10,9c0,2.76,2.24,5,5,5c0.6,0,1.17-0.11,1.7-0.3 c0.19-0.53,0.3-1.1,0.3-1.7C17,9.24,14.76,7,12,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8,9c-0.63,0.84-1,1.88-1,3c0,2.76,2.24,5,5,5c1.12,0,2.16-0.37,3-1C11.13,15.99,8,12.86,8,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,2c-2.71,0-5.05,1.54-6.22,3.78c-1.28,0.67-2.34,1.72-3,3C3.54,9.95,2,12.29,2,15c0,3.87,3.13,7,7,7 c2.71,0,5.05-1.54,6.22-3.78c1.28-0.67,2.34-1.72,3-3C20.46,14.05,22,11.71,22,9C22,5.13,18.87,2,15,2z M9,20c-2.76,0-5-2.24-5-5 c0-1.12,0.37-2.16,1-3c0,3.87,3.13,7,7,7C11.16,19.63,10.12,20,9,20z M12,17c-2.76,0-5-2.24-5-5c0-1.12,0.37-2.16,1-3 c0,3.86,3.13,6.99,7,7C14.16,16.63,13.12,17,12,17z M16.7,13.7C16.17,13.89,15.6,14,15,14c-2.76,0-5-2.24-5-5 c0-0.6,0.11-1.17,0.3-1.7C10.83,7.11,11.4,7,12,7c2.76,0,5,2.24,5,5C17,12.6,16.89,13.17,16.7,13.7z M19,12c0-3.86-3.13-6.99-7-7 c0.84-0.63,1.87-1,3-1c2.76,0,5,2.24,5,5C20,10.12,19.63,11.16,19,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"flip\": {\n    \"name\": \"flip\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 7h2v2h-2zm0 14c1.1 0 2-.9 2-2h-2v2zm0-6h2v2h-2zm0-4h2v2h-2zM9 5V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4v-2H5V5h4zm10-2v2h2c0-1.1-.9-2-2-2zm-8-2h2v22h-2zm4 2h2v2h-2zm0 16h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_7_5\": {\n    \"name\": \"crop_7_5\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M19,5H5C3.9,5,3,5.9,3,7v10c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7C21,5.9,20.1,5,19,5z M19,17H5V7h14V17z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M15.5,5h-11C3.67,5,3,5.67,3,6.5v7C3,14.33,3.67,15,4.5,15h11c0.83,0,1.5-0.67,1.5-1.5v-7C17,5.67,16.33,5,15.5,5z M15.5,13.5h-11v-7h11V13.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"tonality\": {\n    \"name\": \"tonality\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 12c0 4.08 3.06 7.44 7 7.93V4.07C7.05 4.56 4 7.92 4 12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_1\": {\n    \"name\": \"brightness_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"collections\": {\n    \"name\": \"collections\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h12V4H8v12zm3.5-4.33l1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 2c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H8zm12 14H8V4h12v12zm-4.33-5.17l-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"image_aspect_ratio\": {\n    \"name\": \"image_aspect_ratio\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18h16V6H4v12zm10-8h2v2h-2v-2zm0 4h2v2h-2v-2zm-4-4h2v2h-2v-2zm-4 0h2v2H6v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14 10h2v2h-2zm0 4h2v2h-2zm-8-4h2v2H6zm4 0h2v2h-2zm10-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"flash_auto\": {\n    \"name\": \"flash_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 2v12h3v9l7-12H9l4-9zm14 0l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2h-2zm-.15 5.65L18 4l1.15 3.65h-2.3z\\\"></path>\"\n      }\n    }\n  },\n  \"vignette\": {\n    \"name\": \"vignette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18V5H3v14zm9-13c4.42 0 8 2.69 8 6s-3.58 6-8 6-8-2.69-8-6 3.58-6 8-6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zm-9-1c4.42 0 8-2.69 8-6s-3.58-6-8-6-8 2.69-8 6 3.58 6 8 6zm0-10c3.25 0 6 1.83 6 4s-2.75 4-6 4-6-1.83-6-4 2.75-4 6-4z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_vintage\": {\n    \"name\": \"filter_vintage\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.69 7.61c-.7 0-1.39.19-2 .54-.16.09-.32.21-.54.37l-1.13.9c.31.36.56.78.72 1.24l1.38-.52c.22-.08.41-.17.58-.27.84-.49 1.47-1.27 1.78-2.18-.26-.06-.52-.08-.79-.08zm-1.56 6.26l-1.38-.52c-.16.45-.4.85-.7 1.21l1.15.96c.15.12.31.24.49.34.61.35 1.3.54 1.99.54.27 0 .53-.03.8-.08-.31-.91-.94-1.69-1.78-2.18-.16-.1-.35-.19-.57-.27zM11 6c0 .19.02.41.05.63l.23 1.44c.24-.04.48-.07.72-.07s.48.03.71.07l.23-1.44c.04-.22.06-.44.06-.63 0-.98-.37-1.91-1-2.63-.63.72-1 1.65-1 2.63zm1.71 9.93c-.23.04-.47.07-.71.07-.25 0-.49-.03-.72-.07l-.22 1.42c-.04.24-.06.45-.06.65 0 .98.37 1.91 1 2.63.63-.72 1-1.66 1-2.63 0-.19-.02-.41-.05-.63l-.24-1.44zm-5.84-5.81l1.38.52c.16-.44.4-.85.7-1.2L7.8 8.49c-.17-.15-.34-.27-.49-.35-.62-.36-1.3-.54-2-.54-.27 0-.54.03-.81.08.3.91.93 1.68 1.79 2.18.17.09.36.18.58.26zm0 3.74c-.22.08-.41.17-.58.27-.84.49-1.47 1.27-1.78 2.18.26.05.52.08.79.08.7 0 1.39-.19 2-.54.16-.09.32-.21.54-.37l1.13-.89c-.31-.36-.56-.78-.72-1.24l-1.38.51z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.7 12.4c-.28-.16-.57-.29-.86-.4.29-.11.58-.24.86-.4 1.92-1.11 2.99-3.12 3-5.19-.91-.52-1.95-.8-3.01-.8-1.02 0-2.05.26-2.99.8-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55-.94-.54-1.97-.8-2.99-.8-1.05 0-2.1.28-3.01.8 0 2.07 1.07 4.08 3 5.19.28.16.57.29.86.4-.29.11-.58.24-.86.4-1.92 1.11-2.99 3.12-3 5.19.91.52 1.95.8 3.01.8 1.02 0 2.05-.26 2.99-.8.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54.94.54 1.97.8 2.99.8 1.05 0 2.1-.28 3.01-.8-.01-2.07-1.08-4.08-3-5.19zM4.51 7.68c.26-.06.53-.08.8-.08.69 0 1.38.18 1.99.54.15.09.32.2.49.35l1.15.96c-.3.36-.53.76-.7 1.2l-1.38-.52c-.21-.09-.4-.18-.56-.27-.87-.5-1.49-1.27-1.79-2.18zm3.33 7.79c-.21.17-.38.29-.54.37-.61.35-1.3.54-2 .54-.27 0-.53-.03-.79-.08.31-.91.94-1.69 1.78-2.18.17-.1.36-.18.58-.27l1.38-.52c.16.46.41.88.72 1.24l-1.13.9zM12 3.37c.63.72 1 1.66 1 2.63 0 .19-.02.41-.05.63l-.23 1.44C12.48 8.03 12.24 8 12 8s-.48.03-.71.07l-.23-1.44C11.02 6.41 11 6.19 11 6c0-.98.37-1.91 1-2.63zm0 17.26c-.63-.72-1-1.66-1-2.63 0-.2.02-.41.06-.65l.22-1.42c.23.04.47.07.72.07.24 0 .48-.03.71-.07l.23 1.44c.04.22.06.44.06.63 0 .98-.37 1.91-1 2.63zM12 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm4.16-5.48c.21-.17.38-.29.54-.37.61-.35 1.3-.54 2-.54.27 0 .53.03.79.08-.31.91-.94 1.69-1.78 2.18-.17.1-.36.18-.58.27l-1.38.52c-.17-.46-.41-.87-.72-1.24l1.13-.9zm2.53 7.87c-.69 0-1.38-.18-1.99-.54-.18-.1-.34-.22-.49-.34l-1.15-.96c.3-.36.54-.76.7-1.21l1.38.52c.22.08.41.17.57.26.85.49 1.47 1.27 1.78 2.18-.27.07-.54.09-.8.09z\\\"></path>\"\n      }\n    }\n  },\n  \"nature\": {\n    \"name\": \"nature\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.17 4.17c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.25-5-5-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7c0 3.47 2.52 6.34 5.83 6.89V20H5v2h14v-2h-6v-3.88h-.03c3.49-.4 6.2-3.36 6.2-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.25 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"thermostat_auto\": {\n    \"name\": \"thermostat_auto\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M9.8,13.6L9,13V6c0-0.55-0.45-1-1-1S7,5.45,7,6v7l-0.8,0.6C5.45,14.16,5,15.06,5,16h6 C11,15.06,10.55,14.17,9.8,13.6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11,12V6c0-1.66-1.34-3-3-3S5,4.34,5,6v6c-1.21,0.91-2,2.37-2,4c0,1.12,0.38,2.14,1,2.97V19h0.02c0.91,1.21,2.35,2,3.98,2 s3.06-0.79,3.98-2H12v-0.03c0.62-0.83,1-1.85,1-2.97C13,14.37,12.21,12.91,11,12z M5,16c0-0.94,0.45-1.84,1.2-2.4L7,13V6 c0-0.55,0.45-1,1-1s1,0.45,1,1v7l0.8,0.6c0.75,0.57,1.2,1.46,1.2,2.4H5z M18.62,4h-1.61l-3.38,9h1.56L16,10.7h3.63l0.8,2.3H22 L18.62,4z M16.47,9.39l1.31-3.72h0.08l1.31,3.72H16.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"looks\": {\n    \"name\": \"looks\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11zm0 6c2.76 0 5 2.24 5 5h2c0-3.86-3.14-7-7-7s-7 3.14-7 7h2c0-2.76 2.24-5 5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_on\": {\n    \"name\": \"grid_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 10h4v4h-4zm0 6h4v4h-4zM4 4h4v4H4zm0 6h4v4H4zm0 6h4v4H4zM16 4h4v4h-4zm0 6h4v4h-4zm0 6h4v4h-4zM10 4h4v4h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant\": {\n    \"name\": \"assistant\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.83 18l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14h4.83zm.29-8.88L12 5l1.88 4.12L18 11l-4.12 1.88L12 17l-1.88-4.12L6 11l4.12-1.88z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 20h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 4h14v14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4zm7 13l1.88-4.12L18 11l-4.12-1.88L12 5l-1.88 4.12L6 11l4.12 1.88z\\\"></path>\"\n      }\n    }\n  },\n  \"texture\": {\n    \"name\": \"texture\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.88 3L3 11.88v2.83L14.71 3zM3 5v2l4-4H5c-1.1 0-2 .9-2 2zm16.51-1.92L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM21 9.29L9.29 21h2.83L21 12.12zm-.59 11.12c.37-.36.59-.86.59-1.41v-2l-4 4h2c.55 0 1.05-.22 1.41-.59z\\\"></path>\"\n      }\n    }\n  },\n  \"contrast\": {\n    \"name\": \"contrast\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,22c5.52,0,10-4.48,10-10S17.52,2,12,2S2,6.48,2,12S6.48,22,12,22z M13,4.07c3.94,0.49,7,3.85,7,7.93 s-3.05,7.44-7,7.93V4.07z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M2,10c0,4.42,3.58,8,8,8s8-3.58,8-8s-3.58-8-8-8S2,5.58,2,10z M10.75,3.55C13.98,3.92,16.5,6.67,16.5,10 s-2.52,6.08-5.75,6.45V3.55z\\\"></path></g>\"\n      }\n    }\n  },\n  \"flash_on\": {\n    \"name\": \"flash_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 10h-4l3-8H7v11h3v9z\\\"></path>\"\n      }\n    }\n  },\n  \"filter\": {\n    \"name\": \"filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm4.25-5.53l1.96 2.36 2.75-3.54L19.5 15h-11l2.75-3.53z\\\" opacity=\\\".3\\\"></path><path d=\\\"M1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16zM21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L8.5 15h11z\\\"></path>\"\n      }\n    }\n  },\n  \"incomplete_circle\": {\n    \"name\": \"incomplete_circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-2.76,1.12-5.26,2.93-7.07L12,12V2C17.52,2,22,6.48,22,12z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M18,10c0,4.42-3.58,8-8,8s-8-3.58-8-8c0-2.21,0.9-4.21,2.34-5.66L10,10V2C14.42,2,18,5.58,18,10z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_camera_front\": {\n    \"name\": \"photo_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.95,7l-1.83-2H9.88L8.05,7H4v12h16V7H15.95z M12,9c1.1,0,2,0.9,2,2c0,1.1-0.9,2-2,2s-2-0.9-2-2 C10,9.9,10.9,9,12,9z M16,17H8v-0.57c0-0.81,0.48-1.53,1.22-1.85C10.07,14.21,11.01,14,12,14s1.93,0.21,2.78,0.58 C15.52,14.9,16,15.62,16,16.43V17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z M12,13c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2s-2,0.9-2,2C10,12.1,10.9,13,12,13z M14.78,14.58 C13.93,14.21,12.99,14,12,14s-1.93,0.21-2.78,0.58C8.48,14.9,8,15.62,8,16.43V17h8v-0.57C16,15.62,15.52,14.9,14.78,14.58z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"filter_center_focus\": {\n    \"name\": \"filter_center_focus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm7 4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm7-6h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_front\": {\n    \"name\": \"camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14h10v2H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zM11.99 8C13.1 8 14 7.1 14 6s-.9-2-2.01-2S10 4.9 10 6s.89 2 1.99 2zM17 0H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 16H7v-2h10v2zm0-3.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2h10v10.5z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_filter\": {\n    \"name\": \"photo_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 10v9H4.98V5h9V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zm-2.94-2.06L17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7zM12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_2\": {\n    \"name\": \"exposure_plus_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 17v-4h4v-2H8V7H6v4H2v2h4v4zm11.95-4.96c.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71-.51-.16-1.08-.24-1.72-.24-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15s.43.25.59.43c.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95l2.86-3.07c.38-.39.72-.79 1.04-1.18z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_photosphere\": {\n    \"name\": \"panorama_photosphere\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M3,9.91l0,4.18c0,0,0,0,0,0C5.19,15.3,8.47,16,12,16c3.53,0,6.81-0.69,9-1.91l0-4.18c0,0,0,0,0,0 C18.81,8.7,15.53,8,12,8C8.47,8,5.2,8.69,3,9.91z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68 C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68 C16.49,18.96,14.37,20,12,20z M21,9.91l0,4.18C18.81,15.31,15.53,16,12,16c-3.53,0-6.81-0.7-9-1.91c0,0,0,0,0,0l0-4.18 C5.2,8.69,8.47,8,12,8C15.53,8,18.81,8.7,21,9.91C21,9.91,21,9.91,21,9.91z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"edit\": {\n    \"name\": \"edit\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18.08V19h.92l9.06-9.06-.92-.92z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83zM3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_plus_1\": {\n    \"name\": \"exposure_plus_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 18V5h-.3L15 6.7v1.7l3-1.02V18zm-10-1v-4h4v-2h-4V7H8v4H4v2h4v4z\\\"></path>\"\n      }\n    }\n  },\n  \"circle\": {\n    \"name\": \"circle\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"12\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"8\\\"></circle><path d=\\\"M12,2C6.47,2,2,6.47,2,12c0,5.53,4.47,10,10,10s10-4.47,10-10C22,6.47,17.53,2,12,2z M12,20c-4.42,0-8-3.58-8-8 c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"9mp\": {\n    \"name\": \"9mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"6.5\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M10,10h3 V9h-2c-0.55,0-1-0.45-1-1V6.5c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H10V10z M6,13.5c0-0.55,0.45-1,1-1h4.5 c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10.5v-4c0-0.55-0.45-1-1-1H11c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C14.05,11.5,14.5,11.05,14.5,10.5z M13,8h-1.5V6.5H13V8z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"movie_creation\": {\n    \"name\": \"movie_creation\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6.47V18h16v-8H5.76z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm2 14H4V6.47L5.76 10H20v8z\\\"></path>\"\n      }\n    }\n  },\n  \"leak_remove\": {\n    \"name\": \"leak_remove\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97C7.14 11.24 5.16 12 3 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43C14.55 17.91 14 19.39 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z\\\"></path>\"\n      }\n    }\n  },\n  \"10mp\": {\n    \"name\": \"10mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><rect height=\\\"3\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"7\\\"></rect></g><g opacity=\\\".3\\\"><rect height=\\\"1.5\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect></g><g opacity=\\\".3\\\"><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,6.5 c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H13c-0.55,0-1-0.45-1-1V6.5z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5 c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\"></path></g><g><path d=\\\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,7H15 v3h-1.5V7z\\\"></path></g><g><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path></g><g><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon></g><g><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path></g><g><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"hdr_on\": {\n    \"name\": \"hdr_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3zm8-2v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"gradient\": {\n    \"name\": \"gradient\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 11h2v2h-2zm6 10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zM5 13h2v-2H5V5h14v6h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2zm2-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2zm-2 2h2v2H9z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_high\": {\n    \"name\": \"auto_fix_high\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.2634 10.636)\\\" width=\\\"10.14\\\" x=\\\"3.64\\\" y=\\\"14.29\\\"></rect><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><polygon points=\\\"8.5,7 9.44,4.94 11.5,4 9.44,3.06 8.5,1 7.56,3.06 5.5,4 7.56,4.94\\\"></polygon><polygon points=\\\"20,12.5 19.06,14.56 17,15.5 19.06,16.44 20,18.5 20.94,16.44 23,15.5 20.94,14.56\\\"></polygon><path d=\\\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M5.83,19.59l-1.41-1.41 L11.59,11L13,12.41L5.83,19.59z M14.41,11L13,9.59l1.17-1.17l1.41,1.41L14.41,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"cases\": {\n    \"name\": \"cases\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"9\\\" opacity=\\\".3\\\" width=\\\"14\\\" x=\\\"7\\\" y=\\\"7\\\"></rect><path d=\\\"M3,9H1v11c0,1.11,0.89,2,2,2h17v-2H3V9z\\\"></path><path d=\\\"M18,5V3c0-1.1-0.9-2-2-2h-4c-1.1,0-2,0.9-2,2v2H5v11c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5H18z M12,3h4v2h-4V3z M21,16H7 V7h14V16z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"auto_stories\": {\n    \"name\": \"auto_stories\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><path d=\\\"M3,6.71v9.91C4.14,16.21,5.31,16,6.5,16c1.19,0,2.36,0.21,3.5,0.62V6.72C8.89,6.25,7.7,6,6.5,6 C5.28,6,4.11,6.24,3,6.71z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"19,0.5 14,5.5 14,15 19,10.5\\\"></polygon><path d=\\\"M22.47,5.2C22,4.96,21.51,4.76,21,4.59v12.03C19.86,16.21,18.69,16,17.5,16c-1.9,0-3.78,0.54-5.5,1.58V5.48 C10.38,4.55,8.51,4,6.5,4C4.71,4,3.02,4.44,1.53,5.2C1.2,5.36,1,5.71,1,6.08v12.08c0,0.58,0.47,0.99,1,0.99 c0.16,0,0.32-0.04,0.48-0.12C3.69,18.4,5.05,18,6.5,18c2.07,0,3.98,0.82,5.5,2c1.52-1.18,3.43-2,5.5-2c1.45,0,2.81,0.4,4.02,1.04 c0.16,0.08,0.32,0.12,0.48,0.12c0.52,0,1-0.41,1-0.99V6.08C23,5.71,22.8,5.36,22.47,5.2z M10,16.62C8.86,16.21,7.69,16,6.5,16 c-1.19,0-2.36,0.21-3.5,0.62V6.71C4.11,6.24,5.28,6,6.5,6C7.7,6,8.89,6.25,10,6.72V16.62z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"add_a_photo\": {\n    \"name\": \"add_a_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6 7v3H5v10h16V8h-4.05l-1.83-2H9v1H6zm7 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 6h-3.17L16 4H9v2h6.12l1.83 2H21v12H5V10H3v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM8 14c0 2.76 2.24 5 5 5s5-2.24 5-5-2.24-5-5-5-5 2.24-5 5zm5-3c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM5 9V6h3V4H5V1H3v3H0v2h3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_on\": {\n    \"name\": \"blur_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><circle cx=\\\"14\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zM21 14.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"18\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M13.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5zM21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"18\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><path d=\\\"M3.5 14c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M9.5 21c0 .28.22.5.5.5s.5-.22.5-.5-.22-.5-.5-.5-.5.22-.5.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M10.5 3c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"18\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle>\"\n      }\n    }\n  },\n  \"compare\": {\n    \"name\": \"compare\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5h-5v7l5 6zm-9 13v-6l-5 6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7-2h-2v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1zm-2 17H5l5-6v6z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_neg_1\": {\n    \"name\": \"exposure_neg_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 18V5h-.3L14 6.7v1.7l3-1.02V18zM4 11h8v2H4z\\\"></path>\"\n      }\n    }\n  },\n  \"mic_external_off\": {\n    \"name\": \"mic_external_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"6.21,10 6.81,16 7.19,16 7.73,10.56 7.17,10\\\"></polygon><path d=\\\"M10,5c0-1.66-1.34-3-3-3C6.38,2,5.81,2.19,5.33,2.5l4.15,4.15C9.8,6.18,10,5.61,10,5z\\\"></path><path d=\\\"M14,6c0-1.1,0.9-2,2-2s2,0.9,2,2v9.17l2,2V6c0-2.21-1.79-4-4-4s-4,1.79-4,4v3.17l2,2V6z\\\"></path><path d=\\\"M2.1,2.1L0.69,3.51L5.17,8H4l1,10h1c0,2.21,1.79,4,4,4s4-1.79,4-4v-1.17l6.49,6.49l1.41-1.41L2.1,2.1z M7.19,16H6.81 l-0.6-6h0.96l0.56,0.56L7.19,16z M12,18c0,1.1-0.9,2-2,2s-2-0.9-2-2h1l0.56-5.61L12,14.83V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"transform\": {\n    \"name\": \"transform\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4v-2H8V4zm10 10V8c0-1.1-.9-2-2-2h-6v2h6v6h2z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_back\": {\n    \"name\": \"video_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,18h12V6H4V18z M7.38,12.83L9,15l2.62-3.5L15,16H5L7.38,12.83z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"11.62,11.5 9,15 7.38,12.83 5,16 15,16\\\"></polygon><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,18 H4V6h12V18z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"adjust\": {\n    \"name\": \"adjust\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0-7C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"tune\": {\n    \"name\": \"tune\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h10v2H3zm4 6H3v2h4v2h2V9H7zm6 4h-2v6h2v-2h8v-2h-8zM3 17h6v2H3zm8-6h10v2H11zm6-8h-2v6h2V7h4V5h-4z\\\"></path>\"\n      }\n    }\n  },\n  \"navigate_before\": {\n    \"name\": \"navigate_before\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_cw\": {\n    \"name\": \"rotate_90_degrees_cw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M4.64,19.37c3.03,3.03,7.67,3.44,11.15,1.25l-1.46-1.46c-2.66,1.43-6.04,1.03-8.28-1.21c-2.73-2.73-2.73-7.17,0-9.9 C7.42,6.69,9.21,6.03,11,6.03V9l4-4l-4-4v3.01c-2.3,0-4.61,0.87-6.36,2.63C1.12,10.15,1.12,15.85,4.64,19.37z M11,13l6,6l6-6 l-6-6L11,13z M17,16.17L13.83,13L17,9.83L20.17,13L17,16.17z\\\"></path><rect enable-background=\\\"new\\\" height=\\\"4.49\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -4.2138 15.8229)\\\" width=\\\"4.49\\\" x=\\\"14.75\\\" y=\\\"10.75\\\"></rect></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect enable-background=\\\"new\\\" height=\\\"4.07\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -3.6756 13.1264)\\\" width=\\\"4.07\\\" x=\\\"11.97\\\" y=\\\"8.97\\\"></rect><path d=\\\"M9,11l5,5l5-5l-5-5L9,11z M14,13.88L11.12,11L14,8.12L16.88,11L14,13.88z\\\"></path><path d=\\\"M2,11c0,3.87,3.13,7,7,7c1.43,0,2.76-0.43,3.86-1.17l-1.09-1.09C10.96,16.22,10.01,16.5,9,16.5c-3.03,0-5.5-2.47-5.5-5.5 S5.97,5.5,9,5.5v2.25l3-3l-3-3V4C5.13,4,2,7.13,2,11z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"autofps_select\": {\n    \"name\": \"autofps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"12.03,6.3 11.97,6.3 10.95,9.19 13.05,9.19\\\"></polygon><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"17\\\"></rect><path d=\\\"M12,15c3.31,0,6-2.69,6-6s-2.69-6-6-6S6,5.69,6,9S8.69,15,12,15z M11.37,5h1.25l2.63,7h-1.21l-0.63-1.79h-2.83L9.96,12 H8.74L11.37,5z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"17\\\"></rect><rect height=\\\"5\\\" width=\\\"6\\\" x=\\\"15\\\" y=\\\"17\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"wb_iridescent\": {\n    \"name\": \"wb_iridescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11h10v2H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 15h14V9H5v6zm2-4h10v2H7v-2zm4-10h2v3h-2zm6.25 4.39l1.41 1.41 1.8-1.79-1.42-1.41zM11 20h2v3h-2zm6.24-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM5.34 6.805l-1.788-1.79L4.96 3.61l1.788 1.788zM3.55 19.08l1.41 1.42 1.79-1.8-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"video_camera_front\": {\n    \"name\": \"video_camera_front\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M18,10.48V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.48l4,3.98v-11L18,10.48z M16,18 H4V6h12V18z M10,12c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S8.9,12,10,12z M14,15.43c0-0.81-0.48-1.53-1.22-1.85 C11.93,13.21,10.99,13,10,13c-0.99,0-1.93,0.21-2.78,0.58C6.48,13.9,6,14.62,6,15.43V16h8V15.43z\\\"></path><path d=\\\"M4,18h12V9.69V6H4V18z M10,8c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S8.9,8,10,8z M6,15.43 c0-0.81,0.48-1.53,1.22-1.85C8.07,13.21,9.01,13,10,13c0.99,0,1.93,0.21,2.78,0.58C13.52,13.9,14,14.62,14,15.43V16H6V15.43z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"panorama_fish_eye\": {\n    \"name\": \"panorama_fish_eye\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_off\": {\n    \"name\": \"hdr_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_awesome_mosaic\": {\n    \"name\": \"auto_awesome_mosaic\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"14\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><path d=\\\"M3,5v14c0,1.1,0.89,2,2,2h6V3H5C3.89,3,3,3.9,3,5z M9,19H5V5h4V19z\\\"></path><path d=\\\"M19,3h-6v8h8V5C21,3.9,20.1,3,19,3z M19,9h-4V5h4V9z\\\"></path><path d=\\\"M13,21h6c1.1,0,2-0.9,2-2v-6h-8V21z M15,15h4v4h-4V15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"rotate_right\": {\n    \"name\": \"rotate_right\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19.93 11c-.17-1.39-.72-2.73-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45L11 1zm4.46 15.87c-.75.54-1.59.89-2.46 1.03v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44zm2.85.02c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48l1.42 1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_tilt_shift\": {\n    \"name\": \"filter_tilt_shift\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43C16.84 3.05 15.01 2.25 13 2.05zm0 17.88v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-8.74-1.61l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89H2.05c.2 2.01 1 3.84 2.21 5.32zM2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11zm16.26-3.9c.86 1.11 1.44 2.44 1.62 3.9h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1zM7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69zM5.68 19.74C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43zm16.27-6.73h-2.02c-.18 1.45-.76 2.78-1.62 3.89l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32zM9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"music_off\": {\n    \"name\": \"music_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"10\\\" cy=\\\"17\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M14 7h4V3h-6v4.61l2 2zm-2 3.44L4.41 2.86 3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07-.46 2.74 1.86 5.08 4.59 4.65 1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44zM10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_off\": {\n    \"name\": \"auto_fix_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -9.117 10.2825)\\\" width=\\\"7.73\\\" x=\\\"3.99\\\" y=\\\"15.15\\\"></rect><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><path d=\\\"M14.17,8.42l1.41,1.41l-1.46,1.46l1.41,1.41l2.17-2.17c0.39-0.39,0.39-1.02,0-1.41l-2.83-2.83C14.68,6.1,14.43,6,14.17,6 c-0.26,0-0.51,0.1-0.71,0.29l-2.17,2.17l1.41,1.41L14.17,8.42z\\\"></path><path d=\\\"M2.81,2.81L1.39,4.22l7.07,7.07l-6.17,6.17c-0.39,0.39-0.39,1.02,0,1.41l2.83,2.83C5.32,21.9,5.57,22,5.83,22 s0.51-0.1,0.71-0.29l6.17-6.17l7.07,7.07l1.41-1.41L2.81,2.81z M5.83,19.59l-1.41-1.41l5.46-5.46l1.41,1.41L5.83,19.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_rupee\": {\n    \"name\": \"currency_rupee\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M13.66,7C13.1,5.82,11.9,5,10.5,5L6,5V3h12v2l-3.26,0c0.48,0.58,0.84,1.26,1.05,2L18,7v2l-2.02,0c-0.25,2.8-2.61,5-5.48,5 H9.77l6.73,7h-2.77L7,14v-2h3.5c1.76,0,3.22-1.3,3.46-3L6,9V7L13.66,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.4,17h2.11l-5.4-5.5h0.65c2.26,0,4.11-1.77,4.24-4l1.51,0l0-1.5l-1.69,0c-0.17-0.56-0.46-1.07-0.82-1.5l2.51,0l0-1.5 l-9,0v1.5l3.25,0c1.07,0,1.99,0.61,2.45,1.5L5.5,6v1.5l5.99,0c-0.13,1.4-1.3,2.5-2.74,2.5L6,10v1.5L11.4,17z\\\"></path></g>\"\n      }\n    }\n  },\n  \"crop\": {\n    \"name\": \"crop\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7V1H5v4H1v2h4v10zm14-2V7c0-1.1-.9-2-2-2H9v2h8v8h2z\\\"></path>\"\n      }\n    }\n  },\n  \"14mp\": {\n    \"name\": \"14mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,5.5 h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14 h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><polygon points=\\\"15,11.5 16.5,11.5 16.5,10 17.5,10 17.5,8.5 16.5,8.5 16.5,5.5 15,5.5 15,8.5 13.5,8.5 13.5,5.5 12,5.5 12,10 15,10\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"22mp\": {\n    \"name\": \"22mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M13,9 c0-0.55,0.45-1,1-1h2V7h-3V5.5h3.5c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1h-2v1h3v1.5H13V9z M6.5,9c0-0.55,0.45-1,1-1h2V7h-3V5.5 H10c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H8v1h3v1.5H6.5V9z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5 v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path><path d=\\\"M17.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H13V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"straighten\": {\n    \"name\": \"straighten\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12h-2V8h-2v4h-2V8h-2v4H9V8H7v4H5V8H3v8h18V8h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_incandescent\": {\n    \"name\": \"wb_incandescent\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 8.59l-1-.58V4.05h-2v3.96l-1 .58c-1.24.72-2 2.04-2 3.46 0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.42-.77-2.74-2-3.46z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41zM11 20h2v3h-2zM1 11h3v2H1zm14-4.14V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm-3 9.19c-2.21 0-4-1.79-4-4 0-1.42.77-2.74 2-3.46l1-.58V4.05h2v3.96l1 .58c1.24.72 2 2.04 2 3.46 0 2.21-1.79 4-4 4zM20 11h3v2h-3zm-2.76 7.71l1.79 1.8 1.41-1.41-1.8-1.79z\\\"></path>\"\n      }\n    }\n  },\n  \"camera_roll\": {\n    \"name\": \"camera_roll\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 5H9V3H7v2H4v15h8v-2h8V7h-8V5zm-1 12H9v-2h2v2zm0-7H9V8h2v2zm6-2h2v2h-2V8zm0 7h2v2h-2v-2zm-4-7h2v2h-2V8zm0 7h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm6 13h-8v2H4V5h3V3h2v2h3v2h8v11zM9 15h2v2H9zm0-7h2v2H9zm4 7h2v2h-2zm0-7h2v2h-2zm4 7h2v2h-2zm0-7h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"assistant_photo\": {\n    \"name\": \"assistant_photo\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.24 12l.4 2H18V8h-5.24l-.4-2H7v6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 14h5.6l.4 2h7V6h-5.6L14 4H5v17h2v-7zm0-8h5.36l.4 2H18v6h-3.36l-.4-2H7V6z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_pause\": {\n    \"name\": \"motion_photos_pause\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z M11,15H9V9h2V15z M15,15h-2V9h2V15z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z M9.25,12.5h-1.5v-5h1.5V12.5z M12.25,12.5 h-1.5v-5h1.5V12.5z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_circular\": {\n    \"name\": \"blur_circular\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"14\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"14\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><path d=\\\"M10 16.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><path d=\\\"M7 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><path d=\\\"M10 7.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm4 9c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0 4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"face_retouching_natural\": {\n    \"name\": \"face_retouching_natural\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10.66,4.12c2.55,4.23,7.03,3.87,7.18,3.86l-0.57-1.25L12.4,4.5l0.85-0.39C12.84,4.04,12.43,4,12,4 C11.54,4,11.09,4.05,10.66,4.12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8.08,5.03C6.37,6,5.05,7.58,4.42,9.47C6.13,8.5,7.45,6.92,8.08,5.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.89,10.75C19.96,11.16,20,11.57,20,12c0,4.41-3.59,8-8,8s-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14 c2.6-0.98,4.69-2.99,5.74-5.55c3.38,4.14,7.97,3.73,8.99,3.61l-0.89-1.93c-0.13,0.01-4.62,0.38-7.18-3.86 c1.01-0.16,1.71-0.15,2.59-0.01l2.12-0.97l0.64-0.29C14.78,2.3,13.43,2,12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 c0-1.43-0.3-2.78-0.84-4.01L19.89,10.75z M8.08,5.03C7.45,6.92,6.13,8.5,4.42,9.47C5.05,7.58,6.37,6,8.08,5.03z\\\"></path><circle cx=\\\"9\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"15\\\" cy=\\\"13\\\" r=\\\"1.25\\\"></circle><polygon points=\\\"20.6,3.4 19.5,1 18.4,3.4 16,4.5 18.4,5.6 19.5,8 20.6,5.6 23,4.5\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"camera_rear\": {\n    \"name\": \"camera_rear\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 16h10V2H7v14zm4.99-13c1.1 0 2 .9 2 2C14 6.1 13.1 7 12 7c-1.11 0-2-.9-2-2s.89-2 1.99-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 20v2h5v2l3-3-3-3v2zm9 0h5v2h-5zm5-18c0-1.1-.9-2-2-2H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2zm-2 14H7V2h10v14zm-5-9c1.1 0 2-.9 1.99-2 0-1.1-.9-2-2-2S10 3.9 10 5s.89 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"deblur\": {\n    \"name\": \"deblur\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"10\\\" r=\\\".5\\\"></circle><circle cx=\\\"6\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"3\\\" cy=\\\"14\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"21\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"10\\\" cy=\\\"14\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"10\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M12,3v2c3.86,0,7,3.14,7,7s-3.14,7-7,7v2c4.96,0,9-4.04,9-9S16.96,3,12,3z\\\"></path><path d=\\\"M12,5v14c3.86,0,7-3.14,7-7S15.86,5,12,5z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"5.5\\\" cy=\\\"11.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"8.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"8.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"3\\\" cy=\\\"11.5\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"17\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"3\\\" r=\\\".5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"5.5\\\" r=\\\".75\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"11.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"8.5\\\" r=\\\"1\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"14.5\\\" r=\\\".75\\\"></circle><path d=\\\"M10,3v1.5c3.03,0,5.5,2.47,5.5,5.5s-2.47,5.5-5.5,5.5V17c3.87,0,7-3.13,7-7C17,6.13,13.87,3,10,3z\\\"></path><path d=\\\"M10,4.5v11c3.04,0,5.5-2.46,5.5-5.5C15.5,6.96,13.04,4.5,10,4.5z\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"face_retouching_off\": {\n    \"name\": \"face_retouching_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-0.46,0-0.91,0.05-1.34,0.12C12.06,6.44,14.6,8,17.5,8c0.46,0,0.91-0.05,1.34-0.12 C17.44,5.56,14.9,4,12,4z M4.42,9.47C5.09,9.09,5.7,8.61,6.23,8.06L5.51,7.34C5.05,7.99,4.68,8.7,4.42,9.47z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,14.25c0.69,0,1.25-0.56,1.25-1.25S9.69,11.75,9,11.75S7.75,12.31,7.75,13S8.31,14.25,9,14.25z M17.5,10 c0.75,0,1.47-0.09,2.17-0.24C19.88,10.47,20,11.22,20,12c0,1.22-0.28,2.37-0.77,3.4l1.49,1.49C21.53,15.44,22,13.78,22,12 c0-5.52-4.48-10-10-10c-1.78,0-3.44,0.47-4.89,1.28l5.33,5.33C13.93,9.49,15.65,10,17.5,10z M10.66,4.12C11.09,4.05,11.54,4,12,4 c2.9,0,5.44,1.56,6.84,3.88C18.41,7.95,17.96,8,17.5,8C14.6,8,12.06,6.44,10.66,4.12z M1.89,3.72l2.19,2.19C2.78,7.6,2,9.71,2,12 c0,5.52,4.48,10,10,10c2.29,0,4.4-0.78,6.09-2.08l2.19,2.19l1.41-1.41L3.31,2.31L1.89,3.72z M16.66,18.49 C15.35,19.44,13.74,20,12,20c-4.41,0-8-3.59-8-8c0-0.05,0.01-0.1,0-0.14c1.39-0.52,2.63-1.35,3.64-2.39L16.66,18.49z M5.51,7.34 l0.72,0.72C5.7,8.61,5.09,9.09,4.42,9.47C4.68,8.7,5.05,7.99,5.51,7.34z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_yen\": {\n    \"name\": \"currency_yen\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.92,11 18,11 18,13 13,13 13,15 18,15 18,17 13,17 13,21 11,21 11,17 6,17 6,15 11,15 11,13 6,13 6,11 10.08,11 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"11.29,9.5 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 8.71,9.5 5.5,9.5 5.5,11 9.25,11 9.25,12.5 5.5,12.5 5.5,14 9.25,14 9.25,17 10.75,17 10.75,14 14.5,14 14.5,12.5 10.75,12.5 10.75,11 14.5,11 14.5,9.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_7\": {\n    \"name\": \"filter_7\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm4-10V5h6v2l-4 8h-2l4-8h-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm10-8l4-8V5h-6v2h4l-4 8zm8-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_2\": {\n    \"name\": \"brightness_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 12c0-4.41-3.59-8-8-8-.34 0-.68.02-1.01.07C10.9 6.23 12 9.05 12 12c0 2.95-1.1 5.77-3.01 7.93.33.05.67.07 1.01.07 4.41 0 8-3.59 8-8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 20.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65zM12 12c0-2.95-1.1-5.77-3.01-7.93C9.32 4.02 9.66 4 10 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07C10.9 17.77 12 14.95 12 12z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_square\": {\n    \"name\": \"crop_square\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_left\": {\n    \"name\": \"rotate_left\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 17.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91zm-7.31-1.02l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47H4.07c.17 1.39.72 2.73 1.62 3.89zm1.42-8.36L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM11 17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32c1.16.9 2.51 1.44 3.9 1.61V17.9z\\\"></path>\"\n      }\n    }\n  },\n  \"motion_photos_paused\": {\n    \"name\": \"motion_photos_paused\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M22,12c0,5.52-4.48,10-10,10S2,17.52,2,12c0-1.19,0.22-2.32,0.6-3.38L4.48,9.3C4.17,10.14,4,11.05,4,12c0,4.41,3.59,8,8,8 s8-3.59,8-8s-3.59-8-8-8c-0.95,0-1.85,0.17-2.69,0.48L8.63,2.59C9.69,2.22,10.82,2,12,2C17.52,2,22,6.48,22,12z M5.5,4 C4.67,4,4,4.67,4,5.5S4.67,7,5.5,7S7,6.33,7,5.5S6.33,4,5.5,4z M11,16V8H9v8H11z M15,16V8h-2v8H15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"photo_camera_back\": {\n    \"name\": \"photo_camera_back\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M15.95,7l-1.83-2H9.88L8.05,7H4v12h16V7H15.95z M6,17l3-4l2.25,3l3-4L18,17H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,5h-3.17L15,3H9L7.17,5H4C2.9,5,2,5.9,2,7v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V7C22,5.9,21.1,5,20,5z M20,19H4V7 h4.05l1.83-2h4.24l1.83,2H20V19z M11.25,16L9,13l-3,4h12l-3.75-5L11.25,16z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hevc\": {\n    \"name\": \"hevc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"5.5,11 4.5,11 4.5,9 3,9 3,15 4.5,15 4.5,12.5 5.5,12.5 5.5,15 7,15 7,9 5.5,9\\\"></polygon><path d=\\\"M21,11v-1c0-0.55-0.45-1-1-1h-2c-0.55,0-1,0.45-1,1v4c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-1v-3h1V11H21z\\\"></path><polygon points=\\\"14.25,13.5 13.5,9 12,9 13,15 15.5,15 16.5,9 15,9\\\"></polygon><polygon points=\\\"8,9 8,15 11.5,15 11.5,13.5 9.5,13.5 9.5,12.5 11.5,12.5 11.5,11 9.5,11 9.5,10.5 11.5,10.5 11.5,9\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"lens\": {\n    \"name\": \"lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"blur_off\": {\n    \"name\": \"blur_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"14\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"18\\\" cy=\\\"10\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><path d=\\\"M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"6\\\" r=\\\"1\\\"></circle><circle cx=\\\"18\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><circle cx=\\\"6\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"10\\\" cy=\\\"18\\\" r=\\\"1\\\"></circle><path d=\\\"M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z\\\"></path><circle cx=\\\"6\\\" cy=\\\"14\\\" r=\\\"1\\\"></circle><path d=\\\"M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z\\\"></path>\"\n      }\n    }\n  },\n  \"broken_image\": {\n    \"name\": \"broken_image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13.99 15.41l-4-4-4 4-.99-.99V19h14v-6.57l-1.01-1.01zM5 11.59l.99 1 4-4 4 4 4-4.01L19 9.59V5H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41l-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z\\\"></path>\"\n      }\n    }\n  },\n  \"color_lens\": {\n    \"name\": \"color_lens\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 10 6.5 10s1.5.67 1.5 1.5S7.33 13 6.5 13zm3-4C8.67 9 8 8.33 8 7.5S8.67 6 9.5 6s1.5.67 1.5 1.5S10.33 9 9.5 9zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zm4.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10c1.38 0 2.5-1.12 2.5-2.5 0-.61-.23-1.21-.64-1.67-.08-.09-.13-.21-.13-.33 0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm4 13h-1.77c-1.38 0-2.5 1.12-2.5 2.5 0 .61.22 1.19.63 1.65.06.07.14.19.14.35 0 .28-.22.5-.5.5-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.14 8 7c0 2.21-1.79 4-4 4z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"17.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"movie_filter\": {\n    \"name\": \"movie_filter\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.63 11.37L18 12l-1.37.63L16 14l-.63-1.37L14 12l1.37-.63L16 10H5.77L4.01 6.47V18h16v-8H16l.63 1.37zm-5.69 3.57L10 17l-.94-2.06L7 14l2.06-.94L10 11l.94 2.06L13 14l-2.06.94z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 11l-.94 2.06L7 14l2.06.94L10 17l.94-2.06L13 14l-2.06-.94zm8.01-7l2 4h-3l-2-4h-2l2 4h-3l-2-4h-2l2 4h-3l-2-4h-1c-1.1 0-1.99.9-1.99 2l-.01 12c0 1.1.9 2 2 2h16c1.1 0 1.99-.9 1.99-2V4h-3.99zm2 14h-16V6.47L5.77 10H16l-.63 1.37L14 12l1.37.63L16 14l.63-1.37L18 12l-1.37-.63L16 10h4.01v8z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_plus\": {\n    \"name\": \"hdr_plus\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8c0,2.52,1.17,4.77,3,6.24V13h3.5c0.8,0,1.5,0.7,1.5,1.5v1c0,0.6-0.4,1.1-0.9,1.4 L12,19h-1.5l-0.9-2H8.5v2H8.13c1.15,0.64,2.47,1,3.87,1c4.41,0,8-3.59,8-8C20,7.59,16.41,4,12,4z M12,12h-1.5V9.5h-2V12H7V6h1.5v2 h2V6H12V12z M17.5,16H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16z M17.5,10.5c0,0.8-0.7,1.5-1.5,1.5h-3V6h3 c0.8,0,1.5,0.7,1.5,1.5V10.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"7.5\\\"></rect><rect height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"8.5\\\" y=\\\"14.5\\\"></rect><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-1.4,0-2.72-0.36-3.87-1H8.5v-2h1.1l0.9,2H12 l-0.9-2.1c0.5-0.3,0.9-0.8,0.9-1.4v-1c0-0.8-0.7-1.5-1.5-1.5H7v5.24C5.17,16.77,4,14.52,4,12c0-4.41,3.59-8,8-8s8,3.59,8,8 C20,16.41,16.41,20,12,20z M8.5,15.5v-1h2v1H8.5z\\\"></path><polygon points=\\\"10.5,8 8.5,8 8.5,6 7,6 7,12 8.5,12 8.5,9.5 10.5,9.5 10.5,12 12,12 12,6 10.5,6\\\"></polygon><path d=\\\"M16,6h-3v6h3c0.8,0,1.5-0.7,1.5-1.5v-3C17.5,6.7,16.8,6,16,6z M16,10.5h-1.5v-3H16V10.5z\\\"></path><polygon points=\\\"16,13 14.5,13 14.5,14.5 13,14.5 13,16 14.5,16 14.5,17.5 16,17.5 16,16 17.5,16 17.5,14.49 16,14.49\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"add_photo_alternate\": {\n    \"name\": \"add_photo_alternate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.21 16.83l-1.96-2.36L5.5 18h11l-3.54-4.71z\\\"></path><path d=\\\"M16.5 18h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zM17 7h-3V6H4v14h14V10h-1V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4V1h-2v3h-3v2h3v2.99h2V6h3V4zm-2 16H4V6h10V4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V10h-2v10z\\\"></path>\"\n      }\n    }\n  },\n  \"shutter_speed\": {\n    \"name\": \"shutter_speed\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 6c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm0 1c.46 0 .9.06 1.33.15l-2.72 4.7-2.32-3.56C9.31 7.49 10.6 7 12 7zm-6 6c0-1.54.59-2.95 1.55-4.01L10.81 14H6.09c-.05-.33-.09-.66-.09-1zm.35 2h5.33l-2.03 3.5.11.06c-1.59-.64-2.84-1.94-3.41-3.56zM12 19c-.48 0-.94-.06-1.39-.17l2.85-4.92 2.11 3.9c-1 .74-2.23 1.19-3.57 1.19zm6-6c0 1.6-.63 3.06-1.66 4.13L13.57 12h4.34c.05.33.09.66.09 1zm-5.74-2l2.05-3.54c1.56.65 2.77 1.94 3.34 3.54h-5.39z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.55 8.99C6.59 10.05 6 11.46 6 13c0 .34.04.67.09 1h4.72L7.55 8.99zm6.76-1.53L12.26 11h5.39c-.57-1.6-1.78-2.89-3.34-3.54zm-.98-.31C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7zM11.68 15H6.35c.57 1.62 1.82 2.92 3.41 3.56l-.11-.06 2.03-3.5zm7.35-7.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42C16.07 4.74 14.12 4 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9 9-4.03 9-9c0-2.12-.74-4.07-1.97-5.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zM9 1h6v2H9zm7.34 16.13C17.37 16.06 18 14.6 18 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-5.73 1.7c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_off\": {\n    \"name\": \"timer_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,20c1.47,0,2.83-0.45,3.95-1.22L6.22,9.05C5.45,10.17,5,11.53,5,13C5,16.87,8.13,20,12,20z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,6c-0.94,0-1.83,0.19-2.65,0.52L11,8.17V8h2v2.17l5.48,5.48C18.81,14.83,19,13.94,19,13 C19,9.13,15.87,6,12,6z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"1\\\"></rect><path d=\\\"M12,6c3.87,0,7,3.13,7,7c0,0.94-0.19,1.83-0.52,2.65l1.5,1.5C20.63,15.91,21,14.5,21,13c0-2.12-0.74-4.07-1.97-5.61 l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42C16.07,4.74,14.12,4,12,4c-1.5,0-2.91,0.37-4.15,1.02l1.5,1.5 C10.17,6.19,11.06,6,12,6z\\\"></path><polygon points=\\\"11,8 11,8.17 13,10.17 13,8\\\"></polygon><path d=\\\"M2.81,2.81L1.39,4.22l3.4,3.4C3.67,9.12,3,10.98,3,13c0,4.97,4.02,9,9,9c2.02,0,3.88-0.67,5.38-1.79l2.4,2.4l1.41-1.41 L2.81,2.81z M12,20c-3.87,0-7-3.13-7-7c0-1.47,0.45-2.83,1.22-3.95l9.73,9.73C14.83,19.55,13.47,20,12,20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.5c-0.71,0-1.38,0.14-2,0.38l1.25,1.25V7h1.5v1.63L15.12,13c0.24-0.62,0.38-1.29,0.38-2 C15.5,7.97,13.03,5.5,10,5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5.6,7.72C4.91,8.64,4.5,9.77,4.5,11c0,3.03,2.47,5.5,5.5,5.5c1.23,0,2.36-0.41,3.28-1.1L5.6,7.72z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,5.5c3.03,0,5.5,2.47,5.5,5.5c0,0.71-0.14,1.38-0.38,2l1.13,1.13c0.47-0.94,0.75-2,0.75-3.13 c0-1.66-0.58-3.19-1.55-4.39l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4C8.87,4,7.81,4.27,6.87,4.75L8,5.88 C8.62,5.64,9.29,5.5,10,5.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><polygon points=\\\"9.25,7 9.25,7.13 10.75,8.63 10.75,7\\\"></polygon><path d=\\\"M2.93,2.93L1.87,3.99l2.66,2.66C3.57,7.84,3,9.35,3,11c0,3.87,3.13,7,7,7c1.65,0,3.16-0.57,4.35-1.52l1.66,1.66l1.06-1.06 L2.93,2.93z M10,16.5c-3.03,0-5.5-2.47-5.5-5.5c0-1.23,0.41-2.36,1.1-3.28l7.68,7.68C12.36,16.09,11.23,16.5,10,16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"iso\": {\n    \"name\": \"iso\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 19V5L5 19h14zm-2-3.5V17h-5v-1.5h5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 15.5h5V17h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14z\\\"></path>\"\n      }\n    }\n  },\n  \"exposure_zero\": {\n    \"name\": \"exposure_zero\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.01 6.22c-.36-.43-.8-.74-1.31-.93S12.63 5 12 5c-.62 0-1.19.1-1.69.29-.51.19-.95.5-1.31.93s-.64.99-.84 1.69c-.2.7-.3 1.55-.3 2.55v2.04c0 1 .1 1.85.3 2.55.2.69.49 1.26.85 1.7s.8.75 1.31.95c.51.2 1.07.3 1.69.3.63 0 1.19-.1 1.7-.3.51-.2.94-.51 1.3-.95.35-.43.63-1 .83-1.7.2-.7.3-1.55.3-2.55h.01v-2.04c0-1.01-.1-1.85-.3-2.55-.2-.7-.48-1.26-.84-1.69zm-.97 6.58c0 .63-.04 1.17-.13 1.62-.09.45-.22.81-.39 1.09s-.38.48-.63.61-.54.19-.87.19c-.33 0-.62-.06-.87-.19s-.47-.33-.64-.61c-.17-.28-.31-.64-.4-1.09-.09-.44-.14-.98-.14-1.62v-2.67c0-.64.04-1.18.13-1.62.09-.44.23-.79.4-1.06s.39-.46.64-.58.54-.18.86-.18.61.06.86.19c.25.12.47.31.64.58.18.27.31.62.4 1.06.08.44.13.98.13 1.62h.01v2.66z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_4\": {\n    \"name\": \"brightness_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zM12.29 17c-.74 0-1.45-.17-2.08-.46 1.72-.79 2.92-2.52 2.92-4.54s-1.2-3.75-2.92-4.54c.63-.29 1.34-.46 2.08-.46 2.76 0 5 2.24 5 5s-2.24 5-5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12.29 7c-.74 0-1.45.17-2.08.46 1.72.79 2.92 2.53 2.92 4.54s-1.2 3.75-2.92 4.54c.63.29 1.34.46 2.08.46 2.76 0 5-2.24 5-5s-2.24-5-5-5z\\\"></path>\"\n      }\n    }\n  },\n  \"rotate_90_degrees_ccw\": {\n    \"name\": \"rotate_90_degrees_ccw\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.35 9.24L3.69 12.9l3.65 3.66L11 12.9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zm0 10.15L3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66zm12.02-9.92C17.61 4.88 15.3 4 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05 2.73 2.73 2.73 7.17 0 9.9C16.58 19.32 14.79 20 13 20c-.97 0-1.94-.21-2.84-.61l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64 3.52-3.51 3.52-9.21 0-12.72z\\\"></path>\"\n      }\n    }\n  },\n  \"collections_bookmark\": {\n    \"name\": \"collections_bookmark\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-1v9l-3-2.25L13 13V4H8v12h12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2zm18-6V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM15 4h2v5l-1-.75L15 9V4zM8 4h5v9l3-2.25L19 13V4h1v12H8V4z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_4\": {\n    \"name\": \"looks_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M.04 0h24v24h-24V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.04 19h14V5h-14v14zm4-12h2v4h2V7h2v10h-2v-4h-4V7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.04 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-14V5h14v14zm-6-2h2V7h-2v4h-2V7h-2v6h4z\\\"></path>\"\n      }\n    }\n  },\n  \"control_point_duplicate\": {\n    \"name\": \"control_point_duplicate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 5c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm4 8h-3v3h-2v-3h-3v-2h3V8h2v3h3v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zm-1-5c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16C3.64 17.2 2 14.79 2 12z\\\"></path>\"\n      }\n    }\n  },\n  \"looks_3\": {\n    \"name\": \"looks_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm4-4h4v-2h-2v-2h2V9H9V7h4c1.1 0 2 .89 2 2v1.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15c0 1.11-.9 2-2 2H9v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4-4v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.11-.9-2-2-2H9v2h4v2h-2v2h2v2H9v2h4c1.1 0 2-.89 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_horizontal\": {\n    \"name\": \"panorama_horizontal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6.54v10.91c2.6-.77 5.28-1.16 8-1.16s5.4.39 8 1.16V6.54c-2.6.78-5.28 1.17-8 1.16-2.72 0-5.4-.39-8-1.16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7s-6.18-.55-9.12-1.64C2.77 4.02 2.66 4 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64s6.18.55 9.12 1.64c.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63zM20 17.45c-2.6-.77-5.28-1.16-8-1.16s-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16v10.91z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_fix_normal\": {\n    \"name\": \"auto_fix_normal\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.7071 -0.7071 0.7071 0.7071 -8.2634 10.636)\\\" width=\\\"10.14\\\" x=\\\"3.64\\\" y=\\\"14.29\\\"></rect><polygon points=\\\"20,7 20.94,4.94 23,4 20.94,3.06 20,1 19.06,3.06 17,4 19.06,4.94\\\"></polygon><path d=\\\"M17.71,9.12l-2.83-2.83C14.68,6.1,14.43,6,14.17,6c-0.26,0-0.51,0.1-0.71,0.29L2.29,17.46c-0.39,0.39-0.39,1.02,0,1.41 l2.83,2.83C5.32,21.9,5.57,22,5.83,22s0.51-0.1,0.71-0.29l11.17-11.17C18.1,10.15,18.1,9.51,17.71,9.12z M5.83,19.59l-1.41-1.41 L11.59,11L13,12.41L5.83,19.59z M14.41,11L13,9.59l1.17-1.17l1.41,1.41L14.41,11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"palette\": {\n    \"name\": \"palette\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><g><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8c0.28,0,0.5-0.22,0.5-0.5 c0-0.16-0.08-0.28-0.14-0.35c-0.41-0.46-0.63-1.05-0.63-1.65c0-1.38,1.12-2.5,2.5-2.5H16c2.21,0,4-1.79,4-4 C20,7.14,16.41,4,12,4z M6.5,13C5.67,13,5,12.33,5,11.5S5.67,10,6.5,10S8,10.67,8,11.5S7.33,13,6.5,13z M9.5,9 C8.67,9,8,8.33,8,7.5S8.67,6,9.5,6S11,6.67,11,7.5S10.33,9,9.5,9z M14.5,9C13.67,9,13,8.33,13,7.5S13.67,6,14.5,6 S16,6.67,16,7.5S15.33,9,14.5,9z M19,11.5c0,0.83-0.67,1.5-1.5,1.5S16,12.33,16,11.5s0.67-1.5,1.5-1.5S19,10.67,19,11.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2C6.49,2,2,6.49,2,12s4.49,10,10,10c1.38,0,2.5-1.12,2.5-2.5c0-0.61-0.23-1.21-0.64-1.67 c-0.08-0.09-0.13-0.21-0.13-0.33c0-0.28,0.22-0.5,0.5-0.5H16c3.31,0,6-2.69,6-6C22,6.04,17.51,2,12,2z M16,15h-1.77 c-1.38,0-2.5,1.12-2.5,2.5c0,0.61,0.22,1.19,0.63,1.65c0.06,0.07,0.14,0.19,0.14,0.35c0,0.28-0.22,0.5-0.5,0.5 c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.14,8,7C20,13.21,18.21,15,16,15z\\\"></path><circle cx=\\\"6.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"9.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"14.5\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"17.5\\\" cy=\\\"11.5\\\" r=\\\"1.5\\\"></circle></g></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5c0.38,0,0.7-0.46,0.36-0.85 c-0.29-0.33-0.47-0.78-0.47-1.25c0-1.05,0.85-1.9,1.9-1.9h1.42c1.82,0,3.3-1.48,3.3-3.3C16.5,6.06,13.58,3.5,10,3.5z M5.5,10.75 c-0.69,0-1.25-0.56-1.25-1.25c0-0.69,0.56-1.25,1.25-1.25S6.75,8.81,6.75,9.5C6.75,10.19,6.19,10.75,5.5,10.75z M8,7.75 c-0.69,0-1.25-0.56-1.25-1.25c0-0.69,0.56-1.25,1.25-1.25S9.25,5.81,9.25,6.5C9.25,7.19,8.69,7.75,8,7.75z M12,7.75 c-0.69,0-1.25-0.56-1.25-1.25c0-0.69,0.56-1.25,1.25-1.25s1.25,0.56,1.25,1.25C13.25,7.19,12.69,7.75,12,7.75z M15.75,9.5 c0,0.69-0.56,1.25-1.25,1.25s-1.25-0.56-1.25-1.25c0-0.69,0.56-1.25,1.25-1.25S15.75,8.81,15.75,9.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,2c-4.41,0-8,3.59-8,8s3.59,8,8,8c1.1,0,2-0.9,2-2c0-0.49-0.18-0.96-0.51-1.34c-0.24-0.3-0.02-0.66,0.3-0.66h1.42 c2.65,0,4.8-2.15,4.8-4.8C18,5.23,14.41,2,10,2z M13.2,12.5h-1.42c-1.05,0-1.9,0.85-1.9,1.9c0,0.47,0.19,0.92,0.47,1.25 c0.34,0.39,0.02,0.85-0.36,0.85c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5s6.5,2.56,6.5,5.7C16.5,11.02,15.02,12.5,13.2,12.5z\\\"></path><circle cx=\\\"14.5\\\" cy=\\\"9.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"12\\\" cy=\\\"6.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"5.5\\\" cy=\\\"9.5\\\" r=\\\"1.25\\\"></circle><circle cx=\\\"8\\\" cy=\\\"6.5\\\" r=\\\"1.25\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"filter_hdr\": {\n    \"name\": \"filter_hdr\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h3.04l-1.52-2.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z\\\"></path>\"\n      }\n    }\n  },\n  \"timer\": {\n    \"name\": \"timer\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,6c-3.87,0-7,3.13-7,7s3.13,7,7,7s7-3.13,7-7S15.87,6,12,6z M13,14h-2V8h2V14z\\\" opacity=\\\".3\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"1\\\"></rect><path d=\\\"M19.03,7.39l1.42-1.42c-0.43-0.51-0.9-0.99-1.41-1.41l-1.42,1.42C16.07,4.74,14.12,4,12,4c-4.97,0-9,4.03-9,9 c0,4.97,4.02,9,9,9s9-4.03,9-9C21,10.88,20.26,8.93,19.03,7.39z M12,20c-3.87,0-7-3.13-7-7s3.13-7,7-7s7,3.13,7,7S15.87,20,12,20z\\\"></path><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"8\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,5.5c-3.03,0-5.5,2.47-5.5,5.5s2.47,5.5,5.5,5.5s5.5-2.47,5.5-5.5S13.03,5.5,10,5.5z M10.75,12h-1.5V7 h1.5V12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.45,6.61l1.08-1.08l-1.06-1.06l-1.08,1.08C13.19,4.58,11.66,4,10,4c-3.87,0-7,3.13-7,7s3.13,7,7,7c3.87,0,7-3.13,7-7 C17,9.34,16.42,7.81,15.45,6.61z M10,16.5c-3.03,0-5.5-2.47-5.5-5.5S6.97,5.5,10,5.5s5.5,2.47,5.5,5.5S13.03,16.5,10,16.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"7.5\\\" y=\\\"1.5\\\"></rect><rect height=\\\"5\\\" width=\\\"1.5\\\" x=\\\"9.25\\\" y=\\\"7\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"switch_camera\": {\n    \"name\": \"switch_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM15 15.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zm-5-7H9V8.5L5.5 12 9 15.5V13h6v2.5l3.5-3.5L15 8.5z\\\"></path>\"\n      }\n    }\n  },\n  \"view_comfy\": {\n    \"name\": \"view_comfy\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,18h10v-5H10V18z M4,6v5h16V6H4z M4,18h4v-5H4V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2,4v16h20V4H2z M8,18H4v-5h4V18z M20,18H10v-5h10V18z M20,11H4V6h16V11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"3.75\\\" opacity=\\\".3\\\" width=\\\"3.5\\\" x=\\\"3.5\\\" y=\\\"10.75\\\"></rect><rect height=\\\"3.75\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8.5\\\" y=\\\"10.75\\\"></rect><rect height=\\\"3.75\\\" opacity=\\\".3\\\" width=\\\"13\\\" x=\\\"3.5\\\" y=\\\"5.5\\\"></rect><path d=\\\"M2,4v12h16V4H2z M7,14.5H3.5v-3.75H7V14.5z M16.5,14.5h-8v-3.75h8V14.5z M16.5,9.25h-13V5.5h13V9.25z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"audiotrack\": {\n    \"name\": \"audiotrack\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"10\\\" cy=\\\"17\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M10 21c2.21 0 4-1.79 4-4V7h4V3h-6v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"linked_camera\": {\n    \"name\": \"linked_camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 20H4V8h4.05l1.83-2H15V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-2v11zM16 2v1.33c2.58 0 4.66 2.09 4.67 4.66H22C21.99 4.68 19.31 2 16 2zm0 2.67V6c1.11 0 1.99.89 2 1.99h1.33c-.01-1.84-1.49-3.32-3.33-3.32z\\\"></path><path d=\\\"M14.98 10.01c-.13-.09-.26-.18-.39-.26.14.08.27.17.39.26zM17 9c0-.37-.11-.71-.28-1.01-.18-.3-.43-.55-.73-.72C15.7 7.1 15.36 7 15 7V6H9.88L8.05 8H4v12h16V9h-3zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"tag_faces\": {\n    \"name\": \"tag_faces\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_yuan\": {\n    \"name\": \"currency_yuan\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"13.28,12 18,12 18,14 13,14 13,21 11,21 11,14 6,14 6,12 10.72,12 5,3 7.37,3 12,10.29 16.63,3 19,3\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"10.97,10 15.5,3 13.71,3 10,8.74 6.29,3 4.5,3 9.03,10 5.5,10 5.5,11.5 9.25,11.5 9.25,17 10.75,17 10.75,11.5 14.5,11.5 14.5,10\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"receipt_long\": {\n    \"name\": \"receipt_long\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M0,0h24v24H0V0z\\\" fill=\\\"none\\\"></path><g><path d=\\\"M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"10\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"16\\\" y=\\\"10\\\"></rect></g>\"\n      }\n    }\n  },\n  \"20mp\": {\n    \"name\": \"20mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M13,6.5 c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H14c-0.55,0-1-0.45-1-1V6.5z M6.5,9c0-0.55,0.45-1,1-1h2V7h-3V5.5 H10c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H8v1h3v1.5H6.5V9z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5 v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"14.5\\\" y=\\\"7\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H14c-0.55,0-1,0.45-1,1v4C13,11.05,13.45,11.5,14,11.5z M14.5,7H16v3 h-1.5V7z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"21mp\": {\n    \"name\": \"21mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M5,19h14V5H5V19z M13,5.5h3v6h-1.5V7H13V5.5z M13.5,12.5H17c0.55,0,1,0.45,1,1V16c0,0.55-0.45,1-1,1h-2v1.5 h-1.5V12.5z M7.5,9c0-0.55,0.45-1,1-1h2V7h-3V5.5H11c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1H9v1h3v1.5H7.5V9z M6,13.5 c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"14.5,11.5 16,11.5 16,5.5 13,5.5 13,7 14.5,7\\\"></polygon><path d=\\\"M12,10H9V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H7.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H12V10z\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M15,17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5v6H15V17z M15,14h1.5v1.5H15V14z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"euro\": {\n    \"name\": \"euro\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><path d=\\\"M15,18.5c-2.51,0-4.68-1.42-5.76-3.5H15l1-2H8.58c-0.05-0.33-0.08-0.66-0.08-1s0.03-0.67,0.08-1H15l1-2H9.24 C10.32,6.92,12.5,5.5,15,5.5c1.61,0,3.09,0.59,4.23,1.57L21,5.3C19.41,3.87,17.3,3,15,3c-3.92,0-7.24,2.51-8.48,6H3l-1,2h4.06 C6.02,11.33,6,11.66,6,12s0.02,0.67,0.06,1H3l-1,2h4.52c1.24,3.49,4.56,6,8.48,6c2.31,0,4.41-0.87,6-2.3l-1.78-1.77 C18.09,17.91,16.62,18.5,15,18.5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" x=\\\"0\\\"></rect></g><g><g></rect><path d=\\\"M12,15c-1.63,0-3.06-0.79-3.98-2H12l1-2H7.1C7.04,10.68,7,10.34,7,10s0.04-0.68,0.1-1H12l1-2H8.02C8.94,5.79,10.37,5,12,5 c1.38,0,2.63,0.56,3.54,1.46l1.41-1.41C15.68,3.78,13.93,3,12,3C9.21,3,6.81,4.64,5.68,7H3L2,9h3.08C5.03,9.33,5,9.66,5,10 s0.03,0.67,0.08,1H3l-1,2h3.68c1.12,2.36,3.53,4,6.32,4c1.93,0,3.68-0.78,4.95-2.05l-1.41-1.41C14.63,14.44,13.38,15,12,15z\\\"></path></g>\"\n      }\n    }\n  },\n  \"17mp\": {\n    \"name\": \"17mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,5.5 h3.5c0.67,0,1.15,0.65,0.96,1.29L15,11.5h-1.75L14.62,7H12V5.5z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5 c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M13.25,11.5H15l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H12V7h2.62L13.25,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"panorama_vertical\": {\n    \"name\": \"panorama_vertical\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M6.54 4c.77 2.6 1.16 5.28 1.16 8 0 2.72-.39 5.4-1.16 8h10.91c-.77-2.6-1.16-5.28-1.16-8 0-2.72.39-5.4 1.16-8H6.54z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12.04-.11.06-.22.06-.31 0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM17.45 20H6.54c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8z\\\"></path>\"\n      }\n    }\n  },\n  \"landscape\": {\n    \"name\": \"landscape\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 16h3.04l-1.52-2.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.78 11.63l1.25 1.67L14 9.33 19 16h-8.46l-4.01-5.37L1 18h22L14 6l-4.22 5.63zM5 16l1.52-2.03L8.04 16H5z\\\"></path>\"\n      }\n    }\n  },\n  \"crop_portrait\": {\n    \"name\": \"crop_portrait\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"currency_franc\": {\n    \"name\": \"currency_franc\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><polygon points=\\\"18,5 18,3 7,3 7,16 5,16 5,18 7,18 7,21 9,21 9,18 13,18 13,16 9,16 9,13 17,13 17,11 9,11 9,5\\\"></polygon></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><polygon points=\\\"14.5,4.5 14.5,3 6,3 6,13 4.5,13 4.5,14.5 6,14.5 6,17 7.5,17 7.5,14.5 11,14.5 11,13 7.5,13 7.5,10.5 14,10.5 14,9 7.5,9 7.5,4.5\\\"></polygon></g>\"\n      }\n    }\n  },\n  \"filter_1\": {\n    \"name\": \"filter_1\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm5-12h4v10h-2V7h-2V5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14 15h2V5h-4v2h2zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 5v16c0 1.1.9 2 2 2h16v-2H3V5H1z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_4\": {\n    \"name\": \"filter_4\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 3H7v14h14V3zm-4 12h-2v-4h-4V5h2v4h2V5h2v10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 23h16v-2H3V5H1v16c0 1.1.9 2 2 2zm4-4h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM7 3h14v14H7V3zm8 6h-2V5h-2v6h4v4h2V5h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"brush\": {\n    \"name\": \"brush\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 17c0-.55-.45-1-1-1s-1 .45-1 1c0 .74-.19 1.4-.5 1.95.17.03.33.05.5.05 1.1 0 2-.9 2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.75 15l8.96-8.96c.39-.39.39-1.02 0-1.41l-1.34-1.34c-.2-.2-.45-.29-.7-.29s-.51.1-.71.29L9 12.25 11.75 15zM6 21c2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3s-3 1.34-3 3c0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2zm0-4c0-.55.45-1 1-1s1 .45 1 1c0 1.1-.9 2-2 2-.17 0-.33-.02-.5-.05.31-.55.5-1.21.5-1.95z\\\"></path>\"\n      }\n    }\n  },\n  \"30fps_select\": {\n    \"name\": \"30fps_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,4v2h5v2H5v2h4v2H4v2h5c1.1,0,2-0.9,2-2v-1.5C11,9.67,10.83,9,10,9c0.83,0,1-0.67,1-1.5V6c0-1.1-0.9-2-2-2H4z M18,4 c1.1,0,2,0.9,2,2v6c0,1.1-0.9,2-2,2h-3c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2H18z M18,6h-3v6h3V6z M5,22H3v-5h2V22z M9,22H7v-5h2V22 z M13,22h-2v-5h2V22z M21,22h-6v-5h6V22z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"details\": {\n    \"name\": \"details\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,3L2,21h20L12,3z M13,8.92L18.6,19H13V8.92z M11,8.92V19H5.4L11,8.92z\\\"></path>\"\n      }\n    }\n  },\n  \"6mp\": {\n    \"name\": \"6mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"11.5\\\" y=\\\"9\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M10,6.5 c0-0.55,0.45-1,1-1h3.5V7h-3v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H11c-0.55,0-1-0.45-1-1V6.5z M6,13.5c0-0.55,0.45-1,1-1 h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,11.5h2.5c0.55,0,1-0.45,1-1V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H11c-0.55,0-1,0.45-1,1v4C10,11.05,10.45,11.5,11,11.5z M11.5,9H13v1.5h-1.5V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"camera_alt\": {\n    \"name\": \"camera_alt\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.12 4H9.88L8.05 6H4v12h16V6h-4.05l-1.83-2zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h4.05l1.83-2h4.24l1.83 2H20v12zM12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\"></path>\"\n      }\n    }\n  },\n  \"2mp\": {\n    \"name\": \"2mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M10,9 c0-0.55,0.45-1,1-1h2V7h-3V5.5h3.5c0.55,0,1,0.45,1,1V8c0,0.55-0.45,1-1,1h-2v1h3v1.5H10V9z M6,13.5c0-0.55,0.45-1,1-1h4.5 c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10h-3V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H10V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5h4.5V10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"nature_people\": {\n    \"name\": \"nature_people\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"15.17\\\" cy=\\\"9.17\\\" opacity=\\\".3\\\" r=\\\"5\\\"></circle><circle cx=\\\"4.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M15.17 2.17c-3.87 0-7 3.13-7 7 0 3.47 2.52 6.34 5.83 6.89V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88c3.47-.41 6.17-3.36 6.17-6.95 0-3.87-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\\\"></path>\"\n      }\n    }\n  },\n  \"timer_3\": {\n    \"name\": \"timer_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.46 10.8c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29s.22.26.29.42c.06.16.1.32.1.49h1.95c0-.39-.08-.75-.24-1.09-.16-.34-.39-.63-.69-.88-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34s.07.25.07.39c0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24-.17-.11-.3-.26-.41-.44s-.17-.41-.18-.67h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38c-.35-.07-.64-.15-.87-.23s-.41-.16-.55-.25c-.14-.09-.23-.19-.28-.3-.05-.11-.08-.24-.08-.39s.03-.28.09-.41c.06-.13.15-.25.27-.34zm-8.34 5.71c-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76-.16-.24-.36-.46-.62-.65-.25-.19-.56-.35-.93-.48.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49z\\\"></path>\"\n      }\n    }\n  },\n  \"style\": {\n    \"name\": \"style\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.22 4.75L7.87 7.79l4.96 11.96 7.35-3.05-4.96-11.95zM11 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.87 11.18l-2.43 5.86c-.41 1.02.08 2.19 1.09 2.61l1.34.56v-9.03zm18.16 4.77L17.07 3.98c-.31-.75-1.04-1.21-1.81-1.23-.26 0-.53.04-.79.15L7.1 5.95c-.75.31-1.21 1.03-1.23 1.8-.01.27.04.54.15.8l4.96 11.97c.31.76 1.05 1.22 1.83 1.23.26 0 .52-.05.77-.15l7.36-3.05c1.02-.42 1.51-1.59 1.09-2.6zm-9.2 3.8L7.87 7.79l7.35-3.04h.01l4.95 11.95-7.35 3.05z\\\"></path><circle cx=\\\"11\\\" cy=\\\"9\\\" r=\\\"1\\\"></circle><path d=\\\"M9.33 21.75l-3.45-8.34v6.34c0 1.1.9 2 2 2h1.45z\\\"></path>\"\n      }\n    }\n  },\n  \"7mp\": {\n    \"name\": \"7mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M10,5.5 h3.5c0.67,0,1.15,0.65,0.96,1.29L13,11.5h-1.75L12.62,7H10V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3 H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11.25,11.5H13l1.46-4.71c0.19-0.64-0.29-1.29-0.96-1.29H10V7h2.62L11.25,11.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"motion_photos_on\": {\n    \"name\": \"motion_photos_on\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M2.88,7.88l1.54,1.54C4.15,10.23,4,11.1,4,12c0,4.41,3.59,8,8,8s8-3.59,8-8s-3.59-8-8-8c-0.9,0-1.77,0.15-2.58,0.42 L7.89,2.89C9.15,2.32,10.54,2,12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12C2,10.53,2.32,9.14,2.88,7.88z M7,5.5 C7,6.33,6.33,7,5.5,7S4,6.33,4,5.5S4.67,4,5.5,4S7,4.67,7,5.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M3.5,4.75c0-0.69,0.56-1.25,1.25-1.25S6,4.06,6,4.75S5.44,6,4.75,6S3.5,5.44,3.5,4.75z M10,2C8.83,2,7.72,2.26,6.71,2.71 l1.15,1.15C8.54,3.63,9.25,3.5,10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10c0-0.75,0.13-1.46,0.37-2.13 L2.71,6.71C2.26,7.72,2,8.83,2,10c0,4.42,3.58,8,8,8s8-3.58,8-8C18,5.58,14.42,2,10,2z\\\"></path>\"\n      }\n    }\n  },\n  \"hdr_strong\": {\n    \"name\": \"hdr_strong\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 8c-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=\\\"M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zM5 16c2.21 0 4-1.79 4-4S7.21 8 5 8s-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"auto_awesome\": {\n    \"name\": \"auto_awesome\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"9.99,11.01 9,8.83 8.01,11.01 5.83,12 8.01,12.99 9,15.17 9.99,12.99 12.17,12\\\"></polygon><polygon points=\\\"19,9 20.25,6.25 23,5 20.25,3.75 19,1 17.75,3.75 15,5 17.75,6.25\\\"></polygon><polygon points=\\\"19,15 17.75,17.75 15,19 17.75,20.25 19,23 20.25,20.25 23,19 20.25,17.75\\\"></polygon><path d=\\\"M11.5,9.5L9,4L6.5,9.5L1,12l5.5,2.5L9,20l2.5-5.5L17,12L11.5,9.5z M9.99,12.99L9,15.17l-0.99-2.18L5.83,12l2.18-0.99 L9,8.83l0.99,2.18L12.17,12L9.99,12.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"crop_rotate\": {\n    \"name\": \"crop_rotate\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.95 24c.23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11zm.1-24c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 6h-6v2h6v6h2V8c0-1.11-.9-2-2-2zm2 12h2v-2H8V4H6v2H4v2h2v8c0 1.1.89 2 2 2h8v2h2v-2z\\\"></path>\"\n      }\n    }\n  },\n  \"wb_sunny\": {\n    \"name\": \"wb_sunny\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 7.5c-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=\\\"M5.34 6.25l1.42-1.41-1.8-1.79-1.41 1.41zM1 10.5h3v2H1zM11 .55h2V3.5h-2zm7.66 5.705l-1.41-1.407 1.79-1.79 1.406 1.41zM17.24 18.16l1.79 1.8 1.41-1.41-1.8-1.79zM20 10.5h3v2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-1 4h2v2.95h-2zm-7.45-.96l1.41 1.41 1.79-1.8-1.41-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"photo_size_select_large\": {\n    \"name\": \"photo_size_select_large\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 19h2v2h-2zM1 19c0 1.1.9 2 2 2h12V11H1v8zm4.5-3.21l1.79 2.15 2.5-3.22L13 19H3l2.5-3.21zM17 3h2v2h-2zm4 8h2v2h-2zm0 4h2v2h-2zM3 3C2 3 1 4 1 5h2V3zm18 4h2v2h-2zm-8-4h2v2h-2zm8 18c1 0 2-1 2-2h-2v2zM1 7h2v2H1zm8-4h2v2H9zM5 3h2v2H5zm16 0v2h2c0-1-1-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_b_and_w\": {\n    \"name\": \"filter_b_and_w\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5h-7v6l7 8zm-7 14v-8l-7 8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9 0H5l7-8V5h7v14l-7-8v8z\\\"></path>\"\n      }\n    }\n  },\n  \"loupe\": {\n    \"name\": \"loupe\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zm-5-9h4V7h2v4h4v2h-4v4h-2v-4H7v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 17h2v-4h4v-2h-4V7h-2v4H7v2h4zm1 5h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10S2 6.49 2 12s4.49 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z\\\"></path>\"\n      }\n    }\n  },\n  \"image\": {\n    \"name\": \"image\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm4-5.86l2.14 2.58 3-3.87L18 17H6l3-3.86z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-4.86-7.14l-3 3.86L9 13.14 6 17h12z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_2\": {\n    \"name\": \"filter_2\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 17h14V3H7v14zm4-6c0-1.11.9-2 2-2h2V7h-4V5h4c1.1 0 2 .89 2 2v2c0 1.11-.9 2-2 2h-2v2h4v2h-6v-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 13h-4v-2h2c1.1 0 2-.89 2-2V7c0-1.11-.9-2-2-2h-4v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2zm4-12H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM1 21c0 1.1.9 2 2 2h16v-2H3V5H1v16z\\\"></path>\"\n      }\n    }\n  },\n  \"19mp\": {\n    \"name\": \"19mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,10h3 V9h-2c-0.55,0-1-0.45-1-1V6.5c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H12V10z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M16.5,10.5v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1V8c0,0.55,0.45,1,1,1h2v1h-3v1.5h3.5 C16.05,11.5,16.5,11.05,16.5,10.5z M15,8h-1.5V6.5H15V8z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"leak_add\": {\n    \"name\": \"leak_add\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 21h3v-3c-1.66 0-3 1.34-3 3zM3 14c6.08 0 11-4.93 11-11h-2c0 4.97-4.03 9-9 9v2zm11 7h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7zM3 10c3.87 0 7-3.13 7-7H8c0 2.76-2.24 5-5 5v2zm7 11h2c0-4.97 4.03-9 9-9v-2c-6.07 0-11 4.93-11 11zM3 3v3c1.66 0 3-1.34 3-3H3z\\\"></path>\"\n      }\n    }\n  },\n  \"23mp\": {\n    \"name\": \"23mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M13,10h3 V9h-2V8h2V7h-3V5.5h3.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H13V10z M6.5,9c0-0.55,0.45-1,1-1h2V7h-3V5.5H10c0.55,0,1,0.45,1,1 V8c0,0.55-0.45,1-1,1H8v1h3v1.5H6.5V9z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,12.5v6H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1H13.5z M16.5,15.5H15V14h1.5V15.5z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M11,10H8V9h2c0.55,0,1-0.45,1-1V6.5c0-0.55-0.45-1-1-1H6.5V7h3v1h-2c-0.55,0-1,0.45-1,1v2.5H11V10z\\\"></path><path d=\\\"M17.5,10.5v-4c0-0.55-0.45-1-1-1H13V7h3v1h-2v1h2v1h-3v1.5h3.5C17.05,11.5,17.5,11.05,17.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"looks_two\": {\n    \"name\": \"looks_two\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 5H5v14h14V5zm-4 6c0 1.11-.9 2-2 2h-2v2h4v2H9v-4c0-1.11.9-2 2-2h2V9H9V7h4c1.1 0 2 .89 2 2v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M5 21h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2zM5 5h14v14H5V5zm8 2H9v2h4v2h-2c-1.1 0-2 .89-2 2v4h6v-2h-4v-2h2c1.1 0 2-.89 2-2V9c0-1.11-.9-2-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"dehaze\": {\n    \"name\": \"dehaze\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z\\\"></path>\"\n      }\n    }\n  },\n  \"camera\": {\n    \"name\": \"camera\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.9 19.91c.36.05.72.09 1.1.09 2.18 0 4.16-.88 5.61-2.3L14.89 13l-3.99 6.91zm-1.04-.21l2.71-4.7H4.59c.93 2.28 2.87 4.03 5.27 4.7zM8.54 12L5.7 7.09C4.64 8.45 4 10.15 4 12c0 .69.1 1.36.26 2h5.43l-1.15-2zm9.76 4.91C19.36 15.55 20 13.85 20 12c0-.69-.1-1.36-.26-2h-5.43l3.99 6.91zM13.73 9h5.68c-.93-2.28-2.88-4.04-5.28-4.7L11.42 9h2.31zm-3.46 0l2.83-4.92C12.74 4.03 12.37 4 12 4c-2.18 0-4.16.88-5.6 2.3L9.12 11l1.15-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 22c5.52 0 10-4.48 10-10 0-4.75-3.31-8.72-7.75-9.74l-.08-.04-.01.02C13.46 2.09 12.74 2 12 2 6.48 2 2 6.48 2 12s4.48 10 10 10zm0-2c-.38 0-.74-.04-1.1-.09L14.89 13l2.72 4.7C16.16 19.12 14.18 20 12 20zm8-8c0 1.85-.64 3.55-1.7 4.91l-4-6.91h5.43c.17.64.27 1.31.27 2zm-.59-3h-7.99l2.71-4.7c2.4.66 4.35 2.42 5.28 4.7zM12 4c.37 0 .74.03 1.1.08L10.27 9l-1.15 2L6.4 6.3C7.84 4.88 9.82 4 12 4zm-8 8c0-1.85.64-3.55 1.7-4.91L8.54 12l1.15 2H4.26C4.1 13.36 4 12.69 4 12zm6.27 3h2.3l-2.71 4.7c-2.4-.67-4.35-2.42-5.28-4.7h5.69z\\\"></path>\"\n      }\n    }\n  },\n  \"18mp\": {\n    \"name\": \"18mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"6.5\\\"></rect><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"13.5\\\" y=\\\"9\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M12,6.5 c0-0.55,0.45-1,1-1h2.5c0.55,0,1,0.45,1,1v4c0,0.55-0.45,1-1,1H13c-0.55,0-1-0.45-1-1V6.5z M7,5.5h3v6H8.5V7H7V5.5z M6,13.5 c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><polygon points=\\\"8.5,11.5 10,11.5 10,5.5 7,5.5 7,7 8.5,7\\\"></polygon><path d=\\\"M13,11.5h2.5c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1H13c-0.55,0-1,0.45-1,1v4C12,11.05,12.45,11.5,13,11.5z M13.5,6.5H15 V8h-1.5V6.5z M13.5,9H15v1.5h-1.5V9z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"5mp\": {\n    \"name\": \"5mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"14\\\"></rect><path d=\\\"M5,19h14V5H5V19z M18,13.5V16c0,0.55-0.45,1-1,1h-2v1.5h-1.5v-6H17C17.55,12.5,18,12.95,18,13.5z M10,10h3 V9h-3V5.5h4.5V7h-3v1h2c0.55,0,1,0.45,1,1v1.5c0,0.55-0.45,1-1,1H10V10z M6,13.5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1v5H11V14 h-1v3H8.5v-3h-1v4.5H6V13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.5,14h1v3H10v-3h1v4.5h1.5v-5c0-0.55-0.45-1-1-1H7c-0.55,0-1,0.45-1,1v5h1.5V14z\\\"></path><path d=\\\"M13.5,18.5H15V17h2c0.55,0,1-0.45,1-1v-2.5c0-0.55-0.45-1-1-1h-3.5V18.5z M15,14h1.5v1.5H15V14z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><path d=\\\"M14.5,10.5V9c0-0.55-0.45-1-1-1h-2V7h3V5.5H10V9h3v1h-3v1.5h3.5C14.05,11.5,14.5,11.05,14.5,10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"picture_as_pdf\": {\n    \"name\": \"picture_as_pdf\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z\\\"></path><path d=\\\"M10 9h1v1h-1zm4 0h1v3h-1zm-6 7h12V4H8v12zm9-8h2v1h-1v1h1v1h-1v2h-1V8zm-4 0h2c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1h-2V8zM9 8h2c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v2H9V8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12zm-4-4V9c0-.55-.45-1-1-1h-2v5h2c.55 0 1-.45 1-1zm-2-3h1v3h-1V9zm4 2h1v-1h-1V9h1V8h-2v5h1zm-8 0h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9v5h1v-2zm0-2h1v1h-1V9z\\\"></path>\"\n      }\n    }\n  },\n  \"view_compact\": {\n    \"name\": \"view_compact\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,13.25h2.5v-2.5H4V13.25z M4,18h2.5v-2.5H4V18z M8.5,8.5H11V6H8.5V8.5z M17.5,18H20v-2.5h-2.5V18z M17.5,13.25H20v-2.5h-2.5V13.25z M17.5,6v2.5H20V6H17.5z M13,8.5h2.5V6H13V8.5z M8.5,13.25H11v-2.5H8.5V13.25z M8.5,18H11v-2.5 H8.5V18z M4,8.5h2.5V6H4V8.5z M13,13.25h2.5v-2.5H13V13.25z M13,18h2.5v-2.5H13V18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2,4v16h20V4H2z M6.5,18H4v-2.5h2.5V18z M6.5,13.25H4v-2.5h2.5V13.25z M6.5,8.5H4V6h2.5V8.5z M11,18H8.5v-2.5H11V18z M11,13.25H8.5v-2.5H11V13.25z M11,8.5H8.5V6H11V8.5z M15.5,18H13v-2.5h2.5V18z M15.5,13.25H13v-2.5h2.5V13.25z M15.5,8.5H13V6 h2.5V8.5z M20,18h-2.5v-2.5H20V18z M20,13.25h-2.5v-2.5H20V13.25z M20,8.5h-2.5V6H20V8.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"5.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"12.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"9\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"7\\\" y=\\\"5.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"3.5\\\" y=\\\"9\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"12.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"9\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"5.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"14\\\" y=\\\"12.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"5.5\\\"></rect><rect height=\\\"2\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"10.5\\\" y=\\\"9\\\"></rect><path d=\\\"M2,4v12h15.5V4H2z M5.5,14.5h-2v-2h2V14.5z M5.5,11h-2V9h2V11z M5.5,7.5h-2v-2h2V7.5z M9,14.5H7v-2h2V14.5z M9,11H7V9h2 V11z M9,7.5H7v-2h2V7.5z M12.5,14.5h-2v-2h2V14.5z M12.5,11h-2V9h2V11z M12.5,7.5h-2v-2h2V7.5z M16,14.5h-2v-2h2V14.5z M16,11h-2 V9h2V11z M16,7.5h-2v-2h2V7.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bedtime\": {\n    \"name\": \"bedtime\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M9.27 4.49C6.2 5.6 4 8.55 4 12c0 4.41 3.59 8 8 8 1.81 0 3.54-.62 4.93-1.71-3.91-1.39-9.29-6.26-7.66-13.8z\\\"></path></g><path d=\\\"M12.34 2.02c-.12 0-.23-.01-.35-.01C6.4 2.01 2 6.54 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96zM12 20c-4.41 0-8-3.59-8-8 0-3.45 2.2-6.4 5.27-7.51-1.63 7.54 3.75 12.41 7.66 13.8C15.54 19.38 13.81 20 12 20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M8.9 10.6c-1.17-2.11-1.49-4.51-.95-6.77C5.37 4.69 3.5 7.13 3.5 10c0 3.59 2.92 6.5 6.5 6.5 1.53 0 3-.55 4.15-1.51-2.2-.74-4.07-2.28-5.25-4.39z\\\"></path></g><path d=\\\"M10.28 2H10c-4.47 0-8 3.62-8 8 0 4.42 3.58 8 8 8 2.97 0 5.55-1.62 6.93-4.02-6.01-.2-9.67-6.74-6.65-11.98zM10 16.5c-3.59 0-6.5-2.92-6.5-6.5 0-2.87 1.87-5.31 4.45-6.17-.54 2.26-.22 4.66.95 6.77 1.18 2.12 3.05 3.65 5.25 4.39-1.15.96-2.61 1.51-4.15 1.51z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"music_note\": {\n    \"name\": \"music_note\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"10.01\\\" cy=\\\"17\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M12 3l.01 10.55c-.59-.34-1.27-.55-2-.55C7.79 13 6 14.79 6 17s1.79 4 4.01 4S14 19.21 14 17V7h4V3h-6zm-1.99 16c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"grid_off\": {\n    \"name\": \"grid_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 14v-4h-4v2.89L17.11 14zm-10-1.45V14h1.45zM14 10h-.89l.89.89zm5.11 6l.89.89V16zM8 4h-.89l.89.89zm6 4V4h-4v2.89L11.11 8zm2-4h4v4h-4zm-6 12v4h4v-3.45l-.55-.55zm-6-6v4h4v-3.45L7.45 10zm12 10h1.45L16 18.55zM4 16h4v4H4zm0-9.45V8h1.45z\\\" opacity=\\\".3\\\"></path><path d=\\\"M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V4c0-1.1-.9-2-2-2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V20c0 1.1.9 2 2 2h15.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z\\\"></path>\"\n      }\n    }\n  },\n  \"center_focus_weak\": {\n    \"name\": \"center_focus_weak\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 19c0 1.1.9 2 2 2h4v-2H5v-4H3v4zM3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm9 3c-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 2zm9-9c0-1.1-.9-2-2-2h-4v2h4v4h2V5zm-2 14h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z\\\"></path>\"\n      }\n    }\n  },\n  \"colorize\": {\n    \"name\": \"colorize\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.896 9.023l-.92-.92L17.67 5.41l.92.92z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12c.4-.4.4-1.03.01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19zm8.98-9.97l-.93-.93 2.69-2.69.92.92-2.68 2.7z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_6\": {\n    \"name\": \"brightness_6\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 9.52V6h-3.52L12 3.52 9.52 6H6v3.52L3.52 12 6 14.48V18h3.52L12 20.48 14.48 18H18v-3.52L20.48 12 18 9.52zm-6 7.98v-11c3.03 0 5.5 2.47 5.5 5.5s-2.47 5.5-5.5 5.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5v11c3.03 0 5.5-2.47 5.5-5.5S15.03 6.5 12 6.5z\\\"></path>\"\n      }\n    }\n  },\n  \"brightness_3\": {\n    \"name\": \"brightness_3\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.7 4.91c1.46 2 2.3 4.46 2.3 7.09s-.84 5.09-2.3 7.09C15.25 17.76 17 15.08 17 12s-1.75-5.76-4.3-7.09z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2zm3.7 17.09c1.46-2 2.3-4.46 2.3-7.09s-.84-5.09-2.3-7.09C15.25 6.24 17 8.92 17 12s-1.75 5.76-4.3 7.09z\\\"></path>\"\n      }\n    }\n  },\n  \"panorama_vertical_select\": {\n    \"name\": \"panorama_vertical_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M18.5,12c0-3.89,0.84-6.95,1.43-8.69C20.15,2.67,19.67,2,18.98,2L5,2C4.32,2,3.84,2.66,4.05,3.31C4.74,5.36,5.5,8.1,5.5,12 c0,3.87-0.76,6.66-1.45,8.69C3.84,21.34,4.32,22,5,22h14c0.68,0,1.17-0.66,0.95-1.31C19.27,18.66,18.5,15.86,18.5,12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"panorama_photosphere_select\": {\n    \"name\": \"panorama_photosphere_select\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21.95,8.15c-0.29-0.16-0.61-0.31-0.93-0.46C19.4,4.33,15.98,2,12,2C8.02,2,4.6,4.33,2.99,7.68 c-0.33,0.15-0.64,0.3-0.93,0.46C1.41,8.5,1,9.17,1,9.91v4.18c0,0.74,0.41,1.41,1.05,1.77c0.29,0.16,0.61,0.31,0.93,0.46 C4.6,19.67,8.02,22,12,22c3.98,0,7.4-2.33,9.01-5.68c0.33-0.15,0.64-0.3,0.93-0.46C22.59,15.5,23,14.83,23,14.09V9.91 C23,9.17,22.59,8.5,21.95,8.15z M12,4c2.37,0,4.49,1.04,5.95,2.68C16.17,6.25,14.15,6,12,6C9.85,6,7.83,6.25,6.05,6.68 C7.51,5.04,9.63,4,12,4z M12,20c-2.37,0-4.49-1.04-5.95-2.68C7.83,17.75,9.85,18,12,18s4.17-0.25,5.95-0.68 C16.49,18.96,14.37,20,12,20z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"currency_ruble\": {\n    \"name\": \"currency_ruble\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M13.5,3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04,0,5.5-2.46,5.5-5.5C19,5.46,16.54,3,13.5,3z M13.5,12H9V5h4.5 C15.43,5,17,6.57,17,8.5S15.43,12,13.5,12z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M11.25,3H6v7H4.5v1.5H6V13H4.5v1.5H6V17h1.5v-2.5H11V13H7.5v-1.5h3.75c2.35,0,4.25-1.9,4.25-4.25C15.5,4.9,13.6,3,11.25,3z M11.25,10H7.5V4.5h3.75C12.77,4.5,14,5.73,14,7.25S12.77,10,11.25,10z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mp\": {\n    \"name\": \"mp\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"1.5\\\" opacity=\\\".3\\\" width=\\\"1.5\\\" x=\\\"15\\\" y=\\\"10.5\\\"></rect><path d=\\\"M5,5l0,14l14,0l0-14H5z M12.5,15H11v-4.5h-1v3H8.5v-3h-1V15H6v-5c0-0.55,0.45-1,1-1h4.5c0.55,0,1,0.45,1,1 V15z M18,12.5c0,0.55-0.45,1-1,1h-2V15h-1.5V9H17c0.55,0,1,0.45,1,1V12.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,9h-3.5v6H15v-1.5h2c0.55,0,1-0.45,1-1V10C18,9.45,17.55,9,17,9z M16.5,12H15v-1.5h1.5V12z\\\"></path><path d=\\\"M11.5,9H7c-0.55,0-1,0.45-1,1v5h1.5v-4.5h1v3H10v-3h1V15h1.5v-5C12.5,9.45,12.05,9,11.5,9z\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5V19c0,1.1,0.9,2,2,2H19c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M5,19L5,5h14l0,14L5,19z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"bedtime_off\": {\n    \"name\": \"bedtime_off\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M7.95 5.13 9.03 6.2c.05-.55.12-1.12.24-1.71-.46.17-.9.39-1.32.64z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"M5.13 7.96C4.42 9.15 4 10.52 4 12c0 4.41 3.59 8 8 8 1.45 0 2.84-.4 4.05-1.12L5.13 7.96z\\\"></path></g><path d=\\\"M9.27 4.49c-.13.59-.2 1.15-.24 1.71l2.05 2.05c-.27-2.05.1-4.22 1.26-6.23-.12 0-.23-.01-.35-.01-2.05 0-3.93.61-5.5 1.65l1.46 1.46c.42-.24.86-.46 1.32-.63zM2.81 2.81 1.39 4.22l2.27 2.27C2.61 8.07 2 9.97 2 12c0 5.52 4.48 10 10 10 2.04 0 3.92-.63 5.5-1.67l2.28 2.28 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.42-2.85 1.13-4.04l10.92 10.92C14.84 19.6 13.45 20 12 20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M4.48 6.6c-.61.99-.98 2.15-.98 3.4 0 3.59 2.92 6.5 6.5 6.5 1.22 0 2.39-.36 3.39-.98L4.48 6.6z\\\"></path></g><g opacity=\\\".3\\\"><path d=\\\"m6.6 4.48 1.1 1.1c.03-.58.11-1.17.25-1.75-.48.16-.92.39-1.35.65z\\\"></path></g><path d=\\\"M7.95 3.83c-.14.58-.22 1.17-.24 1.76L9.3 7.18c-.26-1.7.01-3.5.98-5.18H10c-1.68 0-3.23.51-4.5 1.38l1.1 1.1c.43-.26.87-.49 1.35-.65zm-5.02-.9L1.87 3.99 3.38 5.5C2.51 6.79 2 8.34 2 10c0 4.42 3.58 8 8 8 1.67 0 3.2-.52 4.48-1.39l1.53 1.53 1.06-1.06L2.93 2.93zM10 16.5c-3.59 0-6.5-2.92-6.5-6.5 0-1.25.37-2.4.98-3.39l8.92 8.92c-1.01.61-2.18.97-3.4.97z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"photo_library\": {\n    \"name\": \"photo_library\",\n    \"keywords\": [\n      \"image\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 16h12V4H8v12zm3.5-4.33l1.69 2.26 2.48-3.09L19 15H9l2.5-3.33z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-2 0H8V4h12v12zm-4.33-5.17l-2.48 3.09-1.69-2.25L9 15h10zM4 22h14v-2H4V6H2v14c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"reply_all\": {\n    \"name\": \"reply_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"markunread\": {\n    \"name\": \"markunread\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6H4l8 5zM4 8v10h16V8l-8 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"mail\": {\n    \"name\": \"mail\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6H4l8 4.99zM4 8v10h16V8l-8 5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2l-8 4.99L4 6h16zm0 12H4V8l8 5 8-5v10z\\\"></path>\"\n      }\n    }\n  },\n  \"biotech\": {\n    \"name\": \"biotech\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"5\\\" opacity=\\\".3\\\" transform=\\\"matrix(0.9397 -0.342 0.342 0.9397 -1.6091 4.9556)\\\" width=\\\"1\\\" x=\\\"12.75\\\" y=\\\"4.54\\\"></rect><circle cx=\\\"10.5\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M7,19c-1.1,0-2,0.9-2,2h14c0-1.1-0.9-2-2-2h-4v-2h3c1.1,0,2-0.9,2-2h-8c-1.66,0-3-1.34-3-3c0-1.09,0.59-2.04,1.47-2.57 c0.41,0.59,1.06,1,1.83,1.06c0.7,0.06,1.36-0.19,1.85-0.62l0.59,1.61l0.94-0.34l0.34,0.94l1.88-0.68l-0.34-0.94l0.94-0.34 L13.76,2.6l-0.94,0.34L12.48,2L10.6,2.68l0.34,0.94L10,3.97l0.56,1.55C9.39,5.48,8.37,6.27,8.08,7.38C6.27,8.14,5,9.92,5,12 c0,2.76,2.24,5,5,5v2H7z M12.86,4.52l1.71,4.7l-0.94,0.34l-1.71-4.7L12.86,4.52z M10.5,7c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1 c-0.55,0-1-0.45-1-1C9.5,7.45,9.95,7,10.5,7z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M10,6.5c0,0.16-0.03,0.32-0.08,0.47l0.44,1.2l0.94-0.34l-1.16-3.18L9.2,4.99l0.09,0.23 C9.71,5.49,10,5.96,10,6.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"8.5\\\" cy=\\\"6.5\\\" opacity=\\\".3\\\" r=\\\".5\\\"></circle><path d=\\\"M6,15c-0.55,0-1,0.45-1,1h10c0-0.55-0.45-1-1-1h-4v-2h3c0.55,0,1-0.45,1-1H8.47v0C7.11,11.98,6,10.87,6,9.5 c0-0.93,0.51-1.73,1.26-2.16C7.53,7.74,7.98,8,8.5,8c0.24,0,0.47-0.06,0.67-0.16l0.59,1.62l0.93-0.34l0.33,0.88l0.94-0.34 l-0.33-0.88l0.95-0.34l-1.84-5.06L9.8,3.71L9.47,2.83L8.53,3.17l0.32,0.88L7.92,4.39l0.24,0.65c-0.61,0.15-1.07,0.66-1.14,1.3 C5.83,6.9,5,8.1,5,9.5c0,1.76,1.31,3.2,3,3.45V15H6z M10.14,4.65l1.16,3.18l-0.94,0.34l-0.44-1.2C9.97,6.82,10,6.66,10,6.5 c0-0.54-0.29-1.01-0.72-1.27L9.2,4.99L10.14,4.65z M8.5,6C8.78,6,9,6.22,9,6.5S8.78,7,8.5,7S8,6.78,8,6.5S8.22,6,8.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"weekend\": {\n    \"name\": \"weekend\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 11c-.55 0-1 .45-1 1v4H4v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zM6 14h12v-2c0-.88.39-1.67 1-2.22V7c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v2.78c.61.55 1 1.34 1 2.22v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 9V7c0-1.65-1.35-3-3-3H6C4.35 4 3 5.35 3 7v2c-1.65 0-3 1.35-3 3v5c0 1.65 1.35 3 3 3h18c1.65 0 3-1.35 3-3v-5c0-1.65-1.35-3-3-3zM5 7c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v2.78c-.61.55-1 1.34-1 2.22v2H6v-2c0-.88-.39-1.67-1-2.22V7zm17 10c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1s1 .45 1 1v4h16v-4c0-.55.45-1 1-1s1 .45 1 1v5z\\\"></path>\"\n      }\n    }\n  },\n  \"attribution\": {\n    \"name\": \"attribution\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 1c.83 0 1.5.67 1.5 1.5S12.83 8 12 8s-1.5-.67-1.5-1.5S11.17 5 12 5zm2.75 9.5h-1.5V19h-2.5v-4.5h-1.5V9.88c0-.92 1.84-1.38 2.75-1.38s2.75.47 2.75 1.38v4.62z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-11.5c-.91 0-2.75.46-2.75 1.38v4.62h1.5V19h2.5v-4.5h1.5V9.88c0-.91-1.84-1.38-2.75-1.38z\\\"></path><circle cx=\\\"12\\\" cy=\\\"6.5\\\" r=\\\"1.5\\\"></circle>\"\n      }\n    }\n  },\n  \"stacked_bar_chart\": {\n    \"name\": \"stacked_bar_chart\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"11\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"9\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"7\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"10\\\"></rect><rect height=\\\"5\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"15\\\"></rect><rect height=\\\"8\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"12\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"12\\\"></rect><rect height=\\\"8\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"6\\\"></rect><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"8\\\"></rect><rect height=\\\"6\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"insights\": {\n    \"name\": \"insights\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z\\\"></path><polygon points=\\\"15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93\\\"></polygon><polygon points=\\\"3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"12.5,8 13.29,6.28 15,5.5 13.29,4.72 12.5,3 11.74,4.72 10,5.5 11.74,6.28\\\"></polygon><polygon points=\\\"4,10 4.4,8.4 6,8 4.4,7.6 4,6 3.6,7.6 2,8 3.6,8.4\\\"></polygon><path d=\\\"M16.5,6c-1.07,0-1.84,1.12-1.35,2.14l-3.01,3.01c-0.52-0.25-0.99-0.14-1.29,0l-1.01-1.01C9.94,9.95,10,9.73,10,9.5 C10,8.67,9.33,8,8.5,8S7,8.67,7,9.5c0,0.23,0.06,0.45,0.15,0.64l-3.01,3.01C3.95,13.06,3.73,13,3.5,13C2.67,13,2,13.67,2,14.5 S2.67,16,3.5,16S5,15.33,5,14.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01c0.52,0.25,0.99,0.14,1.29,0l1.01,1.01 C10.06,12.05,10,12.27,10,12.5c0,0.83,0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5c0-0.23-0.06-0.45-0.15-0.64l3.01-3.01 C16.89,9.35,18,8.56,18,7.5C18,6.67,17.33,6,16.5,6z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"upcoming\": {\n    \"name\": \"upcoming\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M12,17c-2.04,0-3.81-1.24-4.58-3H4v5h16v-5h-3.42C15.81,15.76,14.04,17,12,17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.16,7.26l-1.41-1.41L16.19,9.4l1.41,1.41C17.6,10.81,21.05,7.29,21.16,7.26z\\\"></path><rect height=\\\"5\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"3\\\"></rect><path d=\\\"M20,12h-5c0,1.66-1.34,3-3,3s-3-1.34-3-3H4c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-5 C22,12.9,21.1,12,20,12z M20,19H4v-5h3.42c0.77,1.76,2.54,3,4.58,3s3.81-1.24,4.58-3H20V19z\\\"></path><path d=\\\"M6.4,10.81L7.81,9.4L4.26,5.84L2.84,7.26C2.95,7.29,6.4,10.81,6.4,10.81z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"link_off\": {\n    \"name\": \"link_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4C21.05 15.36 22 13.79 22 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z\\\"></path>\"\n      }\n    }\n  },\n  \"font_download\": {\n    \"name\": \"font_download\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 20h16V4H4v16zm7.07-14.5h1.86l5.11 13h-2.09l-1.14-3H9.17l-1.12 3H5.96l5.11-13zM12 7.98L9.93 13.5h4.14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.17 15.5h5.64l1.14 3h2.09l-5.11-13h-1.86l-5.11 13h2.09l1.12-3zM12 7.98l2.07 5.52H9.93L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_search\": {\n    \"name\": \"content_paste_search\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,16.5c0-3.58,2.92-6.5,6.5-6.5c0.89,0,1.73,0.18,2.5,0.5V5h-2v3H7V5H5v14h5.5 C10.18,18.23,10,17.39,10,16.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.5,19H5V5h2v3h10V5h2v5.5c0.75,0.31,1.42,0.76,2,1.32V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3 H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h6.82C11.27,20.42,10.81,19.75,10.5,19z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1 S11.45,3,12,3z\\\"></path><path d=\\\"M20.3,18.9c0.4-0.7,0.7-1.5,0.7-2.4c0-2.5-2-4.5-4.5-4.5S12,14,12,16.5s2,4.5,4.5,4.5c0.9,0,1.7-0.3,2.4-0.7l2.7,2.7 l1.4-1.4L20.3,18.9z M16.5,19c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5C19,17.9,17.9,19,16.5,19z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.94,15.88c0.35-0.54,0.56-1.19,0.56-1.88c0-1.93-1.57-3.5-3.5-3.5s-3.5,1.57-3.5,3.5s1.57,3.5,3.5,3.5 c0.69,0,1.34-0.21,1.88-0.56L17.94,19L19,17.94L16.94,15.88z M14,16c-1.1,0-2-0.9-2-2c0-0.31,0.07-0.61,0.2-0.87 C12.52,12.46,13.21,12,14,12c1.1,0,2,0.9,2,2S15.1,16,14,16z\\\"></path><path d=\\\"M9,14c0-2.76,2.24-5,5-5c0.53,0,1.02,0.1,1.5,0.26V4.5H14V7H6V4.5H4.5v11h4.76C9.1,15.02,9,14.53,9,14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.26,15.5H4.5v-11H6V7h8V4.5h1.5v4.76c0.55,0.17,1.05,0.43,1.5,0.77V4.5C17,3.67,16.33,3,15.5,3h-3.57 c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h5.53 C9.69,16.55,9.43,16.05,9.26,15.5z M10,3c0.41,0,0.75,0.33,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75 C9.25,3.33,9.59,3,10,3z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"remove_circle_outline\": {\n    \"name\": \"remove_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"ballot\": {\n    \"name\": \"ballot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 14h3v3H7zm0-7h3v3H7zM5 19h14V5H5v14zm8-11.5h5v2h-5v-2zm0 7h5v2h-5v-2zM6 6h5v5H6V6zm0 7h5v5H6v-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13 7.5h5v2h-5zm0 7h5v2h-5zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM11 6H6v5h5V6zm-1 4H7V7h3v3zm1 3H6v5h5v-5zm-1 4H7v-3h3v3z\\\"></path>\"\n      }\n    }\n  },\n  \"outlined_flag\": {\n    \"name\": \"outlined_flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z\\\"></path>\"\n      }\n    }\n  },\n  \"text_format\": {\n    \"name\": \"text_format\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z\\\"></path>\"\n      }\n    }\n  },\n  \"tag\": {\n    \"name\": \"tag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M20,10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4H20z M14,14h-4v-4h4V14z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add_circle_outline\": {\n    \"name\": \"add_circle_outline\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"link\": {\n    \"name\": \"link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z\\\" opacity=\\\".87\\\"></path>\"\n      }\n    }\n  },\n  \"square_foot\": {\n    \"name\": \"square_foot\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"7,17 12.76,17 7,11.24\\\"></polygon><g><path d=\\\"M17.66,17.66l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06l-0.71-0.71l1.06-1.06l-1.94-1.94l-1.06,1.06 l-0.71-0.71l1.06-1.06L9.7,9.7l-1.06,1.06l-0.71-0.71l1.06-1.06L7.05,7.05L5.99,8.11L5.28,7.4l1.06-1.06L4,4v14c0,1.1,0.9,2,2,2 h14L17.66,17.66z M7,17v-5.76L12.76,17H7z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"6,8.83 6,14 11.17,14\\\"></polygon><g><path d=\\\"M14.24,14.24l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71l-0.35-0.35l0.71-0.71l-1.68-1.68l-0.71,0.71 l-0.35-0.35l0.71-0.71L8.14,8.14L7.44,8.85L7.08,8.5l0.71-0.71L6.11,6.11L5.4,6.82L5.05,6.46l0.71-0.71L4,4v10.5 C4,15.33,4.67,16,5.5,16H16L14.24,14.24z M6,14V8.83L11.17,14H6z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"next_week\": {\n    \"name\": \"next_week\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 20h16V9H4v11zm6-8.5l1-1 4 4-4 4-1-1 3-3-3-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 18.5l4-4-4-4-1 1 3 3-3 3zM20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm10 15H4V9h16v11z\\\"></path>\"\n      }\n    }\n  },\n  \"deselect\": {\n    \"name\": \"deselect\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M3,13h2v-2H3V13z M7,21h2v-2H7V21z M13,3h-2v2h2V3z M19,3v2h2C21,3.9,20.1,3,19,3z M5,21v-2H3C3,20.1,3.9,21,5,21z M3,17h2 v-2H3V17z M11,21h2v-2h-2V21z M19,13h2v-2h-2V13z M19,9h2V7h-2V9z M15,5h2V3h-2V5z M7.83,5L7,4.17V3h2v2H7.83z M19.83,17L19,16.17 V15h2v2H19.83z M21.19,21.19L2.81,2.81L1.39,4.22L4.17,7H3v2h2V7.83l2,2V17h7.17l2,2H15v2h2v-1.17l2.78,2.78L21.19,21.19z M9,15 v-3.17L12.17,15H9z M15,12.17V9h-3.17l-2-2H17v7.17L15,12.17z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14,11.88V6H8.12l1.5,1.5h2.88v2.88L14,11.88z M4.5,17v-1.5H3C3,16.33,3.67,17,4.5,17z M3,13.88h1.5v-1.5H3V13.88z M3,10.75h1.5v-1.5H3V10.75z M15.5,10.75H17v-1.5h-1.5V10.75z M15.5,7.62H17v-1.5h-1.5V7.62z M15.5,3v1.5H17 C17,3.67,16.33,3,15.5,3z M12.38,4.5h1.5V3h-1.5V4.5z M9.25,4.5h1.5V3h-1.5V4.5z M6.12,17h1.5v-1.5h-1.5V17z M9.25,17h1.5v-1.5 h-1.5V17z M17.07,17.07L2.93,2.93L1.87,3.99L4,6.12H3v1.5h1.5v-1L6,8.12V14h5.88l1.5,1.5h-1V17h1.5v-1l2.13,2.13L17.07,17.07z M7.62,4.5V3h-1.5v1l0.5,0.5H7.62z M17,13.88v-1.5h-1.5v1l0.5,0.5H17z M10.38,12.5H7.5V9.62L10.38,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"add\": {\n    \"name\": \"add\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list\": {\n    \"name\": \"filter_list\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_vote\": {\n    \"name\": \"how_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14v1H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v4c0 1.1.89 2 1.99 2H19c1.1 0 2-.89 2-2v-4l-3-3zm1 7H5v-1h14v1z\\\"></path><path d=\\\"M12.048 12.905L8.505 9.362l4.95-4.95 3.543 3.543z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19.11 7.25L14.16 2.3c-.38-.4-1.01-.4-1.4-.01L6.39 8.66c-.39.39-.39 1.02 0 1.41l4.95 4.95c.39.39 1.02.39 1.41 0l6.36-6.36c.39-.39.39-1.02 0-1.41zm-7.06 5.65L8.51 9.36l4.95-4.95L17 7.95l-4.95 4.95z\\\"></path>\"\n      }\n    }\n  },\n  \"save_as\": {\n    \"name\": \"save_as\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M16.17,5H5v14h9.4l4.6-4.6V7.83L16.17,5z M12,18c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,18,12,18z M15,10H6V6h9V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,12.4V7l-4-4H5C3.89,3,3,3.9,3,5v14c0,1.1,0.89,2,2,2h7.4l2-2H5V5h11.17L19,7.83v6.57L21,12.4z M15,15 c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3S15,13.34,15,15z M6,6h9v4H6V6z M19.99,16.25l1.77,1.77L16.77,23H15v-1.77L19.99,16.25z M23.25,16.51l-0.85,0.85l-1.77-1.77l0.85-0.85c0.2-0.2,0.51-0.2,0.71,0l1.06,1.06C23.45,16,23.45,16.32,23.25,16.51z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M13.38,4.5H4.5v11h8.47l2.53-2.54V6.62L13.38,4.5z M10,14.75c-1.24,0-2.25-1.01-2.25-2.25 s1.01-2.25,2.25-2.25s2.25,1.01,2.25,2.25S11.24,14.75,10,14.75z M12.5,8.5h-7v-3h7V8.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17,11.46V6l-3-3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17h6.97l1.5-1.5H4.5v-11h8.88l2.12,2.12v6.34L17,11.46z M12.5,8.5h-7v-3h7V8.5z M12.25,12.5c0,1.24-1.01,2.25-2.25,2.25s-2.25-1.01-2.25-2.25s1.01-2.25,2.25-2.25S12.25,11.26,12.25,12.5 z M16.82,13.77l1.41,1.41L14.41,19H13l0-1.41L16.82,13.77z M17.31,13.27l0.63-0.63c0.2-0.2,0.51-0.2,0.71,0l0.71,0.71 c0.2,0.2,0.2,0.51,0,0.71l-0.63,0.63L17.31,13.27z\\\"></path></g>\"\n      }\n    }\n  },\n  \"content_cut\": {\n    \"name\": \"content_cut\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 3l-6 6 2 2 7-7V3zm-9 3c0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64c.23-.5.36-1.05.36-1.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-8.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z\\\"></path>\"\n      }\n    }\n  },\n  \"forward\": {\n    \"name\": \"forward\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 14v1.17L17.17 12 14 8.83V10H6v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 12l-8-8v4H4v8h8v4l8-8zM6 14v-4h8V8.83L17.17 12 14 15.17V14H6z\\\"></path>\"\n      }\n    }\n  },\n  \"how_to_reg\": {\n    \"name\": \"how_to_reg\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"11\\\" cy=\\\"8\\\" opacity=\\\".3\\\" r=\\\"2\\\"></circle><path d=\\\"M5 18h4.99L9 17l.93-.94C7.55 16.33 5.2 17.37 5 18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-1 12H5c.2-.63 2.55-1.67 4.93-1.94h.03l.46-.45L12 14.06c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9l-2-2zm10.6-5.5l-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z\\\"></path>\"\n      }\n    }\n  },\n  \"inbox\": {\n    \"name\": \"inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-5c0 1.1-.9 2-2 2s-2-.9-2-2H5V5h14v9z\\\"></path>\"\n      }\n    }\n  },\n  \"sort\": {\n    \"name\": \"sort\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z\\\"></path>\"\n      }\n    }\n  },\n  \"copy_all\": {\n    \"name\": \"copy_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><rect height=\\\"12\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"9\\\" y=\\\"4\\\"></rect><path d=\\\"M18,2H9C7.9,2,7,2.9,7,4v12c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M18,16H9V4h9V16z M3,15v-2h2v2H3z M3,9.5h2v2H3V9.5z M10,20h2v2h-2V20z M3,18.5v-2h2v2H3z M5,22c-1.1,0-2-0.9-2-2h2V22z M8.5,22h-2v-2h2V22z M13.5,22L13.5,22l0-2h2 v0C15.5,21.1,14.6,22,13.5,22z M5,6L5,6l0,2H3v0C3,6.9,3.9,6,5,6z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><rect height=\\\"10\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"7.5\\\" y=\\\"3.5\\\"></rect><path d=\\\"M15.5,2h-8C6.67,2,6,2.67,6,3.5v10C6,14.33,6.67,15,7.5,15h8c0.83,0,1.5-0.67,1.5-1.5v-10C17,2.67,16.33,2,15.5,2z M15.5,13.5h-8v-10h8V13.5z M3,12v-1.5h1.5V12H3z M3,15v-1.5h1.5V15H3z M9,16.5h1.5V18H9V16.5z M3,7.5h1.5V9H3V7.5z M7.5,18H6v-1.5 h1.5V18z M4.5,18C3.67,18,3,17.33,3,16.5h1.5V18z M4.5,6H3c0-0.83,0.67-1.5,1.5-1.5V6z M13.49,16.5c0,0.83-0.67,1.5-1.5,1.5h0v-1.5 L13.49,16.5L13.49,16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"remove\": {\n    \"name\": \"remove\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 13H5v-2h14v2z\\\"></path>\"\n      }\n    }\n  },\n  \"content_copy\": {\n    \"name\": \"content_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 7h11v14H8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste\": {\n    \"name\": \"content_paste\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 7H7V4H5v16h14V4h-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z\\\"></path>\"\n      }\n    }\n  },\n  \"gesture\": {\n    \"name\": \"gesture\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z\\\"></path>\"\n      }\n    }\n  },\n  \"web_stories\": {\n    \"name\": \"web_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"16\\\" opacity=\\\".3\\\" width=\\\"9\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><path d=\\\"M17,4v16c1.1,0,2-0.9,2-2V6C19,4.9,18.1,4,17,4z\\\"></path><path d=\\\"M13,2H4C2.9,2,2,2.9,2,4v16c0,1.1,0.9,2,2,2h9c1.1,0,2-0.9,2-2V4C15,2.9,14.1,2,13,2z M13,20H4V4h9V20z\\\"></path><path d=\\\"M21,6v12c0.83,0,1.5-0.67,1.5-1.5v-9C22.5,6.67,21.83,6,21,6z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect height=\\\"13\\\" opacity=\\\".3\\\" width=\\\"7.5\\\" x=\\\"3.5\\\" y=\\\"3.5\\\"></rect><path d=\\\"M11,2H3.5C2.67,2,2,2.67,2,3.5v13C2,17.33,2.67,18,3.5,18H11c0.83,0,1.5-0.67,1.5-1.5v-13C12.5,2.67,11.83,2,11,2z M11,16.5H3.5v-13H11V16.5z\\\"></path><path d=\\\"M14,4v12c0.83,0,1.5-0.67,1.5-1.5v-9C15.5,4.67,14.83,4,14,4z\\\"></path><path d=\\\"M17,5v10c0.58-0.21,1-0.76,1-1.41V6.41C18,5.76,17.58,5.21,17,5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"block\": {\n    \"name\": \"block\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"send\": {\n    \"name\": \"send\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 8.25l7.51 1-7.5-3.22zm.01 9.72l7.5-3.22-7.51 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.01 3L2 10l15 2-15 2 .01 7L23 12 2.01 3zM4 8.25V6.03l7.51 3.22-7.51-1zm.01 9.72v-2.22l7.51-1-7.51 3.22z\\\"></path>\"\n      }\n    }\n  },\n  \"stream\": {\n    \"name\": \"stream\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"20\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"4\\\" cy=\\\"12\\\" r=\\\"2\\\"></circle><circle cx=\\\"12\\\" cy=\\\"20\\\" r=\\\"2\\\"></circle><rect height=\\\"2\\\" transform=\\\"matrix(0.7081 -0.7061 0.7061 0.7081 -0.1146 13.9802)\\\" width=\\\"6.22\\\" x=\\\"13.74\\\" y=\\\"6.13\\\"></rect><polygon points=\\\"8.32,9.68 8.63,10 10.05,8.59 6.03,4.55 6.02,4.55 5.71,4.23 4.29,5.64 8.31,9.69\\\"></polygon><polygon points=\\\"15.41,13.94 14,15.35 17.99,19.36 18.34,19.71 19.76,18.3 15.77,14.29\\\"></polygon><polygon points=\\\"8.59,13.95 4.56,17.96 4.24,18.29 5.65,19.7 9.68,15.68 10.01,15.36\\\"></polygon><circle cx=\\\"12\\\" cy=\\\"4\\\" r=\\\"2\\\"></circle></g></g>\"\n      }\n    }\n  },\n  \"move_to_inbox\": {\n    \"name\": \"move_to_inbox\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.01 18c-1.48 0-2.75-.81-3.45-2H5v3h14v-3h-3.55c-.69 1.19-1.97 2-3.44 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 9h-2.55V6h-2.9v3H8l4 4zm3-6H4.99C3.88 3 3 3.9 3 5v14c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-3h3.56c.69 1.19 1.97 2 3.45 2s2.75-.81 3.45-2H19v3zm0-5h-4.99c0 1.1-.9 2-2 2s-2-.9-2-2H5l-.01-9H19v9z\\\"></path>\"\n      }\n    }\n  },\n  \"unarchive\": {\n    \"name\": \"unarchive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V8H5v11zm7-9l4 4h-2.55v3h-2.91v-3H8l4-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.54 5.23l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.83 1H5.42l.82-1zM19 19H5V8h14v11zm-8.45-2h2.9v-3H16l-4-4-4 4h2.55z\\\"></path>\"\n      }\n    }\n  },\n  \"reply\": {\n    \"name\": \"reply\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z\\\"></path>\"\n      }\n    }\n  },\n  \"remove_circle\": {\n    \"name\": \"remove_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9H7v-2h10v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 11h10v2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"push_pin\": {\n    \"name\": \"push_pin\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M14,4h-4v5c0,1.1-0.35,2.14-1,3h6c-0.63-0.84-1-1.88-1-3V4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,12c-1.66,0-3-1.34-3-3V4l1,0c0,0,0,0,0,0c0.55,0,1-0.45,1-1s-0.45-1-1-1H7C6.45,2,6,2.45,6,3s0.45,1,1,1c0,0,0,0,0,0 l1,0v5c0,1.66-1.34,3-3,3v2h5.97v7l1,1l1-1v-7H19L19,12C19,12,19,12,19,12z M9,12c0.65-0.86,1-1.9,1-3V4h4v5c0,1.12,0.37,2.16,1,3 H9z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M12,4H8v4c0,0.77-0.29,1.47-0.77,2h5.53C12.29,9.47,12,8.77,12,8V4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13,8V4h0.5C13.78,4,14,3.78,14,3.5C14,3.22,13.78,3,13.5,3h-7C6.22,3,6,3.22,6,3.5C6,3.78,6.22,4,6.5,4H7v4 c0,1.1-0.9,2-2,2v1h4.5v5.5L10,17l0.5-0.5V11H15v-1C13.9,10,13,9.1,13,8z M7.23,10C7.71,9.47,8,8.77,8,8V4h4v4 c0,0.77,0.29,1.47,0.77,2H7.23z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"inventory\": {\n    \"name\": \"inventory\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M21,11.5l1.5,1.5l-6.99,7L11,15.5l1.5-1.5l3.01,3L21,11.5z\\\"></path><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"17,5 17,8 7,8 7,5 5,5 5,19 11.68,19 8.17,15.5 12.5,11.17 15.51,14.17 19,10.67 19,5\\\"></polygon><path d=\\\"M5,19V5h2v3h10V5h2v5.67l2-2l0,0V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h8.68l-2-2H5z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"drafts\": {\n    \"name\": \"drafts\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 15.36l-8-5.02V18h16l-.01-7.63z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 3.32L19.99 8v.01L12 13 4 8l8-4.68zM4 18v-7.66l8 5.02 7.99-4.99L20 18H4z\\\"></path>\"\n      }\n    }\n  },\n  \"report_off\": {\n    \"name\": \"report_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 9.1L14.9 5H9.1l-.22.22L11 7.33V7h2v2.33l5.78 5.79.22-.22zM6.05 8.04L5 9.1v5.8L9.1 19h5.8l1.05-1.05-9.9-9.91zM13 16c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.1 5h5.8L19 9.1v5.8l-.22.22 1.42 1.41.8-.8V8.27L15.73 3H8.27l-.8.8 1.41 1.42z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M13 7h-2v.33l2 2zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM14.9 19H9.1L5 14.9V9.1l1.05-1.05 9.9 9.9L14.9 19z\\\"></path>\"\n      }\n    }\n  },\n  \"save_alt\": {\n    \"name\": \"save_alt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_off\": {\n    \"name\": \"content_paste_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.83,8H17V5h2v11.17L10.83,8z M5,19V7.83L16.17,19H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22L3,5.83V19c0,1.1,0.9,2,2,2h13.17l1.61,1.61L21.19,21.19z M5,19V7.83L16.17,19H5z M17,8V5 h2v11.17l2,2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5.83l5,5H17z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1 s-1-0.45-1-1S11.45,3,12,3z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M9.12,7H14V4.5h1.5v8.88L9.12,7z M4.5,15.5V6.62l8.88,8.88H4.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.07,17.07L2.93,2.93L1.87,3.99L3,5.12V15.5C3,16.33,3.67,17,4.5,17h10.38l1.13,1.13L17.07,17.07z M4.5,15.5V6.62 l8.88,8.88H4.5z M14,7V4.5h1.5v8.88l1.5,1.5V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5C9.07,1.5,8.29,2.14,8.07,3 H5.12l4,4H14z M10,3c0.41,0,0.75,0.34,0.75,0.75c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.34,9.59,3,10,3z\\\"></path>\"\n      }\n    }\n  },\n  \"create\": {\n    \"name\": \"create\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18.08V19h.92l9.06-9.06-.92-.92z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM5.92 19H5v-.92l9.06-9.06.92.92L5.92 19zM20.71 5.63l-2.34-2.34c-.2-.2-.45-.29-.71-.29s-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41z\\\"></path>\"\n      }\n    }\n  },\n  \"content_paste_go\": {\n    \"name\": \"content_paste_go\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M10,17c0-3.31,2.69-6,6-6h3V5h-2v3H7V5H5v14h5V17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,19H5V5h2v3h10V5h2v6h2V5c0-1.1-0.9-2-2-2h-4.18C14.4,1.84,13.3,1,12,1S9.6,1.84,9.18,3H5C3.9,3,3,3.9,3,5v14 c0,1.1,0.9,2,2,2h5V19z M12,3c0.55,0,1,0.45,1,1s-0.45,1-1,1s-1-0.45-1-1S11.45,3,12,3z\\\"></path><polygon points=\\\"18.01,13 16.59,14.41 18.17,15.99 12,15.99 12,17.99 18.17,17.99 16.59,19.58 18.01,20.99 22,16.99\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M9,13c0-2.21,1.79-4,4-4h2.5V4.5H14V7H6V4.5H4.5v11H9V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,15.5H4.5v-11H6V7h8V4.5h1.5V9H17V4.5C17,3.67,16.33,3,15.5,3h-3.57c-0.22-0.86-1-1.5-1.93-1.5 C9.07,1.5,8.29,2.14,8.07,3H4.5C3.67,3,3,3.67,3,4.5v11C3,16.33,3.67,17,4.5,17H9V15.5z M10,3c0.41,0,0.75,0.33,0.75,0.75 c0,0.41-0.34,0.75-0.75,0.75S9.25,4.16,9.25,3.75C9.25,3.33,9.59,3,10,3z\\\"></path><polygon points=\\\"15,11 13.94,12.06 15.13,13.25 11,13.25 11,14.75 15.13,14.75 13.94,15.94 15,17 18,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"shield\": {\n    \"name\": \"shield\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M6,6.39v4.7c0,4,2.55,7.7,6,8.83c3.45-1.13,6-4.82,6-8.83v-4.7l-6-2.25L6,6.39 z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,2L4,5v6.09c0,5.05,3.41,9.76,8,10.91c4.59-1.15,8-5.86,8-10.91V5L12,2z M18,11.09c0,4-2.55,7.7-6,8.83 c-3.45-1.13-6-4.82-6-8.83v-4.7l6-2.25l6,2.25V11.09z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"file_copy\": {\n    \"name\": \"file_copy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 7H8v14h11v-9h-5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4H8c-1.1 0-1.99.9-1.99 2L6 21c0 1.1.89 2 1.99 2H19c1.1 0 2-.9 2-2V11l-6-6zm4 16H8V7h6v5h5v9z\\\"></path>\"\n      }\n    }\n  },\n  \"delete_sweep\": {\n    \"name\": \"delete_sweep\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 10h6v8H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zm2-8h6v8H5v-8zm5-6H6L5 5H2v2h12V5h-3z\\\"></path>\"\n      }\n    }\n  },\n  \"flag\": {\n    \"name\": \"flag\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.36 6H7v6h7.24l.4 2H18V8h-5.24z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6zm3.6 8h-3.36l-.4-2H7V6h5.36l.4 2H18v6z\\\"></path>\"\n      }\n    }\n  },\n  \"save\": {\n    \"name\": \"save\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 5v14h14V7.83L16.17 5H5zm7 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-8H6V6h9v4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm2 16H5V5h11.17L19 7.83V19zm-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zM6 6h9v4H6z\\\"></path>\"\n      }\n    }\n  },\n  \"report\": {\n    \"name\": \"report\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9.1 5L5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5H9.1zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1-3h-2V7h2v7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M11 7h2v7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"undo\": {\n    \"name\": \"undo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z\\\"></path>\"\n      }\n    }\n  },\n  \"low_priority\": {\n    \"name\": \"low_priority\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"flag_circle\": {\n    \"name\": \"flag_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M12,4c-4.41,0-8,3.59-8,8s3.59,8,8,8s8-3.59,8-8S16.41,4,12,4z M13,15l-1-2H9.5v5H8V7h6l1,2h3v6H13z\\\"></path></g><path d=\\\"M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8s8,3.59,8,8 S16.41,20,12,20z\\\"></path><path d=\\\"M15,9l-1-2H8v11h1.5v-5H12l1,2h5V9H15z M16.5,13.5h-2.57l-1-2H9.5v-3h3.57l1,2h2.43V13.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5z M11,12l-1-1.5H8V15H7V6h4.5 l1,1.5H15V12H11z\\\"></path></g><path d=\\\"M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8s8-3.58,8-8S14.42,2,10,2z M10,16.5c-3.58,0-6.5-2.92-6.5-6.5S6.42,3.5,10,3.5 s6.5,2.92,6.5,6.5S13.58,16.5,10,16.5z\\\"></path><path d=\\\"M12.5,7.5l-1-1.5H7v9h1v-4.5h2l1,1.5h4V7.5H12.5z M14,11h-2.46l-1-1.5H8V7h2.96l1,1.5H14V11z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"report_gmailerrorred\": {\n    \"name\": \"report_gmailerrorred\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z\\\"></path><circle cx=\\\"12\\\" cy=\\\"16\\\" r=\\\"1\\\"></circle><path d=\\\"M11 7h2v7h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"inventory_2\": {\n    \"name\": \"inventory_2\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon enable-background=\\\"new\\\" opacity=\\\".3\\\" points=\\\"4,7 20,7 20,3.98 4,4\\\"></polygon><path d=\\\"M5,20h14V9H5V20z M9,12h6v2H9V12z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4C3,2,2,2.9,2,4v3.01C2,7.73,2.43,8.35,3,8.7V20c0,1.1,1.1,2,2,2h14c0.9,0,2-0.9,2-2V8.7c0.57-0.35,1-0.97,1-1.69V4 C22,2.9,21,2,20,2z M19,20H5V9h14V20z M20,7H4V4l16-0.02V7z\\\"></path><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"12\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g><path d=\\\"M4.5,16.5h11V8h-11V16.5z M8,10h4v1.5H8V10z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><rect enable-background=\\\"new\\\" height=\\\"3\\\" opacity=\\\".3\\\" width=\\\"13\\\" x=\\\"3.5\\\" y=\\\"3.5\\\"></rect><path d=\\\"M16.5,2h-13C2.67,2,2,2.67,2,3.5v3c0,0.65,0.42,1.2,1,1.41v8.59C3,17.33,3.67,18,4.5,18h11c0.83,0,1.5-0.67,1.5-1.5V7.91 c0.58-0.21,1-0.76,1-1.41v-3C18,2.67,17.33,2,16.5,2z M15.5,16.5h-11V8h11V16.5z M16.5,6.5h-13v-3h13V6.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"4\\\" x=\\\"8\\\" y=\\\"10\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"archive\": {\n    \"name\": \"archive\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V8H5v11zm5.55-6v-3h2.91v3H16l-4 4-4-4h2.55z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 13h-2.55v-3h-2.9v3H8l4 4zm4.54-7.77l-1.39-1.68C18.88 3.21 18.47 3 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM6.24 5h11.52l.81.97H5.44l.8-.97zM19 19H5V8h14v11z\\\"></path>\"\n      }\n    }\n  },\n  \"waves\": {\n    \"name\": \"waves\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z\\\"></path>\"\n      }\n    }\n  },\n  \"policy\": {\n    \"name\": \"policy\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><path d=\\\"M5,6.3V11c0,4.52,2.98,8.69,7,9.93c1.74-0.53,3.28-1.62,4.47-3.04l-1.72-1.72 c-1.94,1.29-4.58,1.07-6.29-0.64c-1.95-1.95-1.95-5.12,0-7.07c1.95-1.95,5.12-1.95,7.07,0c1.71,1.71,1.92,4.35,0.64,6.29 l1.45,1.45C18.49,14.65,19,12.85,19,11V6.3l-7-3.11L5,6.3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,1L3,5v6c0,5.55,3.84,10.74,9,12c0.65-0.16,1.27-0.38,1.87-0.65c1.8-0.82,3.36-2.13,4.57-3.74 C20.04,16.46,21,13.77,21,11V5L12,1z M19,11c0,1.85-0.51,3.65-1.38,5.21l-1.45-1.45c1.29-1.94,1.07-4.58-0.64-6.29 c-1.95-1.95-5.12-1.95-7.07,0c-1.95,1.95-1.95,5.12,0,7.07c1.71,1.71,4.35,1.92,6.29,0.64l1.72,1.72 c-1.19,1.42-2.73,2.51-4.47,3.04C7.98,19.69,5,15.52,5,11V6.3l7-3.11l7,3.11V11z M15,12c0,1.66-1.34,3-3,3s-3-1.34-3-3s1.34-3,3-3 S15,10.34,15,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><path d=\\\"M5,5.72v3.59c0,3.05,2.13,5.86,5,6.65c1.25-0.34,2.35-1.09,3.2-2.06l-1.47-1.47C11.24,12.79,10.65,13,10,13 c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3c0,0.65-0.21,1.24-0.56,1.73l1.38,1.38C14.55,12,15,10.68,15,9.31V5.72l-5-1.67L5,5.72z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3L4,5v4.31c0,3.55,2.56,6.88,6,7.69c3.44-0.81,6-4.13,6-7.69V5L10,3z M15,9.31c0,1.37-0.45,2.68-1.18,3.8l-1.38-1.38 C12.79,11.24,13,10.65,13,10c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c0.65,0,1.24-0.21,1.73-0.56l1.47,1.47 c-0.86,0.97-1.95,1.71-3.2,2.06c-2.87-0.79-5-3.61-5-6.65V5.72l5-1.67l5,1.67V9.31z M10,12c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C12,11.1,11.1,12,10,12z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"dynamic_feed\": {\n    \"name\": \"dynamic_feed\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"12\\\" y=\\\"7\\\"></rect><g></rect><g><path d=\\\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\\\"></path><path d=\\\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\\\"></path><path d=\\\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\\\"></path></g></g><g display=\\\"none\\\"><rect display=\\\"inline\\\" height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"12\\\" y=\\\"7\\\"></rect><g display=\\\"inline\\\"></path><g display=\\\"inline\\\"><path d=\\\"M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z\\\"></path><path d=\\\"M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z\\\"></path><path d=\\\"M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect></g><g><g></rect><g><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"7\\\"></rect><g><path d=\\\"M4,8H3v7c0,0.55,0.45,1,1,1h9v-1H4V8z\\\"></path></g><g><path d=\\\"M6,6H5v7c0,0.55,0.45,1,1,1h9v-1H6V6z\\\"></path></g><path d=\\\"M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4z M16,11H8V7h8V11z\\\"></path></g></g><g display=\\\"none\\\"><g display=\\\"inline\\\"></rect><path d=\\\"M4,15V8H3v7c0,0.55,0.45,1,1,1h9v-1H4z\\\" display=\\\"inline\\\"></path><path d=\\\"M6,13V6H5v7c0,0.55,0.45,1,1,1h9v-1H6z\\\" display=\\\"inline\\\"></path><g display=\\\"inline\\\"><path d=\\\"M16,5v6H8V5H16 M16,4H8C7.45,4,7,4.45,7,5v6c0,0.55,0.45,1,1,1h8c0.55,0,1-0.45,1-1V5C17,4.45,16.55,4,16,4L16,4z\\\"></path></g><g display=\\\"inline\\\"><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"8\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"clear\": {\n    \"name\": \"clear\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z\\\"></path>\"\n      }\n    }\n  },\n  \"add_box\": {\n    \"name\": \"add_box\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm2-8h4V7h2v4h4v2h-4v4h-2v-4H7v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z\\\"></path>\"\n      }\n    }\n  },\n  \"amp_stories\": {\n    \"name\": \"amp_stories\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g></rect><g><g opacity=\\\".3\\\"><rect height=\\\"11\\\" width=\\\"6\\\" x=\\\"9\\\" y=\\\"6\\\"></rect></g><path d=\\\"M7,19h10V4H7V19z M9,6h6v11H9V6z\\\"></path><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"3\\\" y=\\\"6\\\"></rect><rect height=\\\"11\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"6\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g></rect><g><g opacity=\\\".3\\\"><rect height=\\\"9\\\" width=\\\"6\\\" x=\\\"7\\\" y=\\\"5\\\"></rect></g><path d=\\\"M6,15h8V4H6V15z M7,5h6v9H7V5z\\\"></path><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"3\\\" y=\\\"5\\\"></rect><rect height=\\\"9\\\" width=\\\"1\\\" x=\\\"16\\\" y=\\\"5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"redo\": {\n    \"name\": \"redo\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z\\\"></path>\"\n      }\n    }\n  },\n  \"where_to_vote\": {\n    \"name\": \"where_to_vote\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 3C8.69 3 6 5.69 6 9c0 3.54 3.82 8.86 6 11.47 1.75-2.11 6-7.63 6-11.47 0-3.31-2.69-6-6-6zm-1.53 11l-3.18-3.18L8.71 9.4l1.77 1.77 4.6-4.6 1.41 1.41L10.47 14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 1C7.59 1 4 4.59 4 9c0 5.57 6.96 13.34 7.26 13.67l.74.82.74-.82C13.04 22.34 20 14.57 20 9c0-4.41-3.59-8-8-8zm0 19.47C9.82 17.86 6 12.54 6 9c0-3.31 2.69-6 6-6s6 2.69 6 6c0 3.83-4.25 9.36-6 11.47zm3.07-13.9l-4.6 4.6L8.71 9.4l-1.42 1.42L10.47 14l6.01-6.01z\\\"></path>\"\n      }\n    }\n  },\n  \"font_download_off\": {\n    \"name\": \"font_download_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M10.35,7.52L10.92,6h2.14l2.55,6.79L20,17.17V4H6.83L10.35,7.52z M12.58,9.75l-0.54-1.52h-0.1l-0.23,0.66 L12.58,9.75z M17.17,20l-5.07-5.07H9.58L8.49,18H6.41l2.39-6.37L4,6.83V20H17.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4.83,2H20c1.1,0,2,0.9,2,2v15.17l-2-2V4H6.83L4.83,2z M10.92,6l-0.57,1.52l1.36,1.36l0.23-0.66h0.1l0.54,1.52l3.04,3.04 L13.07,6H10.92z M20.49,23.31L19.17,22H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M17.17,20l-5.07-5.07 H9.58L8.49,18H6.41l2.39-6.37L4,6.83V20H17.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10.61,8.49l-0.57-1.63H9.95L9.7,7.58L10.61,8.49z M14.38,16.5l-4.06-4.06H7.99L7.08,15H5.35L7.4,9.52 l-3.9-3.9V16.5H14.38z M8.56,6.44L9.1,5h1.79l2.27,6.04l3.34,3.34V3.5H5.62L8.56,6.44z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.7,7.58L8.56,6.44L9.1,5h1.79l2.27,6.04l-2.55-2.55l-0.57-1.63H9.95L9.7,7.58z M16.72,18.84L15.88,18H3.5 C2.67,18,2,17.33,2,16.5V4.12L1.16,3.28l1.06-1.06l15.56,15.56L16.72,18.84z M14.38,16.5l-4.06-4.06H7.99L7.08,15H5.35L7.4,9.52 l-3.9-3.9V16.5H14.38z M16.5,3.5v10.88l1.5,1.5V3.5C18,2.67,17.33,2,16.5,2H4.12l1.5,1.5H16.5z\\\"></path>\"\n      }\n    }\n  },\n  \"add_circle\": {\n    \"name\": \"add_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm5 9h-4v4h-2v-4H7v-2h4V7h2v4h4v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"select_all\": {\n    \"name\": \"select_all\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z\\\"></path>\"\n      }\n    }\n  },\n  \"change_circle\": {\n    \"name\": \"change_circle\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12.06,13.34v2.14 c-0.92,0.02-1.84-0.31-2.54-1.01c-1.12-1.12-1.3-2.8-0.59-4.13l-1.1-1.1c-1.28,1.94-1.07,4.59,0.64,6.29C9.44,16.51,10.72,17,12,17 c0.02,0,0.04,0,0.06,0V19l2.83-2.83L12.06,13.34z M15.54,8.46c-0.99-0.99-2.3-1.46-3.6-1.45V5L9.11,7.83l2.83,2.83V8.51 c0.02,0,0.04,0,0.06,0c0.9,0,1.79,0.34,2.48,1.02c1.12,1.12,1.3,2.8,0.59,4.13l1.1,1.1C17.45,12.82,17.24,10.17,15.54,8.46z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12,4c4.41,0,8,3.59,8,8s-3.59,8-8,8s-8-3.59-8-8S7.59,4,12,4 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10 S17.52,2,12,2L12,2z M12.06,13.34v2.14c-0.92,0.02-1.84-0.31-2.54-1.01c-1.12-1.12-1.3-2.8-0.59-4.13l-1.1-1.1 c-1.28,1.94-1.07,4.59,0.64,6.29C9.44,16.51,10.72,17,12,17c0.02,0,0.04,0,0.06,0V19l2.83-2.83L12.06,13.34z M15.54,8.46 c-0.99-0.99-2.3-1.46-3.6-1.45V5L9.11,7.83l2.83,2.83V8.51c0.02,0,0.04,0,0.06,0c0.9,0,1.79,0.34,2.48,1.02 c1.12,1.12,1.3,2.8,0.59,4.13l1.1,1.1C17.45,12.82,17.24,10.17,15.54,8.46z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,3.5c-3.58,0-6.5,2.92-6.5,6.5s2.92,6.5,6.5,6.5s6.5-2.92,6.5-6.5S13.58,3.5,10,3.5z M9.88,15.62V14 c-1.02-0.03-1.98-0.44-2.71-1.17C6.42,12.07,6,11.07,6,10c0-0.7,0.18-1.38,0.52-1.98l0.74,0.74C7.09,9.15,7,9.57,7,10 c0,0.8,0.31,1.55,0.88,2.12c0.54,0.53,1.27,0.82,2,0.85v-1.59L12,13.5L9.88,15.62z M13.48,11.98l-0.74-0.74 C12.91,10.85,13,10.43,13,10c0-0.8-0.31-1.55-0.88-2.12c-0.54-0.54-1.24-0.85-2-0.88v1.62L8,6.5l2.12-2.12v1.66 c1,0.03,1.98,0.41,2.71,1.13C13.58,7.93,14,8.93,14,10C14,10.7,13.82,11.38,13.48,11.98z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3.5c3.58,0,6.5,2.92,6.5,6.5s-2.92,6.5-6.5,6.5S3.5,13.58,3.5,10S6.42,3.5,10,3.5 M10,2c-4.42,0-8,3.58-8,8s3.58,8,8,8 s8-3.58,8-8S14.42,2,10,2L10,2z M9.88,15.62V14c-1.02-0.03-1.98-0.44-2.71-1.17C6.42,12.07,6,11.07,6,10c0-0.7,0.18-1.38,0.52-1.98 l0.74,0.74C7.09,9.15,7,9.57,7,10c0,0.8,0.31,1.55,0.88,2.12c0.54,0.53,1.27,0.82,2,0.85v-1.59L12,13.5L9.88,15.62z M13.48,11.98 l-0.74-0.74C12.91,10.85,13,10.43,13,10c0-0.8-0.31-1.55-0.88-2.12c-0.54-0.54-1.24-0.85-2-0.88v1.62L8,6.5l2.12-2.12v1.66 c1,0.03,1.98,0.41,2.71,1.13C13.58,7.93,14,8.93,14,10C14,10.7,13.82,11.38,13.48,11.98z\\\"></path>\"\n      }\n    }\n  },\n  \"add_link\": {\n    \"name\": \"add_link\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M8,11h8v2H8V11z M20.1,12H22c0-2.76-2.24-5-5-5h-4v1.9h4C18.71,8.9,20.1,10.29,20.1,12z M3.9,12c0-1.71,1.39-3.1,3.1-3.1h4 V7H7c-2.76,0-5,2.24-5,5s2.24,5,5,5h4v-1.9H7C5.29,15.1,3.9,13.71,3.9,12z M19,12h-2v3h-3v2h3v3h2v-3h3v-2h-3V12z\\\"></path></g>\"\n      }\n    }\n  },\n  \"calculate\": {\n    \"name\": \"calculate\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,19h14V5H5V19z M13.03,7.06L14.09,6l1.41,1.41L16.91,6l1.06,1.06l-1.41,1.41l1.41,1.41l-1.06,1.06 L15.5,9.54l-1.41,1.41l-1.06-1.06l1.41-1.41L13.03,7.06z M13,13.25h5v1.5h-5V13.25z M13,15.75h5v1.5h-5V15.75z M6.25,7.72h5v1.5 h-5V7.72z M6,14.5h2v-2h1.5v2h2V16h-2v2H8v-2H6V14.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M19,19H5V5h14V19z\\\"></path><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"6.25\\\" y=\\\"7.72\\\"></rect><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"13\\\" y=\\\"15.75\\\"></rect><rect height=\\\"1.5\\\" width=\\\"5\\\" x=\\\"13\\\" y=\\\"13.25\\\"></rect><polygon points=\\\"8,18 9.5,18 9.5,16 11.5,16 11.5,14.5 9.5,14.5 9.5,12.5 8,12.5 8,14.5 6,14.5 6,16 8,16\\\"></polygon><polygon points=\\\"14.09,10.95 15.5,9.54 16.91,10.95 17.97,9.89 16.56,8.47 17.97,7.06 16.91,6 15.5,7.41 14.09,6 13.03,7.06 14.44,8.47 13.03,9.89\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,15h10V5H5V15z M14,13.25h-3v-1h3V13.25z M14,11.75h-3v-1h3V11.75z M10.73,6.71L11.44,6l1.06,1.06 L13.56,6l0.71,0.71l-1.06,1.06l1.06,1.06l-0.71,0.71L12.5,8.47l-1.06,1.06l-0.71-0.71l1.06-1.06L10.73,6.71z M6,7.27h3v1H6V7.27z M6,11.5h1.5V10h1v1.5H10v1H8.5V14h-1v-1.5H6V11.5z\\\" opacity=\\\".3\\\"></path><g><rect height=\\\"1\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"12.25\\\"></rect></g><g><rect height=\\\"1\\\" width=\\\"3\\\" x=\\\"11\\\" y=\\\"10.75\\\"></rect></g><g><rect height=\\\"1\\\" width=\\\"3\\\" x=\\\"6\\\" y=\\\"7.27\\\"></rect></g><g><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V5h10V15z\\\"></path></g><g><polygon points=\\\"7.5,14 8.5,14 8.5,12.5 10,12.5 10,11.5 8.5,11.5 8.5,10 7.5,10 7.5,11.5 6,11.5 6,12.5 7.5,12.5\\\"></polygon></g><g><polygon points=\\\"11.44,9.54 12.5,8.47 13.56,9.54 14.27,8.83 13.21,7.77 14.27,6.71 13.56,6 12.5,7.06 11.44,6 10.73,6.71 11.79,7.77 10.73,8.83\\\"></polygon></g></g></g>\"\n      }\n    }\n  },\n  \"backspace\": {\n    \"name\": \"backspace\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7.06 5L2.4 12l4.67 7H22V5H7.06c.01 0 .01 0 0 0zM9 8.41L10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59 17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7.07L2.4 12l4.66-7H22v14zm-11.59-2L14 13.41 17.59 17 19 15.59 15.41 12 19 8.41 17.59 7 14 10.59 10.41 7 9 8.41 12.59 12 9 15.59z\\\"></path>\"\n      }\n    }\n  },\n  \"filter_list_off\": {\n    \"name\": \"filter_list_off\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M10.83,8H21V6H8.83L10.83,8z M15.83,13H18v-2h-4.17L15.83,13z M14,16.83V18h-4v-2h3.17l-3-3H6v-2h2.17l-3-3H3V6h0.17 L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L14,16.83z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M7.62,5.5H17V7H9.12L7.62,5.5z M12.87,10.75H15v-1.5h-3.63L12.87,10.75z M16.01,18.13l1.06-1.06L2.93,2.93L1.87,3.99 L3.38,5.5H3V7h1.88l2.25,2.25H5v1.5h3.63L10.88,13L8,13v1.5h4v-0.38L16.01,18.13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"bolt\": {\n    \"name\": \"bolt\",\n    \"keywords\": [\n      \"content\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M11,21h-1l1-7H7.5c-0.88,0-0.33-0.75-0.31-0.78C8.48,10.94,10.42,7.54,13.01,3h1l-1,7h3.51c0.4,0,0.62,0.19,0.4,0.66 C12.97,17.55,11,21,11,21z\\\"></path></g>\"\n      }\n    }\n  },\n  \"mark_email_read\": {\n    \"name\": \"mark_email_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M20,8v4.08C19.67,12.03,19.34,12,19,12c-3.53,0-6.43,2.61-6.92,6H4V8l8,5L20,8z M20,6H4l8,5L20,6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12.08,18H4V8l8,5l8-5v4.08c0.71,0.1,1.38,0.31,2,0.6V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2 h8.08C12.03,19.67,12,19.34,12,19S12.03,18.33,12.08,18z M20,6l-8,5L4,6H20z M17.34,22l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24 L23,16.34L17.34,22z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,15H4V6.18L10,10l6-3.82v3.92c-0.32-0.07-0.66-0.1-1-0.1C12.24,10,10,12.24,10,15z M10,8.82L16,5H4 L10,8.82z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.76,17l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,12.76L13.76,17z M16,4H4C3.45,4,3,4.45,3,5v10c0,0.55,0.45,1,1,1 h6.1c-0.07-0.32-0.1-0.66-0.1-1H4V6.18L10,10l6-3.82v3.92c0.35,0.07,0.68,0.18,1,0.32V5C17,4.45,16.55,4,16,4z M10,8.82L4,5h12 L10,8.82z\\\"></path></g>\"\n      }\n    }\n  },\n  \"app_registration\": {\n    \"name\": \"app_registration\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"10\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"16\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"10\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"4\\\" y=\\\"4\\\"></rect><rect height=\\\"4\\\" width=\\\"4\\\" x=\\\"16\\\" y=\\\"4\\\"></rect><polygon points=\\\"11,17.86 11,20 13.1,20 19.08,14.03 16.96,11.91\\\"></polygon><polygon points=\\\"14,12.03 14,10 10,10 10,14 12.03,14\\\"></polygon><path d=\\\"M20.85,11.56l-1.41-1.41c-0.2-0.2-0.51-0.2-0.71,0l-1.06,1.06l2.12,2.12l1.06-1.06C21.05,12.07,21.05,11.76,20.85,11.56z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"8.5\\\" y=\\\"4\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"13\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"8.5\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"4\\\" y=\\\"4\\\"></rect></g><g><rect height=\\\"3\\\" width=\\\"3\\\" x=\\\"13\\\" y=\\\"4\\\"></rect></g><g><polygon points=\\\"9,14.49 9,16 10.51,16 15.4,11.1 13.9,9.6\\\"></polygon></g><g><polygon points=\\\"11.5,9.88 11.5,8.5 8.5,8.5 8.5,11.5 9.87,11.5\\\"></polygon></g><g><path d=\\\"M16.85,8.94l-0.79-0.79c-0.2-0.2-0.51-0.2-0.71,0L14.6,8.9l1.5,1.5l0.75-0.75C17.05,9.45,17.05,9.13,16.85,8.94z\\\"></path></g></g></g>\"\n      }\n    }\n  },\n  \"import_contacts\": {\n    \"name\": \"import_contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zM3 18.5V7c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99v11.5C9.63 18.41 7.84 18 6.5 18c-1.2 0-2.4.15-3.5.5zm18 0c-1.1-.35-2.3-.5-3.5-.5-1.34 0-3.13.41-4.5.99V7.49c1.37-.59 3.16-.99 4.5-.99 1.2 0 2.4.15 3.5.5v11.5z\\\"></path><path d=\\\"M11 7.49c-1.37-.58-3.16-.99-4.5-.99-1.2 0-2.4.15-3.5.5v11.5c1.1-.35 2.3-.5 3.5-.5 1.34 0 3.13.41 4.5.99V7.49z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"cancel_presentation\": {\n    \"name\": \"cancel_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19.1h18V4.95H3V19.1zm5-9.74l1.41-1.41L12 10.54l2.59-2.59L16 9.36l-2.59 2.59L16 14.54l-1.41 1.41L12 13.36l-2.59 2.59L8 14.54l2.59-2.59L8 9.36z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9.41 15.95L12 13.36l2.59 2.59L16 14.54l-2.59-2.59L16 9.36l-1.41-1.41L12 10.54 9.41 7.95 8 9.36l2.59 2.59L8 14.54z\\\"></path>\"\n      }\n    }\n  },\n  \"sentiment_satisfied_alt\": {\n    \"name\": \"sentiment_satisfied_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3.5 4c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.32-1.45-5.12-3.5h1.67c.7 1.19 1.97 2 3.45 2s2.76-.81 3.45-2h1.67c-.8 2.05-2.79 3.5-5.12 3.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"15.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><circle cx=\\\"8.5\\\" cy=\\\"9.5\\\" r=\\\"1.5\\\"></circle><path d=\\\"M12 16c-1.48 0-2.75-.81-3.45-2H6.88c.8 2.05 2.79 3.5 5.12 3.5s4.32-1.45 5.12-3.5h-1.67c-.69 1.19-1.97 2-3.45 2zm-.01-14C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\\\"></path>\"\n      }\n    }\n  },\n  \"live_help\": {\n    \"name\": \"live_help\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 18h4.83l.59.59L12 20.17l1.59-1.59.58-.58H19V4H5v14zm8-1h-2v-2h2v2zM12 5c2.21 0 4 1.79 4 4 0 2.5-3 2.75-3 5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 4c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4zm-2 14h-4.83l-.59.59L12 20.17l-1.59-1.59-.58-.58H5V4h14v14zm-8-3h2v2h-2zm1-8c1.1 0 2 .9 2 2 0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"location_on\": {\n    \"name\": \"location_on\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 4C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.11-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5zm0 7.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z\\\"></path><circle cx=\\\"12\\\" cy=\\\"9\\\" r=\\\"2.5\\\"></circle>\"\n      }\n    }\n  },\n  \"mark_unread_chat_alt\": {\n    \"name\": \"mark_unread_chat_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M4,17.17L5.17,16H20V7.9C19.68,7.96,19.34,8,19,8s-0.68-0.04-1-0.1V8H6V6h9.03 c-0.44-0.58-0.77-1.26-0.92-2H4V17.17z M6,9h12v2H6V9z M6,12h8v2H6V12z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><g><circle cx=\\\"19\\\" cy=\\\"3\\\" r=\\\"3\\\"></circle><path d=\\\"M20,16H5.17L4,17.17V4h10.1c-0.18-0.89-0.08-1.61,0-2H4C2.9,2,2.01,2.9,2.01,4L2,22l4-4h14c1.1,0,2-0.9,2-2V6.97 c-0.58,0.44-1.26,0.77-2,0.92V16z\\\"></path><rect height=\\\"2\\\" width=\\\"8\\\" x=\\\"6\\\" y=\\\"12\\\"></rect><rect height=\\\"2\\\" width=\\\"12\\\" x=\\\"6\\\" y=\\\"9\\\"></rect><path d=\\\"M6,8h12V7.9c-1.21-0.25-2.25-0.95-2.97-1.9H6V8z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M16.5,13.5H4.38L3.5,14.38V3.5h8.08c-0.07-0.38-0.13-0.84,0-1.5H3.5C2.67,2,2,2.67,2,3.5V18l3-3h11.5 c0.83,0,1.5-0.67,1.5-1.5V5.85c-0.44,0.35-0.94,0.62-1.5,0.76V13.5z\\\"></path><path d=\\\"M5,6.5h9.15c-0.8-0.29-1.49-0.81-1.96-1.5H5V6.5z\\\"></path><rect height=\\\"1.5\\\" width=\\\"7\\\" x=\\\"5\\\" y=\\\"10.5\\\"></rect><rect height=\\\"1.5\\\" width=\\\"10\\\" x=\\\"5\\\" y=\\\"7.75\\\"></rect><circle cx=\\\"15.5\\\" cy=\\\"2.75\\\" r=\\\"2.5\\\"></circle></g><path d=\\\"M3.5,14.38l0.88-0.88H16.5V6.61c-0.32,0.08-0.65,0.14-1,0.14 c-0.47,0-0.92-0.1-1.35-0.25H5V5h7.2c-0.3-0.44-0.52-0.95-0.62-1.5H3.5V14.38z M5,7.75h10v1.5H5V7.75z M5,10.5h7V12H5V10.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"qr_code_2\": {\n    \"name\": \"qr_code_2\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><path d=\\\"M15,21h-2v-2h2V21z M13,14h-2v5h2V14z M21,12h-2v4h2V12z M19,10h-2v2h2V10z M7,12H5v2h2V12z M5,10H3v2h2V10z M12,5h2V3h-2V5 z M4.5,4.5v3h3v-3H4.5z M9,9H3V3h6V9z M4.5,16.5v3h3v-3H4.5z M9,21H3v-6h6V21z M16.5,4.5v3h3v-3H16.5z M21,9h-6V3h6V9z M19,19v-3 l-4,0v2h2v3h4v-2H19z M17,12l-4,0v2h4V12z M13,10H7v2h2v2h2v-2h2V10z M14,9V7h-2V5h-2v4L14,9z M6.75,5.25h-1.5v1.5h1.5V5.25z M6.75,17.25h-1.5v1.5h1.5V17.25z M18.75,5.25h-1.5v1.5h1.5V5.25z\\\"></path>\"\n      }\n    }\n  },\n  \"desktop_access_disabled\": {\n    \"name\": \"desktop_access_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.69L0 3.1l1 .99V16c0 1.1.89 2 1.99 2H10v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h.44c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4.55z\\\"></path><path d=\\\"M2.99 6.09V16h9.91zM6.55 4l12 12H21V4z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"call_end\": {\n    \"name\": \"call_end\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.59 12.23c.67.38 1.3.8 1.88 1.27l1.07-1.07c-.92-.75-1.91-1.39-2.96-1.91v1.71zM3.53 13.49c.59-.48 1.22-.9 1.87-1.27v-1.7c-1.04.51-2.03 1.15-2.94 1.9l1.07 1.07z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 7C7.46 7 3.34 8.78.29 11.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.7l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.1.7-.28.79-.73 1.68-1.36 2.66-1.85.33-.16.56-.51.56-.9v-3.1C8.85 9.25 10.4 9 12 9c1.6 0 3.15.25 4.59.73v3.1c0 .4.23.74.56.9.98.49 1.88 1.11 2.67 1.85.18.17.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71C20.66 8.78 16.54 7 12 7zm-6.6 5.22c-.65.37-1.28.79-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.38 2.94-1.9v1.7zm15.07 1.28c-.58-.47-1.21-.89-1.88-1.27v-1.71c1.05.51 2.04 1.15 2.96 1.91l-1.08 1.07z\\\"></path>\"\n      }\n    }\n  },\n  \"wifi_calling\": {\n    \"name\": \"wifi_calling\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M15.2,18.21c1.2,0.41,2.48,0.67,3.8,0.75v-1.49c-0.88-0.07-1.75-0.22-2.6-0.45L15.2,18.21z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.54,5h-1.5c0.09,1.32,0.35,2.59,0.75,3.8l1.2-1.2C6.75,6.76,6.6,5.89,6.54,5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,15.51c-1.24,0-2.45-0.2-3.57-0.57c-0.1-0.04-0.21-0.05-0.31-0.05c-0.26,0-0.51,0.1-0.71,0.29l-2.2,2.2 c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2C9.1,8.31,9.18,7.92,9.07,7.57C8.7,6.45,8.5,5.25,8.5,4c0-0.55-0.45-1-1-1H4 C3.45,3,3,3.45,3,4c0,9.39,7.61,17,17,17c0.55,0,1-0.45,1-1v-3.49C21,15.96,20.55,15.51,20,15.51z M5.03,5h1.5 C6.6,5.89,6.75,6.76,6.99,7.59l-1.2,1.2C5.38,7.59,5.12,6.32,5.03,5z M19,18.97c-1.32-0.09-2.59-0.35-3.8-0.75l1.19-1.19 c0.85,0.24,1.72,0.39,2.6,0.45V18.97z\\\"></path><g><path d=\\\"M22,4.95C21.79,4.78,19.67,3,16.5,3c-3.18,0-5.29,1.78-5.5,1.95L16.5,12L22,4.95z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M16.67,5.3C16.53,5.19,15.11,4,13,4c-2.12,0-3.53,1.19-3.67,1.3L13,10L16.67,5.3z M13,5c0.91,0,1.67,0.27,2.21,0.54 L13,8.37l-2.21-2.83C11.33,5.27,12.09,5,13,5z\\\"></path><path d=\\\"M14.33,12.33c-0.83,0-1.63-0.13-2.38-0.38c-0.07-0.02-0.14-0.03-0.21-0.03c-0.17,0-0.34,0.06-0.47,0.19l-1.47,1.47 c-1.89-0.96-3.43-2.5-4.39-4.39l1.47-1.47c0.19-0.18,0.24-0.44,0.17-0.67C6.8,6.3,6.67,5.5,6.67,4.67C6.67,4.3,6.37,4,6,4H3.67 C3.3,4,3,4.3,3,4.67C3,10.93,8.07,16,14.33,16C14.7,16,15,15.7,15,15.33V13C15,12.63,14.7,12.33,14.33,12.33z M4.01,5h1.67 C5.7,5.74,5.82,6.46,6.03,7.15L4.72,8.47C4.3,7.39,4.04,6.22,4.01,5z M14,14.99c-1.22-0.04-2.39-0.29-3.47-0.72l1.31-1.31 c0.7,0.21,1.43,0.33,2.16,0.36V14.99z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"alternate_email\": {\n    \"name\": \"alternate_email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 21.95h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10s-10 4.48-10 10 4.48 10 10 10zm0-7c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z\\\" fill-opacity=\\\".9\\\"></path>\"\n      }\n    }\n  },\n  \"add_ic_call\": {\n    \"name\": \"add_ic_call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 17.41c-.88-.07-1.75-.22-2.6-.45l-1.2 1.2c1.21.41 2.48.67 3.8.76v-1.51zM6.54 4.95h-1.5c.09 1.32.34 2.58.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 20.95c.55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.4 8.5 5.2 8.5 3.95c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.99c.85.24 1.72.39 2.6.45v1.5c-1.32-.09-2.6-.35-3.8-.76l1.2-1.19zM5.03 4.95h1.5c.07.88.22 1.75.45 2.58l-1.2 1.21c-.4-1.21-.66-2.47-.75-3.79zm10.97 6h2v-3h3v-2h-3v-3h-2v3h-3v2h3z\\\"></path>\"\n      }\n    }\n  },\n  \"business\": {\n    \"name\": \"business\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M12 11h2v2h-2v2h2v2h-2v2h8V9h-8v2zm4 0h2v2h-2v-2zm0 4h2v2h-2v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 15h2v2h-2zm0-4h2v2h-2zm6-4H12V3H2v18h20V7zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10z\\\"></path>\"\n      }\n    }\n  },\n  \"no_sim\": {\n    \"name\": \"no_sim\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 19h9.23L7 9.77z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.79 3.74L2.38 5.15l2.74 2.74-.12.12V19c0 1.1.9 2 2 2h10c.35 0 .68-.1.97-.26l1.88 1.88 1.41-1.41L3.79 3.74zM7 19V9.77L16.23 19H7z\\\"></path><path d=\\\"M10.84 5L9.36 6.47 17 14.11V5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10.84 5H17v9.11l2 2V5c0-1.1-.9-2-2-2h-6.99L7.95 5.06l1.41 1.41L10.84 5z\\\"></path>\"\n      }\n    }\n  },\n  \"key\": {\n    \"name\": \"key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M21,10h-8.35C11.83,7.67,9.61,6,7,6c-3.31,0-6,2.69-6,6s2.69,6,6,6c2.61,0,4.83-1.67,5.65-4H13l2,2l2-2l2,2l4-4.04L21,10z M7,15c-1.65,0-3-1.35-3-3c0-1.65,1.35-3,3-3s3,1.35,3,3C10,13.65,8.65,15,7,15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M17.5,8.5h-6.75C10.11,6.48,8.24,5,6,5c-2.76,0-5,2.24-5,5s2.24,5,5,5c2.24,0,4.11-1.48,4.75-3.5h0.75L13,13l1.5-1.5L16,13 l3-3L17.5,8.5z M6,12.5c-1.38,0-2.5-1.12-2.5-2.5S4.62,7.5,6,7.5S8.5,8.62,8.5,10S7.38,12.5,6,12.5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_erase\": {\n    \"name\": \"phonelink_erase\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 17.2l4-4 4 4 1-1-4-4 4-4-1-1-4 4-4-4-1 1 4 4-4 4zM9 23h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_enabled\": {\n    \"name\": \"phone_enabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M21,4c0,9.39-7.61,17-17,17c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57 c0.1-0.04,0.21-0.05,0.31-0.05c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c2.83-1.45,5.15-3.76,6.59-6.59l-2.2-2.2 c-0.28-0.28-0.36-0.67-0.25-1.02C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20C20.55,3,21,3.45,21,4z M7.6,17.02 c-0.85,0.24-1.72,0.39-2.6,0.45v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2 c0.41-1.2,0.67-2.47,0.76-3.79H17.46z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"stay_current_landscape\": {\n    \"name\": \"stay_current_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 7h14v10H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code\": {\n    \"name\": \"qr_code\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect fill=\\\"none\\\" height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"15\\\"></rect><rect fill=\\\"none\\\" height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"17\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"15\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"5\\\" y=\\\"5\\\"></rect><rect height=\\\"4\\\" opacity=\\\".3\\\" width=\\\"4\\\" x=\\\"15\\\" y=\\\"5\\\"></rect><path d=\\\"M3,11h8V3H3V11z M5,5h4v4H5V5z\\\"></path><path d=\\\"M3,21h8v-8H3V21z M5,15h4v4H5V15z\\\"></path><path d=\\\"M13,3v8h8V3H13z M19,9h-4V5h4V9z\\\"></path><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"13\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"15\\\" y=\\\"19\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"17\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"17\\\" y=\\\"13\\\"></rect><rect height=\\\"2\\\" width=\\\"2\\\" x=\\\"19\\\" y=\\\"15\\\"></rect></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"13\\\"></rect><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"12\\\"></rect><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"13\\\"></rect><rect fill=\\\"none\\\" height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"14\\\"></rect><rect height=\\\"3.12\\\" opacity=\\\".3\\\" width=\\\"3.12\\\" x=\\\"4.94\\\" y=\\\"11.94\\\"></rect><rect height=\\\"3.12\\\" opacity=\\\".3\\\" width=\\\"3.12\\\" x=\\\"11.94\\\" y=\\\"4.94\\\"></rect><rect height=\\\"3.12\\\" opacity=\\\".3\\\" width=\\\"3.12\\\" x=\\\"4.94\\\" y=\\\"4.94\\\"></rect><path d=\\\"M4,9h5V4H4V9z M4.94,4.94h3.12v3.12H4.94V4.94z\\\"></path><path d=\\\"M4,16h5v-5H4V16z M4.94,11.94h3.12v3.12H4.94V11.94z\\\"></path><path d=\\\"M11,4v5h5V4H11z M15.06,8.06h-3.12V4.94h3.12V8.06z\\\"></path><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"15\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"11\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"14\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"13\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"12\\\" y=\\\"14\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"11\\\" y=\\\"15\\\"></rect><rect height=\\\"1\\\" width=\\\"1\\\" x=\\\"13\\\" y=\\\"15\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"duo\": {\n    \"name\": \"duo\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z\\\"></path>\"\n      }\n    }\n  },\n  \"clear_all\": {\n    \"name\": \"clear_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 11h14v2H5zm-2 4h14v2H3zm4-8h14v2H7z\\\"></path>\"\n      }\n    }\n  },\n  \"rss_feed\": {\n    \"name\": \"rss_feed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><circle cx=\\\"6.18\\\" cy=\\\"17.82\\\" r=\\\"2.18\\\"></circle><path d=\\\"M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z\\\"></path>\"\n      }\n    }\n  },\n  \"rtt\": {\n    \"name\": \"rtt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M9.03,3l-1.11,7.07h2.62l0.7-4.5h2.58L11.8,18.43H9.47L9.06,21h7.27l0.4-2.57h-2.35l2-12.86h2.58l-0.71,4.5h2.65L22,3H9.03 z M8,5H4L3.69,7h4L8,5z M7.39,9h-4l-0.31,2h4L7.39,9z M8.31,17h-6L2,19h6L8.31,17z M8.93,13h-6l-0.31,2h6.01L8.93,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"hourglass_bottom\": {\n    \"name\": \"hourglass_bottom\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"16,16.5 12,12.5 8,16.5 8,20 16,20\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"16,16.5 12,12.5 8,16.5 8,20 16,20\\\"></polygon><path d=\\\"M6,22h12v-6l-4-4l3.99-4.01L18,2H6l0.01,5.99L10,12l-4,3.99V22z M8,7.5V4h8v3.5l-4,4L8,7.5z M8,16.5l4-4l4,4V20H8V16.5z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"13,13.41 10,10.41 7,13.41 7,16 13,16\\\"></polygon><path d=\\\"M6,17h8v-4l-3-3l3-3V3H6v4l3,3l-3,3V17z M7,6.59V4h6v2.59l-3,3L7,6.59z M7,13.41l3-3l3,3V16H7V13.41z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"portable_wifi_off\": {\n    \"name\": \"portable_wifi_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49C21.53 15.4 22 13.76 22 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z\\\"></path>\"\n      }\n    }\n  },\n  \"speaker_phone\": {\n    \"name\": \"speaker_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 12h6v8H9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41C17.76 2.23 15.02 1 12 1zM7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zm7.86 2.94L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z\\\"></path>\"\n      }\n    }\n  },\n  \"person_search\": {\n    \"name\": \"person_search\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M4,18c0.22-0.72,3.31-2,6-2c0-0.7,0.13-1.37,0.35-1.99C7.62,13.91,2,15.27,2,18v2h9.54c-0.52-0.58-0.93-1.25-1.19-2H4z\\\"></path><path d=\\\"M10,13c2.21,0,4-1.79,4-4c0-2.21-1.79-4-4-4C7.79,5,6,6.79,6,9C6,11.21,7.79,13,10,13z M10,7c1.1,0,2,0.89,2,2 c0,1.1-0.9,2-2,2s-2-0.9-2-2C8,7.89,8.9,7,10,7z\\\"></path><g opacity=\\\".3\\\"><path d=\\\"M10.35,18c0,0-0.35-0.79-0.35-2c-2.69,0-5.77,1.28-6,2H10.35z\\\"></path></g><path d=\\\"M19.43,18.02C19.79,17.43,20,16.74,20,16c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4c0.74,0,1.43-0.22,2.02-0.57 c0.93,0.93,1.62,1.62,2.57,2.57L22,20.59C20.5,19.09,21.21,19.79,19.43,18.02z M16,18c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C18,17.1,17.1,18,16,18z\\\"></path></g><g opacity=\\\".3\\\"><circle cx=\\\"10\\\" cy=\\\"9\\\" r=\\\"2\\\"></circle></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g opacity=\\\".3\\\"><path d=\\\"M5,13.21V14h4.05c-0.06-0.41-0.15-1.17,0.38-2.14C7.38,11.72,5,12.7,5,13.21z\\\"></path></g><path d=\\\"M9.43,11.86c0.36-0.68,0.67-0.89,0.72-0.93C7.85,10.59,4,11.52,4,13.21V15h5.35c-0.15-0.32-0.25-0.66-0.3-1H5v-0.79 C5,12.71,7.33,11.72,9.43,11.86z\\\"></path><g><g opacity=\\\".3\\\"><circle cx=\\\"9\\\" cy=\\\"7.5\\\" r=\\\"1.5\\\"></circle></g><path d=\\\"M9,5C7.62,5,6.5,6.12,6.5,7.5C6.5,8.88,7.62,10,9,10c1.38,0,2.5-1.12,2.5-2.5C11.5,6.12,10.38,5,9,5z M9,9 C8.17,9,7.5,8.33,7.5,7.5S8.17,6,9,6s1.5,0.67,1.5,1.5S9.83,9,9,9z\\\"></path></g><path d=\\\"M14.58,14.88c0.26-0.4,0.42-0.87,0.42-1.38c0-1.38-1.12-2.5-2.5-2.5S10,12.12,10,13.5c0,1.38,1.12,2.5,2.5,2.5 c0.51,0,0.98-0.15,1.38-0.42l1.48,1.48l0.71-0.71L14.58,14.88z M12.5,15c-0.83,0-1.5-0.67-1.5-1.5s0.67-1.5,1.5-1.5 s1.5,0.67,1.5,1.5S13.33,15,12.5,15z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"domain_disabled\": {\n    \"name\": \"domain_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z\\\"></path><path d=\\\"M12 9v.45l8 8V9h-8zm6 4h-2v-2h2v2z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"mark_chat_read\": {\n    \"name\": \"mark_chat_read\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M19,10c0.34,0,0.67,0.03,1,0.08V4H4v12h8.08C12.57,12.61,15.47,10,19,10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.34,20l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L23,14.34L17.34,20z M12.08,16H4V4h16v6.08c0.71,0.1,1.38,0.31,2,0.6V4 c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v18l4-4h6v0c0-0.14,0.02-0.27,0.03-0.4C12.01,17.4,12,17.2,12,17C12,16.66,12.03,16.33,12.08,16 z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,8c0.34,0,0.68,0.04,1,0.1V4H4v9h6C10,10.24,12.24,8,15,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M13.76,15l-2.12-2.12l0.71-0.71l1.41,1.41l3.54-3.54L18,10.76L13.76,15z M10,13H4V4h12v4.1c0.35,0.07,0.68,0.18,1,0.32V4 c0-0.55-0.45-1-1-1H4C3.45,3,3,3.45,3,4v13l3-3h4.1C10.04,13.68,10,13.34,10,13C10,13,10,13,10,13z\\\"></path></g>\"\n      }\n    }\n  },\n  \"comments_disabled\": {\n    \"name\": \"comments_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M6.83,4H20v12h-1.17l-2-2H18v-2h-3.17l-1-1H18V9h-6.17l-1-1H18V6H8.83L6.83,4z M13.17,16l-2-2H6v-2h3.17l-1-1 H6V9h0.17L4,6.83V16H13.17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.83,16H20V4H6.83l-2-2H20c1.1,0,2,0.9,2,2l0,15.17L18.83,16z M18,6H8.83l2,2H18V6z M18,9h-6.17l2,2H18V9z M18,14v-2 h-3.17l2,2H18z M21.9,21.9l-1.41,1.41L15.17,18H4c-1.1,0-2-0.9-2-2V4.83L0.69,3.51L2.1,2.1L21.9,21.9z M13.17,16l-2-2H6v-2h3.17 l-1-1H6V9h0.17L4,6.83V16H13.17z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M5.62,3.5H16.5v10.88L14.12,12H15v-1.5h-2.38l-1.25-1.25H15v-1.5H9.87L8.62,6.5H15V5H7.12L5.62,3.5z M3.5,13.5V5.62l2.13,2.13H5v1.5h2.13l1.25,1.25H8V12h1.88l1.5,1.5H3.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18,15.88V3.5C18,2.67,17.33,2,16.5,2H4.12l1.5,1.5H16.5v10.88L18,15.88z M8.62,6.5H15V5H7.12L8.62,6.5z M14.12,12H15v-1.5 h-2.38L14.12,12z M11.37,9.25H15v-1.5H9.87L11.37,9.25z M2.22,2.22L1.16,3.28L2,4.12v9.38C2,14.33,2.67,15,3.5,15h9.38l3.84,3.84 l1.06-1.06L2.22,2.22z M3.5,13.5V5.62l2.13,2.13H5v1.5h2.13l1.25,1.25H8V12h1.88l1.5,1.5H3.5z\\\"></path>\"\n      }\n    }\n  },\n  \"mail_lock\": {\n    \"name\": \"mail_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"20,6 4,6 12,11\\\"></polygon><path d=\\\"M12,13L4,8v10h12v-3.03c0-2.42,1.72-4.44,4-4.9V8L12,13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4,18V8l8,5l8-5v2.08c0.32-0.07,0.66-0.1,1-0.1h1V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h12v-2 H4z M20,6l-8,5L4,6H20z\\\"></path><path d=\\\"M23,15v-1c0-1.1-0.9-2-2-2s-2,0.9-2,2v1c-0.55,0-1,0.45-1,1v3c0,0.55,0.45,1,1,1h1h3c0.55,0,1-0.45,1-1v-3 C24,15.45,23.55,15,23,15z M20,15v-1c0-0.55,0.45-1,1-1s1,0.45,1,1v1H20z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"16.5,5.5 3.5,5.5 10,9.23\\\"></polygon><path d=\\\"M10,11L3.5,7.27v7.23h10V12c0-1.76,1.31-3.21,3-3.45V7.27L10,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M3.5,14.5V7.27L10,11l6.5-3.73v1.28C16.66,8.53,16.83,8.5,17,8.5h1v-3C18,4.67,17.33,4,16.5,4h-13C2.67,4,2,4.67,2,5.5v9 C2,15.33,2.67,16,3.5,16h10v-1.5H3.5z M16.5,5.5L10,9.23L3.5,5.5H16.5z\\\"></path><path d=\\\"M19.5,12H19v-1c0-0.83-0.67-1.5-1.5-1.5S16,10.17,16,11v1h-0.5c-0.28,0-0.5,0.22-0.5,0.5v3c0,0.28,0.22,0.5,0.5,0.5h1h3 c0.28,0,0.5-0.22,0.5-0.5v-3C20,12.22,19.78,12,19.5,12z M16.75,12v-1c0-0.41,0.34-0.75,0.75-0.75c0.41,0,0.75,0.34,0.75,0.75v1 H16.75z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"phonelink_ring\": {\n    \"name\": \"phonelink_ring\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 4h10v16H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16zm6.1-12.3l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM17 10.8c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3l-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"hourglass_top\": {\n    \"name\": \"hourglass_top\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"8,7.5 12,11.5 16,7.5 16,4 8,4\\\"></polygon><polygon opacity=\\\".3\\\" points=\\\"8,7.5 12,11.5 16,7.5 16,4 8,4\\\"></polygon><path d=\\\"M18,2H6v6l4,4l-3.99,4.01L6,22h12l-0.01-5.99L14,12l4-3.99V2z M16,16.5V20H8v-3.5l4-4L16,16.5z M16,7.5l-4,4l-4-4V4h8V7.5 z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon opacity=\\\".3\\\" points=\\\"7,6.59 10,9.59 13,6.59 13,4 7,4\\\"></polygon><path d=\\\"M14,3H6v4l3,3l-3,3v4h8v-4l-3-3l3-3V3z M13,13.41V16H7v-2.59l3-3L13,13.41z M13,6.59l-3,3l-3-3V4h6V6.59z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"invert_colors_off\": {\n    \"name\": \"invert_colors_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,14.83L12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83z M12,4.81l0,4.37l-2.2-2.2 L12,4.81\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.19,21.19L2.81,2.81L1.39,4.22l4.2,4.2c-1,1.31-1.6,2.94-1.6,4.7C4,17.48,7.58,21,12,21c1.75,0,3.36-0.56,4.67-1.5 l3.1,3.1L21.19,21.19z M12,19c-3.31,0-6-2.63-6-5.87c0-1.19,0.36-2.32,1.02-3.28L12,14.83V19z M8.38,5.56L12,2l5.65,5.56l0,0 C19.1,8.99,20,10.96,20,13.13c0,1.18-0.27,2.29-0.74,3.3L12,9.17V4.81L9.8,6.97L8.38,5.56z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,7.88V4.14L8.14,6.02L10,7.88z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63 c0,2.57,2.13,4.66,4.75,4.66V12.12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.08,4.96L10,2l4.53,4.6l0,0c1.07,1.1,1.72,2.6,1.72,4.24c0,0.96-0.23,1.86-0.62,2.67L10,7.88V4.14L8.14,6.02L7.08,4.96z M16.01,18.13l-2.33-2.33C12.65,16.55,11.38,17,10,17c-3.45,0-6.25-2.76-6.25-6.16c0-1.39,0.47-2.67,1.26-3.7L1.87,3.99l1.06-1.06 l14.14,14.14L16.01,18.13z M10,12.12L6.09,8.21c-0.54,0.77-0.84,1.68-0.84,2.63c0,2.57,2.13,4.66,4.75,4.66V12.12z\\\"></path>\"\n      }\n    }\n  },\n  \"hub\": {\n    \"name\": \"hub\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M3,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C4,10.05,3.55,10.5,3,10.5z M6,21 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C7,20.55,6.55,21,6,21z M11,3c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1 S11,3.55,11,3z M12,15c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C14.5,13.88,13.38,15,12,15z M18,19 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C17,19.45,17.45,19,18,19z M21,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C22,10.05,21.55,10.5,21,10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21,6.5c-1.66,0-3,1.34-3,3c0,0.07,0,0.14,0.01,0.21l-2.03,0.68c-0.64-1.21-1.82-2.09-3.22-2.32V5.91 C14.04,5.57,15,4.4,15,3c0-1.66-1.34-3-3-3S9,1.34,9,3c0,1.4,0.96,2.57,2.25,2.91v2.16c-1.4,0.23-2.58,1.11-3.22,2.32L5.99,9.71 C6,9.64,6,9.57,6,9.5c0-1.66-1.34-3-3-3s-3,1.34-3,3s1.34,3,3,3c1.06,0,1.98-0.55,2.52-1.37l2.03,0.68 c-0.2,1.29,0.17,2.66,1.09,3.69l-1.41,1.77C6.85,17.09,6.44,17,6,17c-1.66,0-3,1.34-3,3s1.34,3,3,3s3-1.34,3-3 c0-0.68-0.22-1.3-0.6-1.8l1.41-1.77c1.36,0.76,3.02,0.75,4.37,0l1.41,1.77C15.22,18.7,15,19.32,15,20c0,1.66,1.34,3,3,3s3-1.34,3-3 s-1.34-3-3-3c-0.44,0-0.85,0.09-1.23,0.26l-1.41-1.77c0.93-1.04,1.29-2.4,1.09-3.69l2.03-0.68c0.53,0.82,1.46,1.37,2.52,1.37 c1.66,0,3-1.34,3-3S22.66,6.5,21,6.5z M3,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C4,10.05,3.55,10.5,3,10.5z M6,21 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C7,20.55,6.55,21,6,21z M11,3c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1 S11,3.55,11,3z M12,15c-1.38,0-2.5-1.12-2.5-2.5c0-1.38,1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5C14.5,13.88,13.38,15,12,15z M18,19 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C17,19.45,17.45,19,18,19z M21,10.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C22,10.05,21.55,10.5,21,10.5z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M2.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C3.5,8.55,3.05,9,2.5,9z M5,17.5c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C6,17.05,5.55,17.5,5,17.5z M9,2.5c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S9,3.05,9,2.5z M10,12.5c-1.24,0-2.25-1.01-2.25-2.25C7.75,9.01,8.76,8,10,8s2.25,1.01,2.25,2.25C12.25,11.49,11.24,12.5,10,12.5z M15,15.5 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C14,15.95,14.45,15.5,15,15.5z M17.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C18.5,8.55,18.05,9,17.5,9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17.5,5.5C16.12,5.5,15,6.62,15,8c0,0.08,0,0.15,0.01,0.22L13.42,8.7c-0.52-1.15-1.61-2-2.92-2.17V4.95 c1.14-0.23,2-1.24,2-2.45C12.5,1.12,11.38,0,10,0S7.5,1.12,7.5,2.5c0,1.21,0.86,2.22,2,2.45v1.58C8.2,6.71,7.11,7.55,6.58,8.7 L4.99,8.22C5,8.15,5,8.08,5,8c0-1.38-1.12-2.5-2.5-2.5S0,6.62,0,8c0,1.38,1.12,2.5,2.5,2.5c0.95,0,1.78-0.53,2.2-1.32L6.3,9.66 c-0.18,1.12,0.15,2.3,0.99,3.18l-1.15,1.43C5.8,14.1,5.41,14,5,14c-1.38,0-2.5,1.12-2.5,2.5C2.5,17.88,3.62,19,5,19 s2.5-1.12,2.5-2.5c0-0.61-0.22-1.17-0.58-1.6l1.15-1.43c1.18,0.71,2.68,0.71,3.86,0l1.15,1.43c-0.36,0.43-0.58,0.99-0.58,1.6 c0,1.38,1.12,2.5,2.5,2.5s2.5-1.12,2.5-2.5c0-1.38-1.12-2.5-2.5-2.5c-0.41,0-0.8,0.1-1.14,0.27l-1.15-1.43 c0.84-0.88,1.17-2.06,0.99-3.18l1.59-0.48c0.42,0.78,1.25,1.32,2.2,1.32c1.38,0,2.5-1.12,2.5-2.5C20,6.62,18.88,5.5,17.5,5.5z M2.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C3.5,8.55,3.05,9,2.5,9z M5,17.5c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C6,17.05,5.55,17.5,5,17.5z M9,2.5c0-0.55,0.45-1,1-1s1,0.45,1,1c0,0.55-0.45,1-1,1S9,3.05,9,2.5z M10,12.5 c-1.24,0-2.25-1.01-2.25-2.25C7.75,9.01,8.76,8,10,8s2.25,1.01,2.25,2.25C12.25,11.49,11.24,12.5,10,12.5z M15,15.5 c0.55,0,1,0.45,1,1c0,0.55-0.45,1-1,1s-1-0.45-1-1C14,15.95,14.45,15.5,15,15.5z M17.5,9c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1 s1,0.45,1,1C18.5,8.55,18.05,9,17.5,9z\\\"></path>\"\n      }\n    }\n  },\n  \"phone\": {\n    \"name\": \"phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM5.03 5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.23-.84-.38-1.71-.44-2.6H5.03z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9.07 7.57C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02zm7.33 9.45c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.79 8.8c-.41-1.21-.67-2.48-.76-3.8h1.5c.07.89.22 1.76.46 2.59L5.79 8.8z\\\"></path>\"\n      }\n    }\n  },\n  \"location_off\": {\n    \"name\": \"location_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M17 9c0 1.06-.39 2.32-1 3.62l1.49 1.49C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7-1.84 0-3.5.71-4.75 1.86l1.43 1.43C9.56 4.5 10.72 4 12 4c2.76 0 5 2.24 5 5zm-5-2.5c-.59 0-1.13.21-1.56.56l3.5 3.5c.35-.43.56-.97.56-1.56 0-1.38-1.12-2.5-2.5-2.5zM3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 18.88c-2.01-2.58-4.8-6.74-4.98-9.59l6.92 6.92c-.65.98-1.33 1.89-1.94 2.67z\\\"></path>\"\n      }\n    }\n  },\n  \"qr_code_scanner\": {\n    \"name\": \"qr_code_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M9.5,6.5v3h-3v-3H9.5 M11,5H5v6h6V5L11,5z M9.5,14.5v3h-3v-3H9.5 M11,13H5v6h6V13L11,13z M17.5,6.5v3h-3v-3H17.5 M19,5h-6v6 h6V5L19,5z M13,13h1.5v1.5H13V13z M14.5,14.5H16V16h-1.5V14.5z M16,13h1.5v1.5H16V13z M13,16h1.5v1.5H13V16z M14.5,17.5H16V19h-1.5 V17.5z M16,16h1.5v1.5H16V16z M17.5,14.5H19V16h-1.5V14.5z M17.5,17.5H19V19h-1.5V17.5z M22,7h-2V4h-3V2h5V7z M22,22v-5h-2v3h-3v2 H22z M2,22h5v-2H4v-3H2V22z M2,2v5h2V4h3V2H2z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_primary_portrait\": {\n    \"name\": \"stay_primary_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v14H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_mail\": {\n    \"name\": \"contact_mail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M2 19h20V5H2v14zM14 6h7v5h-7V6zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM3 16.59C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18H3v-1.41z\\\" opacity=\\\".3\\\"></path><path d=\\\"M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zm0 16H2V5h20v14zM21 6h-7v5h7V6zm-1 2l-2.5 1.75L15 8V7l2.5 1.75L20 7v1zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm6 8.59c0-2.5-3.97-3.58-6-3.58s-6 1.08-6 3.58V18h12v-1.41zM5.48 16c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_tower\": {\n    \"name\": \"cell_tower\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M7.3,14.7l1.2-1.2c-1-1-1.5-2.3-1.5-3.5c0-1.3,0.5-2.6,1.5-3.5L7.3,5.3c-1.3,1.3-2,3-2,4.7S6,13.4,7.3,14.7z\\\"></path><path d=\\\"M19.1,2.9l-1.2,1.2c1.6,1.6,2.4,3.8,2.4,5.9c0,2.1-0.8,4.3-2.4,5.9l1.2,1.2c2-2,2.9-4.5,2.9-7.1C22,7.4,21,4.9,19.1,2.9z\\\"></path><path d=\\\"M6.1,4.1L4.9,2.9C3,4.9,2,7.4,2,10c0,2.6,1,5.1,2.9,7.1l1.2-1.2c-1.6-1.6-2.4-3.8-2.4-5.9C3.7,7.9,4.5,5.7,6.1,4.1z\\\"></path><path d=\\\"M16.7,14.7c1.3-1.3,2-3,2-4.7c-0.1-1.7-0.7-3.4-2-4.7l-1.2,1.2c1,1,1.5,2.3,1.5,3.5c0,1.3-0.5,2.6-1.5,3.5L16.7,14.7z\\\"></path><path d=\\\"M14.5,10c0-1.38-1.12-2.5-2.5-2.5S9.5,8.62,9.5,10c0,0.76,0.34,1.42,0.87,1.88L7,22h2l0.67-2h4.67L15,22h2l-3.37-10.12 C14.16,11.42,14.5,10.76,14.5,10z M10.33,18L12,13l1.67,5H10.33z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M6.5,11.5l1.06-1.06C6.94,9.81,6.55,8.95,6.55,8s0.39-1.81,1.01-2.44L6.5,4.5C5.6,5.4,5.05,6.63,5.05,8S5.6,10.6,6.5,11.5 z\\\"></path><path d=\\\"M5.41,3.41L4.34,2.34C2.9,3.79,2,5.79,2,8s0.9,4.21,2.34,5.66l1.06-1.06C4.23,11.42,3.5,9.79,3.5,8S4.23,4.58,5.41,3.41z\\\"></path><path d=\\\"M13.5,4.5l-1.06,1.06c0.62,0.62,1.01,1.49,1.01,2.44s-0.39,1.81-1.01,2.44l1.06,1.06c0.9-0.9,1.45-2.13,1.45-3.5 S14.4,5.4,13.5,4.5z\\\"></path><path d=\\\"M15.66,2.34l-1.06,1.06C15.77,4.58,16.5,6.21,16.5,8s-0.73,3.42-1.91,4.59l1.06,1.06C17.1,12.21,18,10.21,18,8 S17.1,3.79,15.66,2.34z\\\"></path><path d=\\\"M12,8c0-1.1-0.9-2-2-2S8,6.9,8,8c0,0.63,0.29,1.18,0.75,1.55L6,18h1.5l0.49-1.5h3.6L12,18h1.5l-2.31-8.4 C11.68,9.23,12,8.66,12,8z M8.47,15l1.46-4.5l1.24,4.5H8.47z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"mark_chat_unread\": {\n    \"name\": \"mark_chat_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" y=\\\"0\\\"></rect><path d=\\\"M4,16h16V7.9C19.68,7.96,19.34,8,19,8c-2.42,0-4.44-1.72-4.9-4H4V16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,7.9c0.74-0.15,1.42-0.48,2-0.92V16c0,1.1-0.9,2-2,2H6l-4,4V4c0-1.1,0.9-2,2-2h10.1C14.04,2.32,14,2.66,14,3 s0.04,0.68,0.1,1H4v12h16V7.9z M16,3c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,1.34,16,3z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\" y=\\\"0\\\"></rect><path d=\\\"M4,13h12V6.82C15.69,6.93,15.35,7,15,7c-1.66,0-3-1.34-3-3H4V13z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,6.82c0.37-0.13,0.71-0.33,1-0.59V13c0,0.55-0.45,1-1,1H6l-3,3V4c0-0.55,0.45-1,1-1h8.18C12.07,3.31,12,3.65,12,4H4v9 h12V6.82z M13,4c0,1.1,0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2S13,2.9,13,4z\\\"></path></g>\"\n      }\n    }\n  },\n  \"forum\": {\n    \"name\": \"forum\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 11V4H4v8.17L5.17 11H6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 13c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10zm-12-.83V4h11v7H5.17L4 12.17zM22 7c0-.55-.45-1-1-1h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7z\\\"></path>\"\n      }\n    }\n  },\n  \"pause_presentation\": {\n    \"name\": \"pause_presentation\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19h18V5H3v14zM13 8h2v8h-2V8zM9 8h2v8H9V8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"read_more\": {\n    \"name\": \"read_more\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"7\\\"></rect><rect height=\\\"2\\\" width=\\\"9\\\" x=\\\"13\\\" y=\\\"15\\\"></rect><rect height=\\\"2\\\" width=\\\"6\\\" x=\\\"16\\\" y=\\\"11\\\"></rect><polygon points=\\\"13,12 8,7 8,11 2,11 2,13 8,13 8,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"11,10 8,7 8,9.5 3,9.5 3,10.5 8,10.5 8,13\\\"></polygon><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"7\\\"></rect><rect height=\\\"1\\\" width=\\\"6\\\" x=\\\"11\\\" y=\\\"12\\\"></rect><rect height=\\\"1\\\" width=\\\"4\\\" x=\\\"13\\\" y=\\\"9.5\\\"></rect></g></g>\"\n      }\n    }\n  },\n  \"co_present\": {\n    \"name\": \"co_present\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g opacity=\\\".3\\\"><circle cx=\\\"9\\\" cy=\\\"10\\\" r=\\\"2\\\"></circle></g><g opacity=\\\".3\\\"><path d=\\\"M14.48,18.34C13.29,17.73,11.37,17,9,17c-2.37,0-4.29,0.73-5.48,1.34C2.9,18.66,3,19.28,3,20h12 C15,19.29,15.11,18.66,14.48,18.34z\\\"></path></g><g><path d=\\\"M21,3H3C1.9,3,1,3.9,1,5v8h2V5h18v16c1.1,0,2-0.9,2-2V5C23,3.9,22.1,3,21,3z\\\"></path></g><g><path d=\\\"M13,10c0-2.21-1.79-4-4-4s-4,1.79-4,4c0,2.21,1.79,4,4,4S13,12.21,13,10z M7,10c0-1.1,0.9-2,2-2s2,0.9,2,2 c0,1.1-0.9,2-2,2S7,11.1,7,10z\\\"></path></g><g><path d=\\\"M15.39,16.56C13.71,15.7,11.53,15,9,15c-2.53,0-4.71,0.7-6.39,1.56C1.61,17.07,1,18.1,1,19.22V22h16v-2.78 C17,18.1,16.39,17.07,15.39,16.56z M15,20H3c0-0.72-0.1-1.34,0.52-1.66C4.71,17.73,6.63,17,9,17c2.37,0,4.29,0.73,5.48,1.34 C15.11,18.66,15,19.29,15,20z\\\"></path></g></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M7,14.5c-1.5,0-2.98,0.4-4.28,1.16c-0.14,0.08-0.22,0.25-0.22,0.42v0.41h9v-0.41 c0-0.18-0.09-0.34-0.22-0.42C9.98,14.9,8.5,14.5,7,14.5z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"7\\\" cy=\\\"9\\\" opacity=\\\".3\\\" r=\\\"1.5\\\"></circle><path d=\\\"M17.5,3h-15C1.67,3,1,3.67,1,4.5V12h1.5V4.5h15V17c0.83,0,1.5-0.67,1.5-1.5v-11C19,3.67,18.33,3,17.5,3z\\\"></path><path d=\\\"M10,9c0-1.66-1.34-3-3-3S4,7.34,4,9s1.34,3,3,3S10,10.66,10,9z M5.5,9c0-0.83,0.67-1.5,1.5-1.5S8.5,8.17,8.5,9 S7.83,10.5,7,10.5S5.5,9.83,5.5,9z\\\"></path><path d=\\\"M12.03,14.37C10.56,13.5,8.84,13,7,13s-3.56,0.5-5.03,1.37C1.36,14.72,1,15.39,1,16.09V18h12v-1.91 C13,15.39,12.64,14.72,12.03,14.37z M11.5,16.5h-9v-0.41c0-0.18,0.09-0.34,0.22-0.42C4.02,14.9,5.5,14.5,7,14.5 s2.98,0.4,4.28,1.16c0.14,0.08,0.22,0.25,0.22,0.42V16.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"call\": {\n    \"name\": \"call\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 17.47c-.88-.07-1.75-.22-2.6-.45l-1.19 1.19c1.2.41 2.48.67 3.8.75v-1.49zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.8l1.2-1.2c-.24-.84-.39-1.71-.45-2.6z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 21c.55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17zm-3.6-3.98c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19zM5.03 5h1.5c.07.89.22 1.76.46 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble_outline\": {\n    \"name\": \"chat_bubble_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"stay_current_portrait\": {\n    \"name\": \"stay_current_portrait\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 5h10v14H7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z\\\"></path>\"\n      }\n    }\n  },\n  \"present_to_all\": {\n    \"name\": \"present_to_all\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M3 19.02h18V4.98H3v14.04zM12 8l4 4h-2v4h-4v-4H8l4-4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10 16h4v-4h2l-4-4-4 4h2zM21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04z\\\"></path>\"\n      }\n    }\n  },\n  \"call_missed\": {\n    \"name\": \"call_missed\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 10.41l7 7 9-9L19.59 7 12 14.59 6.41 9H11V7H3v8h2z\\\"></path>\"\n      }\n    }\n  },\n  \"import_export\": {\n    \"name\": \"import_export\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 6.99h3V14h2V6.99h3L9 3zM14 10v7.01h-3L15 21l4-3.99h-3V10z\\\"></path>\"\n      }\n    }\n  },\n  \"chat_bubble\": {\n    \"name\": \"chat_bubble\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"m4 18 2-2h14V4H4z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key_off\": {\n    \"name\": \"vpn_key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M17,14.17V13h-1.17l-2-2H21v2h-2v3L17,14.17z M7,16c-2.21,0-4-1.79-4-4c0-1.67,1.02-3.1,2.47-3.7l1.71,1.71 C7.12,10,7.06,10,7,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2c0-0.06,0-0.12-0.01-0.18l1.74,1.74C10.22,14.48,9.14,16,7,16z\\\"></path></g><g><path d=\\\"M2.81,2.81L1.39,4.22l2.59,2.59C2.2,7.85,1,9.79,1,12c0,3.31,2.69,6,6,6c2.22,0,4.15-1.21,5.19-3l7.59,7.61l1.41-1.41 L2.81,2.81z M7,16c-2.21,0-4-1.79-4-4c0-1.67,1.02-3.1,2.47-3.7l1.71,1.71C7.12,10,7.06,10,7,10c-1.1,0-2,0.9-2,2s0.9,2,2,2 s2-0.9,2-2c0-0.06,0-0.12-0.01-0.18l1.74,1.74C10.22,14.48,9.14,16,7,16z M17,14.17V13h-1.17L17,14.17z M13.83,11H21v2h-2v3l2,2 v-3h2V9H11.83L13.83,11z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M14.5,12.38V10.5h-1.88l-1-1h5.88v1h-2v2.88L14.5,12.38z M6,13.5c-1.93,0-3.5-1.57-3.5-3.5 c0-1.45,0.89-2.7,2.15-3.23L5.88,8C4.83,8.06,4,8.93,4,10c0,1.1,0.9,2,2,2c1.07,0,1.94-0.83,2-1.88l1.24,1.24 C8.78,12.27,7.87,13.5,6,13.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2.93,2.93L1.87,3.99l1.66,1.66C2.02,6.51,1,8.14,1,10c0,2.76,2.24,5,5,5c1.86,0,3.49-1.02,4.35-2.53l5.66,5.66l1.06-1.06 L2.93,2.93z M6,13.5c-1.93,0-3.5-1.57-3.5-3.5c0-1.45,0.89-2.7,2.15-3.23L5.88,8C4.83,8.06,4,8.93,4,10c0,1.1,0.9,2,2,2 c1.07,0,1.94-0.83,2-1.88l1.24,1.24C8.78,12.27,7.87,13.5,6,13.5z M14.5,12.38V10.5h-1.88L14.5,12.38z M17,14.88V12h2V8h-8.88 l1.5,1.5h5.88v1h-2v2.88L17,14.88z\\\"></path></g>\"\n      }\n    }\n  },\n  \"voicemail\": {\n    \"name\": \"voicemail\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z\\\"></path>\"\n      }\n    }\n  },\n  \"phonelink_setup\": {\n    \"name\": \"phonelink_setup\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 3v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2zm2.5 12.5c.29-.12.55-.29.8-.48l-.02.03 1.01.39c.23.09.49 0 .61-.22l.84-1.46c.12-.21.07-.49-.12-.64l-.85-.68-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03.85-.68c.19-.15.24-.43.12-.64l-.84-1.46c-.12-.21-.38-.31-.61-.22l-1.01.39.02.03c-.25-.17-.51-.34-.8-.46l-.17-1.08C9.3 7.18 9.09 7 8.84 7H7.16c-.25 0-.46.18-.49.42L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03-1.02-.39c-.23-.09-.49 0-.61.22l-.84 1.46c-.12.21-.07.49.12.64l.85.68.02-.03c-.02.15-.05.31-.05.47s.03.32.05.48l-.02-.03-.85.68c-.19.15-.24.43-.12.64l.84 1.46c.12.21.38.31.61.22l1.01-.39-.01-.04c.25.19.51.36.8.48l.17 1.07c.03.25.24.43.49.43h1.68c.25 0 .46-.18.49-.42l.17-1.08zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_emergency\": {\n    \"name\": \"contact_emergency\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M2,19h0.08c1.38-2.39,3.96-4,6.92-4s5.54,1.61,6.92,4H22V5H2V19z M15.03,8.15l0.75-1.3l1.47,0.85V6h1.5v1.7 l1.47-0.85l0.75,1.3L19.5,9l1.47,0.85l-0.75,1.3l-1.47-0.85V12h-1.5v-1.7l-1.47,0.85l-0.75-1.3L16.5,9L15.03,8.15z M9,8 c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S7.35,8,9,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M9,14c1.65,0,3-1.35,3-3s-1.35-3-3-3s-3,1.35-3,3S7.35,14,9,14z M9,10c0.54,0,1,0.46,1,1s-0.46,1-1,1s-1-0.46-1-1 S8.46,10,9,10z\\\"></path><path d=\\\"M22,3H2C0.9,3,0,3.9,0,5v14c0,1.1,0.9,2,2,2h20c1.1,0,1.99-0.9,1.99-2L24,5C24,3.9,23.1,3,22,3z M4.54,19 c1.1-1.22,2.69-2,4.46-2s3.36,0.78,4.46,2H4.54z M22,19h-6.08c-1.38-2.39-3.96-4-6.92-4s-5.54,1.61-6.92,4H2V5h20V19z\\\"></path><polygon points=\\\"15.78,11.15 17.25,10.3 17.25,12 18.75,12 18.75,10.3 20.22,11.15 20.97,9.85 19.5,9 20.97,8.15 20.22,6.85 18.75,7.7 18.75,6 17.25,6 17.25,7.7 15.78,6.85 15.03,8.15 16.5,9 15.03,9.85\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M1.5,15.5h0.14C2.93,13.97,4.85,13,7,13s4.07,0.97,5.36,2.5h6.14v-11h-17V15.5z M12.58,7.68l0.5-0.87 l1.42,0.82V6h1v1.63l1.42-0.82l0.5,0.87L16,8.5l1.42,0.82l-0.5,0.87L15.5,9.37V11h-1V9.37l-1.42,0.82l-0.5-0.87L14,8.5L12.58,7.68 z M7,7c1.38,0,2.5,1.12,2.5,2.5S8.38,12,7,12s-2.5-1.12-2.5-2.5S5.62,7,7,7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M18.5,3h-17C0.67,3,0,3.67,0,4.5v11C0,16.33,0.67,17,1.5,17h17c0.83,0,1.5-0.67,1.5-1.5v-11C20,3.67,19.33,3,18.5,3z M3.85,15.5c0.89-0.63,1.98-1,3.15-1s2.26,0.37,3.15,1H3.85z M18.5,15.5h-6.14C11.07,13.97,9.15,13,7,13s-4.07,0.97-5.36,2.5H1.5 v-11h17V15.5z\\\"></path><path d=\\\"M7,12c1.38,0,2.5-1.12,2.5-2.5S8.38,7,7,7S4.5,8.12,4.5,9.5S5.62,12,7,12z M7,8.5c0.54,0,1,0.46,1,1s-0.46,1-1,1 s-1-0.46-1-1S6.46,8.5,7,8.5z\\\"></path><polygon points=\\\"13.08,10.18 14.5,9.37 14.5,11 15.5,11 15.5,9.37 16.92,10.18 17.42,9.32 16,8.5 17.42,7.68 16.92,6.82 15.5,7.63 15.5,6 14.5,6 14.5,7.63 13.08,6.82 12.58,7.68 14,8.5 12.58,9.32\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"stop_screen_share\": {\n    \"name\": \"stop_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M10.67 12.54C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05L4.13 6.02H4v10.01h10.14l-3.47-3.49z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21.79 18l2 2H24v-2h-2.21zM1.11 2.98l1.55 1.56c-.41.37-.66.89-.66 1.48V16c0 1.1.9 2 2.01 2H0v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zM4 6.02h.13l4.95 4.93C7.94 12.07 7.31 13.52 7 15c.96-1.29 2.13-2.08 3.67-2.46l3.46 3.48H4v-10zm16 0v10.19l1.3 1.3c.42-.37.7-.89.7-1.49v-10c0-1.11-.9-2-2-2H7.8l2 2H20zm-7.07 3.13l2.79 2.78 1.28-1.2L13 7v2.13l-.07.02z\\\"></path><path d=\\\"M20 6.02H9.8l3.13 3.13c.02 0 .04-.01.07-.02V7l4 3.73-1.28 1.2L20 16.21V6.02z\\\" opacity=\\\".3\\\"></path>\"\n      }\n    }\n  },\n  \"spoke\": {\n    \"name\": \"spoke\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M12,9c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C14,8.1,13.1,9,12,9z M7,19c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C9,18.1,8.1,19,7,19z M17,19c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C19,18.1,18.1,19,17,19z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,7c0-2.21-1.79-4-4-4S8,4.79,8,7c0,2.21,1.79,4,4,4S16,9.21,16,7z M12,9c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C14,8.1,13.1,9,12,9z M7,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C11,14.79,9.21,13,7,13z M7,19c-1.1,0-2-0.9-2-2 c0-1.1,0.9-2,2-2s2,0.9,2,2C9,18.1,8.1,19,7,19z M17,13c-2.21,0-4,1.79-4,4c0,2.21,1.79,4,4,4s4-1.79,4-4C21,14.79,19.21,13,17,13z M17,19c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C19,18.1,18.1,19,17,19z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M10,7.5C9.17,7.5,8.5,6.83,8.5,6c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C11.5,6.83,10.83,7.5,10,7.5z M14,15.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C15.5,14.83,14.83,15.5,14,15.5z M6,15.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C7.5,14.83,6.83,15.5,6,15.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,3C8.34,3,7,4.34,7,6c0,1.66,1.34,3,3,3s3-1.34,3-3C13,4.34,11.66,3,10,3z M10,7.5C9.17,7.5,8.5,6.83,8.5,6 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C11.5,6.83,10.83,7.5,10,7.5z M14,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3 C17,12.34,15.66,11,14,11z M14,15.5c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C15.5,14.83,14.83,15.5,14,15.5z M6,11c-1.66,0-3,1.34-3,3c0,1.66,1.34,3,3,3s3-1.34,3-3C9,12.34,7.66,11,6,11z M6,15.5 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C7.5,14.83,6.83,15.5,6,15.5z\\\"></path>\"\n      }\n    }\n  },\n  \"cell_wifi\": {\n    \"name\": \"cell_wifi\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M6,22h16V5.97L6,22z M20,20h-2v-7.22l2-2V20z M5.22,7.22L3.93,5.93c3.9-3.91,10.24-3.91,14.15,0l-1.29,1.29 C13.6,4.03,8.41,4.03,5.22,7.22z M12.93,11.07L11,13l-1.93-1.93C10.14,10.01,11.86,10.01,12.93,11.07z M14.22,9.79 c-1.78-1.77-4.66-1.77-6.43,0L6.5,8.5c2.48-2.48,6.52-2.48,9,0L14.22,9.79z\\\"></path></g>\"\n      }\n    }\n  },\n  \"call_missed_outgoing\": {\n    \"name\": \"call_missed_outgoing\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M19 10.41V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41l9 9z\\\"></path>\"\n      }\n    }\n  },\n  \"call_made\": {\n    \"name\": \"call_made\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5.41 20L17 8.41V15h2V5H9v2h6.59L4 18.59z\\\"></path>\"\n      }\n    }\n  },\n  \"send_time_extension\": {\n    \"name\": \"send_time_extension\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><g><path d=\\\"M12,6V4c0-0.28-0.22-0.5-0.5-0.5S11,3.72,11,4v2H5.01v2.13C7.17,8.94,8,11.01,8,12.5 c0,1.5-0.83,3.57-3,4.37V19h2.13c0.71-1.93,2.44-2.8,3.87-2.97V12V8.76l2.89,1.45L18,12.26V6H12z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7.13,19H5v-2.13c2.17-0.8,3-2.87,3-4.37c0-1.49-0.83-3.56-2.99-4.37V6H11V4c0-0.28,0.22-0.5,0.5-0.5S12,3.72,12,4v2h6 v6.26l2,1V6c0-1.1-0.9-2-2-2h-4c0-1.38-1.12-2.5-2.5-2.5S9,2.62,9,4H5.01c-1.1,0-2,0.9-2,2v3.8C5.7,9.8,6,11.96,6,12.5 c0,0.54-0.29,2.7-3,2.7V19c0,1.1,0.9,2,2,2h3.8c0-2.16,1.37-2.78,2.2-2.94v-2.03C9.57,16.2,7.85,17.07,7.13,19z\\\"></path></g><polygon points=\\\"13,12 13,16 17,17 13,18 13,22 23,17\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><g><path d=\\\"M10.5,4.5V3c0-0.28-0.22-0.5-0.5-0.5S9.5,2.72,9.5,3v1.5h-5v2.34c1.18,0.56,2,1.77,2,3.16 s-0.82,2.6-2,3.16v2.34h2.34c0.49-1.04,1.48-1.79,2.66-1.96V10V7.57l2.17,1.09l3.83,1.91V4.5H10.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6.84,15.5H4.5v-2.34c1.18-0.56,2-1.77,2-3.16s-0.82-2.6-2-3.16V4.5h5V3c0-0.28,0.22-0.5,0.5-0.5s0.5,0.22,0.5,0.5v1.5h5 v6.07l1.5,0.75V4.5C17,3.67,16.33,3,15.5,3H12c0-1.1-0.9-2-2-2S8,1.9,8,3H4.5C3.67,3,3,3.67,3,4.5V8c1.1,0,2,0.9,2,2s-0.9,2-2,2 v3.5C3,16.33,3.67,17,4.5,17H8c0-0.93,0.64-1.71,1.5-1.93v-1.53C8.32,13.71,7.33,14.46,6.84,15.5z\\\"></path></g><polygon points=\\\"11,10 11,13 14,14 11,15 11,18 19,14\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"mail_outline\": {\n    \"name\": \"mail_outline\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z\\\"></path>\"\n      }\n    }\n  },\n  \"email\": {\n    \"name\": \"email\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 8l-8 5-8-5v10h16zm0-2H4l8 4.99z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM20 6l-8 4.99L4 6h16zM4 8l8 5 8-5v10H4V8z\\\"></path>\"\n      }\n    }\n  },\n  \"print_disabled\": {\n    \"name\": \"print_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 10H5c-.55 0-1 .45-1 1v4h2v-2h4l-3-3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M1.41 1.6L0 3.01 5 8c-1.66 0-3 1.34-3 3v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM6 15H4v-4c0-.55.45-1 1-1h2l3 3H6v2zm2 4v-4h4l4 4H8z\\\"></path><path d=\\\"M18 15.01l2-.01v-4c0-.55-.45-1-1-1h-6.34l3 3H18v2.01zm-1-3.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1z\\\" opacity=\\\".3\\\"></path><circle cx=\\\"18\\\" cy=\\\"11.51\\\" r=\\\"1\\\"></circle><path d=\\\"M16 5H8v.35L10.66 8H16z\\\" opacity=\\\".3\\\"></path><path d=\\\"M19 8h-1V3H6v.36l2 2V5h8v3h-5.34l2 2H19c.55 0 1 .45 1 1v4l-2 .01V13h-2.34l4 4H22v-6c0-1.66-1.34-3-3-3z\\\"></path>\"\n      }\n    }\n  },\n  \"comment\": {\n    \"name\": \"comment\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 17.17V4H4v12h14.83L20 17.17zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 18h14l4 4-.01-18c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 4h16v13.17L18.83 16H4V4zm2 8h12v2H6zm0-3h12v2H6zm0-3h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"dialer_sip\": {\n    \"name\": \"dialer_sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15.2 18.21c1.2.41 2.48.67 3.8.75v-1.5c-.88-.06-1.75-.22-2.59-.45l-1.21 1.2zM6.54 5h-1.5c.09 1.32.35 2.59.75 3.79l1.2-1.21c-.24-.83-.39-1.7-.45-2.58z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16 3h1v5h-1zm-4 4v1h3V5h-2V4h2V3h-3v3h2v1zm9-4h-3v5h1V6h2V3zm-1 2h-1V4h1v1zm1 11.5c0-.55-.45-1-1-1-1.25 0-2.45-.2-3.57-.57-.1-.03-.21-.05-.31-.05-.26 0-.51.1-.7.29l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5zM5.03 5h1.5c.07.88.22 1.75.46 2.59L5.79 8.8c-.41-1.21-.67-2.48-.76-3.8zM19 18.97c-1.32-.09-2.59-.35-3.8-.75l1.2-1.2c.85.24 1.71.39 2.59.45v1.5z\\\"></path>\"\n      }\n    }\n  },\n  \"mobile_screen_share\": {\n    \"name\": \"mobile_screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M7 19h10V5H7v14zm5.8-8.28v-1.7L16 12l-3.2 2.99v-1.75c-2.22 0-3.69.68-4.8 2.18.45-2.14 1.69-4.27 4.8-4.7z\\\" opacity=\\\".3\\\"></path><path d=\\\"M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z\\\"></path>\"\n      }\n    }\n  },\n  \"key_off\": {\n    \"name\": \"key_off\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g opacity=\\\".3\\\"><path d=\\\"M10.7,13.53l-1.71-1.71C9,11.88,9,11.94,9,12c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.06,0,0.12,0,0.18,0.01L5.47,8.3 C4.02,8.9,3,10.33,3,12c0,2.21,1.79,4,4,4C8.67,16,10.1,14.98,10.7,13.53z M16.26,13.43l1.24-0.93l1.81,1.36L21.17,12l-1-1 l-6.34,0L16.26,13.43z\\\"></path></g><g><path d=\\\"M10.7,13.53l-1.71-1.71C9,11.88,9,11.94,9,12c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2c0.06,0,0.12,0,0.18,0.01L5.47,8.3 C4.02,8.9,3,10.33,3,12c0,2.21,1.79,4,4,4C8.67,16,10.1,14.98,10.7,13.53z M12.19,15.02C11.15,16.8,9.21,18,7,18 c-3.31,0-6-2.69-6-6c0-2.21,1.2-4.15,2.98-5.19L1.39,4.22l1.41-1.41l18.38,18.38l-1.41,1.41L12.19,15.02z M16.26,13.43l1.24-0.93 l1.81,1.36L21.17,12l-1-1l-6.34,0l-2-2L21,9l0,0l3,3l-4.5,4.5l-0.69-0.51L16.26,13.43z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><path d=\\\"M8,10.12C7.94,11.17,7.06,12,6,12c-1.1,0-2-0.9-2-2c0-1.06,0.83-1.94,1.88-2L4.65,6.77 C3.39,7.3,2.5,8.55,2.5,10c0,1.93,1.57,3.5,3.5,3.5c1.45,0,2.7-0.89,3.23-2.15L8,10.12z M13.36,11.24l1.06-0.89l1.69,1.21l1.72-1.6 L16.88,9l-5.76,0L13.36,11.24z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11.12,9l-1.5-1.5l7.88,0l0,0L20,10l-3.75,3.5l-1.75-1.25l-0.07,0.06l-1.07-1.07l1.06-0.89l1.69,1.21l1.72-1.6L16.88,9 L11.12,9z M8,10.12C7.94,11.17,7.06,12,6,12c-1.1,0-2-0.9-2-2c0-1.06,0.83-1.94,1.88-2L4.65,6.77C3.39,7.3,2.5,8.55,2.5,10 c0,1.93,1.57,3.5,3.5,3.5c1.45,0,2.7-0.89,3.23-2.15L8,10.12z M10.35,12.47C9.49,13.98,7.86,15,6,15c-2.76,0-5-2.24-5-5 c0-1.86,1.02-3.49,2.53-4.35L1.87,3.99l1.06-1.06l14.14,14.14l-1.06,1.06L10.35,12.47z\\\"></path></g>\"\n      }\n    }\n  },\n  \"stay_primary_landscape\": {\n    \"name\": \"stay_primary_landscape\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 7h14v10H5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M21 5H3c-1.1 0-1.99.9-1.99 2L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10z\\\"></path>\"\n      }\n    }\n  },\n  \"dialpad\": {\n    \"name\": \"dialpad\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm2 8c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-8 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM6 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm12-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z\\\"></path>\"\n      }\n    }\n  },\n  \"more_time\": {\n    \"name\": \"more_time\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><polygon points=\\\"10,8 10,14 14.7,16.9 15.5,15.7 11.5,13.3 11.5,8\\\"></polygon><path d=\\\"M17.92,12c0.05,0.33,0.08,0.66,0.08,1c0,3.9-3.1,7-7,7s-7-3.1-7-7c0-3.9,3.1-7,7-7c0.7,0,1.37,0.1,2,0.29V4.23 C12.36,4.08,11.69,4,11,4c-5,0-9,4-9,9s4,9,9,9s9-4,9-9c0-0.34-0.02-0.67-0.06-1H17.92z\\\"></path><polygon points=\\\"20,5 20,2 18,2 18,5 15,5 15,7 18,7 18,10 20,10 20,7 23,7 23,5\\\"></polygon></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><polygon points=\\\"8.5,8.05 8.5,12.05 11.67,13.95 12.17,13.13 9.5,11.55 9.5,8.05\\\"></polygon><path d=\\\"M13.9,10c0.07,0.32,0.1,0.66,0.1,1c0,2.76-2.24,5-5,5s-5-2.24-5-5s2.24-5,5-5c0.71,0,1.39,0.15,2,0.42V5.35 C10.37,5.13,9.7,5,9,5c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6c0-0.34-0.04-0.67-0.09-1H13.9z\\\"></path><polygon points=\\\"15,6 15,4 14,4 14,6 14,6 12,6 12,7 14,7 14,9 15,9 15,7 15,7 17,7 17,6\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"chat\": {\n    \"name\": \"chat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4v13.17L5.17 16H20V4zm-6 10H6v-2h8v2zm4-3H6V9h12v2zm0-3H6V6h12v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h8v2H6zm0-3h12v2H6zm0-3h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"ring_volume\": {\n    \"name\": \"ring_volume\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.6 17.22c.66.37 1.28.79 1.87 1.27l1.07-1.07c-.91-.75-1.9-1.38-2.94-1.9v1.7zM3.53 18.5c.58-.47 1.21-.89 1.87-1.27v-1.71c-1.05.51-2.03 1.15-2.95 1.9l1.08 1.08z\\\" opacity=\\\".3\\\"></path><path d=\\\"M12 12C7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71 0-.27-.11-.52-.29-.7C20.66 13.78 16.54 12 12 12zm-6.6 5.23c-.66.37-1.29.8-1.87 1.27l-1.07-1.07c.91-.75 1.9-1.39 2.95-1.9v1.7zm15.07 1.26c-.59-.48-1.21-.9-1.87-1.27v-1.7c1.04.51 2.03 1.15 2.94 1.9l-1.07 1.07zM16.19 8.4l1.41 1.41s3.45-3.52 3.56-3.55l-1.41-1.41-3.56 3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z\\\"></path>\"\n      }\n    }\n  },\n  \"call_merge\": {\n    \"name\": \"call_merge\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M16.997 20.41l-3.408-3.407 1.4-1.407 3.41 3.408zM5.59 19L7 20.41l6-6V8h3.5L12 3.5 7.5 8H11v5.59z\\\"></path>\"\n      }\n    }\n  },\n  \"mark_email_unread\": {\n    \"name\": \"mark_email_unread\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\" x=\\\"0\\\"></rect><path d=\\\"M4,6h10.1c0.22,1.07,0.79,2,1.57,2.71L12,11L4,6z M4,8v10h16V9.9c-0.32,0.07-0.66,0.1-1,0.1 c-0.6,0-1.16-0.12-1.7-0.32L12,13L4,8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,9.9c0.74-0.15,1.42-0.48,2-0.92V18c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10.1 C14.04,4.32,14,4.66,14,5s0.04,0.68,0.1,1H4l8,5l3.67-2.29c0.47,0.43,1.02,0.76,1.63,0.98L12,13L4,8v10h16V9.9z M16,5 c0,1.66,1.34,3,3,3s3-1.34,3-3s-1.34-3-3-3S16,3.34,16,5z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M4,5h8c0,0.79,0.31,1.5,0.81,2.03L10,8.82L4,5z M4,6.18V15h12V7.82C15.69,7.93,15.35,8,15,8 c-0.48,0-0.94-0.13-1.34-0.33L10,10L4,6.18z\\\" opacity=\\\".3\\\"></path><path d=\\\"M16,7.82c0.37-0.13,0.71-0.33,1-0.59V15c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1V5c0-0.55,0.45-1,1-1h8.18 C12.07,4.31,12,4.65,12,5H4l6,3.82l2.81-1.79c0.24,0.26,0.53,0.47,0.85,0.64L10,10L4,6.18V15h12V7.82z M13,5c0,1.1,0.9,2,2,2 s2-0.9,2-2s-0.9-2-2-2S13,3.9,13,5z\\\"></path></g>\"\n      }\n    }\n  },\n  \"list_alt\": {\n    \"name\": \"list_alt\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M5 19h14V5H5v14zm6-12h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6v-2zM7 7h2v2H7V7zm0 4h2v2H7v-2zm0 4h2v2H7v-2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM20.1 3H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM19 19H5V5h14v14z\\\"></path>\"\n      }\n    }\n  },\n  \"unsubscribe\": {\n    \"name\": \"unsubscribe\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M18.99 5H5l7 3.5zm.01 8.05V7l-7 3.5L5 7v8h10.35c.56-1.18 1.76-2 3.15-2 .17 0 .34.03.5.05z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20.99 14.04V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10.05c.28 1.92 2.1 3.35 4.18 2.93 1.34-.27 2.43-1.37 2.7-2.71.25-1.24-.16-2.39-.94-3.18zm-2-9.04L12 8.5 5 5h13.99zm-3.64 10H5V7l7 3.5L19 7v6.05c-.16-.02-.33-.05-.5-.05-1.39 0-2.59.82-3.15 2zm5.15 2h-4v-1h4v1z\\\"></path>\"\n      }\n    }\n  },\n  \"message\": {\n    \"name\": \"message\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4H4v13.17L5.17 16H20V4zm-2 10H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14zm-16-.83V4h16v12H5.17L4 17.17zM6 12h12v2H6zm0-3h12v2H6zm0-3h12v2H6z\\\"></path>\"\n      }\n    }\n  },\n  \"domain_verification\": {\n    \"name\": \"domain_verification\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><path d=\\\"M5,18h14V8H5V18z M8.82,11.58l2.12,2.12l4.24-4.24l1.41,1.41l-5.66,5.66L7.4,13L8.82,11.58z\\\" opacity=\\\".3\\\"></path><polygon points=\\\"16.6,10.88 15.18,9.46 10.94,13.71 8.82,11.58 7.4,13 10.94,16.54\\\"></polygon><path d=\\\"M19,4H5C3.89,4,3,4.9,3,6v12c0,1.1,0.89,2,2,2h14c1.1,0,2-0.9,2-2V6C21,4.9,20.11,4,19,4z M19,18H5V8h14V18z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><path d=\\\"M5,15h10V7H5V15z M7.53,10.65l1.41,1.41l3.54-3.54l0.71,0.71l-4.24,4.24l-2.12-2.12L7.53,10.65z\\\" opacity=\\\".3\\\"></path><path d=\\\"M15,4H5C4.45,4,4,4.45,4,5v10c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1V5C16,4.45,15.55,4,15,4z M15,15H5V7h10V15z\\\"></path><polygon points=\\\"13.18,9.23 12.47,8.53 8.94,12.06 7.53,10.65 6.82,11.35 8.94,13.47\\\"></polygon></g></g>\"\n      }\n    }\n  },\n  \"nat\": {\n    \"name\": \"nat\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><circle cx=\\\"4\\\" cy=\\\"12\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M6.82,13H11v-2H6.82C6.4,9.84,5.3,9,4,9c-1.66,0-3,1.34-3,3s1.34,3,3,3C5.3,15,6.4,14.16,6.82,13z M4,13 c-0.55,0-1-0.45-1-1c0-0.55,0.45-1,1-1s1,0.45,1,1C5,12.55,4.55,13,4,13z\\\"></path><path d=\\\"M23,12l-4-3v2h-4.05C14.45,5.95,10.19,2,5,2v2c4.42,0,8,3.58,8,8s-3.58,8-8,8v2c5.19,0,9.45-3.95,9.95-9H19v2L23,12z\\\"></path></g></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect></g><g><g><circle cx=\\\"4\\\" cy=\\\"10\\\" opacity=\\\".3\\\" r=\\\"1\\\"></circle><path d=\\\"M5.93,10.5H10v-1H5.93C5.71,8.64,4.93,8,4,8c-1.1,0-2,0.9-2,2s0.9,2,2,2C4.93,12,5.71,11.36,5.93,10.5z M4,11 c-0.55,0-1-0.45-1-1s0.45-1,1-1s1,0.45,1,1S4.55,11,4,11z\\\"></path><path d=\\\"M18,10l-3-2v1.5h-3.03C11.72,5.87,8.7,3,5,3v1c3.31,0,6,2.69,6,6s-2.69,6-6,6v1c3.7,0,6.72-2.87,6.97-6.5H15V12L18,10z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"document_scanner\": {\n    \"name\": \"document_scanner\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M7,6v12h10V6H7z M15,16H9v-2h6V16z M15,13H9v-2h6V13z M15,10H9V8h6V10z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7,3H4v3H2V1h5V3z M22,6V1h-5v2h3v3H22z M7,21H4v-3H2v5h5V21z M20,18v3h-3v2h5v-5H20z M17,6H7v12h10V6z M19,18 c0,1.1-0.9,2-2,2H7c-1.1,0-2-0.9-2-2V6c0-1.1,0.9-2,2-2h10c1.1,0,2,0.9,2,2V18z M15,8H9v2h6V8z M15,11H9v2h6V11z M15,14H9v2h6V14z\\\"></path>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M6.51,5.5l-0.01,9h6.99l0.01-9H6.51z M12,13H8v-1.5h4V13z M12,10.75H8v-1.5h4V10.75z M12,8.5H8V7h4V8.5z\\\" opacity=\\\".3\\\"></path><path d=\\\"M6,2.5H3.5V5H2V1h4V2.5z M16.5,5l0-2.5l-2.5,0L14,1l4,0l0,4L16.5,5z M14,17.5h2.5V15H18v4h-4V17.5z M3.5,15l0,2.5l2.5,0 L6,19l-4,0l0-4L3.5,15z M13.49,14.5H6.5l0.01-9h6.99L13.49,14.5z M6.43,4C5.64,4,5,4.67,5,5.5v9C5,15.33,5.64,16,6.43,16h7.14 c0.79,0,1.43-0.67,1.43-1.5v-9C15,4.67,14.36,4,13.57,4H6.43z M12,7H8v1.5h4V7z M12,9.25H8v1.5h4V9.25z M12,11.5H8V13h4V11.5z\\\"></path>\"\n      }\n    }\n  },\n  \"contacts\": {\n    \"name\": \"contacts\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 6H4v12h16V6zm-8 1c1.38 0 2.5 1.12 2.5 2.5S13.38 12 12 12s-2.5-1.12-2.5-2.5S10.62 7 12 7zm5 10H7v-1.01C7 13.9 10.31 13 12 13s5 .9 5 2.99V17z\\\" opacity=\\\".3\\\"></path><path d=\\\"M4 20h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2zM4 6h16v12H4V6zm0-6h16v2H4zm0 22h16v2H4zm8-10c1.38 0 2.5-1.12 2.5-2.5S13.38 7 12 7 9.5 8.12 9.5 9.5 10.62 12 12 12zm0-3.5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4.5c-1.69 0-5 .9-5 2.99V17h10v-1.01C17 13.9 13.69 13 12 13zm-3.19 2.5c.61-.52 2.03-1 3.19-1 1.17 0 2.59.48 3.2 1H8.81z\\\"></path>\"\n      }\n    }\n  },\n  \"swap_calls\": {\n    \"name\": \"swap_calls\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M14 8h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4-4 4z\\\"></path>\"\n      }\n    }\n  },\n  \"call_received\": {\n    \"name\": \"call_received\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M15 17H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z\\\"></path>\"\n      }\n    }\n  },\n  \"call_split\": {\n    \"name\": \"call_split\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 4h-6l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10zM4 4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z\\\"></path>\"\n      }\n    }\n  },\n  \"person_add_disabled\": {\n    \"name\": \"person_add_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M9 18h5.87L13 16.13l-1.1.3C9.89 16.99 9.08 17.76 9 18zm8-10c0-1.1-.9-2-2-2-.99 0-1.81.72-1.97 1.67l2.31 2.31C16.27 9.82 17 8.99 17 8z\\\" opacity=\\\".3\\\"></path><path d=\\\"M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zM15 6c1.1 0 2 .9 2 2 0 .99-.73 1.82-1.67 1.97l-2.31-2.31C13.19 6.72 14.01 6 15 6zm1.69 8.16L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zm13.01 13.01L14.88 18H9c.08-.24.88-1.01 2.91-1.57l1.1-.3zM6 9.12l.88.88H6v-.88z\\\"></path>\"\n      }\n    }\n  },\n  \"3p\": {\n    \"name\": \"3p\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><path d=\\\"M4,4v13.17L5.17,16H20V4H4z M12,6c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S10.9,6,12,6z M16,14H8v-0.57 c0-0.81,0.48-1.53,1.22-1.85C10.07,11.21,11.01,11,12,11c0.99,0,1.93,0.21,2.78,0.58C15.52,11.9,16,12.62,16,13.43V14z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,2H4.01c-1.1,0-2,0.9-2,2L2,22l4-4h14c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M20,16H5.17L4,17.17V4h16V16z M12,10 c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S10.9,10,12,10z M16,13.43c0-0.81-0.48-1.53-1.22-1.85C13.93,11.21,12.99,11,12,11 c-0.99,0-1.93,0.21-2.78,0.58C8.48,11.9,8,12.62,8,13.43V14h8V13.43z\\\"></path></g>\"\n      }\n    }\n  },\n  \"sip\": {\n    \"name\": \"sip\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect></g><g><g><rect enable-background=\\\"new\\\" height=\\\"1\\\" opacity=\\\".3\\\" width=\\\"2\\\" x=\\\"15.5\\\" y=\\\"10.5\\\"></rect><path d=\\\"M4,18h16V6H4V18z M14,9h4c0.55,0,1,0.45,1,1v2c0,0.55-0.45,1-1,1h-2.5v2H14V9z M11,9h2v6h-2V9z M5,13.5h3.5v-0.75H6c-0.55,0-1-0.45-1-1V10c0-0.55,0.45-1,1-1h4v1.5H6.5v0.75H9c0.55,0,1,0.45,1,1V14 c0,0.55-0.45,1-1,1H5V13.5z\\\" enable-background=\\\"new\\\" opacity=\\\".3\\\"></path><path d=\\\"M10,14v-1.75c0-0.55-0.45-1-1-1H6.5V10.5H10V9H6c-0.55,0-1,0.45-1,1v1.75c0,0.55,0.45,1,1,1h2.5v0.75H5V15h4 C9.55,15,10,14.55,10,14z\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,18H4V6h16V18z\\\"></path><rect height=\\\"6\\\" width=\\\"2\\\" x=\\\"11\\\" y=\\\"9\\\"></rect><path d=\\\"M15.5,13H18c0.55,0,1-0.45,1-1v-2c0-0.55-0.45-1-1-1h-4v6h1.5V13z M15.5,10.5h2v1h-2V10.5z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"forward_to_inbox\": {\n    \"name\": \"forward_to_inbox\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><path d=\\\"M13,18H4V8l8,5l8-5v5l-2,0C15.24,13,13,15.24,13,18L13,18z M12,11L4,6h16L12,11z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h9v-2H4V8l8,5l8-5v5h2V6C22,4.9,21.1,4,20,4z M12,11L4,6h16L12,11z M19,15l4,4 l-4,4v-3h-4v-2h4V15z\\\"></path></g>\"\n      },\n      \"20\": {\n        \"width\": 20,\n        \"path\": \"<g><rect fill=\\\"none\\\" height=\\\"20\\\" width=\\\"20\\\"></rect><path d=\\\"M15,12.5l3,3l-3,3V16h-3v-1h3V12.5z M11,15H4V6.18L10,10l6-3.82V12h1V5c0-0.55-0.45-1-1-1H4C3.45,4,3,4.45,3,5v10 c0,0.55,0.45,1,1,1h7L11,15z M16,5l-6,3.82L4,5H16z\\\"></path><path d=\\\"M11,15H4V6.18L10,10l6-3.82V12l-2,0C12.34,12,11,13.34,11,15L11,15z M16,5l-6,3.82L4,5H16z\\\" opacity=\\\".3\\\"></path></g>\"\n      }\n    }\n  },\n  \"phonelink_lock\": {\n    \"name\": \"phonelink_lock\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M8 7C6.6 7 5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3V9.5C10.8 8.1 9.4 7 8 7zm1.5 4h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11zM21 21V3c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2z\\\"></path>\"\n      }\n    }\n  },\n  \"contact_phone\": {\n    \"name\": \"contact_phone\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M22 5H2v14h20V5zM9 6c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zm6 12H3v-1.41C3 14.08 6.97 13 9 13s6 1.08 6 3.58V18zm2.85-4h1.64L21 16l-1.99 1.99c-1.31-.98-2.28-2.38-2.73-3.99-.18-.64-.28-1.31-.28-2s.1-1.36.28-2c.45-1.62 1.42-3.01 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z\\\" opacity=\\\".3\\\"></path><path d=\\\"M2 21h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2zM2 5h20v14H2V5zm17.49 5L21 8l-1.99-1.99c-1.31.98-2.28 2.37-2.73 3.99-.18.64-.28 1.31-.28 2s.1 1.36.28 2c.45 1.61 1.42 3.01 2.73 3.99L21 16l-1.51-2h-1.64c-.22-.63-.35-1.3-.35-2s.13-1.37.35-2h1.64zM9 12c1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3 1.35 3 3 3zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 5c-2.03 0-6 1.08-6 3.58V18h12v-1.41C15 14.08 11.03 13 9 13zm-3.52 3c.74-.5 2.22-1 3.52-1s2.77.49 3.52 1H5.48z\\\"></path>\"\n      }\n    }\n  },\n  \"phone_disabled\": {\n    \"name\": \"phone_disabled\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<rect fill=\\\"none\\\" height=\\\"24\\\" width=\\\"24\\\"></rect><g><g><path d=\\\"M17.34,14.54l-1.43-1.43c0.56-0.73,1.05-1.5,1.47-2.32l-2.2-2.2c-0.28-0.28-0.36-0.67-0.25-1.02 C15.3,6.45,15.5,5.25,15.5,4c0-0.55,0.45-1,1-1H20c0.55,0,1,0.45,1,1C21,7.98,19.63,11.64,17.34,14.54z M14.52,17.35 C11.63,19.64,7.97,21,4,21c-0.55,0-1-0.45-1-1v-3.49c0-0.55,0.45-1,1-1c1.24,0,2.45-0.2,3.57-0.57c0.1-0.04,0.21-0.05,0.31-0.05 c0.26,0,0.51,0.1,0.71,0.29l2.2,2.2c0.81-0.42,1.58-0.9,2.3-1.46L1.39,4.22l1.42-1.41L21.19,21.2l-1.41,1.41L14.52,17.35z M17.46,5c-0.06,0.89-0.21,1.76-0.45,2.59l1.2,1.2c0.41-1.2,0.67-2.47,0.76-3.79H17.46z M7.6,17.02c-0.85,0.24-1.72,0.39-2.6,0.45 v1.49c1.32-0.09,2.59-0.35,3.8-0.75L7.6,17.02z\\\"></path></g></g>\"\n      }\n    }\n  },\n  \"textsms\": {\n    \"name\": \"textsms\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M4 18l2-2h14V4H4v14zm11-9h2v2h-2V9zm-4 0h2v2h-2V9zM7 9h2v2H7V9z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z\\\"></path>\"\n      }\n    }\n  },\n  \"vpn_key\": {\n    \"name\": \"vpn_key\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M11.71 10.33C11.01 8.34 9.11 7 7 7c-2.76 0-5 2.24-5 5s2.24 5 5 5c2.11 0 4.01-1.34 4.71-3.33l.23-.67H18v4h2v-4h2v-2H11.94l-.23-.67zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z\\\" opacity=\\\".3\\\"></path><path d=\\\"M7 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c2.72 0 5.17-1.58 6.32-4H16v4h6v-4h2V9H13.32C12.17 6.58 9.72 5 7 5zm15 8h-2v4h-2v-4h-6.06l-.23.67C11.01 15.66 9.11 17 7 17c-2.76 0-5-2.24-5-5s2.24-5 5-5c2.11 0 4.01 1.34 4.71 3.33l.23.67H22v2zM7 9c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z\\\"></path>\"\n      }\n    }\n  },\n  \"screen_share\": {\n    \"name\": \"screen_share\",\n    \"keywords\": [\n      \"communication\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M0 0h24v24H0V0z\\\" fill=\\\"none\\\"></path><path d=\\\"M20 16V6H4v10.01L20 16zm-7-1.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z\\\" opacity=\\\".3\\\"></path><path d=\\\"M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.11-.9-2-2-2H4c-1.11 0-2 .89-2 2v10c0 1.1.89 2 2 2H0v2h24v-2h-4zM4 16V6h16v10.01L4 16zm9-6.87c-3.89.54-5.44 3.2-6 5.87 1.39-1.87 3.22-2.72 6-2.72v2.19l4-3.74L13 7v2.13z\\\"></path>\"\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "sphinx_design/compiled/octicon_LICENSE",
    "content": "MIT License\n\nCopyright (c) 2023 GitHub Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "sphinx_design/compiled/octicons.json",
    "content": "{\n  \"accessibility\": {\n    \"name\": \"accessibility\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"accessibility-inset\": {\n    \"name\": \"accessibility-inset\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"alert\": {\n    \"name\": \"alert\",\n    \"keywords\": [\n      \"warning\",\n      \"triangle\",\n      \"exclamation\",\n      \"point\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"alert-fill\": {\n    \"name\": \"alert-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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.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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"apps\": {\n    \"name\": \"apps\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"archive\": {\n    \"name\": \"archive\",\n    \"keywords\": [\n      \"box\",\n      \"catalog\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path d=\\\"M9.75 11.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M9.75 11.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-both\": {\n    \"name\": \"arrow-both\",\n    \"keywords\": [\n      \"point\",\n      \"direction\",\n      \"left\",\n      \"right\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-down\": {\n    \"name\": \"arrow-down\",\n    \"keywords\": [\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-down-left\": {\n    \"name\": \"arrow-down-left\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-down-right\": {\n    \"name\": \"arrow-down-right\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-left\": {\n    \"name\": \"arrow-left\",\n    \"keywords\": [\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-right\": {\n    \"name\": \"arrow-right\",\n    \"keywords\": [\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-switch\": {\n    \"name\": \"arrow-switch\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-up\": {\n    \"name\": \"arrow-up\",\n    \"keywords\": [\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-up-left\": {\n    \"name\": \"arrow-up-left\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"arrow-up-right\": {\n    \"name\": \"arrow-up-right\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"beaker\": {\n    \"name\": \"beaker\",\n    \"keywords\": [\n      \"experiment\",\n      \"labs\",\n      \"experimental\",\n      \"feature\",\n      \"test\",\n      \"science\",\n      \"education\",\n      \"study\",\n      \"development\",\n      \"testing\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bell\": {\n    \"name\": \"bell\",\n    \"keywords\": [\n      \"notification\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bell-fill\": {\n    \"name\": \"bell-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bell-slash\": {\n    \"name\": \"bell-slash\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"blocked\": {\n    \"name\": \"blocked\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bold\": {\n    \"name\": \"bold\",\n    \"keywords\": [\n      \"markdown\",\n      \"bold\",\n      \"text\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"book\": {\n    \"name\": \"book\",\n    \"keywords\": [\n      \"book\",\n      \"journal\",\n      \"wiki\",\n      \"readme\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bookmark\": {\n    \"name\": \"bookmark\",\n    \"keywords\": [\n      \"tab\",\n      \"star\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bookmark-fill\": {\n    \"name\": \"bookmark-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bookmark-slash\": {\n    \"name\": \"bookmark-slash\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bookmark-slash-fill\": {\n    \"name\": \"bookmark-slash-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"briefcase\": {\n    \"name\": \"briefcase\",\n    \"keywords\": [\n      \"suitcase\",\n      \"business\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"broadcast\": {\n    \"name\": \"broadcast\",\n    \"keywords\": [\n      \"rss\",\n      \"radio\",\n      \"signal\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"browser\": {\n    \"name\": \"browser\",\n    \"keywords\": [\n      \"window\",\n      \"web\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"bug\": {\n    \"name\": \"bug\",\n    \"keywords\": [\n      \"insect\",\n      \"issue\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"cache\": {\n    \"name\": \"cache\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"calendar\": {\n    \"name\": \"calendar\",\n    \"keywords\": [\n      \"time\",\n      \"day\",\n      \"month\",\n      \"year\",\n      \"date\",\n      \"appointment\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"check\": {\n    \"name\": \"check\",\n    \"keywords\": [\n      \"mark\",\n      \"yes\",\n      \"confirm\",\n      \"accept\",\n      \"ok\",\n      \"success\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"check-circle\": {\n    \"name\": \"check-circle\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"check-circle-fill\": {\n    \"name\": \"check-circle-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"checkbox\": {\n    \"name\": \"checkbox\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"checklist\": {\n    \"name\": \"checklist\",\n    \"keywords\": [\n      \"todo\",\n      \"tasks\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"chevron-down\": {\n    \"name\": \"chevron-down\",\n    \"keywords\": [\n      \"triangle\",\n      \"arrow\"\n    ],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"chevron-left\": {\n    \"name\": \"chevron-left\",\n    \"keywords\": [\n      \"triangle\",\n      \"arrow\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"chevron-right\": {\n    \"name\": \"chevron-right\",\n    \"keywords\": [\n      \"triangle\",\n      \"arrow\"\n    ],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"chevron-up\": {\n    \"name\": \"chevron-up\",\n    \"keywords\": [\n      \"triangle\",\n      \"arrow\"\n    ],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"circle\": {\n    \"name\": \"circle\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"circle-slash\": {\n    \"name\": \"circle-slash\",\n    \"keywords\": [\n      \"no\",\n      \"deny\",\n      \"fail\",\n      \"failure\",\n      \"error\",\n      \"bad\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"clock\": {\n    \"name\": \"clock\",\n    \"keywords\": [\n      \"time\",\n      \"hour\",\n      \"minute\",\n      \"second\",\n      \"watch\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"clock-fill\": {\n    \"name\": \"clock-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"cloud\": {\n    \"name\": \"cloud\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"cloud-offline\": {\n    \"name\": \"cloud-offline\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"code\": {\n    \"name\": \"code\",\n    \"keywords\": [\n      \"brackets\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"code-of-conduct\": {\n    \"name\": \"code-of-conduct\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"code-review\": {\n    \"name\": \"code-review\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"code-square\": {\n    \"name\": \"code-square\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"codescan\": {\n    \"name\": \"codescan\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"codescan-checkmark\": {\n    \"name\": \"codescan-checkmark\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"codespaces\": {\n    \"name\": \"codespaces\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"columns\": {\n    \"name\": \"columns\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"command-palette\": {\n    \"name\": \"command-palette\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"comment\": {\n    \"name\": \"comment\",\n    \"keywords\": [\n      \"speak\",\n      \"bubble\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"comment-discussion\": {\n    \"name\": \"comment-discussion\",\n    \"keywords\": [\n      \"converse\",\n      \"talk\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"commit\": {\n    \"name\": \"commit\",\n    \"keywords\": [],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"container\": {\n    \"name\": \"container\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"copilot\": {\n    \"name\": \"copilot\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"48\": {\n        \"width\": 48,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"48\",\n            \"height\": \"48\",\n            \"viewBox\": \"0 0 48 48\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"96\": {\n        \"width\": 96,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"96\",\n            \"height\": \"96\",\n            \"viewBox\": \"0 0 96 96\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"copilot-error\": {\n    \"name\": \"copilot-error\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"copilot-warning\": {\n    \"name\": \"copilot-warning\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"copy\": {\n    \"name\": \"copy\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"cpu\": {\n    \"name\": \"cpu\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"credit-card\": {\n    \"name\": \"credit-card\",\n    \"keywords\": [\n      \"money\",\n      \"billing\",\n      \"payments\",\n      \"transactions\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M10.75 9a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M10.75 9a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15.25 14a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M15.25 14a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"cross-reference\": {\n    \"name\": \"cross-reference\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"dash\": {\n    \"name\": \"dash\",\n    \"keywords\": [\n      \"hyphen\",\n      \"range\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"database\": {\n    \"name\": \"database\",\n    \"keywords\": [\n      \"disks\",\n      \"data\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"dependabot\": {\n    \"name\": \"dependabot\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"desktop-download\": {\n    \"name\": \"desktop-download\",\n    \"keywords\": [\n      \"clone\",\n      \"download\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"device-camera\": {\n    \"name\": \"device-camera\",\n    \"keywords\": [\n      \"photo\",\n      \"picture\",\n      \"image\",\n      \"snapshot\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"device-camera-video\": {\n    \"name\": \"device-camera-video\",\n    \"keywords\": [\n      \"watch\",\n      \"view\",\n      \"media\",\n      \"stream\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"device-desktop\": {\n    \"name\": \"device-desktop\",\n    \"keywords\": [\n      \"computer\",\n      \"monitor\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"device-mobile\": {\n    \"name\": \"device-mobile\",\n    \"keywords\": [\n      \"phone\",\n      \"iphone\",\n      \"cellphone\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"devices\": {\n    \"name\": \"devices\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"diamond\": {\n    \"name\": \"diamond\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"diff\": {\n    \"name\": \"diff\",\n    \"keywords\": [\n      \"difference\",\n      \"changes\",\n      \"compare\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"diff-added\": {\n    \"name\": \"diff-added\",\n    \"keywords\": [\n      \"new\",\n      \"addition\",\n      \"plus\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"diff-ignored\": {\n    \"name\": \"diff-ignored\",\n    \"keywords\": [\n      \"slash\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"diff-modified\": {\n    \"name\": \"diff-modified\",\n    \"keywords\": [\n      \"dot\",\n      \"changed\",\n      \"updated\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"diff-removed\": {\n    \"name\": \"diff-removed\",\n    \"keywords\": [\n      \"deleted\",\n      \"subtracted\",\n      \"dash\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"diff-renamed\": {\n    \"name\": \"diff-renamed\",\n    \"keywords\": [\n      \"moved\",\n      \"arrow\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"discussion-closed\": {\n    \"name\": \"discussion-closed\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"discussion-duplicate\": {\n    \"name\": \"discussion-duplicate\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"discussion-outdated\": {\n    \"name\": \"discussion-outdated\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"dot\": {\n    \"name\": \"dot\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"dot-fill\": {\n    \"name\": \"dot-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"download\": {\n    \"name\": \"download\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"duplicate\": {\n    \"name\": \"duplicate\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"ellipsis\": {\n    \"name\": \"ellipsis\",\n    \"keywords\": [\n      \"dot\",\n      \"read\",\n      \"more\",\n      \"hidden\",\n      \"expand\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"eye\": {\n    \"name\": \"eye\",\n    \"keywords\": [\n      \"look\",\n      \"watch\",\n      \"see\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M15.5 12a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M15.5 12a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"eye-closed\": {\n    \"name\": \"eye-closed\",\n    \"keywords\": [\n      \"hidden\",\n      \"invisible\",\n      \"concealed\",\n      \"\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-discussion\": {\n    \"name\": \"feed-discussion\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-forked\": {\n    \"name\": \"feed-forked\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-heart\": {\n    \"name\": \"feed-heart\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-issue-closed\": {\n    \"name\": \"feed-issue-closed\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-issue-draft\": {\n    \"name\": \"feed-issue-draft\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-issue-open\": {\n    \"name\": \"feed-issue-open\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-issue-reopen\": {\n    \"name\": \"feed-issue-reopen\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 17,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"17\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 17 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-merged\": {\n    \"name\": \"feed-merged\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-person\": {\n    \"name\": \"feed-person\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-plus\": {\n    \"name\": \"feed-plus\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-public\": {\n    \"name\": \"feed-public\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-pull-request-closed\": {\n    \"name\": \"feed-pull-request-closed\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-pull-request-draft\": {\n    \"name\": \"feed-pull-request-draft\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-pull-request-open\": {\n    \"name\": \"feed-pull-request-open\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-repo\": {\n    \"name\": \"feed-repo\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-rocket\": {\n    \"name\": \"feed-rocket\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-star\": {\n    \"name\": \"feed-star\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-tag\": {\n    \"name\": \"feed-tag\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M7.22 6.5a.72.72 0 1 1-1.44 0 .72.72 0 0 1 1.44 0Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M7.22 6.5a.72.72 0 1 1-1.44 0 .72.72 0 0 1 1.44 0Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"feed-trophy\": {\n    \"name\": \"feed-trophy\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M11 5h1v1.146a1 1 0 0 1-.629.928L11 7.223V5ZM5 7.223l-.371-.149A1 1 0 0 1 4 6.146V5h1v2.223Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M11 5h1v1.146a1 1 0 0 1-.629.928L11 7.223V5ZM5 7.223l-.371-.149A1 1 0 0 1 4 6.146V5h1v2.223Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file\": {\n    \"name\": \"file\",\n    \"keywords\": [\n      \"file\",\n      \"text\",\n      \"words\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-added\": {\n    \"name\": \"file-added\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-badge\": {\n    \"name\": \"file-badge\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-binary\": {\n    \"name\": \"file-binary\",\n    \"keywords\": [\n      \"image\",\n      \"video\",\n      \"word\",\n      \"powerpoint\",\n      \"excel\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-code\": {\n    \"name\": \"file-code\",\n    \"keywords\": [\n      \"text\",\n      \"javascript\",\n      \"html\",\n      \"css\",\n      \"php\",\n      \"ruby\",\n      \"coffeescript\",\n      \"sass\",\n      \"scss\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-diff\": {\n    \"name\": \"file-diff\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-directory\": {\n    \"name\": \"file-directory\",\n    \"keywords\": [\n      \"folder\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-directory-fill\": {\n    \"name\": \"file-directory-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-directory-open-fill\": {\n    \"name\": \"file-directory-open-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-directory-symlink\": {\n    \"name\": \"file-directory-symlink\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-media\": {\n    \"name\": \"file-media\",\n    \"keywords\": [\n      \"image\",\n      \"video\",\n      \"audio\"\n    ],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-moved\": {\n    \"name\": \"file-moved\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-removed\": {\n    \"name\": \"file-removed\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-submodule\": {\n    \"name\": \"file-submodule\",\n    \"keywords\": [\n      \"folder\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-symlink-file\": {\n    \"name\": \"file-symlink-file\",\n    \"keywords\": [\n      \"link\",\n      \"alias\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"file-zip\": {\n    \"name\": \"file-zip\",\n    \"keywords\": [\n      \"compress\",\n      \"archive\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"filter\": {\n    \"name\": \"filter\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"filter-remove\": {\n    \"name\": \"filter-remove\",\n    \"keywords\": [\n      \"funnel\",\n      \"filter\",\n      \"remove\",\n      \"delete\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"fiscal-host\": {\n    \"name\": \"fiscal-host\",\n    \"keywords\": [\n      \"safe\",\n      \"money\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M10 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M10 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"flame\": {\n    \"name\": \"flame\",\n    \"keywords\": [\n      \"fire\",\n      \"hot\",\n      \"burn\",\n      \"trending\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"fold\": {\n    \"name\": \"fold\",\n    \"keywords\": [\n      \"unfold\",\n      \"hide\",\n      \"collapse\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"fold-down\": {\n    \"name\": \"fold-down\",\n    \"keywords\": [\n      \"unfold\",\n      \"hide\",\n      \"collapse\",\n      \"down\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"fold-up\": {\n    \"name\": \"fold-up\",\n    \"keywords\": [\n      \"unfold\",\n      \"hide\",\n      \"collapse\",\n      \"up\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"gear\": {\n    \"name\": \"gear\",\n    \"keywords\": [\n      \"settings\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"gift\": {\n    \"name\": \"gift\",\n    \"keywords\": [\n      \"package\",\n      \"present\",\n      \"skill\",\n      \"craft\",\n      \"freebie\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-branch\": {\n    \"name\": \"git-branch\",\n    \"keywords\": [\n      \"fork\",\n      \"branch\",\n      \"git\",\n      \"duplicate\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-commit\": {\n    \"name\": \"git-commit\",\n    \"keywords\": [\n      \"save\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-compare\": {\n    \"name\": \"git-compare\",\n    \"keywords\": [\n      \"difference\",\n      \"changes\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-merge\": {\n    \"name\": \"git-merge\",\n    \"keywords\": [\n      \"join\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-merge-queue\": {\n    \"name\": \"git-merge-queue\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-pull-request\": {\n    \"name\": \"git-pull-request\",\n    \"keywords\": [\n      \"review\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-pull-request-closed\": {\n    \"name\": \"git-pull-request-closed\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"git-pull-request-draft\": {\n    \"name\": \"git-pull-request-draft\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"globe\": {\n    \"name\": \"globe\",\n    \"keywords\": [\n      \"world\",\n      \"earth\",\n      \"planet\",\n      \"enterprise\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"goal\": {\n    \"name\": \"goal\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"grabber\": {\n    \"name\": \"grabber\",\n    \"keywords\": [\n      \"mover\",\n      \"drag\",\n      \"drop\",\n      \"sort\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"graph\": {\n    \"name\": \"graph\",\n    \"keywords\": [\n      \"trend\",\n      \"stats\",\n      \"statistics\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"hash\": {\n    \"name\": \"hash\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"heading\": {\n    \"name\": \"heading\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"heart\": {\n    \"name\": \"heart\",\n    \"keywords\": [\n      \"love\",\n      \"beat\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"heart-fill\": {\n    \"name\": \"heart-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"history\": {\n    \"name\": \"history\",\n    \"keywords\": [\n      \"time\",\n      \"past\",\n      \"revert\",\n      \"back\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"home\": {\n    \"name\": \"home\",\n    \"keywords\": [\n      \"welcome\",\n      \"index\",\n      \"house\",\n      \"building\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"home-fill\": {\n    \"name\": \"home-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"horizontal-rule\": {\n    \"name\": \"horizontal-rule\",\n    \"keywords\": [\n      \"hr\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"hourglass\": {\n    \"name\": \"hourglass\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"hubot\": {\n    \"name\": \"hubot\",\n    \"keywords\": [\n      \"robot\",\n      \"bot\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"id-badge\": {\n    \"name\": \"id-badge\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"image\": {\n    \"name\": \"image\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"inbox\": {\n    \"name\": \"inbox\",\n    \"keywords\": [\n      \"mail\",\n      \"todo\",\n      \"new\",\n      \"messages\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"infinity\": {\n    \"name\": \"infinity\",\n    \"keywords\": [\n      \"unlimited\",\n      \"infinite\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"info\": {\n    \"name\": \"info\",\n    \"keywords\": [\n      \"help\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"issue-closed\": {\n    \"name\": \"issue-closed\",\n    \"keywords\": [\n      \"done\",\n      \"complete\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"issue-draft\": {\n    \"name\": \"issue-draft\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"issue-opened\": {\n    \"name\": \"issue-opened\",\n    \"keywords\": [\n      \"new\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\\\"></path><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 0Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"issue-reopened\": {\n    \"name\": \"issue-reopened\",\n    \"keywords\": [\n      \"regression\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path d=\\\"M13.414 13.414a2 2 0 1 1-2.828-2.828 2 2 0 0 1 2.828 2.828Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M13.414 13.414a2 2 0 1 1-2.828-2.828 2 2 0 0 1 2.828 2.828Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"issue-tracked-by\": {\n    \"name\": \"issue-tracked-by\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"issue-tracks\": {\n    \"name\": \"issue-tracks\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"italic\": {\n    \"name\": \"italic\",\n    \"keywords\": [\n      \"font\",\n      \"italic\",\n      \"style\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"iterations\": {\n    \"name\": \"iterations\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"kebab-horizontal\": {\n    \"name\": \"kebab-horizontal\",\n    \"keywords\": [\n      \"kebab\",\n      \"dot\",\n      \"menu\",\n      \"more\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<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>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"key\": {\n    \"name\": \"key\",\n    \"keywords\": [\n      \"key\",\n      \"lock\",\n      \"secure\",\n      \"safe\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M16.75 8.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M16.75 8.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"key-asterisk\": {\n    \"name\": \"key-asterisk\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"law\": {\n    \"name\": \"law\",\n    \"keywords\": [\n      \"legal\",\n      \"bill\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"light-bulb\": {\n    \"name\": \"light-bulb\",\n    \"keywords\": [\n      \"idea\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"link\": {\n    \"name\": \"link\",\n    \"keywords\": [\n      \"connect\",\n      \"hyperlink\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"link-external\": {\n    \"name\": \"link-external\",\n    \"keywords\": [\n      \"out\",\n      \"see\",\n      \"more\",\n      \"go\",\n      \"to\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"list-ordered\": {\n    \"name\": \"list-ordered\",\n    \"keywords\": [\n      \"numbers\",\n      \"tasks\",\n      \"todo\",\n      \"items\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"list-unordered\": {\n    \"name\": \"list-unordered\",\n    \"keywords\": [\n      \"bullet\",\n      \"point\",\n      \"tasks\",\n      \"todo\",\n      \"items\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"location\": {\n    \"name\": \"location\",\n    \"keywords\": [\n      \"here\",\n      \"marker\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M12 13.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M12 13.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"lock\": {\n    \"name\": \"lock\",\n    \"keywords\": [\n      \"secure\",\n      \"safe\",\n      \"protected\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"log\": {\n    \"name\": \"log\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"logo-gist\": {\n    \"name\": \"logo-gist\",\n    \"keywords\": [\n      \"brand\",\n      \"github\",\n      \"logo\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 25,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"25\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 25 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"logo-github\": {\n    \"name\": \"logo-github\",\n    \"keywords\": [\n      \"brand\",\n      \"github\",\n      \"logo\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 45,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"45\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 45 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"mail\": {\n    \"name\": \"mail\",\n    \"keywords\": [\n      \"email\",\n      \"unread\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"mark-github\": {\n    \"name\": \"mark-github\",\n    \"keywords\": [\n      \"octocat\",\n      \"brand\",\n      \"github\",\n      \"logo\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"markdown\": {\n    \"name\": \"markdown\",\n    \"keywords\": [\n      \"markup\",\n      \"style\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"megaphone\": {\n    \"name\": \"megaphone\",\n    \"keywords\": [\n      \"bullhorn\",\n      \"loud\",\n      \"shout\",\n      \"broadcast\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"mention\": {\n    \"name\": \"mention\",\n    \"keywords\": [\n      \"at\",\n      \"ping\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"meter\": {\n    \"name\": \"meter\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"milestone\": {\n    \"name\": \"milestone\",\n    \"keywords\": [\n      \"marker\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"mirror\": {\n    \"name\": \"mirror\",\n    \"keywords\": [\n      \"reflect\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"moon\": {\n    \"name\": \"moon\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"mortar-board\": {\n    \"name\": \"mortar-board\",\n    \"keywords\": [\n      \"education\",\n      \"learn\",\n      \"teach\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"move-to-bottom\": {\n    \"name\": \"move-to-bottom\",\n    \"keywords\": [\n      \"terminal\",\n      \"end\",\n      \"down\",\n      \"end\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"move-to-end\": {\n    \"name\": \"move-to-end\",\n    \"keywords\": [\n      \"terminal\",\n      \"right\",\n      \"finish\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"move-to-start\": {\n    \"name\": \"move-to-start\",\n    \"keywords\": [\n      \"terminal\",\n      \"left\",\n      \"beginning\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"move-to-top\": {\n    \"name\": \"move-to-top\",\n    \"keywords\": [\n      \"terminal\",\n      \"up\",\n      \"start\",\n      \"beginning\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"multi-select\": {\n    \"name\": \"multi-select\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"mute\": {\n    \"name\": \"mute\",\n    \"keywords\": [\n      \"quiet\",\n      \"sound\",\n      \"audio\",\n      \"turn\",\n      \"off\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"no-entry\": {\n    \"name\": \"no-entry\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M4.25 7.25a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M4.25 7.25a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"no-entry-fill\": {\n    \"name\": \"no-entry-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path d=\\\"M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm3 5H3v2h6Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm3 5H3v2h6Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"north-star\": {\n    \"name\": \"north-star\",\n    \"keywords\": [\n      \"star\",\n      \"snowflake\",\n      \"asterisk\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"note\": {\n    \"name\": \"note\",\n    \"keywords\": [\n      \"card\",\n      \"paper\",\n      \"ticket\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"number\": {\n    \"name\": \"number\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"organization\": {\n    \"name\": \"organization\",\n    \"keywords\": [\n      \"people\",\n      \"group\",\n      \"team\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"package\": {\n    \"name\": \"package\",\n    \"keywords\": [\n      \"box\",\n      \"ship\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"package-dependencies\": {\n    \"name\": \"package-dependencies\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"package-dependents\": {\n    \"name\": \"package-dependents\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"paintbrush\": {\n    \"name\": \"paintbrush\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"paper-airplane\": {\n    \"name\": \"paper-airplane\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"paperclip\": {\n    \"name\": \"paperclip\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"passkey-fill\": {\n    \"name\": \"passkey-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"paste\": {\n    \"name\": \"paste\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"pencil\": {\n    \"name\": \"pencil\",\n    \"keywords\": [\n      \"edit\",\n      \"change\",\n      \"update\",\n      \"write\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"people\": {\n    \"name\": \"people\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"person\": {\n    \"name\": \"person\",\n    \"keywords\": [\n      \"people\",\n      \"man\",\n      \"woman\",\n      \"human\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"person-add\": {\n    \"name\": \"person-add\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"person-fill\": {\n    \"name\": \"person-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"pin\": {\n    \"name\": \"pin\",\n    \"keywords\": [\n      \"save\",\n      \"star\",\n      \"bookmark\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"pin-slash\": {\n    \"name\": \"pin-slash\",\n    \"keywords\": [\n      \"unpin\",\n      \"unsave\",\n      \"unstar\",\n      \"unbookmark\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"pivot-column\": {\n    \"name\": \"pivot-column\",\n    \"keywords\": [\n      \"pivot\",\n      \"column\",\n      \"table\",\n      \"project\",\n      \"filter\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"play\": {\n    \"name\": \"play\",\n    \"keywords\": [\n      \"play\",\n      \"start\",\n      \"begin\",\n      \"action\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"plug\": {\n    \"name\": \"plug\",\n    \"keywords\": [\n      \"hook\",\n      \"webhook\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"plus\": {\n    \"name\": \"plus\",\n    \"keywords\": [\n      \"add\",\n      \"new\",\n      \"more\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"plus-circle\": {\n    \"name\": \"plus-circle\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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.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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"project\": {\n    \"name\": \"project\",\n    \"keywords\": [\n      \"board\",\n      \"kanban\",\n      \"columns\",\n      \"scrum\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"project-roadmap\": {\n    \"name\": \"project-roadmap\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"project-symlink\": {\n    \"name\": \"project-symlink\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"project-template\": {\n    \"name\": \"project-template\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"pulse\": {\n    \"name\": \"pulse\",\n    \"keywords\": [\n      \"graph\",\n      \"trend\",\n      \"line\",\n      \"activity\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"question\": {\n    \"name\": \"question\",\n    \"keywords\": [\n      \"help\",\n      \"explain\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"quote\": {\n    \"name\": \"quote\",\n    \"keywords\": [\n      \"quotation\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"read\": {\n    \"name\": \"read\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"redo\": {\n    \"name\": \"redo\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"rel-file-path\": {\n    \"name\": \"rel-file-path\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"reply\": {\n    \"name\": \"reply\",\n    \"keywords\": [\n      \"reply all\",\n      \"back\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo\": {\n    \"name\": \"repo\",\n    \"keywords\": [\n      \"book\",\n      \"journal\",\n      \"repository\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo-clone\": {\n    \"name\": \"repo-clone\",\n    \"keywords\": [\n      \"book\",\n      \"journal\",\n      \"repository\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo-deleted\": {\n    \"name\": \"repo-deleted\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo-forked\": {\n    \"name\": \"repo-forked\",\n    \"keywords\": [\n      \"book\",\n      \"journal\",\n      \"copy\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path d=\\\"M11.25 16.25v-5h1.5v5h-1.5Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M11.25 16.25v-5h1.5v5h-1.5Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo-locked\": {\n    \"name\": \"repo-locked\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo-pull\": {\n    \"name\": \"repo-pull\",\n    \"keywords\": [\n      \"book\",\n      \"journal\",\n      \"get\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo-push\": {\n    \"name\": \"repo-push\",\n    \"keywords\": [\n      \"book\",\n      \"journal\",\n      \"repository\",\n      \"put\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"repo-template\": {\n    \"name\": \"repo-template\",\n    \"keywords\": [\n      \"book\",\n      \"new\",\n      \"add\",\n      \"template\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"report\": {\n    \"name\": \"report\",\n    \"keywords\": [\n      \"report\",\n      \"abuse\",\n      \"flag\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"rocket\": {\n    \"name\": \"rocket\",\n    \"keywords\": [\n      \"staff\",\n      \"stafftools\",\n      \"blast\",\n      \"off\",\n      \"space\",\n      \"launch\",\n      \"ship\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"rows\": {\n    \"name\": \"rows\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"rss\": {\n    \"name\": \"rss\",\n    \"keywords\": [\n      \"broadcast\",\n      \"feed\",\n      \"atom\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"ruby\": {\n    \"name\": \"ruby\",\n    \"keywords\": [\n      \"code\",\n      \"language\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"screen-full\": {\n    \"name\": \"screen-full\",\n    \"keywords\": [\n      \"fullscreen\",\n      \"expand\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"screen-normal\": {\n    \"name\": \"screen-normal\",\n    \"keywords\": [\n      \"fullscreen\",\n      \"expand\",\n      \"exit\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"search\": {\n    \"name\": \"search\",\n    \"keywords\": [\n      \"magnifying\",\n      \"glass\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"server\": {\n    \"name\": \"server\",\n    \"keywords\": [\n      \"computers\",\n      \"racks\",\n      \"ops\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"share\": {\n    \"name\": \"share\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"share-android\": {\n    \"name\": \"share-android\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"shield\": {\n    \"name\": \"shield\",\n    \"keywords\": [\n      \"security\",\n      \"shield\",\n      \"protection\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"shield-check\": {\n    \"name\": \"shield-check\",\n    \"keywords\": [\n      \"security\",\n      \"shield\",\n      \"protection\",\n      \"check\",\n      \"success\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"shield-lock\": {\n    \"name\": \"shield-lock\",\n    \"keywords\": [\n      \"protect\",\n      \"shield\",\n      \"lock\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"shield-slash\": {\n    \"name\": \"shield-slash\",\n    \"keywords\": [\n      \"shield\",\n      \"slash\",\n      \"protect\",\n      \"unsafe\",\n      \"unprotected\",\n      \"security\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"shield-x\": {\n    \"name\": \"shield-x\",\n    \"keywords\": [\n      \"security\",\n      \"shield\",\n      \"protection\",\n      \"fail\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sidebar-collapse\": {\n    \"name\": \"sidebar-collapse\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sidebar-expand\": {\n    \"name\": \"sidebar-expand\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sign-in\": {\n    \"name\": \"sign-in\",\n    \"keywords\": [\n      \"door\",\n      \"arrow\",\n      \"direction\",\n      \"enter\",\n      \"log in\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sign-out\": {\n    \"name\": \"sign-out\",\n    \"keywords\": [\n      \"door\",\n      \"arrow\",\n      \"direction\",\n      \"leave\",\n      \"log out\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"single-select\": {\n    \"name\": \"single-select\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"skip\": {\n    \"name\": \"skip\",\n    \"keywords\": [\n      \"skip\",\n      \"slash\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"skip-fill\": {\n    \"name\": \"skip-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sliders\": {\n    \"name\": \"sliders\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"smiley\": {\n    \"name\": \"smiley\",\n    \"keywords\": [\n      \"emoji\",\n      \"smile\",\n      \"mood\",\n      \"emotion\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<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 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sort-asc\": {\n    \"name\": \"sort-asc\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sort-desc\": {\n    \"name\": \"sort-desc\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sparkle-fill\": {\n    \"name\": \"sparkle-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sponsor-tiers\": {\n    \"name\": \"sponsor-tiers\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"square\": {\n    \"name\": \"square\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"square-fill\": {\n    \"name\": \"square-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"squirrel\": {\n    \"name\": \"squirrel\",\n    \"keywords\": [\n      \"ship\",\n      \"shipit\",\n      \"launch\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"stack\": {\n    \"name\": \"stack\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"star\": {\n    \"name\": \"star\",\n    \"keywords\": [\n      \"save\",\n      \"remember\",\n      \"like\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"star-fill\": {\n    \"name\": \"star-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"stop\": {\n    \"name\": \"stop\",\n    \"keywords\": [\n      \"block\",\n      \"spam\",\n      \"report\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"stopwatch\": {\n    \"name\": \"stopwatch\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"strikethrough\": {\n    \"name\": \"strikethrough\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sun\": {\n    \"name\": \"sun\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"sync\": {\n    \"name\": \"sync\",\n    \"keywords\": [\n      \"cycle\",\n      \"refresh\",\n      \"loop\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"tab\": {\n    \"name\": \"tab\",\n    \"keywords\": [],\n    \"heights\": {\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"tab-external\": {\n    \"name\": \"tab-external\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"table\": {\n    \"name\": \"table\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"tag\": {\n    \"name\": \"tag\",\n    \"keywords\": [\n      \"release\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M7.75 6.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M7.75 6.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"tasklist\": {\n    \"name\": \"tasklist\",\n    \"keywords\": [\n      \"todo\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"telescope\": {\n    \"name\": \"telescope\",\n    \"keywords\": [\n      \"science\",\n      \"space\",\n      \"look\",\n      \"view\",\n      \"explore\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"telescope-fill\": {\n    \"name\": \"telescope-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"terminal\": {\n    \"name\": \"terminal\",\n    \"keywords\": [\n      \"code\",\n      \"ops\",\n      \"shell\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"three-bars\": {\n    \"name\": \"three-bars\",\n    \"keywords\": [\n      \"hamburger\",\n      \"menu\",\n      \"dropdown\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"thumbsdown\": {\n    \"name\": \"thumbsdown\",\n    \"keywords\": [\n      \"thumb\",\n      \"thumbsdown\",\n      \"rejected\",\n      \"dislike\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"thumbsup\": {\n    \"name\": \"thumbsup\",\n    \"keywords\": [\n      \"thumb\",\n      \"thumbsup\",\n      \"prop\",\n      \"ship\",\n      \"like\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"tools\": {\n    \"name\": \"tools\",\n    \"keywords\": [\n      \"screwdriver\",\n      \"wrench\",\n      \"settings\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"tracked-by-closed-completed\": {\n    \"name\": \"tracked-by-closed-completed\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"tracked-by-closed-not-planned\": {\n    \"name\": \"tracked-by-closed-not-planned\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"trash\": {\n    \"name\": \"trash\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"triangle-down\": {\n    \"name\": \"triangle-down\",\n    \"keywords\": [\n      \"arrow\",\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"triangle-left\": {\n    \"name\": \"triangle-left\",\n    \"keywords\": [\n      \"arrow\",\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"triangle-right\": {\n    \"name\": \"triangle-right\",\n    \"keywords\": [\n      \"arrow\",\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"triangle-up\": {\n    \"name\": \"triangle-up\",\n    \"keywords\": [\n      \"arrow\",\n      \"point\",\n      \"direction\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"trophy\": {\n    \"name\": \"trophy\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"typography\": {\n    \"name\": \"typography\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"undo\": {\n    \"name\": \"undo\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"unfold\": {\n    \"name\": \"unfold\",\n    \"keywords\": [\n      \"expand\",\n      \"open\",\n      \"reveal\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"unlink\": {\n    \"name\": \"unlink\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"unlock\": {\n    \"name\": \"unlock\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"unmute\": {\n    \"name\": \"unmute\",\n    \"keywords\": [\n      \"loud\",\n      \"volume\",\n      \"audio\",\n      \"sound\",\n      \"play\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"unread\": {\n    \"name\": \"unread\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path d=\\\"M14 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M14 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path d=\\\"M24 5.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M24 5.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"unverified\": {\n    \"name\": \"unverified\",\n    \"keywords\": [\n      \"insecure\",\n      \"untrusted\",\n      \"signed\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"upload\": {\n    \"name\": \"upload\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"verified\": {\n    \"name\": \"verified\",\n    \"keywords\": [\n      \"trusted\",\n      \"secure\",\n      \"trustworthy\",\n      \"signed\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"versions\": {\n    \"name\": \"versions\",\n    \"keywords\": [\n      \"history\",\n      \"commits\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"video\": {\n    \"name\": \"video\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"webhook\": {\n    \"name\": \"webhook\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"workflow\": {\n    \"name\": \"workflow\",\n    \"keywords\": [\n      \"workflow\",\n      \"actions\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"x\": {\n    \"name\": \"x\",\n    \"keywords\": [\n      \"remove\",\n      \"close\",\n      \"delete\"\n    ],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"x-circle\": {\n    \"name\": \"x-circle\",\n    \"keywords\": [],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"x-circle-fill\": {\n    \"name\": \"x-circle-fill\",\n    \"keywords\": [],\n    \"heights\": {\n      \"12\": {\n        \"width\": 12,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"12\",\n            \"height\": \"12\",\n            \"viewBox\": \"0 0 12 12\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"zap\": {\n    \"name\": \"zap\",\n    \"keywords\": [\n      \"electricity\",\n      \"lightning\",\n      \"props\",\n      \"like\",\n      \"star\",\n      \"save\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"zoom-in\": {\n    \"name\": \"zoom-in\",\n    \"keywords\": [\n      \"zoom\",\n      \"in\",\n      \"plus\",\n      \"bigger\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path 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\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  },\n  \"zoom-out\": {\n    \"name\": \"zoom-out\",\n    \"keywords\": [\n      \"zoom\",\n      \"out\",\n      \"minus\",\n      \"smaller\"\n    ],\n    \"heights\": {\n      \"16\": {\n        \"width\": 16,\n        \"path\": \"<path d=\\\"M4.5 6.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1 0-1.5Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"16\",\n            \"height\": \"16\",\n            \"viewBox\": \"0 0 16 16\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M4.5 6.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1 0-1.5Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      },\n      \"24\": {\n        \"width\": 24,\n        \"path\": \"<path d=\\\"M14.5 11.25a.75.75 0 0 0 0-1.5h-8a.75.75 0 0 0 0 1.5h8Z\\\"></path><path 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\\\"></path>\",\n        \"ast\": {\n          \"name\": \"svg\",\n          \"type\": \"element\",\n          \"value\": \"\",\n          \"attributes\": {\n            \"xmlns\": \"http://www.w3.org/2000/svg\",\n            \"width\": \"24\",\n            \"height\": \"24\",\n            \"viewBox\": \"0 0 24 24\"\n          },\n          \"children\": [\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"d\": \"M14.5 11.25a.75.75 0 0 0 0-1.5h-8a.75.75 0 0 0 0 1.5h8Z\"\n              },\n              \"children\": []\n            },\n            {\n              \"name\": \"path\",\n              \"type\": \"element\",\n              \"value\": \"\",\n              \"attributes\": {\n                \"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\"\n              },\n              \"children\": []\n            }\n          ]\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "sphinx_design/compiled/sd_tabs.js",
    "content": "// @ts-check\n\n// Extra JS capability for selected tabs to be synced\n// The selection is stored in local storage so that it persists across page loads.\n\n/**\n * @type {Record<string, HTMLElement[]>}\n */\nlet sd_id_to_elements = {};\nconst storageKeyPrefix = \"sphinx-design-tab-id-\";\n\n/**\n * Create a key for a tab element.\n * @param {HTMLElement} el - The tab element.\n * @returns {[string, string, string] | null} - The key.\n *\n */\nfunction create_key(el) {\n  let syncId = el.getAttribute(\"data-sync-id\");\n  let syncGroup = el.getAttribute(\"data-sync-group\");\n  if (!syncId || !syncGroup) return null;\n  return [syncGroup, syncId, syncGroup + \"--\" + syncId];\n}\n\n/**\n * Initialize the tab selection.\n *\n */\nfunction ready() {\n  // Find all tabs with sync data\n\n  /** @type {string[]} */\n  let groups = [];\n\n  document.querySelectorAll(\".sd-tab-label\").forEach((label) => {\n    if (label instanceof HTMLElement) {\n      let data = create_key(label);\n      if (data) {\n        let [group, id, key] = data;\n\n        // add click event listener\n        // @ts-ignore\n        label.onclick = onSDLabelClick;\n\n        // store map of key to elements\n        if (!sd_id_to_elements[key]) {\n          sd_id_to_elements[key] = [];\n        }\n        sd_id_to_elements[key].push(label);\n\n        if (groups.indexOf(group) === -1) {\n          groups.push(group);\n          // Check if a specific tab has been selected via URL parameter\n          const tabParam = new URLSearchParams(window.location.search).get(\n            group\n          );\n          if (tabParam) {\n            console.log(\n              \"sphinx-design: Selecting tab id for group '\" +\n                group +\n                \"' from URL parameter: \" +\n                tabParam\n            );\n            window.sessionStorage.setItem(storageKeyPrefix + group, tabParam);\n          }\n        }\n\n        // Check is a specific tab has been selected previously\n        let previousId = window.sessionStorage.getItem(\n          storageKeyPrefix + group\n        );\n        if (previousId === id) {\n          // console.log(\n          //   \"sphinx-design: Selecting tab from session storage: \" + id\n          // );\n          // @ts-ignore\n          label.previousElementSibling.checked = true;\n        }\n      }\n    }\n  });\n}\n\n/**\n *  Activate other tabs with the same sync id.\n *\n * @this {HTMLElement} - The element that was clicked.\n */\nfunction onSDLabelClick() {\n  let data = create_key(this);\n  if (!data) return;\n  let [group, id, key] = data;\n  for (const label of sd_id_to_elements[key]) {\n    if (label === this) continue;\n    // @ts-ignore\n    label.previousElementSibling.checked = true;\n  }\n  window.sessionStorage.setItem(storageKeyPrefix + group, id);\n}\n\ndocument.addEventListener(\"DOMContentLoaded\", ready, false);\n"
  },
  {
    "path": "sphinx_design/dropdown.py",
    "content": "\"\"\"Originally Adapted from sphinxcontrib.details.directive\"\"\"\n\nfrom docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx.application import Sphinx\nfrom sphinx.transforms.post_transforms import SphinxPostTransform\n\nfrom sphinx_design.shared import (\n    SEMANTIC_COLORS,\n    SdDirective,\n    create_component,\n    is_component,\n    make_choice,\n    margin_option,\n)\n\nfrom ._compat import findall\nfrom .icons import get_octicon, list_octicons\n\n\ndef setup_dropdown(app: Sphinx) -> None:\n    app.add_node(dropdown_main, html=(visit_dropdown_main, depart_dropdown_main))\n    app.add_node(dropdown_title, html=(visit_dropdown_title, depart_dropdown_title))\n    app.add_directive(\"dropdown\", DropdownDirective)\n    app.add_post_transform(DropdownHtmlTransform)\n\n\nclass dropdown_main(nodes.Element, nodes.General):  # noqa: N801\n    pass\n\n\nclass dropdown_title(nodes.TextElement, nodes.General):  # noqa: N801\n    pass\n\n\ndef visit_dropdown_main(self, node):\n    if node.get(\"opened\"):\n        self.body.append(self.starttag(node, \"details\", open=\"open\"))\n    else:\n        self.body.append(self.starttag(node, \"details\"))\n\n\ndef depart_dropdown_main(self, node):\n    self.body.append(\"</details>\")\n\n\ndef visit_dropdown_title(self, node):\n    self.body.append(self.starttag(node, \"summary\"))\n\n\ndef depart_dropdown_title(self, node):\n    self.body.append(\"</summary>\")\n\n\nclass DropdownDirective(SdDirective):\n    \"\"\"A directive to generate a collapsible container.\n\n    Note: This directive generates a single container,\n    for the title (optional) and content::\n\n        <container design_component=\"dropdown\" has_title=True>\n            <rubric>\n                ...title nodes\n        ...content nodes\n\n    This allows for a default rendering in non-HTML outputs.\n\n    The ``DropdownHtmlTransform`` then transforms this container\n    into the HTML specific structure.\n    \"\"\"\n\n    optional_arguments = 1  # title of dropdown\n    final_argument_whitespace = True\n    has_content = True\n    option_spec = {\n        \"open\": directives.flag,  # make open by default\n        \"color\": make_choice(SEMANTIC_COLORS),\n        \"icon\": make_choice(list_octicons()),\n        \"chevron\": make_choice(\n            [\"right-down\", \"down-up\"]\n        ),  # chevron direction closed-open\n        \"animate\": make_choice((\"fade-in\", \"fade-in-slide-down\")),\n        \"margin\": margin_option,\n        \"name\": directives.unchanged,\n        \"class-container\": directives.class_option,\n        \"class-title\": directives.class_option,\n        \"class-body\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        # default classes\n        classes = {\n            \"container_classes\": self.options.get(\"margin\", [\"sd-mb-3\"])\n            + self.options.get(\"class-container\", []),\n            \"title_classes\": self.options.get(\"class-title\", []),\n            \"body_classes\": self.options.get(\"class-body\", []),\n        }\n\n        # add color classes\n        title_color = self.options.get(\"color\")\n        if title_color:\n            classes[\"title_classes\"].extend(\n                [f\"sd-bg-{title_color}\", f\"sd-bg-text-{title_color}\"]\n            )\n\n        # add animation classes\n        if (\n            \"animate\" in self.options\n            and (\"sd-\" + self.options[\"animate\"]) not in classes[\"container_classes\"]\n        ):\n            classes[\"container_classes\"].append(\"sd-\" + self.options[\"animate\"])\n\n        container = create_component(\n            \"dropdown\",\n            opened=\"open\" in self.options,\n            type=\"dropdown\",\n            has_title=len(self.arguments) > 0,\n            icon=self.options.get(\"icon\"),\n            chevron=self.options.get(\"chevron\"),\n            **classes,\n        )\n        self.set_source_info(container)\n        if self.arguments:\n            textnodes, messages = self.state.inline_text(self.arguments[0], self.lineno)\n            title_node = nodes.rubric(self.arguments[0], \"\", *textnodes)\n            container += title_node\n            container += messages\n            # where possible we add the target to the title node,\n            # so that it can be used as the reference text\n            self.add_name(title_node)\n        else:\n            self.add_name(container)\n        self.state.nested_parse(self.content, self.content_offset, container)\n        return [container]\n\n\nclass DropdownHtmlTransform(SphinxPostTransform):\n    \"\"\"Transform dropdown containers into the HTML specific AST structures::\n\n    <details class=\"sd-sphinx-override sd-dropdown sd-card\">\n        <summary class=\"sd-summary-title sd-card-header\">\n            ...title nodes\n        <div class=\"sd-summary-content sd-card-body\">\n            ...content nodes\n\n    \"\"\"\n\n    default_priority = 199\n    formats = (\"html\",)\n\n    def run(self) -> None:\n        \"\"\"Run the transform\"\"\"\n        document: nodes.document = self.document\n        for node in findall(document)(lambda node: is_component(node, \"dropdown\")):\n            # TODO option to not have card css (but requires more formatting)\n            use_card = True\n\n            marker_type = (\n                \"chevron-down\" if node[\"chevron\"] == \"down-up\" else \"chevron-right\"\n            )\n            state_marker = nodes.inline(\n                \"\",\n                \"\",\n                nodes.raw(\n                    \"\",\n                    nodes.Text(get_octicon(marker_type, height=\"1.5em\")),\n                    format=\"html\",\n                ),\n                classes=[\"sd-summary-state-marker\", f\"sd-summary-{marker_type}\"],\n            )\n\n            newnode = dropdown_main(\n                opened=node[\"opened\"],\n                classes=[\"sd-sphinx-override\", \"sd-dropdown\"]\n                + ([\"sd-card\"] if use_card else [\"sd-d-flex-column\"])\n                + node[\"container_classes\"],\n            )\n\n            if node[\"has_title\"]:\n                title_text_children = node[0].children\n                if node[0].get(\"ids\"):\n                    newnode[\"ids\"] += node[0][\"ids\"]\n                body_children = node[1:]\n            else:\n                title_text_children = [\n                    nodes.raw(\n                        \"...\",\n                        nodes.Text(\n                            get_octicon(\n                                \"kebab-horizontal\", height=\"1.5em\", classes=[\"no-title\"]\n                            )\n                        ),\n                        format=\"html\",\n                    )\n                ]\n                body_children = node.children\n            title_text_node = nodes.inline(\n                \"\",\n                \"\",\n                *title_text_children,\n                classes=[\"sd-summary-text\"],\n            )\n            title_children = [title_text_node, state_marker]\n            if node[\"icon\"]:\n                title_children.insert(\n                    0,\n                    nodes.raw(\n                        \"\",\n                        get_octicon(node[\"icon\"], height=\"1em\"),\n                        classes=[\"sd-summary-icon\"],\n                        format=\"html\",\n                    ),\n                )\n\n            newnode += dropdown_title(\n                \"\",\n                \"\",\n                *title_children,\n                classes=[\"sd-summary-title\"]\n                + ([\"sd-card-header\"] if use_card else [])\n                + node[\"title_classes\"],\n            )\n            body_node = create_component(\n                \"dropdown-body\",\n                classes=[\"sd-summary-content\"]\n                + ([\"sd-card-body\"] if use_card else [])\n                + node[\"body_classes\"],\n                children=body_children,\n            )\n            if use_card:\n                for para in findall(body_node)(nodes.paragraph):\n                    para[\"classes\"] = ([] if \"classes\" in para else para[\"classes\"]) + [\n                        \"sd-card-text\"\n                    ]\n            newnode += body_node\n            # newnode += open_marker\n            node.replace_self(newnode)\n"
  },
  {
    "path": "sphinx_design/extension.py",
    "content": "from contextlib import contextmanager\nfrom functools import partial\nimport hashlib\nfrom pathlib import Path\n\nfrom docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx import version_info as sphinx_version\nfrom sphinx.application import Sphinx\nfrom sphinx.environment import BuildEnvironment\nfrom sphinx.transforms import SphinxTransform\n\nfrom . import compiled as static_module\nfrom ._compat import findall, read_text\nfrom .article_info import setup_article_info\nfrom .badges_buttons import setup_badges_and_buttons\nfrom .cards import setup_cards\nfrom .dropdown import setup_dropdown\nfrom .grids import setup_grids\nfrom .icons import setup_icons\nfrom .shared import (\n    PassthroughTextElement,\n    SdDirective,\n    create_component,\n    setup_custom_directives,\n)\nfrom .tabs import setup_tabs\n\n\ndef setup_extension(app: Sphinx) -> None:\n    \"\"\"Set up the sphinx extension.\"\"\"\n    app.connect(\"builder-inited\", update_css_js)\n    app.connect(\"env-updated\", update_css_links)\n    # we override container html visitors, to stop the default behaviour\n    # of adding the `container` class to all nodes.container\n    app.add_node(\n        nodes.container, override=True, html=(visit_container, depart_container)\n    )\n    app.add_node(\n        PassthroughTextElement,\n        html=(visit_depart_null, visit_depart_null),\n        latex=(visit_depart_null, visit_depart_null),\n        text=(visit_depart_null, visit_depart_null),\n        man=(visit_depart_null, visit_depart_null),\n        texinfo=(visit_depart_null, visit_depart_null),\n    )\n    with capture_directives(app) as directive_map:\n        app.add_directive(\"div\", Div, override=True)\n        app.add_transform(AddFirstTitleCss)\n        setup_badges_and_buttons(app)\n        setup_cards(app)\n        setup_grids(app)\n        setup_dropdown(app)\n        setup_icons(app)\n        setup_tabs(app)\n        setup_article_info(app)\n\n    app.add_config_value(\"sd_custom_directives\", {}, \"env\")\n    app.connect(\n        \"config-inited\", partial(setup_custom_directives, directive_map=directive_map)\n    )\n\n\n@contextmanager\ndef capture_directives(app: Sphinx):\n    \"\"\"Capture the directives that are registered by the extension.\"\"\"\n    directive_map = {}\n    add_directive = app.add_directive\n\n    def _add_directive(name, directive, **kwargs):\n        directive_map[name] = directive\n        add_directive(name, directive, **kwargs)\n\n    app.add_directive = _add_directive\n    yield directive_map\n    app.add_directive = add_directive\n\n\ndef update_css_js(app: Sphinx):\n    \"\"\"Copy the CSS to the build directory.\"\"\"\n    # reset changed identifier\n    app.env.sphinx_design_css_changed = False\n    # setup up new static path in output dir\n    static_path = (Path(app.outdir) / \"_sphinx_design_static\").absolute()\n    static_existed = static_path.exists()\n    static_path.mkdir(exist_ok=True)\n    app.config.html_static_path.append(str(static_path))\n    # Copy JS to the build directory.\n    js_path = static_path / \"design-tabs.js\"\n    app.add_js_file(js_path.name)\n    if not js_path.exists():\n        content = read_text(static_module, \"sd_tabs.js\")\n        js_path.write_text(content)\n    # Read the css content and hash it\n    content = read_text(static_module, \"style.min.css\")\n    # Write the css file\n    if sphinx_version < (7, 1):\n        hash = hashlib.md5(content.encode(\"utf8\"), usedforsecurity=False).hexdigest()\n        css_path = static_path / f\"sphinx-design.{hash}.min.css\"\n    else:\n        # since sphinx 7.1 a checksum is added to the css file URL, so there is no need to do it here\n        # https://github.com/sphinx-doc/sphinx/pull/11415\n        css_path = static_path / \"sphinx-design.min.css\"\n    app.add_css_file(css_path.name)\n    if css_path.exists():\n        return\n    if static_existed:\n        app.env.sphinx_design_css_changed = True\n    for path in static_path.glob(\"*.css\"):\n        path.unlink()\n    css_path.write_text(content, encoding=\"utf8\")\n\n\ndef update_css_links(app: Sphinx, env: BuildEnvironment):\n    \"\"\"If CSS has changed, all files must be re-written, to include the correct stylesheets.\"\"\"\n    if env.sphinx_design_css_changed:\n        return list(env.all_docs.keys())\n\n\ndef visit_container(self, node: nodes.Node):\n    classes = \"docutils container\"\n    attrs = {}\n    if node.get(\"is_div\", False):\n        # we don't want the CSS for container for these nodes\n        classes = \"docutils\"\n    if \"style\" in node:\n        attrs[\"style\"] = node[\"style\"]\n    self.body.append(self.starttag(node, \"div\", CLASS=classes, **attrs))\n\n\ndef depart_container(self, node: nodes.Node):\n    self.body.append(\"</div>\\n\")\n\n\ndef visit_depart_null(self, node: nodes.Element) -> None:\n    \"\"\"visit/depart passthrough\"\"\"\n\n\nclass Div(SdDirective):\n    \"\"\"Same as the ``container`` directive,\n    but does not add the ``container`` class in HTML outputs,\n    which can interfere with Bootstrap CSS.\n    \"\"\"\n\n    optional_arguments = 1  # css classes\n    final_argument_whitespace = True\n    option_spec = {\"style\": directives.unchanged, \"name\": directives.unchanged}\n    has_content = True\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        try:\n            if self.arguments:\n                classes = directives.class_option(self.arguments[0])\n            else:\n                classes = []\n        except ValueError as exc:\n            raise self.error(\n                f'Invalid class attribute value for \"{self.name}\" directive: \"{self.arguments[0]}\".'\n            ) from exc\n        node = create_component(\"div\", rawtext=\"\\n\".join(self.content), classes=classes)\n        if \"style\" in self.options:\n            node[\"style\"] = self.options[\"style\"]\n        self.set_source_info(node)\n        self.add_name(node)\n        if self.content:\n            self.state.nested_parse(self.content, self.content_offset, node)\n        return [node]\n\n\nclass AddFirstTitleCss(SphinxTransform):\n    \"\"\"Add a CSS class to to the first sections title.\"\"\"\n\n    default_priority = 699  # priority main\n\n    def apply(self):\n        hide = False\n        for docinfo in findall(self.document)(nodes.docinfo):\n            for name in findall(docinfo)(nodes.field_name):\n                if name.astext() == \"sd_hide_title\":\n                    hide = True\n                    break\n            break\n        if not hide:\n            return\n        for section in findall(self.document)(nodes.section):\n            if isinstance(section.children[0], nodes.title):\n                if \"classes\" in section.children[0]:\n                    section.children[0][\"classes\"].append(\"sd-d-none\")\n                else:\n                    section.children[0][\"classes\"] = [\"sd-d-none\"]\n            break\n"
  },
  {
    "path": "sphinx_design/grids.py",
    "content": "from docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx.application import Sphinx\nfrom sphinx.util.logging import getLogger\n\nfrom .cards import CardDirective\nfrom .shared import (\n    WARNING_TYPE,\n    SdDirective,\n    create_component,\n    is_component,\n    make_choice,\n    margin_option,\n    padding_option,\n    text_align,\n)\n\nLOGGER = getLogger(__name__)\n\n\nDIRECTIVE_NAME_GRID = \"grid\"\nDIRECTIVE_NAME_GRID_ITEM = \"grid-item\"\nDIRECTIVE_NAME_GRID_ITEM_CARD = \"grid-item-card\"\n\n\ndef setup_grids(app: Sphinx):\n    \"\"\"Setup the grid components.\"\"\"\n    app.add_directive(DIRECTIVE_NAME_GRID, GridDirective)\n    app.add_directive(DIRECTIVE_NAME_GRID_ITEM, GridItemDirective)\n    app.add_directive(DIRECTIVE_NAME_GRID_ITEM_CARD, GridItemCardDirective)\n\n\ndef _media_option(\n    argument: str | None,\n    prefix: str,\n    *,\n    allow_auto: bool = False,\n    min_num: int = 1,\n    max_num: int = 12,\n) -> list[str]:\n    \"\"\"Validate the number of columns (out of 12).\n\n    One or four integers (for \"xs sm md lg\") between 1 and 12.\n    \"\"\"\n    validate_error_msg = (\n        \"argument must be 1 or 4 (xs sm md lg) values, and each value should be \"\n        f\"{'either auto or ' if allow_auto else ''}an integer from {min_num} to {max_num}\"\n    )\n    if argument is None:\n        raise ValueError(validate_error_msg)\n    values = argument.strip().split()\n    if len(values) == 1:\n        values = [values[0], values[0], values[0], values[0]]\n    if len(values) != 4:\n        raise ValueError(validate_error_msg)\n    for value in values:\n        if allow_auto and value == \"auto\":\n            continue\n        try:\n            int_value = int(value)\n        except Exception as exc:\n            raise ValueError(validate_error_msg) from exc\n        if not (min_num <= int_value <= max_num):\n            raise ValueError(validate_error_msg)\n    return [f\"{prefix}{values[0]}\"] + [\n        f\"{prefix}{size}-{value}\"\n        for size, value in zip([\"xs\", \"sm\", \"md\", \"lg\"], values, strict=False)\n    ]\n\n\ndef row_columns_option(argument: str | None) -> list[str]:\n    \"\"\"Validate the number of columns (out of 12) a grid row will have.\n\n    One or four integers (for \"xs sm md lg\") between 1 and 12  (or 'auto').\n    \"\"\"\n    return _media_option(argument, \"sd-row-cols-\", allow_auto=True)\n\n\ndef item_columns_option(argument: str | None) -> list[str]:\n    \"\"\"Validate the number of columns (out of 12) a grid-item will take up.\n\n    One or four integers (for \"xs sm md lg\") between 1 and 12 (or 'auto').\n    \"\"\"\n    return _media_option(argument, \"sd-col-\", allow_auto=True)\n\n\ndef gutter_option(argument: str | None) -> list[str]:\n    \"\"\"Validate the gutter size between grid items.\n\n    One or four integers (for \"xs sm md lg\") between 0 and 5.\n    \"\"\"\n    return _media_option(argument, \"sd-g-\", min_num=0, max_num=5)\n\n\nclass GridDirective(SdDirective):\n    \"\"\"A grid component, which is a container for grid items (i.e. columns).\"\"\"\n\n    has_content = True\n    required_arguments = 0\n    optional_arguments = 1  # columns\n    final_argument_whitespace = True\n    option_spec = {\n        \"gutter\": gutter_option,\n        \"margin\": margin_option,\n        \"padding\": padding_option,\n        \"outline\": directives.flag,\n        \"reverse\": directives.flag,\n        \"class-container\": directives.class_option,\n        \"class-row\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        try:\n            column_classes = (\n                row_columns_option(self.arguments[0]) if self.arguments else []\n            )\n        except ValueError as exc:\n            raise self.error(f\"Invalid directive argument: {exc}\") from exc\n        self.assert_has_content()\n        # container-fluid is 100% width for all breakpoints,\n        # rather than the fixed width of the breakpoint (like container)\n        grid_classes = [\"sd-container-fluid\", \"sd-sphinx-override\"]\n        container = create_component(\n            \"grid-container\",\n            grid_classes\n            + self.options.get(\"margin\", [\"sd-mb-4\"])\n            + self.options.get(\"padding\", [])\n            + ([\"sd-border-1\"] if \"outline\" in self.options else [])\n            + self.options.get(\"class-container\", []),\n        )\n        self.set_source_info(container)\n        row = create_component(\n            \"grid-row\",\n            [\"sd-row\"]\n            + column_classes\n            + self.options.get(\"gutter\", [])\n            + ([\"sd-flex-row-reverse\"] if \"reverse\" in self.options else [])\n            + self.options.get(\"class-row\", []),\n        )\n        self.set_source_info(row)\n        container += row\n        self.state.nested_parse(self.content, self.content_offset, row)\n        # each item in a row should be a column\n        for item in row.children:\n            if not is_component(item, \"grid-item\"):\n                LOGGER.warning(\n                    f\"All children of a 'grid-row' \"\n                    f\"should be 'grid-item' [{WARNING_TYPE}.grid]\",\n                    location=item,\n                    type=WARNING_TYPE,\n                    subtype=\"grid\",\n                )\n                break\n        return [container]\n\n\nclass GridItemDirective(SdDirective):\n    \"\"\"An item within a grid row.\n\n    Can \"occupy\" 1 to 12 columns.\n    \"\"\"\n\n    has_content = True\n    option_spec = {\n        \"columns\": item_columns_option,\n        \"margin\": margin_option,\n        \"padding\": padding_option,\n        \"child-direction\": make_choice([\"column\", \"row\"]),\n        \"child-align\": make_choice([\"start\", \"end\", \"center\", \"justify\", \"spaced\"]),\n        \"outline\": directives.flag,\n        \"class\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        if not is_component(self.state_machine.node, \"grid-row\"):\n            LOGGER.warning(\n                f\"The parent of a 'grid-item' should be a 'grid-row' [{WARNING_TYPE}.grid]\",\n                location=(self.env.docname, self.lineno),\n                type=WARNING_TYPE,\n                subtype=\"grid\",\n            )\n        column = create_component(\n            \"grid-item\",\n            [\n                \"sd-col\",\n                f\"sd-d-flex-{self.options.get('child-direction', 'column')}\",\n            ]\n            + self.options.get(\"columns\", [])\n            + self.options.get(\"margin\", [])\n            + self.options.get(\"padding\", [])\n            + (\n                [f\"sd-align-major-{self.options['child-align']}\"]\n                if \"child-align\" in self.options\n                else []\n            )\n            + ([\"sd-border-1\"] if \"outline\" in self.options else [])\n            + self.options.get(\"class\", []),\n        )\n        self.set_source_info(column)\n        self.state.nested_parse(self.content, self.content_offset, column)\n        return [column]\n\n\nclass GridItemCardDirective(SdDirective):\n    \"\"\"An item within a grid row, with an internal card.\"\"\"\n\n    has_content = True\n    required_arguments = 0\n    optional_arguments = 1  # card title\n    final_argument_whitespace = True\n    option_spec = {\n        \"columns\": item_columns_option,\n        \"margin\": margin_option,\n        \"padding\": padding_option,\n        \"class-item\": directives.class_option,\n        # The options below must be sync'ed with CardDirective.option_spec (minus margin).\n        \"width\": make_choice([\"auto\", \"25%\", \"50%\", \"75%\", \"100%\"]),\n        \"text-align\": text_align,\n        \"img-background\": directives.uri,\n        \"img-top\": directives.uri,\n        \"img-bottom\": directives.uri,\n        \"img-alt\": directives.unchanged,\n        \"link\": directives.uri,\n        \"link-type\": make_choice([\"url\", \"any\", \"ref\", \"doc\"]),\n        \"link-alt\": directives.unchanged,\n        \"shadow\": make_choice([\"none\", \"sm\", \"md\", \"lg\"]),\n        \"class-card\": directives.class_option,\n        \"class-body\": directives.class_option,\n        \"class-title\": directives.class_option,\n        \"class-header\": directives.class_option,\n        \"class-footer\": directives.class_option,\n        \"class-img-top\": directives.class_option,\n        \"class-img-bottom\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        if not is_component(self.state_machine.node, \"grid-row\"):\n            LOGGER.warning(\n                f\"The parent of a 'grid-item' should be a 'grid-row' [{WARNING_TYPE}.grid]\",\n                location=(self.env.docname, self.lineno),\n                type=WARNING_TYPE,\n                subtype=\"grid\",\n            )\n        column = create_component(\n            \"grid-item\",\n            [\n                \"sd-col\",\n                \"sd-d-flex-row\",\n                *self.options.get(\"columns\", []),\n                *self.options.get(\"margin\", []),\n                *self.options.get(\"padding\", []),\n                *self.options.get(\"class-item\", []),\n            ],\n        )\n        card_options = {\n            key: value\n            for key, value in self.options.items()\n            if key\n            in [\n                \"width\",\n                \"text-align\",\n                \"img-background\",\n                \"img-top\",\n                \"img-bottom\",\n                \"img-alt\",\n                \"link\",\n                \"link-type\",\n                \"link-alt\",\n                \"shadow\",\n                \"class-card\",\n                \"class-body\",\n                \"class-title\",\n                \"class-header\",\n                \"class-footer\",\n                \"class-img-top\",\n                \"class-img-bottom\",\n            ]\n        }\n        if \"width\" not in card_options:\n            card_options[\"width\"] = \"100%\"\n        card_options[\"margin\"] = []\n        card = CardDirective.create_card(self, self.arguments, card_options)\n        column += card\n        return [column]\n"
  },
  {
    "path": "sphinx_design/icons.py",
    "content": "from collections.abc import Sequence\nfrom functools import lru_cache\nimport json\nimport re\nfrom typing import Any\n\nfrom docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx.application import Sphinx\nfrom sphinx.util import logging\nfrom sphinx.util.docutils import SphinxRole\n\nfrom . import compiled\nfrom ._compat import read_text\nfrom .shared import WARNING_TYPE, SdDirective\n\nlogger = logging.getLogger(__name__)\n\nOCTICON_VERSION = \"v19.8.0\"\n\nOCTICON_CSS = \"\"\"\\\n.octicon {\n  display: inline-block;\n  vertical-align: text-top;\n  fill: currentColor;\n}\"\"\"\n\n\ndef setup_icons(app: Sphinx) -> None:\n    app.add_role(\"octicon\", OcticonRole())\n    app.add_directive(\"_all-octicon\", AllOcticons)\n    for style in [\"fa\", \"fas\", \"fab\", \"far\"]:\n        # note: fa is deprecated in v5, fas is the default and fab is the other free option\n        app.add_role(style, FontawesomeRole(style))\n    for style in [\"regular\", \"outlined\", \"round\", \"sharp\", \"twotone\"]:\n        app.add_role(\"material-\" + style, MaterialRole(style))\n    app.add_config_value(\"sd_fontawesome_latex\", False, \"env\")\n    app.connect(\"config-inited\", add_fontawesome_pkg)\n    app.add_node(\n        fontawesome,\n        html=(visit_fontawesome_html, depart_fontawesome_html),\n        latex=(visit_fontawesome_latex, None),\n        man=(visit_fontawesome_warning, None),\n        text=(visit_fontawesome_warning, None),\n        texinfo=(visit_fontawesome_warning, None),\n    )\n\n\n@lru_cache(1)\ndef get_octicon_data() -> dict[str, Any]:\n    \"\"\"Load all octicon data.\"\"\"\n    content = read_text(compiled, \"octicons.json\")\n    return json.loads(content)\n\n\ndef list_octicons() -> list[str]:\n    \"\"\"List available octicon names.\"\"\"\n    return list(get_octicon_data().keys())\n\n\nHEIGHT_REGEX = re.compile(r\"^(?P<value>\\d+(\\.\\d+)?)(?P<unit>px|em|rem)$\")\n\n\ndef get_octicon(\n    name: str,\n    height: str = \"1em\",\n    classes: Sequence[str] = (),\n    aria_label: str | None = None,\n) -> str:\n    \"\"\"Return the HTML for an GitHub octicon SVG icon.\n\n    :height: the height of the octicon, with suffix unit 'px', 'em' or 'rem'.\n    \"\"\"\n    try:\n        data = get_octicon_data()[name]\n    except KeyError as exc:\n        raise KeyError(f\"Unrecognised octicon: {name}\") from exc\n\n    match = HEIGHT_REGEX.match(height)\n    if not match:\n        raise ValueError(\n            f\"Invalid height: '{height}', must be format <integer><px|em|rem>\"\n        )\n    height_value = round(float(match.group(\"value\")), 3)\n    height_unit = match.group(\"unit\")\n\n    original_height = 16\n    if \"16\" not in data[\"heights\"]:\n        original_height = int(next(iter(data[\"heights\"].keys())))\n    elif \"24\" in data[\"heights\"]:\n        if height_unit == \"px\":\n            if height_value >= 24:\n                original_height = 24\n        elif height_value >= 1.5:\n            original_height = 24\n    original_width = data[\"heights\"][str(original_height)][\"width\"]\n    width_value = round(original_width * height_value / original_height, 3)\n    content = data[\"heights\"][str(original_height)][\"path\"]\n    options = {\n        \"version\": \"1.1\",\n        \"width\": f\"{width_value}{height_unit}\",\n        \"height\": f\"{height_value}{height_unit}\",\n        \"class\": \" \".join((\"sd-octicon\", f\"sd-octicon-{name}\", *classes)),\n    }\n\n    options[\"viewBox\"] = f\"0 0 {original_width} {original_height}\"\n\n    if aria_label is not None:\n        options[\"aria-label\"] = aria_label\n        options[\"role\"] = \"img\"\n    else:\n        options[\"aria-hidden\"] = \"true\"\n\n    opt_string = \" \".join(f'{k}=\"{v}\"' for k, v in options.items())\n    return f\"<svg {opt_string}>{content}</svg>\"\n\n\nclass OcticonRole(SphinxRole):\n    \"\"\"Role to display a GitHub octicon SVG.\n\n    Additional classes can be added to the element after a semicolon.\n    \"\"\"\n\n    def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]:\n        \"\"\"Run the role.\"\"\"\n        values = self.text.split(\";\") if \";\" in self.text else [self.text]\n        icon = values[0]\n        height = \"1em\" if len(values) < 2 else values[1]\n        classes = \"\" if len(values) < 3 else values[2]\n        icon = icon.strip()\n        try:\n            svg = get_octicon(icon, height=height, classes=classes.split())\n        except Exception as exc:\n            msg = self.inliner.reporter.error(\n                f\"Invalid octicon content: {exc}\",\n                line=self.lineno,\n            )\n            prb = self.inliner.problematic(self.rawtext, self.rawtext, msg)\n            return [prb], [msg]\n        node = nodes.raw(\"\", nodes.Text(svg), format=\"html\")\n        self.set_source_info(node)\n        return [node], []\n\n\nclass AllOcticons(SdDirective):\n    \"\"\"Directive to generate all octicon icons.\n\n    Primarily for self documentation.\n    \"\"\"\n\n    option_spec = {\n        \"class\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        classes = self.options.get(\"class\", [])\n        table = nodes.table()\n        group = nodes.tgroup(cols=2)\n        table += group\n        group.extend(\n            (\n                nodes.colspec(colwidth=1),\n                nodes.colspec(colwidth=1),\n            )\n        )\n        body = nodes.tbody()\n        group += body\n        for icon in list_octicons():\n            row = nodes.row()\n            body += row\n            cell = nodes.entry()\n            row += cell\n            cell += nodes.literal(icon, icon)\n            cell = nodes.entry()\n            row += cell\n            cell += nodes.raw(\n                \"\",\n                get_octicon(icon, classes=classes),\n                format=\"html\",\n            )\n        return [table]\n\n\nclass fontawesome(nodes.Element, nodes.General):  # noqa: N801\n    \"\"\"Node for rendering fontawesome icon.\"\"\"\n\n\nclass FontawesomeRole(SphinxRole):\n    \"\"\"Role to display a Fontawesome icon.\n\n    Additional classes can be added to the element after a semicolon.\n    \"\"\"\n\n    def __init__(self, style: str) -> None:\n        super().__init__()\n        self.style = style\n\n    def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]:\n        \"\"\"Run the role.\"\"\"\n        icon, classes = self.text.split(\";\", 1) if \";\" in self.text else [self.text, \"\"]\n        icon = icon.strip()\n        node = fontawesome(\n            icon=icon, classes=[self.style, f\"fa-{icon}\", *classes.split()]\n        )\n        self.set_source_info(node)\n        return [node], []\n\n\ndef visit_fontawesome_html(self, node):\n    self.body.append(self.starttag(node, \"span\", \"\"))\n\n\ndef depart_fontawesome_html(self, node):\n    self.body.append(\"</span>\")\n\n\ndef add_fontawesome_pkg(app, config):\n    if app.config.sd_fontawesome_latex:\n        app.add_latex_package(\"fontawesome\")\n\n\ndef visit_fontawesome_latex(self, node):\n    \"\"\"Add latex fonteawesome icon, if configured, else warn.\"\"\"\n    if self.config.sd_fontawesome_latex:\n        self.body.append(f\"\\\\faicon{{{node['icon']}}}\")\n    else:\n        logger.warning(\n            \"Fontawesome icons not included in LaTeX output, \"\n            f\"consider 'sd_fontawesome_latex=True' [{WARNING_TYPE}.fa-build]\",\n            location=node,\n            type=WARNING_TYPE,\n            subtype=\"fa-build\",\n        )\n    raise nodes.SkipNode\n\n\ndef visit_fontawesome_warning(self, node: nodes.Element) -> None:\n    \"\"\"Warn that fontawesome is not supported for this builder.\"\"\"\n    logger.warning(\n        \"Fontawesome icons not supported for builder: \"\n        f\"{self.builder.name} [{WARNING_TYPE}.fa-build]\",\n        location=node,\n        type=WARNING_TYPE,\n        subtype=\"fa-build\",\n    )\n    raise nodes.SkipNode\n\n\n@lru_cache(1)\ndef get_material_icon_data(style: str) -> dict[str, Any]:\n    \"\"\"Load all octicon data.\"\"\"\n    content = read_text(compiled, f\"material_{style}.json\")\n    return json.loads(content)\n\n\ndef get_material_icon(\n    style: str,\n    name: str,\n    height: str = \"1em\",\n    classes: Sequence[str] = (),\n    aria_label: str | None = None,\n) -> str:\n    \"\"\"Return the HTML for an Google material icon SVG icon.\n\n    :height: the height of the material icon, with suffix unit 'px', 'em' or 'rem'.\n    \"\"\"\n    try:\n        data = get_material_icon_data(style)[name]\n    except KeyError as exc:\n        raise KeyError(f\"Unrecognised material-{style} icon: {name}\") from exc\n\n    match = HEIGHT_REGEX.match(height)\n    if not match:\n        raise ValueError(\n            f\"Invalid height: '{height}', must be format <integer><px|em|rem>\"\n        )\n    height_value = round(float(match.group(\"value\")), 3)\n    height_unit = match.group(\"unit\")\n\n    original_height = 20\n    if \"20\" not in data[\"heights\"]:\n        original_height = int(next(iter(data[\"heights\"].keys())))\n    elif \"24\" in data[\"heights\"]:\n        if height_unit == \"px\":\n            if height_value >= 24:\n                original_height = 24\n        elif height_value >= 1.5:\n            original_height = 24\n    original_width = data[\"heights\"][str(original_height)][\"width\"]\n    width_value = round(original_width * height_value / original_height, 3)\n    content = data[\"heights\"][str(original_height)][\"path\"]\n    options = {\n        \"version\": \"4.0.0.63c5cb3\",\n        \"width\": f\"{width_value}{height_unit}\",\n        \"height\": f\"{height_value}{height_unit}\",\n        \"class\": \" \".join((\"sd-material-icon\", f\"sd-material-icon-{name}\", *classes)),\n    }\n\n    options[\"viewBox\"] = f\"0 0 {original_width} {original_height}\"\n\n    if aria_label is not None:\n        options[\"aria-label\"] = aria_label\n        options[\"role\"] = \"img\"\n    else:\n        options[\"aria-hidden\"] = \"true\"\n\n    opt_string = \" \".join(f'{k}=\"{v}\"' for k, v in options.items())\n    return f\"<svg {opt_string}>{content}</svg>\"\n\n\nclass MaterialRole(SphinxRole):\n    \"\"\"Role to display a Material-* icon.\n\n    Additional classes can be added to the element after a semicolon.\n    \"\"\"\n\n    def __init__(self, style: str) -> None:\n        super().__init__()\n        self.style = style\n\n    def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]:\n        \"\"\"Run the role.\"\"\"\n        values = self.text.split(\";\") if \";\" in self.text else [self.text]\n        icon = values[0]\n        height = \"1em\" if len(values) < 2 else values[1]\n        classes = \"\" if len(values) < 3 else values[2]\n        icon = icon.strip()\n        try:\n            svg = get_material_icon(\n                self.style, icon, height=height, classes=classes.split()\n            )\n        except Exception as exc:\n            msg = self.inliner.reporter.error(\n                f\"Invalid material-{self.style} icon content: {type(exc)} {exc}\",\n                line=self.lineno,\n            )\n            prb = self.inliner.problematic(self.rawtext, self.rawtext, msg)\n            return [prb], [msg]\n        node = nodes.raw(\"\", nodes.Text(svg), format=\"html\")\n        self.set_source_info(node)\n        return [node], []\n"
  },
  {
    "path": "sphinx_design/py.typed",
    "content": "# Marker file for PEP 561\n"
  },
  {
    "path": "sphinx_design/shared.py",
    "content": "\"\"\"Shared constants and functions.\"\"\"\n\nfrom __future__ import annotations\n\nfrom collections.abc import Sequence\nfrom typing import final\n\nfrom docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx.application import Sphinx\nfrom sphinx.config import Config\nfrom sphinx.util.docutils import SphinxDirective\nfrom sphinx.util.logging import getLogger\n\nLOGGER = getLogger(__name__)\n\nWARNING_TYPE = \"design\"\n\nSEMANTIC_COLORS = (\n    \"primary\",\n    \"secondary\",\n    \"success\",\n    \"info\",\n    \"warning\",\n    \"danger\",\n    \"light\",\n    \"muted\",\n    \"dark\",\n    \"white\",\n    \"black\",\n)\n\n\ndef setup_custom_directives(\n    app: Sphinx, config: Config, directive_map: dict[str, SdDirective]\n) -> None:\n    conf_value = config.sd_custom_directives\n\n    def _warn(msg):\n        LOGGER.warning(\n            f\"sd_custom_directives: {msg}\", type=WARNING_TYPE, subtype=\"config\"\n        )\n\n    if not isinstance(conf_value, dict):\n        _warn(\"must be a dictionary\")\n        config.sd_custom_directives = {}\n        return\n    for name, data in conf_value.items():\n        if not isinstance(name, str):\n            _warn(f\"key must be a string: {name!r}\")\n            continue\n        if not isinstance(data, dict):\n            _warn(f\"{name!r} value must be a dictionary\")\n            continue\n        if \"inherit\" not in data:\n            _warn(f\"{name!r} value must have an 'inherit' key\")\n            continue\n        if data[\"inherit\"] not in directive_map:\n            _warn(f\"'{name}.inherit' is an unknown directive key: {data['inherit']}\")\n            continue\n        directive_cls = directive_map[data[\"inherit\"]]\n        if \"options\" in data:\n            if not isinstance(data[\"options\"], dict):\n                _warn(f\"'{name}.options' value must be a dictionary\")\n                continue\n            if \"argument\" in data and not isinstance(data[\"argument\"], str):\n                _warn(f\"'{name}.argument' value must be a string\")\n                continue\n            for key, value in data[\"options\"].items():\n                if key not in directive_cls.option_spec:\n                    _warn(f\"'{name}.options' unknown key {key!r}\")\n                    continue\n                if not isinstance(value, str):\n                    _warn(f\"'{name}.options.{key}' value must be a string\")\n                    continue\n        app.add_directive(name, directive_cls, override=True)\n\n\nclass SdDirective(SphinxDirective):\n    \"\"\"Base class for all sphinx-design directives.\n\n    Having a base class allows for shared functionality to be implemented in one place.\n    Namely, we allow for default options to be configured, per directive name.\n\n    This class should be sub-classed by all directives in the sphinx-design extension.\n    \"\"\"\n\n    # TODO perhaps ideally there would be separate sphinx extension,\n    # that generalises the concept of default directive options (that does not require subclassing)\n    # but for now I couldn't think of a trivial way to achieve this.\n\n    @final\n    def run(self) -> list[nodes.Node]:\n        \"\"\"Run the directive.\n\n        This method should not be overridden, instead override `run_with_defaults`.\n        \"\"\"\n        if data := self.config.sd_custom_directives.get(self.name):\n            if (not self.arguments) and (argument := data.get(\"argument\")):  # type: ignore[has-type]\n                self.arguments = [str(argument)]\n            for key, value in data.get(\"options\", {}).items():\n                if key not in self.options and key in self.option_spec:\n                    try:\n                        self.options[key] = self.option_spec[key](str(value))\n                    except Exception as exc:\n                        LOGGER.warning(\n                            f\"Invalid default option {key!r} for {self.name!r}: {exc}\",\n                            type=WARNING_TYPE,\n                            subtype=\"directive\",\n                            location=(self.env.docname, self.lineno),\n                        )\n        return self.run_with_defaults()\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        \"\"\"Run the directive, after default options have been set.\n\n        This method should be overridden by subclasses.\n        \"\"\"\n        raise NotImplementedError\n\n\ndef create_component(\n    name: str,\n    classes: Sequence[str] = (),\n    *,\n    rawtext: str = \"\",\n    children: Sequence[nodes.Node] = (),\n    **attributes,\n) -> nodes.container:\n    \"\"\"Create a container node for a design component.\"\"\"\n    node = nodes.container(\n        rawtext, is_div=True, design_component=name, classes=list(classes), **attributes\n    )\n    node.extend(children)\n    return node\n\n\ndef is_component(node: nodes.Node, name: str):\n    \"\"\"Check if a node is a certain design component.\"\"\"\n    try:\n        return node.get(\"design_component\") == name\n    except AttributeError:\n        return False\n\n\ndef make_choice(choices: Sequence[str]):\n    \"\"\"Create a choice validator.\"\"\"\n    return lambda argument: directives.choice(argument, choices)\n\n\ndef _margin_or_padding_option(\n    argument: str | None,\n    class_prefix: str,\n    allowed: Sequence[str],\n) -> list[str]:\n    \"\"\"Validate the margin/padding is one (all) or four (top bottom left right) integers,\n    between 0 and 5 or 'auto'.\n    \"\"\"\n    if argument is None:\n        raise ValueError(\"argument required but none supplied\")\n    values = argument.split()\n    for value in values:\n        if value not in allowed:\n            raise ValueError(f\"{value} is not in: {allowed}\")\n    if len(values) == 1:\n        return [f\"{class_prefix}-{values[0]}\"]\n    if len(values) == 4:\n        return [\n            f\"{class_prefix}{side}-{value}\"\n            for side, value in zip([\"t\", \"b\", \"l\", \"r\"], values, strict=False)\n        ]\n    raise ValueError(\n        \"argument must be one (all) or four (top bottom left right) integers\"\n    )\n\n\ndef margin_option(argument: str | None) -> list[str]:\n    \"\"\"Validate the margin is one (all) or four (top bottom left right) integers,\n    between 0 and 5 or 'auto'.\n    \"\"\"\n    return _margin_or_padding_option(\n        argument, \"sd-m\", (\"auto\", \"0\", \"1\", \"2\", \"3\", \"4\", \"5\")\n    )\n\n\ndef padding_option(argument: str | None) -> list[str]:\n    \"\"\"Validate the padding is one (all) or four (top bottom left right) integers,\n    between 0 and 5.\n    \"\"\"\n    return _margin_or_padding_option(argument, \"sd-p\", (\"0\", \"1\", \"2\", \"3\", \"4\", \"5\"))\n\n\ndef text_align(argument: str | None) -> list[str]:\n    \"\"\"Validate the text align is left, right, center or justify.\"\"\"\n    value = directives.choice(argument, [\"left\", \"right\", \"center\", \"justify\"])\n    return [f\"sd-text-{value}\"]\n\n\nclass PassthroughTextElement(nodes.TextElement):\n    \"\"\"A text element which will not render anything.\n\n    This is required for reference node to render correctly outside of paragraphs.\n    Since sphinx expects them to be within a ``TextElement``:\n    https://github.com/sphinx-doc/sphinx/blob/068f802df90ea790f89319094e407c4d5f6c26ff/sphinx/writers/html5.py#L224\n    \"\"\"\n"
  },
  {
    "path": "sphinx_design/tabs.py",
    "content": "from docutils import nodes\nfrom docutils.parsers.rst import directives\nfrom sphinx.application import Sphinx\nfrom sphinx.transforms.post_transforms import SphinxPostTransform\nfrom sphinx.util.logging import getLogger\n\nfrom ._compat import findall\nfrom .shared import WARNING_TYPE, SdDirective, create_component, is_component\n\nLOGGER = getLogger(__name__)\n\n\ndef setup_tabs(app: Sphinx) -> None:\n    app.add_directive(\"tab-set\", TabSetDirective)\n    app.add_directive(\"tab-item\", TabItemDirective)\n    app.add_directive(\"tab-set-code\", TabSetCodeDirective)\n    app.add_post_transform(TabSetHtmlTransform)\n    app.add_node(sd_tab_input, html=(visit_tab_input, depart_tab_input))\n    app.add_node(sd_tab_label, html=(visit_tab_label, depart_tab_label))\n\n\nclass TabSetDirective(SdDirective):\n    \"\"\"A container for a set of tab items.\"\"\"\n\n    has_content = True\n    option_spec = {\n        \"sync-group\": directives.unchanged_required,\n        \"class\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        self.assert_has_content()\n        tab_set = create_component(\n            \"tab-set\", classes=[\"sd-tab-set\", *self.options.get(\"class\", [])]\n        )\n        self.set_source_info(tab_set)\n        self.state.nested_parse(self.content, self.content_offset, tab_set)\n        valid_children = []\n        for item in tab_set.children:\n            if not is_component(item, \"tab-item\"):\n                LOGGER.warning(\n                    f\"All children of a 'tab-set' \"\n                    f\"should be 'tab-item' [{WARNING_TYPE}.tab]\",\n                    location=item,\n                    type=WARNING_TYPE,\n                    subtype=\"tab\",\n                )\n                continue  # Skip invalid children instead of breaking\n            if \"sync_id\" in item.children[0]:\n                item.children[0][\"sync_group\"] = self.options.get(\"sync-group\", \"tab\")\n            valid_children.append(item)\n\n        tab_set.children = valid_children\n        return [tab_set]\n\n\nclass TabItemDirective(SdDirective):\n    \"\"\"A single tab item in a tab set.\n\n    Note: This directive generates a single container,\n    for the label and content::\n\n        <container design_component=\"tab-item\" has_title=True>\n            <rubric>\n                ...title nodes\n            <container design_component=\"tab-content\">\n                ...content nodes\n\n    This allows for a default rendering in non-HTML outputs.\n\n    The ``TabHtmlTransform`` then transforms this container\n    into the HTML specific structure.\n    \"\"\"\n\n    required_arguments = 1  # the tab label is the first argument\n    final_argument_whitespace = True\n    has_content = True\n    option_spec = {\n        \"selected\": directives.flag,\n        \"sync\": directives.unchanged_required,\n        \"name\": directives.unchanged,\n        \"class-container\": directives.class_option,\n        \"class-label\": directives.class_option,\n        \"class-content\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        self.assert_has_content()\n        if not is_component(self.state_machine.node, \"tab-set\"):\n            LOGGER.warning(\n                f\"The parent of a 'tab-item' should be a 'tab-set' [{WARNING_TYPE}.tab]\",\n                location=(self.env.docname, self.lineno),\n                type=WARNING_TYPE,\n                subtype=\"tab\",\n            )\n        tab_item = create_component(\n            \"tab-item\",\n            classes=[\"sd-tab-item\", *self.options.get(\"class-container\", [])],\n            selected=(\"selected\" in self.options),\n        )\n\n        # add tab label\n        textnodes, _ = self.state.inline_text(self.arguments[0], self.lineno)\n        tab_label = nodes.rubric(\n            self.arguments[0],\n            \"\",\n            *textnodes,\n            classes=[\"sd-tab-label\", *self.options.get(\"class-label\", [])],\n        )\n        if \"sync\" in self.options:\n            tab_label[\"sync_id\"] = self.options[\"sync\"]\n        self.add_name(tab_label)\n        tab_item += tab_label\n\n        # add tab content\n        tab_content = create_component(\n            \"tab-content\",\n            classes=[\"sd-tab-content\", *self.options.get(\"class-content\", [])],\n        )\n        self.state.nested_parse(self.content, self.content_offset, tab_content)\n        tab_item += tab_content\n\n        return [tab_item]\n\n\nclass TabSetCodeDirective(SdDirective):\n    \"\"\"A container for a set of tab items, generated from code blocks.\"\"\"\n\n    has_content = True\n    option_spec = {\n        \"no-sync\": directives.flag,\n        \"sync-group\": directives.unchanged_required,\n        \"class-set\": directives.class_option,\n        \"class-item\": directives.class_option,\n    }\n\n    def run_with_defaults(self) -> list[nodes.Node]:\n        self.assert_has_content()\n        tab_set = create_component(\n            \"tab-set\", classes=[\"sd-tab-set\", *self.options.get(\"class-set\", [])]\n        )\n        self.set_source_info(tab_set)\n        self.state.nested_parse(self.content, self.content_offset, tab_set)\n        new_children = []\n        for item in tab_set.children:\n            if not isinstance(item, nodes.literal_block):\n                LOGGER.warning(\n                    f\"All children of a 'tab-code-set' \"\n                    f\"should be a 'literal_block' [{WARNING_TYPE}.tab_code]\",\n                    location=tab_set,\n                    type=WARNING_TYPE,\n                    subtype=\"tab_code\",\n                )\n                continue\n            language = item.get(\"language\", \"unknown\")\n            tab_label = nodes.rubric(\n                language.upper(),\n                nodes.Text(language.upper()),\n                classes=[\"sd-tab-label\", *self.options.get(\"class-label\", [])],\n            )\n            if \"no-sync\" not in self.options:\n                tab_label[\"sync_group\"] = self.options.get(\"sync-group\", \"code\")\n                tab_label[\"sync_id\"] = language\n            tab_content = create_component(\n                \"tab-content\",\n                children=[item],\n                classes=[\"sd-tab-content\", *self.options.get(\"class-content\", [])],\n            )\n            tab_item = create_component(\n                \"tab-item\",\n                children=[tab_label, tab_content],\n                classes=[\"sd-tab-item\", *self.options.get(\"class-item\", [])],\n            )\n            new_children.append(tab_item)\n        tab_set.children = new_children\n        return [tab_set]\n\n\nclass sd_tab_input(nodes.Element, nodes.General):  # noqa: N801\n    pass\n\n\nclass sd_tab_label(nodes.TextElement, nodes.General):  # noqa: N801\n    pass\n\n\ndef visit_tab_input(self, node):\n    attributes = {\"ids\": [node[\"id\"]], \"type\": node[\"type\"], \"name\": node[\"set_id\"]}\n    if node[\"checked\"]:\n        attributes[\"checked\"] = \"checked\"\n    self.body.append(self.starttag(node, \"input\", **attributes))\n\n\ndef depart_tab_input(self, node):\n    # note do not add a closing tag, since this is a void element:\n    # https://developer.mozilla.org/en-US/docs/Glossary/Void_element\n    pass\n\n\ndef visit_tab_label(self, node):\n    attributes = {\"for\": node[\"input_id\"]}\n    if \"sync_id\" in node and \"sync_group\" in node:\n        attributes[\"data-sync-id\"] = node[\"sync_id\"]\n        attributes[\"data-sync-group\"] = node[\"sync_group\"]\n    self.body.append(self.starttag(node, \"label\", **attributes))\n\n\ndef depart_tab_label(self, node):\n    self.body.append(\"</label>\")\n\n\nclass TabSetHtmlTransform(SphinxPostTransform):\n    \"\"\"Transform tab-set to HTML specific AST structure.\"\"\"\n\n    default_priority = 200\n    formats = (\"html\",)\n\n    def run(self) -> None:\n        \"\"\"Run the transform.\"\"\"\n\n        # setup id generators\n        tab_set_id_base = \"sd-tab-set-\"\n        tab_item_id_base = \"sd-tab-item-\"\n        tab_item_id_num = 0\n\n        for tab_set_id_num, tab_set in enumerate(\n            findall(self.document)(lambda node: is_component(node, \"tab-set\"))\n        ):\n            tab_set_identity = tab_set_id_base + str(tab_set_id_num)\n            children = []\n            # get the first selected node\n            selected_idx = None\n            for idx, tab_item in enumerate(tab_set.children):\n                if tab_item.get(\"selected\", False):\n                    if selected_idx is None:\n                        selected_idx = idx\n                    else:\n                        LOGGER.warning(\n                            f\"Multiple selected 'tab-item' directives [{WARNING_TYPE}.tab]\",\n                            location=tab_item,\n                            type=WARNING_TYPE,\n                            subtype=\"tab\",\n                        )\n            selected_idx = 0 if selected_idx is None else selected_idx\n\n            for idx, tab_item in enumerate(tab_set.children):\n                if not is_component(tab_item, \"tab-item\"):\n                    continue  # Skip non tab-item children\n                if len(tab_item.children) != 2:\n                    LOGGER.warning(\n                        f\"Malformed 'tab-item' directive [{WARNING_TYPE}.tab]\",\n                        location=tab_item,\n                        type=WARNING_TYPE,\n                        subtype=\"tab\",\n                    )\n                    continue\n                tab_label, tab_content = tab_item.children\n                tab_item_identity = tab_item_id_base + str(tab_item_id_num)\n                tab_item_id_num += 1\n\n                # create: <input checked=\"checked\" id=\"id\" type=\"radio\">\n                input_node = sd_tab_input(\n                    \"\",\n                    id=tab_item_identity,\n                    set_id=tab_set_identity,\n                    type=\"radio\",\n                    checked=(idx == selected_idx),\n                )\n                input_node.source, input_node.line = tab_item.source, tab_item.line\n                children.append(input_node)\n\n                # create: <label for=\"id\">...</label>\n                label_node = sd_tab_label(\n                    \"\",\n                    \"\",\n                    *tab_label.children,\n                    input_id=tab_item_identity,\n                    classes=tab_label[\"classes\"],\n                )\n                if tab_label.get(\"ids\"):\n                    label_node[\"ids\"] += tab_label[\"ids\"]\n                if \"sync_group\" in tab_label and \"sync_id\" in tab_label:\n                    label_node[\"sync_group\"] = tab_label[\"sync_group\"]\n                    label_node[\"sync_id\"] = tab_label[\"sync_id\"]\n                label_node.source, label_node.line = tab_item.source, tab_item.line\n                children.append(label_node)\n\n                # add content\n                children.append(tab_content)\n\n            tab_set.children = children\n"
  },
  {
    "path": "style/_animations.scss",
    "content": "@keyframes sd-slide-from-left {\n  0% {\n    transform: translateX(-100%);\n  }\n  100% {\n    transform: translateX(0);\n  }\n}\n\n@keyframes sd-slide-from-right {\n  0% {\n    transform: translateX(200%);\n  }\n  100% {\n    transform: translateX(0);\n  }\n}\n\n@keyframes sd-grow100 {\n  0% {\n    transform: scale(0);\n    opacity: 0.5;\n  }\n  100% {\n    transform: scale(1);\n    opacity: 1;\n  }\n}\n\n@keyframes sd-grow50 {\n  0% {\n    transform: scale(0.5);\n    opacity: 0.5;\n  }\n  100% {\n    transform: scale(1);\n    opacity: 1;\n  }\n}\n\n@keyframes sd-grow50-rot20 {\n  0% {\n    transform: scale(0.5) rotateZ(-20deg);\n    opacity: 0.5;\n  }\n  75% {\n    transform: scale(1) rotateZ(5deg);\n    opacity: 1;\n  }\n  95% {\n    transform: scale(1) rotateZ(-1deg);\n    opacity: 1;\n  }\n  100% {\n    transform: scale(1) rotateZ(0);\n    opacity: 1;\n  }\n}\n\n// animation is shorthand for 'animation-' properties:\n// duration | easing-function | delay | iteration-count | direction | fill-mode | play-state | name\n\n.sd-animate-slide-from-left {\n  animation: 1s ease-out 0s 1 normal none running sd-slide-from-left;\n}\n\n.sd-animate-slide-from-right {\n  animation: 1s ease-out 0s 1 normal none running sd-slide-from-right;\n}\n\n.sd-animate-grow100 {\n  animation: 1s ease-out 0s 1 normal none running sd-grow100;\n}\n\n.sd-animate-grow50 {\n  animation: 1s ease-out 0s 1 normal none running sd-grow50;\n}\n\n.sd-animate-grow50-rot20 {\n  animation: 1s ease-out 0s 1 normal none running sd-grow50-rot20;\n}\n"
  },
  {
    "path": "style/_badge.scss",
    "content": "// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/)\n// Copyright 2011-2019 The Bootstrap Authors\n// Copyright 2011-2019 Twitter, Inc.\n// Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n\n.sd-badge {\n  display: inline-block;\n  padding: 0.35em 0.65em;\n  font-size: 0.75em;\n  font-weight: 700;\n  line-height: 1;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: 0.25rem;\n\n  // Empty badges collapse automatically\n  &:empty {\n    display: none;\n  }\n}\n\n// Remove underline\na.sd-badge {\n  text-decoration: none;\n}\n\n// Quick fix for badges in buttons\n.sd-btn .sd-badge {\n  position: relative;\n  top: -1px;\n}\n\n// note badge colors were removed in v5\n"
  },
  {
    "path": "style/_borders.scss",
    "content": "$borders: (\n  0: 0,\n  1: 1px,\n  2: 2px,\n  3: 3px,\n  4: 4px,\n  5: 5px,\n);\n\n@each $name, $value in $borders {\n  .sd-border-#{$name} {\n    border: $value solid !important;\n  }\n  .sd-border-top-#{$name} {\n    border-top: $value solid !important;\n  }\n  .sd-border-bottom-#{$name} {\n    border-bottom: $value solid !important;\n  }\n  .sd-border-right-#{$name} {\n    border-right: $value solid !important;\n  }\n  .sd-border-left-#{$name} {\n    border-left: $value solid !important;\n  }\n}\n\n$rounded: (\n  0: 0,\n  1: 0.2rem,\n  2: 0.3rem,\n  3: 0.5rem,\n  pill: 50rem,\n  circle: 50%,\n);\n\n@each $name, $value in $rounded {\n  .sd-rounded-#{$name} {\n    border-radius: $value !important;\n  }\n}\n\n// shadows\n.shadow-none {\n  box-shadow: none !important;\n}\n\n.sd-shadow-sm {\n  box-shadow: 0 .125rem 0.25rem var(--sd-color-shadow) !important;\n}\n\n.sd-shadow-md {\n  box-shadow: 0 .5rem 1rem var(--sd-color-shadow) !important;\n}\n\n.sd-shadow-lg {\n  box-shadow: 0 1rem 3rem var(--sd-color-shadow) !important;\n}\n"
  },
  {
    "path": "style/_button.scss",
    "content": "// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/)\n// Copyright 2011-2019 The Bootstrap Authors\n// Copyright 2011-2019 Twitter, Inc.\n// Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n@use \"colors\" as *;\n\n.sd-btn {\n  background-color: transparent;\n  border: 1px solid transparent;\n  border-radius: 0.25rem;\n  //   color: var(--sd-color-dark);\n  cursor: pointer;\n  display: inline-block;\n  font-weight: 400;\n  font-size: 1rem;\n  line-height: 1.5;\n  padding: 0.375rem 0.75rem;\n  text-align: center;\n  text-decoration: none;\n  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,\n    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n  vertical-align: middle;\n  user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  -webkit-user-select: none;\n\n  &:hover {\n    text-decoration: none;\n  }\n\n  //   &:focus {\n  //     box-shadow: 0 0 0 0.2rem rgba(mix($blue, $blue, 15%), .25);\n  //     outline: 0;\n  //   }\n\n  //   &:visited {\n  //     color: var(--sd-color-dark);\n  //   }\n\n  //   // override alabaster theme\n  //   &.reference {\n  //     border-bottom: inherit;\n  //   }\n  //   &.reference:hover {\n  //     border-bottom: inherit;\n  //   }\n}\n\n@media (prefers-reduced-motion: reduce) {\n  .sd-btn {\n    transition: none;\n  }\n}\n\n@each $color, $value in $semantic-colors {\n  .sd-btn-#{$color},\n  .sd-btn-outline-#{$color}:hover,\n  .sd-btn-outline-#{$color}:focus {\n    color: var(--sd-color-#{$color}-text) !important;\n    background-color: var(--sd-color-#{$color}) !important;\n    border-color: var(--sd-color-#{$color}) !important;\n    border-width: 1px !important;\n    border-style: solid !important;\n  }\n  .sd-btn-#{$color}:hover,\n  .sd-btn-#{$color}:focus {\n    color: var(--sd-color-#{$color}-text) !important;\n    background-color: var(--sd-color-#{$color}-highlight) !important;\n    border-color: var(--sd-color-#{$color}-highlight) !important;\n    border-width: 1px !important;\n    border-style: solid !important;\n  }\n  .sd-btn-outline-#{$color} {\n    color: var(--sd-color-#{$color}) !important;\n    border-color: var(--sd-color-#{$color}) !important;\n    border-width: 1px !important;\n    border-style: solid !important;\n  }\n}\n\n// make parent clickable\n.sd-stretched-link::after {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1;\n  content: \"\";\n}\n\n.sd-hide-link-text {\n  font-size: 0;\n}\n"
  },
  {
    "path": "style/_cards.scss",
    "content": "// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/)\n// Copyright 2011-2019 The Bootstrap Authors\n// Copyright 2011-2019 Twitter, Inc.\n// Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n@use 'sass:math';\n\n.sd-card {\n  background-clip: border-box;\n  background-color: var(--sd-color-card-background);\n  border: 1px solid var(--sd-color-card-border);\n  border-radius: 0.25rem;\n  color: var(--sd-color-card-text);\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-direction: column;\n  flex-direction: column;\n  min-width: 0;\n  position: relative;\n  word-wrap: break-word;\n\n  > hr {\n    margin-left: 0;\n    margin-right: 0;\n  }\n}\n\n.sd-card-hover:hover {\n  border-color: var(--sd-color-card-border-hover);\n  transform: scale(1.01);\n}\n\n.sd-card-body {\n  -ms-flex: 1 1 auto;\n  flex: 1 1 auto;\n  padding: 1rem 1rem;\n}\n\n.sd-card-title {\n  margin-bottom: 0.5rem;\n}\n\n.sd-card-subtitle {\n  margin-top: -0.25rem;\n  margin-bottom: 0;\n}\n\n.sd-card-text:last-child {\n  margin-bottom: 0;\n}\n\n.sd-card-link:hover {\n  text-decoration: none;\n}\n\n.sd-card-link + .card-link {\n  margin-left: 1rem;\n}\n\n.sd-card-header {\n  padding: 0.5rem 1rem;\n  margin-bottom: 0;\n  background-color: var(--sd-color-card-header);\n  border-bottom: 1px solid var(--sd-color-card-border);\n}\n\n.sd-card-header:first-child {\n  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.sd-card-footer {\n  padding: 0.5rem 1rem;\n  background-color: var(--sd-color-card-footer);\n  border-top: 1px solid var(--sd-color-card-border);\n}\n\n.sd-card-footer:last-child {\n  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.sd-card-header-tabs {\n  margin-right: -0.5rem;\n  margin-bottom: -0.5rem;\n  margin-left: -0.5rem;\n  border-bottom: 0;\n}\n\n.sd-card-header-pills {\n  margin-right: -0.5rem;\n  margin-left: -0.5rem;\n}\n\n.sd-card-img-overlay {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  padding: 1rem;\n  border-radius: calc(0.25rem - 1px);\n}\n\n.sd-card-img,\n.sd-card-img-bottom,\n.sd-card-img-top {\n  width: 100%;\n}\n\n.sd-card-img,\n.sd-card-img-top {\n  border-top-left-radius: calc(0.25rem - 1px);\n  border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.sd-card-img,\n.sd-card-img-bottom {\n  border-bottom-left-radius: calc(0.25rem - 1px);\n  border-bottom-right-radius: calc(0.25rem - 1px);\n}\n\n// sd-cards-carousel is not part of bootstrap\n// it is intended to create a single row of scrollable cards\n// with a standard width for each card\n\n.sd-cards-carousel {\n  width: 100%;\n  display: flex;\n  flex-wrap: nowrap;\n  -ms-flex-direction: row;\n  flex-direction: row;\n  overflow-x: hidden;\n  scroll-snap-type: x mandatory;\n}\n\n// use to always show the scroll bar\n.sd-cards-carousel.sd-show-scrollbar {\n  overflow-x: auto;\n}\n\n.sd-cards-carousel:hover, .sd-cards-carousel:focus {\n  overflow-x: auto;\n}\n\n.sd-cards-carousel > .sd-card {\n  flex-shrink: 0;\n  scroll-snap-align: start;\n}\n\n.sd-cards-carousel > .sd-card:not(:last-child) {\n  margin-right: 3px;\n}\n\n@for $i from 1 through 12 {\n  .sd-card-cols-#{$i} > .sd-card {\n    // we use less than 100% here, so that the (i+1)th card will be slightly visible,\n    // so the user is aware that there are more cards available\n    width: math.div(90%, $i);\n  }\n}\n"
  },
  {
    "path": "style/_colors.scss",
    "content": "$white: #fff !default;\n$white-50: rgba(255, 255, 255, .5) !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n$black-0: rgba(0, 0, 0, 0) !default;\n$black-3: rgba(0, 0, 0, .03) !default;\n$black-12-5: rgba(0, 0, 0, .125) !default;\n$black-15: rgba(0, 0, 0, .15) !default;\n$black-25: rgba(0, 0, 0, .25) !default;\n$black-50: rgba(0, 0, 0, .5) !default;\n\n$blue: #0071bc !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$semantic-colors: (\n  \"primary\": $blue,\n  \"secondary\": $gray-600,\n  \"success\": $green,\n  \"info\": $cyan,\n  \"warning\": #f0b37e,\n  \"danger\": $red,\n  \"light\": $gray-100,\n  \"muted\": $gray-600,\n  \"dark\": $gray-900,\n  \"black\": black,\n  \"white\": white,\n) !default;\n\n@function text-color($value) {\n  @return if(lightness($value) > 70, $gray-900, $white);\n}\n\n@each $color, $value in $semantic-colors {\n  .sd-bg-#{$color} {\n    background-color: var(--sd-color-#{$color}) !important;\n  }\n  .sd-bg-text-#{$color} {\n    color: var(--sd-color-#{$color}-text) !important;\n  }\n  button {\n    &.sd-bg-#{$color}:focus,\n    &.sd-bg-#{$color}:hover {\n      background-color: var(--sd-color-#{$color}-highlight) !important;\n    }\n  }\n  a {\n    &.sd-bg-#{$color}:focus,\n    &.sd-bg-#{$color}:hover {\n      background-color: var(--sd-color-#{$color}-highlight) !important;\n    }\n  }\n}\n\n@each $color, $value in $semantic-colors {\n  .sd-text-#{$color}, .sd-text-#{$color} > p {\n    color: var(--sd-color-#{$color}) !important;\n  }\n  a {\n    &.sd-text-#{$color}:focus,\n    &.sd-text-#{$color}:hover {\n      color: var(--sd-color-#{$color}-highlight) !important;\n    }\n  }\n}\n\n@each $color, $value in $semantic-colors {\n  .sd-outline-#{$color} {\n    border-color: var(--sd-color-#{$color}) !important;\n    border-style: solid !important;\n    border-width: 1px !important;\n  }\n  a {\n    &.sd-outline-#{$color}:focus,\n    &.sd-outline-#{$color}:hover {\n      border-color: var(--sd-color-#{$color}-highlight) !important;\n    }\n  }\n}\n\n// transparent color\n.sd-bg-transparent {\n  background-color: transparent !important;\n}\n.sd-outline-transparent {\n  border-color: transparent !important;\n}\n.sd-text-transparent {\n  color: transparent !important;\n}\n"
  },
  {
    "path": "style/_display.scss",
    "content": "@use \"spacing\" as *;\n\n.sd-d-none {\n  display: none !important;\n}\n\n.sd-d-inline {\n  display: inline !important;\n}\n\n.sd-d-inline-block {\n  display: inline-block !important;\n}\n\n.sd-d-block {\n  display: block !important;\n}\n\n.sd-d-grid {\n  display: grid !important;\n}\n\n.sd-d-flex-row {\n  display: -ms-flexbox !important;\n  display: flex !important;\n  flex-direction: row !important;\n}\n\n.sd-d-flex-column {\n  display: -ms-flexbox !important;\n  display: flex !important;\n  flex-direction: column !important;\n}\n\n.sd-d-inline-flex {\n  display: -ms-inline-flexbox !important;\n  display: inline-flex !important;\n}\n\n@each $cat, $width in $media-widths {\n  @media (min-width: $width) {\n    .sd-d-#{$cat}-none {\n      display: none !important;\n    }\n\n    .sd-d-#{$cat}-inline {\n      display: inline !important;\n    }\n\n    .sd-d-#{$cat}-inline-block {\n      display: inline-block !important;\n    }\n\n    .sd-d-#{$cat}-block {\n      display: block !important;\n    }\n\n    .sd-d-#{$cat}-grid {\n      display: grid !important;\n    }\n\n    .sd-d-#{$cat}-flex {\n      display: -ms-flexbox !important;\n      display: flex !important;\n    }\n\n    .sd-d-#{$cat}-inline-flex {\n      display: -ms-inline-flexbox !important;\n      display: inline-flex !important;\n    }\n  }\n}\n\n// will align on major axis of flex\n.sd-align-major-start {\n  justify-content: flex-start !important;\n}\n\n.sd-align-major-end {\n  justify-content: flex-end !important;\n}\n\n.sd-align-major-center {\n  justify-content: center !important;\n}\n\n.sd-align-major-justify {\n  justify-content: space-between !important;\n}\n\n.sd-align-major-spaced {\n  justify-content: space-evenly !important;\n}\n\n// will align on minor axis of flex\n.sd-align-minor-start {\n  align-items: flex-start !important;\n}\n\n.sd-align-minor-end {\n  align-items: flex-end !important;\n}\n\n.sd-align-minor-center {\n  align-items: center !important;\n}\n\n// default\n.sd-align-minor-stretch {\n  align-items: stretch !important;\n}\n"
  },
  {
    "path": "style/_dropdown.scss",
    "content": "details.sd-dropdown {\n\n  position: relative;\n  font-size: var(--sd-fontsize-dropdown);\n\n  &:hover {\n    cursor: pointer;\n  }\n\n  .sd-summary-content {\n    cursor: default;\n  }\n\n  summary.sd-summary-title {\n    padding: 0.5em 0.6em 0.5em 1em;\n    font-size: var(--sd-fontsize-dropdown-title);\n    font-weight: var(--sd-fontweight-dropdown-title);\n\n    // make the text un-selectable\n    user-select: none;\n    -moz-user-select: none;\n    -ms-user-select: none;\n    -webkit-user-select: none;\n\n    // hide the default triangle marker\n    list-style: none;\n    // chrome doesn't yet support list-style\n    &::-webkit-details-marker {\n      display: none;\n    }\n\n    &:focus {\n      outline: none;\n    }\n\n    // The title is split into three parts:\n    // 1. The icon (optional), which should be on the left\n    // 2. The text, which should be in the middle, and take all available space\n    // 3. The state marker, which should be on the right\n\n    display: inline-flex;\n    justify-content: space-between;\n\n    .sd-summary-icon {\n      margin-right: 0.6em;\n      // align the icon vertically within its container\n      display: inline-flex;\n      align-items: center;\n    }\n\n    .sd-summary-icon svg {\n      opacity: 0.8;\n    }\n\n    .sd-summary-text {\n      flex-grow: 1;\n      line-height: 1.5;\n      // note, we add right padding to the text, rather than a left margin to the state marker,\n      // because when you rotate the state marker, left is no longer left\n      padding-right: 0.5rem;\n    }\n\n    .sd-summary-state-marker {\n      pointer-events: none;\n      // align the icon vertically within its container\n      display: inline-flex;\n      align-items: center;\n    }\n\n    // make the state marker a bit more prominent when hovered\n    .sd-summary-state-marker svg {\n      opacity: 0.6;\n    }\n    &:hover .sd-summary-state-marker svg {\n      opacity: 1;\n      transform: scale(1.1);\n    }\n\n  }\n\n  // Hide the octicon added as a placeholder for when no title is provided,\n  // but only when the summary is open\n  &[open] summary .sd-octicon.no-title {\n    visibility: hidden;\n  }\n\n  // setup how state marker changes on open/close of the dropdown\n  .sd-summary-chevron-right {\n    transition: 0.25s;\n  }\n  &[open] > .sd-summary-title .sd-summary-chevron-right {\n    transform: rotate(90deg);\n  }\n  &[open] > .sd-summary-title .sd-summary-chevron-down {\n    transform: rotate(180deg);\n  }\n\n  // Hide the card body border when not open\n  &:not([open]).sd-card {\n    border: none;\n  }\n  &:not([open]) > .sd-card-header {\n    border: 1px solid var(--sd-color-card-border);\n    border-radius: 0.25rem;\n  }\n\n  // Transition animation\n  &.sd-fade-in[open] summary ~ * {\n    -moz-animation: sd-fade-in 0.5s ease-in-out;\n    -webkit-animation: sd-fade-in 0.5s ease-in-out;\n    animation: sd-fade-in 0.5s ease-in-out;\n  }\n\n  &.sd-fade-in-slide-down[open] summary ~ * {\n    -moz-animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out;\n    -webkit-animation: sd-fade-in 0.5s ease-in-out,\n      sd-slide-down 0.5s ease-in-out;\n    animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out;\n  }\n}\n\n.sd-col > .sd-dropdown {\n  width: 100%;\n}\n\n.sd-summary-content > .sd-tab-set:first-child {\n  margin-top: 0;\n}\n\n@keyframes sd-fade-in {\n  0% {\n    opacity: 0;\n  }\n\n  100% {\n    opacity: 1;\n  }\n}\n\n@keyframes sd-slide-down {\n  0% {\n    transform: translate(0, -10px);\n  }\n\n  100% {\n    transform: translate(0, 0);\n  }\n}\n"
  },
  {
    "path": "style/_grids.scss",
    "content": "// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/)\n// See: dist/css/bootstrap-grid.css\n// Copyright 2011-2021 The Bootstrap Authors\n// Copyright 2011-2019 Twitter, Inc.\n// Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n@use 'sass:math';\n@use \"spacing\" as *;\n\n$gutter-widths: $spacings;\n\n.sd-container,\n.sd-container-fluid,\n.sd-container-lg,\n.sd-container-md,\n.sd-container-sm,\n.sd-container-xl {\n  margin-left: auto;\n  margin-right: auto;\n  padding-left: var(--sd-gutter-x, 0.75rem);\n  padding-right: var(--sd-gutter-x, 0.75rem);\n  width: 100%;\n}\n\n@media (min-width: $media-min-sm) {\n  .sd-container-sm,\n  .sd-container {\n    max-width: $media-max-sm;\n  }\n}\n\n@media (min-width: $media-min-md) {\n  .sd-container-md,\n  .sd-container-sm,\n  .sd-container {\n    max-width: $media-max-md;\n  }\n}\n\n@media (min-width: $media-min-lg) {\n  .sd-container-lg,\n  .sd-container-md,\n  .sd-container-sm,\n  .sd-container {\n    max-width: $media-max-lg;\n  }\n}\n\n@media (min-width: $media-min-xl) {\n  .sd-container-xl,\n  .sd-container-lg,\n  .sd-container-md,\n  .sd-container-sm,\n  .sd-container {\n    max-width: $media-max-xl;\n  }\n}\n\n.sd-row {\n  --sd-gutter-x: 1.5rem;\n  --sd-gutter-y: 0;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  margin-top: calc(var(--sd-gutter-y) * -1);\n  margin-right: calc(var(--sd-gutter-x) * -0.5);\n  margin-left: calc(var(--sd-gutter-x) * -0.5);\n}\n\n.sd-row > * {\n  box-sizing: border-box;\n  flex-shrink: 0;\n  width: 100%;\n  max-width: 100%;\n  padding-right: calc(var(--sd-gutter-x) * 0.5);\n  padding-left: calc(var(--sd-gutter-x) * 0.5);\n  margin-top: var(--sd-gutter-y);\n}\n\n.sd-col {\n  flex: 1 0 0%;\n  -ms-flex: 1 0 0%;\n}\n\n.sd-row-cols-auto > * {\n  flex: 0 0 auto;\n  width: auto;\n}\n\n@for $i from 1 through 12 {\n  .sd-row-cols-#{$i} {\n    > * {\n      flex: 0 0 auto;\n      -ms-flex: 0 0 auto;\n      width: math.div(100%, $i);\n    }\n  }\n}\n\n@each $cat, $width in $media-widths {\n  @media (min-width: $width) {\n    .sd-col-#{$cat} {\n      flex: 1 0 0%;\n      -ms-flex: 1 0 0%;\n    }\n\n    .sd-row-cols-#{$cat}-auto {\n      flex: 1 0 auto;\n      -ms-flex: 1 0 auto;\n      width: 100%;\n    }\n\n    @for $i from 1 through 12 {\n      .sd-row-cols-#{$cat}-#{$i} {\n        > * {\n          flex: 0 0 auto;\n          -ms-flex: 0 0 auto;\n          width: math.div(100%, $i);\n        }\n      }\n    }\n  }\n}\n\n.sd-col-auto {\n  flex: 0 0 auto;\n  -ms-flex: 0 0 auto;\n  width: auto;\n}\n\n@for $i from 1 through 12 {\n  .sd-col-#{$i} {\n    flex: 0 0 auto;\n    -ms-flex: 0 0 auto;\n    width: 100% * math.div($i, 12);\n  }\n}\n\n@each $cat, $width in $gutter-widths {\n  .sd-g-#{$cat},\n  .sd-gy-#{$cat} {\n    --sd-gutter-y: #{$width};\n  }\n  .sd-g-#{$cat},\n  .sd-gx-#{$cat} {\n    --sd-gutter-x: #{$width};\n  }\n}\n\n@each $cat, $width in $media-widths {\n  @media (min-width: $width) {\n    .sd-col-#{$cat}-auto {\n      -ms-flex: 0 0 auto;\n      flex: 0 0 auto;\n      width: auto;\n    }\n    @for $i from 1 through 12 {\n      .sd-col-#{$cat}-#{$i} {\n        -ms-flex: 0 0 auto;\n        flex: 0 0 auto;\n        width: 100% * math.div($i, 12);\n      }\n    }\n    @each $gcat, $gwidth in $gutter-widths {\n      .sd-g-#{$cat}-#{$gcat},\n      .sd-gy-#{$cat}-#{$gcat} {\n        --sd-gutter-y: #{$gwidth};\n      }\n      .sd-g-#{$cat}-#{$gcat},\n      .sd-gx-#{$cat}-#{$gcat} {\n        --sd-gutter-x: #{$gwidth};\n      }\n    }\n  }\n}\n\n.sd-flex-row-reverse {\n  flex-direction: row-reverse !important;\n}\n"
  },
  {
    "path": "style/_icons.scss",
    "content": ".sd-octicon,\n.sd-material-icon {\n  display: inline-block;\n  fill: currentColor;\n  vertical-align: middle;\n}\n\n$avatar-sizes: (\n  xs: 1rem,\n  sm: 3rem,\n  md: 5rem,\n  lg: 7rem,\n  xl: 10rem,\n  inherit: inherit,\n  initial: initial\n);\n\n@each $size, $value in $avatar-sizes {\n  .sd-avatar-#{$size} {\n    border-radius: 50%;\n    object-fit: cover; /* Keep the image aspect ratio */\n    object-position: center; /* Center the image within the element */\n    width: $value;\n    height: $value;\n  }\n}\n"
  },
  {
    "path": "style/_overrides.scss",
    "content": "// Overrides for non-bootstrap themes (such as alabaster)\n\n.sd-sphinx-override,\n.sd-sphinx-override * {\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n\n.sd-sphinx-override p {\n  margin-top: 0;\n}\n"
  },
  {
    "path": "style/_sizing.scss",
    "content": "// Width and height\n\n$sizes: (\n  25: 25%,\n  50: 50%,\n  75: 75%,\n  100: 100%,\n  auto: auto,\n);\n\n@each $prop, $abbrev in (width: w, height: h) {\n  @each $size, $length in $sizes {\n    .sd-#{$abbrev}-#{$size} {\n      #{$prop}: $length !important;\n    }\n  }\n}\n"
  },
  {
    "path": "style/_spacing.scss",
    "content": "$spacer: 1rem;\n$spacings: (\n  0: 0,\n  1: $spacer * 0.25,\n  2: $spacer * 0.5,\n  3: $spacer,\n  4: $spacer * 1.5,\n  5: $spacer * 3,\n) !default;\n\n$media-min-sm: 576px;\n$media-min-md: 768px;\n$media-min-lg: 992px;\n$media-min-xl: 1200px;\n\n$media-max-sm: 540px;\n$media-max-md: 720px;\n$media-max-lg: 960px;\n$media-max-xl: 1140px;\n\n$media-widths: (\n  \"sm\": $media-min-sm,\n  \"md\": $media-min-md,\n  \"lg\": $media-min-lg,\n  \"xl\": $media-min-xl,\n) !default;\n\n@each $id, $value in $spacings {\n  .sd-p-#{$id} {\n    padding: $value !important;\n  }\n\n  .sd-pt-#{$id},\n  .sd-py-#{$id} {\n    padding-top: $value !important;\n  }\n\n  .sd-pr-#{$id},\n  .sd-px-#{$id} {\n    padding-right: $value !important;\n  }\n\n  .sd-pb-#{$id},\n  .sd-py-#{$id} {\n    padding-bottom: $value !important;\n  }\n\n  .sd-pl-#{$id},\n  .sd-px-#{$id} {\n    padding-left: $value !important;\n  }\n}\n\n.sd-m-auto {\n  margin: auto !important;\n}\n\n.sd-mt-auto,\n.sd-my-auto {\n  margin-top: auto !important;\n}\n\n.sd-mr-auto,\n.sd-mx-auto {\n  margin-right: auto !important;\n}\n\n.sd-mb-auto,\n.sd-my-auto {\n  margin-bottom: auto !important;\n}\n\n.sd-ml-auto,\n.sd-mx-auto {\n  margin-left: auto !important;\n}\n\n@each $id, $value in $spacings {\n  .sd-m-#{$id} {\n    margin: $value !important;\n  }\n\n  .sd-mt-#{$id},\n  .sd-my-#{$id} {\n    margin-top: $value !important;\n  }\n\n  .sd-mr-#{$id},\n  .sd-mx-#{$id} {\n    margin-right: $value !important;\n  }\n\n  .sd-mb-#{$id},\n  .sd-my-#{$id} {\n    margin-bottom: $value !important;\n  }\n\n  .sd-ml-#{$id},\n  .sd-mx-#{$id} {\n    margin-left: $value !important;\n  }\n}\n"
  },
  {
    "path": "style/_tabs.scss",
    "content": "// Tabbed block container\n.sd-tab-set {\n  border-radius: 0.125rem;\n  display: flex;\n  flex-wrap: wrap;\n  margin: 1em 0;\n  position: relative;\n\n  // Hide radio buttons\n  > input {\n    opacity: 0;\n    position: absolute;\n\n    // Active tab label\n    &:checked + label {\n      border-color: var(--sd-color-tabs-underline-active);\n      color: var(--sd-color-tabs-label-active);\n\n      // Show tabbed block content\n      + .sd-tab-content {\n        display: block;\n      }\n    }\n\n    &:not(:checked) + label:hover {\n      color: var(--sd-color-tabs-label-hover);\n      border-color: var(--sd-color-tabs-underline-hover);\n    }\n\n    // Focused tab label\n    &:focus + label {\n      outline-style: auto;\n    }\n\n    // Disable focus indicator for pointer devices\n    &:not(.focus-visible) + label {\n      outline: none;\n      -webkit-tap-highlight-color: transparent;\n    }\n  }\n\n  // Tab label\n  > label {\n    border-bottom: 0.125rem solid transparent;\n    margin-bottom: 0;\n    color: var(--sd-color-tabs-label-inactive);\n    border-color: var(--sd-color-tabs-underline-inactive);\n    cursor: pointer;\n    font-size: var(--sd-fontsize-tabs-label);\n    font-weight: 700;\n    padding: 1em 1.25em 0.5em;\n    transition: color 250ms;\n    width: auto;\n    z-index: 1;\n\n    // Hovered label\n    html &:hover {\n      color: var(--sd-color-tabs-label-active);\n    }\n  }\n}\n\n.sd-col > .sd-tab-set {\n  width: 100%;\n}\n\n// Tabbed block content\n.sd-tab-content {\n  box-shadow: 0 -0.0625rem var(--sd-color-tabs-overline),\n    0 0.0625rem var(--sd-color-tabs-underline);\n  display: none;\n  order: 99;\n  padding-bottom: 0.75rem;\n  padding-top: 0.75rem;\n  width: 100%;\n\n  > :first-child {\n    margin-top: 0 !important;\n  }\n\n  > :last-child {\n    margin-bottom: 0 !important;\n  }\n\n  // Nested tabs\n  > .sd-tab-set {\n    margin: 0;\n  }\n}\n"
  },
  {
    "path": "style/_text.scss",
    "content": ".sd-text-justify {\n  text-align: justify !important;\n}\n\n.sd-text-left {\n  text-align: left !important;\n}\n\n.sd-text-right {\n  text-align: right !important;\n}\n\n.sd-text-center {\n  text-align: center !important;\n}\n\n.sd-font-weight-light {\n  font-weight: 300 !important;\n}\n\n.sd-font-weight-lighter {\n  font-weight: lighter !important;\n}\n\n.sd-font-weight-normal {\n  font-weight: 400 !important;\n}\n\n.sd-font-weight-bold {\n  font-weight: 700 !important;\n}\n\n.sd-font-weight-bolder {\n  font-weight: bolder !important;\n}\n\n.sd-font-italic {\n  font-style: italic !important;\n}\n\n.sd-text-decoration-none {\n  text-decoration: none !important;\n}\n\n.sd-text-lowercase {\n  text-transform: lowercase !important;\n}\n\n.sd-text-uppercase {\n  text-transform: uppercase !important;\n}\n\n.sd-text-capitalize {\n  text-transform: capitalize !important;\n}\n\n.sd-text-wrap {\n  white-space: normal !important;\n}\n\n.sd-text-nowrap {\n  white-space: nowrap !important;\n}\n\n// requires `display: inline-block` or `display: block`\n.sd-text-truncate {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n\n$font-sizes: (\n  1: calc(1.375rem + 1.5vw),\n  2: calc(1.325rem + 0.9vw),\n  3: calc(1.3rem + 0.6vw),\n  4: calc(1.275rem + 0.3vw),\n  5: 1.25rem,\n  6: 1rem\n);\n\n@each $id, $value in $font-sizes {\n  .sd-fs-#{$id}, .sd-fs-#{$id} > p {\n    font-size: $value !important;\n    line-height: unset !important;\n  }\n}\n"
  },
  {
    "path": "style/_variables.scss",
    "content": "@use \"colors\" as *;\n\n:root {\n  // semantic colors\n  @each $color, $value in $semantic-colors {\n    --sd-color-#{$color}: #{$value};\n  }\n  // semantic colors for highlighting (e.g. focus/hover)\n  @each $color, $value in $semantic-colors {\n    --sd-color-#{$color}-highlight: #{mix(black, $value, 15%)};\n  }\n  // semantic colors for backgrounds\n  @each $color, $value in $semantic-colors {\n    --sd-color-#{$color}-bg: #{rgba($value, 0.2)};\n  }\n  // colors for text on top of a semantic color background\n  @each $color, $value in $semantic-colors {\n    --sd-color-#{$color}-text: #{text-color($value)};\n  }\n  // shadow\n  --sd-color-shadow: #{$black-15};\n  // cards\n  --sd-color-card-border: #{$black-12-5};\n  --sd-color-card-border-hover: hsla(231, 99%, 66%, 1);\n  --sd-color-card-background: transparent;\n  --sd-color-card-text: inherit;\n  --sd-color-card-header: transparent;\n  --sd-color-card-footer: transparent;\n  // tabs\n  --sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);\n  --sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);\n  --sd-color-tabs-label-inactive: hsl(0, 0%, 66%);\n  --sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);\n  --sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);\n  --sd-color-tabs-underline-inactive: transparent;\n  --sd-color-tabs-overline: rgb(222, 222, 222);\n  --sd-color-tabs-underline: rgb(222, 222, 222);\n  --sd-fontsize-tabs-label: 1rem;\n  // dropdown\n  --sd-fontsize-dropdown: inherit;\n  --sd-fontsize-dropdown-title: 1rem;\n  --sd-fontweight-dropdown-title: 700;\n}\n"
  },
  {
    "path": "style/index.scss",
    "content": "@use './colors' as *;\n@use './spacing' as *;\n@use './sizing' as *;\n@use './display' as *;\n@use './text' as *;\n@use './borders' as *;\n@use './animations' as *;\n@use './badge' as *;\n@use './button' as *;\n@use './icons' as *;\n@use './cards' as *;\n@use './grids' as *;\n@use './dropdown' as *;\n@use './tabs' as *;\n@use './overrides' as *;\n@use './variables' as *;\n"
  },
  {
    "path": "tests/__init__.py",
    "content": ""
  },
  {
    "path": "tests/conftest.py",
    "content": "import os\nfrom pathlib import Path\nimport re\nfrom typing import Any\n\nfrom docutils import __version_info__ as docutils_version_info\nfrom docutils import nodes\nimport pytest\nfrom sphinx import version_info\nfrom sphinx.testing.util import SphinxTestApp\n\nfrom sphinx_design._compat import findall\n\npytest_plugins = \"sphinx.testing.fixtures\"\n\nif version_info >= (7, 2):\n    # see https://github.com/sphinx-doc/sphinx/pull/11526\n    from pathlib import Path as sphinx_path  # noqa: N813\nelse:\n    from sphinx.testing.path import path as sphinx_path  # type: ignore[no-redef]\n\n\nclass SphinxBuilder:\n    def __init__(self, app: SphinxTestApp, src_path: Path):\n        self.app = app\n        self._src_path = src_path\n\n    @property\n    def src_path(self) -> Path:\n        return self._src_path\n\n    @property\n    def out_path(self) -> Path:\n        return Path(self.app.outdir)\n\n    def build(self, assert_pass=True):\n        self.app.build()\n        if assert_pass:\n            assert self.warnings == \"\", self.status\n        return self\n\n    @property\n    def status(self):\n        return self.app._status.getvalue()\n\n    @property\n    def warnings(self):\n        return self.app._warning.getvalue()\n\n    def get_doctree(\n        self, docname: str, post_transforms: bool = False\n    ) -> nodes.document:\n        doctree = self.app.env.get_doctree(docname)\n        if post_transforms:\n            self.app.env.apply_post_transforms(doctree, docname)\n        # make source path consistent for test comparisons\n        for node in findall(doctree)(include_self=True):\n            if not (hasattr(node, \"get\") and node.get(\"source\")):\n                continue\n            node[\"source\"] = Path(node[\"source\"]).relative_to(self.src_path).as_posix()\n            if node[\"source\"].endswith(\".rst\"):\n                node[\"source\"] = node[\"source\"][:-4]\n            elif node[\"source\"].endswith(\".md\"):\n                node[\"source\"] = node[\"source\"][:-3]\n        # remove mathjax classes added by myst parser\n        if doctree.children and isinstance(doctree.children[0], nodes.section):\n            doctree.children[0][\"classes\"] = []\n        return doctree\n\n\n@pytest.fixture()\ndef sphinx_builder(tmp_path: Path, make_app, monkeypatch):\n    def _create_project(\n        buildername: str = \"html\", conf_kwargs: dict[str, Any] | None = None\n    ):\n        src_path = tmp_path / \"srcdir\"\n        src_path.mkdir()\n        conf_kwargs = conf_kwargs or {\n            \"extensions\": [\"myst_parser\", \"sphinx_design\"],\n            \"myst_enable_extensions\": [\"colon_fence\"],\n        }\n        content = \"\\n\".join(\n            [f\"{key} = {value!r}\" for key, value in conf_kwargs.items()]\n        )\n        src_path.joinpath(\"conf.py\").write_text(content, encoding=\"utf8\")\n        app = make_app(\n            srcdir=sphinx_path(os.path.abspath(str(src_path))),  # noqa: PTH100\n            buildername=buildername,\n        )\n        return SphinxBuilder(app, src_path)\n\n    yield _create_project\n\n\nDOCUTILS_0_22_PLUS = docutils_version_info >= (0, 22)\n\n\n@pytest.fixture\ndef normalize_doctree_xml():\n    \"\"\"Normalize docutils XML output for cross-version compatibility.\n\n    In docutils 0.22+, boolean attributes are serialized as \"1\"/\"0\"\n    instead of \"True\"/\"False\". This function normalizes to the old format\n    for consistent test fixtures.\n    \"\"\"\n\n    def _normalize(text: str) -> str:\n        if DOCUTILS_0_22_PLUS:\n            # Normalize new format (1/0) to old format (1/0)\n            # Only replace when it's clearly a boolean attribute value\n            # Pattern: attribute=\"1\" or attribute=\"0\"\n            attrs = [\n                \"checked\",\n                \"force\",\n                \"has_title\",\n                \"internal\",\n                \"is_div\",\n                \"linenos\",\n                \"opened\",\n                \"refexplicit\",\n                \"refwarn\",\n                \"selected\",\n            ]\n            text = re.sub(rf' ({\"|\".join(attrs)})=\"1\"', r' \\1=\"True\"', text)\n            text = re.sub(rf' ({\"|\".join(attrs)})=\"0\"', r' \\1=\"False\"', text)\n        return text\n\n    return _normalize\n"
  },
  {
    "path": "tests/test_misc/test_material_outlined_.txt",
    "content": "10k: 24\n10mp: 24\n11mp: 24\n123: 24,20\n12mp: 24\n13mp: 24\n14mp: 24\n15mp: 24\n16mp: 24\n17mp: 24\n18_up_rating: 24,20\n18mp: 24\n19mp: 24\n1k: 24\n1k_plus: 24\n1x_mobiledata: 24\n20mp: 24\n21mp: 24\n22mp: 24\n23mp: 24\n24mp: 24\n2k: 24\n2k_plus: 24\n2mp: 24\n30fps: 24\n30fps_select: 24\n360: 24\n3d_rotation: 24\n3g_mobiledata: 24\n3k: 24\n3k_plus: 24\n3mp: 24\n3p: 24\n4g_mobiledata: 24\n4g_plus_mobiledata: 24\n4k: 24\n4k_plus: 24\n4mp: 24\n5g: 24,20\n5k: 24\n5k_plus: 24\n5mp: 24\n60fps: 24\n60fps_select: 24\n6_ft_apart: 24\n6k: 24\n6k_plus: 24\n6mp: 24\n7k: 24\n7k_plus: 24\n7mp: 24\n8k: 24\n8k_plus: 24\n8mp: 24\n9k: 24\n9k_plus: 24\n9mp: 24\nabc: 24,20\nac_unit: 24\naccess_alarm: 24\naccess_alarms: 24\naccess_time: 24\naccess_time_filled: 24\naccessibility: 24\naccessibility_new: 24\naccessible: 24\naccessible_forward: 24\naccount_balance: 24\naccount_balance_wallet: 24\naccount_box: 24,20\naccount_circle: 24,20\naccount_tree: 24\nad_units: 24\nadb: 24\nadd: 24\nadd_a_photo: 24\nadd_alarm: 24\nadd_alert: 24\nadd_box: 24\nadd_business: 24,20\nadd_card: 24,20\nadd_chart: 24\nadd_circle: 24\nadd_circle_outline: 24\nadd_comment: 24\nadd_home: 24,20\nadd_home_work: 24,20\nadd_ic_call: 24\nadd_link: 24\nadd_location: 24\nadd_location_alt: 24\nadd_moderator: 24\nadd_photo_alternate: 24\nadd_reaction: 24\nadd_road: 24,20\nadd_shopping_cart: 24\nadd_task: 24\nadd_to_drive: 24,20\nadd_to_home_screen: 24\nadd_to_photos: 24\nadd_to_queue: 24\naddchart: 24\nadf_scanner: 24,20\nadjust: 24\nadmin_panel_settings: 24,20\nads_click: 24,20\nagriculture: 24,20\nair: 24\nairline_seat_flat: 24\nairline_seat_flat_angled: 24\nairline_seat_individual_suite: 24\nairline_seat_legroom_extra: 24\nairline_seat_legroom_normal: 24\nairline_seat_legroom_reduced: 24\nairline_seat_recline_extra: 24\nairline_seat_recline_normal: 24\nairline_stops: 24,20\nairlines: 24,20\nairplane_ticket: 24\nairplanemode_active: 24,20\nairplanemode_inactive: 24,20\nairplay: 24\nairport_shuttle: 24\nalarm: 24\nalarm_add: 24\nalarm_off: 24\nalarm_on: 24\nalbum: 24\nalign_horizontal_center: 24\nalign_horizontal_left: 24\nalign_horizontal_right: 24\nalign_vertical_bottom: 24\nalign_vertical_center: 24\nalign_vertical_top: 24\nall_inbox: 24\nall_inclusive: 24\nall_out: 24\nalt_route: 24,20\nalternate_email: 24\namp_stories: 24,20\nanalytics: 24\nanchor: 24\nandroid: 24,20\nanimation: 24\nannouncement: 24\naod: 24\napartment: 24,20\napi: 24\napp_blocking: 24\napp_registration: 24,20\napp_settings_alt: 24\napp_shortcut: 24,20\napproval: 24\napps: 24\napps_outage: 24,20\narchitecture: 24,20\narchive: 24\narea_chart: 24,20\narrow_back: 24\narrow_back_ios: 24\narrow_back_ios_new: 24,20\narrow_circle_down: 24,20\narrow_circle_left: 24,20\narrow_circle_right: 24,20\narrow_circle_up: 24,20\narrow_downward: 24\narrow_drop_down: 24\narrow_drop_down_circle: 24\narrow_drop_up: 24\narrow_forward: 24\narrow_forward_ios: 24,20\narrow_left: 24\narrow_outward: 24,20\narrow_right: 24\narrow_right_alt: 24\narrow_upward: 24\nart_track: 24\narticle: 24\naspect_ratio: 24\nassessment: 24\nassignment: 24\nassignment_ind: 24\nassignment_late: 24\nassignment_return: 24\nassignment_returned: 24\nassignment_turned_in: 24\nassist_walker: 24,20\nassistant: 24\nassistant_direction: 24\nassistant_photo: 24\nassured_workload: 24,20\natm: 24\nattach_email: 24,20\nattach_file: 24\nattach_money: 24\nattachment: 24\nattractions: 24,20\nattribution: 24\naudio_file: 24,20\naudiotrack: 24\nauto_awesome: 24\nauto_awesome_mosaic: 24\nauto_awesome_motion: 24\nauto_delete: 24,20\nauto_fix_high: 24\nauto_fix_normal: 24\nauto_fix_off: 24\nauto_graph: 24,20\nauto_mode: 24,20\nauto_stories: 24\nautofps_select: 24\nautorenew: 24\nav_timer: 24\nbaby_changing_station: 24\nback_hand: 24,20\nbackpack: 24\nbackspace: 24\nbackup: 24\nbackup_table: 24,20\nbadge: 24,20\nbakery_dining: 24,20\nbalance: 24,20\nbalcony: 24,20\nballot: 24\nbar_chart: 24,20\nbatch_prediction: 24,20\nbathroom: 24\nbathtub: 24,20\nbattery_0_bar: 24,20\nbattery_1_bar: 24,20\nbattery_2_bar: 24,20\nbattery_3_bar: 24,20\nbattery_4_bar: 24,20\nbattery_5_bar: 24,20\nbattery_6_bar: 24,20\nbattery_alert: 24\nbattery_charging_full: 24\nbattery_full: 24\nbattery_saver: 24\nbattery_std: 24\nbattery_unknown: 24\nbeach_access: 24\nbed: 24\nbedroom_baby: 24\nbedroom_child: 24\nbedroom_parent: 24\nbedtime: 24,20\nbedtime_off: 24,20\nbeenhere: 24\nbento: 24\nbike_scooter: 24,20\nbiotech: 24,20\nblender: 24\nblind: 24,20\nblinds: 24,20\nblinds_closed: 24,20\nblock: 24\nbloodtype: 24\nbluetooth: 24\nbluetooth_audio: 24\nbluetooth_connected: 24\nbluetooth_disabled: 24\nbluetooth_drive: 24\nbluetooth_searching: 24\nblur_circular: 24\nblur_linear: 24\nblur_off: 24\nblur_on: 24\nbolt: 24\nbook: 24\nbook_online: 24\nbookmark: 24\nbookmark_add: 24,20\nbookmark_added: 24\nbookmark_border: 24\nbookmark_remove: 24,20\nbookmarks: 24\nborder_all: 24\nborder_bottom: 24\nborder_clear: 24\nborder_color: 24\nborder_horizontal: 24\nborder_inner: 24\nborder_left: 24\nborder_outer: 24\nborder_right: 24\nborder_style: 24\nborder_top: 24\nborder_vertical: 24\nboy: 24,20\nbranding_watermark: 24\nbreakfast_dining: 24,20\nbrightness_1: 24\nbrightness_2: 24\nbrightness_3: 24\nbrightness_4: 24\nbrightness_5: 24\nbrightness_6: 24\nbrightness_7: 24\nbrightness_auto: 24\nbrightness_high: 24\nbrightness_low: 24\nbrightness_medium: 24\nbroadcast_on_home: 24,20\nbroadcast_on_personal: 24,20\nbroken_image: 24\nbrowse_gallery: 24,20\nbrowser_not_supported: 24,20\nbrowser_updated: 24,20\nbrunch_dining: 24,20\nbrush: 24\nbubble_chart: 24\nbug_report: 24\nbuild: 24\nbuild_circle: 24,20\nbungalow: 24,20\nburst_mode: 24\nbus_alert: 24\nbusiness: 24\nbusiness_center: 24\ncabin: 24,20\ncable: 24\ncached: 24\ncake: 24\ncalculate: 24,20\ncalendar_month: 24,20\ncalendar_today: 24\ncalendar_view_day: 24\ncalendar_view_month: 24\ncalendar_view_week: 24\ncall: 24\ncall_end: 24\ncall_made: 24\ncall_merge: 24\ncall_missed: 24\ncall_missed_outgoing: 24\ncall_received: 24\ncall_split: 24\ncall_to_action: 24\ncamera: 24\ncamera_alt: 24\ncamera_enhance: 24\ncamera_front: 24\ncamera_indoor: 24\ncamera_outdoor: 24\ncamera_rear: 24\ncamera_roll: 24\ncameraswitch: 24\ncampaign: 24\ncancel: 24\ncancel_presentation: 24\ncancel_schedule_send: 24,20\ncandlestick_chart: 24,20\ncar_crash: 24,20\ncar_rental: 24,20\ncar_repair: 24,20\ncard_giftcard: 24\ncard_membership: 24\ncard_travel: 24\ncarpenter: 24\ncases: 24\ncasino: 24\ncast: 24\ncast_connected: 24\ncast_for_education: 24\ncastle: 24,20\ncatching_pokemon: 24,20\ncategory: 24\ncelebration: 24,20\ncell_tower: 24,20\ncell_wifi: 24\ncenter_focus_strong: 24\ncenter_focus_weak: 24\nchair: 24\nchair_alt: 24\nchalet: 24,20\nchange_circle: 24,20\nchange_history: 24\ncharging_station: 24\nchat: 24\nchat_bubble: 24\nchat_bubble_outline: 24\ncheck: 24\ncheck_box: 24\ncheck_box_outline_blank: 24\ncheck_circle: 24\ncheck_circle_outline: 24\nchecklist: 24,20\nchecklist_rtl: 24,20\ncheckroom: 24\nchevron_left: 24\nchevron_right: 24\nchild_care: 24\nchild_friendly: 24\nchrome_reader_mode: 24\nchurch: 24,20\ncircle: 24\ncircle_notifications: 24\nclass: 24\nclean_hands: 24\ncleaning_services: 24,20\nclear: 24\nclear_all: 24\nclose: 24\nclose_fullscreen: 24\nclosed_caption: 24\nclosed_caption_disabled: 24\nclosed_caption_off: 24\ncloud: 24\ncloud_circle: 24\ncloud_done: 24\ncloud_download: 24\ncloud_off: 24\ncloud_queue: 24\ncloud_sync: 24,20\ncloud_upload: 24\nco2: 24,20\nco_present: 24,20\ncode: 24\ncode_off: 24,20\ncoffee: 24\ncoffee_maker: 24\ncollections: 24\ncollections_bookmark: 24\ncolor_lens: 24\ncolorize: 24\ncomment: 24\ncomment_bank: 24,20\ncomments_disabled: 24,20\ncommit: 24,20\ncommute: 24\ncompare: 24\ncompare_arrows: 24\ncompass_calibration: 24\ncompost: 24,20\ncompress: 24\ncomputer: 24\nconfirmation_number: 24\nconnect_without_contact: 24\nconnected_tv: 24\nconnecting_airports: 24,20\nconstruction: 24,20\ncontact_emergency: 24,20\ncontact_mail: 24\ncontact_page: 24\ncontact_phone: 24\ncontact_support: 24\ncontactless: 24,20\ncontacts: 24\ncontent_copy: 24\ncontent_cut: 24\ncontent_paste: 24\ncontent_paste_go: 24,20\ncontent_paste_off: 24,20\ncontent_paste_search: 24,20\ncontrast: 24,20\ncontrol_camera: 24\ncontrol_point: 24\ncontrol_point_duplicate: 24\ncookie: 24,20\ncopy_all: 24,20\ncopyright: 24\ncoronavirus: 24\ncorporate_fare: 24\ncottage: 24,20\ncountertops: 24\ncreate: 24\ncreate_new_folder: 24\ncredit_card: 24\ncredit_card_off: 24,20\ncredit_score: 24\ncrib: 24,20\ncrisis_alert: 24,20\ncrop: 24\ncrop_16_9: 24,20\ncrop_3_2: 24,20\ncrop_5_4: 24,20\ncrop_7_5: 24,20\ncrop_din: 24\ncrop_free: 24\ncrop_landscape: 24\ncrop_original: 24\ncrop_portrait: 24\ncrop_rotate: 24\ncrop_square: 24\ncruelty_free: 24,20\ncss: 24,20\ncurrency_bitcoin: 24,20\ncurrency_exchange: 24,20\ncurrency_franc: 24,20\ncurrency_lira: 24,20\ncurrency_pound: 24,20\ncurrency_ruble: 24,20\ncurrency_rupee: 24,20\ncurrency_yen: 24,20\ncurrency_yuan: 24,20\ncurtains: 24,20\ncurtains_closed: 24,20\ncyclone: 24,20\ndangerous: 24,20\ndark_mode: 24,20\ndashboard: 24\ndashboard_customize: 24\ndata_array: 24,20\ndata_exploration: 24,20\ndata_object: 24,20\ndata_saver_off: 24\ndata_saver_on: 24\ndata_thresholding: 24,20\ndata_usage: 24\ndataset: 24,20\ndataset_linked: 24,20\ndate_range: 24\ndeblur: 24,20\ndeck: 24,20\ndehaze: 24\ndelete: 24\ndelete_forever: 24\ndelete_outline: 24\ndelete_sweep: 24\ndelivery_dining: 24,20\ndensity_large: 24,20\ndensity_medium: 24,20\ndensity_small: 24,20\ndeparture_board: 24\ndescription: 24\ndeselect: 24,20\ndesign_services: 24,20\ndesk: 24,20\ndesktop_access_disabled: 24\ndesktop_mac: 24\ndesktop_windows: 24\ndetails: 24\ndeveloper_board: 24\ndeveloper_board_off: 24,20\ndeveloper_mode: 24\ndevice_hub: 24\ndevice_thermostat: 24\ndevice_unknown: 24\ndevices: 24\ndevices_fold: 24,20\ndevices_other: 24\ndialer_sip: 24\ndialpad: 24\ndiamond: 24,20\ndifference: 24,20\ndining: 24\ndinner_dining: 24,20\ndirections: 24\ndirections_bike: 24\ndirections_boat: 24\ndirections_boat_filled: 24\ndirections_bus: 24\ndirections_bus_filled: 24\ndirections_car: 24\ndirections_car_filled: 24\ndirections_off: 24\ndirections_railway: 24\ndirections_railway_filled: 24\ndirections_run: 24\ndirections_subway: 24\ndirections_subway_filled: 24\ndirections_transit: 24\ndirections_transit_filled: 24\ndirections_walk: 24\ndirty_lens: 24\ndisabled_by_default: 24\ndisabled_visible: 24,20\ndisc_full: 24\ndiscount: 24,20\ndisplay_settings: 24,20\ndiversity_1: 24,20\ndiversity_2: 24,20\ndiversity_3: 24,20\ndns: 24\ndo_disturb: 24\ndo_disturb_alt: 24\ndo_disturb_off: 24\ndo_disturb_on: 24\ndo_not_disturb: 24\ndo_not_disturb_alt: 24\ndo_not_disturb_off: 24\ndo_not_disturb_on: 24\ndo_not_disturb_on_total_silence: 24\ndo_not_step: 24\ndo_not_touch: 24\ndock: 24\ndocument_scanner: 24,20\ndomain: 24\ndomain_add: 24,20\ndomain_disabled: 24\ndomain_verification: 24,20\ndone: 24\ndone_all: 24\ndone_outline: 24\ndonut_large: 24\ndonut_small: 24\ndoor_back: 24\ndoor_front: 24\ndoor_sliding: 24\ndoorbell: 24\ndouble_arrow: 24,20\ndownhill_skiing: 24,20\ndownload: 24\ndownload_done: 24\ndownload_for_offline: 24\ndownloading: 24\ndrafts: 24\ndrag_handle: 24\ndrag_indicator: 24\ndraw: 24,20\ndrive_eta: 24\ndrive_file_move: 24\ndrive_file_move_rtl: 24,20\ndrive_file_rename_outline: 24\ndrive_folder_upload: 24\ndry: 24\ndry_cleaning: 24,20\nduo: 24\ndvr: 24\ndynamic_feed: 24,20\ndynamic_form: 24\ne_mobiledata: 24\nearbuds: 24\nearbuds_battery: 24\neast: 24\neco: 24,20\nedgesensor_high: 24\nedgesensor_low: 24\nedit: 24\nedit_attributes: 24\nedit_calendar: 24,20\nedit_location: 24\nedit_location_alt: 24,20\nedit_note: 24,20\nedit_notifications: 24,20\nedit_off: 24\nedit_road: 24,20\negg: 24,20\negg_alt: 24,20\neject: 24\nelderly: 24\nelderly_woman: 24,20\nelectric_bike: 24,20\nelectric_bolt: 24,20\nelectric_car: 24,20\nelectric_meter: 24,20\nelectric_moped: 24,20\nelectric_rickshaw: 24,20\nelectric_scooter: 24,20\nelectrical_services: 24,20\nelevator: 24\nemail: 24\nemergency: 24,20\nemergency_recording: 24,20\nemergency_share: 24,20\nemoji_emotions: 24,20\nemoji_events: 24,20\nemoji_flags: 24,20\nemoji_food_beverage: 24,20\nemoji_nature: 24,20\nemoji_objects: 24,20\nemoji_people: 24,20\nemoji_symbols: 24,20\nemoji_transportation: 24,20\nenergy_savings_leaf: 24,20\nengineering: 24,20\nenhanced_encryption: 24\nequalizer: 24\nerror: 24\nerror_outline: 24\nescalator: 24\nescalator_warning: 24\neuro: 24,20\neuro_symbol: 24\nev_station: 24\nevent: 24\nevent_available: 24\nevent_busy: 24\nevent_note: 24\nevent_repeat: 24,20\nevent_seat: 24\nexit_to_app: 24\nexpand: 24\nexpand_circle_down: 24,20\nexpand_less: 24\nexpand_more: 24\nexplicit: 24\nexplore: 24\nexplore_off: 24\nexposure: 24\nexposure_neg_1: 24\nexposure_neg_2: 24\nexposure_plus_1: 24\nexposure_plus_2: 24\nexposure_zero: 24\nextension: 24\nextension_off: 24,20\nface: 24\nface_2: 24,20\nface_3: 24,20\nface_4: 24,20\nface_5: 24,20\nface_6: 24,20\nface_retouching_natural: 24\nface_retouching_off: 24\nface_unlock: 24\nfacebook: 24\nfact_check: 24,20\nfactory: 24,20\nfamily_restroom: 24\nfast_forward: 24\nfast_rewind: 24\nfastfood: 24\nfavorite: 24\nfavorite_border: 24\nfax: 24,20\nfeatured_play_list: 24\nfeatured_video: 24\nfeed: 24\nfeedback: 24\nfemale: 24,20\nfence: 24\nfestival: 24,20\nfiber_dvr: 24\nfiber_manual_record: 24\nfiber_new: 24\nfiber_pin: 24\nfiber_smart_record: 24\nfile_copy: 24\nfile_download: 24\nfile_download_done: 24\nfile_download_off: 24,20\nfile_open: 24,20\nfile_present: 24\nfile_upload: 24\nfilter: 24\nfilter_1: 24\nfilter_2: 24\nfilter_3: 24\nfilter_4: 24\nfilter_5: 24\nfilter_6: 24\nfilter_7: 24\nfilter_8: 24\nfilter_9: 24\nfilter_9_plus: 24\nfilter_alt: 24\nfilter_alt_off: 24,20\nfilter_b_and_w: 24\nfilter_center_focus: 24\nfilter_drama: 24\nfilter_frames: 24\nfilter_hdr: 24\nfilter_list: 24\nfilter_list_off: 24,20\nfilter_none: 24\nfilter_tilt_shift: 24\nfilter_vintage: 24\nfind_in_page: 24\nfind_replace: 24\nfingerprint: 24\nfire_extinguisher: 24\nfire_hydrant_alt: 24,20\nfire_truck: 24,20\nfireplace: 24,20\nfirst_page: 24\nfit_screen: 24\nfitbit: 24,20\nfitness_center: 24\nflag: 24\nflag_circle: 24,20\nflaky: 24,20\nflare: 24\nflash_auto: 24\nflash_off: 24\nflash_on: 24\nflashlight_off: 24\nflashlight_on: 24\nflatware: 24\nflight: 24\nflight_class: 24,20\nflight_land: 24\nflight_takeoff: 24\nflip: 24\nflip_camera_android: 24,20\nflip_camera_ios: 24,20\nflip_to_back: 24\nflip_to_front: 24\nflood: 24,20\nflourescent: 24\nfluorescent: 24\nflutter_dash: 24,20\nfmd_bad: 24\nfmd_good: 24\nfolder: 24\nfolder_copy: 24,20\nfolder_delete: 24,20\nfolder_off: 24,20\nfolder_open: 24\nfolder_shared: 24\nfolder_special: 24\nfolder_zip: 24,20\nfollow_the_signs: 24\nfont_download: 24\nfont_download_off: 24,20\nfood_bank: 24\nforest: 24,20\nfork_left: 24,20\nfork_right: 24,20\nformat_align_center: 24\nformat_align_justify: 24\nformat_align_left: 24\nformat_align_right: 24\nformat_bold: 24\nformat_clear: 24\nformat_color_fill: 24,20\nformat_color_reset: 24\nformat_color_text: 24,20\nformat_indent_decrease: 24\nformat_indent_increase: 24\nformat_italic: 24\nformat_line_spacing: 24\nformat_list_bulleted: 24\nformat_list_numbered: 24\nformat_list_numbered_rtl: 24\nformat_overline: 24,20\nformat_paint: 24\nformat_quote: 24\nformat_shapes: 24\nformat_size: 24\nformat_strikethrough: 24\nformat_textdirection_l_to_r: 24\nformat_textdirection_r_to_l: 24\nformat_underlined: 24\nfort: 24,20\nforum: 24\nforward: 24\nforward_10: 24\nforward_30: 24\nforward_5: 24\nforward_to_inbox: 24,20\nfoundation: 24\nfree_breakfast: 24\nfree_cancellation: 24,20\nfront_hand: 24,20\nfullscreen: 24\nfullscreen_exit: 24\nfunctions: 24\ng_mobiledata: 24\ng_translate: 24\ngamepad: 24\ngames: 24\ngarage: 24\ngas_meter: 24,20\ngavel: 24\ngenerating_tokens: 24,20\ngesture: 24\nget_app: 24\ngif: 24\ngif_box: 24,20\ngirl: 24,20\ngite: 24,20\ngolf_course: 24\ngpp_bad: 24\ngpp_good: 24\ngpp_maybe: 24\ngps_fixed: 24\ngps_not_fixed: 24\ngps_off: 24\ngrade: 24\ngradient: 24\ngrading: 24,20\ngrain: 24\ngraphic_eq: 24\ngrass: 24\ngrid_3x3: 24\ngrid_4x4: 24\ngrid_goldenratio: 24\ngrid_off: 24\ngrid_on: 24\ngrid_view: 24\ngroup: 24\ngroup_add: 24,20\ngroup_off: 24,20\ngroup_remove: 24,20\ngroup_work: 24\ngroups: 24\ngroups_2: 24,20\ngroups_3: 24,20\nh_mobiledata: 24\nh_plus_mobiledata: 24\nhail: 24\nhandshake: 24,20\nhandyman: 24,20\nhardware: 24,20\nhd: 24\nhdr_auto: 24\nhdr_auto_select: 24\nhdr_enhanced_select: 24\nhdr_off: 24\nhdr_off_select: 24\nhdr_on: 24\nhdr_on_select: 24\nhdr_plus: 24\nhdr_strong: 24\nhdr_weak: 24\nheadphones: 24\nheadphones_battery: 24\nheadset: 24\nheadset_mic: 24\nheadset_off: 24\nhealing: 24\nhealth_and_safety: 24\nhearing: 24\nhearing_disabled: 24,20\nheart_broken: 24,20\nheat_pump: 24,20\nheight: 24,20\nhelp: 24\nhelp_center: 24\nhelp_outline: 24\nhevc: 24\nhexagon: 24,20\nhide_image: 24\nhide_source: 24\nhigh_quality: 24\nhighlight: 24\nhighlight_alt: 24\nhighlight_off: 24\nhiking: 24,20\nhistory: 24\nhistory_edu: 24,20\nhistory_toggle_off: 24,20\nhive: 24,20\nhls: 24,20\nhls_off: 24,20\nholiday_village: 24,20\nhome: 24\nhome_max: 24\nhome_mini: 24\nhome_repair_service: 24,20\nhome_work: 24,20\nhorizontal_distribute: 24\nhorizontal_rule: 24,20\nhorizontal_split: 24\nhot_tub: 24\nhotel: 24\nhotel_class: 24,20\nhourglass_bottom: 24,20\nhourglass_disabled: 24,20\nhourglass_empty: 24\nhourglass_full: 24\nhourglass_top: 24,20\nhouse: 24,20\nhouse_siding: 24\nhouseboat: 24,20\nhow_to_reg: 24\nhow_to_vote: 24\nhtml: 24,20\nhttp: 24\nhttps: 24\nhub: 24,20\nhvac: 24,20\nice_skating: 24,20\nicecream: 24,20\nimage: 24\nimage_aspect_ratio: 24\nimage_not_supported: 24,20\nimage_search: 24\nimagesearch_roller: 24\nimport_contacts: 24\nimport_export: 24\nimportant_devices: 24\ninbox: 24\nincomplete_circle: 24,20\nindeterminate_check_box: 24\ninfo: 24\ninput: 24\ninsert_chart: 24\ninsert_chart_outlined: 24\ninsert_comment: 24\ninsert_drive_file: 24\ninsert_emoticon: 24\ninsert_invitation: 24\ninsert_link: 24\ninsert_page_break: 24,20\ninsert_photo: 24\ninsights: 24,20\ninstall_desktop: 24,20\ninstall_mobile: 24,20\nintegration_instructions: 24\ninterests: 24,20\ninterpreter_mode: 24,20\ninventory: 24\ninventory_2: 24,20\ninvert_colors: 24,20\ninvert_colors_off: 24,20\nios_share: 24\niron: 24,20\niso: 24\njavascript: 24,20\njoin_full: 24,20\njoin_inner: 24,20\njoin_left: 24,20\njoin_right: 24,20\nkayaking: 24,20\nkebab_dining: 24,20\nkey: 24,20\nkey_off: 24,20\nkeyboard: 24\nkeyboard_alt: 24\nkeyboard_arrow_down: 24\nkeyboard_arrow_left: 24\nkeyboard_arrow_right: 24\nkeyboard_arrow_up: 24\nkeyboard_backspace: 24\nkeyboard_capslock: 24\nkeyboard_command_key: 24,20\nkeyboard_control_key: 24,20\nkeyboard_double_arrow_down: 24,20\nkeyboard_double_arrow_left: 24,20\nkeyboard_double_arrow_right: 24,20\nkeyboard_double_arrow_up: 24,20\nkeyboard_hide: 24\nkeyboard_option_key: 24,20\nkeyboard_return: 24\nkeyboard_tab: 24\nkeyboard_voice: 24\nking_bed: 24,20\nkitchen: 24\nkitesurfing: 24,20\nlabel: 24\nlabel_important: 24\nlabel_off: 24\nlan: 24,20\nlandscape: 24\nlandslide: 24,20\nlanguage: 24\nlaptop: 24\nlaptop_chromebook: 24\nlaptop_mac: 24\nlaptop_windows: 24\nlast_page: 24\nlaunch: 24\nlayers: 24\nlayers_clear: 24\nleaderboard: 24\nleak_add: 24\nleak_remove: 24\nlegend_toggle: 24,20\nlens: 24\nlens_blur: 24\nlibrary_add: 24\nlibrary_add_check: 24,20\nlibrary_books: 24\nlibrary_music: 24\nlight: 24\nlight_mode: 24,20\nlightbulb: 24\nlightbulb_circle: 24,20\nline_axis: 24,20\nline_style: 24\nline_weight: 24\nlinear_scale: 24\nlink: 24\nlink_off: 24\nlinked_camera: 24\nliquor: 24,20\nlist: 24\nlist_alt: 24\nlive_help: 24\nlive_tv: 24\nliving: 24\nlocal_activity: 24\nlocal_airport: 24,20\nlocal_atm: 24\nlocal_bar: 24\nlocal_cafe: 24\nlocal_car_wash: 24\nlocal_convenience_store: 24\nlocal_dining: 24\nlocal_drink: 24\nlocal_fire_department: 24,20\nlocal_florist: 24\nlocal_gas_station: 24\nlocal_grocery_store: 24\nlocal_hospital: 24\nlocal_hotel: 24\nlocal_laundry_service: 24\nlocal_library: 24\nlocal_mall: 24\nlocal_movies: 24\nlocal_offer: 24\nlocal_parking: 24\nlocal_pharmacy: 24\nlocal_phone: 24\nlocal_pizza: 24\nlocal_play: 24\nlocal_police: 24\nlocal_post_office: 24\nlocal_printshop: 24\nlocal_see: 24\nlocal_shipping: 24\nlocal_taxi: 24\nlocation_city: 24\nlocation_disabled: 24\nlocation_off: 24\nlocation_on: 24\nlocation_searching: 24\nlock: 24\nlock_clock: 24,20\nlock_open: 24\nlock_person: 24,20\nlock_reset: 24,20\nlogin: 24,20\nlogo_dev: 24,20\nlogout: 24\nlooks: 24\nlooks_3: 24\nlooks_4: 24\nlooks_5: 24\nlooks_6: 24\nlooks_one: 24\nlooks_two: 24\nloop: 24\nloupe: 24\nlow_priority: 24\nloyalty: 24\nlte_mobiledata: 24\nlte_plus_mobiledata: 24\nluggage: 24\nlunch_dining: 24,20\nlyrics: 24,20\nmacro_off: 24,20\nmail: 24\nmail_lock: 24,20\nmail_outline: 24\nmale: 24,20\nman: 24,20\nman_2: 24,20\nman_3: 24,20\nman_4: 24,20\nmanage_accounts: 24\nmanage_history: 24,20\nmanage_search: 24\nmap: 24\nmaps_home_work: 24\nmaps_ugc: 24\nmargin: 24\nmark_as_unread: 24,20\nmark_chat_read: 24,20\nmark_chat_unread: 24,20\nmark_email_read: 24,20\nmark_email_unread: 24,20\nmark_unread_chat_alt: 24,20\nmarkunread: 24\nmarkunread_mailbox: 24\nmasks: 24\nmaximize: 24\nmedia_bluetooth_off: 24\nmedia_bluetooth_on: 24\nmediation: 24\nmedical_information: 24,20\nmedical_services: 24,20\nmedication: 24\nmedication_liquid: 24,20\nmeeting_room: 24\nmemory: 24\nmenu: 24\nmenu_book: 24\nmenu_open: 24\nmerge: 24,20\nmerge_type: 24\nmessage: 24\nmic: 24\nmic_external_off: 24\nmic_external_on: 24\nmic_none: 24\nmic_off: 24\nmicrowave: 24\nmilitary_tech: 24,20\nminimize: 24\nminor_crash: 24,20\nmiscellaneous_services: 24,20\nmissed_video_call: 24\nmms: 24\nmobile_friendly: 24\nmobile_off: 24\nmobile_screen_share: 24\nmobiledata_off: 24\nmode: 24\nmode_comment: 24\nmode_edit: 24\nmode_edit_outline: 24,20\nmode_fan_off: 24,20\nmode_night: 24\nmode_of_travel: 24,20\nmode_standby: 24\nmodel_training: 24,20\nmonetization_on: 24\nmoney: 24\nmoney_off: 24\nmoney_off_csred: 24\nmonitor: 24\nmonitor_heart: 24,20\nmonitor_weight: 24\nmonochrome_photos: 24\nmood: 24\nmood_bad: 24\nmoped: 24,20\nmore: 24\nmore_horiz: 24\nmore_time: 24,20\nmore_vert: 24\nmosque: 24,20\nmotion_photos_auto: 24\nmotion_photos_off: 24\nmotion_photos_on: 24,20\nmotion_photos_pause: 24,20\nmotion_photos_paused: 24\nmouse: 24\nmove_down: 24,20\nmove_to_inbox: 24\nmove_up: 24,20\nmovie: 24\nmovie_creation: 24\nmovie_filter: 24\nmoving: 24,20\nmp: 24\nmultiline_chart: 24\nmultiple_stop: 24\nmuseum: 24,20\nmusic_note: 24\nmusic_off: 24\nmusic_video: 24\nmy_location: 24\nnat: 24,20\nnature: 24\nnature_people: 24\nnavigate_before: 24\nnavigate_next: 24\nnavigation: 24\nnear_me: 24\nnear_me_disabled: 24\nnearby_error: 24\nnearby_off: 24\nnest_cam_wired_stand: 24,20\nnetwork_cell: 24\nnetwork_check: 24\nnetwork_locked: 24\nnetwork_ping: 24,20\nnetwork_wifi: 24\nnetwork_wifi_1_bar: 24,20\nnetwork_wifi_2_bar: 24,20\nnetwork_wifi_3_bar: 24,20\nnew_label: 24,20\nnew_releases: 24\nnewspaper: 24,20\nnext_plan: 24,20\nnext_week: 24\nnfc: 24\nnight_shelter: 24\nnightlife: 24,20\nnightlight: 24\nnightlight_round: 24\nnights_stay: 24,20\nno_accounts: 24\nno_adult_content: 24,20\nno_backpack: 24\nno_cell: 24\nno_crash: 24,20\nno_drinks: 24\nno_encryption: 24\nno_encryption_gmailerrorred: 24\nno_flash: 24\nno_food: 24\nno_luggage: 24\nno_meals: 24\nno_meeting_room: 24\nno_photography: 24\nno_sim: 24\nno_stroller: 24\nno_transfer: 24\nnoise_aware: 24,20\nnoise_control_off: 24,20\nnordic_walking: 24,20\nnorth: 24\nnorth_east: 24\nnorth_west: 24\nnot_accessible: 24,20\nnot_interested: 24\nnot_listed_location: 24\nnot_started: 24,20\nnote: 24\nnote_add: 24\nnote_alt: 24\nnotes: 24\nnotification_add: 24,20\nnotification_important: 24\nnotifications: 24\nnotifications_active: 24\nnotifications_none: 24\nnotifications_off: 24\nnotifications_paused: 24\nnumbers: 24,20\noffline_bolt: 24\noffline_pin: 24\noffline_share: 24\noil_barrel: 24,20\non_device_training: 24,20\nondemand_video: 24\nonline_prediction: 24,20\nopacity: 24\nopen_in_browser: 24\nopen_in_full: 24\nopen_in_new: 24\nopen_in_new_off: 24,20\nopen_with: 24\nother_houses: 24,20\noutbond: 24\noutbound: 24\noutbox: 24,20\noutdoor_grill: 24,20\noutlet: 24\noutlined_flag: 24\noutput: 24,20\npadding: 24\npages: 24\npageview: 24\npaid: 24\npalette: 24,20\npan_tool: 24\npan_tool_alt: 24,20\npanorama: 24\npanorama_fish_eye: 24\npanorama_horizontal: 24\npanorama_horizontal_select: 24\npanorama_photosphere: 24\npanorama_photosphere_select: 24\npanorama_vertical: 24\npanorama_vertical_select: 24\npanorama_wide_angle: 24\npanorama_wide_angle_select: 24\nparagliding: 24,20\npark: 24,20\nparty_mode: 24\npassword: 24\npattern: 24\npause: 24\npause_circle: 24,20\npause_circle_filled: 24\npause_circle_outline: 24\npause_presentation: 24\npayment: 24\npayments: 24\npedal_bike: 24,20\npending: 24,20\npending_actions: 24\npentagon: 24,20\npeople: 24\npeople_alt: 24,20\npeople_outline: 24\npercent: 24,20\nperm_camera_mic: 24\nperm_contact_calendar: 24\nperm_data_setting: 24\nperm_device_information: 24\nperm_identity: 24\nperm_media: 24\nperm_phone_msg: 24\nperm_scan_wifi: 24\nperson: 24\nperson_2: 24,20\nperson_3: 24,20\nperson_4: 24,20\nperson_add: 24\nperson_add_alt: 24,20\nperson_add_alt_1: 24,20\nperson_add_disabled: 24\nperson_off: 24,20\nperson_outline: 24\nperson_pin: 24\nperson_pin_circle: 24\nperson_remove: 24,20\nperson_remove_alt_1: 24,20\nperson_search: 24,20\npersonal_injury: 24,20\npersonal_video: 24\npest_control: 24,20\npest_control_rodent: 24,20\npets: 24\nphishing: 24,20\nphone: 24\nphone_android: 24\nphone_bluetooth_speaker: 24\nphone_callback: 24\nphone_disabled: 24\nphone_enabled: 24\nphone_forwarded: 24\nphone_in_talk: 24\nphone_iphone: 24\nphone_locked: 24,20\nphone_missed: 24\nphone_paused: 24\nphonelink: 24\nphonelink_erase: 24\nphonelink_lock: 24\nphonelink_off: 24\nphonelink_ring: 24\nphonelink_setup: 24\nphoto: 24\nphoto_album: 24,20\nphoto_camera: 24\nphoto_camera_back: 24\nphoto_camera_front: 24\nphoto_filter: 24\nphoto_library: 24\nphoto_size_select_actual: 24\nphoto_size_select_large: 24\nphoto_size_select_small: 24\nphp: 24,20\npiano: 24,20\npiano_off: 24,20\npicture_as_pdf: 24\npicture_in_picture: 24\npicture_in_picture_alt: 24\npie_chart: 24\npie_chart_outline: 24\npin: 24\npin_drop: 24\npin_end: 24,20\npin_invoke: 24,20\npinch: 24,20\npivot_table_chart: 24\npix: 24,20\nplace: 24\nplagiarism: 24,20\nplay_arrow: 24\nplay_circle: 24,20\nplay_circle_filled: 24\nplay_circle_outline: 24\nplay_disabled: 24\nplay_for_work: 24\nplay_lesson: 24\nplaylist_add: 24,20\nplaylist_add_check: 24,20\nplaylist_add_check_circle: 24,20\nplaylist_add_circle: 24,20\nplaylist_play: 24,20\nplaylist_remove: 24,20\nplumbing: 24,20\nplus_one: 24\npodcasts: 24\npoint_of_sale: 24,20\npolicy: 24,20\npoll: 24\npolyline: 24,20\npolymer: 24\npool: 24\nportable_wifi_off: 24\nportrait: 24\npost_add: 24,20\npower: 24\npower_input: 24\npower_off: 24\npower_settings_new: 24\nprecision_manufacturing: 24,20\npregnant_woman: 24\npresent_to_all: 24\npreview: 24\nprice_change: 24\nprice_check: 24\nprint: 24\nprint_disabled: 24\npriority_high: 24\nprivacy_tip: 24,20\nprivate_connectivity: 24,20\nproduction_quantity_limits: 24\npropane: 24,20\npropane_tank: 24,20\npsychology: 24,20\npsychology_alt: 24,20\npublic: 24\npublic_off: 24\npublish: 24\npublished_with_changes: 24\npunch_clock: 24,20\npush_pin: 24,20\nqr_code: 24,20\nqr_code_2: 24\nqr_code_scanner: 24\nquery_builder: 24\nquery_stats: 24,20\nquestion_answer: 24\nquestion_mark: 24,20\nqueue: 24\nqueue_music: 24,20\nqueue_play_next: 24\nquickreply: 24,20\nquiz: 24\nr_mobiledata: 24\nradar: 24\nradio: 24\nradio_button_checked: 24\nradio_button_unchecked: 24\nrailway_alert: 24\nramen_dining: 24,20\nramp_left: 24,20\nramp_right: 24,20\nrate_review: 24\nraw_off: 24\nraw_on: 24\nread_more: 24,20\nreal_estate_agent: 24,20\nreceipt: 24\nreceipt_long: 24\nrecent_actors: 24\nrecommend: 24\nrecord_voice_over: 24\nrectangle: 24,20\nrecycling: 24,20\nredeem: 24\nredo: 24\nreduce_capacity: 24\nrefresh: 24\nremember_me: 24\nremove: 24\nremove_circle: 24\nremove_circle_outline: 24\nremove_done: 24\nremove_from_queue: 24\nremove_moderator: 24\nremove_red_eye: 24\nremove_road: 24,20\nremove_shopping_cart: 24\nreorder: 24\nrepartition: 24,20\nrepeat: 24\nrepeat_on: 24\nrepeat_one: 24\nrepeat_one_on: 24\nreplay: 24\nreplay_10: 24\nreplay_30: 24\nreplay_5: 24\nreplay_circle_filled: 24\nreply: 24\nreply_all: 24\nreport: 24\nreport_gmailerrorred: 24\nreport_off: 24\nreport_problem: 24\nrequest_page: 24\nrequest_quote: 24\nreset_tv: 24\nrestart_alt: 24\nrestaurant: 24\nrestaurant_menu: 24\nrestore: 24\nrestore_from_trash: 24\nrestore_page: 24\nreviews: 24\nrice_bowl: 24\nring_volume: 24\nrocket: 24,20\nrocket_launch: 24,20\nroller_shades: 24,20\nroller_shades_closed: 24,20\nroller_skating: 24,20\nroofing: 24\nroom: 24\nroom_preferences: 24\nroom_service: 24\nrotate_90_degrees_ccw: 24\nrotate_90_degrees_cw: 24,20\nrotate_left: 24\nrotate_right: 24\nroundabout_left: 24,20\nroundabout_right: 24,20\nrounded_corner: 24\nroute: 24,20\nrouter: 24\nrowing: 24\nrss_feed: 24\nrsvp: 24\nrtt: 24\nrule: 24\nrule_folder: 24\nrun_circle: 24,20\nrunning_with_errors: 24,20\nrv_hookup: 24\nsafety_check: 24,20\nsafety_divider: 24\nsailing: 24,20\nsanitizer: 24\nsatellite: 24\nsatellite_alt: 24,20\nsave: 24\nsave_alt: 24\nsave_as: 24,20\nsaved_search: 24\nsavings: 24,20\nscale: 24,20\nscanner: 24\nscatter_plot: 24\nschedule: 24\nschedule_send: 24\nschema: 24,20\nschool: 24\nscience: 24,20\nscore: 24\nscoreboard: 24,20\nscreen_lock_landscape: 24\nscreen_lock_portrait: 24\nscreen_lock_rotation: 24\nscreen_rotation: 24\nscreen_rotation_alt: 24,20\nscreen_search_desktop: 24\nscreen_share: 24\nscreenshot: 24\nscreenshot_monitor: 24,20\nscuba_diving: 24,20\nsd: 24\nsd_card: 24\nsd_card_alert: 24\nsd_storage: 24\nsearch: 24\nsearch_off: 24,20\nsecurity: 24\nsecurity_update: 24\nsecurity_update_good: 24\nsecurity_update_warning: 24\nsegment: 24\nselect_all: 24\nself_improvement: 24,20\nsell: 24\nsend: 24\nsend_and_archive: 24,20\nsend_time_extension: 24,20\nsend_to_mobile: 24\nsensor_door: 24,20\nsensor_occupied: 24,20\nsensor_window: 24,20\nsensors: 24,20\nsensors_off: 24,20\nsentiment_dissatisfied: 24\nsentiment_neutral: 24\nsentiment_satisfied: 24\nsentiment_satisfied_alt: 24\nsentiment_very_dissatisfied: 24\nsentiment_very_satisfied: 24\nset_meal: 24\nsettings: 24\nsettings_accessibility: 24\nsettings_applications: 24\nsettings_backup_restore: 24\nsettings_bluetooth: 24\nsettings_brightness: 24\nsettings_cell: 24\nsettings_ethernet: 24\nsettings_input_antenna: 24\nsettings_input_component: 24\nsettings_input_composite: 24\nsettings_input_hdmi: 24\nsettings_input_svideo: 24\nsettings_overscan: 24\nsettings_phone: 24\nsettings_power: 24\nsettings_remote: 24\nsettings_suggest: 24\nsettings_system_daydream: 24\nsettings_voice: 24\nsevere_cold: 24,20\nshape_line: 24,20\nshare: 24\nshare_location: 24\nshield: 24\nshield_moon: 24,20\nshop: 24\nshop_2: 24,20\nshop_two: 24\nshopping_bag: 24\nshopping_basket: 24\nshopping_cart: 24\nshopping_cart_checkout: 24,20\nshort_text: 24\nshortcut: 24\nshow_chart: 24\nshower: 24\nshuffle: 24\nshuffle_on: 24\nshutter_speed: 24\nsick: 24\nsign_language: 24,20\nsignal_cellular_0_bar: 24\nsignal_cellular_4_bar: 24\nsignal_cellular_alt: 24\nsignal_cellular_alt_1_bar: 24,20\nsignal_cellular_alt_2_bar: 24,20\nsignal_cellular_connected_no_internet_0_bar: 24,20\nsignal_cellular_connected_no_internet_4_bar: 24,20\nsignal_cellular_no_sim: 24\nsignal_cellular_nodata: 24\nsignal_cellular_null: 24\nsignal_cellular_off: 24\nsignal_wifi_0_bar: 24\nsignal_wifi_4_bar: 24\nsignal_wifi_4_bar_lock: 24,20\nsignal_wifi_bad: 24\nsignal_wifi_connected_no_internet_4: 24\nsignal_wifi_off: 24\nsignal_wifi_statusbar_4_bar: 24\nsignal_wifi_statusbar_connected_no_internet_4: 24,20\nsignal_wifi_statusbar_null: 24\nsignpost: 24,20\nsim_card: 24\nsim_card_alert: 24\nsim_card_download: 24\nsingle_bed: 24,20\nsip: 24\nskateboarding: 24,20\nskip_next: 24\nskip_previous: 24\nsledding: 24,20\nslideshow: 24\nslow_motion_video: 24\nsmart_button: 24\nsmart_display: 24\nsmart_screen: 24\nsmart_toy: 24\nsmartphone: 24\nsmoke_free: 24\nsmoking_rooms: 24\nsms: 24\nsms_failed: 24\nsnippet_folder: 24\nsnooze: 24\nsnowboarding: 24,20\nsnowmobile: 24,20\nsnowshoeing: 24,20\nsoap: 24\nsocial_distance: 24\nsolar_power: 24,20\nsort: 24\nsort_by_alpha: 24\nsos: 24,20\nsoup_kitchen: 24,20\nsource: 24\nsouth: 24\nsouth_america: 24,20\nsouth_east: 24\nsouth_west: 24\nspa: 24\nspace_bar: 24\nspace_dashboard: 24,20\nspatial_audio: 24,20\nspatial_audio_off: 24,20\nspatial_tracking: 24,20\nspeaker: 24\nspeaker_group: 24\nspeaker_notes: 24\nspeaker_notes_off: 24\nspeaker_phone: 24\nspeed: 24\nspellcheck: 24\nsplitscreen: 24\nspoke: 24,20\nsports: 24,20\nsports_bar: 24,20\nsports_baseball: 24,20\nsports_basketball: 24,20\nsports_cricket: 24,20\nsports_esports: 24,20\nsports_football: 24,20\nsports_golf: 24,20\nsports_gymnastics: 24,20\nsports_handball: 24,20\nsports_hockey: 24,20\nsports_kabaddi: 24,20\nsports_martial_arts: 24,20\nsports_mma: 24,20\nsports_motorsports: 24,20\nsports_rugby: 24,20\nsports_score: 24\nsports_soccer: 24,20\nsports_tennis: 24,20\nsports_volleyball: 24,20\nsquare: 24,20\nsquare_foot: 24,20\nssid_chart: 24,20\nstacked_bar_chart: 24,20\nstacked_line_chart: 24\nstadium: 24,20\nstairs: 24\nstar: 24\nstar_border: 24\nstar_border_purple500: 24\nstar_half: 24\nstar_outline: 24\nstar_purple500: 24\nstar_rate: 24,18\nstars: 24\nstart: 24,20\nstay_current_landscape: 24\nstay_current_portrait: 24\nstay_primary_landscape: 24\nstay_primary_portrait: 24\nsticky_note_2: 24\nstop: 24\nstop_circle: 24,20\nstop_screen_share: 24\nstorage: 24\nstore: 24\nstore_mall_directory: 24\nstorefront: 24\nstorm: 24\nstraight: 24,20\nstraighten: 24\nstream: 24\nstreetview: 24\nstrikethrough_s: 24\nstroller: 24\nstyle: 24\nsubdirectory_arrow_left: 24\nsubdirectory_arrow_right: 24\nsubject: 24\nsubscript: 24,20\nsubscriptions: 24\nsubtitles: 24\nsubtitles_off: 24,20\nsubway: 24\nsummarize: 24\nsuperscript: 24,20\nsupervised_user_circle: 24\nsupervisor_account: 24\nsupport: 24,20\nsupport_agent: 24,20\nsurfing: 24,20\nsurround_sound: 24\nswap_calls: 24\nswap_horiz: 24\nswap_horizontal_circle: 24\nswap_vert: 24\nswap_vertical_circle: 24\nswipe: 24,20\nswipe_down: 24,20\nswipe_down_alt: 24,20\nswipe_left: 24,20\nswipe_left_alt: 24,20\nswipe_right: 24,20\nswipe_right_alt: 24,20\nswipe_up: 24,20\nswipe_up_alt: 24,20\nswipe_vertical: 24,20\nswitch_access_shortcut: 24,20\nswitch_access_shortcut_add: 24,20\nswitch_account: 24\nswitch_camera: 24\nswitch_left: 24\nswitch_right: 24\nswitch_video: 24\nsynagogue: 24,20\nsync: 24\nsync_alt: 24,20\nsync_disabled: 24\nsync_lock: 24,20\nsync_problem: 24\nsystem_security_update: 24\nsystem_security_update_good: 24\nsystem_security_update_warning: 24\nsystem_update: 24\nsystem_update_alt: 24\ntab: 24\ntab_unselected: 24\ntable_bar: 24,20\ntable_chart: 24\ntable_restaurant: 24,20\ntable_rows: 24,20\ntable_view: 24\ntablet: 24\ntablet_android: 24\ntablet_mac: 24\ntag: 24\ntag_faces: 24\ntakeout_dining: 24,20\ntap_and_play: 24\ntapas: 24\ntask: 24\ntask_alt: 24\ntaxi_alert: 24\ntemple_buddhist: 24,20\ntemple_hindu: 24,20\nterminal: 24,20\nterrain: 24\ntext_decrease: 24,20\ntext_fields: 24\ntext_format: 24\ntext_increase: 24,20\ntext_rotate_up: 24\ntext_rotate_vertical: 24\ntext_rotation_angledown: 24\ntext_rotation_angleup: 24\ntext_rotation_down: 24\ntext_rotation_none: 24\ntext_snippet: 24\ntextsms: 24\ntexture: 24\ntheater_comedy: 24,20\ntheaters: 24\nthermostat: 24\nthermostat_auto: 24\nthumb_down: 24\nthumb_down_alt: 24\nthumb_down_off_alt: 24\nthumb_up: 24\nthumb_up_alt: 24\nthumb_up_off_alt: 24\nthumbs_up_down: 24\nthunderstorm: 24,20\ntime_to_leave: 24\ntimelapse: 24\ntimeline: 24\ntimer: 24,20\ntimer_10: 24\ntimer_10_select: 24\ntimer_3: 24\ntimer_3_select: 24\ntimer_off: 24,20\ntips_and_updates: 24,20\ntire_repair: 24,20\ntitle: 24\ntoc: 24\ntoday: 24\ntoggle_off: 24\ntoggle_on: 24\ntoken: 24,20\ntoll: 24\ntonality: 24\ntopic: 24\ntornado: 24,20\ntouch_app: 24\ntour: 24\ntoys: 24,20\ntrack_changes: 24\ntraffic: 24\ntrain: 24\ntram: 24\ntranscribe: 24,20\ntransfer_within_a_station: 24\ntransform: 24\ntransgender: 24,20\ntransit_enterexit: 24\ntranslate: 24\ntravel_explore: 24,20\ntrending_down: 24\ntrending_flat: 24\ntrending_up: 24\ntrip_origin: 24\ntroubleshoot: 24,20\ntry: 24\ntsunami: 24,20\ntty: 24\ntune: 24\ntungsten: 24\nturn_left: 24,20\nturn_right: 24,20\nturn_sharp_left: 24,20\nturn_sharp_right: 24,20\nturn_slight_left: 24,20\nturn_slight_right: 24,20\nturned_in: 24\nturned_in_not: 24\ntv: 24\ntv_off: 24\ntwo_wheeler: 24,20\ntype_specimen: 24,20\nu_turn_left: 24,20\nu_turn_right: 24,20\numbrella: 24\nunarchive: 24\nundo: 24\nunfold_less: 24\nunfold_less_double: 24,20\nunfold_more: 24\nunfold_more_double: 24,20\nunpublished: 24\nunsubscribe: 24\nupcoming: 24\nupdate: 24\nupdate_disabled: 24,20\nupgrade: 24,20\nupload: 24\nupload_file: 24\nusb: 24\nusb_off: 24,20\nvaccines: 24,20\nvape_free: 24,20\nvaping_rooms: 24,20\nverified: 24,20\nverified_user: 24\nvertical_align_bottom: 24\nvertical_align_center: 24\nvertical_align_top: 24\nvertical_distribute: 24\nvertical_shades: 24,20\nvertical_shades_closed: 24,20\nvertical_split: 24\nvibration: 24\nvideo_call: 24\nvideo_camera_back: 24\nvideo_camera_front: 24\nvideo_chat: 24,20\nvideo_file: 24,20\nvideo_label: 24\nvideo_library: 24\nvideo_settings: 24,20\nvideo_stable: 24\nvideocam: 24\nvideocam_off: 24\nvideogame_asset: 24\nvideogame_asset_off: 24,20\nview_agenda: 24,20\nview_array: 24,20\nview_carousel: 24,20\nview_column: 24,20\nview_comfy: 24,20\nview_comfy_alt: 24,20\nview_compact: 24,20\nview_compact_alt: 24,20\nview_cozy: 24,20\nview_day: 24\nview_headline: 24\nview_in_ar: 24\nview_kanban: 24,20\nview_list: 24,20\nview_module: 24,20\nview_quilt: 24,20\nview_sidebar: 24,20\nview_stream: 24,20\nview_timeline: 24,20\nview_week: 24,20\nvignette: 24\nvilla: 24,20\nvisibility: 24\nvisibility_off: 24\nvoice_chat: 24\nvoice_over_off: 24\nvoicemail: 24\nvolcano: 24,20\nvolume_down: 24\nvolume_mute: 24\nvolume_off: 24\nvolume_up: 24\nvolunteer_activism: 24,20\nvpn_key: 24\nvpn_key_off: 24,20\nvpn_lock: 24\nvrpano: 24\nwallet: 24,20\nwallpaper: 24\nwarehouse: 24,20\nwarning: 24\nwarning_amber: 24\nwash: 24\nwatch: 24\nwatch_later: 24\nwatch_off: 24,20\nwater: 24\nwater_damage: 24\nwater_drop: 24,20\nwaterfall_chart: 24\nwaves: 24\nwaving_hand: 24,20\nwb_auto: 24\nwb_cloudy: 24\nwb_incandescent: 24\nwb_iridescent: 24\nwb_shade: 24\nwb_sunny: 24\nwb_twilight: 24,20\nwc: 24\nweb: 24\nweb_asset: 24\nweb_asset_off: 24,20\nweb_stories: 24,20\nwebhook: 24,20\nweekend: 24\nwest: 24\nwhatsapp: 24,20\nwhatshot: 24\nwheelchair_pickup: 24\nwhere_to_vote: 24\nwidgets: 24\nwidth_full: 24,20\nwidth_normal: 24,20\nwidth_wide: 24,20\nwifi: 24\nwifi_1_bar: 24,20\nwifi_2_bar: 24,20\nwifi_calling: 24,20\nwifi_calling_3: 24\nwifi_channel: 24,20\nwifi_find: 24,20\nwifi_lock: 24,20\nwifi_off: 24\nwifi_password: 24,20\nwifi_protected_setup: 24,20\nwifi_tethering: 24\nwifi_tethering_error: 24,20\nwifi_tethering_error_rounded: 24\nwifi_tethering_off: 24\nwind_power: 24,20\nwindow: 24,20\nwine_bar: 24\nwoman: 24,20\nwoman_2: 24,20\nwork: 24\nwork_history: 24,20\nwork_off: 24\nwork_outline: 24\nworkspace_premium: 24,20\nworkspaces: 24,20\nwrap_text: 24\nwrong_location: 24,20\nwysiwyg: 24\nyard: 24\nyoutube_searched_for: 24\nzoom_in: 24\nzoom_in_map: 24,20\nzoom_out: 24\nzoom_out_map: 24\n"
  },
  {
    "path": "tests/test_misc/test_material_regular_.txt",
    "content": "10k: 24\n10mp: 24\n11mp: 24\n123: 24,20\n12mp: 24\n13mp: 24\n14mp: 24\n15mp: 24\n16mp: 24\n17mp: 24\n18_up_rating: 24,20\n18mp: 24\n19mp: 24\n1k: 24\n1k_plus: 24\n1x_mobiledata: 24\n20mp: 24\n21mp: 24\n22mp: 24\n23mp: 24\n24mp: 24\n2k: 24\n2k_plus: 24\n2mp: 24\n30fps: 24\n30fps_select: 24\n360: 24\n3d_rotation: 24\n3g_mobiledata: 24\n3k: 24\n3k_plus: 24\n3mp: 24\n3p: 24\n4g_mobiledata: 24\n4g_plus_mobiledata: 24\n4k: 24\n4k_plus: 24\n4mp: 24\n5g: 24,20\n5k: 24\n5k_plus: 24\n5mp: 24\n60fps: 24\n60fps_select: 24\n6_ft_apart: 24\n6k: 24\n6k_plus: 24\n6mp: 24\n7k: 24\n7k_plus: 24\n7mp: 24\n8k: 24\n8k_plus: 24\n8mp: 24\n9k: 24\n9k_plus: 24\n9mp: 24\nabc: 24,20\nac_unit: 24\naccess_alarm: 24\naccess_alarms: 24\naccess_time: 24\naccess_time_filled: 24\naccessibility: 24\naccessibility_new: 24\naccessible: 24\naccessible_forward: 24\naccount_balance: 24\naccount_balance_wallet: 24\naccount_box: 24,20\naccount_circle: 24,20\naccount_tree: 24\nad_units: 24\nadb: 24\nadd: 24\nadd_a_photo: 24\nadd_alarm: 24\nadd_alert: 24\nadd_box: 24\nadd_business: 24,20\nadd_call: 24\nadd_card: 24,20\nadd_chart: 24\nadd_circle: 24\nadd_circle_outline: 24\nadd_comment: 24\nadd_home: 24,20\nadd_home_work: 24,20\nadd_ic_call: 24\nadd_link: 24\nadd_location: 24\nadd_location_alt: 24\nadd_moderator: 24\nadd_photo_alternate: 24\nadd_reaction: 24\nadd_road: 24,20\nadd_shopping_cart: 24\nadd_task: 24\nadd_to_drive: 24,20\nadd_to_home_screen: 24\nadd_to_photos: 24\nadd_to_queue: 24\naddchart: 24\nadf_scanner: 24,20\nadjust: 24\nadmin_panel_settings: 24,20\nads_click: 24,20\nagriculture: 24,20\nair: 24\nairline_seat_flat: 24\nairline_seat_flat_angled: 24\nairline_seat_individual_suite: 24\nairline_seat_legroom_extra: 24\nairline_seat_legroom_normal: 24\nairline_seat_legroom_reduced: 24\nairline_seat_recline_extra: 24\nairline_seat_recline_normal: 24\nairline_stops: 24,20\nairlines: 24,20\nairplane_ticket: 24\nairplanemode_active: 24,20\nairplanemode_inactive: 24,20\nairplay: 24\nairport_shuttle: 24\nalarm: 24\nalarm_add: 24\nalarm_off: 24\nalarm_on: 24\nalbum: 24\nalign_horizontal_center: 24\nalign_horizontal_left: 24\nalign_horizontal_right: 24\nalign_vertical_bottom: 24\nalign_vertical_center: 24\nalign_vertical_top: 24\nall_inbox: 24\nall_inclusive: 24\nall_out: 24\nalt_route: 24,20\nalternate_email: 24\namp_stories: 24,20\nanalytics: 24\nanchor: 24\nandroid: 24,20\nanimation: 24\nannouncement: 24\naod: 24\napartment: 24,20\napi: 24\napp_blocking: 24\napp_registration: 24,20\napp_settings_alt: 24\napp_shortcut: 24,20\napproval: 24\napps: 24\napps_outage: 24,20\narchitecture: 24,20\narchive: 24\narea_chart: 24,20\narrow_back: 24\narrow_back_ios: 24\narrow_back_ios_new: 24,20\narrow_circle_down: 24,20\narrow_circle_left: 24,20\narrow_circle_right: 24,20\narrow_circle_up: 24,20\narrow_downward: 24\narrow_drop_down: 24\narrow_drop_down_circle: 24\narrow_drop_up: 24\narrow_forward: 24\narrow_forward_ios: 24,20\narrow_left: 24\narrow_outward: 24,20\narrow_right: 24\narrow_right_alt: 24\narrow_upward: 24\nart_track: 24\narticle: 24\naspect_ratio: 24\nassessment: 24\nassignment: 24\nassignment_add: 24,20\nassignment_ind: 24\nassignment_late: 24\nassignment_return: 24\nassignment_returned: 24\nassignment_turned_in: 24\nassist_walker: 24,20\nassistant: 24\nassistant_direction: 24\nassistant_navigation: 24\nassistant_photo: 24\nassured_workload: 24,20\natm: 24\nattach_email: 24,20\nattach_file: 24\nattach_money: 24\nattachment: 24\nattractions: 24,20\nattribution: 24\naudio_file: 24,20\naudiotrack: 24\nauto_awesome: 24\nauto_awesome_mosaic: 24\nauto_awesome_motion: 24\nauto_delete: 24,20\nauto_fix_high: 24\nauto_fix_normal: 24\nauto_fix_off: 24\nauto_graph: 24,20\nauto_mode: 24,20\nauto_stories: 24\nautofps_select: 24\nautorenew: 24\nav_timer: 24\nbaby_changing_station: 24\nback_hand: 24,20\nbackpack: 24\nbackspace: 24\nbackup: 24\nbackup_table: 24,20\nbadge: 24,20\nbakery_dining: 24,20\nbalance: 24,20\nbalcony: 24,20\nballot: 24\nbar_chart: 24,20\nbarcode_reader: 24,20\nbatch_prediction: 24,20\nbathroom: 24\nbathtub: 24,20\nbattery_0_bar: 24,20\nbattery_1_bar: 24,20\nbattery_2_bar: 24,20\nbattery_3_bar: 24,20\nbattery_4_bar: 24,20\nbattery_5_bar: 24,20\nbattery_6_bar: 24,20\nbattery_alert: 24\nbattery_charging_full: 24\nbattery_full: 24\nbattery_saver: 24\nbattery_std: 24\nbattery_unknown: 24\nbeach_access: 24\nbed: 24\nbedroom_baby: 24\nbedroom_child: 24\nbedroom_parent: 24\nbedtime: 24,20\nbedtime_off: 24,20\nbeenhere: 24\nbento: 24\nbike_scooter: 24,20\nbiotech: 24,20\nblender: 24\nblind: 24,20\nblinds: 24,20\nblinds_closed: 24,20\nblock: 24\nblock_flipped: 24,20\nbloodtype: 24\nbluetooth: 24\nbluetooth_audio: 24\nbluetooth_connected: 24\nbluetooth_disabled: 24\nbluetooth_drive: 24\nbluetooth_searching: 24\nblur_circular: 24\nblur_linear: 24\nblur_off: 24\nblur_on: 24\nbolt: 24\nbook: 24\nbook_online: 24\nbookmark: 24\nbookmark_add: 24,20\nbookmark_added: 24\nbookmark_border: 24\nbookmark_remove: 24,20\nbookmarks: 24\nborder_all: 24\nborder_bottom: 24\nborder_clear: 24\nborder_color: 24\nborder_horizontal: 24\nborder_inner: 24\nborder_left: 24\nborder_outer: 24\nborder_right: 24\nborder_style: 24\nborder_top: 24\nborder_vertical: 24\nboy: 24,20\nbranding_watermark: 24\nbreakfast_dining: 24,20\nbrightness_1: 24\nbrightness_2: 24\nbrightness_3: 24\nbrightness_4: 24\nbrightness_5: 24\nbrightness_6: 24\nbrightness_7: 24\nbrightness_auto: 24\nbrightness_high: 24\nbrightness_low: 24\nbrightness_medium: 24\nbroadcast_on_home: 24,20\nbroadcast_on_personal: 24,20\nbroken_image: 24\nbrowse_gallery: 24,20\nbrowser_not_supported: 24,20\nbrowser_updated: 24,20\nbrunch_dining: 24,20\nbrush: 24\nbubble_chart: 24\nbug_report: 24\nbuild: 24\nbuild_circle: 24,20\nbungalow: 24,20\nburst_mode: 24\nbus_alert: 24\nbusiness: 24\nbusiness_center: 24\ncabin: 24,20\ncable: 24\ncached: 24\ncake: 24\ncalculate: 24,20\ncalendar_month: 24,20\ncalendar_today: 24\ncalendar_view_day: 24\ncalendar_view_month: 24\ncalendar_view_week: 24\ncall: 24\ncall_end: 24\ncall_made: 24\ncall_merge: 24\ncall_missed: 24\ncall_missed_outgoing: 24\ncall_received: 24\ncall_split: 24\ncall_to_action: 24\ncamera: 24\ncamera_alt: 24\ncamera_enhance: 24\ncamera_front: 24\ncamera_indoor: 24\ncamera_outdoor: 24\ncamera_rear: 24\ncamera_roll: 24\ncameraswitch: 24\ncampaign: 24\ncancel: 24\ncancel_presentation: 24\ncancel_schedule_send: 24,20\ncandlestick_chart: 24,20\ncar_crash: 24,20\ncar_rental: 24,20\ncar_repair: 24,20\ncard_giftcard: 24\ncard_membership: 24\ncard_travel: 24\ncarpenter: 24\ncases: 24\ncasino: 24\ncast: 24\ncast_connected: 24\ncast_for_education: 24\ncastle: 24,20\ncatching_pokemon: 24,20\ncategory: 24\ncelebration: 24,20\ncell_tower: 24,20\ncell_wifi: 24\ncenter_focus_strong: 24\ncenter_focus_weak: 24\nchair: 24\nchair_alt: 24\nchalet: 24,20\nchange_circle: 24,20\nchange_history: 24\ncharging_station: 24\nchat: 24\nchat_bubble: 24\nchat_bubble_outline: 24\ncheck: 24\ncheck_box: 24\ncheck_box_outline_blank: 24\ncheck_circle: 24\ncheck_circle_outline: 24\nchecklist: 24,20\nchecklist_rtl: 24,20\ncheckroom: 24\nchevron_left: 24\nchevron_right: 24\nchild_care: 24\nchild_friendly: 24\nchrome_reader_mode: 24\nchurch: 24,20\ncircle: 24\ncircle_notifications: 24\nclass: 24\nclean_hands: 24\ncleaning_services: 24,20\nclear: 24\nclear_all: 24\nclose: 24\nclose_fullscreen: 24\nclosed_caption: 24\nclosed_caption_disabled: 24\nclosed_caption_off: 24\ncloud: 24\ncloud_circle: 24\ncloud_done: 24\ncloud_download: 24\ncloud_off: 24\ncloud_queue: 24\ncloud_sync: 24,20\ncloud_upload: 24\ncloudy_snowing: 24,20\nco2: 24,20\nco_present: 24,20\ncode: 24\ncode_off: 24,20\ncoffee: 24\ncoffee_maker: 24\ncollections: 24\ncollections_bookmark: 24\ncolor_lens: 24\ncolorize: 24\ncomment: 24\ncomment_bank: 24,20\ncomments_disabled: 24,20\ncommit: 24,20\ncommute: 24\ncompare: 24\ncompare_arrows: 24\ncompass_calibration: 24\ncompost: 24,20\ncompress: 24\ncomputer: 24\nconfirmation_number: 24\nconnect_without_contact: 24\nconnected_tv: 24\nconnecting_airports: 24,20\nconstruction: 24,20\ncontact_emergency: 24,20\ncontact_mail: 24\ncontact_page: 24\ncontact_phone: 24\ncontact_support: 24\ncontactless: 24,20\ncontacts: 24\ncontent_copy: 24\ncontent_cut: 24\ncontent_paste: 24\ncontent_paste_go: 24,20\ncontent_paste_off: 24,20\ncontent_paste_search: 24,20\ncontrast: 24,20\ncontrol_camera: 24\ncontrol_point: 24\ncontrol_point_duplicate: 24\nconveyor_belt: 24,20\ncookie: 24,20\ncopy_all: 24,20\ncopyright: 24\ncoronavirus: 24\ncorporate_fare: 24\ncottage: 24,20\ncountertops: 24\ncreate: 24\ncreate_new_folder: 24\ncredit_card: 24\ncredit_card_off: 24,20\ncredit_score: 24\ncrib: 24,20\ncrisis_alert: 24,20\ncrop: 24\ncrop_16_9: 24,20\ncrop_3_2: 24,20\ncrop_5_4: 24,20\ncrop_7_5: 24,20\ncrop_din: 24\ncrop_free: 24\ncrop_landscape: 24\ncrop_original: 24\ncrop_portrait: 24\ncrop_rotate: 24\ncrop_square: 24\ncruelty_free: 24,20\ncss: 24,20\ncurrency_bitcoin: 24,20\ncurrency_exchange: 24,20\ncurrency_franc: 24,20\ncurrency_lira: 24,20\ncurrency_pound: 24,20\ncurrency_ruble: 24,20\ncurrency_rupee: 24,20\ncurrency_yen: 24,20\ncurrency_yuan: 24,20\ncurtains: 24,20\ncurtains_closed: 24,20\ncyclone: 24,20\ndangerous: 24,20\ndark_mode: 24,20\ndashboard: 24\ndashboard_customize: 24\ndata_array: 24,20\ndata_exploration: 24,20\ndata_object: 24,20\ndata_saver_off: 24\ndata_saver_on: 24\ndata_thresholding: 24,20\ndata_usage: 24\ndataset: 24,20\ndataset_linked: 24,20\ndate_range: 24\ndeblur: 24,20\ndeck: 24,20\ndehaze: 24\ndelete: 24\ndelete_forever: 24\ndelete_outline: 24\ndelete_sweep: 24\ndelivery_dining: 24,20\ndensity_large: 24,20\ndensity_medium: 24,20\ndensity_small: 24,20\ndeparture_board: 24\ndescription: 24\ndeselect: 24,20\ndesign_services: 24,20\ndesk: 24,20\ndesktop_access_disabled: 24\ndesktop_mac: 24\ndesktop_windows: 24\ndetails: 24\ndeveloper_board: 24\ndeveloper_board_off: 24,20\ndeveloper_mode: 24\ndevice_hub: 24\ndevice_thermostat: 24\ndevice_unknown: 24\ndevices: 24\ndevices_fold: 24,20\ndevices_other: 24\ndew_point: 24,20\ndialer_sip: 24\ndialpad: 24\ndiamond: 24,20\ndifference: 24,20\ndining: 24\ndinner_dining: 24,20\ndirections: 24\ndirections_bike: 24\ndirections_boat: 24\ndirections_boat_filled: 24\ndirections_bus: 24\ndirections_bus_filled: 24\ndirections_car: 24\ndirections_car_filled: 24\ndirections_off: 24\ndirections_railway: 24\ndirections_railway_filled: 24\ndirections_run: 24\ndirections_subway: 24\ndirections_subway_filled: 24\ndirections_transit: 24\ndirections_transit_filled: 24\ndirections_walk: 24\ndirty_lens: 24\ndisabled_by_default: 24\ndisabled_visible: 24,20\ndisc_full: 24\ndiscount: 24,20\ndisplay_settings: 24,20\ndiversity_1: 24,20\ndiversity_2: 24,20\ndiversity_3: 24,20\ndns: 24\ndo_disturb: 24\ndo_disturb_alt: 24\ndo_disturb_off: 24\ndo_disturb_on: 24\ndo_not_disturb: 24\ndo_not_disturb_alt: 24\ndo_not_disturb_off: 24\ndo_not_disturb_on: 24\ndo_not_disturb_on_total_silence: 24\ndo_not_step: 24\ndo_not_touch: 24\ndock: 24\ndocument_scanner: 24,20\ndomain: 24\ndomain_add: 24,20\ndomain_disabled: 24\ndomain_verification: 24,20\ndone: 24\ndone_all: 24\ndone_outline: 24\ndonut_large: 24\ndonut_small: 24\ndoor_back: 24\ndoor_front: 24\ndoor_sliding: 24\ndoorbell: 24\ndouble_arrow: 24,20\ndownhill_skiing: 24,20\ndownload: 24\ndownload_done: 24\ndownload_for_offline: 24\ndownloading: 24\ndrafts: 24\ndrag_handle: 24\ndrag_indicator: 24\ndraw: 24,20\ndrive_eta: 24\ndrive_file_move: 24\ndrive_file_move_outline: 24\ndrive_file_move_rtl: 24,20\ndrive_file_rename_outline: 24\ndrive_folder_upload: 24\ndry: 24\ndry_cleaning: 24,20\nduo: 24\ndvr: 24\ndynamic_feed: 24,20\ndynamic_form: 24\ne_mobiledata: 24\nearbuds: 24\nearbuds_battery: 24\neast: 24\neco: 24,20\nedgesensor_high: 24\nedgesensor_low: 24\nedit: 24\nedit_attributes: 24\nedit_calendar: 24,20\nedit_document: 24,20\nedit_location: 24\nedit_location_alt: 24,20\nedit_note: 24,20\nedit_notifications: 24,20\nedit_off: 24\nedit_road: 24,20\nedit_square: 24,20\negg: 24,20\negg_alt: 24,20\neject: 24\nelderly: 24\nelderly_woman: 24,20\nelectric_bike: 24,20\nelectric_bolt: 24,20\nelectric_car: 24,20\nelectric_meter: 24,20\nelectric_moped: 24,20\nelectric_rickshaw: 24,20\nelectric_scooter: 24,20\nelectrical_services: 24,20\nelevator: 24\nemail: 24\nemergency: 24,20\nemergency_recording: 24,20\nemergency_share: 24,20\nemoji_emotions: 24,20\nemoji_events: 24,20\nemoji_flags: 24,20\nemoji_food_beverage: 24,20\nemoji_nature: 24,20\nemoji_objects: 24,20\nemoji_people: 24,20\nemoji_symbols: 24,20\nemoji_transportation: 24,20\nenergy_savings_leaf: 24,20\nengineering: 24,20\nenhanced_encryption: 24\nequalizer: 24\nerror: 24\nerror_outline: 24\nescalator: 24\nescalator_warning: 24\neuro: 24,20\neuro_symbol: 24\nev_station: 24\nevent: 24\nevent_available: 24\nevent_busy: 24\nevent_note: 24\nevent_repeat: 24,20\nevent_seat: 24\nexit_to_app: 24\nexpand: 24\nexpand_circle_down: 24,20\nexpand_less: 24\nexpand_more: 24\nexplicit: 24\nexplore: 24\nexplore_off: 24\nexposure: 24\nexposure_neg_1: 24\nexposure_neg_2: 24\nexposure_plus_1: 24\nexposure_plus_2: 24\nexposure_zero: 24\nextension: 24\nextension_off: 24,20\nface: 24\nface_2: 24,20\nface_3: 24,20\nface_4: 24,20\nface_5: 24,20\nface_6: 24,20\nface_retouching_natural: 24\nface_retouching_off: 24\nfacebook: 24\nfact_check: 24,20\nfactory: 24,20\nfamily_restroom: 24\nfast_forward: 24\nfast_rewind: 24\nfastfood: 24\nfavorite: 24\nfavorite_border: 24\nfax: 24,20\nfeatured_play_list: 24\nfeatured_video: 24\nfeed: 24\nfeedback: 24\nfemale: 24,20\nfence: 24\nfestival: 24,20\nfiber_dvr: 24\nfiber_manual_record: 24\nfiber_new: 24\nfiber_pin: 24\nfiber_smart_record: 24\nfile_copy: 24\nfile_download: 24\nfile_download_done: 24\nfile_download_off: 24,20\nfile_open: 24,20\nfile_present: 24\nfile_upload: 24\nfile_upload_off: 24,20\nfilter: 24\nfilter_1: 24\nfilter_2: 24\nfilter_3: 24\nfilter_4: 24\nfilter_5: 24\nfilter_6: 24\nfilter_7: 24\nfilter_8: 24\nfilter_9: 24\nfilter_9_plus: 24\nfilter_alt: 24\nfilter_alt_off: 24,20\nfilter_b_and_w: 24\nfilter_center_focus: 24\nfilter_drama: 24\nfilter_frames: 24\nfilter_hdr: 24\nfilter_list: 24\nfilter_list_alt: 24\nfilter_list_off: 24,20\nfilter_none: 24\nfilter_tilt_shift: 24\nfilter_vintage: 24\nfind_in_page: 24\nfind_replace: 24\nfingerprint: 24\nfire_extinguisher: 24\nfire_hydrant_alt: 24,20\nfire_truck: 24,20\nfireplace: 24,20\nfirst_page: 24\nfit_screen: 24\nfitbit: 24,20\nfitness_center: 24\nflag: 24\nflag_circle: 24,20\nflaky: 24,20\nflare: 24\nflash_auto: 24\nflash_off: 24\nflash_on: 24\nflashlight_off: 24\nflashlight_on: 24\nflatware: 24\nflight: 24\nflight_class: 24,20\nflight_land: 24\nflight_takeoff: 24\nflip: 24\nflip_camera_android: 24,20\nflip_camera_ios: 24,20\nflip_to_back: 24\nflip_to_front: 24\nflood: 24,20\nflourescent: 24\nfluorescent: 24\nflutter_dash: 24,20\nfmd_bad: 24\nfmd_good: 24\nfoggy: 24,20\nfolder: 24\nfolder_copy: 24,20\nfolder_delete: 24,20\nfolder_off: 24,20\nfolder_open: 24\nfolder_shared: 24\nfolder_special: 24\nfolder_zip: 24,20\nfollow_the_signs: 24\nfont_download: 24\nfont_download_off: 24,20\nfood_bank: 24\nforest: 24,20\nfork_left: 24,20\nfork_right: 24,20\nforklift: 24,20\nformat_align_center: 24\nformat_align_justify: 24\nformat_align_left: 24\nformat_align_right: 24\nformat_bold: 24\nformat_clear: 24\nformat_color_fill: 24,20\nformat_color_reset: 24\nformat_color_text: 24,20\nformat_indent_decrease: 24\nformat_indent_increase: 24\nformat_italic: 24\nformat_line_spacing: 24\nformat_list_bulleted: 24\nformat_list_bulleted_add: 24,20\nformat_list_numbered: 24\nformat_list_numbered_rtl: 24\nformat_overline: 24,20\nformat_paint: 24\nformat_quote: 24\nformat_shapes: 24\nformat_size: 24\nformat_strikethrough: 24\nformat_textdirection_l_to_r: 24\nformat_textdirection_r_to_l: 24\nformat_underlined: 24\nfort: 24,20\nforum: 24\nforward: 24\nforward_10: 24\nforward_30: 24\nforward_5: 24\nforward_to_inbox: 24,20\nfoundation: 24\nfree_breakfast: 24\nfree_cancellation: 24,20\nfront_hand: 24,20\nfront_loader: 24,20\nfullscreen: 24\nfullscreen_exit: 24\nfunctions: 24\ng_mobiledata: 24\ng_translate: 24\ngamepad: 24\ngames: 24\ngarage: 24\ngas_meter: 24,20\ngavel: 24\ngenerating_tokens: 24,20\ngesture: 24\nget_app: 24\ngif: 24\ngif_box: 24,20\ngirl: 24,20\ngite: 24,20\ngolf_course: 24\ngpp_bad: 24\ngpp_good: 24\ngpp_maybe: 24\ngps_fixed: 24\ngps_not_fixed: 24\ngps_off: 24\ngrade: 24\ngradient: 24\ngrading: 24,20\ngrain: 24\ngraphic_eq: 24\ngrass: 24\ngrid_3x3: 24\ngrid_4x4: 24\ngrid_goldenratio: 24\ngrid_off: 24\ngrid_on: 24\ngrid_view: 24\ngroup: 24\ngroup_add: 24,20\ngroup_off: 24,20\ngroup_remove: 24,20\ngroup_work: 24\ngroups: 24\ngroups_2: 24,20\ngroups_3: 24,20\nh_mobiledata: 24\nh_plus_mobiledata: 24\nhail: 24\nhandshake: 24,20\nhandyman: 24,20\nhardware: 24,20\nhd: 24\nhdr_auto: 24\nhdr_auto_select: 24\nhdr_enhanced_select: 24\nhdr_off: 24\nhdr_off_select: 24\nhdr_on: 24\nhdr_on_select: 24\nhdr_plus: 24\nhdr_strong: 24\nhdr_weak: 24\nheadphones: 24\nheadphones_battery: 24\nheadset: 24\nheadset_mic: 24\nheadset_off: 24\nhealing: 24\nhealth_and_safety: 24\nhearing: 24\nhearing_disabled: 24,20\nheart_broken: 24,20\nheat_pump: 24,20\nheight: 24,20\nhelp: 24\nhelp_center: 24\nhelp_outline: 24\nhevc: 24\nhexagon: 24,20\nhide_image: 24\nhide_source: 24\nhigh_quality: 24\nhighlight: 24\nhighlight_alt: 24\nhighlight_off: 24\nhiking: 24,20\nhistory: 24\nhistory_edu: 24,20\nhistory_toggle_off: 24,20\nhive: 24,20\nhls: 24,20\nhls_off: 24,20\nholiday_village: 24,20\nhome: 24\nhome_filled: 24\nhome_max: 24\nhome_mini: 24\nhome_repair_service: 24,20\nhome_work: 24,20\nhorizontal_distribute: 24\nhorizontal_rule: 24,20\nhorizontal_split: 24\nhot_tub: 24\nhotel: 24\nhotel_class: 24,20\nhourglass_bottom: 24,20\nhourglass_disabled: 24,20\nhourglass_empty: 24\nhourglass_full: 24\nhourglass_top: 24,20\nhouse: 24,20\nhouse_siding: 24\nhouseboat: 24,20\nhow_to_reg: 24\nhow_to_vote: 24\nhtml: 24,20\nhttp: 24\nhttps: 24\nhub: 24,20\nhvac: 24,20\nice_skating: 24,20\nicecream: 24,20\nimage: 24\nimage_aspect_ratio: 24\nimage_not_supported: 24,20\nimage_search: 24\nimagesearch_roller: 24\nimport_contacts: 24\nimport_export: 24\nimportant_devices: 24\ninbox: 24\nincomplete_circle: 24,20\nindeterminate_check_box: 24\ninfo: 24\ninfo_outline: 24\ninput: 24\ninsert_chart: 24\ninsert_chart_outlined: 24\ninsert_comment: 24\ninsert_drive_file: 24\ninsert_emoticon: 24\ninsert_invitation: 24\ninsert_link: 24\ninsert_page_break: 24,20\ninsert_photo: 24\ninsights: 24,20\ninstall_desktop: 24,20\ninstall_mobile: 24,20\nintegration_instructions: 24\ninterests: 24,20\ninterpreter_mode: 24,20\ninventory: 24\ninventory_2: 24,20\ninvert_colors: 24,20\ninvert_colors_off: 24,20\nios_share: 24\niron: 24,20\niso: 24\njavascript: 24,20\njoin_full: 24,20\njoin_inner: 24,20\njoin_left: 24,20\njoin_right: 24,20\nkayaking: 24,20\nkebab_dining: 24,20\nkey: 24,20\nkey_off: 24,20\nkeyboard: 24\nkeyboard_alt: 24\nkeyboard_arrow_down: 24\nkeyboard_arrow_left: 24\nkeyboard_arrow_right: 24\nkeyboard_arrow_up: 24\nkeyboard_backspace: 24\nkeyboard_capslock: 24\nkeyboard_command_key: 24,20\nkeyboard_control_key: 24,20\nkeyboard_double_arrow_down: 24,20\nkeyboard_double_arrow_left: 24,20\nkeyboard_double_arrow_right: 24,20\nkeyboard_double_arrow_up: 24,20\nkeyboard_hide: 24\nkeyboard_option_key: 24,20\nkeyboard_return: 24\nkeyboard_tab: 24\nkeyboard_voice: 24\nking_bed: 24,20\nkitchen: 24\nkitesurfing: 24,20\nlabel: 24\nlabel_important: 24\nlabel_important_outline: 24\nlabel_off: 24\nlabel_outline: 24\nlan: 24,20\nlandscape: 24\nlandslide: 24,20\nlanguage: 24\nlaptop: 24\nlaptop_chromebook: 24\nlaptop_mac: 24\nlaptop_windows: 24\nlast_page: 24\nlaunch: 24\nlayers: 24\nlayers_clear: 24\nleaderboard: 24\nleak_add: 24\nleak_remove: 24\nlegend_toggle: 24,20\nlens: 24\nlens_blur: 24\nlibrary_add: 24\nlibrary_add_check: 24,20\nlibrary_books: 24\nlibrary_music: 24\nlight: 24\nlight_mode: 24,20\nlightbulb: 24\nlightbulb_circle: 24,20\nlightbulb_outline: 24\nline_axis: 24,20\nline_style: 24\nline_weight: 24\nlinear_scale: 24\nlink: 24\nlink_off: 24\nlinked_camera: 24\nliquor: 24,20\nlist: 24\nlist_alt: 24\nlive_help: 24\nlive_tv: 24\nliving: 24\nlocal_activity: 24\nlocal_airport: 24,20\nlocal_atm: 24\nlocal_bar: 24\nlocal_cafe: 24\nlocal_car_wash: 24\nlocal_convenience_store: 24\nlocal_dining: 24\nlocal_drink: 24\nlocal_fire_department: 24,20\nlocal_florist: 24\nlocal_gas_station: 24\nlocal_grocery_store: 24\nlocal_hospital: 24\nlocal_hotel: 24\nlocal_laundry_service: 24\nlocal_library: 24\nlocal_mall: 24\nlocal_movies: 24\nlocal_offer: 24\nlocal_parking: 24\nlocal_pharmacy: 24\nlocal_phone: 24\nlocal_pizza: 24\nlocal_play: 24\nlocal_police: 24\nlocal_post_office: 24\nlocal_printshop: 24\nlocal_see: 24\nlocal_shipping: 24\nlocal_taxi: 24\nlocation_city: 24\nlocation_disabled: 24\nlocation_off: 24\nlocation_on: 24\nlocation_pin: 24\nlocation_searching: 24\nlock: 24\nlock_clock: 24,20\nlock_open: 24\nlock_outline: 24\nlock_person: 24,20\nlock_reset: 24,20\nlogin: 24,20\nlogo_dev: 24,20\nlogout: 24\nlooks: 24\nlooks_3: 24\nlooks_4: 24\nlooks_5: 24\nlooks_6: 24\nlooks_one: 24\nlooks_two: 24\nloop: 24\nloupe: 24\nlow_priority: 24\nloyalty: 24\nlte_mobiledata: 24\nlte_plus_mobiledata: 24\nluggage: 24\nlunch_dining: 24,20\nlyrics: 24,20\nmacro_off: 24,20\nmail: 24\nmail_lock: 24,20\nmail_outline: 24\nmale: 24,20\nman: 24,20\nman_2: 24,20\nman_3: 24,20\nman_4: 24,20\nmanage_accounts: 24\nmanage_history: 24,20\nmanage_search: 24\nmap: 24\nmaps_home_work: 24\nmaps_ugc: 24\nmargin: 24\nmark_as_unread: 24,20\nmark_chat_read: 24,20\nmark_chat_unread: 24,20\nmark_email_read: 24,20\nmark_email_unread: 24,20\nmark_unread_chat_alt: 24,20\nmarkunread: 24\nmarkunread_mailbox: 24\nmasks: 24\nmaximize: 24\nmedia_bluetooth_off: 24\nmedia_bluetooth_on: 24\nmediation: 24\nmedical_information: 24,20\nmedical_services: 24,20\nmedication: 24\nmedication_liquid: 24,20\nmeeting_room: 24\nmemory: 24\nmenu: 24\nmenu_book: 24\nmenu_open: 24\nmerge: 24,20\nmerge_type: 24\nmessage: 24\nmic: 24\nmic_external_off: 24\nmic_external_on: 24\nmic_none: 24\nmic_off: 24\nmicrowave: 24\nmilitary_tech: 24,20\nminimize: 24\nminor_crash: 24,20\nmiscellaneous_services: 24,20\nmissed_video_call: 24\nmms: 24\nmobile_friendly: 24\nmobile_off: 24\nmobile_screen_share: 24\nmobiledata_off: 24\nmode: 24\nmode_comment: 24\nmode_edit: 24\nmode_edit_outline: 24,20\nmode_fan_off: 24,20\nmode_night: 24\nmode_of_travel: 24,20\nmode_standby: 24\nmodel_training: 24,20\nmonetization_on: 24\nmoney: 24\nmoney_off: 24\nmoney_off_csred: 24\nmonitor: 24\nmonitor_heart: 24,20\nmonitor_weight: 24\nmonochrome_photos: 24\nmood: 24\nmood_bad: 24\nmoped: 24,20\nmore: 24\nmore_horiz: 24\nmore_time: 24,20\nmore_vert: 24\nmosque: 24,20\nmotion_photos_auto: 24\nmotion_photos_off: 24\nmotion_photos_on: 24,20\nmotion_photos_pause: 24,20\nmotion_photos_paused: 24\nmouse: 24\nmove_down: 24,20\nmove_to_inbox: 24\nmove_up: 24,20\nmovie: 24\nmovie_creation: 24\nmovie_edit: 24,20\nmovie_filter: 24\nmoving: 24,20\nmp: 24\nmultiline_chart: 24\nmultiple_stop: 24\nmuseum: 24,20\nmusic_note: 24\nmusic_off: 24\nmusic_video: 24\nmy_location: 24\nnat: 24,20\nnature: 24\nnature_people: 24\nnavigate_before: 24\nnavigate_next: 24\nnavigation: 24\nnear_me: 24\nnear_me_disabled: 24\nnearby_error: 24\nnearby_off: 24\nnest_cam_wired_stand: 24,20\nnetwork_cell: 24\nnetwork_check: 24\nnetwork_locked: 24\nnetwork_ping: 24,20\nnetwork_wifi: 24\nnetwork_wifi_1_bar: 24,20\nnetwork_wifi_2_bar: 24,20\nnetwork_wifi_3_bar: 24,20\nnew_label: 24,20\nnew_releases: 24\nnewspaper: 24,20\nnext_plan: 24,20\nnext_week: 24\nnfc: 24\nnight_shelter: 24\nnightlife: 24,20\nnightlight: 24\nnightlight_round: 24\nnights_stay: 24,20\nno_accounts: 24\nno_adult_content: 24,20\nno_backpack: 24\nno_cell: 24\nno_crash: 24,20\nno_drinks: 24\nno_encryption: 24\nno_encryption_gmailerrorred: 24\nno_flash: 24\nno_food: 24\nno_luggage: 24\nno_meals: 24\nno_meals_ouline: 24\nno_meeting_room: 24\nno_photography: 24\nno_sim: 24\nno_stroller: 24\nno_transfer: 24\nnoise_aware: 24,20\nnoise_control_off: 24,20\nnordic_walking: 24,20\nnorth: 24\nnorth_east: 24\nnorth_west: 24\nnot_accessible: 24,20\nnot_interested: 24\nnot_listed_location: 24\nnot_started: 24,20\nnote: 24\nnote_add: 24\nnote_alt: 24\nnotes: 24\nnotification_add: 24,20\nnotification_important: 24\nnotifications: 24\nnotifications_active: 24\nnotifications_none: 24\nnotifications_off: 24\nnotifications_paused: 24\nnumbers: 24,20\noffline_bolt: 24\noffline_pin: 24\noffline_share: 24\noil_barrel: 24,20\non_device_training: 24,20\nondemand_video: 24\nonline_prediction: 24,20\nopacity: 24\nopen_in_browser: 24\nopen_in_full: 24\nopen_in_new: 24\nopen_in_new_off: 24,20\nopen_with: 24\nother_houses: 24,20\noutbond: 24\noutbound: 24\noutbox: 24,20\noutdoor_grill: 24,20\noutgoing_mail: 24,20\noutlet: 24\noutlined_flag: 24\noutput: 24,20\npadding: 24\npages: 24\npageview: 24\npaid: 24\npalette: 24,20\npallet: 24,20\npan_tool: 24\npan_tool_alt: 24,20\npanorama: 24\npanorama_fish_eye: 24\npanorama_horizontal: 24\npanorama_horizontal_select: 24\npanorama_photosphere: 24\npanorama_photosphere_select: 24\npanorama_vertical: 24\npanorama_vertical_select: 24\npanorama_wide_angle: 24\npanorama_wide_angle_select: 24\nparagliding: 24,20\npark: 24,20\nparty_mode: 24\npassword: 24\npattern: 24\npause: 24\npause_circle: 24,20\npause_circle_filled: 24\npause_circle_outline: 24\npause_presentation: 24\npayment: 24\npayments: 24\npedal_bike: 24,20\npending: 24,20\npending_actions: 24\npentagon: 24,20\npeople: 24\npeople_alt: 24,20\npeople_outline: 24\npercent: 24,20\nperm_camera_mic: 24\nperm_contact_calendar: 24\nperm_data_setting: 24\nperm_device_information: 24\nperm_identity: 24\nperm_media: 24\nperm_phone_msg: 24\nperm_scan_wifi: 24\nperson: 24\nperson_2: 24,20\nperson_3: 24,20\nperson_4: 24,20\nperson_add: 24\nperson_add_alt: 24,20\nperson_add_alt_1: 24,20\nperson_add_disabled: 24\nperson_off: 24,20\nperson_outline: 24\nperson_pin: 24\nperson_pin_circle: 24\nperson_remove: 24,20\nperson_remove_alt_1: 24,20\nperson_search: 24,20\npersonal_injury: 24,20\npersonal_video: 24\npest_control: 24,20\npest_control_rodent: 24,20\npets: 24\nphishing: 24,20\nphone: 24\nphone_android: 24\nphone_bluetooth_speaker: 24\nphone_callback: 24\nphone_disabled: 24\nphone_enabled: 24\nphone_forwarded: 24\nphone_in_talk: 24\nphone_iphone: 24\nphone_locked: 24,20\nphone_missed: 24\nphone_paused: 24\nphonelink: 24\nphonelink_erase: 24\nphonelink_lock: 24\nphonelink_off: 24\nphonelink_ring: 24\nphonelink_setup: 24\nphoto: 24\nphoto_album: 24,20\nphoto_camera: 24\nphoto_camera_back: 24\nphoto_camera_front: 24\nphoto_filter: 24\nphoto_library: 24\nphoto_size_select_actual: 24\nphoto_size_select_large: 24\nphoto_size_select_small: 24\nphp: 24,20\npiano: 24,20\npiano_off: 24,20\npicture_as_pdf: 24\npicture_in_picture: 24\npicture_in_picture_alt: 24\npie_chart: 24\npie_chart_outline: 24\npie_chart_outlined: 24\npin: 24\npin_drop: 24\npin_end: 24,20\npin_invoke: 24,20\npinch: 24,20\npivot_table_chart: 24\npix: 24,20\nplace: 24\nplagiarism: 24,20\nplay_arrow: 24\nplay_circle: 24,20\nplay_circle_filled: 24\nplay_circle_outline: 24\nplay_disabled: 24\nplay_for_work: 24\nplay_lesson: 24\nplaylist_add: 24,20\nplaylist_add_check: 24,20\nplaylist_add_check_circle: 24,20\nplaylist_add_circle: 24,20\nplaylist_play: 24,20\nplaylist_remove: 24,20\nplumbing: 24,20\nplus_one: 24\npodcasts: 24\npoint_of_sale: 24,20\npolicy: 24,20\npoll: 24\npolyline: 24,20\npolymer: 24\npool: 24\nportable_wifi_off: 24\nportrait: 24\npost_add: 24,20\npower: 24\npower_input: 24\npower_off: 24\npower_settings_new: 24\nprecision_manufacturing: 24,20\npregnant_woman: 24\npresent_to_all: 24\npreview: 24\nprice_change: 24\nprice_check: 24\nprint: 24\nprint_disabled: 24\npriority_high: 24\nprivacy_tip: 24,20\nprivate_connectivity: 24,20\nproduction_quantity_limits: 24\npropane: 24,20\npropane_tank: 24,20\npsychology: 24,20\npsychology_alt: 24,20\npublic: 24\npublic_off: 24\npublish: 24\npublished_with_changes: 24\npunch_clock: 24,20\npush_pin: 24,20\nqr_code: 24,20\nqr_code_2: 24\nqr_code_scanner: 24\nquery_builder: 24\nquery_stats: 24,20\nquestion_answer: 24\nquestion_mark: 24,20\nqueue: 24\nqueue_music: 24,20\nqueue_play_next: 24\nquickreply: 24,20\nquiz: 24\nr_mobiledata: 24\nradar: 24\nradio: 24\nradio_button_checked: 24\nradio_button_unchecked: 24\nrailway_alert: 24\nramen_dining: 24,20\nramp_left: 24,20\nramp_right: 24,20\nrate_review: 24\nraw_off: 24\nraw_on: 24\nread_more: 24,20\nreal_estate_agent: 24,20\nrebase_edit: 24,20\nreceipt: 24\nreceipt_long: 24\nrecent_actors: 24\nrecommend: 24\nrecord_voice_over: 24\nrectangle: 24,20\nrecycling: 24,20\nredeem: 24\nredo: 24\nreduce_capacity: 24\nrefresh: 24\nremember_me: 24\nremove: 24\nremove_circle: 24\nremove_circle_outline: 24\nremove_done: 24\nremove_from_queue: 24\nremove_moderator: 24\nremove_red_eye: 24\nremove_road: 24,20\nremove_shopping_cart: 24\nreorder: 24\nrepartition: 24,20\nrepeat: 24\nrepeat_on: 24\nrepeat_one: 24\nrepeat_one_on: 24\nreplay: 24\nreplay_10: 24\nreplay_30: 24\nreplay_5: 24\nreplay_circle_filled: 24,36\nreply: 24\nreply_all: 24\nreport: 24\nreport_gmailerrorred: 24\nreport_off: 24\nreport_problem: 24\nrequest_page: 24\nrequest_quote: 24\nreset_tv: 24\nrestart_alt: 24\nrestaurant: 24\nrestaurant_menu: 24\nrestore: 24\nrestore_from_trash: 24\nrestore_page: 24\nreviews: 24\nrice_bowl: 24\nring_volume: 24\nrocket: 24,20\nrocket_launch: 24,20\nroller_shades: 24,20\nroller_shades_closed: 24,20\nroller_skating: 24,20\nroofing: 24\nroom: 24\nroom_preferences: 24\nroom_service: 24\nrotate_90_degrees_ccw: 24\nrotate_90_degrees_cw: 24,20\nrotate_left: 24\nrotate_right: 24\nroundabout_left: 24,20\nroundabout_right: 24,20\nrounded_corner: 24\nroute: 24,20\nrouter: 24\nrowing: 24\nrss_feed: 24\nrsvp: 24\nrtt: 24\nrule: 24\nrule_folder: 24\nrun_circle: 24,20\nrunning_with_errors: 24,20\nrv_hookup: 24\nsafety_check: 24,20\nsafety_divider: 24\nsailing: 24,20\nsanitizer: 24\nsatellite: 24\nsatellite_alt: 24,20\nsave: 24\nsave_alt: 24\nsave_as: 24,20\nsaved_search: 24\nsavings: 24,20\nscale: 24,20\nscanner: 24\nscatter_plot: 24\nschedule: 24\nschedule_send: 24\nschema: 24,20\nschool: 24\nscience: 24,20\nscore: 24\nscoreboard: 24,20\nscreen_lock_landscape: 24\nscreen_lock_portrait: 24\nscreen_lock_rotation: 24\nscreen_rotation: 24\nscreen_rotation_alt: 24,20\nscreen_search_desktop: 24\nscreen_share: 24\nscreenshot: 24\nscreenshot_monitor: 24,20\nscuba_diving: 24,20\nsd: 24\nsd_card: 24\nsd_card_alert: 24\nsd_storage: 24\nsearch: 24\nsearch_off: 24,20\nsecurity: 24\nsecurity_update: 24\nsecurity_update_good: 24\nsecurity_update_warning: 24\nsegment: 24\nselect_all: 24\nself_improvement: 24,20\nsell: 24\nsend: 24\nsend_and_archive: 24,20\nsend_time_extension: 24,20\nsend_to_mobile: 24\nsensor_door: 24,20\nsensor_occupied: 24,20\nsensor_window: 24,20\nsensors: 24,20\nsensors_off: 24,20\nsentiment_dissatisfied: 24\nsentiment_neutral: 24\nsentiment_satisfied: 24\nsentiment_satisfied_alt: 24\nsentiment_very_dissatisfied: 24\nsentiment_very_satisfied: 24\nset_meal: 24\nsettings: 24\nsettings_accessibility: 24\nsettings_applications: 24\nsettings_backup_restore: 24\nsettings_bluetooth: 24\nsettings_brightness: 24\nsettings_cell: 24\nsettings_ethernet: 24\nsettings_input_antenna: 24\nsettings_input_component: 24\nsettings_input_composite: 24\nsettings_input_hdmi: 24\nsettings_input_svideo: 24\nsettings_overscan: 24\nsettings_phone: 24\nsettings_power: 24\nsettings_remote: 24\nsettings_suggest: 24\nsettings_system_daydream: 24\nsettings_voice: 24\nsevere_cold: 24,20\nshape_line: 24,20\nshare: 24\nshare_location: 24\nshelves: 24,20\nshield: 24\nshield_moon: 24,20\nshop: 24\nshop_2: 24,20\nshop_two: 24\nshopping_bag: 24\nshopping_basket: 24\nshopping_cart: 24\nshopping_cart_checkout: 24,20\nshort_text: 24\nshortcut: 24\nshow_chart: 24\nshower: 24\nshuffle: 24\nshuffle_on: 24\nshutter_speed: 24\nsick: 24\nsign_language: 24,20\nsignal_cellular_0_bar: 24\nsignal_cellular_4_bar: 24\nsignal_cellular_alt: 24\nsignal_cellular_alt_1_bar: 24,20\nsignal_cellular_alt_2_bar: 24,20\nsignal_cellular_connected_no_internet_0_bar: 24,20\nsignal_cellular_connected_no_internet_4_bar: 24,20\nsignal_cellular_no_sim: 24\nsignal_cellular_nodata: 24\nsignal_cellular_null: 24\nsignal_cellular_off: 24\nsignal_wifi_0_bar: 24\nsignal_wifi_4_bar: 24\nsignal_wifi_4_bar_lock: 24,20\nsignal_wifi_bad: 24\nsignal_wifi_connected_no_internet_4: 24\nsignal_wifi_off: 24\nsignal_wifi_statusbar_4_bar: 24\nsignal_wifi_statusbar_connected_no_internet_4: 24,20\nsignal_wifi_statusbar_null: 24\nsignpost: 24,20\nsim_card: 24\nsim_card_alert: 24\nsim_card_download: 24\nsingle_bed: 24,20\nsip: 24\nskateboarding: 24,20\nskip_next: 24\nskip_previous: 24\nsledding: 24,20\nslideshow: 24\nslow_motion_video: 24\nsmart_button: 24\nsmart_display: 24\nsmart_screen: 24\nsmart_toy: 24\nsmartphone: 24\nsmoke_free: 24\nsmoking_rooms: 24\nsms: 24\nsms_failed: 24\nsnippet_folder: 24\nsnooze: 24\nsnowboarding: 24,20\nsnowing: 24,20\nsnowmobile: 24,20\nsnowshoeing: 24,20\nsoap: 24\nsocial_distance: 24\nsolar_power: 24,20\nsort: 24\nsort_by_alpha: 24\nsos: 24,20\nsoup_kitchen: 24,20\nsource: 24\nsouth: 24\nsouth_america: 24,20\nsouth_east: 24\nsouth_west: 24\nspa: 24\nspace_bar: 24\nspace_dashboard: 24,20\nspatial_audio: 24,20\nspatial_audio_off: 24,20\nspatial_tracking: 24,20\nspeaker: 24\nspeaker_group: 24\nspeaker_notes: 24\nspeaker_notes_off: 24\nspeaker_phone: 24\nspeed: 24\nspellcheck: 24\nsplitscreen: 24\nspoke: 24,20\nsports: 24,20\nsports_bar: 24,20\nsports_baseball: 24,20\nsports_basketball: 24,20\nsports_cricket: 24,20\nsports_esports: 24,20\nsports_football: 24,20\nsports_golf: 24,20\nsports_gymnastics: 24,20\nsports_handball: 24,20\nsports_hockey: 24,20\nsports_kabaddi: 24,20\nsports_martial_arts: 24,20\nsports_mma: 24,20\nsports_motorsports: 24,20\nsports_rugby: 24,20\nsports_score: 24\nsports_soccer: 24,20\nsports_tennis: 24,20\nsports_volleyball: 24,20\nsquare: 24,20\nsquare_foot: 24,20\nssid_chart: 24,20\nstacked_bar_chart: 24,20\nstacked_line_chart: 24\nstadium: 24,20\nstairs: 24\nstar: 24\nstar_border: 24\nstar_border_purple500: 24\nstar_half: 24\nstar_outline: 24\nstar_purple500: 24\nstar_rate: 24,18\nstars: 24\nstart: 24,20\nstay_current_landscape: 24\nstay_current_portrait: 24\nstay_primary_landscape: 24\nstay_primary_portrait: 24\nsticky_note_2: 24\nstop: 24\nstop_circle: 24,20\nstop_screen_share: 24\nstorage: 24\nstore: 24\nstore_mall_directory: 24\nstorefront: 24\nstorm: 24\nstraight: 24,20\nstraighten: 24\nstream: 24\nstreetview: 24\nstrikethrough_s: 24\nstroller: 24\nstyle: 24\nsubdirectory_arrow_left: 24\nsubdirectory_arrow_right: 24\nsubject: 24\nsubscript: 24,20\nsubscriptions: 24\nsubtitles: 24\nsubtitles_off: 24,20\nsubway: 24\nsummarize: 24\nsunny: 24,20\nsunny_snowing: 24,20\nsuperscript: 24,20\nsupervised_user_circle: 24\nsupervisor_account: 24\nsupport: 24,20\nsupport_agent: 24,20\nsurfing: 24,20\nsurround_sound: 24\nswap_calls: 24\nswap_horiz: 24\nswap_horizontal_circle: 24\nswap_vert: 24\nswap_vertical_circle: 24\nswipe: 24,20\nswipe_down: 24,20\nswipe_down_alt: 24,20\nswipe_left: 24,20\nswipe_left_alt: 24,20\nswipe_right: 24,20\nswipe_right_alt: 24,20\nswipe_up: 24,20\nswipe_up_alt: 24,20\nswipe_vertical: 24,20\nswitch_access_shortcut: 24,20\nswitch_access_shortcut_add: 24,20\nswitch_account: 24\nswitch_camera: 24\nswitch_left: 24\nswitch_right: 24\nswitch_video: 24\nsynagogue: 24,20\nsync: 24\nsync_alt: 24,20\nsync_disabled: 24\nsync_lock: 24,20\nsync_problem: 24\nsystem_security_update: 24\nsystem_security_update_good: 24\nsystem_security_update_warning: 24\nsystem_update: 24\nsystem_update_alt: 24\ntab: 24\ntab_unselected: 24\ntable_bar: 24,20\ntable_chart: 24\ntable_restaurant: 24,20\ntable_rows: 24,20\ntable_view: 24\ntablet: 24\ntablet_android: 24\ntablet_mac: 24\ntag: 24\ntag_faces: 24\ntakeout_dining: 24,20\ntap_and_play: 24\ntapas: 24\ntask: 24\ntask_alt: 24\ntaxi_alert: 24\ntemple_buddhist: 24,20\ntemple_hindu: 24,20\nterminal: 24,20\nterrain: 24\ntext_decrease: 24,20\ntext_fields: 24\ntext_format: 24\ntext_increase: 24,20\ntext_rotate_up: 24\ntext_rotate_vertical: 24\ntext_rotation_angledown: 24\ntext_rotation_angleup: 24\ntext_rotation_down: 24\ntext_rotation_none: 24\ntext_snippet: 24\ntextsms: 24\ntexture: 24\ntheater_comedy: 24,20\ntheaters: 24\nthermostat: 24\nthermostat_auto: 24\nthumb_down: 24\nthumb_down_alt: 24\nthumb_down_off_alt: 24\nthumb_up: 24\nthumb_up_alt: 24\nthumb_up_off_alt: 24\nthumbs_up_down: 24\nthunderstorm: 24,20\ntime_to_leave: 24\ntimelapse: 24\ntimeline: 24\ntimer: 24,20\ntimer_10: 24\ntimer_10_select: 24\ntimer_3: 24\ntimer_3_select: 24\ntimer_off: 24,20\ntips_and_updates: 24,20\ntire_repair: 24,20\ntitle: 24\ntoc: 24\ntoday: 24\ntoggle_off: 24\ntoggle_on: 24\ntoken: 24,20\ntoll: 24\ntonality: 24\ntopic: 24\ntornado: 24,20\ntouch_app: 24\ntour: 24\ntoys: 24,20\ntrack_changes: 24\ntraffic: 24\ntrain: 24\ntram: 24\ntranscribe: 24,20\ntransfer_within_a_station: 24\ntransform: 24\ntransgender: 24,20\ntransit_enterexit: 24\ntranslate: 24\ntravel_explore: 24,20\ntrending_down: 24\ntrending_flat: 24\ntrending_up: 24\ntrip_origin: 24\ntrolley: 24,20\ntroubleshoot: 24,20\ntry: 24\ntsunami: 24,20\ntty: 24\ntune: 24\ntungsten: 24\nturn_left: 24,20\nturn_right: 24,20\nturn_sharp_left: 24,20\nturn_sharp_right: 24,20\nturn_slight_left: 24,20\nturn_slight_right: 24,20\nturned_in: 24\nturned_in_not: 24\ntv: 24\ntv_off: 24\ntwo_wheeler: 24,20\ntype_specimen: 24,20\nu_turn_left: 24,20\nu_turn_right: 24,20\numbrella: 24\nunarchive: 24\nundo: 24\nunfold_less: 24\nunfold_less_double: 24,20\nunfold_more: 24\nunfold_more_double: 24,20\nunpublished: 24\nunsubscribe: 24\nupcoming: 24\nupdate: 24\nupdate_disabled: 24,20\nupgrade: 24,20\nupload: 24\nupload_file: 24\nusb: 24\nusb_off: 24,20\nvaccines: 24,20\nvape_free: 24,20\nvaping_rooms: 24,20\nverified: 24,20\nverified_user: 24\nvertical_align_bottom: 24\nvertical_align_center: 24\nvertical_align_top: 24\nvertical_distribute: 24\nvertical_shades: 24,20\nvertical_shades_closed: 24,20\nvertical_split: 24\nvibration: 24\nvideo_call: 24\nvideo_camera_back: 24\nvideo_camera_front: 24\nvideo_chat: 24,20\nvideo_file: 24,20\nvideo_label: 24\nvideo_library: 24\nvideo_settings: 24,20\nvideo_stable: 24\nvideocam: 24\nvideocam_off: 24\nvideogame_asset: 24\nvideogame_asset_off: 24,20\nview_agenda: 24,20\nview_array: 24,20\nview_carousel: 24,20\nview_column: 24,20\nview_comfy: 24,20\nview_comfy_alt: 24,20\nview_compact: 24,20\nview_compact_alt: 24,20\nview_cozy: 24,20\nview_day: 24\nview_headline: 24\nview_in_ar: 24\nview_kanban: 24,20\nview_list: 24,20\nview_module: 24,20\nview_quilt: 24,20\nview_sidebar: 24,20\nview_stream: 24,20\nview_timeline: 24,20\nview_week: 24,20\nvignette: 24\nvilla: 24,20\nvisibility: 24\nvisibility_off: 24\nvoice_chat: 24\nvoice_over_off: 24\nvoicemail: 24\nvolcano: 24,20\nvolume_down: 24\nvolume_down_alt: 24,20\nvolume_mute: 24\nvolume_off: 24\nvolume_up: 24\nvolunteer_activism: 24,20\nvpn_key: 24\nvpn_key_off: 24,20\nvpn_lock: 24\nvrpano: 24\nwallet: 24,20\nwallpaper: 24\nwarehouse: 24,20\nwarning: 24\nwarning_amber: 24\nwash: 24\nwatch: 24\nwatch_later: 24\nwatch_off: 24,20\nwater: 24\nwater_damage: 24\nwater_drop: 24,20\nwaterfall_chart: 24\nwaves: 24\nwaving_hand: 24,20\nwb_auto: 24\nwb_cloudy: 24\nwb_incandescent: 24\nwb_iridescent: 24\nwb_shade: 24\nwb_sunny: 24\nwb_twighlight: 24\nwb_twilight: 24,20\nwc: 24\nweb: 24\nweb_asset: 24\nweb_asset_off: 24,20\nweb_stories: 24,20\nwebhook: 24,20\nweekend: 24\nwest: 24\nwhatsapp: 24,20\nwhatshot: 24\nwheelchair_pickup: 24\nwhere_to_vote: 24\nwidgets: 24\nwidth_full: 24,20\nwidth_normal: 24,20\nwidth_wide: 24,20\nwifi: 24\nwifi_1_bar: 24,20\nwifi_2_bar: 24,20\nwifi_calling: 24,20\nwifi_calling_3: 24\nwifi_channel: 24,20\nwifi_find: 24,20\nwifi_lock: 24,20\nwifi_off: 24\nwifi_password: 24,20\nwifi_protected_setup: 24,20\nwifi_tethering: 24\nwifi_tethering_error: 24,20\nwifi_tethering_error_rounded: 24\nwifi_tethering_off: 24\nwind_power: 24,20\nwindow: 24,20\nwine_bar: 24\nwoman: 24,20\nwoman_2: 24,20\nwork: 24\nwork_history: 24,20\nwork_off: 24\nwork_outline: 24\nworkspace_premium: 24,20\nworkspaces: 24,20\nworkspaces_filled: 24\nworkspaces_outline: 24\nwrap_text: 24\nwrong_location: 24,20\nwysiwyg: 24\nyard: 24\nyoutube_searched_for: 24\nzoom_in: 24\nzoom_in_map: 24,20\nzoom_out: 24\nzoom_out_map: 24\n"
  },
  {
    "path": "tests/test_misc/test_material_round_.txt",
    "content": "10k: 24\n10mp: 24\n11mp: 24\n123: 24,20\n12mp: 24\n13mp: 24\n14mp: 24\n15mp: 24\n16mp: 24\n17mp: 24\n18_up_rating: 24,20\n18mp: 24\n19mp: 24\n1k: 24\n1k_plus: 24\n1x_mobiledata: 24\n20mp: 24\n21mp: 24\n22mp: 24\n23mp: 24\n24mp: 24\n2k: 24\n2k_plus: 24\n2mp: 24\n30fps: 24\n30fps_select: 24\n360: 24\n3d_rotation: 24\n3g_mobiledata: 24\n3k: 24\n3k_plus: 24\n3mp: 24\n3p: 24\n4g_mobiledata: 24\n4g_plus_mobiledata: 24\n4k: 24\n4k_plus: 24\n4mp: 24\n5g: 24,20\n5k: 24\n5k_plus: 24\n5mp: 24\n60fps: 24\n60fps_select: 24\n6_ft_apart: 24\n6k: 24\n6k_plus: 24\n6mp: 24\n7k: 24\n7k_plus: 24\n7mp: 24\n8k: 24\n8k_plus: 24\n8mp: 24\n9k: 24\n9k_plus: 24\n9mp: 24\nabc: 24,20\nac_unit: 24\naccess_alarm: 24\naccess_alarms: 24\naccess_time: 24\naccess_time_filled: 24\naccessibility: 24\naccessibility_new: 24\naccessible: 24\naccessible_forward: 24\naccount_balance: 24\naccount_balance_wallet: 24\naccount_box: 24,20\naccount_circle: 24,20\naccount_tree: 24\nad_units: 24\nadb: 24\nadd: 24\nadd_a_photo: 24\nadd_alarm: 24\nadd_alert: 24\nadd_box: 24\nadd_business: 24,20\nadd_card: 24,20\nadd_chart: 24\nadd_circle: 24\nadd_circle_outline: 24\nadd_comment: 24\nadd_home: 24,20\nadd_home_work: 24,20\nadd_ic_call: 24\nadd_link: 24\nadd_location: 24\nadd_location_alt: 24\nadd_moderator: 24\nadd_photo_alternate: 24\nadd_reaction: 24\nadd_road: 24,20\nadd_shopping_cart: 24\nadd_task: 24\nadd_to_drive: 24,20\nadd_to_home_screen: 24\nadd_to_photos: 24\nadd_to_queue: 24\naddchart: 24\nadf_scanner: 24,20\nadjust: 24\nadmin_panel_settings: 24,20\nads_click: 24,20\nagriculture: 24,20\nair: 24\nairline_seat_flat: 24\nairline_seat_flat_angled: 24\nairline_seat_individual_suite: 24\nairline_seat_legroom_extra: 24\nairline_seat_legroom_normal: 24\nairline_seat_legroom_reduced: 24\nairline_seat_recline_extra: 24\nairline_seat_recline_normal: 24\nairline_stops: 24,20\nairlines: 24,20\nairplane_ticket: 24\nairplanemode_active: 24,20\nairplanemode_inactive: 24,20\nairplay: 24\nairport_shuttle: 24\nalarm: 24\nalarm_add: 24\nalarm_off: 24\nalarm_on: 24\nalbum: 24\nalign_horizontal_center: 24\nalign_horizontal_left: 24\nalign_horizontal_right: 24\nalign_vertical_bottom: 24\nalign_vertical_center: 24\nalign_vertical_top: 24\nall_inbox: 24\nall_inclusive: 24\nall_out: 24\nalt_route: 24,20\nalternate_email: 24\namp_stories: 24,20\nanalytics: 24\nanchor: 24\nandroid: 24,20\nanimation: 24\nannouncement: 24\naod: 24\napartment: 24,20\napi: 24\napp_blocking: 24\napp_registration: 24,20\napp_settings_alt: 24\napp_shortcut: 24,20\napproval: 24\napps: 24\napps_outage: 24,20\narchitecture: 24,20\narchive: 24\narea_chart: 24,20\narrow_back: 24\narrow_back_ios: 24\narrow_back_ios_new: 24,20\narrow_circle_down: 24,20\narrow_circle_left: 24,20\narrow_circle_right: 24,20\narrow_circle_up: 24,20\narrow_downward: 24\narrow_drop_down: 24\narrow_drop_down_circle: 24\narrow_drop_up: 24\narrow_forward: 24\narrow_forward_ios: 24,20\narrow_left: 24\narrow_outward: 24,20\narrow_right: 24\narrow_right_alt: 24\narrow_upward: 24\nart_track: 24\narticle: 24\naspect_ratio: 24\nassessment: 24\nassignment: 24\nassignment_ind: 24\nassignment_late: 24\nassignment_return: 24\nassignment_returned: 24\nassignment_turned_in: 24\nassist_walker: 24,20\nassistant: 24\nassistant_direction: 24\nassistant_photo: 24\nassured_workload: 24,20\natm: 24\nattach_email: 24,20\nattach_file: 24\nattach_money: 24\nattachment: 24\nattractions: 24,20\nattribution: 24\naudio_file: 24,20\naudiotrack: 24\nauto_awesome: 24\nauto_awesome_mosaic: 24\nauto_awesome_motion: 24\nauto_delete: 24,20\nauto_fix_high: 24\nauto_fix_normal: 24\nauto_fix_off: 24\nauto_graph: 24,20\nauto_mode: 24,20\nauto_stories: 24\nautofps_select: 24\nautorenew: 24\nav_timer: 24\nbaby_changing_station: 24\nback_hand: 24,20\nbackpack: 24\nbackspace: 24\nbackup: 24\nbackup_table: 24,20\nbadge: 24,20\nbakery_dining: 24,20\nbalance: 24,20\nbalcony: 24,20\nballot: 24\nbar_chart: 24,20\nbatch_prediction: 24,20\nbathroom: 24\nbathtub: 24,20\nbattery_0_bar: 24,20\nbattery_1_bar: 24,20\nbattery_2_bar: 24,20\nbattery_3_bar: 24,20\nbattery_4_bar: 24,20\nbattery_5_bar: 24,20\nbattery_6_bar: 24,20\nbattery_alert: 24\nbattery_charging_full: 24\nbattery_full: 24\nbattery_saver: 24\nbattery_std: 24\nbattery_unknown: 24\nbeach_access: 24\nbed: 24\nbedroom_baby: 24\nbedroom_child: 24\nbedroom_parent: 24\nbedtime: 24,20\nbedtime_off: 24,20\nbeenhere: 24\nbento: 24\nbike_scooter: 24,20\nbiotech: 24,20\nblender: 24\nblind: 24,20\nblinds: 24,20\nblinds_closed: 24,20\nblock: 24\nbloodtype: 24\nbluetooth: 24\nbluetooth_audio: 24\nbluetooth_connected: 24\nbluetooth_disabled: 24\nbluetooth_drive: 24\nbluetooth_searching: 24\nblur_circular: 24\nblur_linear: 24\nblur_off: 24\nblur_on: 24\nbolt: 24\nbook: 24\nbook_online: 24\nbookmark: 24\nbookmark_add: 24,20\nbookmark_added: 24\nbookmark_border: 24\nbookmark_remove: 24,20\nbookmarks: 24\nborder_all: 24\nborder_bottom: 24\nborder_clear: 24\nborder_color: 24\nborder_horizontal: 24\nborder_inner: 24\nborder_left: 24\nborder_outer: 24\nborder_right: 24\nborder_style: 24\nborder_top: 24\nborder_vertical: 24\nboy: 24,20\nbranding_watermark: 24\nbreakfast_dining: 24,20\nbrightness_1: 24\nbrightness_2: 24\nbrightness_3: 24\nbrightness_4: 24\nbrightness_5: 24\nbrightness_6: 24\nbrightness_7: 24\nbrightness_auto: 24\nbrightness_high: 24\nbrightness_low: 24\nbrightness_medium: 24\nbroadcast_on_home: 24,20\nbroadcast_on_personal: 24,20\nbroken_image: 24\nbrowse_gallery: 24,20\nbrowser_not_supported: 24,20\nbrowser_updated: 24,20\nbrunch_dining: 24,20\nbrush: 24\nbubble_chart: 24\nbug_report: 24\nbuild: 24\nbuild_circle: 24,20\nbungalow: 24,20\nburst_mode: 24\nbus_alert: 24\nbusiness: 24\nbusiness_center: 24\ncabin: 24,20\ncable: 24\ncached: 24\ncake: 24\ncalculate: 24,20\ncalendar_month: 24,20\ncalendar_today: 24\ncalendar_view_day: 24\ncalendar_view_month: 24\ncalendar_view_week: 24\ncall: 24\ncall_end: 24\ncall_made: 24\ncall_merge: 24\ncall_missed: 24\ncall_missed_outgoing: 24\ncall_received: 24\ncall_split: 24\ncall_to_action: 24\ncamera: 24\ncamera_alt: 24\ncamera_enhance: 24\ncamera_front: 24\ncamera_indoor: 24\ncamera_outdoor: 24\ncamera_rear: 24\ncamera_roll: 24\ncameraswitch: 24\ncampaign: 24\ncancel: 24\ncancel_presentation: 24\ncancel_schedule_send: 24,20\ncandlestick_chart: 24,20\ncar_crash: 24,20\ncar_rental: 24,20\ncar_repair: 24,20\ncard_giftcard: 24\ncard_membership: 24\ncard_travel: 24\ncarpenter: 24\ncases: 24\ncasino: 24\ncast: 24\ncast_connected: 24\ncast_for_education: 24\ncastle: 24,20\ncatching_pokemon: 24,20\ncategory: 24\ncelebration: 24,20\ncell_tower: 24,20\ncell_wifi: 24\ncenter_focus_strong: 24\ncenter_focus_weak: 24\nchair: 24\nchair_alt: 24\nchalet: 24,20\nchange_circle: 24,20\nchange_history: 24\ncharging_station: 24\nchat: 24\nchat_bubble: 24\nchat_bubble_outline: 24\ncheck: 24\ncheck_box: 24\ncheck_box_outline_blank: 24\ncheck_circle: 24\ncheck_circle_outline: 24\nchecklist: 24,20\nchecklist_rtl: 24,20\ncheckroom: 24\nchevron_left: 24\nchevron_right: 24\nchild_care: 24\nchild_friendly: 24\nchrome_reader_mode: 24\nchurch: 24,20\ncircle: 24\ncircle_notifications: 24\nclass: 24\nclean_hands: 24\ncleaning_services: 24,20\nclear: 24\nclear_all: 24\nclose: 24\nclose_fullscreen: 24\nclosed_caption: 24\nclosed_caption_disabled: 24\nclosed_caption_off: 24\ncloud: 24\ncloud_circle: 24\ncloud_done: 24\ncloud_download: 24\ncloud_off: 24\ncloud_queue: 24\ncloud_sync: 24,20\ncloud_upload: 24\nco2: 24,20\nco_present: 24,20\ncode: 24\ncode_off: 24,20\ncoffee: 24\ncoffee_maker: 24\ncollections: 24\ncollections_bookmark: 24\ncolor_lens: 24\ncolorize: 24\ncomment: 24\ncomment_bank: 24,20\ncomments_disabled: 24,20\ncommit: 24,20\ncommute: 24\ncompare: 24\ncompare_arrows: 24\ncompass_calibration: 24\ncompost: 24,20\ncompress: 24\ncomputer: 24\nconfirmation_number: 24\nconnect_without_contact: 24\nconnected_tv: 24\nconnecting_airports: 24,20\nconstruction: 24,20\ncontact_emergency: 24,20\ncontact_mail: 24\ncontact_page: 24\ncontact_phone: 24\ncontact_support: 24\ncontactless: 24,20\ncontacts: 24\ncontent_copy: 24\ncontent_cut: 24\ncontent_paste: 24\ncontent_paste_go: 24,20\ncontent_paste_off: 24,20\ncontent_paste_search: 24,20\ncontrast: 24,20\ncontrol_camera: 24\ncontrol_point: 24\ncontrol_point_duplicate: 24\ncookie: 24,20\ncopy_all: 24,20\ncopyright: 24\ncoronavirus: 24\ncorporate_fare: 24\ncottage: 24,20\ncountertops: 24\ncreate: 24\ncreate_new_folder: 24\ncredit_card: 24\ncredit_card_off: 24,20\ncredit_score: 24\ncrib: 24,20\ncrisis_alert: 24,20\ncrop: 24\ncrop_16_9: 24,20\ncrop_3_2: 24,20\ncrop_5_4: 24,20\ncrop_7_5: 24,20\ncrop_din: 24\ncrop_free: 24\ncrop_landscape: 24\ncrop_original: 24\ncrop_portrait: 24\ncrop_rotate: 24\ncrop_square: 24\ncruelty_free: 24,20\ncss: 24,20\ncurrency_bitcoin: 24,20\ncurrency_exchange: 24,20\ncurrency_franc: 24,20\ncurrency_lira: 24,20\ncurrency_pound: 24,20\ncurrency_ruble: 24,20\ncurrency_rupee: 24,20\ncurrency_yen: 24,20\ncurrency_yuan: 24,20\ncurtains: 24,20\ncurtains_closed: 24,20\ncyclone: 24,20\ndangerous: 24,20\ndark_mode: 24,20\ndashboard: 24\ndashboard_customize: 24\ndata_array: 24,20\ndata_exploration: 24,20\ndata_object: 24,20\ndata_saver_off: 24\ndata_saver_on: 24\ndata_thresholding: 24,20\ndata_usage: 24\ndataset: 24,20\ndataset_linked: 24,20\ndate_range: 24\ndeblur: 24,20\ndeck: 24,20\ndehaze: 24\ndelete: 24\ndelete_forever: 24\ndelete_outline: 24\ndelete_sweep: 24\ndelivery_dining: 24,20\ndensity_large: 24,20\ndensity_medium: 24,20\ndensity_small: 24,20\ndeparture_board: 24\ndescription: 24\ndeselect: 24,20\ndesign_services: 24,20\ndesk: 24,20\ndesktop_access_disabled: 24\ndesktop_mac: 24\ndesktop_windows: 24\ndetails: 24\ndeveloper_board: 24\ndeveloper_board_off: 24,20\ndeveloper_mode: 24\ndevice_hub: 24\ndevice_thermostat: 24\ndevice_unknown: 24\ndevices: 24\ndevices_fold: 24,20\ndevices_other: 24\ndialer_sip: 24\ndialpad: 24\ndiamond: 24,20\ndifference: 24,20\ndining: 24\ndinner_dining: 24,20\ndirections: 24\ndirections_bike: 24\ndirections_boat: 24\ndirections_boat_filled: 24\ndirections_bus: 24\ndirections_bus_filled: 24\ndirections_car: 24\ndirections_car_filled: 24\ndirections_off: 24\ndirections_railway: 24\ndirections_railway_filled: 24\ndirections_run: 24\ndirections_subway: 24\ndirections_subway_filled: 24\ndirections_transit: 24\ndirections_transit_filled: 24\ndirections_walk: 24\ndirty_lens: 24\ndisabled_by_default: 24\ndisabled_visible: 24,20\ndisc_full: 24\ndiscount: 24,20\ndisplay_settings: 24,20\ndiversity_1: 24,20\ndiversity_2: 24,20\ndiversity_3: 24,20\ndns: 24\ndo_disturb: 24\ndo_disturb_alt: 24\ndo_disturb_off: 24\ndo_disturb_on: 24\ndo_not_disturb: 24\ndo_not_disturb_alt: 24\ndo_not_disturb_off: 24\ndo_not_disturb_on: 24\ndo_not_disturb_on_total_silence: 24\ndo_not_step: 24\ndo_not_touch: 24\ndock: 24\ndocument_scanner: 24,20\ndomain: 24\ndomain_add: 24,20\ndomain_disabled: 24\ndomain_verification: 24,20\ndone: 24\ndone_all: 24\ndone_outline: 24\ndonut_large: 24\ndonut_small: 24\ndoor_back: 24\ndoor_front: 24\ndoor_sliding: 24\ndoorbell: 24\ndouble_arrow: 24,20\ndownhill_skiing: 24,20\ndownload: 24\ndownload_done: 24\ndownload_for_offline: 24\ndownloading: 24\ndrafts: 24\ndrag_handle: 24\ndrag_indicator: 24\ndraw: 24,20\ndrive_eta: 24\ndrive_file_move: 24\ndrive_file_move_rtl: 24,20\ndrive_file_rename_outline: 24\ndrive_folder_upload: 24\ndry: 24\ndry_cleaning: 24,20\nduo: 24\ndvr: 24\ndynamic_feed: 24,20\ndynamic_form: 24\ne_mobiledata: 24\nearbuds: 24\nearbuds_battery: 24\neast: 24\neco: 24,20\nedgesensor_high: 24\nedgesensor_low: 24\nedit: 24\nedit_attributes: 24\nedit_calendar: 24,20\nedit_location: 24\nedit_location_alt: 24,20\nedit_note: 24,20\nedit_notifications: 24,20\nedit_off: 24\nedit_road: 24,20\negg: 24,20\negg_alt: 24,20\neject: 24\nelderly: 24\nelderly_woman: 24,20\nelectric_bike: 24,20\nelectric_bolt: 24,20\nelectric_car: 24,20\nelectric_meter: 24,20\nelectric_moped: 24,20\nelectric_rickshaw: 24,20\nelectric_scooter: 24,20\nelectrical_services: 24,20\nelevator: 24\nemail: 24\nemergency: 24,20\nemergency_recording: 24,20\nemergency_share: 24,20\nemoji_emotions: 24,20\nemoji_events: 24,20\nemoji_flags: 24,20\nemoji_food_beverage: 24,20\nemoji_nature: 24,20\nemoji_objects: 24,20\nemoji_people: 24,20\nemoji_symbols: 24,20\nemoji_transportation: 24,20\nenergy_savings_leaf: 24,20\nengineering: 24,20\nenhanced_encryption: 24\nequalizer: 24\nerror: 24\nerror_outline: 24\nescalator: 24\nescalator_warning: 24\neuro: 24,20\neuro_symbol: 24\nev_station: 24\nevent: 24\nevent_available: 24\nevent_busy: 24\nevent_note: 24\nevent_repeat: 24,20\nevent_seat: 24\nexit_to_app: 24\nexpand: 24\nexpand_circle_down: 24,20\nexpand_less: 24\nexpand_more: 24\nexplicit: 24\nexplore: 24\nexplore_off: 24\nexposure: 24\nexposure_neg_1: 24\nexposure_neg_2: 24\nexposure_plus_1: 24\nexposure_plus_2: 24\nexposure_zero: 24\nextension: 24\nextension_off: 24,20\nface: 24\nface_2: 24,20\nface_3: 24,20\nface_4: 24,20\nface_5: 24,20\nface_6: 24,20\nface_retouching_natural: 24\nface_retouching_off: 24\nface_unlock: 24\nfacebook: 24\nfact_check: 24,20\nfactory: 24,20\nfamily_restroom: 24\nfast_forward: 24\nfast_rewind: 24\nfastfood: 24\nfavorite: 24\nfavorite_border: 24\nfax: 24,20\nfeatured_play_list: 24\nfeatured_video: 24\nfeed: 24\nfeedback: 24\nfemale: 24,20\nfence: 24\nfestival: 24,20\nfiber_dvr: 24\nfiber_manual_record: 24\nfiber_new: 24\nfiber_pin: 24\nfiber_smart_record: 24\nfile_copy: 24\nfile_download: 24\nfile_download_done: 24\nfile_download_off: 24,20\nfile_open: 24,20\nfile_present: 24\nfile_upload: 24\nfilter: 24\nfilter_1: 24\nfilter_2: 24\nfilter_3: 24\nfilter_4: 24\nfilter_5: 24\nfilter_6: 24\nfilter_7: 24\nfilter_8: 24\nfilter_9: 24\nfilter_9_plus: 24\nfilter_alt: 24\nfilter_alt_off: 24,20\nfilter_b_and_w: 24\nfilter_center_focus: 24\nfilter_drama: 24\nfilter_frames: 24\nfilter_hdr: 24\nfilter_list: 24\nfilter_list_off: 24,20\nfilter_none: 24\nfilter_tilt_shift: 24\nfilter_vintage: 24\nfind_in_page: 24\nfind_replace: 24\nfingerprint: 24\nfire_extinguisher: 24\nfire_hydrant_alt: 24,20\nfire_truck: 24,20\nfireplace: 24,20\nfirst_page: 24\nfit_screen: 24\nfitbit: 24,20\nfitness_center: 24\nflag: 24\nflag_circle: 24,20\nflaky: 24,20\nflare: 24\nflash_auto: 24\nflash_off: 24\nflash_on: 24\nflashlight_off: 24\nflashlight_on: 24\nflatware: 24\nflight: 24\nflight_class: 24,20\nflight_land: 24\nflight_takeoff: 24\nflip: 24\nflip_camera_android: 24,20\nflip_camera_ios: 24,20\nflip_to_back: 24\nflip_to_front: 24\nflood: 24,20\nflourescent: 24\nfluorescent: 24\nflutter_dash: 24,20\nfmd_bad: 24\nfmd_good: 24\nfolder: 24\nfolder_copy: 24,20\nfolder_delete: 24,20\nfolder_off: 24,20\nfolder_open: 24\nfolder_shared: 24\nfolder_special: 24\nfolder_zip: 24,20\nfollow_the_signs: 24\nfont_download: 24\nfont_download_off: 24,20\nfood_bank: 24\nforest: 24,20\nfork_left: 24,20\nfork_right: 24,20\nformat_align_center: 24\nformat_align_justify: 24\nformat_align_left: 24\nformat_align_right: 24\nformat_bold: 24\nformat_clear: 24\nformat_color_fill: 24,20\nformat_color_reset: 24\nformat_color_text: 24,20\nformat_indent_decrease: 24\nformat_indent_increase: 24\nformat_italic: 24\nformat_line_spacing: 24\nformat_list_bulleted: 24\nformat_list_numbered: 24\nformat_list_numbered_rtl: 24\nformat_overline: 24,20\nformat_paint: 24\nformat_quote: 24\nformat_shapes: 24\nformat_size: 24\nformat_strikethrough: 24\nformat_textdirection_l_to_r: 24\nformat_textdirection_r_to_l: 24\nformat_underlined: 24\nfort: 24,20\nforum: 24\nforward: 24\nforward_10: 24\nforward_30: 24\nforward_5: 24\nforward_to_inbox: 24,20\nfoundation: 24\nfree_breakfast: 24\nfree_cancellation: 24,20\nfront_hand: 24,20\nfullscreen: 24\nfullscreen_exit: 24\nfunctions: 24\ng_mobiledata: 24\ng_translate: 24\ngamepad: 24\ngames: 24\ngarage: 24\ngas_meter: 24,20\ngavel: 24\ngenerating_tokens: 24,20\ngesture: 24\nget_app: 24\ngif: 24\ngif_box: 24,20\ngirl: 24,20\ngite: 24,20\ngolf_course: 24\ngpp_bad: 24\ngpp_good: 24\ngpp_maybe: 24\ngps_fixed: 24\ngps_not_fixed: 24\ngps_off: 24\ngrade: 24\ngradient: 24\ngrading: 24,20\ngrain: 24\ngraphic_eq: 24\ngrass: 24\ngrid_3x3: 24\ngrid_4x4: 24\ngrid_goldenratio: 24\ngrid_off: 24\ngrid_on: 24\ngrid_view: 24\ngroup: 24\ngroup_add: 24,20\ngroup_off: 24,20\ngroup_remove: 24,20\ngroup_work: 24\ngroups: 24\ngroups_2: 24,20\ngroups_3: 24,20\nh_mobiledata: 24\nh_plus_mobiledata: 24\nhail: 24\nhandshake: 24,20\nhandyman: 24,20\nhardware: 24,20\nhd: 24\nhdr_auto: 24\nhdr_auto_select: 24\nhdr_enhanced_select: 24\nhdr_off: 24\nhdr_off_select: 24\nhdr_on: 24\nhdr_on_select: 24\nhdr_plus: 24\nhdr_strong: 24\nhdr_weak: 24\nheadphones: 24\nheadphones_battery: 24\nheadset: 24\nheadset_mic: 24\nheadset_off: 24\nhealing: 24\nhealth_and_safety: 24\nhearing: 24\nhearing_disabled: 24,20\nheart_broken: 24,20\nheat_pump: 24,20\nheight: 24,20\nhelp: 24\nhelp_center: 24\nhelp_outline: 24\nhevc: 24\nhexagon: 24,20\nhide_image: 24\nhide_source: 24\nhigh_quality: 24\nhighlight: 24\nhighlight_alt: 24\nhighlight_off: 24\nhiking: 24,20\nhistory: 24\nhistory_edu: 24,20\nhistory_toggle_off: 24,20\nhive: 24,20\nhls: 24,20\nhls_off: 24,20\nholiday_village: 24,20\nhome: 24\nhome_max: 24\nhome_mini: 24\nhome_repair_service: 24,20\nhome_work: 24,20\nhorizontal_distribute: 24\nhorizontal_rule: 24,20\nhorizontal_split: 24\nhot_tub: 24\nhotel: 24\nhotel_class: 24,20\nhourglass_bottom: 24,20\nhourglass_disabled: 24,20\nhourglass_empty: 24\nhourglass_full: 24\nhourglass_top: 24,20\nhouse: 24,20\nhouse_siding: 24\nhouseboat: 24,20\nhow_to_reg: 24\nhow_to_vote: 24\nhtml: 24,20\nhttp: 24\nhttps: 24\nhub: 24,20\nhvac: 24,20\nice_skating: 24,20\nicecream: 24,20\nimage: 24\nimage_aspect_ratio: 24\nimage_not_supported: 24,20\nimage_search: 24\nimagesearch_roller: 24\nimport_contacts: 24\nimport_export: 24\nimportant_devices: 24\ninbox: 24\nincomplete_circle: 24,20\nindeterminate_check_box: 24\ninfo: 24\ninfo_outline: 24\ninput: 24\ninsert_chart: 24\ninsert_chart_outlined: 24\ninsert_comment: 24\ninsert_drive_file: 24\ninsert_emoticon: 24\ninsert_invitation: 24\ninsert_link: 24\ninsert_page_break: 24,20\ninsert_photo: 24\ninsights: 24,20\ninstall_desktop: 24,20\ninstall_mobile: 24,20\nintegration_instructions: 24\ninterests: 24,20\ninterpreter_mode: 24,20\ninventory: 24\ninventory_2: 24,20\ninvert_colors: 24,20\ninvert_colors_off: 24,20\nios_share: 24\niron: 24,20\niso: 24\njavascript: 24,20\njoin_full: 24,20\njoin_inner: 24,20\njoin_left: 24,20\njoin_right: 24,20\nkayaking: 24,20\nkebab_dining: 24,20\nkey: 24,20\nkey_off: 24,20\nkeyboard: 24\nkeyboard_alt: 24\nkeyboard_arrow_down: 24\nkeyboard_arrow_left: 24\nkeyboard_arrow_right: 24\nkeyboard_arrow_up: 24\nkeyboard_backspace: 24\nkeyboard_capslock: 24\nkeyboard_command_key: 24,20\nkeyboard_control_key: 24,20\nkeyboard_double_arrow_down: 24,20\nkeyboard_double_arrow_left: 24,20\nkeyboard_double_arrow_right: 24,20\nkeyboard_double_arrow_up: 24,20\nkeyboard_hide: 24\nkeyboard_option_key: 24,20\nkeyboard_return: 24\nkeyboard_tab: 24\nkeyboard_voice: 24\nking_bed: 24,20\nkitchen: 24\nkitesurfing: 24,20\nlabel: 24\nlabel_important: 24\nlabel_important_outline: 24\nlabel_off: 24\nlabel_outline: 24\nlan: 24,20\nlandscape: 24\nlandslide: 24,20\nlanguage: 24\nlaptop: 24\nlaptop_chromebook: 24\nlaptop_mac: 24\nlaptop_windows: 24\nlast_page: 24\nlaunch: 24\nlayers: 24\nlayers_clear: 24\nleaderboard: 24\nleak_add: 24\nleak_remove: 24\nlegend_toggle: 24,20\nlens: 24\nlens_blur: 24\nlibrary_add: 24\nlibrary_add_check: 24,20\nlibrary_books: 24\nlibrary_music: 24\nlight: 24\nlight_mode: 24,20\nlightbulb: 24\nlightbulb_circle: 24,20\nlightbulb_outline: 24\nline_axis: 24,20\nline_style: 24\nline_weight: 24\nlinear_scale: 24\nlink: 24\nlink_off: 24\nlinked_camera: 24\nliquor: 24,20\nlist: 24\nlist_alt: 24\nlive_help: 24\nlive_tv: 24\nliving: 24\nlocal_activity: 24\nlocal_airport: 24,20\nlocal_atm: 24\nlocal_bar: 24\nlocal_cafe: 24\nlocal_car_wash: 24\nlocal_convenience_store: 24\nlocal_dining: 24\nlocal_drink: 24\nlocal_fire_department: 24,20\nlocal_florist: 24\nlocal_gas_station: 24\nlocal_grocery_store: 24\nlocal_hospital: 24\nlocal_hotel: 24\nlocal_laundry_service: 24\nlocal_library: 24\nlocal_mall: 24\nlocal_movies: 24\nlocal_offer: 24\nlocal_parking: 24\nlocal_pharmacy: 24\nlocal_phone: 24\nlocal_pizza: 24\nlocal_play: 24\nlocal_police: 24\nlocal_post_office: 24\nlocal_printshop: 24\nlocal_see: 24\nlocal_shipping: 24\nlocal_taxi: 24\nlocation_city: 24\nlocation_disabled: 24\nlocation_off: 24\nlocation_on: 24\nlocation_searching: 24\nlock: 24\nlock_clock: 24,20\nlock_open: 24\nlock_outline: 24\nlock_person: 24,20\nlock_reset: 24,20\nlogin: 24,20\nlogo_dev: 24,20\nlogout: 24\nlooks: 24\nlooks_3: 24\nlooks_4: 24\nlooks_5: 24\nlooks_6: 24\nlooks_one: 24\nlooks_two: 24\nloop: 24\nloupe: 24\nlow_priority: 24\nloyalty: 24\nlte_mobiledata: 24\nlte_plus_mobiledata: 24\nluggage: 24\nlunch_dining: 24,20\nlyrics: 24,20\nmacro_off: 24,20\nmail: 24\nmail_lock: 24,20\nmail_outline: 24\nmale: 24,20\nman: 24,20\nman_2: 24,20\nman_3: 24,20\nman_4: 24,20\nmanage_accounts: 24\nmanage_history: 24,20\nmanage_search: 24\nmap: 24\nmaps_home_work: 24\nmaps_ugc: 24\nmargin: 24\nmark_as_unread: 24,20\nmark_chat_read: 24,20\nmark_chat_unread: 24,20\nmark_email_read: 24,20\nmark_email_unread: 24,20\nmark_unread_chat_alt: 24,20\nmarkunread: 24\nmarkunread_mailbox: 24\nmasks: 24\nmaximize: 24\nmedia_bluetooth_off: 24\nmedia_bluetooth_on: 24\nmediation: 24\nmedical_information: 24,20\nmedical_services: 24,20\nmedication: 24\nmedication_liquid: 24,20\nmeeting_room: 24\nmemory: 24\nmenu: 24\nmenu_book: 24\nmenu_open: 24\nmerge: 24,20\nmerge_type: 24\nmessage: 24\nmic: 24\nmic_external_off: 24\nmic_external_on: 24\nmic_none: 24\nmic_off: 24\nmicrowave: 24\nmilitary_tech: 24,20\nminimize: 24\nminor_crash: 24,20\nmiscellaneous_services: 24,20\nmissed_video_call: 24\nmms: 24\nmobile_friendly: 24\nmobile_off: 24\nmobile_screen_share: 24\nmobiledata_off: 24\nmode: 24\nmode_comment: 24\nmode_edit: 24\nmode_edit_outline: 24,20\nmode_fan_off: 24,20\nmode_night: 24\nmode_of_travel: 24,20\nmode_standby: 24\nmodel_training: 24,20\nmonetization_on: 24\nmoney: 24\nmoney_off: 24\nmoney_off_csred: 24\nmonitor: 24\nmonitor_heart: 24,20\nmonitor_weight: 24\nmonochrome_photos: 24\nmood: 24\nmood_bad: 24\nmoped: 24,20\nmore: 24\nmore_horiz: 24\nmore_time: 24,20\nmore_vert: 24\nmosque: 24,20\nmotion_photos_auto: 24\nmotion_photos_off: 24\nmotion_photos_on: 24,20\nmotion_photos_pause: 24,20\nmotion_photos_paused: 24\nmouse: 24\nmove_down: 24,20\nmove_to_inbox: 24\nmove_up: 24,20\nmovie: 24\nmovie_creation: 24\nmovie_filter: 24\nmoving: 24,20\nmp: 24\nmultiline_chart: 24\nmultiple_stop: 24\nmuseum: 24,20\nmusic_note: 24\nmusic_off: 24\nmusic_video: 24\nmy_location: 24\nnat: 24,20\nnature: 24\nnature_people: 24\nnavigate_before: 24\nnavigate_next: 24\nnavigation: 24\nnear_me: 24\nnear_me_disabled: 24\nnearby_error: 24\nnearby_off: 24\nnest_cam_wired_stand: 24,20\nnetwork_cell: 24\nnetwork_check: 24\nnetwork_locked: 24\nnetwork_ping: 24,20\nnetwork_wifi: 24\nnetwork_wifi_1_bar: 24,20\nnetwork_wifi_2_bar: 24,20\nnetwork_wifi_3_bar: 24,20\nnew_label: 24,20\nnew_releases: 24\nnewspaper: 24,20\nnext_plan: 24,20\nnext_week: 24\nnfc: 24\nnight_shelter: 24\nnightlife: 24,20\nnightlight: 24\nnightlight_round: 24\nnights_stay: 24,20\nno_accounts: 24\nno_adult_content: 24,20\nno_backpack: 24\nno_cell: 24\nno_crash: 24,20\nno_drinks: 24\nno_encryption: 24\nno_encryption_gmailerrorred: 24\nno_flash: 24\nno_food: 24\nno_luggage: 24\nno_meals: 24\nno_meeting_room: 24\nno_photography: 24\nno_sim: 24\nno_stroller: 24\nno_transfer: 24\nnoise_aware: 24,20\nnoise_control_off: 24,20\nnordic_walking: 24,20\nnorth: 24\nnorth_east: 24\nnorth_west: 24\nnot_accessible: 24,20\nnot_interested: 24\nnot_listed_location: 24\nnot_started: 24,20\nnote: 24\nnote_add: 24\nnote_alt: 24\nnotes: 24\nnotification_add: 24,20\nnotification_important: 24\nnotifications: 24\nnotifications_active: 24\nnotifications_none: 24\nnotifications_off: 24\nnotifications_paused: 24\nnumbers: 24,20\noffline_bolt: 24\noffline_pin: 24\noffline_share: 24\noil_barrel: 24,20\non_device_training: 24,20\nondemand_video: 24\nonline_prediction: 24,20\nopacity: 24\nopen_in_browser: 24\nopen_in_full: 24\nopen_in_new: 24\nopen_in_new_off: 24,20\nopen_with: 24\nother_houses: 24,20\noutbond: 24\noutbound: 24\noutbox: 24,20\noutdoor_grill: 24,20\noutlet: 24\noutlined_flag: 24\noutput: 24,20\npadding: 24\npages: 24\npageview: 24\npaid: 24\npalette: 24,20\npan_tool: 24\npan_tool_alt: 24,20\npanorama: 24\npanorama_fish_eye: 24\npanorama_horizontal: 24\npanorama_horizontal_select: 24\npanorama_photosphere: 24\npanorama_photosphere_select: 24\npanorama_vertical: 24\npanorama_vertical_select: 24\npanorama_wide_angle: 24\npanorama_wide_angle_select: 24\nparagliding: 24,20\npark: 24,20\nparty_mode: 24\npassword: 24\npattern: 24\npause: 24\npause_circle: 24,20\npause_circle_filled: 24\npause_circle_outline: 24\npause_presentation: 24\npayment: 24\npayments: 24\npedal_bike: 24,20\npending: 24,20\npending_actions: 24\npentagon: 24,20\npeople: 24\npeople_alt: 24,20\npeople_outline: 24\npercent: 24,20\nperm_camera_mic: 24\nperm_contact_calendar: 24\nperm_data_setting: 24\nperm_device_information: 24\nperm_identity: 24\nperm_media: 24\nperm_phone_msg: 24\nperm_scan_wifi: 24\nperson: 24\nperson_2: 24,20\nperson_3: 24,20\nperson_4: 24,20\nperson_add: 24\nperson_add_alt: 24,20\nperson_add_alt_1: 24,20\nperson_add_disabled: 24\nperson_off: 24,20\nperson_outline: 24\nperson_pin: 24\nperson_pin_circle: 24\nperson_remove: 24,20\nperson_remove_alt_1: 24,20\nperson_search: 24,20\npersonal_injury: 24,20\npersonal_video: 24\npest_control: 24,20\npest_control_rodent: 24,20\npets: 24\nphishing: 24,20\nphone: 24\nphone_android: 24\nphone_bluetooth_speaker: 24\nphone_callback: 24\nphone_disabled: 24\nphone_enabled: 24\nphone_forwarded: 24\nphone_in_talk: 24\nphone_iphone: 24\nphone_locked: 24,20\nphone_missed: 24\nphone_paused: 24\nphonelink: 24\nphonelink_erase: 24\nphonelink_lock: 24\nphonelink_off: 24\nphonelink_ring: 24\nphonelink_setup: 24\nphoto: 24\nphoto_album: 24,20\nphoto_camera: 24\nphoto_camera_back: 24\nphoto_camera_front: 24\nphoto_filter: 24\nphoto_library: 24\nphoto_size_select_actual: 24\nphoto_size_select_large: 24\nphoto_size_select_small: 24\nphp: 24,20\npiano: 24,20\npiano_off: 24,20\npicture_as_pdf: 24\npicture_in_picture: 24\npicture_in_picture_alt: 24\npie_chart: 24\npie_chart_outline: 24\npin: 24\npin_drop: 24\npin_end: 24,20\npin_invoke: 24,20\npinch: 24,20\npivot_table_chart: 24\npix: 24,20\nplace: 24\nplagiarism: 24,20\nplay_arrow: 24\nplay_circle: 24,20\nplay_circle_filled: 24\nplay_circle_outline: 24\nplay_disabled: 24\nplay_for_work: 24\nplay_lesson: 24\nplaylist_add: 24,20\nplaylist_add_check: 24,20\nplaylist_add_check_circle: 24,20\nplaylist_add_circle: 24,20\nplaylist_play: 24,20\nplaylist_remove: 24,20\nplumbing: 24,20\nplus_one: 24\npodcasts: 24\npoint_of_sale: 24,20\npolicy: 24,20\npoll: 24\npolyline: 24,20\npolymer: 24\npool: 24\nportable_wifi_off: 24\nportrait: 24\npost_add: 24,20\npower: 24\npower_input: 24\npower_off: 24\npower_settings_new: 24\nprecision_manufacturing: 24,20\npregnant_woman: 24\npresent_to_all: 24\npreview: 24\nprice_change: 24\nprice_check: 24\nprint: 24\nprint_disabled: 24\npriority_high: 24\nprivacy_tip: 24,20\nprivate_connectivity: 24,20\nproduction_quantity_limits: 24\npropane: 24,20\npropane_tank: 24,20\npsychology: 24,20\npsychology_alt: 24,20\npublic: 24\npublic_off: 24\npublish: 24\npublished_with_changes: 24\npunch_clock: 24,20\npush_pin: 24,20\nqr_code: 24,20\nqr_code_2: 24\nqr_code_scanner: 24\nquery_builder: 24\nquery_stats: 24,20\nquestion_answer: 24\nquestion_mark: 24,20\nqueue: 24\nqueue_music: 24,20\nqueue_play_next: 24\nquickreply: 24,20\nquiz: 24\nr_mobiledata: 24\nradar: 24\nradio: 24\nradio_button_checked: 24\nradio_button_unchecked: 24\nrailway_alert: 24\nramen_dining: 24,20\nramp_left: 24,20\nramp_right: 24,20\nrate_review: 24\nraw_off: 24\nraw_on: 24\nread_more: 24,20\nreal_estate_agent: 24,20\nreceipt: 24\nreceipt_long: 24\nrecent_actors: 24\nrecommend: 24\nrecord_voice_over: 24\nrectangle: 24,20\nrecycling: 24,20\nredeem: 24\nredo: 24\nreduce_capacity: 24\nrefresh: 24\nremember_me: 24\nremove: 24\nremove_circle: 24\nremove_circle_outline: 24\nremove_done: 24\nremove_from_queue: 24\nremove_moderator: 24\nremove_red_eye: 24\nremove_road: 24,20\nremove_shopping_cart: 24\nreorder: 24\nrepartition: 24,20\nrepeat: 24\nrepeat_on: 24\nrepeat_one: 24\nrepeat_one_on: 24\nreplay: 24\nreplay_10: 24\nreplay_30: 24\nreplay_5: 24\nreplay_circle_filled: 24\nreply: 24\nreply_all: 24\nreport: 24\nreport_gmailerrorred: 24\nreport_off: 24\nreport_problem: 24\nrequest_page: 24\nrequest_quote: 24\nreset_tv: 24\nrestart_alt: 24\nrestaurant: 24\nrestaurant_menu: 24\nrestore: 24\nrestore_from_trash: 24\nrestore_page: 24\nreviews: 24\nrice_bowl: 24\nring_volume: 24\nrocket: 24,20\nrocket_launch: 24,20\nroller_shades: 24,20\nroller_shades_closed: 24,20\nroller_skating: 24,20\nroofing: 24\nroom: 24\nroom_preferences: 24\nroom_service: 24\nrotate_90_degrees_ccw: 24\nrotate_90_degrees_cw: 24,20\nrotate_left: 24\nrotate_right: 24\nroundabout_left: 24,20\nroundabout_right: 24,20\nrounded_corner: 24\nroute: 24,20\nrouter: 24\nrowing: 24\nrss_feed: 24\nrsvp: 24\nrtt: 24\nrule: 24\nrule_folder: 24\nrun_circle: 24,20\nrunning_with_errors: 24,20\nrv_hookup: 24\nsafety_check: 24,20\nsafety_divider: 24\nsailing: 24,20\nsanitizer: 24\nsatellite: 24\nsatellite_alt: 24,20\nsave: 24\nsave_alt: 24\nsave_as: 24,20\nsaved_search: 24\nsavings: 24,20\nscale: 24,20\nscanner: 24\nscatter_plot: 24\nschedule: 24\nschedule_send: 24\nschema: 24,20\nschool: 24\nscience: 24,20\nscore: 24\nscoreboard: 24,20\nscreen_lock_landscape: 24\nscreen_lock_portrait: 24\nscreen_lock_rotation: 24\nscreen_rotation: 24\nscreen_rotation_alt: 24,20\nscreen_search_desktop: 24\nscreen_share: 24\nscreenshot: 24\nscreenshot_monitor: 24,20\nscuba_diving: 24,20\nsd: 24\nsd_card: 24\nsd_card_alert: 24\nsd_storage: 24\nsearch: 24\nsearch_off: 24,20\nsecurity: 24\nsecurity_update: 24\nsecurity_update_good: 24\nsecurity_update_warning: 24\nsegment: 24\nselect_all: 24\nself_improvement: 24,20\nsell: 24\nsend: 24\nsend_and_archive: 24,20\nsend_time_extension: 24,20\nsend_to_mobile: 24\nsensor_door: 24,20\nsensor_occupied: 24,20\nsensor_window: 24,20\nsensors: 24,20\nsensors_off: 24,20\nsentiment_dissatisfied: 24\nsentiment_neutral: 24\nsentiment_satisfied: 24\nsentiment_satisfied_alt: 24\nsentiment_very_dissatisfied: 24\nsentiment_very_satisfied: 24\nset_meal: 24\nsettings: 24\nsettings_accessibility: 24\nsettings_applications: 24\nsettings_backup_restore: 24\nsettings_bluetooth: 24\nsettings_brightness: 24\nsettings_cell: 24\nsettings_ethernet: 24\nsettings_input_antenna: 24\nsettings_input_component: 24\nsettings_input_composite: 24\nsettings_input_hdmi: 24\nsettings_input_svideo: 24\nsettings_overscan: 24\nsettings_phone: 24\nsettings_power: 24\nsettings_remote: 24\nsettings_suggest: 24\nsettings_system_daydream: 24\nsettings_voice: 24\nsevere_cold: 24,20\nshape_line: 24,20\nshare: 24\nshare_location: 24\nshield: 24\nshield_moon: 24,20\nshop: 24\nshop_2: 24,20\nshop_two: 24\nshopping_bag: 24\nshopping_basket: 24\nshopping_cart: 24\nshopping_cart_checkout: 24,20\nshort_text: 24\nshortcut: 24\nshow_chart: 24\nshower: 24\nshuffle: 24\nshuffle_on: 24\nshutter_speed: 24\nsick: 24\nsign_language: 24,20\nsignal_cellular_0_bar: 24\nsignal_cellular_4_bar: 24\nsignal_cellular_alt: 24\nsignal_cellular_alt_1_bar: 24,20\nsignal_cellular_alt_2_bar: 24,20\nsignal_cellular_connected_no_internet_0_bar: 24,20\nsignal_cellular_connected_no_internet_4_bar: 24,20\nsignal_cellular_no_sim: 24\nsignal_cellular_nodata: 24\nsignal_cellular_null: 24\nsignal_cellular_off: 24\nsignal_wifi_0_bar: 24\nsignal_wifi_4_bar: 24\nsignal_wifi_4_bar_lock: 24,20\nsignal_wifi_bad: 24\nsignal_wifi_connected_no_internet_4: 24\nsignal_wifi_off: 24\nsignal_wifi_statusbar_4_bar: 24\nsignal_wifi_statusbar_connected_no_internet_4: 24,20\nsignal_wifi_statusbar_null: 24\nsignpost: 24,20\nsim_card: 24\nsim_card_alert: 24\nsim_card_download: 24\nsingle_bed: 24,20\nsip: 24\nskateboarding: 24,20\nskip_next: 24\nskip_previous: 24\nsledding: 24,20\nslideshow: 24\nslow_motion_video: 24\nsmart_button: 24\nsmart_display: 24\nsmart_screen: 24\nsmart_toy: 24\nsmartphone: 24\nsmoke_free: 24\nsmoking_rooms: 24\nsms: 24\nsms_failed: 24\nsnippet_folder: 24\nsnooze: 24\nsnowboarding: 24,20\nsnowmobile: 24,20\nsnowshoeing: 24,20\nsoap: 24\nsocial_distance: 24\nsolar_power: 24,20\nsort: 24\nsort_by_alpha: 24\nsos: 24,20\nsoup_kitchen: 24,20\nsource: 24\nsouth: 24\nsouth_america: 24,20\nsouth_east: 24\nsouth_west: 24\nspa: 24\nspace_bar: 24\nspace_dashboard: 24,20\nspatial_audio: 24,20\nspatial_audio_off: 24,20\nspatial_tracking: 24,20\nspeaker: 24\nspeaker_group: 24\nspeaker_notes: 24\nspeaker_notes_off: 24\nspeaker_phone: 24\nspeed: 24\nspellcheck: 24\nsplitscreen: 24\nspoke: 24,20\nsports: 24,20\nsports_bar: 24,20\nsports_baseball: 24,20\nsports_basketball: 24,20\nsports_cricket: 24,20\nsports_esports: 24,20\nsports_football: 24,20\nsports_golf: 24,20\nsports_gymnastics: 24,20\nsports_handball: 24,20\nsports_hockey: 24,20\nsports_kabaddi: 24,20\nsports_martial_arts: 24,20\nsports_mma: 24,20\nsports_motorsports: 24,20\nsports_rugby: 24,20\nsports_score: 24\nsports_soccer: 24,20\nsports_tennis: 24,20\nsports_volleyball: 24,20\nsquare: 24,20\nsquare_foot: 24,20\nssid_chart: 24,20\nstacked_bar_chart: 24,20\nstacked_line_chart: 24\nstadium: 24,20\nstairs: 24\nstar: 24\nstar_border: 24\nstar_border_purple500: 24\nstar_half: 24\nstar_outline: 24\nstar_purple500: 24\nstar_rate: 24,18\nstars: 24\nstart: 24,20\nstay_current_landscape: 24\nstay_current_portrait: 24\nstay_primary_landscape: 24\nstay_primary_portrait: 24\nsticky_note_2: 24\nstop: 24\nstop_circle: 24,20\nstop_screen_share: 24\nstorage: 24\nstore: 24\nstore_mall_directory: 24\nstorefront: 24\nstorm: 24\nstraight: 24,20\nstraighten: 24\nstream: 24\nstreetview: 24\nstrikethrough_s: 24\nstroller: 24\nstyle: 24\nsubdirectory_arrow_left: 24\nsubdirectory_arrow_right: 24\nsubject: 24\nsubscript: 24,20\nsubscriptions: 24\nsubtitles: 24\nsubtitles_off: 24,20\nsubway: 24\nsummarize: 24\nsuperscript: 24,20\nsupervised_user_circle: 24\nsupervisor_account: 24\nsupport: 24,20\nsupport_agent: 24,20\nsurfing: 24,20\nsurround_sound: 24\nswap_calls: 24\nswap_horiz: 24\nswap_horizontal_circle: 24\nswap_vert: 24\nswap_vertical_circle: 24\nswipe: 24,20\nswipe_down: 24,20\nswipe_down_alt: 24,20\nswipe_left: 24,20\nswipe_left_alt: 24,20\nswipe_right: 24,20\nswipe_right_alt: 24,20\nswipe_up: 24,20\nswipe_up_alt: 24,20\nswipe_vertical: 24,20\nswitch_access_shortcut: 24,20\nswitch_access_shortcut_add: 24,20\nswitch_account: 24\nswitch_camera: 24\nswitch_left: 24\nswitch_right: 24\nswitch_video: 24\nsynagogue: 24,20\nsync: 24\nsync_alt: 24,20\nsync_disabled: 24\nsync_lock: 24,20\nsync_problem: 24\nsystem_security_update: 24\nsystem_security_update_good: 24\nsystem_security_update_warning: 24\nsystem_update: 24\nsystem_update_alt: 24\ntab: 24\ntab_unselected: 24\ntable_bar: 24,20\ntable_chart: 24\ntable_restaurant: 24,20\ntable_rows: 24,20\ntable_view: 24\ntablet: 24\ntablet_android: 24\ntablet_mac: 24\ntag: 24\ntag_faces: 24\ntakeout_dining: 24,20\ntap_and_play: 24\ntapas: 24\ntask: 24\ntask_alt: 24\ntaxi_alert: 24\ntemple_buddhist: 24,20\ntemple_hindu: 24,20\nterminal: 24,20\nterrain: 24\ntext_decrease: 24,20\ntext_fields: 24\ntext_format: 24\ntext_increase: 24,20\ntext_rotate_up: 24\ntext_rotate_vertical: 24\ntext_rotation_angledown: 24\ntext_rotation_angleup: 24\ntext_rotation_down: 24\ntext_rotation_none: 24\ntext_snippet: 24\ntextsms: 24\ntexture: 24\ntheater_comedy: 24,20\ntheaters: 24\nthermostat: 24\nthermostat_auto: 24\nthumb_down: 24\nthumb_down_alt: 24\nthumb_down_off_alt: 24\nthumb_up: 24\nthumb_up_alt: 24\nthumb_up_off_alt: 24\nthumbs_up_down: 24\nthunderstorm: 24,20\ntime_to_leave: 24\ntimelapse: 24\ntimeline: 24\ntimer: 24,20\ntimer_10: 24\ntimer_10_select: 24\ntimer_3: 24\ntimer_3_select: 24\ntimer_off: 24,20\ntips_and_updates: 24,20\ntire_repair: 24,20\ntitle: 24\ntoc: 24\ntoday: 24\ntoggle_off: 24\ntoggle_on: 24\ntoken: 24,20\ntoll: 24\ntonality: 24\ntopic: 24\ntornado: 24,20\ntouch_app: 24\ntour: 24\ntoys: 24,20\ntrack_changes: 24\ntraffic: 24\ntrain: 24\ntram: 24\ntranscribe: 24,20\ntransfer_within_a_station: 24\ntransform: 24\ntransgender: 24,20\ntransit_enterexit: 24\ntranslate: 24\ntravel_explore: 24,20\ntrending_down: 24\ntrending_flat: 24\ntrending_up: 24\ntrip_origin: 24\ntroubleshoot: 24,20\ntry: 24\ntsunami: 24,20\ntty: 24\ntune: 24\ntungsten: 24\nturn_left: 24,20\nturn_right: 24,20\nturn_sharp_left: 24,20\nturn_sharp_right: 24,20\nturn_slight_left: 24,20\nturn_slight_right: 24,20\nturned_in: 24\nturned_in_not: 24\ntv: 24\ntv_off: 24\ntwo_wheeler: 24,20\ntype_specimen: 24,20\nu_turn_left: 24,20\nu_turn_right: 24,20\numbrella: 24\nunarchive: 24\nundo: 24\nunfold_less: 24\nunfold_less_double: 24,20\nunfold_more: 24\nunfold_more_double: 24,20\nunpublished: 24\nunsubscribe: 24\nupcoming: 24\nupdate: 24\nupdate_disabled: 24,20\nupgrade: 24,20\nupload: 24\nupload_file: 24\nusb: 24\nusb_off: 24,20\nvaccines: 24,20\nvape_free: 24,20\nvaping_rooms: 24,20\nverified: 24,20\nverified_user: 24\nvertical_align_bottom: 24\nvertical_align_center: 24\nvertical_align_top: 24\nvertical_distribute: 24\nvertical_shades: 24,20\nvertical_shades_closed: 24,20\nvertical_split: 24\nvibration: 24\nvideo_call: 24\nvideo_camera_back: 24\nvideo_camera_front: 24\nvideo_chat: 24,20\nvideo_file: 24,20\nvideo_label: 24\nvideo_library: 24\nvideo_settings: 24,20\nvideo_stable: 24\nvideocam: 24\nvideocam_off: 24\nvideogame_asset: 24\nvideogame_asset_off: 24,20\nview_agenda: 24,20\nview_array: 24,20\nview_carousel: 24,20\nview_column: 24,20\nview_comfy: 24,20\nview_comfy_alt: 24,20\nview_compact: 24,20\nview_compact_alt: 24,20\nview_cozy: 24,20\nview_day: 24\nview_headline: 24\nview_in_ar: 24\nview_kanban: 24,20\nview_list: 24,20\nview_module: 24,20\nview_quilt: 24,20\nview_sidebar: 24,20\nview_stream: 24,20\nview_timeline: 24,20\nview_week: 24,20\nvignette: 24\nvilla: 24,20\nvisibility: 24\nvisibility_off: 24\nvoice_chat: 24\nvoice_over_off: 24\nvoicemail: 24\nvolcano: 24,20\nvolume_down: 24\nvolume_mute: 24\nvolume_off: 24\nvolume_up: 24\nvolunteer_activism: 24,20\nvpn_key: 24\nvpn_key_off: 24,20\nvpn_lock: 24\nvrpano: 24\nwallet: 24,20\nwallpaper: 24\nwarehouse: 24,20\nwarning: 24\nwarning_amber: 24\nwash: 24\nwatch: 24\nwatch_later: 24\nwatch_off: 24,20\nwater: 24\nwater_damage: 24\nwater_drop: 24,20\nwaterfall_chart: 24\nwaves: 24\nwaving_hand: 24,20\nwb_auto: 24\nwb_cloudy: 24\nwb_incandescent: 24\nwb_iridescent: 24\nwb_shade: 24\nwb_sunny: 24\nwb_twilight: 24,20\nwc: 24\nweb: 24\nweb_asset: 24\nweb_asset_off: 24,20\nweb_stories: 24,20\nwebhook: 24,20\nweekend: 24\nwest: 24\nwhatsapp: 24,20\nwhatshot: 24\nwheelchair_pickup: 24\nwhere_to_vote: 24\nwidgets: 24\nwidth_full: 24,20\nwidth_normal: 24,20\nwidth_wide: 24,20\nwifi: 24\nwifi_1_bar: 24,20\nwifi_2_bar: 24,20\nwifi_calling: 24,20\nwifi_calling_3: 24\nwifi_channel: 24,20\nwifi_find: 24,20\nwifi_lock: 24,20\nwifi_off: 24\nwifi_password: 24,20\nwifi_protected_setup: 24,20\nwifi_tethering: 24\nwifi_tethering_error: 24,20\nwifi_tethering_error_rounded: 24\nwifi_tethering_off: 24\nwind_power: 24,20\nwindow: 24,20\nwine_bar: 24\nwoman: 24,20\nwoman_2: 24,20\nwork: 24\nwork_history: 24,20\nwork_off: 24\nwork_outline: 24\nworkspace_premium: 24,20\nworkspaces: 24,20\nwrap_text: 24\nwrong_location: 24,20\nwysiwyg: 24\nyard: 24\nyoutube_searched_for: 24\nzoom_in: 24\nzoom_in_map: 24,20\nzoom_out: 24\nzoom_out_map: 24\n"
  },
  {
    "path": "tests/test_misc/test_material_sharp_.txt",
    "content": "10k: 24\n10mp: 24\n11mp: 24\n123: 24,20\n12mp: 24\n13mp: 24\n14mp: 24\n15mp: 24\n16mp: 24\n17mp: 24\n18_up_rating: 24,20\n18mp: 24\n19mp: 24\n1k: 24\n1k_plus: 24\n1x_mobiledata: 24\n20mp: 24\n21mp: 24\n22mp: 24\n23mp: 24\n24mp: 24\n2k: 24\n2k_plus: 24\n2mp: 24\n30fps: 24\n30fps_select: 24\n360: 24\n3d_rotation: 24\n3g_mobiledata: 24\n3k: 24\n3k_plus: 24\n3mp: 24\n3p: 24\n4g_mobiledata: 24\n4g_plus_mobiledata: 24\n4k: 24\n4k_plus: 24\n4mp: 24\n5g: 24,20\n5k: 24\n5k_plus: 24\n5mp: 24\n60fps: 24\n60fps_select: 24\n6_ft_apart: 24\n6k: 24\n6k_plus: 24\n6mp: 24\n7k: 24\n7k_plus: 24\n7mp: 24\n8k: 24\n8k_plus: 24\n8mp: 24\n9k: 24\n9k_plus: 24\n9mp: 24\nabc: 24,20\nac_unit: 24\naccess_alarm: 24\naccess_alarms: 24\naccess_time: 24\naccess_time_filled: 24\naccessibility: 24\naccessibility_new: 24\naccessible: 24\naccessible_forward: 24\naccount_balance: 24\naccount_balance_wallet: 24\naccount_box: 24,20\naccount_circle: 24,20\naccount_tree: 24\nad_units: 24\nadb: 24\nadd: 24\nadd_a_photo: 24\nadd_alarm: 24\nadd_alert: 24\nadd_box: 24\nadd_business: 24,20\nadd_card: 24,20\nadd_chart: 24\nadd_circle: 24\nadd_circle_outline: 24\nadd_comment: 24\nadd_home: 24,20\nadd_home_work: 24,20\nadd_ic_call: 24\nadd_link: 24\nadd_location: 24\nadd_location_alt: 24\nadd_moderator: 24\nadd_photo_alternate: 24\nadd_reaction: 24\nadd_road: 24,20\nadd_shopping_cart: 24\nadd_task: 24\nadd_to_drive: 24,20\nadd_to_home_screen: 24\nadd_to_photos: 24\nadd_to_queue: 24\naddchart: 24\nadf_scanner: 24,20\nadjust: 24\nadmin_panel_settings: 24,20\nads_click: 24,20\nagriculture: 24,20\nair: 24\nairline_seat_flat: 24\nairline_seat_flat_angled: 24\nairline_seat_individual_suite: 24\nairline_seat_legroom_extra: 24\nairline_seat_legroom_normal: 24\nairline_seat_legroom_reduced: 24\nairline_seat_recline_extra: 24\nairline_seat_recline_normal: 24\nairline_stops: 24,20\nairlines: 24,20\nairplane_ticket: 24\nairplanemode_active: 24,20\nairplanemode_inactive: 24,20\nairplay: 24\nairport_shuttle: 24\nalarm: 24\nalarm_add: 24\nalarm_off: 24\nalarm_on: 24\nalbum: 24\nalign_horizontal_center: 24\nalign_horizontal_left: 24\nalign_horizontal_right: 24\nalign_vertical_bottom: 24\nalign_vertical_center: 24\nalign_vertical_top: 24\nall_inbox: 24\nall_inclusive: 24\nall_out: 24\nalt_route: 24,20\nalternate_email: 24\namp_stories: 24,20\nanalytics: 24\nanchor: 24\nandroid: 24,20\nanimation: 24\nannouncement: 24\naod: 24\napartment: 24,20\napi: 24\napp_blocking: 24\napp_registration: 24,20\napp_settings_alt: 24\napp_shortcut: 24,20\napproval: 24\napps: 24\napps_outage: 24,20\narchitecture: 24,20\narchive: 24\narea_chart: 24,20\narrow_back: 24\narrow_back_ios: 24\narrow_back_ios_new: 24,20\narrow_circle_down: 24,20\narrow_circle_left: 24,20\narrow_circle_right: 24,20\narrow_circle_up: 24,20\narrow_downward: 24\narrow_drop_down: 24\narrow_drop_down_circle: 24\narrow_drop_up: 24\narrow_forward: 24\narrow_forward_ios: 24,20\narrow_left: 24\narrow_outward: 24,20\narrow_right: 24\narrow_right_alt: 24\narrow_upward: 24\nart_track: 24\narticle: 24\naspect_ratio: 24\nassessment: 24\nassignment: 24\nassignment_ind: 24\nassignment_late: 24\nassignment_return: 24\nassignment_returned: 24\nassignment_turned_in: 24\nassist_walker: 24,20\nassistant: 24\nassistant_direction: 24\nassistant_photo: 24\nassured_workload: 24,20\natm: 24\nattach_email: 24,20\nattach_file: 24\nattach_money: 24\nattachment: 24\nattractions: 24,20\nattribution: 24\naudio_file: 24,20\naudiotrack: 24\nauto_awesome: 24\nauto_awesome_mosaic: 24\nauto_awesome_motion: 24\nauto_delete: 24,20\nauto_fix_high: 24\nauto_fix_normal: 24\nauto_fix_off: 24\nauto_graph: 24,20\nauto_mode: 24,20\nauto_stories: 24\nautofps_select: 24\nautorenew: 24\nav_timer: 24\nbaby_changing_station: 24\nback_hand: 24,20\nbackpack: 24\nbackspace: 24\nbackup: 24\nbackup_table: 24,20\nbadge: 24,20\nbakery_dining: 24,20\nbalance: 24,20\nbalcony: 24,20\nballot: 24\nbar_chart: 24,20\nbatch_prediction: 24,20\nbathroom: 24\nbathtub: 24,20\nbattery_0_bar: 24,20\nbattery_1_bar: 24,20\nbattery_2_bar: 24,20\nbattery_3_bar: 24,20\nbattery_4_bar: 24,20\nbattery_5_bar: 24,20\nbattery_6_bar: 24,20\nbattery_alert: 24\nbattery_charging_full: 24\nbattery_full: 24\nbattery_saver: 24\nbattery_std: 24\nbattery_unknown: 24\nbeach_access: 24\nbed: 24\nbedroom_baby: 24\nbedroom_child: 24\nbedroom_parent: 24\nbedtime: 24,20\nbedtime_off: 24,20\nbeenhere: 24\nbento: 24\nbike_scooter: 24,20\nbiotech: 24,20\nblender: 24\nblind: 24,20\nblinds: 24,20\nblinds_closed: 24,20\nblock: 24\nbloodtype: 24\nbluetooth: 24\nbluetooth_audio: 24\nbluetooth_connected: 24\nbluetooth_disabled: 24\nbluetooth_drive: 24\nbluetooth_searching: 24\nblur_circular: 24\nblur_linear: 24\nblur_off: 24\nblur_on: 24\nbolt: 24\nbook: 24\nbook_online: 24\nbookmark: 24\nbookmark_add: 24,20\nbookmark_added: 24\nbookmark_border: 24\nbookmark_remove: 24,20\nbookmarks: 24\nborder_all: 24\nborder_bottom: 24\nborder_clear: 24\nborder_color: 24\nborder_horizontal: 24\nborder_inner: 24\nborder_left: 24\nborder_outer: 24\nborder_right: 24\nborder_style: 24\nborder_top: 24\nborder_vertical: 24\nboy: 24,20\nbranding_watermark: 24\nbreakfast_dining: 24,20\nbrightness_1: 24\nbrightness_2: 24\nbrightness_3: 24\nbrightness_4: 24\nbrightness_5: 24\nbrightness_6: 24\nbrightness_7: 24\nbrightness_auto: 24\nbrightness_high: 24\nbrightness_low: 24\nbrightness_medium: 24\nbroadcast_on_home: 24,20\nbroadcast_on_personal: 24,20\nbroken_image: 24\nbrowse_gallery: 24,20\nbrowser_not_supported: 24,20\nbrowser_updated: 24,20\nbrunch_dining: 24,20\nbrush: 24\nbubble_chart: 24\nbug_report: 24\nbuild: 24\nbuild_circle: 24,20\nbungalow: 24,20\nburst_mode: 24\nbus_alert: 24\nbusiness: 24\nbusiness_center: 24\ncabin: 24,20\ncable: 24\ncached: 24\ncake: 24\ncalculate: 24,20\ncalendar_month: 24,20\ncalendar_today: 24\ncalendar_view_day: 24\ncalendar_view_month: 24\ncalendar_view_week: 24\ncall: 24\ncall_end: 24\ncall_made: 24\ncall_merge: 24\ncall_missed: 24\ncall_missed_outgoing: 24\ncall_received: 24\ncall_split: 24\ncall_to_action: 24\ncamera: 24\ncamera_alt: 24\ncamera_enhance: 24\ncamera_front: 24\ncamera_indoor: 24\ncamera_outdoor: 24\ncamera_rear: 24\ncamera_roll: 24\ncameraswitch: 24\ncampaign: 24\ncancel: 24\ncancel_presentation: 24\ncancel_schedule_send: 24,20\ncandlestick_chart: 24,20\ncar_crash: 24,20\ncar_rental: 24,20\ncar_repair: 24,20\ncard_giftcard: 24\ncard_membership: 24\ncard_travel: 24\ncarpenter: 24\ncases: 24\ncasino: 24\ncast: 24\ncast_connected: 24\ncast_for_education: 24\ncastle: 24,20\ncatching_pokemon: 24,20\ncategory: 24\ncelebration: 24,20\ncell_tower: 24,20\ncell_wifi: 24\ncenter_focus_strong: 24\ncenter_focus_weak: 24\nchair: 24\nchair_alt: 24\nchalet: 24,20\nchange_circle: 24,20\nchange_history: 24\ncharging_station: 24\nchat: 24\nchat_bubble: 24\nchat_bubble_outline: 24\ncheck: 24\ncheck_box: 24\ncheck_box_outline_blank: 24\ncheck_circle: 24\ncheck_circle_outline: 24\nchecklist: 24,20\nchecklist_rtl: 24,20\ncheckroom: 24\nchevron_left: 24\nchevron_right: 24\nchild_care: 24\nchild_friendly: 24\nchrome_reader_mode: 24\nchurch: 24,20\ncircle: 24\ncircle_notifications: 24\nclass: 24\nclean_hands: 24\ncleaning_services: 24,20\nclear: 24\nclear_all: 24\nclose: 24\nclose_fullscreen: 24\nclosed_caption: 24\nclosed_caption_disabled: 24\nclosed_caption_off: 24\ncloud: 24\ncloud_circle: 24\ncloud_done: 24\ncloud_download: 24\ncloud_off: 24\ncloud_queue: 24\ncloud_sync: 24,20\ncloud_upload: 24\nco2: 24,20\nco_present: 24,20\ncode: 24\ncode_off: 24,20\ncoffee: 24\ncoffee_maker: 24\ncollections: 24\ncollections_bookmark: 24\ncolor_lens: 24\ncolorize: 24\ncomment: 24\ncomment_bank: 24,20\ncomments_disabled: 24,20\ncommit: 24,20\ncommute: 24\ncompare: 24\ncompare_arrows: 24\ncompass_calibration: 24\ncompost: 24,20\ncompress: 24\ncomputer: 24\nconfirmation_number: 24\nconnect_without_contact: 24\nconnected_tv: 24\nconnecting_airports: 24,20\nconstruction: 24,20\ncontact_emergency: 24,20\ncontact_mail: 24\ncontact_page: 24\ncontact_phone: 24\ncontact_support: 24\ncontactless: 24,20\ncontacts: 24\ncontent_copy: 24\ncontent_cut: 24\ncontent_paste: 24\ncontent_paste_go: 24,20\ncontent_paste_off: 24,20\ncontent_paste_search: 24,20\ncontrast: 24,20\ncontrol_camera: 24\ncontrol_point: 24\ncontrol_point_duplicate: 24\ncookie: 24,20\ncopy_all: 24,20\ncopyright: 24\ncoronavirus: 24\ncorporate_fare: 24\ncottage: 24,20\ncountertops: 24\ncreate: 24\ncreate_new_folder: 24\ncredit_card: 24\ncredit_card_off: 24,20\ncredit_score: 24\ncrib: 24,20\ncrisis_alert: 24,20\ncrop: 24\ncrop_16_9: 24,20\ncrop_3_2: 24,20\ncrop_5_4: 24,20\ncrop_7_5: 24,20\ncrop_din: 24\ncrop_free: 24\ncrop_landscape: 24\ncrop_original: 24\ncrop_portrait: 24\ncrop_rotate: 24\ncrop_square: 24\ncruelty_free: 24,20\ncss: 24,20\ncurrency_bitcoin: 24,20\ncurrency_exchange: 24,20\ncurrency_franc: 24,20\ncurrency_lira: 24,20\ncurrency_pound: 24,20\ncurrency_ruble: 24,20\ncurrency_rupee: 24,20\ncurrency_yen: 24,20\ncurrency_yuan: 24,20\ncurtains: 24,20\ncurtains_closed: 24,20\ncyclone: 24,20\ndangerous: 24,20\ndark_mode: 24,20\ndashboard: 24\ndashboard_customize: 24\ndata_array: 24,20\ndata_exploration: 24,20\ndata_object: 24,20\ndata_saver_off: 24\ndata_saver_on: 24\ndata_thresholding: 24,20\ndata_usage: 24\ndataset: 24,20\ndataset_linked: 24,20\ndate_range: 24\ndeblur: 24,20\ndeck: 24,20\ndehaze: 24\ndelete: 24\ndelete_forever: 24\ndelete_outline: 24\ndelete_sweep: 24\ndelivery_dining: 24,20\ndensity_large: 24,20\ndensity_medium: 24,20\ndensity_small: 24,20\ndeparture_board: 24\ndescription: 24\ndeselect: 24,20\ndesign_services: 24,20\ndesk: 24,20\ndesktop_access_disabled: 24\ndesktop_mac: 24\ndesktop_windows: 24\ndetails: 24\ndeveloper_board: 24\ndeveloper_board_off: 24,20\ndeveloper_mode: 24\ndevice_hub: 24\ndevice_thermostat: 24\ndevice_unknown: 24\ndevices: 24\ndevices_fold: 24,20\ndevices_other: 24\ndialer_sip: 24\ndialpad: 24\ndiamond: 24,20\ndifference: 24,20\ndining: 24\ndinner_dining: 24,20\ndirections: 24\ndirections_bike: 24\ndirections_boat: 24\ndirections_boat_filled: 24\ndirections_bus: 24\ndirections_bus_filled: 24\ndirections_car: 24\ndirections_car_filled: 24\ndirections_off: 24\ndirections_railway: 24\ndirections_railway_filled: 24\ndirections_run: 24\ndirections_subway: 24\ndirections_subway_filled: 24\ndirections_transit: 24\ndirections_transit_filled: 24\ndirections_walk: 24\ndirty_lens: 24\ndisabled_by_default: 24\ndisabled_visible: 24,20\ndisc_full: 24\ndiscount: 24,20\ndisplay_settings: 24,20\ndiversity_1: 24,20\ndiversity_2: 24,20\ndiversity_3: 24,20\ndns: 24\ndo_disturb: 24\ndo_disturb_alt: 24\ndo_disturb_off: 24\ndo_disturb_on: 24\ndo_not_disturb: 24\ndo_not_disturb_alt: 24\ndo_not_disturb_off: 24\ndo_not_disturb_on: 24\ndo_not_disturb_on_total_silence: 24\ndo_not_step: 24\ndo_not_touch: 24\ndock: 24\ndocument_scanner: 24,20\ndomain: 24\ndomain_add: 24,20\ndomain_disabled: 24\ndomain_verification: 24,20\ndone: 24\ndone_all: 24\ndone_outline: 24\ndonut_large: 24\ndonut_small: 24\ndoor_back: 24\ndoor_front: 24\ndoor_sliding: 24\ndoorbell: 24\ndouble_arrow: 24,20\ndownhill_skiing: 24,20\ndownload: 24\ndownload_done: 24\ndownload_for_offline: 24\ndownloading: 24\ndrafts: 24\ndrag_handle: 24\ndrag_indicator: 24\ndraw: 24,20\ndrive_eta: 24\ndrive_file_move: 24\ndrive_file_move_rtl: 24,20\ndrive_file_rename_outline: 24\ndrive_folder_upload: 24\ndry: 24\ndry_cleaning: 24,20\nduo: 24\ndvr: 24\ndynamic_feed: 24,20\ndynamic_form: 24\ne_mobiledata: 24\nearbuds: 24\nearbuds_battery: 24\neast: 24\neco: 24,20\nedgesensor_high: 24\nedgesensor_low: 24\nedit: 24\nedit_attributes: 24\nedit_calendar: 24,20\nedit_location: 24\nedit_location_alt: 24,20\nedit_note: 24,20\nedit_notifications: 24,20\nedit_off: 24\nedit_road: 24,20\negg: 24,20\negg_alt: 24,20\neject: 24\nelderly: 24\nelderly_woman: 24,20\nelectric_bike: 24,20\nelectric_bolt: 24,20\nelectric_car: 24,20\nelectric_meter: 24,20\nelectric_moped: 24,20\nelectric_rickshaw: 24,20\nelectric_scooter: 24,20\nelectrical_services: 24,20\nelevator: 24\nemail: 24\nemergency: 24,20\nemergency_recording: 24,20\nemergency_share: 24,20\nemoji_emotions: 24,20\nemoji_events: 24,20\nemoji_flags: 24,20\nemoji_food_beverage: 24,20\nemoji_nature: 24,20\nemoji_objects: 24,20\nemoji_people: 24,20\nemoji_symbols: 24,20\nemoji_transportation: 24,20\nenergy_savings_leaf: 24,20\nengineering: 24,20\nenhanced_encryption: 24\nequalizer: 24\nerror: 24\nerror_outline: 24\nescalator: 24\nescalator_warning: 24\neuro: 24,20\neuro_symbol: 24\nev_station: 24\nevent: 24\nevent_available: 24\nevent_busy: 24\nevent_note: 24\nevent_repeat: 24,20\nevent_seat: 24\nexit_to_app: 24\nexpand: 24\nexpand_circle_down: 24,20\nexpand_less: 24\nexpand_more: 24\nexplicit: 24\nexplore: 24\nexplore_off: 24\nexposure: 24\nexposure_neg_1: 24\nexposure_neg_2: 24\nexposure_plus_1: 24\nexposure_plus_2: 24\nexposure_zero: 24\nextension: 24\nextension_off: 24,20\nface: 24\nface_2: 24,20\nface_3: 24,20\nface_4: 24,20\nface_5: 24,20\nface_6: 24,20\nface_retouching_natural: 24\nface_retouching_off: 24\nface_unlock: 24\nfacebook: 24\nfact_check: 24,20\nfactory: 24,20\nfamily_restroom: 24\nfast_forward: 24\nfast_rewind: 24\nfastfood: 24\nfavorite: 24\nfavorite_border: 24\nfax: 24,20\nfeatured_play_list: 24\nfeatured_video: 24\nfeed: 24\nfeedback: 24\nfemale: 24,20\nfence: 24\nfestival: 24,20\nfiber_dvr: 24\nfiber_manual_record: 24\nfiber_new: 24\nfiber_pin: 24\nfiber_smart_record: 24\nfile_copy: 24\nfile_download: 24\nfile_download_done: 24\nfile_download_off: 24,20\nfile_open: 24,20\nfile_present: 24\nfile_upload: 24\nfilter: 24\nfilter_1: 24\nfilter_2: 24\nfilter_3: 24\nfilter_4: 24\nfilter_5: 24\nfilter_6: 24\nfilter_7: 24\nfilter_8: 24\nfilter_9: 24\nfilter_9_plus: 24\nfilter_alt: 24\nfilter_alt_off: 24,20\nfilter_b_and_w: 24\nfilter_center_focus: 24\nfilter_drama: 24\nfilter_frames: 24\nfilter_hdr: 24\nfilter_list: 24\nfilter_list_off: 24,20\nfilter_none: 24\nfilter_tilt_shift: 24\nfilter_vintage: 24\nfind_in_page: 24\nfind_replace: 24\nfingerprint: 24\nfire_extinguisher: 24\nfire_hydrant_alt: 24,20\nfire_truck: 24,20\nfireplace: 24,20\nfirst_page: 24\nfit_screen: 24\nfitbit: 24,20\nfitness_center: 24\nflag: 24\nflag_circle: 24,20\nflaky: 24,20\nflare: 24\nflash_auto: 24\nflash_off: 24\nflash_on: 24\nflashlight_off: 24\nflashlight_on: 24\nflatware: 24\nflight: 24\nflight_class: 24,20\nflight_land: 24\nflight_takeoff: 24\nflip: 24\nflip_camera_android: 24,20\nflip_camera_ios: 24,20\nflip_to_back: 24\nflip_to_front: 24\nflood: 24,20\nflourescent: 24\nfluorescent: 24\nflutter_dash: 24,20\nfmd_bad: 24\nfmd_good: 24\nfolder: 24\nfolder_copy: 24,20\nfolder_delete: 24,20\nfolder_off: 24,20\nfolder_open: 24\nfolder_shared: 24\nfolder_special: 24\nfolder_zip: 24,20\nfollow_the_signs: 24\nfont_download: 24\nfont_download_off: 24,20\nfood_bank: 24\nforest: 24,20\nfork_left: 24,20\nfork_right: 24,20\nformat_align_center: 24\nformat_align_justify: 24\nformat_align_left: 24\nformat_align_right: 24\nformat_bold: 24\nformat_clear: 24\nformat_color_fill: 24,20\nformat_color_reset: 24\nformat_color_text: 24,20\nformat_indent_decrease: 24\nformat_indent_increase: 24\nformat_italic: 24\nformat_line_spacing: 24\nformat_list_bulleted: 24\nformat_list_numbered: 24\nformat_list_numbered_rtl: 24\nformat_overline: 24,20\nformat_paint: 24\nformat_quote: 24\nformat_shapes: 24\nformat_size: 24\nformat_strikethrough: 24\nformat_textdirection_l_to_r: 24\nformat_textdirection_r_to_l: 24\nformat_underlined: 24\nfort: 24,20\nforum: 24\nforward: 24\nforward_10: 24\nforward_30: 24\nforward_5: 24\nforward_to_inbox: 24,20\nfoundation: 24\nfree_breakfast: 24\nfree_cancellation: 24,20\nfront_hand: 24,20\nfullscreen: 24\nfullscreen_exit: 24\nfunctions: 24\ng_mobiledata: 24\ng_translate: 24\ngamepad: 24\ngames: 24\ngarage: 24\ngas_meter: 24,20\ngavel: 24\ngenerating_tokens: 24,20\ngesture: 24\nget_app: 24\ngif: 24\ngif_box: 24,20\ngirl: 24,20\ngite: 24,20\ngolf_course: 24\ngpp_bad: 24\ngpp_good: 24\ngpp_maybe: 24\ngps_fixed: 24\ngps_not_fixed: 24\ngps_off: 24\ngrade: 24\ngradient: 24\ngrading: 24,20\ngrain: 24\ngraphic_eq: 24\ngrass: 24\ngrid_3x3: 24\ngrid_4x4: 24\ngrid_goldenratio: 24\ngrid_off: 24\ngrid_on: 24\ngrid_view: 24\ngroup: 24\ngroup_add: 24,20\ngroup_off: 24,20\ngroup_remove: 24,20\ngroup_work: 24\ngroups: 24\ngroups_2: 24,20\ngroups_3: 24,20\nh_mobiledata: 24\nh_plus_mobiledata: 24\nhail: 24\nhandshake: 24,20\nhandyman: 24,20\nhardware: 24,20\nhd: 24\nhdr_auto: 24\nhdr_auto_select: 24\nhdr_enhanced_select: 24\nhdr_off: 24\nhdr_off_select: 24\nhdr_on: 24\nhdr_on_select: 24\nhdr_plus: 24\nhdr_strong: 24\nhdr_weak: 24\nheadphones: 24\nheadphones_battery: 24\nheadset: 24\nheadset_mic: 24\nheadset_off: 24\nhealing: 24\nhealth_and_safety: 24\nhearing: 24\nhearing_disabled: 24,20\nheart_broken: 24,20\nheat_pump: 24,20\nheight: 24,20\nhelp: 24\nhelp_center: 24\nhelp_outline: 24\nhevc: 24\nhexagon: 24,20\nhide_image: 24\nhide_source: 24\nhigh_quality: 24\nhighlight: 24\nhighlight_alt: 24\nhighlight_off: 24\nhiking: 24,20\nhistory: 24\nhistory_edu: 24,20\nhistory_toggle_off: 24,20\nhive: 24,20\nhls: 24,20\nhls_off: 24,20\nholiday_village: 24,20\nhome: 24\nhome_max: 24\nhome_mini: 24\nhome_repair_service: 24,20\nhome_work: 24,20\nhorizontal_distribute: 24\nhorizontal_rule: 24,20\nhorizontal_split: 24\nhot_tub: 24\nhotel: 24\nhotel_class: 24,20\nhourglass_bottom: 24,20\nhourglass_disabled: 24,20\nhourglass_empty: 24\nhourglass_full: 24\nhourglass_top: 24,20\nhouse: 24,20\nhouse_siding: 24\nhouseboat: 24,20\nhow_to_reg: 24\nhow_to_vote: 24\nhtml: 24,20\nhttp: 24\nhttps: 24\nhub: 24,20\nhvac: 24,20\nice_skating: 24,20\nicecream: 24,20\nimage: 24\nimage_aspect_ratio: 24\nimage_not_supported: 24,20\nimage_search: 24\nimagesearch_roller: 24\nimport_contacts: 24\nimport_export: 24\nimportant_devices: 24\ninbox: 24\nincomplete_circle: 24,20\nindeterminate_check_box: 24\ninfo: 24\ninfo_outline: 24\ninput: 24\ninsert_chart: 24\ninsert_chart_outlined: 24\ninsert_comment: 24\ninsert_drive_file: 24\ninsert_emoticon: 24\ninsert_invitation: 24\ninsert_link: 24\ninsert_page_break: 24,20\ninsert_photo: 24\ninsights: 24,20\ninstall_desktop: 24,20\ninstall_mobile: 24,20\nintegration_instructions: 24\ninterests: 24,20\ninterpreter_mode: 24,20\ninventory: 24\ninventory_2: 24,20\ninvert_colors: 24,20\ninvert_colors_off: 24,20\nios_share: 24\niron: 24,20\niso: 24\njavascript: 24,20\njoin_full: 24,20\njoin_inner: 24,20\njoin_left: 24,20\njoin_right: 24,20\nkayaking: 24,20\nkebab_dining: 24,20\nkey: 24,20\nkey_off: 24,20\nkeyboard: 24\nkeyboard_alt: 24\nkeyboard_arrow_down: 24\nkeyboard_arrow_left: 24\nkeyboard_arrow_right: 24\nkeyboard_arrow_up: 24\nkeyboard_backspace: 24\nkeyboard_capslock: 24\nkeyboard_command_key: 24,20\nkeyboard_control_key: 24,20\nkeyboard_double_arrow_down: 24,20\nkeyboard_double_arrow_left: 24,20\nkeyboard_double_arrow_right: 24,20\nkeyboard_double_arrow_up: 24,20\nkeyboard_hide: 24\nkeyboard_option_key: 24,20\nkeyboard_return: 24\nkeyboard_tab: 24\nkeyboard_voice: 24\nking_bed: 24,20\nkitchen: 24\nkitesurfing: 24,20\nlabel: 24\nlabel_important: 24\nlabel_important_outline: 24\nlabel_off: 24\nlabel_outline: 24\nlan: 24,20\nlandscape: 24\nlandslide: 24,20\nlanguage: 24\nlaptop: 24\nlaptop_chromebook: 24\nlaptop_mac: 24\nlaptop_windows: 24\nlast_page: 24\nlaunch: 24\nlayers: 24\nlayers_clear: 24\nleaderboard: 24\nleak_add: 24\nleak_remove: 24\nlegend_toggle: 24,20\nlens: 24\nlens_blur: 24\nlibrary_add: 24\nlibrary_add_check: 24,20\nlibrary_books: 24\nlibrary_music: 24\nlight: 24\nlight_mode: 24,20\nlightbulb: 24\nlightbulb_circle: 24,20\nlightbulb_outline: 24\nline_axis: 24,20\nline_style: 24\nline_weight: 24\nlinear_scale: 24\nlink: 24\nlink_off: 24\nlinked_camera: 24\nliquor: 24,20\nlist: 24\nlist_alt: 24\nlive_help: 24\nlive_tv: 24\nliving: 24\nlocal_activity: 24\nlocal_airport: 24,20\nlocal_atm: 24\nlocal_bar: 24\nlocal_cafe: 24\nlocal_car_wash: 24\nlocal_convenience_store: 24\nlocal_dining: 24\nlocal_drink: 24\nlocal_fire_department: 24,20\nlocal_florist: 24\nlocal_gas_station: 24\nlocal_grocery_store: 24\nlocal_hospital: 24\nlocal_hotel: 24\nlocal_laundry_service: 24\nlocal_library: 24\nlocal_mall: 24\nlocal_movies: 24\nlocal_offer: 24\nlocal_parking: 24\nlocal_pharmacy: 24\nlocal_phone: 24\nlocal_pizza: 24\nlocal_play: 24\nlocal_police: 24\nlocal_post_office: 24\nlocal_printshop: 24\nlocal_see: 24\nlocal_shipping: 24\nlocal_taxi: 24\nlocation_city: 24\nlocation_disabled: 24\nlocation_off: 24\nlocation_on: 24\nlocation_searching: 24\nlock: 24\nlock_clock: 24,20\nlock_open: 24\nlock_outline: 24\nlock_person: 24,20\nlock_reset: 24,20\nlogin: 24,20\nlogo_dev: 24,20\nlogout: 24\nlooks: 24\nlooks_3: 24\nlooks_4: 24\nlooks_5: 24\nlooks_6: 24\nlooks_one: 24\nlooks_two: 24\nloop: 24\nloupe: 24\nlow_priority: 24\nloyalty: 24\nlte_mobiledata: 24\nlte_plus_mobiledata: 24\nluggage: 24\nlunch_dining: 24,20\nlyrics: 24,20\nmacro_off: 24,20\nmail: 24\nmail_lock: 24,20\nmail_outline: 24\nmale: 24,20\nman: 24,20\nman_2: 24,20\nman_3: 24,20\nman_4: 24,20\nmanage_accounts: 24\nmanage_history: 24,20\nmanage_search: 24\nmap: 24\nmaps_home_work: 24\nmaps_ugc: 24\nmargin: 24\nmark_as_unread: 24,20\nmark_chat_read: 24,20\nmark_chat_unread: 24,20\nmark_email_read: 24,20\nmark_email_unread: 24,20\nmark_unread_chat_alt: 24,20\nmarkunread: 24\nmarkunread_mailbox: 24\nmasks: 24\nmaximize: 24\nmedia_bluetooth_off: 24\nmedia_bluetooth_on: 24\nmediation: 24\nmedical_information: 24,20\nmedical_services: 24,20\nmedication: 24\nmedication_liquid: 24,20\nmeeting_room: 24\nmemory: 24\nmenu: 24\nmenu_book: 24\nmenu_open: 24\nmerge: 24,20\nmerge_type: 24\nmessage: 24\nmic: 24\nmic_external_off: 24\nmic_external_on: 24\nmic_none: 24\nmic_off: 24\nmicrowave: 24\nmilitary_tech: 24,20\nminimize: 24\nminor_crash: 24,20\nmiscellaneous_services: 24,20\nmissed_video_call: 24\nmms: 24\nmobile_friendly: 24\nmobile_off: 24\nmobile_screen_share: 24\nmobiledata_off: 24\nmode: 24\nmode_comment: 24\nmode_edit: 24\nmode_edit_outline: 24,20\nmode_fan_off: 24,20\nmode_night: 24\nmode_of_travel: 24,20\nmode_standby: 24\nmodel_training: 24,20\nmonetization_on: 24\nmoney: 24\nmoney_off: 24\nmoney_off_csred: 24\nmonitor: 24\nmonitor_heart: 24,20\nmonitor_weight: 24\nmonochrome_photos: 24\nmood: 24\nmood_bad: 24\nmoped: 24,20\nmore: 24\nmore_horiz: 24\nmore_time: 24,20\nmore_vert: 24\nmosque: 24,20\nmotion_photos_auto: 24\nmotion_photos_off: 24\nmotion_photos_on: 24,20\nmotion_photos_pause: 24,20\nmotion_photos_paused: 24\nmouse: 24\nmove_down: 24,20\nmove_to_inbox: 24\nmove_up: 24,20\nmovie: 24\nmovie_creation: 24\nmovie_filter: 24\nmoving: 24,20\nmp: 24\nmultiline_chart: 24\nmultiple_stop: 24\nmuseum: 24,20\nmusic_note: 24\nmusic_off: 24\nmusic_video: 24\nmy_location: 24\nnat: 24,20\nnature: 24\nnature_people: 24\nnavigate_before: 24\nnavigate_next: 24\nnavigation: 24\nnear_me: 24\nnear_me_disabled: 24\nnearby_error: 24\nnearby_off: 24\nnest_cam_wired_stand: 24,20\nnetwork_cell: 24\nnetwork_check: 24\nnetwork_locked: 24\nnetwork_ping: 24,20\nnetwork_wifi: 24\nnetwork_wifi_1_bar: 24,20\nnetwork_wifi_2_bar: 24,20\nnetwork_wifi_3_bar: 24,20\nnew_label: 24,20\nnew_releases: 24\nnewspaper: 24,20\nnext_plan: 24,20\nnext_week: 24\nnfc: 24\nnight_shelter: 24\nnightlife: 24,20\nnightlight: 24\nnightlight_round: 24\nnights_stay: 24,20\nno_accounts: 24\nno_adult_content: 24,20\nno_backpack: 24\nno_cell: 24\nno_crash: 24,20\nno_drinks: 24\nno_encryption: 24\nno_encryption_gmailerrorred: 24\nno_flash: 24\nno_food: 24\nno_luggage: 24\nno_meals: 24\nno_meeting_room: 24\nno_photography: 24\nno_sim: 24\nno_stroller: 24\nno_transfer: 24\nnoise_aware: 24,20\nnoise_control_off: 24,20\nnordic_walking: 24,20\nnorth: 24\nnorth_east: 24\nnorth_west: 24\nnot_accessible: 24,20\nnot_interested: 24\nnot_listed_location: 24\nnot_started: 24,20\nnote: 24\nnote_add: 24\nnote_alt: 24\nnotes: 24\nnotification_add: 24,20\nnotification_important: 24\nnotifications: 24\nnotifications_active: 24\nnotifications_none: 24\nnotifications_off: 24\nnotifications_paused: 24\nnumbers: 24,20\noffline_bolt: 24\noffline_pin: 24\noffline_share: 24\noil_barrel: 24,20\non_device_training: 24,20\nondemand_video: 24\nonline_prediction: 24,20\nopacity: 24\nopen_in_browser: 24\nopen_in_full: 24\nopen_in_new: 24\nopen_in_new_off: 24,20\nopen_with: 24\nother_houses: 24,20\noutbond: 24\noutbound: 24\noutbox: 24,20\noutdoor_grill: 24,20\noutlet: 24\noutlined_flag: 24\noutput: 24,20\npadding: 24\npages: 24\npageview: 24\npaid: 24\npalette: 24,20\npan_tool: 24\npan_tool_alt: 24,20\npanorama: 24\npanorama_fish_eye: 24\npanorama_horizontal: 24\npanorama_horizontal_select: 24\npanorama_photosphere: 24\npanorama_photosphere_select: 24\npanorama_vertical: 24\npanorama_vertical_select: 24\npanorama_wide_angle: 24\npanorama_wide_angle_select: 24\nparagliding: 24,20\npark: 24,20\nparty_mode: 24\npassword: 24\npattern: 24\npause: 24\npause_circle: 24,20\npause_circle_filled: 24\npause_circle_outline: 24\npause_presentation: 24\npayment: 24\npayments: 24\npedal_bike: 24,20\npending: 24,20\npending_actions: 24\npentagon: 24,20\npeople: 24\npeople_alt: 24,20\npeople_outline: 24\npercent: 24,20\nperm_camera_mic: 24\nperm_contact_calendar: 24\nperm_data_setting: 24\nperm_device_information: 24\nperm_identity: 24\nperm_media: 24\nperm_phone_msg: 24\nperm_scan_wifi: 24\nperson: 24\nperson_2: 24,20\nperson_3: 24,20\nperson_4: 24,20\nperson_add: 24\nperson_add_alt: 24,20\nperson_add_alt_1: 24,20\nperson_add_disabled: 24\nperson_off: 24,20\nperson_outline: 24\nperson_pin: 24\nperson_pin_circle: 24\nperson_remove: 24,20\nperson_remove_alt_1: 24,20\nperson_search: 24,20\npersonal_injury: 24,20\npersonal_video: 24\npest_control: 24,20\npest_control_rodent: 24,20\npets: 24\nphishing: 24,20\nphone: 24\nphone_android: 24\nphone_bluetooth_speaker: 24\nphone_callback: 24\nphone_disabled: 24\nphone_enabled: 24\nphone_forwarded: 24\nphone_in_talk: 24\nphone_iphone: 24\nphone_locked: 24,20\nphone_missed: 24\nphone_paused: 24\nphonelink: 24\nphonelink_erase: 24\nphonelink_lock: 24\nphonelink_off: 24\nphonelink_ring: 24\nphonelink_setup: 24\nphoto: 24\nphoto_album: 24,20\nphoto_camera: 24\nphoto_camera_back: 24\nphoto_camera_front: 24\nphoto_filter: 24\nphoto_library: 24\nphoto_size_select_actual: 24\nphoto_size_select_large: 24\nphoto_size_select_small: 24\nphp: 24,20\npiano: 24,20\npiano_off: 24,20\npicture_as_pdf: 24\npicture_in_picture: 24\npicture_in_picture_alt: 24\npie_chart: 24\npie_chart_outline: 24\npin: 24\npin_drop: 24\npin_end: 24,20\npin_invoke: 24,20\npinch: 24,20\npivot_table_chart: 24\npix: 24,20\nplace: 24\nplagiarism: 24,20\nplay_arrow: 24\nplay_circle: 24,20\nplay_circle_filled: 24\nplay_circle_outline: 24\nplay_disabled: 24\nplay_for_work: 24\nplay_lesson: 24\nplaylist_add: 24,20\nplaylist_add_check: 24,20\nplaylist_add_check_circle: 24,20\nplaylist_add_circle: 24,20\nplaylist_play: 24,20\nplaylist_remove: 24,20\nplumbing: 24,20\nplus_one: 24\npodcasts: 24\npoint_of_sale: 24,20\npolicy: 24,20\npoll: 24\npolyline: 24,20\npolymer: 24\npool: 24\nportable_wifi_off: 24\nportrait: 24\npost_add: 24,20\npower: 24\npower_input: 24\npower_off: 24\npower_settings_new: 24\nprecision_manufacturing: 24,20\npregnant_woman: 24\npresent_to_all: 24\npreview: 24\nprice_change: 24\nprice_check: 24\nprint: 24\nprint_disabled: 24\npriority_high: 24\nprivacy_tip: 24,20\nprivate_connectivity: 24,20\nproduction_quantity_limits: 24\npropane: 24,20\npropane_tank: 24,20\npsychology: 24,20\npsychology_alt: 24,20\npublic: 24\npublic_off: 24\npublish: 24\npublished_with_changes: 24\npunch_clock: 24,20\npush_pin: 24,20\nqr_code: 24,20\nqr_code_2: 24\nqr_code_scanner: 24\nquery_builder: 24\nquery_stats: 24,20\nquestion_answer: 24\nquestion_mark: 24,20\nqueue: 24\nqueue_music: 24,20\nqueue_play_next: 24\nquickreply: 24,20\nquiz: 24\nr_mobiledata: 24\nradar: 24\nradio: 24\nradio_button_checked: 24\nradio_button_unchecked: 24\nrailway_alert: 24\nramen_dining: 24,20\nramp_left: 24,20\nramp_right: 24,20\nrate_review: 24\nraw_off: 24\nraw_on: 24\nread_more: 24,20\nreal_estate_agent: 24,20\nreceipt: 24\nreceipt_long: 24\nrecent_actors: 24\nrecommend: 24\nrecord_voice_over: 24\nrectangle: 24,20\nrecycling: 24,20\nredeem: 24\nredo: 24\nreduce_capacity: 24\nrefresh: 24\nremember_me: 24\nremove: 24\nremove_circle: 24\nremove_circle_outline: 24\nremove_done: 24\nremove_from_queue: 24\nremove_moderator: 24\nremove_red_eye: 24\nremove_road: 24,20\nremove_shopping_cart: 24\nreorder: 24\nrepartition: 24,20\nrepeat: 24\nrepeat_on: 24\nrepeat_one: 24\nrepeat_one_on: 24\nreplay: 24\nreplay_10: 24\nreplay_30: 24\nreplay_5: 24\nreplay_circle_filled: 24\nreply: 24\nreply_all: 24\nreport: 24\nreport_gmailerrorred: 24\nreport_off: 24\nreport_problem: 24\nrequest_page: 24\nrequest_quote: 24\nreset_tv: 24\nrestart_alt: 24\nrestaurant: 24\nrestaurant_menu: 24\nrestore: 24\nrestore_from_trash: 24\nrestore_page: 24\nreviews: 24\nrice_bowl: 24\nring_volume: 24\nrocket: 24,20\nrocket_launch: 24,20\nroller_shades: 24,20\nroller_shades_closed: 24,20\nroller_skating: 24,20\nroofing: 24\nroom: 24\nroom_preferences: 24\nroom_service: 24\nrotate_90_degrees_ccw: 24\nrotate_90_degrees_cw: 24,20\nrotate_left: 24\nrotate_right: 24\nroundabout_left: 24,20\nroundabout_right: 24,20\nrounded_corner: 24\nroute: 24,20\nrouter: 24\nrowing: 24\nrss_feed: 24\nrsvp: 24\nrtt: 24\nrule: 24\nrule_folder: 24\nrun_circle: 24,20\nrunning_with_errors: 24,20\nrv_hookup: 24\nsafety_check: 24,20\nsafety_divider: 24\nsailing: 24,20\nsanitizer: 24\nsatellite: 24\nsatellite_alt: 24,20\nsave: 24\nsave_alt: 24\nsave_as: 24,20\nsaved_search: 24\nsavings: 24,20\nscale: 24,20\nscanner: 24\nscatter_plot: 24\nschedule: 24\nschedule_send: 24\nschema: 24,20\nschool: 24\nscience: 24,20\nscore: 24\nscoreboard: 24,20\nscreen_lock_landscape: 24\nscreen_lock_portrait: 24\nscreen_lock_rotation: 24\nscreen_rotation: 24\nscreen_rotation_alt: 24,20\nscreen_search_desktop: 24\nscreen_share: 24\nscreenshot: 24\nscreenshot_monitor: 24,20\nscuba_diving: 24,20\nsd: 24\nsd_card: 24\nsd_card_alert: 24\nsd_storage: 24\nsearch: 24\nsearch_off: 24,20\nsecurity: 24\nsecurity_update: 24\nsecurity_update_good: 24\nsecurity_update_warning: 24\nsegment: 24\nselect_all: 24\nself_improvement: 24,20\nsell: 24\nsend: 24\nsend_and_archive: 24,20\nsend_time_extension: 24,20\nsend_to_mobile: 24\nsensor_door: 24,20\nsensor_occupied: 24,20\nsensor_window: 24,20\nsensors: 24,20\nsensors_off: 24,20\nsentiment_dissatisfied: 24\nsentiment_neutral: 24\nsentiment_satisfied: 24\nsentiment_satisfied_alt: 24\nsentiment_very_dissatisfied: 24\nsentiment_very_satisfied: 24\nset_meal: 24\nsettings: 24\nsettings_accessibility: 24\nsettings_applications: 24\nsettings_backup_restore: 24\nsettings_bluetooth: 24\nsettings_brightness: 24\nsettings_cell: 24\nsettings_ethernet: 24\nsettings_input_antenna: 24\nsettings_input_component: 24\nsettings_input_composite: 24\nsettings_input_hdmi: 24\nsettings_input_svideo: 24\nsettings_overscan: 24\nsettings_phone: 24\nsettings_power: 24\nsettings_remote: 24\nsettings_suggest: 24\nsettings_system_daydream: 24\nsettings_voice: 24\nsevere_cold: 24,20\nshape_line: 24,20\nshare: 24\nshare_location: 24\nshield: 24\nshield_moon: 24,20\nshop: 24\nshop_2: 24,20\nshop_two: 24\nshopping_bag: 24\nshopping_basket: 24\nshopping_cart: 24\nshopping_cart_checkout: 24,20\nshort_text: 24\nshortcut: 24\nshow_chart: 24\nshower: 24\nshuffle: 24\nshuffle_on: 24\nshutter_speed: 24\nsick: 24\nsign_language: 24,20\nsignal_cellular_0_bar: 24\nsignal_cellular_4_bar: 24\nsignal_cellular_alt: 24\nsignal_cellular_alt_1_bar: 24,20\nsignal_cellular_alt_2_bar: 24,20\nsignal_cellular_connected_no_internet_0_bar: 24,20\nsignal_cellular_connected_no_internet_4_bar: 24,20\nsignal_cellular_no_sim: 24\nsignal_cellular_nodata: 24\nsignal_cellular_null: 24\nsignal_cellular_off: 24\nsignal_wifi_0_bar: 24\nsignal_wifi_4_bar: 24\nsignal_wifi_4_bar_lock: 24,20\nsignal_wifi_bad: 24\nsignal_wifi_connected_no_internet_4: 24\nsignal_wifi_off: 24\nsignal_wifi_statusbar_4_bar: 24\nsignal_wifi_statusbar_connected_no_internet_4: 24,20\nsignal_wifi_statusbar_null: 24\nsignpost: 24,20\nsim_card: 24\nsim_card_alert: 24\nsim_card_download: 24\nsingle_bed: 24,20\nsip: 24\nskateboarding: 24,20\nskip_next: 24\nskip_previous: 24\nsledding: 24,20\nslideshow: 24\nslow_motion_video: 24\nsmart_button: 24\nsmart_display: 24\nsmart_screen: 24\nsmart_toy: 24\nsmartphone: 24\nsmoke_free: 24\nsmoking_rooms: 24\nsms: 24\nsms_failed: 24\nsnippet_folder: 24\nsnooze: 24\nsnowboarding: 24,20\nsnowmobile: 24,20\nsnowshoeing: 24,20\nsoap: 24\nsocial_distance: 24\nsolar_power: 24,20\nsort: 24\nsort_by_alpha: 24\nsos: 24,20\nsoup_kitchen: 24,20\nsource: 24\nsouth: 24\nsouth_america: 24,20\nsouth_east: 24\nsouth_west: 24\nspa: 24\nspace_bar: 24\nspace_dashboard: 24,20\nspatial_audio: 24,20\nspatial_audio_off: 24,20\nspatial_tracking: 24,20\nspeaker: 24\nspeaker_group: 24\nspeaker_notes: 24\nspeaker_notes_off: 24\nspeaker_phone: 24\nspeed: 24\nspellcheck: 24\nsplitscreen: 24\nspoke: 24,20\nsports: 24,20\nsports_bar: 24,20\nsports_baseball: 24,20\nsports_basketball: 24,20\nsports_cricket: 24,20\nsports_esports: 24,20\nsports_football: 24,20\nsports_golf: 24,20\nsports_gymnastics: 24,20\nsports_handball: 24,20\nsports_hockey: 24,20\nsports_kabaddi: 24,20\nsports_martial_arts: 24,20\nsports_mma: 24,20\nsports_motorsports: 24,20\nsports_rugby: 24,20\nsports_score: 24\nsports_soccer: 24,20\nsports_tennis: 24,20\nsports_volleyball: 24,20\nsquare: 24,20\nsquare_foot: 24,20\nssid_chart: 24,20\nstacked_bar_chart: 24,20\nstacked_line_chart: 24\nstadium: 24,20\nstairs: 24\nstar: 24\nstar_border: 24\nstar_border_purple500: 24\nstar_half: 24\nstar_outline: 24\nstar_purple500: 24\nstar_rate: 24,18\nstars: 24\nstart: 24,20\nstay_current_landscape: 24\nstay_current_portrait: 24\nstay_primary_landscape: 24\nstay_primary_portrait: 24\nsticky_note_2: 24\nstop: 24\nstop_circle: 24,20\nstop_screen_share: 24\nstorage: 24\nstore: 24\nstore_mall_directory: 24\nstorefront: 24\nstorm: 24\nstraight: 24,20\nstraighten: 24\nstream: 24\nstreetview: 24\nstrikethrough_s: 24\nstroller: 24\nstyle: 24\nsubdirectory_arrow_left: 24\nsubdirectory_arrow_right: 24\nsubject: 24\nsubscript: 24,20\nsubscriptions: 24\nsubtitles: 24\nsubtitles_off: 24,20\nsubway: 24\nsummarize: 24\nsuperscript: 24,20\nsupervised_user_circle: 24\nsupervisor_account: 24\nsupport: 24,20\nsupport_agent: 24,20\nsurfing: 24,20\nsurround_sound: 24\nswap_calls: 24\nswap_horiz: 24\nswap_horizontal_circle: 24\nswap_vert: 24\nswap_vertical_circle: 24\nswipe: 24,20\nswipe_down: 24,20\nswipe_down_alt: 24,20\nswipe_left: 24,20\nswipe_left_alt: 24,20\nswipe_right: 24,20\nswipe_right_alt: 24,20\nswipe_up: 24,20\nswipe_up_alt: 24,20\nswipe_vertical: 24,20\nswitch_access_shortcut: 24,20\nswitch_access_shortcut_add: 24,20\nswitch_account: 24\nswitch_camera: 24\nswitch_left: 24\nswitch_right: 24\nswitch_video: 24\nsynagogue: 24,20\nsync: 24\nsync_alt: 24,20\nsync_disabled: 24\nsync_lock: 24,20\nsync_problem: 24\nsystem_security_update: 24\nsystem_security_update_good: 24\nsystem_security_update_warning: 24\nsystem_update: 24\nsystem_update_alt: 24\ntab: 24\ntab_unselected: 24\ntable_bar: 24,20\ntable_chart: 24\ntable_restaurant: 24,20\ntable_rows: 24,20\ntable_view: 24\ntablet: 24\ntablet_android: 24\ntablet_mac: 24\ntag: 24\ntag_faces: 24\ntakeout_dining: 24,20\ntap_and_play: 24\ntapas: 24\ntask: 24\ntask_alt: 24\ntaxi_alert: 24\ntemple_buddhist: 24,20\ntemple_hindu: 24,20\nterminal: 24,20\nterrain: 24\ntext_decrease: 24,20\ntext_fields: 24\ntext_format: 24\ntext_increase: 24,20\ntext_rotate_up: 24\ntext_rotate_vertical: 24\ntext_rotation_angledown: 24\ntext_rotation_angleup: 24\ntext_rotation_down: 24\ntext_rotation_none: 24\ntext_snippet: 24\ntextsms: 24\ntexture: 24\ntheater_comedy: 24,20\ntheaters: 24\nthermostat: 24\nthermostat_auto: 24\nthumb_down: 24\nthumb_down_alt: 24\nthumb_down_off_alt: 24\nthumb_up: 24\nthumb_up_alt: 24\nthumb_up_off_alt: 24\nthumbs_up_down: 24\nthunderstorm: 24,20\ntime_to_leave: 24\ntimelapse: 24\ntimeline: 24\ntimer: 24,20\ntimer_10: 24\ntimer_10_select: 24\ntimer_3: 24\ntimer_3_select: 24\ntimer_off: 24,20\ntips_and_updates: 24,20\ntire_repair: 24,20\ntitle: 24\ntoc: 24\ntoday: 24\ntoggle_off: 24\ntoggle_on: 24\ntoken: 24,20\ntoll: 24\ntonality: 24\ntopic: 24\ntornado: 24,20\ntouch_app: 24\ntour: 24\ntoys: 24,20\ntrack_changes: 24\ntraffic: 24\ntrain: 24\ntram: 24\ntranscribe: 24,20\ntransfer_within_a_station: 24\ntransform: 24\ntransgender: 24,20\ntransit_enterexit: 24\ntranslate: 24\ntravel_explore: 24,20\ntrending_down: 24\ntrending_flat: 24\ntrending_up: 24\ntrip_origin: 24\ntroubleshoot: 24,20\ntry: 24\ntsunami: 24,20\ntty: 24\ntune: 24\ntungsten: 24\nturn_left: 24,20\nturn_right: 24,20\nturn_sharp_left: 24,20\nturn_sharp_right: 24,20\nturn_slight_left: 24,20\nturn_slight_right: 24,20\nturned_in: 24\nturned_in_not: 24\ntv: 24\ntv_off: 24\ntwo_wheeler: 24,20\ntype_specimen: 24,20\nu_turn_left: 24,20\nu_turn_right: 24,20\numbrella: 24\nunarchive: 24\nundo: 24\nunfold_less: 24\nunfold_less_double: 24,20\nunfold_more: 24\nunfold_more_double: 24,20\nunpublished: 24\nunsubscribe: 24\nupcoming: 24\nupdate: 24\nupdate_disabled: 24,20\nupgrade: 24,20\nupload: 24\nupload_file: 24\nusb: 24\nusb_off: 24,20\nvaccines: 24,20\nvape_free: 24,20\nvaping_rooms: 24,20\nverified: 24,20\nverified_user: 24\nvertical_align_bottom: 24\nvertical_align_center: 24\nvertical_align_top: 24\nvertical_distribute: 24\nvertical_shades: 24,20\nvertical_shades_closed: 24,20\nvertical_split: 24\nvibration: 24\nvideo_call: 24\nvideo_camera_back: 24\nvideo_camera_front: 24\nvideo_chat: 24,20\nvideo_file: 24,20\nvideo_label: 24\nvideo_library: 24\nvideo_settings: 24,20\nvideo_stable: 24\nvideocam: 24\nvideocam_off: 24\nvideogame_asset: 24\nvideogame_asset_off: 24,20\nview_agenda: 24,20\nview_array: 24,20\nview_carousel: 24,20\nview_column: 24,20\nview_comfy: 24,20\nview_comfy_alt: 24,20\nview_compact: 24,20\nview_compact_alt: 24,20\nview_cozy: 24,20\nview_day: 24\nview_headline: 24\nview_in_ar: 24\nview_kanban: 24,20\nview_list: 24,20\nview_module: 24,20\nview_quilt: 24,20\nview_sidebar: 24,20\nview_stream: 24,20\nview_timeline: 24,20\nview_week: 24,20\nvignette: 24\nvilla: 24,20\nvisibility: 24\nvisibility_off: 24\nvoice_chat: 24\nvoice_over_off: 24\nvoicemail: 24\nvolcano: 24,20\nvolume_down: 24\nvolume_mute: 24\nvolume_off: 24\nvolume_up: 24\nvolunteer_activism: 24,20\nvpn_key: 24\nvpn_key_off: 24,20\nvpn_lock: 24\nvrpano: 24\nwallet: 24,20\nwallpaper: 24\nwarehouse: 24,20\nwarning: 24\nwarning_amber: 24\nwash: 24\nwatch: 24\nwatch_later: 24\nwatch_off: 24,20\nwater: 24\nwater_damage: 24\nwater_drop: 24,20\nwaterfall_chart: 24\nwaves: 24\nwaving_hand: 24,20\nwb_auto: 24\nwb_cloudy: 24\nwb_incandescent: 24\nwb_iridescent: 24\nwb_shade: 24\nwb_sunny: 24\nwb_twilight: 24,20\nwc: 24\nweb: 24\nweb_asset: 24\nweb_asset_off: 24,20\nweb_stories: 24,20\nwebhook: 24,20\nweekend: 24\nwest: 24\nwhatsapp: 24,20\nwhatshot: 24\nwheelchair_pickup: 24\nwhere_to_vote: 24\nwidgets: 24\nwidth_full: 24,20\nwidth_normal: 24,20\nwidth_wide: 24,20\nwifi: 24\nwifi_1_bar: 24,20\nwifi_2_bar: 24,20\nwifi_calling: 24,20\nwifi_calling_3: 24\nwifi_channel: 24,20\nwifi_find: 24,20\nwifi_lock: 24,20\nwifi_off: 24\nwifi_password: 24,20\nwifi_protected_setup: 24,20\nwifi_tethering: 24\nwifi_tethering_error: 24,20\nwifi_tethering_error_rounded: 24\nwifi_tethering_off: 24\nwind_power: 24,20\nwindow: 24,20\nwine_bar: 24\nwoman: 24,20\nwoman_2: 24,20\nwork: 24\nwork_history: 24,20\nwork_off: 24\nwork_outline: 24\nworkspace_premium: 24,20\nworkspaces: 24,20\nwrap_text: 24\nwrong_location: 24,20\nwysiwyg: 24\nyard: 24\nyoutube_searched_for: 24\nzoom_in: 24\nzoom_in_map: 24,20\nzoom_out: 24\nzoom_out_map: 24\n"
  },
  {
    "path": "tests/test_misc/test_material_twotone_.txt",
    "content": "10k: 24\n10mp: 24\n11mp: 24\n123: 24,20\n12mp: 24\n13mp: 24\n14mp: 24\n15mp: 24\n16mp: 24\n17mp: 24\n18_up_rating: 24,20\n18mp: 24\n19mp: 24\n1k: 24\n1k_plus: 24\n1x_mobiledata: 24\n20mp: 24\n21mp: 24\n22mp: 24\n23mp: 24\n24mp: 24\n2k: 24\n2k_plus: 24\n2mp: 24\n30fps: 24\n30fps_select: 24\n360: 24\n3d_rotation: 24\n3g_mobiledata: 24\n3k: 24\n3k_plus: 24\n3mp: 24\n3p: 24\n4g_mobiledata: 24\n4g_plus_mobiledata: 24\n4k: 24\n4k_plus: 24\n4mp: 24\n5g: 24,20\n5k: 24\n5k_plus: 24\n5mp: 24\n60fps: 24\n60fps_select: 24\n6_ft_apart: 24\n6k: 24\n6k_plus: 24\n6mp: 24\n7k: 24\n7k_plus: 24\n7mp: 24\n8k: 24\n8k_plus: 24\n8mp: 24\n9k: 24\n9k_plus: 24\n9mp: 24\nabc: 24,20\nac_unit: 24\naccess_alarm: 24\naccess_alarms: 24\naccess_time: 24\naccess_time_filled: 24\naccessibility: 24\naccessibility_new: 24\naccessible: 24\naccessible_forward: 24\naccount_balance: 24\naccount_balance_wallet: 24\naccount_box: 24,20\naccount_circle: 24,20\naccount_tree: 24\nad_units: 24\nadb: 24\nadd: 24\nadd_a_photo: 24\nadd_alarm: 24\nadd_alert: 24\nadd_box: 24\nadd_business: 24,20\nadd_card: 24,20\nadd_chart: 24\nadd_circle: 24\nadd_circle_outline: 24\nadd_comment: 24\nadd_home: 24,20\nadd_home_work: 24,20\nadd_ic_call: 24\nadd_link: 24\nadd_location: 24\nadd_location_alt: 24\nadd_moderator: 24\nadd_photo_alternate: 24\nadd_reaction: 24\nadd_road: 24,20\nadd_shopping_cart: 24\nadd_task: 24\nadd_to_drive: 24,20\nadd_to_home_screen: 24\nadd_to_photos: 24\nadd_to_queue: 24\naddchart: 24\nadf_scanner: 24,20\nadjust: 24\nadmin_panel_settings: 24,20\nads_click: 24,20\nagriculture: 24,20\nair: 24\nairline_seat_flat: 24\nairline_seat_flat_angled: 24\nairline_seat_individual_suite: 24\nairline_seat_legroom_extra: 24\nairline_seat_legroom_normal: 24\nairline_seat_legroom_reduced: 24\nairline_seat_recline_extra: 24\nairline_seat_recline_normal: 24\nairline_stops: 24,20\nairlines: 24,20\nairplane_ticket: 24\nairplanemode_active: 24,20\nairplanemode_inactive: 24,20\nairplay: 24\nairport_shuttle: 24\nalarm: 24\nalarm_add: 24\nalarm_off: 24\nalarm_on: 24\nalbum: 24\nalign_horizontal_center: 24\nalign_horizontal_left: 24\nalign_horizontal_right: 24\nalign_vertical_bottom: 24\nalign_vertical_center: 24\nalign_vertical_top: 24\nall_inbox: 24\nall_inclusive: 24\nall_out: 24\nalt_route: 24,20\nalternate_email: 24\namp_stories: 24,20\nanalytics: 24\nanchor: 24\nandroid: 24,20\nanimation: 24\nannouncement: 24\naod: 24\napartment: 24,20\napi: 24\napp_blocking: 24\napp_registration: 24,20\napp_settings_alt: 24\napp_shortcut: 24,20\napproval: 24\napps: 24\napps_outage: 24,20\narchitecture: 24,20\narchive: 24\narea_chart: 24,20\narrow_back: 24\narrow_back_ios: 24\narrow_back_ios_new: 24,20\narrow_circle_down: 24,20\narrow_circle_left: 24,20\narrow_circle_right: 24,20\narrow_circle_up: 24,20\narrow_downward: 24\narrow_drop_down: 24\narrow_drop_down_circle: 24\narrow_drop_up: 24\narrow_forward: 24\narrow_forward_ios: 24,20\narrow_left: 24\narrow_outward: 24,20\narrow_right: 24\narrow_right_alt: 24\narrow_upward: 24\nart_track: 24\narticle: 24\naspect_ratio: 24\nassessment: 24\nassignment: 24\nassignment_ind: 24\nassignment_late: 24\nassignment_return: 24\nassignment_returned: 24\nassignment_turned_in: 24\nassist_walker: 24,20\nassistant: 24\nassistant_direction: 24\nassistant_photo: 24\nassured_workload: 24,20\natm: 24\nattach_email: 24,20\nattach_file: 24\nattach_money: 24\nattachment: 24\nattractions: 24,20\nattribution: 24\naudio_file: 24,20\naudiotrack: 24\nauto_awesome: 24\nauto_awesome_mosaic: 24\nauto_awesome_motion: 24\nauto_delete: 24,20\nauto_fix_high: 24\nauto_fix_normal: 24\nauto_fix_off: 24\nauto_graph: 24,20\nauto_mode: 24,20\nauto_stories: 24\nautofps_select: 24\nautorenew: 24\nav_timer: 24\nbaby_changing_station: 24\nback_hand: 24,20\nbackpack: 24\nbackspace: 24\nbackup: 24\nbackup_table: 24,20\nbadge: 24,20\nbakery_dining: 24,20\nbalance: 24,20\nbalcony: 24,20\nballot: 24\nbar_chart: 24,20\nbatch_prediction: 24,20\nbathroom: 24\nbathtub: 24,20\nbattery_0_bar: 24,20\nbattery_1_bar: 24,20\nbattery_20: 24\nbattery_2_bar: 24,20\nbattery_30: 24\nbattery_3_bar: 24,20\nbattery_4_bar: 24,20\nbattery_50: 24\nbattery_5_bar: 24,20\nbattery_60: 24\nbattery_6_bar: 24,20\nbattery_80: 24\nbattery_90: 24\nbattery_alert: 24\nbattery_charging_20: 24\nbattery_charging_30: 24\nbattery_charging_50: 24\nbattery_charging_60: 24\nbattery_charging_80: 24\nbattery_charging_90: 24\nbattery_charging_full: 24\nbattery_full: 24\nbattery_saver: 24\nbattery_std: 24\nbattery_unknown: 24\nbeach_access: 24\nbed: 24\nbedroom_baby: 24\nbedroom_child: 24\nbedroom_parent: 24\nbedtime: 24,20\nbedtime_off: 24,20\nbeenhere: 24\nbento: 24\nbike_scooter: 24,20\nbiotech: 24,20\nblender: 24\nblind: 24,20\nblinds: 24,20\nblinds_closed: 24,20\nblock: 24\nbloodtype: 24\nbluetooth: 24\nbluetooth_audio: 24\nbluetooth_connected: 24\nbluetooth_disabled: 24\nbluetooth_drive: 24\nbluetooth_searching: 24\nblur_circular: 24\nblur_linear: 24\nblur_off: 24\nblur_on: 24\nbolt: 24\nbook: 24\nbook_online: 24\nbookmark: 24\nbookmark_add: 24,20\nbookmark_added: 24\nbookmark_border: 24\nbookmark_remove: 24,20\nbookmarks: 24\nborder_all: 24\nborder_bottom: 24\nborder_clear: 24\nborder_color: 24\nborder_horizontal: 24\nborder_inner: 24\nborder_left: 24\nborder_outer: 24\nborder_right: 24\nborder_style: 24\nborder_top: 24\nborder_vertical: 24\nboy: 24,20\nbranding_watermark: 24\nbreakfast_dining: 24,20\nbrightness_1: 24\nbrightness_2: 24\nbrightness_3: 24\nbrightness_4: 24\nbrightness_5: 24\nbrightness_6: 24\nbrightness_7: 24\nbrightness_auto: 24\nbrightness_high: 24\nbrightness_low: 24\nbrightness_medium: 24\nbroadcast_on_home: 24,20\nbroadcast_on_personal: 24,20\nbroken_image: 24\nbrowse_gallery: 24,20\nbrowser_not_supported: 24,20\nbrowser_updated: 24,20\nbrunch_dining: 24,20\nbrush: 24\nbubble_chart: 24\nbug_report: 24\nbuild: 24\nbuild_circle: 24,20\nbungalow: 24,20\nburst_mode: 24\nbus_alert: 24\nbusiness: 24\nbusiness_center: 24\ncabin: 24,20\ncable: 24\ncached: 24\ncake: 24\ncalculate: 24,20\ncalendar_month: 24,20\ncalendar_today: 24\ncalendar_view_day: 24\ncalendar_view_month: 24\ncalendar_view_week: 24\ncall: 24\ncall_end: 24\ncall_made: 24\ncall_merge: 24\ncall_missed: 24\ncall_missed_outgoing: 24\ncall_received: 24\ncall_split: 24\ncall_to_action: 24\ncamera: 24\ncamera_alt: 24\ncamera_enhance: 24\ncamera_front: 24\ncamera_indoor: 24\ncamera_outdoor: 24\ncamera_rear: 24\ncamera_roll: 24\ncameraswitch: 24\ncampaign: 24\ncancel: 24\ncancel_presentation: 24\ncancel_schedule_send: 24,20\ncandlestick_chart: 24,20\ncar_crash: 24,20\ncar_rental: 24,20\ncar_repair: 24,20\ncard_giftcard: 24\ncard_membership: 24\ncard_travel: 24\ncarpenter: 24\ncases: 24\ncasino: 24\ncast: 24\ncast_connected: 24\ncast_for_education: 24\ncastle: 24,20\ncatching_pokemon: 24,20\ncategory: 24\ncelebration: 24,20\ncell_tower: 24,20\ncell_wifi: 24\ncenter_focus_strong: 24\ncenter_focus_weak: 24\nchair: 24\nchair_alt: 24\nchalet: 24,20\nchange_circle: 24,20\nchange_history: 24\ncharging_station: 24\nchat: 24\nchat_bubble: 24\nchat_bubble_outline: 24\ncheck: 24\ncheck_box: 24\ncheck_box_outline_blank: 24\ncheck_circle: 24\ncheck_circle_outline: 24\nchecklist: 24,20\nchecklist_rtl: 24,20\ncheckroom: 24\nchevron_left: 24\nchevron_right: 24\nchild_care: 24\nchild_friendly: 24\nchrome_reader_mode: 24\nchurch: 24,20\ncircle: 24\ncircle_notifications: 24\nclass: 24\nclean_hands: 24\ncleaning_services: 24,20\nclear: 24\nclear_all: 24\nclose: 24\nclose_fullscreen: 24\nclosed_caption: 24\nclosed_caption_disabled: 24\nclosed_caption_off: 24\ncloud: 24\ncloud_circle: 24\ncloud_done: 24\ncloud_download: 24\ncloud_off: 24\ncloud_queue: 24\ncloud_sync: 24,20\ncloud_upload: 24\nco2: 24,20\nco_present: 24,20\ncode: 24\ncode_off: 24,20\ncoffee: 24\ncoffee_maker: 24\ncollections: 24\ncollections_bookmark: 24\ncolor_lens: 24\ncolorize: 24\ncomment: 24\ncomment_bank: 24,20\ncomments_disabled: 24,20\ncommit: 24,20\ncommute: 24\ncompare: 24\ncompare_arrows: 24\ncompass_calibration: 24\ncompost: 24,20\ncompress: 24\ncomputer: 24\nconfirmation_number: 24\nconnect_without_contact: 24\nconnected_tv: 24\nconnecting_airports: 24,20\nconstruction: 24,20\ncontact_emergency: 24,20\ncontact_mail: 24\ncontact_page: 24\ncontact_phone: 24\ncontact_support: 24\ncontactless: 24,20\ncontacts: 24\ncontent_copy: 24\ncontent_cut: 24\ncontent_paste: 24\ncontent_paste_go: 24,20\ncontent_paste_off: 24,20\ncontent_paste_search: 24,20\ncontrast: 24,20\ncontrol_camera: 24\ncontrol_point: 24\ncontrol_point_duplicate: 24\ncookie: 24,20\ncopy_all: 24,20\ncopyright: 24\ncoronavirus: 24\ncorporate_fare: 24\ncottage: 24,20\ncountertops: 24\ncreate: 24\ncreate_new_folder: 24\ncredit_card: 24\ncredit_card_off: 24,20\ncredit_score: 24\ncrib: 24,20\ncrisis_alert: 24,20\ncrop: 24\ncrop_16_9: 24,20\ncrop_3_2: 24,20\ncrop_5_4: 24,20\ncrop_7_5: 24,20\ncrop_din: 24\ncrop_free: 24\ncrop_landscape: 24\ncrop_original: 24\ncrop_portrait: 24\ncrop_rotate: 24\ncrop_square: 24\ncruelty_free: 24,20\ncss: 24,20\ncurrency_bitcoin: 24,20\ncurrency_exchange: 24,20\ncurrency_franc: 24,20\ncurrency_lira: 24,20\ncurrency_pound: 24,20\ncurrency_ruble: 24,20\ncurrency_rupee: 24,20\ncurrency_yen: 24,20\ncurrency_yuan: 24,20\ncurtains: 24,20\ncurtains_closed: 24,20\ncyclone: 24,20\ndangerous: 24,20\ndark_mode: 24,20\ndashboard: 24\ndashboard_customize: 24\ndata_array: 24,20\ndata_exploration: 24,20\ndata_object: 24,20\ndata_saver_off: 24\ndata_saver_on: 24\ndata_thresholding: 24,20\ndata_usage: 24\ndataset: 24,20\ndataset_linked: 24,20\ndate_range: 24\ndeblur: 24,20\ndeck: 24,20\ndehaze: 24\ndelete: 24\ndelete_forever: 24\ndelete_outline: 24\ndelete_sweep: 24\ndelivery_dining: 24,20\ndensity_large: 24,20\ndensity_medium: 24,20\ndensity_small: 24,20\ndeparture_board: 24\ndescription: 24\ndeselect: 24,20\ndesign_services: 24,20\ndesk: 24,20\ndesktop_access_disabled: 24\ndesktop_mac: 24\ndesktop_windows: 24\ndetails: 24\ndeveloper_board: 24\ndeveloper_board_off: 24,20\ndeveloper_mode: 24\ndevice_hub: 24\ndevice_thermostat: 24\ndevice_unknown: 24\ndevices: 24\ndevices_fold: 24,20\ndevices_other: 24\ndialer_sip: 24\ndialpad: 24\ndiamond: 24,20\ndifference: 24,20\ndining: 24\ndinner_dining: 24,20\ndirections: 24\ndirections_bike: 24\ndirections_boat: 24\ndirections_boat_filled: 24\ndirections_bus: 24\ndirections_bus_filled: 24\ndirections_car: 24\ndirections_car_filled: 24\ndirections_off: 24\ndirections_railway: 24\ndirections_railway_filled: 24\ndirections_run: 24\ndirections_subway: 24\ndirections_subway_filled: 24\ndirections_transit: 24\ndirections_transit_filled: 24\ndirections_walk: 24\ndirty_lens: 24\ndisabled_by_default: 24\ndisabled_visible: 24,20\ndisc_full: 24\ndiscount: 24,20\ndisplay_settings: 24,20\ndiversity_1: 24,20\ndiversity_2: 24,20\ndiversity_3: 24,20\ndns: 24\ndo_disturb: 24\ndo_disturb_alt: 24\ndo_disturb_off: 24\ndo_disturb_on: 24\ndo_not_disturb: 24\ndo_not_disturb_alt: 24\ndo_not_disturb_off: 24\ndo_not_disturb_on: 24\ndo_not_disturb_on_total_silence: 24\ndo_not_step: 24\ndo_not_touch: 24\ndock: 24\ndocument_scanner: 24,20\ndomain: 24\ndomain_add: 24,20\ndomain_disabled: 24\ndomain_verification: 24,20\ndone: 24\ndone_all: 24\ndone_outline: 24\ndonut_large: 24\ndonut_small: 24\ndoor_back: 24\ndoor_front: 24\ndoor_sliding: 24\ndoorbell: 24\ndouble_arrow: 24,20\ndownhill_skiing: 24,20\ndownload: 24\ndownload_done: 24\ndownload_for_offline: 24\ndownloading: 24\ndrafts: 24\ndrag_handle: 24\ndrag_indicator: 24\ndraw: 24,20\ndrive_eta: 24\ndrive_file_move: 24\ndrive_file_move_rtl: 24,20\ndrive_file_rename_outline: 24\ndrive_folder_upload: 24\ndry: 24\ndry_cleaning: 24,20\nduo: 24\ndvr: 24\ndynamic_feed: 24,20\ndynamic_form: 24\ne_mobiledata: 24\nearbuds: 24\nearbuds_battery: 24\neast: 24\neco: 24,20\nedgesensor_high: 24\nedgesensor_low: 24\nedit: 24\nedit_attributes: 24\nedit_calendar: 24,20\nedit_location: 24\nedit_location_alt: 24,20\nedit_note: 24,20\nedit_notifications: 24,20\nedit_off: 24\nedit_road: 24,20\negg: 24,20\negg_alt: 24,20\neject: 24\nelderly: 24\nelderly_woman: 24,20\nelectric_bike: 24,20\nelectric_bolt: 24,20\nelectric_car: 24,20\nelectric_meter: 24,20\nelectric_moped: 24,20\nelectric_rickshaw: 24,20\nelectric_scooter: 24,20\nelectrical_services: 24,20\nelevator: 24\nemail: 24\nemergency: 24,20\nemergency_recording: 24,20\nemergency_share: 24,20\nemoji_emotions: 24,20\nemoji_events: 24,20\nemoji_flags: 24,20\nemoji_food_beverage: 24,20\nemoji_nature: 24,20\nemoji_objects: 24,20\nemoji_people: 24,20\nemoji_symbols: 24,20\nemoji_transportation: 24,20\nenergy_savings_leaf: 24,20\nengineering: 24,20\nenhanced_encryption: 24\nequalizer: 24\nerror: 24\nerror_outline: 24\nescalator: 24\nescalator_warning: 24\neuro: 24,20\neuro_symbol: 24\nev_station: 24\nevent: 24\nevent_available: 24\nevent_busy: 24\nevent_note: 24\nevent_repeat: 24,20\nevent_seat: 24\nexit_to_app: 24\nexpand: 24\nexpand_circle_down: 24,20\nexpand_less: 24\nexpand_more: 24\nexplicit: 24\nexplore: 24\nexplore_off: 24\nexposure: 24\nexposure_neg_1: 24\nexposure_neg_2: 24\nexposure_plus_1: 24\nexposure_plus_2: 24\nexposure_zero: 24\nextension: 24\nextension_off: 24,20\nface: 24\nface_2: 24,20\nface_3: 24,20\nface_4: 24,20\nface_5: 24,20\nface_6: 24,20\nface_retouching_natural: 24\nface_retouching_off: 24\nface_unlock: 24\nfacebook: 24\nfact_check: 24,20\nfactory: 24,20\nfamily_restroom: 24\nfast_forward: 24\nfast_rewind: 24\nfastfood: 24\nfavorite: 24\nfavorite_border: 24\nfax: 24,20\nfeatured_play_list: 24\nfeatured_video: 24\nfeed: 24\nfeedback: 24\nfemale: 24,20\nfence: 24\nfestival: 24,20\nfiber_dvr: 24\nfiber_manual_record: 24\nfiber_new: 24\nfiber_pin: 24\nfiber_smart_record: 24\nfile_copy: 24\nfile_download: 24\nfile_download_done: 24\nfile_download_off: 24,20\nfile_open: 24,20\nfile_present: 24\nfile_upload: 24\nfilter: 24\nfilter_1: 24\nfilter_2: 24\nfilter_3: 24\nfilter_4: 24\nfilter_5: 24\nfilter_6: 24\nfilter_7: 24\nfilter_8: 24\nfilter_9: 24\nfilter_9_plus: 24\nfilter_alt: 24\nfilter_alt_off: 24,20\nfilter_b_and_w: 24\nfilter_center_focus: 24\nfilter_drama: 24\nfilter_frames: 24\nfilter_hdr: 24\nfilter_list: 24\nfilter_list_off: 24,20\nfilter_none: 24\nfilter_tilt_shift: 24\nfilter_vintage: 24\nfind_in_page: 24\nfind_replace: 24\nfingerprint: 24\nfire_extinguisher: 24\nfire_hydrant_alt: 24,20\nfire_truck: 24,20\nfireplace: 24,20\nfirst_page: 24\nfit_screen: 24\nfitbit: 24,20\nfitness_center: 24\nflag: 24\nflag_circle: 24,20\nflaky: 24,20\nflare: 24\nflash_auto: 24\nflash_off: 24\nflash_on: 24\nflashlight_off: 24\nflashlight_on: 24\nflatware: 24\nflight: 24\nflight_class: 24,20\nflight_land: 24\nflight_takeoff: 24\nflip: 24\nflip_camera_android: 24,20\nflip_camera_ios: 24,20\nflip_to_back: 24\nflip_to_front: 24\nflood: 24,20\nflourescent: 24\nfluorescent: 24\nflutter_dash: 24,20\nfmd_bad: 24\nfmd_good: 24\nfolder: 24\nfolder_copy: 24,20\nfolder_delete: 24,20\nfolder_off: 24,20\nfolder_open: 24\nfolder_shared: 24\nfolder_special: 24\nfolder_zip: 24,20\nfollow_the_signs: 24\nfont_download: 24\nfont_download_off: 24,20\nfood_bank: 24\nforest: 24,20\nfork_left: 24,20\nfork_right: 24,20\nformat_align_center: 24\nformat_align_justify: 24\nformat_align_left: 24\nformat_align_right: 24\nformat_bold: 24\nformat_clear: 24\nformat_color_fill: 24,20\nformat_color_reset: 24\nformat_color_text: 24,20\nformat_indent_decrease: 24\nformat_indent_increase: 24\nformat_italic: 24\nformat_line_spacing: 24\nformat_list_bulleted: 24\nformat_list_numbered: 24\nformat_list_numbered_rtl: 24\nformat_overline: 24,20\nformat_paint: 24\nformat_quote: 24\nformat_shapes: 24\nformat_size: 24\nformat_strikethrough: 24\nformat_textdirection_l_to_r: 24\nformat_textdirection_r_to_l: 24\nformat_underlined: 24\nfort: 24,20\nforum: 24\nforward: 24\nforward_10: 24\nforward_30: 24\nforward_5: 24\nforward_to_inbox: 24,20\nfoundation: 24\nfree_breakfast: 24\nfree_cancellation: 24,20\nfront_hand: 24,20\nfullscreen: 24\nfullscreen_exit: 24\nfunctions: 24\ng_mobiledata: 24\ng_translate: 24\ngamepad: 24\ngames: 24\ngarage: 24\ngas_meter: 24,20\ngavel: 24\ngenerating_tokens: 24,20\ngesture: 24\nget_app: 24\ngif: 24\ngif_box: 24,20\ngirl: 24,20\ngite: 24,20\ngolf_course: 24\ngpp_bad: 24\ngpp_good: 24\ngpp_maybe: 24\ngps_fixed: 24\ngps_not_fixed: 24\ngps_off: 24\ngrade: 24\ngradient: 24\ngrading: 24,20\ngrain: 24\ngraphic_eq: 24\ngrass: 24\ngrid_3x3: 24\ngrid_4x4: 24\ngrid_goldenratio: 24\ngrid_off: 24\ngrid_on: 24\ngrid_view: 24\ngroup: 24\ngroup_add: 24,20\ngroup_off: 24,20\ngroup_remove: 24,20\ngroup_work: 24\ngroups: 24\ngroups_2: 24,20\ngroups_3: 24,20\nh_mobiledata: 24\nh_plus_mobiledata: 24\nhail: 24\nhandshake: 24,20\nhandyman: 24,20\nhardware: 24,20\nhd: 24\nhdr_auto: 24\nhdr_auto_select: 24\nhdr_enhanced_select: 24\nhdr_off: 24\nhdr_off_select: 24\nhdr_on: 24\nhdr_on_select: 24\nhdr_plus: 24\nhdr_strong: 24\nhdr_weak: 24\nheadphones: 24\nheadphones_battery: 24\nheadset: 24\nheadset_mic: 24\nheadset_off: 24\nhealing: 24\nhealth_and_safety: 24\nhearing: 24\nhearing_disabled: 24,20\nheart_broken: 24,20\nheat_pump: 24,20\nheight: 24,20\nhelp: 24\nhelp_center: 24\nhelp_outline: 24\nhevc: 24\nhexagon: 24,20\nhide_image: 24\nhide_source: 24\nhigh_quality: 24\nhighlight: 24\nhighlight_alt: 24\nhighlight_off: 24\nhiking: 24,20\nhistory: 24\nhistory_edu: 24,20\nhistory_toggle_off: 24,20\nhive: 24,20\nhls: 24,20\nhls_off: 24,20\nholiday_village: 24,20\nhome: 24\nhome_max: 24\nhome_mini: 24\nhome_repair_service: 24,20\nhome_work: 24,20\nhorizontal_distribute: 24\nhorizontal_rule: 24,20\nhorizontal_split: 24\nhot_tub: 24\nhotel: 24\nhotel_class: 24,20\nhourglass_bottom: 24,20\nhourglass_disabled: 24,20\nhourglass_empty: 24\nhourglass_full: 24\nhourglass_top: 24,20\nhouse: 24,20\nhouse_siding: 24\nhouseboat: 24,20\nhow_to_reg: 24\nhow_to_vote: 24\nhtml: 24,20\nhttp: 24\nhttps: 24\nhub: 24,20\nhvac: 24,20\nice_skating: 24,20\nicecream: 24,20\nimage: 24\nimage_aspect_ratio: 24\nimage_not_supported: 24,20\nimage_search: 24\nimagesearch_roller: 24\nimport_contacts: 24\nimport_export: 24\nimportant_devices: 24\ninbox: 24\nincomplete_circle: 24,20\nindeterminate_check_box: 24\ninfo: 24\ninfo_outline: 24\ninput: 24\ninsert_chart: 24\ninsert_chart_outlined: 24\ninsert_comment: 24\ninsert_drive_file: 24\ninsert_emoticon: 24\ninsert_invitation: 24\ninsert_link: 24\ninsert_page_break: 24,20\ninsert_photo: 24\ninsights: 24,20\ninstall_desktop: 24,20\ninstall_mobile: 24,20\nintegration_instructions: 24\ninterests: 24,20\ninterpreter_mode: 24,20\ninventory: 24\ninventory_2: 24,20\ninvert_colors: 24,20\ninvert_colors_off: 24,20\nios_share: 24\niron: 24,20\niso: 24\njavascript: 24,20\njoin_full: 24,20\njoin_inner: 24,20\njoin_left: 24,20\njoin_right: 24,20\nkayaking: 24,20\nkebab_dining: 24,20\nkey: 24,20\nkey_off: 24,20\nkeyboard: 24\nkeyboard_alt: 24\nkeyboard_arrow_down: 24\nkeyboard_arrow_left: 24\nkeyboard_arrow_right: 24\nkeyboard_arrow_up: 24\nkeyboard_backspace: 24\nkeyboard_capslock: 24\nkeyboard_command_key: 24,20\nkeyboard_control_key: 24,20\nkeyboard_double_arrow_down: 24,20\nkeyboard_double_arrow_left: 24,20\nkeyboard_double_arrow_right: 24,20\nkeyboard_double_arrow_up: 24,20\nkeyboard_hide: 24\nkeyboard_option_key: 24,20\nkeyboard_return: 24\nkeyboard_tab: 24\nkeyboard_voice: 24\nking_bed: 24,20\nkitchen: 24\nkitesurfing: 24,20\nlabel: 24\nlabel_important: 24\nlabel_important_outline: 24\nlabel_off: 24\nlabel_outline: 24\nlan: 24,20\nlandscape: 24\nlandslide: 24,20\nlanguage: 24\nlaptop: 24\nlaptop_chromebook: 24\nlaptop_mac: 24\nlaptop_windows: 24\nlast_page: 24\nlaunch: 24\nlayers: 24\nlayers_clear: 24\nleaderboard: 24\nleak_add: 24\nleak_remove: 24\nlegend_toggle: 24,20\nlens: 24\nlens_blur: 24\nlibrary_add: 24\nlibrary_add_check: 24,20\nlibrary_books: 24\nlibrary_music: 24\nlight: 24\nlight_mode: 24,20\nlightbulb: 24\nlightbulb_circle: 24,20\nlightbulb_outline: 24\nline_axis: 24,20\nline_style: 24\nline_weight: 24\nlinear_scale: 24\nlink: 24\nlink_off: 24\nlinked_camera: 24\nliquor: 24,20\nlist: 24\nlist_alt: 24\nlive_help: 24\nlive_tv: 24\nliving: 24\nlocal_activity: 24\nlocal_airport: 24,20\nlocal_atm: 24\nlocal_bar: 24\nlocal_cafe: 24\nlocal_car_wash: 24\nlocal_convenience_store: 24\nlocal_dining: 24\nlocal_drink: 24\nlocal_fire_department: 24,20\nlocal_florist: 24\nlocal_gas_station: 24\nlocal_grocery_store: 24\nlocal_hospital: 24\nlocal_hotel: 24\nlocal_laundry_service: 24\nlocal_library: 24\nlocal_mall: 24\nlocal_movies: 24\nlocal_offer: 24\nlocal_parking: 24\nlocal_pharmacy: 24\nlocal_phone: 24\nlocal_pizza: 24\nlocal_play: 24\nlocal_police: 24\nlocal_post_office: 24\nlocal_printshop: 24\nlocal_see: 24\nlocal_shipping: 24\nlocal_taxi: 24\nlocation_city: 24\nlocation_disabled: 24\nlocation_off: 24\nlocation_on: 24\nlocation_searching: 24\nlock: 24\nlock_clock: 24,20\nlock_open: 24\nlock_outline: 24\nlock_person: 24,20\nlock_reset: 24,20\nlogin: 24,20\nlogo_dev: 24,20\nlogout: 24\nlooks: 24\nlooks_3: 24\nlooks_4: 24\nlooks_5: 24\nlooks_6: 24\nlooks_one: 24\nlooks_two: 24\nloop: 24\nloupe: 24\nlow_priority: 24\nloyalty: 24\nlte_mobiledata: 24\nlte_plus_mobiledata: 24\nluggage: 24\nlunch_dining: 24,20\nlyrics: 24,20\nmacro_off: 24,20\nmail: 24\nmail_lock: 24,20\nmail_outline: 24\nmale: 24,20\nman: 24,20\nman_2: 24,20\nman_3: 24,20\nman_4: 24,20\nmanage_accounts: 24\nmanage_history: 24,20\nmanage_search: 24\nmap: 24\nmaps_home_work: 24\nmaps_ugc: 24\nmargin: 24\nmark_as_unread: 24,20\nmark_chat_read: 24,20\nmark_chat_unread: 24,20\nmark_email_read: 24,20\nmark_email_unread: 24,20\nmark_unread_chat_alt: 24,20\nmarkunread: 24\nmarkunread_mailbox: 24\nmasks: 24\nmaximize: 24\nmedia_bluetooth_off: 24\nmedia_bluetooth_on: 24\nmediation: 24\nmedical_information: 24,20\nmedical_services: 24,20\nmedication: 24\nmedication_liquid: 24,20\nmeeting_room: 24\nmemory: 24\nmenu: 24\nmenu_book: 24\nmenu_open: 24\nmerge: 24,20\nmerge_type: 24\nmessage: 24\nmic: 24\nmic_external_off: 24\nmic_external_on: 24\nmic_none: 24\nmic_off: 24\nmicrowave: 24\nmilitary_tech: 24,20\nminimize: 24\nminor_crash: 24,20\nmiscellaneous_services: 24,20\nmissed_video_call: 24\nmms: 24\nmobile_friendly: 24\nmobile_off: 24\nmobile_screen_share: 24\nmobiledata_off: 24\nmode: 24\nmode_comment: 24\nmode_edit: 24\nmode_edit_outline: 24,20\nmode_fan_off: 24,20\nmode_night: 24\nmode_of_travel: 24,20\nmode_standby: 24\nmodel_training: 24,20\nmonetization_on: 24\nmoney: 24\nmoney_off: 24\nmoney_off_csred: 24\nmonitor: 24\nmonitor_heart: 24,20\nmonitor_weight: 24\nmonochrome_photos: 24\nmood: 24\nmood_bad: 24\nmoped: 24,20\nmore: 24\nmore_horiz: 24\nmore_time: 24,20\nmore_vert: 24\nmosque: 24,20\nmotion_photos_auto: 24\nmotion_photos_off: 24\nmotion_photos_on: 24,20\nmotion_photos_pause: 24,20\nmotion_photos_paused: 24\nmouse: 24\nmove_down: 24,20\nmove_to_inbox: 24\nmove_up: 24,20\nmovie: 24\nmovie_creation: 24\nmovie_filter: 24\nmoving: 24,20\nmp: 24\nmultiline_chart: 24\nmultiple_stop: 24\nmuseum: 24,20\nmusic_note: 24\nmusic_off: 24\nmusic_video: 24\nmy_location: 24\nnat: 24,20\nnature: 24\nnature_people: 24\nnavigate_before: 24\nnavigate_next: 24\nnavigation: 24\nnear_me: 24\nnear_me_disabled: 24\nnearby_error: 24\nnearby_off: 24\nnest_cam_wired_stand: 24,20\nnetwork_cell: 24\nnetwork_check: 24\nnetwork_locked: 24\nnetwork_ping: 24,20\nnetwork_wifi: 24\nnetwork_wifi_1_bar: 24,20\nnetwork_wifi_2_bar: 24,20\nnetwork_wifi_3_bar: 24,20\nnew_label: 24,20\nnew_releases: 24\nnewspaper: 24,20\nnext_plan: 24,20\nnext_week: 24\nnfc: 24\nnight_shelter: 24\nnightlife: 24,20\nnightlight: 24\nnightlight_round: 24\nnights_stay: 24,20\nno_accounts: 24\nno_adult_content: 24,20\nno_backpack: 24\nno_cell: 24\nno_crash: 24,20\nno_drinks: 24\nno_encryption: 24\nno_encryption_gmailerrorred: 24\nno_flash: 24\nno_food: 24\nno_luggage: 24\nno_meals: 24\nno_meeting_room: 24\nno_photography: 24\nno_sim: 24\nno_stroller: 24\nno_transfer: 24\nnoise_aware: 24,20\nnoise_control_off: 24,20\nnordic_walking: 24,20\nnorth: 24\nnorth_east: 24\nnorth_west: 24\nnot_accessible: 24,20\nnot_interested: 24\nnot_listed_location: 24\nnot_started: 24,20\nnote: 24\nnote_add: 24\nnote_alt: 24\nnotes: 24\nnotification_add: 24,20\nnotification_important: 24\nnotifications: 24\nnotifications_active: 24\nnotifications_none: 24\nnotifications_off: 24\nnotifications_paused: 24\nnumbers: 24,20\noffline_bolt: 24\noffline_pin: 24\noffline_share: 24\noil_barrel: 24,20\non_device_training: 24,20\nondemand_video: 24\nonline_prediction: 24,20\nopacity: 24\nopen_in_browser: 24\nopen_in_full: 24\nopen_in_new: 24\nopen_in_new_off: 24,20\nopen_with: 24\nother_houses: 24,20\noutbond: 24\noutbound: 24\noutbox: 24,20\noutdoor_grill: 24,20\noutlet: 24\noutlined_flag: 24\noutput: 24,20\npadding: 24\npages: 24\npageview: 24\npaid: 24\npalette: 24,20\npan_tool: 24\npan_tool_alt: 24,20\npanorama: 24\npanorama_fish_eye: 24\npanorama_horizontal: 24\npanorama_horizontal_select: 24\npanorama_photosphere: 24\npanorama_photosphere_select: 24\npanorama_vertical: 24\npanorama_vertical_select: 24\npanorama_wide_angle: 24\npanorama_wide_angle_select: 24\nparagliding: 24,20\npark: 24,20\nparty_mode: 24\npassword: 24\npattern: 24\npause: 24\npause_circle: 24,20\npause_circle_filled: 24\npause_circle_outline: 24\npause_presentation: 24\npayment: 24\npayments: 24\npedal_bike: 24,20\npending: 24,20\npending_actions: 24\npentagon: 24,20\npeople: 24\npeople_alt: 24,20\npeople_outline: 24\npercent: 24,20\nperm_camera_mic: 24\nperm_contact_calendar: 24\nperm_data_setting: 24\nperm_device_information: 24\nperm_identity: 24\nperm_media: 24\nperm_phone_msg: 24\nperm_scan_wifi: 24\nperson: 24\nperson_2: 24,20\nperson_3: 24,20\nperson_4: 24,20\nperson_add: 24\nperson_add_alt: 24,20\nperson_add_alt_1: 24,20\nperson_add_disabled: 24\nperson_off: 24,20\nperson_outline: 24\nperson_pin: 24\nperson_pin_circle: 24\nperson_remove: 24,20\nperson_remove_alt_1: 24,20\nperson_search: 24,20\npersonal_injury: 24,20\npersonal_video: 24\npest_control: 24,20\npest_control_rodent: 24,20\npets: 24\nphishing: 24,20\nphone: 24\nphone_android: 24\nphone_bluetooth_speaker: 24\nphone_callback: 24\nphone_disabled: 24\nphone_enabled: 24\nphone_forwarded: 24\nphone_in_talk: 24\nphone_iphone: 24\nphone_locked: 24,20\nphone_missed: 24\nphone_paused: 24\nphonelink: 24\nphonelink_erase: 24\nphonelink_lock: 24\nphonelink_off: 24\nphonelink_ring: 24\nphonelink_setup: 24\nphoto: 24\nphoto_album: 24,20\nphoto_camera: 24\nphoto_camera_back: 24\nphoto_camera_front: 24\nphoto_filter: 24\nphoto_library: 24\nphoto_size_select_actual: 24\nphoto_size_select_large: 24\nphoto_size_select_small: 24\nphp: 24,20\npiano: 24,20\npiano_off: 24,20\npicture_as_pdf: 24\npicture_in_picture: 24\npicture_in_picture_alt: 24\npie_chart: 24\npie_chart_outline: 24\npin: 24\npin_drop: 24\npin_end: 24,20\npin_invoke: 24,20\npinch: 24,20\npivot_table_chart: 24\npix: 24,20\nplace: 24\nplagiarism: 24,20\nplay_arrow: 24\nplay_circle: 24,20\nplay_circle_filled: 24\nplay_circle_outline: 24\nplay_disabled: 24\nplay_for_work: 24\nplay_lesson: 24\nplaylist_add: 24,20\nplaylist_add_check: 24,20\nplaylist_add_check_circle: 24,20\nplaylist_add_circle: 24,20\nplaylist_play: 24,20\nplaylist_remove: 24,20\nplumbing: 24,20\nplus_one: 24\npodcasts: 24\npoint_of_sale: 24,20\npolicy: 24,20\npoll: 24\npolyline: 24,20\npolymer: 24\npool: 24\nportable_wifi_off: 24\nportrait: 24\npost_add: 24,20\npower: 24\npower_input: 24\npower_off: 24\npower_settings_new: 24\nprecision_manufacturing: 24,20\npregnant_woman: 24\npresent_to_all: 24\npreview: 24\nprice_change: 24\nprice_check: 24\nprint: 24\nprint_disabled: 24\npriority_high: 24\nprivacy_tip: 24,20\nprivate_connectivity: 24,20\nproduction_quantity_limits: 24\npropane: 24,20\npropane_tank: 24,20\npsychology: 24,20\npsychology_alt: 24,20\npublic: 24\npublic_off: 24\npublish: 24\npublished_with_changes: 24\npunch_clock: 24,20\npush_pin: 24,20\nqr_code: 24,20\nqr_code_2: 24\nqr_code_scanner: 24\nquery_builder: 24\nquery_stats: 24,20\nquestion_answer: 24\nquestion_mark: 24,20\nqueue: 24\nqueue_music: 24,20\nqueue_play_next: 24\nquickreply: 24,20\nquiz: 24\nr_mobiledata: 24\nradar: 24\nradio: 24\nradio_button_checked: 24\nradio_button_unchecked: 24\nrailway_alert: 24\nramen_dining: 24,20\nramp_left: 24,20\nramp_right: 24,20\nrate_review: 24\nraw_off: 24\nraw_on: 24\nread_more: 24,20\nreal_estate_agent: 24,20\nreceipt: 24\nreceipt_long: 24\nrecent_actors: 24\nrecommend: 24\nrecord_voice_over: 24\nrectangle: 24,20\nrecycling: 24,20\nredeem: 24\nredo: 24\nreduce_capacity: 24\nrefresh: 24\nremember_me: 24\nremove: 24\nremove_circle: 24\nremove_circle_outline: 24\nremove_done: 24\nremove_from_queue: 24\nremove_moderator: 24\nremove_red_eye: 24\nremove_road: 24,20\nremove_shopping_cart: 24\nreorder: 24\nrepartition: 24,20\nrepeat: 24\nrepeat_on: 24\nrepeat_one: 24\nrepeat_one_on: 24\nreplay: 24\nreplay_10: 24\nreplay_30: 24\nreplay_5: 24\nreplay_circle_filled: 24\nreply: 24\nreply_all: 24\nreport: 24\nreport_gmailerrorred: 24\nreport_off: 24\nreport_problem: 24\nrequest_page: 24\nrequest_quote: 24\nreset_tv: 24\nrestart_alt: 24\nrestaurant: 24\nrestaurant_menu: 24\nrestore: 24\nrestore_from_trash: 24\nrestore_page: 24\nreviews: 24\nrice_bowl: 24\nring_volume: 24\nrocket: 24,20\nrocket_launch: 24,20\nroller_shades: 24,20\nroller_shades_closed: 24,20\nroller_skating: 24,20\nroofing: 24\nroom: 24\nroom_preferences: 24\nroom_service: 24\nrotate_90_degrees_ccw: 24\nrotate_90_degrees_cw: 24,20\nrotate_left: 24\nrotate_right: 24\nroundabout_left: 24,20\nroundabout_right: 24,20\nrounded_corner: 24\nroute: 24,20\nrouter: 24\nrowing: 24\nrss_feed: 24\nrsvp: 24\nrtt: 24\nrule: 24\nrule_folder: 24\nrun_circle: 24,20\nrunning_with_errors: 24,20\nrv_hookup: 24\nsafety_check: 24,20\nsafety_divider: 24\nsailing: 24,20\nsanitizer: 24\nsatellite: 24\nsatellite_alt: 24,20\nsave: 24\nsave_alt: 24\nsave_as: 24,20\nsaved_search: 24\nsavings: 24,20\nscale: 24,20\nscanner: 24\nscatter_plot: 24\nschedule: 24\nschedule_send: 24\nschema: 24,20\nschool: 24\nscience: 24,20\nscore: 24\nscoreboard: 24,20\nscreen_lock_landscape: 24\nscreen_lock_portrait: 24\nscreen_lock_rotation: 24\nscreen_rotation: 24\nscreen_rotation_alt: 24,20\nscreen_search_desktop: 24\nscreen_share: 24\nscreenshot: 24\nscreenshot_monitor: 24,20\nscuba_diving: 24,20\nsd: 24\nsd_card: 24\nsd_card_alert: 24\nsd_storage: 24\nsearch: 24\nsearch_off: 24,20\nsecurity: 24\nsecurity_update: 24\nsecurity_update_good: 24\nsecurity_update_warning: 24\nsegment: 24\nselect_all: 24\nself_improvement: 24,20\nsell: 24\nsend: 24\nsend_and_archive: 24,20\nsend_time_extension: 24,20\nsend_to_mobile: 24\nsensor_door: 24,20\nsensor_occupied: 24,20\nsensor_window: 24,20\nsensors: 24,20\nsensors_off: 24,20\nsentiment_dissatisfied: 24\nsentiment_neutral: 24\nsentiment_satisfied: 24\nsentiment_satisfied_alt: 24\nsentiment_very_dissatisfied: 24\nsentiment_very_satisfied: 24\nset_meal: 24\nsettings: 24\nsettings_accessibility: 24\nsettings_applications: 24\nsettings_backup_restore: 24\nsettings_bluetooth: 24\nsettings_brightness: 24\nsettings_cell: 24\nsettings_ethernet: 24\nsettings_input_antenna: 24\nsettings_input_component: 24\nsettings_input_composite: 24\nsettings_input_hdmi: 24\nsettings_input_svideo: 24\nsettings_overscan: 24\nsettings_phone: 24\nsettings_power: 24\nsettings_remote: 24\nsettings_suggest: 24\nsettings_system_daydream: 24\nsettings_voice: 24\nsevere_cold: 24,20\nshape_line: 24,20\nshare: 24\nshare_location: 24\nshield: 24\nshield_moon: 24,20\nshop: 24\nshop_2: 24,20\nshop_two: 24\nshopping_bag: 24\nshopping_basket: 24\nshopping_cart: 24\nshopping_cart_checkout: 24,20\nshort_text: 24\nshortcut: 24\nshow_chart: 24\nshower: 24\nshuffle: 24\nshuffle_on: 24\nshutter_speed: 24\nsick: 24\nsign_language: 24,20\nsignal_cellular_0_bar: 24\nsignal_cellular_1_bar: 24\nsignal_cellular_2_bar: 24\nsignal_cellular_3_bar: 24\nsignal_cellular_4_bar: 24\nsignal_cellular_alt: 24\nsignal_cellular_alt_1_bar: 24,20\nsignal_cellular_alt_2_bar: 24,20\nsignal_cellular_connected_no_internet_0_bar: 24,20\nsignal_cellular_connected_no_internet_1_bar: 24\nsignal_cellular_connected_no_internet_2_bar: 24\nsignal_cellular_connected_no_internet_3_bar: 24\nsignal_cellular_connected_no_internet_4_bar: 24,20\nsignal_cellular_no_sim: 24\nsignal_cellular_nodata: 24\nsignal_cellular_null: 24\nsignal_cellular_off: 24\nsignal_wifi_0_bar: 24\nsignal_wifi_1_bar: 24\nsignal_wifi_1_bar_lock: 24\nsignal_wifi_2_bar: 24\nsignal_wifi_2_bar_lock: 24\nsignal_wifi_3_bar: 24\nsignal_wifi_3_bar_lock: 24\nsignal_wifi_4_bar: 24\nsignal_wifi_4_bar_lock: 24,20\nsignal_wifi_bad: 24\nsignal_wifi_connected_no_internet_0: 24\nsignal_wifi_connected_no_internet_1: 24\nsignal_wifi_connected_no_internet_2: 24\nsignal_wifi_connected_no_internet_3: 24\nsignal_wifi_connected_no_internet_4: 24\nsignal_wifi_off: 24\nsignal_wifi_statusbar_1_bar: 24\nsignal_wifi_statusbar_2_bar: 24\nsignal_wifi_statusbar_3_bar: 24\nsignal_wifi_statusbar_4_bar: 24\nsignal_wifi_statusbar_connected_no_internet: 24\nsignal_wifi_statusbar_connected_no_internet_1: 24\nsignal_wifi_statusbar_connected_no_internet_2: 24\nsignal_wifi_statusbar_connected_no_internet_3: 24\nsignal_wifi_statusbar_connected_no_internet_4: 24,20\nsignal_wifi_statusbar_not_connected: 24\nsignal_wifi_statusbar_null: 24\nsignpost: 24,20\nsim_card: 24\nsim_card_alert: 24\nsim_card_download: 24\nsingle_bed: 24,20\nsip: 24\nskateboarding: 24,20\nskip_next: 24\nskip_previous: 24\nsledding: 24,20\nslideshow: 24\nslow_motion_video: 24\nsmart_button: 24\nsmart_display: 24\nsmart_screen: 24\nsmart_toy: 24\nsmartphone: 24\nsmoke_free: 24\nsmoking_rooms: 24\nsms: 24\nsms_failed: 24\nsnippet_folder: 24\nsnooze: 24\nsnowboarding: 24,20\nsnowmobile: 24,20\nsnowshoeing: 24,20\nsoap: 24\nsocial_distance: 24\nsolar_power: 24,20\nsort: 24\nsort_by_alpha: 24\nsos: 24,20\nsoup_kitchen: 24,20\nsource: 24\nsouth: 24\nsouth_america: 24,20\nsouth_east: 24\nsouth_west: 24\nspa: 24\nspace_bar: 24\nspace_dashboard: 24,20\nspatial_audio: 24,20\nspatial_audio_off: 24,20\nspatial_tracking: 24,20\nspeaker: 24\nspeaker_group: 24\nspeaker_notes: 24\nspeaker_notes_off: 24\nspeaker_phone: 24\nspeed: 24\nspellcheck: 24\nsplitscreen: 24\nspoke: 24,20\nsports: 24,20\nsports_bar: 24,20\nsports_baseball: 24,20\nsports_basketball: 24,20\nsports_cricket: 24,20\nsports_esports: 24,20\nsports_football: 24,20\nsports_golf: 24,20\nsports_gymnastics: 24,20\nsports_handball: 24,20\nsports_hockey: 24,20\nsports_kabaddi: 24,20\nsports_martial_arts: 24,20\nsports_mma: 24,20\nsports_motorsports: 24,20\nsports_rugby: 24,20\nsports_score: 24\nsports_soccer: 24,20\nsports_tennis: 24,20\nsports_volleyball: 24,20\nsquare: 24,20\nsquare_foot: 24,20\nssid_chart: 24,20\nstacked_bar_chart: 24,20\nstacked_line_chart: 24\nstadium: 24,20\nstairs: 24\nstar: 24\nstar_border: 24\nstar_border_purple500: 24\nstar_half: 24\nstar_outline: 24\nstar_purple500: 24\nstar_rate: 24,18\nstars: 24\nstart: 24,20\nstay_current_landscape: 24\nstay_current_portrait: 24\nstay_primary_landscape: 24\nstay_primary_portrait: 24\nsticky_note_2: 24\nstop: 24\nstop_circle: 24,20\nstop_screen_share: 24\nstorage: 24\nstore: 24\nstore_mall_directory: 24\nstorefront: 24\nstorm: 24\nstraight: 24,20\nstraighten: 24\nstream: 24\nstreetview: 24\nstrikethrough_s: 24\nstroller: 24\nstyle: 24\nsubdirectory_arrow_left: 24\nsubdirectory_arrow_right: 24\nsubject: 24\nsubscript: 24,20\nsubscriptions: 24\nsubtitles: 24\nsubtitles_off: 24,20\nsubway: 24\nsummarize: 24\nsuperscript: 24,20\nsupervised_user_circle: 24\nsupervisor_account: 24\nsupport: 24,20\nsupport_agent: 24,20\nsurfing: 24,20\nsurround_sound: 24\nswap_calls: 24\nswap_horiz: 24\nswap_horizontal_circle: 24\nswap_vert: 24\nswap_vertical_circle: 24\nswipe: 24,20\nswipe_down: 24,20\nswipe_down_alt: 24,20\nswipe_left: 24,20\nswipe_left_alt: 24,20\nswipe_right: 24,20\nswipe_right_alt: 24,20\nswipe_up: 24,20\nswipe_up_alt: 24,20\nswipe_vertical: 24,20\nswitch_access_shortcut: 24,20\nswitch_access_shortcut_add: 24,20\nswitch_account: 24\nswitch_camera: 24\nswitch_left: 24\nswitch_right: 24\nswitch_video: 24\nsynagogue: 24,20\nsync: 24\nsync_alt: 24,20\nsync_disabled: 24\nsync_lock: 24,20\nsync_problem: 24\nsystem_security_update: 24\nsystem_security_update_good: 24\nsystem_security_update_warning: 24\nsystem_update: 24\nsystem_update_alt: 24\ntab: 24\ntab_unselected: 24\ntable_bar: 24,20\ntable_chart: 24\ntable_restaurant: 24,20\ntable_rows: 24,20\ntable_view: 24\ntablet: 24\ntablet_android: 24\ntablet_mac: 24\ntag: 24\ntag_faces: 24\ntakeout_dining: 24,20\ntap_and_play: 24\ntapas: 24\ntask: 24\ntask_alt: 24\ntaxi_alert: 24\ntemple_buddhist: 24,20\ntemple_hindu: 24,20\nterminal: 24,20\nterrain: 24\ntext_decrease: 24,20\ntext_fields: 24\ntext_format: 24\ntext_increase: 24,20\ntext_rotate_up: 24\ntext_rotate_vertical: 24\ntext_rotation_angledown: 24\ntext_rotation_angleup: 24\ntext_rotation_down: 24\ntext_rotation_none: 24\ntext_snippet: 24\ntextsms: 24\ntexture: 24\ntheater_comedy: 24,20\ntheaters: 24\nthermostat: 24\nthermostat_auto: 24\nthumb_down: 24\nthumb_down_alt: 24\nthumb_down_off_alt: 24\nthumb_up: 24\nthumb_up_alt: 24\nthumb_up_off_alt: 24\nthumbs_up_down: 24\nthunderstorm: 24,20\ntime_to_leave: 24\ntimelapse: 24\ntimeline: 24\ntimer: 24,20\ntimer_10: 24\ntimer_10_select: 24\ntimer_3: 24\ntimer_3_select: 24\ntimer_off: 24,20\ntips_and_updates: 24,20\ntire_repair: 24,20\ntitle: 24\ntoc: 24\ntoday: 24\ntoggle_off: 24\ntoggle_on: 24\ntoken: 24,20\ntoll: 24\ntonality: 24\ntopic: 24\ntornado: 24,20\ntouch_app: 24\ntour: 24\ntoys: 24,20\ntrack_changes: 24\ntraffic: 24\ntrain: 24\ntram: 24\ntranscribe: 24,20\ntransfer_within_a_station: 24\ntransform: 24\ntransgender: 24,20\ntransit_enterexit: 24\ntranslate: 24\ntravel_explore: 24,20\ntrending_down: 24\ntrending_flat: 24\ntrending_up: 24\ntrip_origin: 24\ntroubleshoot: 24,20\ntry: 24\ntsunami: 24,20\ntty: 24\ntune: 24\ntungsten: 24\nturn_left: 24,20\nturn_right: 24,20\nturn_sharp_left: 24,20\nturn_sharp_right: 24,20\nturn_slight_left: 24,20\nturn_slight_right: 24,20\nturned_in: 24\nturned_in_not: 24\ntv: 24\ntv_off: 24\ntwo_wheeler: 24,20\ntype_specimen: 24,20\nu_turn_left: 24,20\nu_turn_right: 24,20\numbrella: 24\nunarchive: 24\nundo: 24\nunfold_less: 24\nunfold_less_double: 24,20\nunfold_more: 24\nunfold_more_double: 24,20\nunpublished: 24\nunsubscribe: 24\nupcoming: 24\nupdate: 24\nupdate_disabled: 24,20\nupgrade: 24,20\nupload: 24\nupload_file: 24\nusb: 24\nusb_off: 24,20\nvaccines: 24,20\nvape_free: 24,20\nvaping_rooms: 24,20\nverified: 24,20\nverified_user: 24\nvertical_align_bottom: 24\nvertical_align_center: 24\nvertical_align_top: 24\nvertical_distribute: 24\nvertical_shades: 24,20\nvertical_shades_closed: 24,20\nvertical_split: 24\nvibration: 24\nvideo_call: 24\nvideo_camera_back: 24\nvideo_camera_front: 24\nvideo_chat: 24,20\nvideo_file: 24,20\nvideo_label: 24\nvideo_library: 24\nvideo_settings: 24,20\nvideo_stable: 24\nvideocam: 24\nvideocam_off: 24\nvideogame_asset: 24\nvideogame_asset_off: 24,20\nview_agenda: 24,20\nview_array: 24,20\nview_carousel: 24,20\nview_column: 24,20\nview_comfy: 24,20\nview_comfy_alt: 24,20\nview_compact: 24,20\nview_compact_alt: 24,20\nview_cozy: 24,20\nview_day: 24\nview_headline: 24\nview_in_ar: 24\nview_kanban: 24,20\nview_list: 24,20\nview_module: 24,20\nview_quilt: 24,20\nview_sidebar: 24,20\nview_stream: 24,20\nview_timeline: 24,20\nview_week: 24,20\nvignette: 24\nvilla: 24,20\nvisibility: 24\nvisibility_off: 24\nvoice_chat: 24\nvoice_over_off: 24\nvoicemail: 24\nvolcano: 24,20\nvolume_down: 24\nvolume_mute: 24\nvolume_off: 24\nvolume_up: 24\nvolunteer_activism: 24,20\nvpn_key: 24\nvpn_key_off: 24,20\nvpn_lock: 24\nvrpano: 24\nwallet: 24,20\nwallpaper: 24\nwarehouse: 24,20\nwarning: 24\nwarning_amber: 24\nwash: 24\nwatch: 24\nwatch_later: 24\nwatch_off: 24,20\nwater: 24\nwater_damage: 24\nwater_drop: 24,20\nwaterfall_chart: 24\nwaves: 24\nwaving_hand: 24,20\nwb_auto: 24\nwb_cloudy: 24\nwb_incandescent: 24\nwb_iridescent: 24\nwb_shade: 24\nwb_sunny: 24\nwb_twilight: 24,20\nwc: 24\nweb: 24\nweb_asset: 24\nweb_asset_off: 24,20\nweb_stories: 24,20\nwebhook: 24,20\nweekend: 24\nwest: 24\nwhatsapp: 24,20\nwhatshot: 24\nwheelchair_pickup: 24\nwhere_to_vote: 24\nwidgets: 24\nwidth_full: 24,20\nwidth_normal: 24,20\nwidth_wide: 24,20\nwifi: 24\nwifi_1_bar: 24,20\nwifi_2_bar: 24,20\nwifi_calling: 24,20\nwifi_calling_1: 24\nwifi_calling_2: 24\nwifi_calling_3: 24\nwifi_channel: 24,20\nwifi_find: 24,20\nwifi_lock: 24,20\nwifi_off: 24\nwifi_password: 24,20\nwifi_protected_setup: 24,20\nwifi_tethering: 24\nwifi_tethering_error: 24,20\nwifi_tethering_error_rounded: 24\nwifi_tethering_off: 24\nwind_power: 24,20\nwindow: 24,20\nwine_bar: 24\nwoman: 24,20\nwoman_2: 24,20\nwork: 24\nwork_history: 24,20\nwork_off: 24\nwork_outline: 24\nworkspace_premium: 24,20\nworkspaces: 24,20\nwrap_text: 24\nwrong_location: 24,20\nwysiwyg: 24\nyard: 24\nyoutube_searched_for: 24\nzoom_in: 24\nzoom_in_map: 24,20\nzoom_out: 24\nzoom_out_map: 24\n"
  },
  {
    "path": "tests/test_misc/test_octicons.txt",
    "content": "accessibility: 16\naccessibility-inset: 16\nalert: 16,24\nalert-fill: 12,16,24\napps: 16\narchive: 16,24\narrow-both: 16,24\narrow-down: 16,24\narrow-down-left: 16,24\narrow-down-right: 16,24\narrow-left: 16,24\narrow-right: 16,24\narrow-switch: 16,24\narrow-up: 16,24\narrow-up-left: 16,24\narrow-up-right: 16,24\nbeaker: 16,24\nbell: 16,24\nbell-fill: 16,24\nbell-slash: 16,24\nblocked: 16,24\nbold: 16,24\nbook: 16,24\nbookmark: 16,24\nbookmark-fill: 24\nbookmark-slash: 16,24\nbookmark-slash-fill: 24\nbriefcase: 16,24\nbroadcast: 16,24\nbrowser: 16,24\nbug: 16,24\ncache: 16\ncalendar: 16,24\ncheck: 16,24\ncheck-circle: 16,24\ncheck-circle-fill: 12,16,24\ncheckbox: 16,24\nchecklist: 16,24\nchevron-down: 12,16,24\nchevron-left: 16,24\nchevron-right: 12,16,24\nchevron-up: 12,16,24\ncircle: 16,24\ncircle-slash: 16,24\nclock: 16,24\nclock-fill: 16,24\ncloud: 16,24\ncloud-offline: 16,24\ncode: 16,24\ncode-of-conduct: 16,24\ncode-review: 16,24\ncode-square: 16,24\ncodescan: 16,24\ncodescan-checkmark: 16,24\ncodespaces: 16,24\ncolumns: 16,24\ncommand-palette: 16,24\ncomment: 16,24\ncomment-discussion: 16,24\ncommit: 24\ncontainer: 16,24\ncopilot: 16,24,48,96\ncopilot-error: 16\ncopilot-warning: 16\ncopy: 16,24\ncpu: 16,24\ncredit-card: 16,24\ncross-reference: 16,24\ndash: 16,24\ndatabase: 16,24\ndependabot: 16,24\ndesktop-download: 16,24\ndevice-camera: 16\ndevice-camera-video: 16,24\ndevice-desktop: 16,24\ndevice-mobile: 16,24\ndevices: 16,24\ndiamond: 16,24\ndiff: 16,24\ndiff-added: 16\ndiff-ignored: 16\ndiff-modified: 16\ndiff-removed: 16\ndiff-renamed: 16\ndiscussion-closed: 16,24\ndiscussion-duplicate: 16,24\ndiscussion-outdated: 16,24\ndot: 16,24\ndot-fill: 16,24\ndownload: 16,24\nduplicate: 16,24\nellipsis: 16\neye: 16,24\neye-closed: 16,24\nfeed-discussion: 16\nfeed-forked: 16\nfeed-heart: 16\nfeed-issue-closed: 16\nfeed-issue-draft: 16\nfeed-issue-open: 16\nfeed-issue-reopen: 16\nfeed-merged: 16\nfeed-person: 16\nfeed-plus: 16\nfeed-public: 16\nfeed-pull-request-closed: 16\nfeed-pull-request-draft: 16\nfeed-pull-request-open: 16\nfeed-repo: 16\nfeed-rocket: 16\nfeed-star: 16\nfeed-tag: 16\nfeed-trophy: 16\nfile: 16,24\nfile-added: 16\nfile-badge: 16\nfile-binary: 16,24\nfile-code: 16,24\nfile-diff: 16,24\nfile-directory: 16,24\nfile-directory-fill: 16,24\nfile-directory-open-fill: 16\nfile-directory-symlink: 16,24\nfile-media: 24\nfile-moved: 16\nfile-removed: 16\nfile-submodule: 16,24\nfile-symlink-file: 16,24\nfile-zip: 16,24\nfilter: 16,24\nfilter-remove: 16,24\nfiscal-host: 16\nflame: 16,24\nfold: 16,24\nfold-down: 16,24\nfold-up: 16,24\ngear: 16,24\ngift: 16,24\ngit-branch: 16,24\ngit-commit: 16,24\ngit-compare: 16,24\ngit-merge: 16,24\ngit-merge-queue: 16,24\ngit-pull-request: 16,24\ngit-pull-request-closed: 16,24\ngit-pull-request-draft: 16,24\nglobe: 16,24\ngoal: 16,24\ngrabber: 16,24\ngraph: 16,24\nhash: 16,24\nheading: 16,24\nheart: 16,24\nheart-fill: 16,24\nhistory: 16,24\nhome: 16,24\nhome-fill: 24\nhorizontal-rule: 16,24\nhourglass: 16,24\nhubot: 16,24\nid-badge: 16\nimage: 16,24\ninbox: 16,24\ninfinity: 16,24\ninfo: 16,24\nissue-closed: 16,24\nissue-draft: 16,24\nissue-opened: 16,24\nissue-reopened: 16,24\nissue-tracked-by: 16,24\nissue-tracks: 16,24\nitalic: 16,24\niterations: 16,24\nkebab-horizontal: 16,24\nkey: 16,24\nkey-asterisk: 16\nlaw: 16,24\nlight-bulb: 16,24\nlink: 16,24\nlink-external: 16,24\nlist-ordered: 16,24\nlist-unordered: 16,24\nlocation: 16,24\nlock: 16,24\nlog: 16,24\nlogo-gist: 16\nlogo-github: 16\nmail: 16,24\nmark-github: 16\nmarkdown: 16\nmegaphone: 16,24\nmention: 16,24\nmeter: 16\nmilestone: 16,24\nmirror: 16,24\nmoon: 16,24\nmortar-board: 16,24\nmove-to-bottom: 16,24\nmove-to-end: 16,24\nmove-to-start: 16,24\nmove-to-top: 16,24\nmulti-select: 16,24\nmute: 16,24\nno-entry: 16,24\nno-entry-fill: 12\nnorth-star: 16,24\nnote: 16,24\nnumber: 16,24\norganization: 16,24\npackage: 16,24\npackage-dependencies: 16,24\npackage-dependents: 16,24\npaintbrush: 16\npaper-airplane: 16,24\npaperclip: 16,24\npasskey-fill: 16,24\npaste: 16,24\npencil: 16,24\npeople: 16,24\nperson: 16,24\nperson-add: 16,24\nperson-fill: 16,24\npin: 16,24\npin-slash: 16,24\npivot-column: 16,24\nplay: 16,24\nplug: 16,24\nplus: 16,24\nplus-circle: 16,24\nproject: 16,24\nproject-roadmap: 16,24\nproject-symlink: 16,24\nproject-template: 16,24\npulse: 16,24\nquestion: 16,24\nquote: 16,24\nread: 16,24\nredo: 16\nrel-file-path: 16,24\nreply: 16,24\nrepo: 16,24\nrepo-clone: 16,24\nrepo-deleted: 16\nrepo-forked: 16,24\nrepo-locked: 16,24\nrepo-pull: 16,24\nrepo-push: 16,24\nrepo-template: 16,24\nreport: 16,24\nrocket: 16,24\nrows: 16,24\nrss: 16,24\nruby: 16,24\nscreen-full: 16,24\nscreen-normal: 16,24\nsearch: 16,24\nserver: 16,24\nshare: 16,24\nshare-android: 16,24\nshield: 16,24\nshield-check: 16,24\nshield-lock: 16,24\nshield-slash: 16,24\nshield-x: 16,24\nsidebar-collapse: 16,24\nsidebar-expand: 16,24\nsign-in: 16,24\nsign-out: 16,24\nsingle-select: 16,24\nskip: 16,24\nskip-fill: 16,24\nsliders: 16\nsmiley: 16,24\nsort-asc: 16,24\nsort-desc: 16,24\nsparkle-fill: 16\nsponsor-tiers: 16,24\nsquare: 16,24\nsquare-fill: 16,24\nsquirrel: 16,24\nstack: 16,24\nstar: 16,24\nstar-fill: 16,24\nstop: 16,24\nstopwatch: 16,24\nstrikethrough: 16,24\nsun: 16,24\nsync: 16,24\ntab: 24\ntab-external: 16\ntable: 16,24\ntag: 16,24\ntasklist: 16,24\ntelescope: 16,24\ntelescope-fill: 16,24\nterminal: 16,24\nthree-bars: 16\nthumbsdown: 16,24\nthumbsup: 16,24\ntools: 16,24\ntracked-by-closed-completed: 16,24\ntracked-by-closed-not-planned: 16,24\ntrash: 16,24\ntriangle-down: 16,24\ntriangle-left: 16,24\ntriangle-right: 16,24\ntriangle-up: 16,24\ntrophy: 16,24\ntypography: 16,24\nundo: 16\nunfold: 16,24\nunlink: 16,24\nunlock: 16,24\nunmute: 16,24\nunread: 16,24\nunverified: 16,24\nupload: 16,24\nverified: 16,24\nversions: 16,24\nvideo: 16,24\nwebhook: 16\nworkflow: 16,24\nx: 12,16,24\nx-circle: 16,24\nx-circle-fill: 12,16,24\nzap: 16,24\nzoom-in: 16,24\nzoom-out: 16,24\n"
  },
  {
    "path": "tests/test_misc/test_tab_set_with_invalid_children.xml",
    "content": "<document source=\"index\">\n    <section ids=\"tab-test-document\" names=\"tab\\ test\\ document\">\n        <title>\n            Tab Test document\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <sd_tab_input checked=\"True\" id=\"sd-tab-item-0\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-0\">\n                A\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    A content\n            <sd_tab_input checked=\"False\" id=\"sd-tab-item-1\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-1\">\n                B\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    B content\n"
  },
  {
    "path": "tests/test_misc.py",
    "content": "import pytest\n\nfrom sphinx_design.icons import get_material_icon_data, get_octicon_data\n\n\ndef test_octicons(file_regression):\n    \"\"\"Test the available octicon names.\n\n    This is intended to provide a diff of the octicons available,\n    when the octicons are updated, to check if we are removing any\n    (and hence breaking back-compatibility).\n    \"\"\"\n    data = get_octicon_data()\n    content = \"\"\n    for octicon in sorted(data):\n        content += f\"{octicon}: {','.join(data[octicon]['heights'])}\\n\"\n    file_regression.check(content)\n\n\n@pytest.mark.parametrize(\"style\", [\"regular\", \"outlined\", \"round\", \"sharp\", \"twotone\"])\ndef test_material(style, file_regression):\n    \"\"\"Test the available material icons names.\n\n    This is intended to provide a diff of the octicons available,\n    when the octicons are updated, to check if we are removing any\n    (and hence breaking back-compatibility).\n    \"\"\"\n    data = get_material_icon_data(style)\n    content = \"\"\n    for name in sorted(data):\n        content += f\"{name}: {','.join(data[name]['heights'])}\\n\"\n    file_regression.check(content)\n\n\ndef test_tab_set_with_invalid_children(\n    sphinx_builder, file_regression, normalize_doctree_xml\n):\n    \"\"\"Test that tab-set with invalid children does not crash.\n\n    This reproduces the issue from https://github.com/executablebooks/sphinx-design/issues/243\n    where a ValueError was raised when a tab-set contained non-tab-item children.\n    \"\"\"\n    builder = sphinx_builder(conf_kwargs={\"extensions\": [\"sphinx_design\"]})\n    builder.src_path.joinpath(\"index.rst\").write_text(\n        \"\"\"\nTab Test document\n=================\n\n.. tab-set::\n\n   .. tab-item:: A\n\n      A content\n\n   foo\n\n   .. tab-item:: B\n\n      B content\n\"\"\",\n        encoding=\"utf8\",\n    )\n    # Build should not crash, but should produce a warning\n    builder.build(assert_pass=False)\n    assert \"All children of a 'tab-set' should be 'tab-item'\" in builder.warnings\n\n    # Valid tab items should still be processed\n    doctree = builder.get_doctree(\"index\", post_transforms=True)\n    doctree.attributes.pop(\"translation_progress\", None)\n    file_regression.check(\n        normalize_doctree_xml(doctree.pformat()),\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n"
  },
  {
    "path": "tests/test_snippets/sd_custom_directives.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <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\">\n            <rubric>\n                Syntax\n            <paragraph>\n                content\n"
  },
  {
    "path": "tests/test_snippets/sd_hide_title.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title classes=\"sd-d-none\">\n            Heading\n        <paragraph>\n            content\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_article-info.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <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\">\n            <container classes=\"sd-row sd-row-cols-2 sd-gx-2 sd-gy-1\" design_component=\"grid-row\" is_div=\"True\">\n                <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                    <reference refuri=\"https://executablebooks.org/\">\n                        <image alt=\"\" candidates=\"{'*': 'images/ebp-logo.png'}\" classes=\"sd-avatar-sm sd-outline-muted\" uri=\"images/ebp-logo.png\">\n                <container classes=\"sd-col sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-container-fluid sd-sphinx-override\" design_component=\"grid-container\" is_div=\"True\">\n                        <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\">\n                            <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                                <paragraph classes=\"sd-p-0 sd-m-0\">\n                                    Executable Books\n                            <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                                <paragraph classes=\"sd-p-0 sd-m-0\">\n                                    <raw classes=\"sd-pr-2\" format=\"html\" xml:space=\"preserve\">\n                                        <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>\n                                    Jul 24, 2021\n                            <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                                <paragraph classes=\"sd-p-0 sd-m-0\">\n                                    <raw classes=\"sd-pr-2\" format=\"html\" xml:space=\"preserve\">\n                                        <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>\n                                    5 min read\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_badge-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge\">\n                plain badge\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary\">\n                primary\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-primary sd-text-primary\">\n                primary-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-secondary sd-bg-text-secondary\">\n                secondary\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-secondary sd-text-secondary\">\n                secondary-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-success sd-bg-text-success\">\n                success\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-success sd-text-success\">\n                success-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-info sd-bg-text-info\">\n                info\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-info sd-text-info\">\n                info-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-warning sd-bg-text-warning\">\n                warning\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-warning sd-text-warning\">\n                warning-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-danger sd-bg-text-danger\">\n                danger\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-danger sd-text-danger\">\n                danger-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-light sd-bg-text-light\">\n                light\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-light sd-text-light\">\n                light-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-muted sd-bg-text-muted\">\n                muted\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-muted sd-text-muted\">\n                muted-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-dark sd-bg-text-dark\">\n                dark\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-dark sd-text-dark\">\n                dark-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-white sd-bg-text-white\">\n                white\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-white sd-text-white\">\n                white-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-black sd-bg-text-black\">\n                black\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-black sd-text-black\">\n                black-line\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_badge-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-badge sd-outline-primary sd-text-primary\" refuri=\"https://example.com\">\n                <inline>\n                    explicit title\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_button-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap\" refuri=\"https://example.com\">\n                <inline>\n                    Button text\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap sd-btn-primary sd-shadow-sm\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap sd-btn-outline-primary\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <inline classes=\"sd-d-grid\">\n                <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary\" refuri=\"https://example.com\">\n                    <inline>\n                        https://example.com\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_card-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                    <PassthroughTextElement>\n                        Card Title\n                <paragraph classes=\"sd-card-text\">\n                    Card content\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_card-carousel.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-sphinx-override sd-cards-carousel sd-card-cols-2\" design_component=\"card-carousel\" is_div=\"True\">\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 1\n                    <paragraph classes=\"sd-card-text\">\n                        content\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 2\n                    <paragraph classes=\"sd-card-text\">\n                        Longer\n                    <paragraph classes=\"sd-card-text\">\n                        content\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 3\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 4\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 5\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 6\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_card-head-foot.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n            <container classes=\"sd-card-header\" design_component=\"card-header\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Header\n            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                    <PassthroughTextElement>\n                        Card Title\n                <paragraph classes=\"sd-card-text\">\n                    Card content\n            <container classes=\"sd-card-footer\" design_component=\"card-footer\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Footer\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_card-images.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-text-black\" design_component=\"card\" is_div=\"True\">\n                        <image alt=\"my text\" candidates=\"{'*': 'images/particle_background.jpg'}\" classes=\"sd-card-img\" uri=\"images/particle_background.jpg\">\n                        <container classes=\"sd-card-img-overlay\" design_component=\"card-overlay\" is_div=\"True\">\n                            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                    <PassthroughTextElement>\n                                        Title\n                                <paragraph classes=\"sd-card-text\">\n                                    Text\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <image alt=\"\" candidates=\"{'*': 'images/particle_background.jpg'}\" classes=\"sd-card-img-top\" uri=\"images/particle_background.jpg\">\n                        <container classes=\"sd-card-header\" design_component=\"card-header\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Header\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title\n                            <paragraph classes=\"sd-card-text\">\n                                Content\n                        <container classes=\"sd-card-footer\" design_component=\"card-footer\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Footer\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-header\" design_component=\"card-header\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Header\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title\n                            <paragraph classes=\"sd-card-text\">\n                                Content\n                        <container classes=\"sd-card-footer\" design_component=\"card-footer\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Footer\n                        <image alt=\"\" candidates=\"{'*': 'images/particle_background.jpg'}\" classes=\"sd-card-img-bottom\" uri=\"images/particle_background.jpg\">\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_card-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <target refid=\"cards-clickable\">\n        <section ids=\"clickable-cards cards-clickable\" names=\"clickable\\ cards cards-clickable\">\n            <title>\n                Clickable cards\n            <paragraph>\n                Using the \n                <literal>\n                    link\n                 and \n                <literal>\n                    link-type\n                 options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below:\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (external)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to \n                        <reference refuri=\"https://example.com\">\n                            https://example.com\n                        .\n                <PassthroughTextElement>\n                    <reference classes=\"sd-stretched-link sd-hide-link-text\" refuri=\"https://example.com\">\n                        <inline>\n                            https://example.com\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (external)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to \n                        <reference refuri=\"https://example.com\">\n                            https://example.com\n                        .\n                <PassthroughTextElement>\n                    <reference classes=\"sd-stretched-link sd-hide-link-text\" refuri=\"https://example.com\">\n                        <inline>\n                            example.com\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (internal)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to the \n                        <literal>\n                            cards-clickable\n                         reference target.\n                <PassthroughTextElement>\n                    <reference classes=\"sd-stretched-link sd-hide-link-text\" internal=\"True\" refid=\"cards-clickable\">\n                        <inline classes=\"std std-ref\">\n                            Clickable cards\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (internal)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to the \n                        <literal>\n                            cards-clickable\n                         reference target.\n                <PassthroughTextElement>\n                    <reference classes=\"sd-stretched-link sd-hide-link-text\" internal=\"True\" refid=\"cards-clickable\">\n                        <inline classes=\"std std-ref\">\n                            clickable cards\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_card-title-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <target refid=\"target\">\n        <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" ids=\"target\" is_div=\"True\" names=\"target\">\n            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                    <PassthroughTextElement>\n                        Card Title \n                        <reference refuri=\"https://example.com\">\n                            https://example.com\n                         \n                        <reference internal=\"True\" refid=\"target\">\n                            <inline classes=\"std std-ref\">\n                                link\n                <paragraph classes=\"sd-card-text\">\n                    Card content\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_div-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-text-center sd-font-italic sd-text-primary\" design_component=\"div\" is_div=\"True\">\n            <paragraph>\n                Some CSS styled text\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_dropdown-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <dropdown_main classes=\"sd-sphinx-override sd-dropdown sd-card sd-mb-3\" opened=\"False\">\n            <dropdown_title classes=\"sd-summary-title sd-card-header\">\n                <inline classes=\"sd-summary-text\">\n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                <inline classes=\"sd-summary-state-marker sd-summary-chevron-right\">\n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n            <container classes=\"sd-summary-content sd-card-body\" design_component=\"dropdown-body\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Dropdown content\n        <dropdown_main classes=\"sd-sphinx-override sd-dropdown sd-card sd-mb-3\" opened=\"False\">\n            <dropdown_title classes=\"sd-summary-title sd-card-header\">\n                <inline classes=\"sd-summary-text\">\n                    Dropdown title\n                <inline classes=\"sd-summary-state-marker sd-summary-chevron-right\">\n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n            <container classes=\"sd-summary-content sd-card-body\" design_component=\"dropdown-body\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Dropdown content\n        <dropdown_main classes=\"sd-sphinx-override sd-dropdown sd-card sd-mb-3\" opened=\"True\">\n            <dropdown_title classes=\"sd-summary-title sd-card-header\">\n                <inline classes=\"sd-summary-text\">\n                    Open dropdown\n                <inline classes=\"sd-summary-state-marker sd-summary-chevron-right\">\n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n            <container classes=\"sd-summary-content sd-card-body\" design_component=\"dropdown-body\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Dropdown content\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_dropdown-options.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <dropdown_main classes=\"sd-sphinx-override sd-dropdown sd-card sd-m-1 class-container\" ids=\"target\" opened=\"False\">\n            <dropdown_title classes=\"sd-summary-title sd-card-header class-title sd-bg-info sd-bg-text-info\">\n                <raw classes=\"sd-summary-icon\" format=\"html\" xml:space=\"preserve\">\n                    <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>\n                <inline classes=\"sd-summary-text\">\n                    Title\n                <inline classes=\"sd-summary-state-marker sd-summary-chevron-right\">\n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n            <container classes=\"sd-summary-content sd-card-body class-body\" design_component=\"dropdown-body\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Dropdown content\n        <paragraph>\n            <reference internal=\"True\" refid=\"target\">\n                <inline classes=\"std std-ref\">\n                    Title\n            , \n            <reference internal=\"True\" refid=\"target\">\n                <inline classes=\"std std-ref\">\n                    text\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_grid-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4 sd-border-1\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        A\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        B\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        C\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        D\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_grid-card-columns.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <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\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <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\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                B\n                <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\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                C\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_grid-card.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title 1\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title 2\n                            <paragraph classes=\"sd-card-text\">\n                                B\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_grid-gutter.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                B\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                B\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_grid-nested.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n                        <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\">\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 1.1\n                                        <paragraph classes=\"sd-card-text\">\n                                            Multi-line\n                                        <paragraph classes=\"sd-card-text\">\n                                            content\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 1.2\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n                        <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\">\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 2.1\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 2.2\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 2.3\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_icon-fontawesome.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            An icon \n            <fontawesome classes=\"fas fa-spinner sd-bg-primary sd-bg-text-primary\" icon=\"spinner\">\n            , some more text.\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_icon-material-design.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <bullet_list bullet=\"-\">\n            <list_item>\n                <paragraph>\n                    A regular icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text\n            <list_item>\n                <paragraph>\n                    A coloured regular icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured outline icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured sharp icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured round icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured two-tone icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A fixed size icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_icon-octicon.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            A coloured icon: \n            <raw format=\"html\" xml:space=\"preserve\">\n                <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>\n            , some more text.\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_tab-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <sd_tab_input checked=\"True\" id=\"sd-tab-item-0\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-0\">\n                Label1\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    Content 1\n            <sd_tab_input checked=\"False\" id=\"sd-tab-item-1\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-1\">\n                Label2\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    Content 2\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_tab-code-set.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <sd_tab_input checked=\"True\" id=\"sd-tab-item-0\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-0\" sync_group=\"code\" sync_id=\"python\">\n                PYTHON\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <literal_block force=\"False\" highlight_args=\"{'linenostart': 1}\" language=\"python\" linenos=\"False\" source=\"snippet.py\" xml:space=\"preserve\">\n                    a = 1\n            <sd_tab_input checked=\"False\" id=\"sd-tab-item-1\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-1\" sync_group=\"code\" sync_id=\"javascript\">\n                JAVASCRIPT\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <literal_block force=\"False\" highlight_args=\"{}\" language=\"javascript\" linenos=\"False\" xml:space=\"preserve\">\n                    a = 1;\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_tab-options.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set class-set\" design_component=\"tab-set\" is_div=\"True\">\n            <sd_tab_input checked=\"True\" id=\"sd-tab-item-0\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label class-label\" ids=\"target\" input_id=\"sd-tab-item-0\">\n                <strong>\n                    Label\n            <container classes=\"sd-tab-content class-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    Content\n        <paragraph>\n            <reference internal=\"True\" refid=\"target\">\n                <inline classes=\"std std-ref\">\n                    Label\n            , \n            <reference internal=\"True\" refid=\"target\">\n                <inline classes=\"std std-ref\">\n                    text\n"
  },
  {
    "path": "tests/test_snippets/snippet_post_tab-sync.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <sd_tab_input checked=\"True\" id=\"sd-tab-item-0\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-0\" sync_group=\"category\" sync_id=\"key1\">\n                Label1\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    Content 1\n            <sd_tab_input checked=\"False\" id=\"sd-tab-item-1\" set_id=\"sd-tab-set-0\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-1\" sync_group=\"category\" sync_id=\"key2\">\n                Label2\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    Content 2\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <sd_tab_input checked=\"True\" id=\"sd-tab-item-2\" set_id=\"sd-tab-set-1\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-2\" sync_group=\"category\" sync_id=\"key1\">\n                Label1\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    Content 1\n            <sd_tab_input checked=\"False\" id=\"sd-tab-item-3\" set_id=\"sd-tab-set-1\" type=\"radio\">\n            <sd_tab_label classes=\"sd-tab-label\" input_id=\"sd-tab-item-3\" sync_group=\"category\" sync_id=\"key2\">\n                Label2\n            <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                <paragraph>\n                    Content 2\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_article-info.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <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\">\n            <container classes=\"sd-row sd-row-cols-2 sd-gx-2 sd-gy-1\" design_component=\"grid-row\" is_div=\"True\">\n                <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                    <reference refuri=\"https://executablebooks.org/\">\n                        <image alt=\"\" candidates=\"{'*': 'images/ebp-logo.png'}\" classes=\"sd-avatar-sm sd-outline-muted\" uri=\"images/ebp-logo.png\">\n                <container classes=\"sd-col sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-container-fluid sd-sphinx-override\" design_component=\"grid-container\" is_div=\"True\">\n                        <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\">\n                            <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                                <paragraph classes=\"sd-p-0 sd-m-0\">\n                                    Executable Books\n                            <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                                <paragraph classes=\"sd-p-0 sd-m-0\">\n                                    <raw classes=\"sd-pr-2\" format=\"html\" xml:space=\"preserve\">\n                                        <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>\n                                    Jul 24, 2021\n                            <container classes=\"sd-col sd-col-auto sd-d-flex-row sd-align-minor-center\" design_component=\"grid-item\" is_div=\"True\">\n                                <paragraph classes=\"sd-p-0 sd-m-0\">\n                                    <raw classes=\"sd-pr-2\" format=\"html\" xml:space=\"preserve\">\n                                        <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>\n                                    5 min read\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_badge-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge\">\n                plain badge\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary\">\n                primary\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-primary sd-text-primary\">\n                primary-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-secondary sd-bg-text-secondary\">\n                secondary\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-secondary sd-text-secondary\">\n                secondary-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-success sd-bg-text-success\">\n                success\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-success sd-text-success\">\n                success-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-info sd-bg-text-info\">\n                info\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-info sd-text-info\">\n                info-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-warning sd-bg-text-warning\">\n                warning\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-warning sd-text-warning\">\n                warning-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-danger sd-bg-text-danger\">\n                danger\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-danger sd-text-danger\">\n                danger-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-light sd-bg-text-light\">\n                light\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-light sd-text-light\">\n                light-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-muted sd-bg-text-muted\">\n                muted\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-muted sd-text-muted\">\n                muted-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-dark sd-bg-text-dark\">\n                dark\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-dark sd-text-dark\">\n                dark-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-white sd-bg-text-white\">\n                white\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-white sd-text-white\">\n                white-line\n        <paragraph>\n            <inline classes=\"sd-sphinx-override sd-badge sd-bg-black sd-bg-text-black\">\n                black\n            , \n            <inline classes=\"sd-sphinx-override sd-badge sd-outline-black sd-text-black\">\n                black-line\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_badge-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-badge sd-outline-primary sd-text-primary\" refuri=\"https://example.com\">\n                <inline>\n                    explicit title\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_button-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap\" refuri=\"https://example.com\">\n                <inline>\n                    Button text\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap sd-btn-primary sd-shadow-sm\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap sd-btn-outline-primary\" refuri=\"https://example.com\">\n                <inline>\n                    https://example.com\n        <paragraph>\n            <inline classes=\"sd-d-grid\">\n                <reference classes=\"sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary\" refuri=\"https://example.com\">\n                    <inline>\n                        https://example.com\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_card-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                    <PassthroughTextElement>\n                        Card Title\n                <paragraph classes=\"sd-card-text\">\n                    Card content\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_card-carousel.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-sphinx-override sd-cards-carousel sd-card-cols-2\" design_component=\"card-carousel\" is_div=\"True\">\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 1\n                    <paragraph classes=\"sd-card-text\">\n                        content\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 2\n                    <paragraph classes=\"sd-card-text\">\n                        Longer\n                    <paragraph classes=\"sd-card-text\">\n                        content\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 3\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 4\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 5\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            card 6\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_card-head-foot.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n            <container classes=\"sd-card-header\" design_component=\"card-header\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Header\n            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                    <PassthroughTextElement>\n                        Card Title\n                <paragraph classes=\"sd-card-text\">\n                    Card content\n            <container classes=\"sd-card-footer\" design_component=\"card-footer\" is_div=\"True\">\n                <paragraph classes=\"sd-card-text\">\n                    Footer\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_card-images.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-text-black\" design_component=\"card\" is_div=\"True\">\n                        <image alt=\"my text\" candidates=\"{'*': 'images/particle_background.jpg'}\" classes=\"sd-card-img\" uri=\"images/particle_background.jpg\">\n                        <container classes=\"sd-card-img-overlay\" design_component=\"card-overlay\" is_div=\"True\">\n                            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                    <PassthroughTextElement>\n                                        Title\n                                <paragraph classes=\"sd-card-text\">\n                                    Text\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <image alt=\"\" candidates=\"{'*': 'images/particle_background.jpg'}\" classes=\"sd-card-img-top\" uri=\"images/particle_background.jpg\">\n                        <container classes=\"sd-card-header\" design_component=\"card-header\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Header\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title\n                            <paragraph classes=\"sd-card-text\">\n                                Content\n                        <container classes=\"sd-card-footer\" design_component=\"card-footer\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Footer\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-header\" design_component=\"card-header\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Header\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title\n                            <paragraph classes=\"sd-card-text\">\n                                Content\n                        <container classes=\"sd-card-footer\" design_component=\"card-footer\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                Footer\n                        <image alt=\"\" candidates=\"{'*': 'images/particle_background.jpg'}\" classes=\"sd-card-img-bottom\" uri=\"images/particle_background.jpg\">\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_card-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <target refid=\"cards-clickable\">\n        <section ids=\"clickable-cards cards-clickable\" names=\"clickable\\ cards cards-clickable\">\n            <title>\n                Clickable cards\n            <paragraph>\n                Using the \n                <literal>\n                    link\n                 and \n                <literal>\n                    link-type\n                 options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below:\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (external)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to \n                        <reference refuri=\"https://example.com\">\n                            https://example.com\n                        .\n                <PassthroughTextElement>\n                    <reference classes=\"sd-stretched-link sd-hide-link-text\" refuri=\"https://example.com\">\n                        <inline>\n                            https://example.com\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (external)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to \n                        <reference refuri=\"https://example.com\">\n                            https://example.com\n                        .\n                <PassthroughTextElement>\n                    <reference classes=\"sd-stretched-link sd-hide-link-text\" refuri=\"https://example.com\">\n                        <inline>\n                            example.com\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (internal)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to the \n                        <literal>\n                            cards-clickable\n                         reference target.\n                <PassthroughTextElement>\n                    <pending_xref classes=\"sd-stretched-link sd-hide-link-text\" refdoc=\"index\" refdomain=\"std\" refexplicit=\"False\" reftarget=\"cards-clickable\" reftype=\"ref\" refwarn=\"True\">\n                        <inline>\n                            cards-clickable\n            <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover\" design_component=\"card\" is_div=\"True\">\n                <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                    <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                        <PassthroughTextElement>\n                            Clickable Card (internal)\n                    <paragraph classes=\"sd-card-text\">\n                        The entire card can be clicked to navigate to the \n                        <literal>\n                            cards-clickable\n                         reference target.\n                <PassthroughTextElement>\n                    <pending_xref classes=\"sd-stretched-link sd-hide-link-text\" refdoc=\"index\" refdomain=\"std\" refexplicit=\"True\" reftarget=\"cards-clickable\" reftype=\"ref\" refwarn=\"True\">\n                        <inline>\n                            clickable cards\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_card-title-link.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <target refid=\"target\">\n        <container classes=\"sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm\" design_component=\"card\" ids=\"target\" is_div=\"True\" names=\"target\">\n            <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                    <PassthroughTextElement>\n                        Card Title \n                        <reference refuri=\"https://example.com\">\n                            https://example.com\n                         \n                        <pending_xref refdoc=\"index\" refdomain=\"std\" refexplicit=\"True\" reftarget=\"target\" reftype=\"ref\" refwarn=\"True\">\n                            <inline classes=\"xref std std-ref\">\n                                link\n                <paragraph classes=\"sd-card-text\">\n                    Card content\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_div-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-text-center sd-font-italic sd-text-primary\" design_component=\"div\" is_div=\"True\">\n            <paragraph>\n                Some CSS styled text\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_dropdown-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <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\">\n            <paragraph>\n                Dropdown content\n        <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\">\n            <rubric>\n                Dropdown title\n            <paragraph>\n                Dropdown content\n        <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\">\n            <rubric>\n                Open dropdown\n            <paragraph>\n                Dropdown content\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_dropdown-options.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <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\">\n            <rubric ids=\"target\" names=\"target\">\n                Title\n            <paragraph>\n                Dropdown content\n        <paragraph>\n            <pending_xref refdoc=\"index\" refdomain=\"std\" refexplicit=\"False\" reftarget=\"target\" reftype=\"ref\" refwarn=\"True\">\n                <inline classes=\"xref std std-ref\">\n                    target\n            , \n            <pending_xref refdoc=\"index\" refdomain=\"std\" refexplicit=\"True\" reftarget=\"target\" reftype=\"ref\" refwarn=\"True\">\n                <inline classes=\"xref std std-ref\">\n                    text\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_grid-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4 sd-border-1\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        A\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        B\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        C\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <paragraph>\n                        D\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_grid-card-columns.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <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\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <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\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                B\n                <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\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                C\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_grid-card.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title 1\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                <PassthroughTextElement>\n                                    Title 2\n                            <paragraph classes=\"sd-card-text\">\n                                B\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_grid-gutter.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                B\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                A\n                <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                        <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                            <paragraph classes=\"sd-card-text\">\n                                B\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_grid-nested.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n            <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\">\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n                        <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\">\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 1.1\n                                        <paragraph classes=\"sd-card-text\">\n                                            Multi-line\n                                        <paragraph classes=\"sd-card-text\">\n                                            content\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 1.2\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n                <container classes=\"sd-col sd-d-flex-column\" design_component=\"grid-item\" is_div=\"True\">\n                    <container classes=\"sd-container-fluid sd-sphinx-override sd-mb-4\" design_component=\"grid-container\" is_div=\"True\">\n                        <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\">\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 2.1\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 2.2\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n                            <container classes=\"sd-col sd-d-flex-row\" design_component=\"grid-item\" is_div=\"True\">\n                                <container classes=\"sd-card sd-sphinx-override sd-w-100 sd-shadow-sm\" design_component=\"card\" is_div=\"True\">\n                                    <container classes=\"sd-card-body\" design_component=\"card-body\" is_div=\"True\">\n                                        <container classes=\"sd-card-title sd-font-weight-bold\" design_component=\"card-title\" is_div=\"True\">\n                                            <PassthroughTextElement>\n                                                Item 2.3\n                                        <paragraph classes=\"sd-card-text\">\n                                            Content\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_icon-fontawesome.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            An icon \n            <fontawesome classes=\"fas fa-spinner sd-bg-primary sd-bg-text-primary\" icon=\"spinner\">\n            , some more text.\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_icon-material-design.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <bullet_list bullet=\"-\">\n            <list_item>\n                <paragraph>\n                    A regular icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text\n            <list_item>\n                <paragraph>\n                    A coloured regular icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured outline icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured sharp icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured round icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A coloured two-tone icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n            <list_item>\n                <paragraph>\n                    A fixed size icon: \n                    <raw format=\"html\" xml:space=\"preserve\">\n                        <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>\n                    , some more text.\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_icon-octicon.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <paragraph>\n            A coloured icon: \n            <raw format=\"html\" xml:space=\"preserve\">\n                <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>\n            , some more text.\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_tab-basic.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\" selected=\"False\">\n                <rubric classes=\"sd-tab-label\">\n                    Label1\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <paragraph>\n                        Content 1\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\" selected=\"False\">\n                <rubric classes=\"sd-tab-label\">\n                    Label2\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <paragraph>\n                        Content 2\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_tab-code-set.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\">\n                <rubric classes=\"sd-tab-label\" sync_group=\"code\" sync_id=\"python\">\n                    PYTHON\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <literal_block force=\"False\" highlight_args=\"{'linenostart': 1}\" language=\"python\" source=\"snippet.py\" xml:space=\"preserve\">\n                        a = 1\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\">\n                <rubric classes=\"sd-tab-label\" sync_group=\"code\" sync_id=\"javascript\">\n                    JAVASCRIPT\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <literal_block force=\"False\" highlight_args=\"{}\" language=\"javascript\" xml:space=\"preserve\">\n                        a = 1;\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_tab-options.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set class-set\" design_component=\"tab-set\" is_div=\"True\">\n            <container classes=\"sd-tab-item class-container\" design_component=\"tab-item\" is_div=\"True\" selected=\"True\">\n                <rubric classes=\"sd-tab-label class-label\" ids=\"target\" names=\"target\">\n                    <strong>\n                        Label\n                <container classes=\"sd-tab-content class-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <paragraph>\n                        Content\n        <paragraph>\n            <pending_xref refdoc=\"index\" refdomain=\"std\" refexplicit=\"False\" reftarget=\"target\" reftype=\"ref\" refwarn=\"True\">\n                <inline classes=\"xref std std-ref\">\n                    target\n            , \n            <pending_xref refdoc=\"index\" refdomain=\"std\" refexplicit=\"True\" reftarget=\"target\" reftype=\"ref\" refwarn=\"True\">\n                <inline classes=\"xref std std-ref\">\n                    text\n"
  },
  {
    "path": "tests/test_snippets/snippet_pre_tab-sync.xml",
    "content": "<document source=\"index\">\n    <section ids=\"heading\" names=\"heading\">\n        <title>\n            Heading\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\" selected=\"False\">\n                <rubric classes=\"sd-tab-label\" sync_group=\"category\" sync_id=\"key1\">\n                    Label1\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <paragraph>\n                        Content 1\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\" selected=\"False\">\n                <rubric classes=\"sd-tab-label\" sync_group=\"category\" sync_id=\"key2\">\n                    Label2\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <paragraph>\n                        Content 2\n        <container classes=\"sd-tab-set\" design_component=\"tab-set\" is_div=\"True\">\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\" selected=\"False\">\n                <rubric classes=\"sd-tab-label\" sync_group=\"category\" sync_id=\"key1\">\n                    Label1\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <paragraph>\n                        Content 1\n            <container classes=\"sd-tab-item\" design_component=\"tab-item\" is_div=\"True\" selected=\"False\">\n                <rubric classes=\"sd-tab-label\" sync_group=\"category\" sync_id=\"key2\">\n                    Label2\n                <container classes=\"sd-tab-content\" design_component=\"tab-content\" is_div=\"True\">\n                    <paragraph>\n                        Content 2\n"
  },
  {
    "path": "tests/test_snippets.py",
    "content": "\"\"\"Test the documented snippets run correctly, and are the same for both RST and MyST.\"\"\"\n\nfrom collections.abc import Callable\nfrom pathlib import Path\n\nimport pytest\n\nfrom .conftest import SphinxBuilder\n\ntry:\n    import myst_parser  # noqa: F401\n\n    MYST_INSTALLED = True\nexcept ImportError:\n    MYST_INSTALLED = False\n\nSNIPPETS_PATH = Path(__file__).parent.parent / \"docs\" / \"snippets\"\nSNIPPETS_GLOB_RST = list((SNIPPETS_PATH / \"rst\").glob(\"[!_]*\"))\nSNIPPETS_GLOB_MYST = list((SNIPPETS_PATH / \"myst\").glob(\"[!_]*\"))\n\n\ndef write_assets(src_path: Path):\n    \"\"\"Write additional assets to the src directory.\"\"\"\n    src_path.joinpath(\"snippet.py\").write_text(\"a = 1\")\n    src_path.joinpath(\"images\").mkdir()\n    src_path.joinpath(\"images\", \"ebp-logo.png\").touch()\n    src_path.joinpath(\"images\", \"particle_background.jpg\").touch()\n\n\n@pytest.mark.parametrize(\n    \"path\",\n    SNIPPETS_GLOB_RST,\n    ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_RST],\n)\ndef test_snippets_rst(\n    sphinx_builder: Callable[..., SphinxBuilder],\n    path: Path,\n    file_regression,\n    normalize_doctree_xml,\n):\n    \"\"\"Test snippets written in RestructuredText (before post-transforms).\"\"\"\n    builder = sphinx_builder(conf_kwargs={\"extensions\": [\"sphinx_design\"]})\n    content = \"Heading\\n-------\" + \"\\n\\n\" + path.read_text(encoding=\"utf8\")\n    builder.src_path.joinpath(\"index.rst\").write_text(content, encoding=\"utf8\")\n    write_assets(builder.src_path)\n    builder.build()\n    doctree = builder.get_doctree(\"index\", post_transforms=False)\n    doctree.attributes.pop(\"translation_progress\", None)  # added in sphinx 7.1\n    file_regression.check(\n        normalize_doctree_xml(doctree.pformat()),\n        basename=f\"snippet_pre_{path.name[: -len(path.suffix)]}\",\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n\n\n@pytest.mark.parametrize(\n    \"path\",\n    SNIPPETS_GLOB_MYST,\n    ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_MYST],\n)\n@pytest.mark.skipif(not MYST_INSTALLED, reason=\"myst-parser not installed\")\ndef test_snippets_myst(\n    sphinx_builder: Callable[..., SphinxBuilder],\n    path: Path,\n    file_regression,\n    normalize_doctree_xml,\n):\n    \"\"\"Test snippets written in MyST Markdown (before post-transforms).\"\"\"\n    builder = sphinx_builder()\n    content = \"# Heading\" + \"\\n\\n\\n\" + path.read_text(encoding=\"utf8\")\n    builder.src_path.joinpath(\"index.md\").write_text(content, encoding=\"utf8\")\n    write_assets(builder.src_path)\n    builder.build()\n    doctree = builder.get_doctree(\"index\", post_transforms=False)\n    doctree.attributes.pop(\"translation_progress\", None)  # added in sphinx 7.1\n    file_regression.check(\n        normalize_doctree_xml(doctree.pformat()),\n        basename=f\"snippet_pre_{path.name[: -len(path.suffix)]}\",\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n\n\n@pytest.mark.parametrize(\n    \"path\",\n    SNIPPETS_GLOB_RST,\n    ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_RST],\n)\ndef test_snippets_rst_post(\n    sphinx_builder: Callable[..., SphinxBuilder],\n    path: Path,\n    file_regression,\n    normalize_doctree_xml,\n):\n    \"\"\"Test snippets written in RestructuredText (after HTML post-transforms).\"\"\"\n    builder = sphinx_builder(conf_kwargs={\"extensions\": [\"sphinx_design\"]})\n    content = \"Heading\\n-------\" + \"\\n\\n\" + path.read_text(encoding=\"utf8\")\n    builder.src_path.joinpath(\"index.rst\").write_text(content, encoding=\"utf8\")\n    write_assets(builder.src_path)\n    builder.build()\n    doctree = builder.get_doctree(\"index\", post_transforms=True)\n    doctree.attributes.pop(\"translation_progress\", None)  # added in sphinx 7.1\n    file_regression.check(\n        normalize_doctree_xml(doctree.pformat()),\n        basename=f\"snippet_post_{path.name[: -len(path.suffix)]}\",\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n\n\n@pytest.mark.parametrize(\n    \"path\",\n    SNIPPETS_GLOB_MYST,\n    ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_MYST],\n)\n@pytest.mark.skipif(not MYST_INSTALLED, reason=\"myst-parser not installed\")\ndef test_snippets_myst_post(\n    sphinx_builder: Callable[..., SphinxBuilder],\n    path: Path,\n    file_regression,\n    normalize_doctree_xml,\n):\n    \"\"\"Test snippets written in MyST Markdown (after HTML post-transforms).\"\"\"\n    builder = sphinx_builder()\n    content = \"# Heading\" + \"\\n\\n\\n\" + path.read_text(encoding=\"utf8\")\n    builder.src_path.joinpath(\"index.md\").write_text(content, encoding=\"utf8\")\n    write_assets(builder.src_path)\n    builder.build()\n    doctree = builder.get_doctree(\"index\", post_transforms=True)\n    doctree.attributes.pop(\"translation_progress\", None)  # added in sphinx 7.1\n    file_regression.check(\n        normalize_doctree_xml(doctree.pformat()),\n        basename=f\"snippet_post_{path.name[: -len(path.suffix)]}\",\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n\n\ndef test_sd_hide_title_rst(\n    sphinx_builder: Callable[..., SphinxBuilder], file_regression\n):\n    \"\"\"Test that the root title is hidden.\"\"\"\n    builder = sphinx_builder(conf_kwargs={\"extensions\": [\"sphinx_design\"]})\n    content = \":sd_hide_title:\\n\\nHeading\\n-------\\n\\ncontent\"\n    builder.src_path.joinpath(\"index.rst\").write_text(content, encoding=\"utf8\")\n    builder.build()\n    doctree = builder.get_doctree(\"index\", post_transforms=False)\n    doctree.attributes.pop(\"translation_progress\", None)  # added in sphinx 7.1\n    file_regression.check(\n        doctree.pformat(),\n        basename=\"sd_hide_title\",\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n\n\n@pytest.mark.skipif(not MYST_INSTALLED, reason=\"myst-parser not installed\")\ndef test_sd_hide_title_myst(\n    sphinx_builder: Callable[..., SphinxBuilder], file_regression\n):\n    \"\"\"Test that the root title is hidden.\"\"\"\n    builder = sphinx_builder()\n    content = \"---\\nsd_hide_title: true\\n---\\n\\n# Heading\\n\\ncontent\"\n    builder.src_path.joinpath(\"index.md\").write_text(content, encoding=\"utf8\")\n    builder.build()\n    doctree = builder.get_doctree(\"index\", post_transforms=False)\n    doctree.attributes.pop(\"translation_progress\", None)  # added in sphinx 7.1\n    file_regression.check(\n        doctree.pformat(),\n        basename=\"sd_hide_title\",\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n\n\n@pytest.mark.skipif(not MYST_INSTALLED, reason=\"myst-parser not installed\")\ndef test_sd_custom_directives(\n    sphinx_builder: Callable[..., SphinxBuilder], file_regression, normalize_doctree_xml\n):\n    \"\"\"Test that the defaults are used.\"\"\"\n    builder = sphinx_builder(\n        conf_kwargs={\n            \"extensions\": [\"myst_parser\", \"sphinx_design\"],\n            \"sd_custom_directives\": {\n                \"dropdown-syntax\": {\n                    \"inherit\": \"dropdown\",\n                    \"argument\": \"Syntax\",\n                    \"options\": {\n                        \"color\": \"primary\",\n                        \"icon\": \"code\",\n                    },\n                }\n            },\n        }\n    )\n    content = \"# Heading\\n\\n```{dropdown-syntax}\\ncontent\\n```\"\n    builder.src_path.joinpath(\"index.md\").write_text(content, encoding=\"utf8\")\n    builder.build()\n    doctree = builder.get_doctree(\"index\", post_transforms=False)\n    doctree.attributes.pop(\"translation_progress\", None)  # added in sphinx 7.1\n    file_regression.check(\n        normalize_doctree_xml(doctree.pformat()),\n        basename=\"sd_custom_directives\",\n        extension=\".xml\",\n        encoding=\"utf8\",\n    )\n"
  },
  {
    "path": "tox.ini",
    "content": "# To use tox, see https://tox.readthedocs.io\n# (you may also want to install tox-uv)\n# then run `tox` or `tox -- {pytest args}`\n# run in parallel using `tox -p`\n[tox]\nenvlist = py311\n\n[testenv]\nusedevelop = true\n\n[testenv:py{311,312,313,314}]\ndescription = Run unit tests with this Python version\nextras =\n    testing\ncommands = pytest {posargs}\n\n[testenv:py{311,312,313,314}-no-myst]\ndescription = Run unit tests with this Python version\nextras =\n    testing-no-myst\ncommands = pytest {posargs}\n\n[testenv:docs-{alabaster,rtd,pydata,sbt,furo,im}]\ndescription =\n    Run documentation build for this theme\nextras =\n    rtd\n    rtd: theme_rtd\n    pydata: theme_pydata\n    sbt: theme_sbt\n    furo: theme_furo\n    im: theme_im\nallowlist_externals = echo\npassenv =\n    BUILDER\n    CLEAN\n    TERM\nsetenv =\n    alabaster: SPHINX_THEME = alabaster\n    rtd: SPHINX_THEME = sphinx_rtd_theme\n    pydata: SPHINX_THEME = pydata_sphinx_theme\n    sbt: SPHINX_THEME = sphinx_book_theme\n    furo: SPHINX_THEME = furo\n    im: SPHINX_THEME = sphinx_immaterial\ncommands_pre =\n  python -c \"import shutil; shutil.rmtree('docs/_build/{env:BUILDER:html}/{env:SPHINX_THEME:}', ignore_errors=True) if '{env:CLEAN:}' else None\"\ncommands =\n    sphinx-build -nW --keep-going {posargs} -b {env:BUILDER:html} docs/ docs/_build/{env:BUILDER:html}/{env:SPHINX_THEME:}\ncommands_post = echo \"open docs/_build//{env:BUILDER:html}/{env:SPHINX_THEME:}/index.html\"\n\n[testenv:mypy]\ndescription = Run type checking with mypy\ndependency_groups = mypy\ncommands = mypy {posargs:sphinx_design}\n\n[testenv:ruff-check]\ndescription = Run linting with ruff (use --fix to auto-fix)\ndependency_groups = ruff\ncommands = ruff check {posargs:--fix}\n\n[testenv:ruff-fmt]\ndescription = Run formatting with ruff\ndependency_groups = ruff\ncommands = ruff format {posargs}\n"
  }
]